]> git.proxmox.com Git - mirror_zfs.git/blame - include/sys/fs/zfs.h
ZVOLs should not be allowed to have children
[mirror_zfs.git] / include / sys / fs / zfs.h
CommitLineData
34dc7c2f
BB
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
45d1cae3 21
34dc7c2f 22/*
428870ff 23 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
b83a0e2d 24 * Copyright (c) 2011, 2018 by Delphix. All rights reserved.
3541dc6d 25 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
12fa0466
DE
26 * Copyright (c) 2013, 2017 Joyent, Inc. All rights reserved.
27 * Copyright (c) 2014 Integros [integros.com]
bec1067d 28 * Copyright (c) 2017 Datto Inc.
cc99f275 29 * Copyright (c) 2017, Intel Corporation.
34dc7c2f
BB
30 */
31
428870ff
BB
32/* Portions Copyright 2010 Robert Milkowski */
33
34dc7c2f
BB
34#ifndef _SYS_FS_ZFS_H
35#define _SYS_FS_ZFS_H
36
45d1cae3 37#include <sys/time.h>
193a37cb 38#include <sys/zio_priority.h>
45d1cae3 39
34dc7c2f
BB
40#ifdef __cplusplus
41extern "C" {
42#endif
43
44/*
45 * Types and constants shared between userland and the kernel.
46 */
47
48/*
49 * Each dataset can be one of the following types. These constants can be
50 * combined into masks that can be passed to various functions.
51 */
52typedef enum {
da536844
MA
53 ZFS_TYPE_FILESYSTEM = (1 << 0),
54 ZFS_TYPE_SNAPSHOT = (1 << 1),
55 ZFS_TYPE_VOLUME = (1 << 2),
56 ZFS_TYPE_POOL = (1 << 3),
57 ZFS_TYPE_BOOKMARK = (1 << 4)
34dc7c2f
BB
58} zfs_type_t;
59
e67a7ffb
GM
60/*
61 * NB: lzc_dataset_type should be updated whenever a new objset type is added,
62 * if it represents a real type of a dataset that can be created from userland.
63 */
6f1ffb06
MA
64typedef enum dmu_objset_type {
65 DMU_OST_NONE,
66 DMU_OST_META,
67 DMU_OST_ZFS,
68 DMU_OST_ZVOL,
69 DMU_OST_OTHER, /* For testing only! */
70 DMU_OST_ANY, /* Be careful! */
71 DMU_OST_NUMTYPES
72} dmu_objset_type_t;
73
34dc7c2f
BB
74#define ZFS_TYPE_DATASET \
75 (ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME | ZFS_TYPE_SNAPSHOT)
76
eca7b760
IK
77/*
78 * All of these include the terminating NUL byte.
79 */
9babb374
BB
80#define ZAP_MAXNAMELEN 256
81#define ZAP_MAXVALUELEN (1024 * 8)
82#define ZAP_OLDMAXVALUELEN 1024
eca7b760 83#define ZFS_MAX_DATASET_NAME_LEN 256
9babb374 84
34dc7c2f
BB
85/*
86 * Dataset properties are identified by these constants and must be added to
87 * the end of this list to ensure that external consumers are not affected
88 * by the change. If you make any changes to this list, be sure to update
e77aa730 89 * the property table in module/zcommon/zfs_prop.c.
34dc7c2f
BB
90 */
91typedef enum {
31864e3d
BB
92 ZPROP_CONT = -2,
93 ZPROP_INVAL = -1,
648a09ad 94 ZFS_PROP_TYPE = 0,
34dc7c2f
BB
95 ZFS_PROP_CREATION,
96 ZFS_PROP_USED,
97 ZFS_PROP_AVAILABLE,
98 ZFS_PROP_REFERENCED,
99 ZFS_PROP_COMPRESSRATIO,
100 ZFS_PROP_MOUNTED,
101 ZFS_PROP_ORIGIN,
102 ZFS_PROP_QUOTA,
103 ZFS_PROP_RESERVATION,
104 ZFS_PROP_VOLSIZE,
105 ZFS_PROP_VOLBLOCKSIZE,
106 ZFS_PROP_RECORDSIZE,
107 ZFS_PROP_MOUNTPOINT,
108 ZFS_PROP_SHARENFS,
109 ZFS_PROP_CHECKSUM,
110 ZFS_PROP_COMPRESSION,
111 ZFS_PROP_ATIME,
112 ZFS_PROP_DEVICES,
113 ZFS_PROP_EXEC,
114 ZFS_PROP_SETUID,
115 ZFS_PROP_READONLY,
116 ZFS_PROP_ZONED,
117 ZFS_PROP_SNAPDIR,
428870ff 118 ZFS_PROP_PRIVATE, /* not exposed to user, temporary */
34dc7c2f 119 ZFS_PROP_ACLINHERIT,
305bc4b3 120 ZFS_PROP_CREATETXG,
34dc7c2f
BB
121 ZFS_PROP_NAME, /* not exposed to the user */
122 ZFS_PROP_CANMOUNT,
34dc7c2f
BB
123 ZFS_PROP_ISCSIOPTIONS, /* not exposed to the user */
124 ZFS_PROP_XATTR,
125 ZFS_PROP_NUMCLONES, /* not exposed to the user */
126 ZFS_PROP_COPIES,
127 ZFS_PROP_VERSION,
128 ZFS_PROP_UTF8ONLY,
129 ZFS_PROP_NORMALIZE,
130 ZFS_PROP_CASE,
131 ZFS_PROP_VSCAN,
132 ZFS_PROP_NBMAND,
133 ZFS_PROP_SHARESMB,
134 ZFS_PROP_REFQUOTA,
135 ZFS_PROP_REFRESERVATION,
b128c09f
BB
136 ZFS_PROP_GUID,
137 ZFS_PROP_PRIMARYCACHE,
138 ZFS_PROP_SECONDARYCACHE,
139 ZFS_PROP_USEDSNAP,
140 ZFS_PROP_USEDDS,
141 ZFS_PROP_USEDCHILD,
142 ZFS_PROP_USEDREFRESERV,
9babb374
BB
143 ZFS_PROP_USERACCOUNTING, /* not exposed to the user */
144 ZFS_PROP_STMF_SHAREINFO, /* not exposed to the user */
45d1cae3
BB
145 ZFS_PROP_DEFER_DESTROY,
146 ZFS_PROP_USERREFS,
428870ff
BB
147 ZFS_PROP_LOGBIAS,
148 ZFS_PROP_UNIQUE, /* not exposed to the user */
a448a255 149 ZFS_PROP_OBJSETID,
428870ff
BB
150 ZFS_PROP_DEDUP,
151 ZFS_PROP_MLSLABEL,
152 ZFS_PROP_SYNC,
50c957f7 153 ZFS_PROP_DNODESIZE,
f5fc4aca 154 ZFS_PROP_REFRATIO,
330d06f9
MA
155 ZFS_PROP_WRITTEN,
156 ZFS_PROP_CLONES,
24a64651
MA
157 ZFS_PROP_LOGICALUSED,
158 ZFS_PROP_LOGICALREFERENCED,
96c2e961 159 ZFS_PROP_INCONSISTENT, /* not exposed to the user */
cf8738d8 160 ZFS_PROP_VOLMODE,
788eb90c
JJ
161 ZFS_PROP_FILESYSTEM_LIMIT,
162 ZFS_PROP_SNAPSHOT_LIMIT,
163 ZFS_PROP_FILESYSTEM_COUNT,
164 ZFS_PROP_SNAPSHOT_COUNT,
0b4d1b58 165 ZFS_PROP_SNAPDEV,
023699cd 166 ZFS_PROP_ACLTYPE,
11b9ec23
MT
167 ZFS_PROP_SELINUX_CONTEXT,
168 ZFS_PROP_SELINUX_FSCONTEXT,
169 ZFS_PROP_SELINUX_DEFCONTEXT,
170 ZFS_PROP_SELINUX_ROOTCONTEXT,
6d111134 171 ZFS_PROP_RELATIME,
faf0f58c 172 ZFS_PROP_REDUNDANT_METADATA,
f67d7090 173 ZFS_PROP_OVERLAY,
1715493f 174 ZFS_PROP_PREV_SNAP,
47dfff3b 175 ZFS_PROP_RECEIVE_RESUME_TOKEN,
b5256303
TC
176 ZFS_PROP_ENCRYPTION,
177 ZFS_PROP_KEYLOCATION,
178 ZFS_PROP_KEYFORMAT,
179 ZFS_PROP_PBKDF2_SALT,
180 ZFS_PROP_PBKDF2_ITERS,
181 ZFS_PROP_ENCRYPTION_ROOT,
182 ZFS_PROP_KEY_GUID,
183 ZFS_PROP_KEYSTATUS,
a1d477c2 184 ZFS_PROP_REMAPTXG, /* not exposed to the user */
cc99f275 185 ZFS_PROP_SPECIAL_SMALL_BLOCKS,
34dc7c2f
BB
186 ZFS_NUM_PROPS
187} zfs_prop_t;
188
9babb374
BB
189typedef enum {
190 ZFS_PROP_USERUSED,
191 ZFS_PROP_USERQUOTA,
192 ZFS_PROP_GROUPUSED,
193 ZFS_PROP_GROUPQUOTA,
1de321e6
JX
194 ZFS_PROP_USEROBJUSED,
195 ZFS_PROP_USEROBJQUOTA,
196 ZFS_PROP_GROUPOBJUSED,
197 ZFS_PROP_GROUPOBJQUOTA,
9c5167d1
NF
198 ZFS_PROP_PROJECTUSED,
199 ZFS_PROP_PROJECTQUOTA,
200 ZFS_PROP_PROJECTOBJUSED,
201 ZFS_PROP_PROJECTOBJQUOTA,
9babb374
BB
202 ZFS_NUM_USERQUOTA_PROPS
203} zfs_userquota_prop_t;
204
205extern const char *zfs_userquota_prop_prefixes[ZFS_NUM_USERQUOTA_PROPS];
206
34dc7c2f
BB
207/*
208 * Pool properties are identified by these constants and must be added to the
b128c09f 209 * end of this list to ensure that external consumers are not affected
34dc7c2f 210 * by the change. If you make any changes to this list, be sure to update
e77aa730 211 * the property table in module/zcommon/zpool_prop.c.
34dc7c2f
BB
212 */
213typedef enum {
31864e3d 214 ZPOOL_PROP_INVAL = -1,
34dc7c2f
BB
215 ZPOOL_PROP_NAME,
216 ZPOOL_PROP_SIZE,
34dc7c2f
BB
217 ZPOOL_PROP_CAPACITY,
218 ZPOOL_PROP_ALTROOT,
219 ZPOOL_PROP_HEALTH,
220 ZPOOL_PROP_GUID,
221 ZPOOL_PROP_VERSION,
222 ZPOOL_PROP_BOOTFS,
223 ZPOOL_PROP_DELEGATION,
224 ZPOOL_PROP_AUTOREPLACE,
225 ZPOOL_PROP_CACHEFILE,
226 ZPOOL_PROP_FAILUREMODE,
b128c09f 227 ZPOOL_PROP_LISTSNAPS,
9babb374 228 ZPOOL_PROP_AUTOEXPAND,
428870ff
BB
229 ZPOOL_PROP_DEDUPDITTO,
230 ZPOOL_PROP_DEDUPRATIO,
231 ZPOOL_PROP_FREE,
232 ZPOOL_PROP_ALLOCATED,
572e2857 233 ZPOOL_PROP_READONLY,
df30f566 234 ZPOOL_PROP_ASHIFT,
d96eb2b1 235 ZPOOL_PROP_COMMENT,
1bd201e7 236 ZPOOL_PROP_EXPANDSZ,
9ae529ec 237 ZPOOL_PROP_FREEING,
f3a7f661 238 ZPOOL_PROP_FRAGMENTATION,
fbeddd60 239 ZPOOL_PROP_LEAKED,
f1512ee6 240 ZPOOL_PROP_MAXBLOCKSIZE,
83e9986f 241 ZPOOL_PROP_TNAME,
50c957f7 242 ZPOOL_PROP_MAXDNODESIZE,
379ca9cf 243 ZPOOL_PROP_MULTIHOST,
d2734cce 244 ZPOOL_PROP_CHECKPOINT,
a448a255 245 ZPOOL_PROP_LOAD_GUID,
34dc7c2f
BB
246 ZPOOL_NUM_PROPS
247} zpool_prop_t;
248
d96eb2b1
DM
249/* Small enough to not hog a whole line of printout in zpool(1M). */
250#define ZPROP_MAX_COMMENT 32
251
34dc7c2f
BB
252#define ZPROP_VALUE "value"
253#define ZPROP_SOURCE "source"
254
255typedef enum {
256 ZPROP_SRC_NONE = 0x1,
257 ZPROP_SRC_DEFAULT = 0x2,
258 ZPROP_SRC_TEMPORARY = 0x4,
259 ZPROP_SRC_LOCAL = 0x8,
428870ff
BB
260 ZPROP_SRC_INHERITED = 0x10,
261 ZPROP_SRC_RECEIVED = 0x20
34dc7c2f
BB
262} zprop_source_t;
263
428870ff
BB
264#define ZPROP_SRC_ALL 0x3f
265
266#define ZPROP_SOURCE_VAL_RECVD "$recvd"
267#define ZPROP_N_MORE_ERRORS "N_MORE_ERRORS"
43e52edd 268
428870ff
BB
269/*
270 * Dataset flag implemented as a special entry in the props zap object
271 * indicating that the dataset has received properties on or after
272 * SPA_VERSION_RECVD_PROPS. The first such receive blows away local properties
273 * just as it did in earlier versions, and thereafter, local properties are
274 * preserved.
275 */
276#define ZPROP_HAS_RECVD "$hasrecvd"
277
278typedef enum {
279 ZPROP_ERR_NOCLEAR = 0x1, /* failure to clear existing props */
280 ZPROP_ERR_NORESTORE = 0x2 /* failure to restore props on error */
281} zprop_errflags_t;
34dc7c2f
BB
282
283typedef int (*zprop_func)(int, void *);
284
b128c09f
BB
285/*
286 * Properties to be set on the root file system of a new pool
287 * are stuffed into their own nvlist, which is then included in
288 * the properties nvlist with the pool properties.
289 */
290#define ZPOOL_ROOTFS_PROPS "root-props-nvl"
291
d99a0153
CW
292/*
293 * Length of 'written@' and 'written#'
294 */
295#define ZFS_WRITTEN_PROP_PREFIX_LEN 8
296
34dc7c2f
BB
297/*
298 * Dataset property functions shared between libzfs and kernel.
299 */
300const char *zfs_prop_default_string(zfs_prop_t);
301uint64_t zfs_prop_default_numeric(zfs_prop_t);
302boolean_t zfs_prop_readonly(zfs_prop_t);
d99a0153 303boolean_t zfs_prop_visible(zfs_prop_t prop);
34dc7c2f
BB
304boolean_t zfs_prop_inheritable(zfs_prop_t);
305boolean_t zfs_prop_setonce(zfs_prop_t);
b5256303
TC
306boolean_t zfs_prop_encryption_key_param(zfs_prop_t);
307boolean_t zfs_prop_valid_keylocation(const char *, boolean_t);
34dc7c2f
BB
308const char *zfs_prop_to_name(zfs_prop_t);
309zfs_prop_t zfs_name_to_prop(const char *);
310boolean_t zfs_prop_user(const char *);
428870ff 311boolean_t zfs_prop_userquota(const char *);
330d06f9 312boolean_t zfs_prop_written(const char *);
34dc7c2f
BB
313int zfs_prop_index_to_string(zfs_prop_t, uint64_t, const char **);
314int zfs_prop_string_to_index(zfs_prop_t, const char *, uint64_t *);
428870ff 315uint64_t zfs_prop_random_value(zfs_prop_t, uint64_t seed);
962d5242 316boolean_t zfs_prop_valid_for_type(int, zfs_type_t, boolean_t);
34dc7c2f
BB
317
318/*
319 * Pool property functions shared between libzfs and kernel.
320 */
321zpool_prop_t zpool_name_to_prop(const char *);
322const char *zpool_prop_to_name(zpool_prop_t);
323const char *zpool_prop_default_string(zpool_prop_t);
324uint64_t zpool_prop_default_numeric(zpool_prop_t);
325boolean_t zpool_prop_readonly(zpool_prop_t);
edf60b86 326boolean_t zpool_prop_setonce(zpool_prop_t);
9ae529ec
CS
327boolean_t zpool_prop_feature(const char *);
328boolean_t zpool_prop_unsupported(const char *);
34dc7c2f
BB
329int zpool_prop_index_to_string(zpool_prop_t, uint64_t, const char **);
330int zpool_prop_string_to_index(zpool_prop_t, const char *, uint64_t *);
428870ff 331uint64_t zpool_prop_random_value(zpool_prop_t, uint64_t seed);
34dc7c2f
BB
332
333/*
334 * Definitions for the Delegation.
335 */
336typedef enum {
337 ZFS_DELEG_WHO_UNKNOWN = 0,
338 ZFS_DELEG_USER = 'u',
339 ZFS_DELEG_USER_SETS = 'U',
340 ZFS_DELEG_GROUP = 'g',
341 ZFS_DELEG_GROUP_SETS = 'G',
342 ZFS_DELEG_EVERYONE = 'e',
343 ZFS_DELEG_EVERYONE_SETS = 'E',
344 ZFS_DELEG_CREATE = 'c',
345 ZFS_DELEG_CREATE_SETS = 'C',
346 ZFS_DELEG_NAMED_SET = 's',
347 ZFS_DELEG_NAMED_SET_SETS = 'S'
348} zfs_deleg_who_type_t;
349
350typedef enum {
351 ZFS_DELEG_NONE = 0,
352 ZFS_DELEG_PERM_LOCAL = 1,
353 ZFS_DELEG_PERM_DESCENDENT = 2,
354 ZFS_DELEG_PERM_LOCALDESCENDENT = 3,
355 ZFS_DELEG_PERM_CREATE = 4
356} zfs_deleg_inherit_t;
357
358#define ZFS_DELEG_PERM_UID "uid"
359#define ZFS_DELEG_PERM_GID "gid"
360#define ZFS_DELEG_PERM_GROUPS "groups"
361
428870ff
BB
362#define ZFS_MLSLABEL_DEFAULT "none"
363
9babb374
BB
364#define ZFS_SMB_ACL_SRC "src"
365#define ZFS_SMB_ACL_TARGET "target"
366
34dc7c2f
BB
367typedef enum {
368 ZFS_CANMOUNT_OFF = 0,
369 ZFS_CANMOUNT_ON = 1,
370 ZFS_CANMOUNT_NOAUTO = 2
371} zfs_canmount_type_t;
372
428870ff
BB
373typedef enum {
374 ZFS_LOGBIAS_LATENCY = 0,
375 ZFS_LOGBIAS_THROUGHPUT = 1
376} zfs_logbias_op_t;
377
34dc7c2f
BB
378typedef enum zfs_share_op {
379 ZFS_SHARE_NFS = 0,
380 ZFS_UNSHARE_NFS = 1,
381 ZFS_SHARE_SMB = 2,
382 ZFS_UNSHARE_SMB = 3
383} zfs_share_op_t;
384
9babb374
BB
385typedef enum zfs_smb_acl_op {
386 ZFS_SMB_ACL_ADD,
387 ZFS_SMB_ACL_REMOVE,
388 ZFS_SMB_ACL_RENAME,
389 ZFS_SMB_ACL_PURGE
390} zfs_smb_acl_op_t;
391
b128c09f
BB
392typedef enum zfs_cache_type {
393 ZFS_CACHE_NONE = 0,
394 ZFS_CACHE_METADATA = 1,
395 ZFS_CACHE_ALL = 2
396} zfs_cache_type_t;
397
428870ff
BB
398typedef enum {
399 ZFS_SYNC_STANDARD = 0,
400 ZFS_SYNC_ALWAYS = 1,
401 ZFS_SYNC_DISABLED = 2
402} zfs_sync_type_t;
403
82a37189
BB
404typedef enum {
405 ZFS_XATTR_OFF = 0,
406 ZFS_XATTR_DIR = 1,
407 ZFS_XATTR_SA = 2
408} zfs_xattr_type_t;
b128c09f 409
50c957f7
NB
410typedef enum {
411 ZFS_DNSIZE_LEGACY = 0,
412 ZFS_DNSIZE_AUTO = 1,
413 ZFS_DNSIZE_1K = 1024,
414 ZFS_DNSIZE_2K = 2048,
415 ZFS_DNSIZE_4K = 4096,
416 ZFS_DNSIZE_8K = 8192,
417 ZFS_DNSIZE_16K = 16384
418} zfs_dnsize_type_t;
419
faf0f58c
MA
420typedef enum {
421 ZFS_REDUNDANT_METADATA_ALL,
422 ZFS_REDUNDANT_METADATA_MOST
423} zfs_redundant_metadata_type_t;
424
cf8738d8 425typedef enum {
426 ZFS_VOLMODE_DEFAULT = 0,
427 ZFS_VOLMODE_GEOM = 1,
428 ZFS_VOLMODE_DEV = 2,
429 ZFS_VOLMODE_NONE = 3
430} zfs_volmode_t;
431
b5256303
TC
432typedef enum zfs_keystatus {
433 ZFS_KEYSTATUS_NONE = 0,
434 ZFS_KEYSTATUS_UNAVAILABLE,
435 ZFS_KEYSTATUS_AVAILABLE,
436} zfs_keystatus_t;
437
438typedef enum zfs_keyformat {
439 ZFS_KEYFORMAT_NONE = 0,
440 ZFS_KEYFORMAT_RAW,
441 ZFS_KEYFORMAT_HEX,
442 ZFS_KEYFORMAT_PASSPHRASE,
443 ZFS_KEYFORMAT_FORMATS
444} zfs_keyformat_t;
445
446typedef enum zfs_key_location {
447 ZFS_KEYLOCATION_NONE = 0,
448 ZFS_KEYLOCATION_PROMPT,
449 ZFS_KEYLOCATION_URI,
450 ZFS_KEYLOCATION_LOCATIONS
451} zfs_keylocation_t;
452
453#define DEFAULT_PBKDF2_ITERATIONS 350000
454#define MIN_PBKDF2_ITERATIONS 100000
455
34dc7c2f
BB
456/*
457 * On-disk version number.
458 */
459#define SPA_VERSION_1 1ULL
460#define SPA_VERSION_2 2ULL
461#define SPA_VERSION_3 3ULL
462#define SPA_VERSION_4 4ULL
463#define SPA_VERSION_5 5ULL
464#define SPA_VERSION_6 6ULL
465#define SPA_VERSION_7 7ULL
466#define SPA_VERSION_8 8ULL
467#define SPA_VERSION_9 9ULL
468#define SPA_VERSION_10 10ULL
b128c09f
BB
469#define SPA_VERSION_11 11ULL
470#define SPA_VERSION_12 12ULL
471#define SPA_VERSION_13 13ULL
472#define SPA_VERSION_14 14ULL
9babb374
BB
473#define SPA_VERSION_15 15ULL
474#define SPA_VERSION_16 16ULL
45d1cae3
BB
475#define SPA_VERSION_17 17ULL
476#define SPA_VERSION_18 18ULL
428870ff
BB
477#define SPA_VERSION_19 19ULL
478#define SPA_VERSION_20 20ULL
479#define SPA_VERSION_21 21ULL
480#define SPA_VERSION_22 22ULL
481#define SPA_VERSION_23 23ULL
482#define SPA_VERSION_24 24ULL
483#define SPA_VERSION_25 25ULL
484#define SPA_VERSION_26 26ULL
572e2857
BB
485#define SPA_VERSION_27 27ULL
486#define SPA_VERSION_28 28ULL
9ae529ec 487#define SPA_VERSION_5000 5000ULL
572e2857 488
34dc7c2f
BB
489/*
490 * When bumping up SPA_VERSION, make sure GRUB ZFS understands the on-disk
9babb374
BB
491 * format change. Go to usr/src/grub/grub-0.97/stage2/{zfs-include/, fsys_zfs*},
492 * and do the appropriate changes. Also bump the version number in
493 * usr/src/grub/capability.
34dc7c2f 494 */
9ae529ec
CS
495#define SPA_VERSION SPA_VERSION_5000
496#define SPA_VERSION_STRING "5000"
34dc7c2f
BB
497
498/*
499 * Symbolic names for the changes that caused a SPA_VERSION switch.
500 * Used in the code when checking for presence or absence of a feature.
501 * Feel free to define multiple symbolic names for each version if there
502 * were multiple changes to on-disk structures during that version.
503 *
504 * NOTE: When checking the current SPA_VERSION in your code, be sure
505 * to use spa_version() since it reports the version of the
506 * last synced uberblock. Checking the in-flight version can
507 * be dangerous in some cases.
508 */
509#define SPA_VERSION_INITIAL SPA_VERSION_1
510#define SPA_VERSION_DITTO_BLOCKS SPA_VERSION_2
511#define SPA_VERSION_SPARES SPA_VERSION_3
45d1cae3 512#define SPA_VERSION_RAIDZ2 SPA_VERSION_3
428870ff 513#define SPA_VERSION_BPOBJ_ACCOUNT SPA_VERSION_3
34dc7c2f
BB
514#define SPA_VERSION_RAIDZ_DEFLATE SPA_VERSION_3
515#define SPA_VERSION_DNODE_BYTES SPA_VERSION_3
516#define SPA_VERSION_ZPOOL_HISTORY SPA_VERSION_4
517#define SPA_VERSION_GZIP_COMPRESSION SPA_VERSION_5
518#define SPA_VERSION_BOOTFS SPA_VERSION_6
519#define SPA_VERSION_SLOGS SPA_VERSION_7
520#define SPA_VERSION_DELEGATED_PERMS SPA_VERSION_8
521#define SPA_VERSION_FUID SPA_VERSION_9
522#define SPA_VERSION_REFRESERVATION SPA_VERSION_9
523#define SPA_VERSION_REFQUOTA SPA_VERSION_9
524#define SPA_VERSION_UNIQUE_ACCURATE SPA_VERSION_9
525#define SPA_VERSION_L2CACHE SPA_VERSION_10
b128c09f
BB
526#define SPA_VERSION_NEXT_CLONES SPA_VERSION_11
527#define SPA_VERSION_ORIGIN SPA_VERSION_11
528#define SPA_VERSION_DSL_SCRUB SPA_VERSION_11
529#define SPA_VERSION_SNAP_PROPS SPA_VERSION_12
530#define SPA_VERSION_USED_BREAKDOWN SPA_VERSION_13
531#define SPA_VERSION_PASSTHROUGH_X SPA_VERSION_14
9babb374
BB
532#define SPA_VERSION_USERSPACE SPA_VERSION_15
533#define SPA_VERSION_STMF_PROP SPA_VERSION_16
45d1cae3
BB
534#define SPA_VERSION_RAIDZ3 SPA_VERSION_17
535#define SPA_VERSION_USERREFS SPA_VERSION_18
428870ff
BB
536#define SPA_VERSION_HOLES SPA_VERSION_19
537#define SPA_VERSION_ZLE_COMPRESSION SPA_VERSION_20
538#define SPA_VERSION_DEDUP SPA_VERSION_21
539#define SPA_VERSION_RECVD_PROPS SPA_VERSION_22
540#define SPA_VERSION_SLIM_ZIL SPA_VERSION_23
541#define SPA_VERSION_SA SPA_VERSION_24
542#define SPA_VERSION_SCAN SPA_VERSION_25
543#define SPA_VERSION_DIR_CLONES SPA_VERSION_26
544#define SPA_VERSION_DEADLISTS SPA_VERSION_26
572e2857
BB
545#define SPA_VERSION_FAST_SNAP SPA_VERSION_27
546#define SPA_VERSION_MULTI_REPLACE SPA_VERSION_28
9ae529ec
CS
547#define SPA_VERSION_BEFORE_FEATURES SPA_VERSION_28
548#define SPA_VERSION_FEATURES SPA_VERSION_5000
549
550#define SPA_VERSION_IS_SUPPORTED(v) \
551 (((v) >= SPA_VERSION_INITIAL && (v) <= SPA_VERSION_BEFORE_FEATURES) || \
552 ((v) >= SPA_VERSION_FEATURES && (v) <= SPA_VERSION))
34dc7c2f
BB
553
554/*
555 * ZPL version - rev'd whenever an incompatible on-disk format change
556 * occurs. This is independent of SPA/DMU/ZAP versioning. You must
557 * also update the version_table[] and help message in zfs_prop.c.
558 *
559 * When changing, be sure to teach GRUB how to read the new format!
9babb374 560 * See usr/src/grub/grub-0.97/stage2/{zfs-include/,fsys_zfs*}
34dc7c2f
BB
561 */
562#define ZPL_VERSION_1 1ULL
563#define ZPL_VERSION_2 2ULL
564#define ZPL_VERSION_3 3ULL
9babb374 565#define ZPL_VERSION_4 4ULL
428870ff
BB
566#define ZPL_VERSION_5 5ULL
567#define ZPL_VERSION ZPL_VERSION_5
568#define ZPL_VERSION_STRING "5"
34dc7c2f
BB
569
570#define ZPL_VERSION_INITIAL ZPL_VERSION_1
571#define ZPL_VERSION_DIRENT_TYPE ZPL_VERSION_2
572#define ZPL_VERSION_FUID ZPL_VERSION_3
573#define ZPL_VERSION_NORMALIZATION ZPL_VERSION_3
574#define ZPL_VERSION_SYSATTR ZPL_VERSION_3
9babb374 575#define ZPL_VERSION_USERSPACE ZPL_VERSION_4
428870ff
BB
576#define ZPL_VERSION_SA ZPL_VERSION_5
577
8a393be3 578/* Rewind policy information */
428870ff
BB
579#define ZPOOL_NO_REWIND 1 /* No policy - default behavior */
580#define ZPOOL_NEVER_REWIND 2 /* Do not search for best txg or rewind */
581#define ZPOOL_TRY_REWIND 4 /* Search for best txg, but do not rewind */
582#define ZPOOL_DO_REWIND 8 /* Rewind to best txg w/in deferred frees */
583#define ZPOOL_EXTREME_REWIND 16 /* Allow extreme measures to find best txg */
584#define ZPOOL_REWIND_MASK 28 /* All the possible rewind bits */
585#define ZPOOL_REWIND_POLICIES 31 /* All the possible policy bits */
586
8a393be3
PZ
587typedef struct zpool_load_policy {
588 uint32_t zlp_rewind; /* rewind policy requested */
589 uint64_t zlp_maxmeta; /* max acceptable meta-data errors */
590 uint64_t zlp_maxdata; /* max acceptable data errors */
591 uint64_t zlp_txg; /* specific txg to load */
592} zpool_load_policy_t;
34dc7c2f
BB
593
594/*
595 * The following are configuration names used in the nvlist describing a pool's
a1d477c2
MA
596 * configuration. New on-disk names should be prefixed with "<reverse-DNS>:"
597 * (e.g. "org.open-zfs:") to avoid conflicting names being developed
598 * independently.
34dc7c2f
BB
599 */
600#define ZPOOL_CONFIG_VERSION "version"
601#define ZPOOL_CONFIG_POOL_NAME "name"
602#define ZPOOL_CONFIG_POOL_STATE "state"
603#define ZPOOL_CONFIG_POOL_TXG "txg"
604#define ZPOOL_CONFIG_POOL_GUID "pool_guid"
605#define ZPOOL_CONFIG_CREATE_TXG "create_txg"
606#define ZPOOL_CONFIG_TOP_GUID "top_guid"
607#define ZPOOL_CONFIG_VDEV_TREE "vdev_tree"
608#define ZPOOL_CONFIG_TYPE "type"
609#define ZPOOL_CONFIG_CHILDREN "children"
610#define ZPOOL_CONFIG_ID "id"
611#define ZPOOL_CONFIG_GUID "guid"
a1d477c2
MA
612#define ZPOOL_CONFIG_INDIRECT_OBJECT "com.delphix:indirect_object"
613#define ZPOOL_CONFIG_INDIRECT_BIRTHS "com.delphix:indirect_births"
614#define ZPOOL_CONFIG_PREV_INDIRECT_VDEV "com.delphix:prev_indirect_vdev"
34dc7c2f
BB
615#define ZPOOL_CONFIG_PATH "path"
616#define ZPOOL_CONFIG_DEVID "devid"
617#define ZPOOL_CONFIG_METASLAB_ARRAY "metaslab_array"
618#define ZPOOL_CONFIG_METASLAB_SHIFT "metaslab_shift"
619#define ZPOOL_CONFIG_ASHIFT "ashift"
620#define ZPOOL_CONFIG_ASIZE "asize"
621#define ZPOOL_CONFIG_DTL "DTL"
428870ff 622#define ZPOOL_CONFIG_SCAN_STATS "scan_stats" /* not stored on disk */
a1d477c2 623#define ZPOOL_CONFIG_REMOVAL_STATS "removal_stats" /* not stored on disk */
d2734cce 624#define ZPOOL_CONFIG_CHECKPOINT_STATS "checkpoint_stats" /* not on disk */
428870ff 625#define ZPOOL_CONFIG_VDEV_STATS "vdev_stats" /* not stored on disk */
a1d477c2 626#define ZPOOL_CONFIG_INDIRECT_SIZE "indirect_size" /* not stored on disk */
193a37cb
TH
627
628/* container nvlist of extended stats */
629#define ZPOOL_CONFIG_VDEV_STATS_EX "vdev_stats_ex"
630
631/* Active queue read/write stats */
632#define ZPOOL_CONFIG_VDEV_SYNC_R_ACTIVE_QUEUE "vdev_sync_r_active_queue"
633#define ZPOOL_CONFIG_VDEV_SYNC_W_ACTIVE_QUEUE "vdev_sync_w_active_queue"
634#define ZPOOL_CONFIG_VDEV_ASYNC_R_ACTIVE_QUEUE "vdev_async_r_active_queue"
635#define ZPOOL_CONFIG_VDEV_ASYNC_W_ACTIVE_QUEUE "vdev_async_w_active_queue"
636#define ZPOOL_CONFIG_VDEV_SCRUB_ACTIVE_QUEUE "vdev_async_scrub_active_queue"
637
638/* Queue sizes */
639#define ZPOOL_CONFIG_VDEV_SYNC_R_PEND_QUEUE "vdev_sync_r_pend_queue"
640#define ZPOOL_CONFIG_VDEV_SYNC_W_PEND_QUEUE "vdev_sync_w_pend_queue"
641#define ZPOOL_CONFIG_VDEV_ASYNC_R_PEND_QUEUE "vdev_async_r_pend_queue"
642#define ZPOOL_CONFIG_VDEV_ASYNC_W_PEND_QUEUE "vdev_async_w_pend_queue"
643#define ZPOOL_CONFIG_VDEV_SCRUB_PEND_QUEUE "vdev_async_scrub_pend_queue"
644
645/* Latency read/write histogram stats */
646#define ZPOOL_CONFIG_VDEV_TOT_R_LAT_HISTO "vdev_tot_r_lat_histo"
647#define ZPOOL_CONFIG_VDEV_TOT_W_LAT_HISTO "vdev_tot_w_lat_histo"
648#define ZPOOL_CONFIG_VDEV_DISK_R_LAT_HISTO "vdev_disk_r_lat_histo"
649#define ZPOOL_CONFIG_VDEV_DISK_W_LAT_HISTO "vdev_disk_w_lat_histo"
650#define ZPOOL_CONFIG_VDEV_SYNC_R_LAT_HISTO "vdev_sync_r_lat_histo"
651#define ZPOOL_CONFIG_VDEV_SYNC_W_LAT_HISTO "vdev_sync_w_lat_histo"
652#define ZPOOL_CONFIG_VDEV_ASYNC_R_LAT_HISTO "vdev_async_r_lat_histo"
653#define ZPOOL_CONFIG_VDEV_ASYNC_W_LAT_HISTO "vdev_async_w_lat_histo"
654#define ZPOOL_CONFIG_VDEV_SCRUB_LAT_HISTO "vdev_scrub_histo"
655
7e945072
TH
656/* Request size histograms */
657#define ZPOOL_CONFIG_VDEV_SYNC_IND_R_HISTO "vdev_sync_ind_r_histo"
658#define ZPOOL_CONFIG_VDEV_SYNC_IND_W_HISTO "vdev_sync_ind_w_histo"
659#define ZPOOL_CONFIG_VDEV_ASYNC_IND_R_HISTO "vdev_async_ind_r_histo"
660#define ZPOOL_CONFIG_VDEV_ASYNC_IND_W_HISTO "vdev_async_ind_w_histo"
661#define ZPOOL_CONFIG_VDEV_IND_SCRUB_HISTO "vdev_ind_scrub_histo"
662#define ZPOOL_CONFIG_VDEV_SYNC_AGG_R_HISTO "vdev_sync_agg_r_histo"
663#define ZPOOL_CONFIG_VDEV_SYNC_AGG_W_HISTO "vdev_sync_agg_w_histo"
664#define ZPOOL_CONFIG_VDEV_ASYNC_AGG_R_HISTO "vdev_async_agg_r_histo"
665#define ZPOOL_CONFIG_VDEV_ASYNC_AGG_W_HISTO "vdev_async_agg_w_histo"
666#define ZPOOL_CONFIG_VDEV_AGG_SCRUB_HISTO "vdev_agg_scrub_histo"
193a37cb 667
ad796b8a
TH
668/* Number of slow IOs */
669#define ZPOOL_CONFIG_VDEV_SLOW_IOS "vdev_slow_ios"
670
1bbd8770
TH
671/* vdev enclosure sysfs path */
672#define ZPOOL_CONFIG_VDEV_ENC_SYSFS_PATH "vdev_enc_sysfs_path"
673
34dc7c2f
BB
674#define ZPOOL_CONFIG_WHOLE_DISK "whole_disk"
675#define ZPOOL_CONFIG_ERRCOUNT "error_count"
676#define ZPOOL_CONFIG_NOT_PRESENT "not_present"
677#define ZPOOL_CONFIG_SPARES "spares"
678#define ZPOOL_CONFIG_IS_SPARE "is_spare"
679#define ZPOOL_CONFIG_NPARITY "nparity"
680#define ZPOOL_CONFIG_HOSTID "hostid"
681#define ZPOOL_CONFIG_HOSTNAME "hostname"
572e2857 682#define ZPOOL_CONFIG_LOADED_TIME "initial_load_time"
34dc7c2f
BB
683#define ZPOOL_CONFIG_UNSPARE "unspare"
684#define ZPOOL_CONFIG_PHYS_PATH "phys_path"
685#define ZPOOL_CONFIG_IS_LOG "is_log"
686#define ZPOOL_CONFIG_L2CACHE "l2cache"
428870ff
BB
687#define ZPOOL_CONFIG_HOLE_ARRAY "hole_array"
688#define ZPOOL_CONFIG_VDEV_CHILDREN "vdev_children"
689#define ZPOOL_CONFIG_IS_HOLE "is_hole"
690#define ZPOOL_CONFIG_DDT_HISTOGRAM "ddt_histogram"
691#define ZPOOL_CONFIG_DDT_OBJ_STATS "ddt_object_stats"
692#define ZPOOL_CONFIG_DDT_STATS "ddt_stats"
693#define ZPOOL_CONFIG_SPLIT "splitcfg"
694#define ZPOOL_CONFIG_ORIG_GUID "orig_guid"
695#define ZPOOL_CONFIG_SPLIT_GUID "split_guid"
696#define ZPOOL_CONFIG_SPLIT_LIST "guid_list"
697#define ZPOOL_CONFIG_REMOVING "removing"
5d1f7fb6 698#define ZPOOL_CONFIG_RESILVER_TXG "resilver_txg"
d96eb2b1 699#define ZPOOL_CONFIG_COMMENT "comment"
b128c09f 700#define ZPOOL_CONFIG_SUSPENDED "suspended" /* not stored on disk */
cec3a0a1 701#define ZPOOL_CONFIG_SUSPENDED_REASON "suspended_reason" /* not stored */
34dc7c2f
BB
702#define ZPOOL_CONFIG_TIMESTAMP "timestamp" /* not stored on disk */
703#define ZPOOL_CONFIG_BOOTFS "bootfs" /* not stored on disk */
572e2857
BB
704#define ZPOOL_CONFIG_MISSING_DEVICES "missing_vdevs" /* not stored on disk */
705#define ZPOOL_CONFIG_LOAD_INFO "load_info" /* not stored on disk */
9ae529ec
CS
706#define ZPOOL_CONFIG_REWIND_INFO "rewind_info" /* not stored on disk */
707#define ZPOOL_CONFIG_UNSUP_FEAT "unsup_feat" /* not stored on disk */
b9b24bb4 708#define ZPOOL_CONFIG_ENABLED_FEAT "enabled_feat" /* not stored on disk */
9ae529ec
CS
709#define ZPOOL_CONFIG_CAN_RDONLY "can_rdonly" /* not stored on disk */
710#define ZPOOL_CONFIG_FEATURES_FOR_READ "features_for_read"
711#define ZPOOL_CONFIG_FEATURE_STATS "feature_stats" /* not stored on disk */
ffe9d382 712#define ZPOOL_CONFIG_ERRATA "errata" /* not stored on disk */
e0ab3ab5
JS
713#define ZPOOL_CONFIG_VDEV_TOP_ZAP "com.delphix:vdev_zap_top"
714#define ZPOOL_CONFIG_VDEV_LEAF_ZAP "com.delphix:vdev_zap_leaf"
715#define ZPOOL_CONFIG_HAS_PER_VDEV_ZAPS "com.delphix:has_per_vdev_zaps"
80a91e74 716#define ZPOOL_CONFIG_RESILVER_DEFER "com.datto:resilver_defer"
6cb8e530 717#define ZPOOL_CONFIG_CACHEFILE "cachefile" /* not stored on disk */
379ca9cf
OF
718#define ZPOOL_CONFIG_MMP_STATE "mmp_state" /* not stored on disk */
719#define ZPOOL_CONFIG_MMP_TXG "mmp_txg" /* not stored on disk */
720#define ZPOOL_CONFIG_MMP_HOSTNAME "mmp_hostname" /* not stored on disk */
721#define ZPOOL_CONFIG_MMP_HOSTID "mmp_hostid" /* not stored on disk */
cc99f275 722#define ZPOOL_CONFIG_ALLOCATION_BIAS "alloc_bias" /* not stored on disk */
d48091de 723#define ZPOOL_CONFIG_EXPANSION_TIME "expansion_time" /* not stored */
379ca9cf 724
34dc7c2f
BB
725/*
726 * The persistent vdev state is stored as separate values rather than a single
727 * 'vdev_state' entry. This is because a device can be in multiple states, such
728 * as offline and degraded.
729 */
730#define ZPOOL_CONFIG_OFFLINE "offline"
731#define ZPOOL_CONFIG_FAULTED "faulted"
732#define ZPOOL_CONFIG_DEGRADED "degraded"
733#define ZPOOL_CONFIG_REMOVED "removed"
9babb374 734#define ZPOOL_CONFIG_FRU "fru"
428870ff
BB
735#define ZPOOL_CONFIG_AUX_STATE "aux_state"
736
8a393be3
PZ
737/* Pool load policy parameters */
738#define ZPOOL_LOAD_POLICY "load-policy"
739#define ZPOOL_LOAD_REWIND_POLICY "load-rewind-policy"
740#define ZPOOL_LOAD_REQUEST_TXG "load-request-txg"
741#define ZPOOL_LOAD_META_THRESH "load-meta-thresh"
742#define ZPOOL_LOAD_DATA_THRESH "load-data-thresh"
428870ff
BB
743
744/* Rewind data discovered */
745#define ZPOOL_CONFIG_LOAD_TIME "rewind_txg_ts"
746#define ZPOOL_CONFIG_LOAD_DATA_ERRORS "verify_data_errors"
747#define ZPOOL_CONFIG_REWIND_TIME "seconds_of_rewind"
34dc7c2f
BB
748
749#define VDEV_TYPE_ROOT "root"
750#define VDEV_TYPE_MIRROR "mirror"
751#define VDEV_TYPE_REPLACING "replacing"
752#define VDEV_TYPE_RAIDZ "raidz"
753#define VDEV_TYPE_DISK "disk"
754#define VDEV_TYPE_FILE "file"
755#define VDEV_TYPE_MISSING "missing"
428870ff 756#define VDEV_TYPE_HOLE "hole"
34dc7c2f
BB
757#define VDEV_TYPE_SPARE "spare"
758#define VDEV_TYPE_LOG "log"
759#define VDEV_TYPE_L2CACHE "l2cache"
a1d477c2
MA
760#define VDEV_TYPE_INDIRECT "indirect"
761
762/* VDEV_TOP_ZAP_* are used in top-level vdev ZAP objects. */
763#define VDEV_TOP_ZAP_INDIRECT_OBSOLETE_SM \
764 "com.delphix:indirect_obsolete_sm"
765#define VDEV_TOP_ZAP_OBSOLETE_COUNTS_ARE_PRECISE \
766 "com.delphix:obsolete_counts_are_precise"
d2734cce
SD
767#define VDEV_TOP_ZAP_POOL_CHECKPOINT_SM \
768 "com.delphix:pool_checkpoint_sm"
34dc7c2f 769
cc99f275
DB
770#define VDEV_TOP_ZAP_ALLOCATION_BIAS \
771 "org.zfsonlinux:allocation_bias"
772
773/* vdev metaslab allocation bias */
774#define VDEV_ALLOC_BIAS_LOG "log"
775#define VDEV_ALLOC_BIAS_SPECIAL "special"
776#define VDEV_ALLOC_BIAS_DEDUP "dedup"
777
619f0976
GW
778#define VDEV_LEAF_ZAP_INITIALIZE_LAST_OFFSET \
779 "com.delphix:next_offset_to_initialize"
780#define VDEV_LEAF_ZAP_INITIALIZE_STATE \
781 "com.delphix:vdev_initialize_state"
782#define VDEV_LEAF_ZAP_INITIALIZE_ACTION_TIME \
783 "com.delphix:vdev_initialize_action_time"
784
34dc7c2f
BB
785/*
786 * This is needed in userland to report the minimum necessary device size.
787 */
788#define SPA_MINDEVSIZE (64ULL << 20)
789
f3a7f661
GW
790/*
791 * Set if the fragmentation has not yet been calculated. This can happen
792 * because the space maps have not been upgraded or the histogram feature
793 * is not enabled.
794 */
795#define ZFS_FRAG_INVALID UINT64_MAX
796
34dc7c2f
BB
797/*
798 * The location of the pool configuration repository, shared between kernel and
799 * userland.
800 */
b128c09f 801#define ZPOOL_CACHE "/etc/zfs/zpool.cache"
34dc7c2f
BB
802
803/*
804 * vdev states are ordered from least to most healthy.
805 * A vdev that's CANT_OPEN or below is considered unusable.
806 */
807typedef enum vdev_state {
808 VDEV_STATE_UNKNOWN = 0, /* Uninitialized vdev */
809 VDEV_STATE_CLOSED, /* Not currently open */
810 VDEV_STATE_OFFLINE, /* Not allowed to open */
811 VDEV_STATE_REMOVED, /* Explicitly removed from system */
812 VDEV_STATE_CANT_OPEN, /* Tried to open, but failed */
813 VDEV_STATE_FAULTED, /* External request to fault device */
814 VDEV_STATE_DEGRADED, /* Replicated vdev with unhealthy kids */
815 VDEV_STATE_HEALTHY /* Presumed good */
816} vdev_state_t;
817
818#define VDEV_STATE_ONLINE VDEV_STATE_HEALTHY
819
820/*
821 * vdev aux states. When a vdev is in the CANT_OPEN state, the aux field
822 * of the vdev stats structure uses these constants to distinguish why.
823 */
824typedef enum vdev_aux {
825 VDEV_AUX_NONE, /* no error */
826 VDEV_AUX_OPEN_FAILED, /* ldi_open_*() or vn_open() failed */
827 VDEV_AUX_CORRUPT_DATA, /* bad label or disk contents */
828 VDEV_AUX_NO_REPLICAS, /* insufficient number of replicas */
829 VDEV_AUX_BAD_GUID_SUM, /* vdev guid sum doesn't match */
830 VDEV_AUX_TOO_SMALL, /* vdev size is too small */
831 VDEV_AUX_BAD_LABEL, /* the label is OK but invalid */
832 VDEV_AUX_VERSION_NEWER, /* on-disk version is too new */
833 VDEV_AUX_VERSION_OLDER, /* on-disk version is too old */
9ae529ec 834 VDEV_AUX_UNSUP_FEAT, /* unsupported features */
34dc7c2f 835 VDEV_AUX_SPARED, /* hot spare used in another pool */
b128c09f
BB
836 VDEV_AUX_ERR_EXCEEDED, /* too many errors */
837 VDEV_AUX_IO_FAILURE, /* experienced I/O failure */
428870ff 838 VDEV_AUX_BAD_LOG, /* cannot read log chain(s) */
4a283c7f 839 VDEV_AUX_EXTERNAL, /* external diagnosis or forced fault */
ff61d1a4 840 VDEV_AUX_SPLIT_POOL, /* vdev was split off into another pool */
4a283c7f 841 VDEV_AUX_BAD_ASHIFT, /* vdev ashift is invalid */
379ca9cf
OF
842 VDEV_AUX_EXTERNAL_PERSIST, /* persistent forced fault */
843 VDEV_AUX_ACTIVE, /* vdev active on a different host */
6cb8e530 844 VDEV_AUX_CHILDREN_OFFLINE, /* all children are offline */
34dc7c2f
BB
845} vdev_aux_t;
846
847/*
848 * pool state. The following states are written to disk as part of the normal
849 * SPA lifecycle: ACTIVE, EXPORTED, DESTROYED, SPARE, L2CACHE. The remaining
850 * states are software abstractions used at various levels to communicate
851 * pool state.
852 */
853typedef enum pool_state {
854 POOL_STATE_ACTIVE = 0, /* In active use */
855 POOL_STATE_EXPORTED, /* Explicitly exported */
856 POOL_STATE_DESTROYED, /* Explicitly destroyed */
857 POOL_STATE_SPARE, /* Reserved for hot spare use */
858 POOL_STATE_L2CACHE, /* Level 2 ARC device */
859 POOL_STATE_UNINITIALIZED, /* Internal spa_t state */
34dc7c2f
BB
860 POOL_STATE_UNAVAIL, /* Internal libzfs state */
861 POOL_STATE_POTENTIALLY_ACTIVE /* Internal libzfs state */
862} pool_state_t;
863
379ca9cf
OF
864/*
865 * mmp state. The following states provide additional detail describing
866 * why a pool couldn't be safely imported.
867 */
868typedef enum mmp_state {
869 MMP_STATE_ACTIVE = 0, /* In active use */
870 MMP_STATE_INACTIVE, /* Inactive and safe to import */
871 MMP_STATE_NO_HOSTID /* System hostid is not set */
872} mmp_state_t;
873
34dc7c2f 874/*
428870ff 875 * Scan Functions.
34dc7c2f 876 */
428870ff
BB
877typedef enum pool_scan_func {
878 POOL_SCAN_NONE,
879 POOL_SCAN_SCRUB,
880 POOL_SCAN_RESILVER,
881 POOL_SCAN_FUNCS
882} pool_scan_func_t;
34dc7c2f 883
0ea05c64
AP
884/*
885 * Used to control scrub pause and resume.
886 */
887typedef enum pool_scrub_cmd {
888 POOL_SCRUB_NORMAL = 0,
889 POOL_SCRUB_PAUSE,
890 POOL_SCRUB_FLAGS_END
891} pool_scrub_cmd_t;
892
d2734cce
SD
893typedef enum {
894 CS_NONE,
895 CS_CHECKPOINT_EXISTS,
896 CS_CHECKPOINT_DISCARDING,
897 CS_NUM_STATES
898} checkpoint_state_t;
899
900typedef struct pool_checkpoint_stat {
901 uint64_t pcs_state; /* checkpoint_state_t */
902 uint64_t pcs_start_time; /* time checkpoint/discard started */
903 uint64_t pcs_space; /* checkpointed space */
904} pool_checkpoint_stat_t;
0ea05c64 905
34dc7c2f
BB
906/*
907 * ZIO types. Needed to interpret vdev statistics below.
908 */
909typedef enum zio_type {
910 ZIO_TYPE_NULL = 0,
911 ZIO_TYPE_READ,
912 ZIO_TYPE_WRITE,
913 ZIO_TYPE_FREE,
914 ZIO_TYPE_CLAIM,
915 ZIO_TYPE_IOCTL,
916 ZIO_TYPES
917} zio_type_t;
918
428870ff
BB
919/*
920 * Pool statistics. Note: all fields should be 64-bit because this
921 * is passed between kernel and userland as an nvlist uint64 array.
922 */
923typedef struct pool_scan_stat {
924 /* values stored on disk */
925 uint64_t pss_func; /* pool_scan_func_t */
926 uint64_t pss_state; /* dsl_scan_state_t */
927 uint64_t pss_start_time; /* scan start time */
928 uint64_t pss_end_time; /* scan end time */
929 uint64_t pss_to_examine; /* total bytes to scan */
d4a72f23 930 uint64_t pss_examined; /* total bytes located by scanner */
428870ff
BB
931 uint64_t pss_to_process; /* total bytes to process */
932 uint64_t pss_processed; /* total processed bytes */
933 uint64_t pss_errors; /* scan errors */
934
935 /* values not stored on disk */
d4a72f23 936 uint64_t pss_pass_exam; /* examined bytes per scan pass */
428870ff 937 uint64_t pss_pass_start; /* start time of a scan pass */
0ea05c64
AP
938 uint64_t pss_pass_scrub_pause; /* pause time of a scurb pass */
939 /* cumulative time scrub spent paused, needed for rate calculation */
940 uint64_t pss_pass_scrub_spent_paused;
d4677269 941 uint64_t pss_pass_issued; /* issued bytes per scan pass */
d4a72f23 942 uint64_t pss_issued; /* total bytes checked by scanner */
428870ff
BB
943} pool_scan_stat_t;
944
a1d477c2
MA
945typedef struct pool_removal_stat {
946 uint64_t prs_state; /* dsl_scan_state_t */
947 uint64_t prs_removing_vdev;
948 uint64_t prs_start_time;
949 uint64_t prs_end_time;
950 uint64_t prs_to_copy; /* bytes that need to be copied */
951 uint64_t prs_copied; /* bytes copied so far */
952 /*
953 * bytes of memory used for indirect mappings.
954 * This includes all removed vdevs.
955 */
956 uint64_t prs_mapping_memory;
957} pool_removal_stat_t;
958
428870ff
BB
959typedef enum dsl_scan_state {
960 DSS_NONE,
961 DSS_SCANNING,
962 DSS_FINISHED,
963 DSS_CANCELED,
964 DSS_NUM_STATES
965} dsl_scan_state_t;
966
ffe9d382
BB
967/*
968 * Errata described by http://zfsonlinux.org/msg/ZFS-8000-ER. The ordering
969 * of this enum must be maintained to ensure the errata identifiers map to
970 * the correct documentation. New errata may only be appended to the list
971 * and must contain corresponding documentation at the above link.
972 */
973typedef enum zpool_errata {
974 ZPOOL_ERRATA_NONE,
4f2dcb3e
RY
975 ZPOOL_ERRATA_ZOL_2094_SCRUB,
976 ZPOOL_ERRATA_ZOL_2094_ASYNC_DESTROY,
ae76f45c 977 ZPOOL_ERRATA_ZOL_6845_ENCRYPTION,
ffe9d382 978} zpool_errata_t;
428870ff 979
34dc7c2f
BB
980/*
981 * Vdev statistics. Note: all fields should be 64-bit because this
982 * is passed between kernel and userland as an nvlist uint64 array.
983 */
984typedef struct vdev_stat {
985 hrtime_t vs_timestamp; /* time since vdev load */
986 uint64_t vs_state; /* vdev state */
987 uint64_t vs_aux; /* see vdev_aux_t */
988 uint64_t vs_alloc; /* space allocated */
989 uint64_t vs_space; /* total capacity */
990 uint64_t vs_dspace; /* deflated capacity */
991 uint64_t vs_rsize; /* replaceable dev size */
1bd201e7 992 uint64_t vs_esize; /* expandable dev size */
34dc7c2f
BB
993 uint64_t vs_ops[ZIO_TYPES]; /* operation count */
994 uint64_t vs_bytes[ZIO_TYPES]; /* bytes read/written */
995 uint64_t vs_read_errors; /* read errors */
996 uint64_t vs_write_errors; /* write errors */
997 uint64_t vs_checksum_errors; /* checksum errors */
619f0976 998 uint64_t vs_initialize_errors; /* initializing errors */
34dc7c2f 999 uint64_t vs_self_healed; /* self-healed bytes */
428870ff
BB
1000 uint64_t vs_scan_removing; /* removing? */
1001 uint64_t vs_scan_processed; /* scan processed bytes */
f3a7f661 1002 uint64_t vs_fragmentation; /* device fragmentation */
619f0976
GW
1003 uint64_t vs_initialize_bytes_done; /* bytes initialized */
1004 uint64_t vs_initialize_bytes_est; /* total bytes to initialize */
1005 uint64_t vs_initialize_state; /* vdev_initialzing_state_t */
1006 uint64_t vs_initialize_action_time; /* time_t */
d2734cce 1007 uint64_t vs_checkpoint_space; /* checkpoint-consumed space */
80a91e74 1008 uint64_t vs_resilver_deferred; /* resilver deferred */
ad796b8a 1009 uint64_t vs_slow_ios; /* slow IOs */
34dc7c2f
BB
1010} vdev_stat_t;
1011
193a37cb
TH
1012/*
1013 * Extended stats
1014 *
1015 * These are stats which aren't included in the original iostat output. For
1016 * convenience, they are grouped together in vdev_stat_ex, although each stat
d5884c34 1017 * is individually exported as an nvlist.
193a37cb
TH
1018 */
1019typedef struct vdev_stat_ex {
1020 /* Number of ZIOs issued to disk and waiting to finish */
1021 uint64_t vsx_active_queue[ZIO_PRIORITY_NUM_QUEUEABLE];
1022
1023 /* Number of ZIOs pending to be issued to disk */
1024 uint64_t vsx_pend_queue[ZIO_PRIORITY_NUM_QUEUEABLE];
1025
1026 /*
1027 * Below are the histograms for various latencies. Buckets are in
1028 * units of nanoseconds.
1029 */
1030
1031 /*
1032 * 2^37 nanoseconds = 134s. Timeouts will probably start kicking in
1033 * before this.
1034 */
7e945072
TH
1035#define VDEV_L_HISTO_BUCKETS 37 /* Latency histo buckets */
1036#define VDEV_RQ_HISTO_BUCKETS 25 /* Request size histo buckets */
1037
193a37cb
TH
1038 /* Amount of time in ZIO queue (ns) */
1039 uint64_t vsx_queue_histo[ZIO_PRIORITY_NUM_QUEUEABLE]
7e945072 1040 [VDEV_L_HISTO_BUCKETS];
193a37cb
TH
1041
1042 /* Total ZIO latency (ns). Includes queuing and disk access time */
7e945072 1043 uint64_t vsx_total_histo[ZIO_TYPES][VDEV_L_HISTO_BUCKETS];
193a37cb
TH
1044
1045 /* Amount of time to read/write the disk (ns) */
7e945072
TH
1046 uint64_t vsx_disk_histo[ZIO_TYPES][VDEV_L_HISTO_BUCKETS];
1047
1048 /* "lookup the bucket for a value" histogram macros */
1049#define HISTO(val, buckets) (val != 0 ? MIN(highbit64(val) - 1, \
1050 buckets - 1) : 0)
1051#define L_HISTO(a) HISTO(a, VDEV_L_HISTO_BUCKETS)
1052#define RQ_HISTO(a) HISTO(a, VDEV_RQ_HISTO_BUCKETS)
1053
1054 /* Physical IO histogram */
1055 uint64_t vsx_ind_histo[ZIO_PRIORITY_NUM_QUEUEABLE]
1056 [VDEV_RQ_HISTO_BUCKETS];
193a37cb 1057
7e945072
TH
1058 /* Delegated (aggregated) physical IO histogram */
1059 uint64_t vsx_agg_histo[ZIO_PRIORITY_NUM_QUEUEABLE]
1060 [VDEV_RQ_HISTO_BUCKETS];
193a37cb
TH
1061
1062} vdev_stat_ex_t;
1063
619f0976
GW
1064/*
1065 * Initialize functions.
1066 */
1067typedef enum pool_initialize_func {
1068 POOL_INITIALIZE_DO,
1069 POOL_INITIALIZE_CANCEL,
1070 POOL_INITIALIZE_SUSPEND,
1071 POOL_INITIALIZE_FUNCS
1072} pool_initialize_func_t;
1073
428870ff
BB
1074/*
1075 * DDT statistics. Note: all fields should be 64-bit because this
1076 * is passed between kernel and userland as an nvlist uint64 array.
1077 */
1078typedef struct ddt_object {
4e33ba4c 1079 uint64_t ddo_count; /* number of elements in ddt */
428870ff
BB
1080 uint64_t ddo_dspace; /* size of ddt on disk */
1081 uint64_t ddo_mspace; /* size of ddt in-core */
1082} ddt_object_t;
1083
1084typedef struct ddt_stat {
1085 uint64_t dds_blocks; /* blocks */
1086 uint64_t dds_lsize; /* logical size */
1087 uint64_t dds_psize; /* physical size */
1088 uint64_t dds_dsize; /* deflated allocated size */
1089 uint64_t dds_ref_blocks; /* referenced blocks */
1090 uint64_t dds_ref_lsize; /* referenced lsize * refcnt */
1091 uint64_t dds_ref_psize; /* referenced psize * refcnt */
1092 uint64_t dds_ref_dsize; /* referenced dsize * refcnt */
1093} ddt_stat_t;
1094
1095typedef struct ddt_histogram {
1096 ddt_stat_t ddh_stat[64]; /* power-of-two histogram buckets */
1097} ddt_histogram_t;
1098
34dc7c2f
BB
1099#define ZVOL_DRIVER "zvol"
1100#define ZFS_DRIVER "zfs"
1101#define ZFS_DEV "/dev/zfs"
2bac6814 1102#define ZFS_SHARETAB "/etc/dfs/sharetab"
34dc7c2f 1103
774ee3c7
GM
1104#define ZFS_SUPER_MAGIC 0x2fc12fc1
1105
428870ff 1106/* general zvol path */
60101509
BB
1107#define ZVOL_DIR "/dev"
1108
1109#define ZVOL_MAJOR 230
1110#define ZVOL_MINOR_BITS 4
1111#define ZVOL_MINOR_MASK ((1U << ZVOL_MINOR_BITS) - 1)
1112#define ZVOL_MINORS (1 << 4)
4c0d8e50 1113#define ZVOL_DEV_NAME "zd"
34dc7c2f
BB
1114
1115#define ZVOL_PROP_NAME "name"
428870ff 1116#define ZVOL_DEFAULT_BLOCKSIZE 8192
34dc7c2f 1117
619f0976
GW
1118typedef enum {
1119 VDEV_INITIALIZE_NONE,
1120 VDEV_INITIALIZE_ACTIVE,
1121 VDEV_INITIALIZE_CANCELED,
1122 VDEV_INITIALIZE_SUSPENDED,
1123 VDEV_INITIALIZE_COMPLETE
1124} vdev_initializing_state_t;
1125
34dc7c2f
BB
1126/*
1127 * /dev/zfs ioctl numbers.
b83a0e2d
DB
1128 *
1129 * These numbers cannot change over time. New ioctl numbers must be appended.
34dc7c2f 1130 */
34dc7c2f 1131typedef enum zfs_ioc {
2e0358cb 1132 /*
43e52edd 1133 * Illumos - 71/128 numbers reserved.
2e0358cb 1134 */
6f1ffb06
MA
1135 ZFS_IOC_FIRST = ('Z' << 8),
1136 ZFS_IOC = ZFS_IOC_FIRST,
b83a0e2d
DB
1137 ZFS_IOC_POOL_CREATE = ZFS_IOC_FIRST, /* 0x5a00 */
1138 ZFS_IOC_POOL_DESTROY, /* 0x5a01 */
1139 ZFS_IOC_POOL_IMPORT, /* 0x5a02 */
1140 ZFS_IOC_POOL_EXPORT, /* 0x5a03 */
1141 ZFS_IOC_POOL_CONFIGS, /* 0x5a04 */
1142 ZFS_IOC_POOL_STATS, /* 0x5a05 */
1143 ZFS_IOC_POOL_TRYIMPORT, /* 0x5a06 */
1144 ZFS_IOC_POOL_SCAN, /* 0x5a07 */
1145 ZFS_IOC_POOL_FREEZE, /* 0x5a08 */
1146 ZFS_IOC_POOL_UPGRADE, /* 0x5a09 */
1147 ZFS_IOC_POOL_GET_HISTORY, /* 0x5a0a */
1148 ZFS_IOC_VDEV_ADD, /* 0x5a0b */
1149 ZFS_IOC_VDEV_REMOVE, /* 0x5a0c */
1150 ZFS_IOC_VDEV_SET_STATE, /* 0x5a0d */
1151 ZFS_IOC_VDEV_ATTACH, /* 0x5a0e */
1152 ZFS_IOC_VDEV_DETACH, /* 0x5a0f */
1153 ZFS_IOC_VDEV_SETPATH, /* 0x5a10 */
1154 ZFS_IOC_VDEV_SETFRU, /* 0x5a11 */
1155 ZFS_IOC_OBJSET_STATS, /* 0x5a12 */
1156 ZFS_IOC_OBJSET_ZPLPROPS, /* 0x5a13 */
1157 ZFS_IOC_DATASET_LIST_NEXT, /* 0x5a14 */
1158 ZFS_IOC_SNAPSHOT_LIST_NEXT, /* 0x5a15 */
1159 ZFS_IOC_SET_PROP, /* 0x5a16 */
1160 ZFS_IOC_CREATE, /* 0x5a17 */
1161 ZFS_IOC_DESTROY, /* 0x5a18 */
1162 ZFS_IOC_ROLLBACK, /* 0x5a19 */
1163 ZFS_IOC_RENAME, /* 0x5a1a */
1164 ZFS_IOC_RECV, /* 0x5a1b */
1165 ZFS_IOC_SEND, /* 0x5a1c */
1166 ZFS_IOC_INJECT_FAULT, /* 0x5a1d */
1167 ZFS_IOC_CLEAR_FAULT, /* 0x5a1e */
1168 ZFS_IOC_INJECT_LIST_NEXT, /* 0x5a1f */
1169 ZFS_IOC_ERROR_LOG, /* 0x5a20 */
1170 ZFS_IOC_CLEAR, /* 0x5a21 */
1171 ZFS_IOC_PROMOTE, /* 0x5a22 */
1172 ZFS_IOC_SNAPSHOT, /* 0x5a23 */
1173 ZFS_IOC_DSOBJ_TO_DSNAME, /* 0x5a24 */
1174 ZFS_IOC_OBJ_TO_PATH, /* 0x5a25 */
1175 ZFS_IOC_POOL_SET_PROPS, /* 0x5a26 */
1176 ZFS_IOC_POOL_GET_PROPS, /* 0x5a27 */
1177 ZFS_IOC_SET_FSACL, /* 0x5a28 */
1178 ZFS_IOC_GET_FSACL, /* 0x5a29 */
1179 ZFS_IOC_SHARE, /* 0x5a2a */
1180 ZFS_IOC_INHERIT_PROP, /* 0x5a2b */
1181 ZFS_IOC_SMB_ACL, /* 0x5a2c */
1182 ZFS_IOC_USERSPACE_ONE, /* 0x5a2d */
1183 ZFS_IOC_USERSPACE_MANY, /* 0x5a2e */
1184 ZFS_IOC_USERSPACE_UPGRADE, /* 0x5a2f */
1185 ZFS_IOC_HOLD, /* 0x5a30 */
1186 ZFS_IOC_RELEASE, /* 0x5a31 */
1187 ZFS_IOC_GET_HOLDS, /* 0x5a32 */
1188 ZFS_IOC_OBJSET_RECVD_PROPS, /* 0x5a33 */
1189 ZFS_IOC_VDEV_SPLIT, /* 0x5a34 */
1190 ZFS_IOC_NEXT_OBJ, /* 0x5a35 */
1191 ZFS_IOC_DIFF, /* 0x5a36 */
1192 ZFS_IOC_TMP_SNAPSHOT, /* 0x5a37 */
1193 ZFS_IOC_OBJ_TO_STATS, /* 0x5a38 */
1194 ZFS_IOC_SPACE_WRITTEN, /* 0x5a39 */
1195 ZFS_IOC_SPACE_SNAPS, /* 0x5a3a */
1196 ZFS_IOC_DESTROY_SNAPS, /* 0x5a3b */
1197 ZFS_IOC_POOL_REGUID, /* 0x5a3c */
1198 ZFS_IOC_POOL_REOPEN, /* 0x5a3d */
1199 ZFS_IOC_SEND_PROGRESS, /* 0x5a3e */
1200 ZFS_IOC_LOG_HISTORY, /* 0x5a3f */
1201 ZFS_IOC_SEND_NEW, /* 0x5a40 */
1202 ZFS_IOC_SEND_SPACE, /* 0x5a41 */
1203 ZFS_IOC_CLONE, /* 0x5a42 */
1204 ZFS_IOC_BOOKMARK, /* 0x5a43 */
1205 ZFS_IOC_GET_BOOKMARKS, /* 0x5a44 */
1206 ZFS_IOC_DESTROY_BOOKMARKS, /* 0x5a45 */
1207 ZFS_IOC_CHANNEL_PROGRAM, /* 0x5a46 */
1208 ZFS_IOC_RECV_NEW, /* 0x5a47 */
1209 ZFS_IOC_POOL_SYNC, /* 0x5a48 */
1210 ZFS_IOC_LOAD_KEY, /* 0x5a49 */
1211 ZFS_IOC_UNLOAD_KEY, /* 0x5a4a */
1212 ZFS_IOC_CHANGE_KEY, /* 0x5a4b */
1213 ZFS_IOC_REMAP, /* 0x5a4c */
1214 ZFS_IOC_POOL_CHECKPOINT, /* 0x5a4d */
1215 ZFS_IOC_POOL_DISCARD_CHECKPOINT, /* 0x5a4e */
619f0976 1216 ZFS_IOC_POOL_INITIALIZE, /* 0x5a4f */
2e0358cb
BB
1217
1218 /*
1219 * Linux - 3/64 numbers reserved.
1220 */
1221 ZFS_IOC_LINUX = ('Z' << 8) + 0x80,
b83a0e2d
DB
1222 ZFS_IOC_EVENTS_NEXT, /* 0x5a81 */
1223 ZFS_IOC_EVENTS_CLEAR, /* 0x5a82 */
1224 ZFS_IOC_EVENTS_SEEK, /* 0x5a83 */
2e0358cb
BB
1225
1226 /*
1227 * FreeBSD - 1/64 numbers reserved.
1228 */
1229 ZFS_IOC_FREEBSD = ('Z' << 8) + 0xC0,
1230
6f1ffb06 1231 ZFS_IOC_LAST
34dc7c2f
BB
1232} zfs_ioc_t;
1233
4c0d8e50
FN
1234/*
1235 * zvol ioctl to get dataset name
1236 */
eca7b760 1237#define BLKZNAME _IOR(0x12, 125, char[ZFS_MAX_DATASET_NAME_LEN])
4c0d8e50 1238
d2734cce
SD
1239/*
1240 * ZFS-specific error codes used for returning descriptive errors
1241 * to the userland through zfs ioctls.
1242 *
1243 * The enum implicitly includes all the error codes from errno.h.
1244 * New code should use and extend this enum for errors that are
1245 * not described precisely by generic errno codes.
b83a0e2d
DB
1246 *
1247 * These numbers should not change over time. New entries should be appended.
d2734cce
SD
1248 */
1249typedef enum {
1250 ZFS_ERR_CHECKPOINT_EXISTS = 1024,
1251 ZFS_ERR_DISCARDING_CHECKPOINT,
1252 ZFS_ERR_NO_CHECKPOINT,
1253 ZFS_ERR_DEVRM_IN_PROGRESS,
b83a0e2d
DB
1254 ZFS_ERR_VDEV_TOO_BIG,
1255 ZFS_ERR_IOC_CMD_UNAVAIL,
1256 ZFS_ERR_IOC_ARG_UNAVAIL,
1257 ZFS_ERR_IOC_ARG_REQUIRED,
1258 ZFS_ERR_IOC_ARG_BADTYPE,
d8d418ff 1259 ZFS_ERR_WRONG_PARENT,
d2734cce
SD
1260} zfs_errno_t;
1261
34dc7c2f
BB
1262/*
1263 * Internal SPA load state. Used by FMA diagnosis engine.
1264 */
1265typedef enum {
428870ff
BB
1266 SPA_LOAD_NONE, /* no load in progress */
1267 SPA_LOAD_OPEN, /* normal open */
1268 SPA_LOAD_IMPORT, /* import in progress */
1269 SPA_LOAD_TRYIMPORT, /* tryimport in progress */
1270 SPA_LOAD_RECOVER, /* recovery requested */
3dfb57a3
DB
1271 SPA_LOAD_ERROR, /* load failed */
1272 SPA_LOAD_CREATE /* creation in progress */
34dc7c2f
BB
1273} spa_load_state_t;
1274
1275/*
1276 * Bookmark name values.
1277 */
1278#define ZPOOL_ERR_LIST "error list"
1279#define ZPOOL_ERR_DATASET "dataset"
1280#define ZPOOL_ERR_OBJECT "object"
1281
1282#define HIS_MAX_RECORD_LEN (MAXPATHLEN + MAXPATHLEN + 1)
1283
1284/*
1285 * The following are names used in the nvlist describing
1286 * the pool's history log.
1287 */
1288#define ZPOOL_HIST_RECORD "history record"
1289#define ZPOOL_HIST_TIME "history time"
1290#define ZPOOL_HIST_CMD "history command"
1291#define ZPOOL_HIST_WHO "history who"
1292#define ZPOOL_HIST_ZONE "history zone"
1293#define ZPOOL_HIST_HOST "history hostname"
1294#define ZPOOL_HIST_TXG "history txg"
1295#define ZPOOL_HIST_INT_EVENT "history internal event"
1296#define ZPOOL_HIST_INT_STR "history internal str"
6f1ffb06
MA
1297#define ZPOOL_HIST_INT_NAME "internal_name"
1298#define ZPOOL_HIST_IOCTL "ioctl"
1299#define ZPOOL_HIST_INPUT_NVL "in_nvl"
1300#define ZPOOL_HIST_OUTPUT_NVL "out_nvl"
1301#define ZPOOL_HIST_DSNAME "dsname"
1302#define ZPOOL_HIST_DSID "dsid"
d99a0153 1303#define ZPOOL_HIST_ERRNO "errno"
34dc7c2f 1304
b5256303
TC
1305/*
1306 * Special nvlist name that will not have its args recorded in the pool's
1307 * history log.
1308 */
1309#define ZPOOL_HIDDEN_ARGS "hidden_args"
1310
619f0976
GW
1311/*
1312 * The following are names used when invoking ZFS_IOC_POOL_INITIALIZE.
1313 */
1314#define ZPOOL_INITIALIZE_COMMAND "initialize_command"
1315#define ZPOOL_INITIALIZE_VDEVS "initialize_vdevs"
1316
34dc7c2f
BB
1317/*
1318 * Flags for ZFS_IOC_VDEV_SET_STATE
1319 */
1320#define ZFS_ONLINE_CHECKREMOVE 0x1
1321#define ZFS_ONLINE_UNSPARE 0x2
1322#define ZFS_ONLINE_FORCEFAULT 0x4
9babb374 1323#define ZFS_ONLINE_EXPAND 0x8
34dc7c2f
BB
1324#define ZFS_OFFLINE_TEMPORARY 0x1
1325
572e2857
BB
1326/*
1327 * Flags for ZFS_IOC_POOL_IMPORT
1328 */
1329#define ZFS_IMPORT_NORMAL 0x0
1330#define ZFS_IMPORT_VERBATIM 0x1
1331#define ZFS_IMPORT_ANY_HOST 0x2
1332#define ZFS_IMPORT_MISSING_LOG 0x4
1333#define ZFS_IMPORT_ONLY 0x8
26b42f3f 1334#define ZFS_IMPORT_TEMP_NAME 0x10
379ca9cf 1335#define ZFS_IMPORT_SKIP_MMP 0x20
b5256303 1336#define ZFS_IMPORT_LOAD_KEYS 0x40
d2734cce 1337#define ZFS_IMPORT_CHECKPOINT 0x80
572e2857 1338
d99a0153
CW
1339/*
1340 * Channel program argument/return nvlist keys and defaults.
1341 */
1342#define ZCP_ARG_PROGRAM "program"
1343#define ZCP_ARG_ARGLIST "arg"
5b72a38d 1344#define ZCP_ARG_SYNC "sync"
d99a0153
CW
1345#define ZCP_ARG_INSTRLIMIT "instrlimit"
1346#define ZCP_ARG_MEMLIMIT "memlimit"
1347
1348#define ZCP_ARG_CLIARGV "argv"
1349
1350#define ZCP_RET_ERROR "error"
1351#define ZCP_RET_RETURN "return"
1352
1353#define ZCP_DEFAULT_INSTRLIMIT (10 * 1000 * 1000)
1354#define ZCP_MAX_INSTRLIMIT (10 * ZCP_DEFAULT_INSTRLIMIT)
1355#define ZCP_DEFAULT_MEMLIMIT (10 * 1024 * 1024)
1356#define ZCP_MAX_MEMLIMIT (10 * ZCP_DEFAULT_MEMLIMIT)
1357
34dc7c2f
BB
1358/*
1359 * Sysevent payload members. ZFS will generate the following sysevents with the
1360 * given payloads:
1361 *
1362 * ESC_ZFS_RESILVER_START
1363 * ESC_ZFS_RESILVER_END
1364 * ESC_ZFS_POOL_DESTROY
3541dc6d 1365 * ESC_ZFS_POOL_REGUID
34dc7c2f
BB
1366 *
1367 * ZFS_EV_POOL_NAME DATA_TYPE_STRING
1368 * ZFS_EV_POOL_GUID DATA_TYPE_UINT64
1369 *
1370 * ESC_ZFS_VDEV_REMOVE
1371 * ESC_ZFS_VDEV_CLEAR
1372 * ESC_ZFS_VDEV_CHECK
1373 *
1374 * ZFS_EV_POOL_NAME DATA_TYPE_STRING
1375 * ZFS_EV_POOL_GUID DATA_TYPE_UINT64
1376 * ZFS_EV_VDEV_PATH DATA_TYPE_STRING (optional)
1377 * ZFS_EV_VDEV_GUID DATA_TYPE_UINT64
12fa0466
DE
1378 *
1379 * ESC_ZFS_HISTORY_EVENT
1380 *
1381 * ZFS_EV_POOL_NAME DATA_TYPE_STRING
1382 * ZFS_EV_POOL_GUID DATA_TYPE_UINT64
1383 * ZFS_EV_HIST_TIME DATA_TYPE_UINT64 (optional)
1384 * ZFS_EV_HIST_CMD DATA_TYPE_STRING (optional)
1385 * ZFS_EV_HIST_WHO DATA_TYPE_UINT64 (optional)
1386 * ZFS_EV_HIST_ZONE DATA_TYPE_STRING (optional)
1387 * ZFS_EV_HIST_HOST DATA_TYPE_STRING (optional)
1388 * ZFS_EV_HIST_TXG DATA_TYPE_UINT64 (optional)
1389 * ZFS_EV_HIST_INT_EVENT DATA_TYPE_UINT64 (optional)
1390 * ZFS_EV_HIST_INT_STR DATA_TYPE_STRING (optional)
1391 * ZFS_EV_HIST_INT_NAME DATA_TYPE_STRING (optional)
1392 * ZFS_EV_HIST_IOCTL DATA_TYPE_STRING (optional)
1393 * ZFS_EV_HIST_DSNAME DATA_TYPE_STRING (optional)
1394 * ZFS_EV_HIST_DSID DATA_TYPE_UINT64 (optional)
1395 *
1396 * The ZFS_EV_HIST_* members will correspond to the ZPOOL_HIST_* members in the
1397 * history log nvlist. The keynames will be free of any spaces or other
1398 * characters that could be potentially unexpected to consumers of the
1399 * sysevents.
34dc7c2f
BB
1400 */
1401#define ZFS_EV_POOL_NAME "pool_name"
1402#define ZFS_EV_POOL_GUID "pool_guid"
1403#define ZFS_EV_VDEV_PATH "vdev_path"
1404#define ZFS_EV_VDEV_GUID "vdev_guid"
12fa0466
DE
1405#define ZFS_EV_HIST_TIME "history_time"
1406#define ZFS_EV_HIST_CMD "history_command"
1407#define ZFS_EV_HIST_WHO "history_who"
1408#define ZFS_EV_HIST_ZONE "history_zone"
1409#define ZFS_EV_HIST_HOST "history_hostname"
1410#define ZFS_EV_HIST_TXG "history_txg"
1411#define ZFS_EV_HIST_INT_EVENT "history_internal_event"
1412#define ZFS_EV_HIST_INT_STR "history_internal_str"
1413#define ZFS_EV_HIST_INT_NAME "history_internal_name"
1414#define ZFS_EV_HIST_IOCTL "history_ioctl"
1415#define ZFS_EV_HIST_DSNAME "history_dsname"
1416#define ZFS_EV_HIST_DSID "history_dsid"
34dc7c2f 1417
34dc7c2f
BB
1418#ifdef __cplusplus
1419}
1420#endif
1421
1422#endif /* _SYS_FS_ZFS_H */