xref: /illumos-gate/usr/src/uts/common/sys/fs/zfs.h (revision 0a586cea3ceec7e5e50e7e54c745082a7a333ac2)
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  */
21 
22 /*
23  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #ifndef	_SYS_FS_ZFS_H
28 #define	_SYS_FS_ZFS_H
29 
30 #include <sys/time.h>
31 
32 #ifdef	__cplusplus
33 extern "C" {
34 #endif
35 
36 /*
37  * Types and constants shared between userland and the kernel.
38  */
39 
40 /*
41  * Each dataset can be one of the following types.  These constants can be
42  * combined into masks that can be passed to various functions.
43  */
44 typedef enum {
45 	ZFS_TYPE_FILESYSTEM	= 0x1,
46 	ZFS_TYPE_SNAPSHOT	= 0x2,
47 	ZFS_TYPE_VOLUME		= 0x4,
48 	ZFS_TYPE_POOL		= 0x8
49 } zfs_type_t;
50 
51 #define	ZFS_TYPE_DATASET	\
52 	(ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME | ZFS_TYPE_SNAPSHOT)
53 
54 #define	ZAP_MAXNAMELEN 256
55 #define	ZAP_MAXVALUELEN (1024 * 8)
56 #define	ZAP_OLDMAXVALUELEN 1024
57 
58 /*
59  * Dataset properties are identified by these constants and must be added to
60  * the end of this list to ensure that external consumers are not affected
61  * by the change. If you make any changes to this list, be sure to update
62  * the property table in usr/src/common/zfs/zfs_prop.c.
63  */
64 typedef enum {
65 	ZFS_PROP_TYPE,
66 	ZFS_PROP_CREATION,
67 	ZFS_PROP_USED,
68 	ZFS_PROP_AVAILABLE,
69 	ZFS_PROP_REFERENCED,
70 	ZFS_PROP_COMPRESSRATIO,
71 	ZFS_PROP_MOUNTED,
72 	ZFS_PROP_ORIGIN,
73 	ZFS_PROP_QUOTA,
74 	ZFS_PROP_RESERVATION,
75 	ZFS_PROP_VOLSIZE,
76 	ZFS_PROP_VOLBLOCKSIZE,
77 	ZFS_PROP_RECORDSIZE,
78 	ZFS_PROP_MOUNTPOINT,
79 	ZFS_PROP_SHARENFS,
80 	ZFS_PROP_CHECKSUM,
81 	ZFS_PROP_COMPRESSION,
82 	ZFS_PROP_ATIME,
83 	ZFS_PROP_DEVICES,
84 	ZFS_PROP_EXEC,
85 	ZFS_PROP_SETUID,
86 	ZFS_PROP_READONLY,
87 	ZFS_PROP_ZONED,
88 	ZFS_PROP_SNAPDIR,
89 	ZFS_PROP_ACLMODE,
90 	ZFS_PROP_ACLINHERIT,
91 	ZFS_PROP_CREATETXG,		/* not exposed to the user */
92 	ZFS_PROP_NAME,			/* not exposed to the user */
93 	ZFS_PROP_CANMOUNT,
94 	ZFS_PROP_ISCSIOPTIONS,		/* not exposed to the user */
95 	ZFS_PROP_XATTR,
96 	ZFS_PROP_NUMCLONES,		/* not exposed to the user */
97 	ZFS_PROP_COPIES,
98 	ZFS_PROP_VERSION,
99 	ZFS_PROP_UTF8ONLY,
100 	ZFS_PROP_NORMALIZE,
101 	ZFS_PROP_CASE,
102 	ZFS_PROP_VSCAN,
103 	ZFS_PROP_NBMAND,
104 	ZFS_PROP_SHARESMB,
105 	ZFS_PROP_REFQUOTA,
106 	ZFS_PROP_REFRESERVATION,
107 	ZFS_PROP_GUID,
108 	ZFS_PROP_PRIMARYCACHE,
109 	ZFS_PROP_SECONDARYCACHE,
110 	ZFS_PROP_USEDSNAP,
111 	ZFS_PROP_USEDDS,
112 	ZFS_PROP_USEDCHILD,
113 	ZFS_PROP_USEDREFRESERV,
114 	ZFS_PROP_USERACCOUNTING,	/* not exposed to the user */
115 	ZFS_PROP_STMF_SHAREINFO,	/* not exposed to the user */
116 	ZFS_PROP_DEFER_DESTROY,
117 	ZFS_PROP_USERREFS,
118 	ZFS_PROP_LOGBIAS,
119 	ZFS_PROP_UNIQUE,		/* not exposed to the user */
120 	ZFS_PROP_OBJSETID,		/* not exposed to the user */
121 	ZFS_PROP_DEDUP,
122 	ZFS_PROP_MLSLABEL,
123 	ZFS_NUM_PROPS
124 } zfs_prop_t;
125 
126 typedef enum {
127 	ZFS_PROP_USERUSED,
128 	ZFS_PROP_USERQUOTA,
129 	ZFS_PROP_GROUPUSED,
130 	ZFS_PROP_GROUPQUOTA,
131 	ZFS_NUM_USERQUOTA_PROPS
132 } zfs_userquota_prop_t;
133 
134 extern const char *zfs_userquota_prop_prefixes[ZFS_NUM_USERQUOTA_PROPS];
135 
136 /*
137  * Pool properties are identified by these constants and must be added to the
138  * end of this list to ensure that external consumers are not affected
139  * by the change. If you make any changes to this list, be sure to update
140  * the property table in usr/src/common/zfs/zpool_prop.c.
141  */
142 typedef enum {
143 	ZPOOL_PROP_NAME,
144 	ZPOOL_PROP_SIZE,
145 	ZPOOL_PROP_CAPACITY,
146 	ZPOOL_PROP_ALTROOT,
147 	ZPOOL_PROP_HEALTH,
148 	ZPOOL_PROP_GUID,
149 	ZPOOL_PROP_VERSION,
150 	ZPOOL_PROP_BOOTFS,
151 	ZPOOL_PROP_DELEGATION,
152 	ZPOOL_PROP_AUTOREPLACE,
153 	ZPOOL_PROP_CACHEFILE,
154 	ZPOOL_PROP_FAILUREMODE,
155 	ZPOOL_PROP_LISTSNAPS,
156 	ZPOOL_PROP_AUTOEXPAND,
157 	ZPOOL_PROP_DEDUPDITTO,
158 	ZPOOL_PROP_DEDUPRATIO,
159 	ZPOOL_PROP_FREE,
160 	ZPOOL_PROP_ALLOCATED,
161 	ZPOOL_NUM_PROPS
162 } zpool_prop_t;
163 
164 #define	ZPROP_CONT		-2
165 #define	ZPROP_INVAL		-1
166 
167 #define	ZPROP_VALUE		"value"
168 #define	ZPROP_SOURCE		"source"
169 
170 typedef enum {
171 	ZPROP_SRC_NONE = 0x1,
172 	ZPROP_SRC_DEFAULT = 0x2,
173 	ZPROP_SRC_TEMPORARY = 0x4,
174 	ZPROP_SRC_LOCAL = 0x8,
175 	ZPROP_SRC_INHERITED = 0x10,
176 	ZPROP_SRC_RECEIVED = 0x20
177 } zprop_source_t;
178 
179 #define	ZPROP_SRC_ALL	0x3f
180 
181 #define	ZPROP_SOURCE_VAL_RECVD	"$recvd"
182 #define	ZPROP_N_MORE_ERRORS	"N_MORE_ERRORS"
183 /*
184  * Dataset flag implemented as a special entry in the props zap object
185  * indicating that the dataset has received properties on or after
186  * SPA_VERSION_RECVD_PROPS. The first such receive blows away local properties
187  * just as it did in earlier versions, and thereafter, local properties are
188  * preserved.
189  */
190 #define	ZPROP_HAS_RECVD		"$hasrecvd"
191 
192 typedef enum {
193 	ZPROP_ERR_NOCLEAR = 0x1, /* failure to clear existing props */
194 	ZPROP_ERR_NORESTORE = 0x2 /* failure to restore props on error */
195 } zprop_errflags_t;
196 
197 typedef int (*zprop_func)(int, void *);
198 
199 /*
200  * Properties to be set on the root file system of a new pool
201  * are stuffed into their own nvlist, which is then included in
202  * the properties nvlist with the pool properties.
203  */
204 #define	ZPOOL_ROOTFS_PROPS	"root-props-nvl"
205 
206 /*
207  * Dataset property functions shared between libzfs and kernel.
208  */
209 const char *zfs_prop_default_string(zfs_prop_t);
210 uint64_t zfs_prop_default_numeric(zfs_prop_t);
211 boolean_t zfs_prop_readonly(zfs_prop_t);
212 boolean_t zfs_prop_inheritable(zfs_prop_t);
213 boolean_t zfs_prop_setonce(zfs_prop_t);
214 const char *zfs_prop_to_name(zfs_prop_t);
215 zfs_prop_t zfs_name_to_prop(const char *);
216 boolean_t zfs_prop_user(const char *);
217 boolean_t zfs_prop_userquota(const char *);
218 int zfs_prop_index_to_string(zfs_prop_t, uint64_t, const char **);
219 int zfs_prop_string_to_index(zfs_prop_t, const char *, uint64_t *);
220 uint64_t zfs_prop_random_value(zfs_prop_t, uint64_t seed);
221 boolean_t zfs_prop_valid_for_type(int, zfs_type_t);
222 
223 /*
224  * Pool property functions shared between libzfs and kernel.
225  */
226 zpool_prop_t zpool_name_to_prop(const char *);
227 const char *zpool_prop_to_name(zpool_prop_t);
228 const char *zpool_prop_default_string(zpool_prop_t);
229 uint64_t zpool_prop_default_numeric(zpool_prop_t);
230 boolean_t zpool_prop_readonly(zpool_prop_t);
231 int zpool_prop_index_to_string(zpool_prop_t, uint64_t, const char **);
232 int zpool_prop_string_to_index(zpool_prop_t, const char *, uint64_t *);
233 uint64_t zpool_prop_random_value(zpool_prop_t, uint64_t seed);
234 
235 /*
236  * Definitions for the Delegation.
237  */
238 typedef enum {
239 	ZFS_DELEG_WHO_UNKNOWN = 0,
240 	ZFS_DELEG_USER = 'u',
241 	ZFS_DELEG_USER_SETS = 'U',
242 	ZFS_DELEG_GROUP = 'g',
243 	ZFS_DELEG_GROUP_SETS = 'G',
244 	ZFS_DELEG_EVERYONE = 'e',
245 	ZFS_DELEG_EVERYONE_SETS = 'E',
246 	ZFS_DELEG_CREATE = 'c',
247 	ZFS_DELEG_CREATE_SETS = 'C',
248 	ZFS_DELEG_NAMED_SET = 's',
249 	ZFS_DELEG_NAMED_SET_SETS = 'S'
250 } zfs_deleg_who_type_t;
251 
252 typedef enum {
253 	ZFS_DELEG_NONE = 0,
254 	ZFS_DELEG_PERM_LOCAL = 1,
255 	ZFS_DELEG_PERM_DESCENDENT = 2,
256 	ZFS_DELEG_PERM_LOCALDESCENDENT = 3,
257 	ZFS_DELEG_PERM_CREATE = 4
258 } zfs_deleg_inherit_t;
259 
260 #define	ZFS_DELEG_PERM_UID	"uid"
261 #define	ZFS_DELEG_PERM_GID	"gid"
262 #define	ZFS_DELEG_PERM_GROUPS	"groups"
263 
264 #define	ZFS_MLSLABEL_DEFAULT	"none"
265 
266 #define	ZFS_SMB_ACL_SRC		"src"
267 #define	ZFS_SMB_ACL_TARGET	"target"
268 
269 typedef enum {
270 	ZFS_CANMOUNT_OFF = 0,
271 	ZFS_CANMOUNT_ON = 1,
272 	ZFS_CANMOUNT_NOAUTO = 2
273 } zfs_canmount_type_t;
274 
275 typedef enum {
276 	ZFS_LOGBIAS_LATENCY = 0,
277 	ZFS_LOGBIAS_THROUGHPUT = 1
278 } zfs_logbias_op_t;
279 
280 typedef enum zfs_share_op {
281 	ZFS_SHARE_NFS = 0,
282 	ZFS_UNSHARE_NFS = 1,
283 	ZFS_SHARE_SMB = 2,
284 	ZFS_UNSHARE_SMB = 3
285 } zfs_share_op_t;
286 
287 typedef enum zfs_smb_acl_op {
288 	ZFS_SMB_ACL_ADD,
289 	ZFS_SMB_ACL_REMOVE,
290 	ZFS_SMB_ACL_RENAME,
291 	ZFS_SMB_ACL_PURGE
292 } zfs_smb_acl_op_t;
293 
294 typedef enum zfs_cache_type {
295 	ZFS_CACHE_NONE = 0,
296 	ZFS_CACHE_METADATA = 1,
297 	ZFS_CACHE_ALL = 2
298 } zfs_cache_type_t;
299 
300 
301 /*
302  * On-disk version number.
303  */
304 #define	SPA_VERSION_1			1ULL
305 #define	SPA_VERSION_2			2ULL
306 #define	SPA_VERSION_3			3ULL
307 #define	SPA_VERSION_4			4ULL
308 #define	SPA_VERSION_5			5ULL
309 #define	SPA_VERSION_6			6ULL
310 #define	SPA_VERSION_7			7ULL
311 #define	SPA_VERSION_8			8ULL
312 #define	SPA_VERSION_9			9ULL
313 #define	SPA_VERSION_10			10ULL
314 #define	SPA_VERSION_11			11ULL
315 #define	SPA_VERSION_12			12ULL
316 #define	SPA_VERSION_13			13ULL
317 #define	SPA_VERSION_14			14ULL
318 #define	SPA_VERSION_15			15ULL
319 #define	SPA_VERSION_16			16ULL
320 #define	SPA_VERSION_17			17ULL
321 #define	SPA_VERSION_18			18ULL
322 #define	SPA_VERSION_19			19ULL
323 #define	SPA_VERSION_20			20ULL
324 #define	SPA_VERSION_21			21ULL
325 #define	SPA_VERSION_22			22ULL
326 #define	SPA_VERSION_23			23ULL
327 #define	SPA_VERSION_24			24ULL
328 /*
329  * When bumping up SPA_VERSION, make sure GRUB ZFS understands the on-disk
330  * format change. Go to usr/src/grub/grub-0.97/stage2/{zfs-include/, fsys_zfs*},
331  * and do the appropriate changes.  Also bump the version number in
332  * usr/src/grub/capability.
333  */
334 #define	SPA_VERSION			SPA_VERSION_24
335 #define	SPA_VERSION_STRING		"24"
336 
337 /*
338  * Symbolic names for the changes that caused a SPA_VERSION switch.
339  * Used in the code when checking for presence or absence of a feature.
340  * Feel free to define multiple symbolic names for each version if there
341  * were multiple changes to on-disk structures during that version.
342  *
343  * NOTE: When checking the current SPA_VERSION in your code, be sure
344  *       to use spa_version() since it reports the version of the
345  *       last synced uberblock.  Checking the in-flight version can
346  *       be dangerous in some cases.
347  */
348 #define	SPA_VERSION_INITIAL		SPA_VERSION_1
349 #define	SPA_VERSION_DITTO_BLOCKS	SPA_VERSION_2
350 #define	SPA_VERSION_SPARES		SPA_VERSION_3
351 #define	SPA_VERSION_RAIDZ2		SPA_VERSION_3
352 #define	SPA_VERSION_BPLIST_ACCOUNT	SPA_VERSION_3
353 #define	SPA_VERSION_RAIDZ_DEFLATE	SPA_VERSION_3
354 #define	SPA_VERSION_DNODE_BYTES		SPA_VERSION_3
355 #define	SPA_VERSION_ZPOOL_HISTORY	SPA_VERSION_4
356 #define	SPA_VERSION_GZIP_COMPRESSION	SPA_VERSION_5
357 #define	SPA_VERSION_BOOTFS		SPA_VERSION_6
358 #define	SPA_VERSION_SLOGS		SPA_VERSION_7
359 #define	SPA_VERSION_DELEGATED_PERMS	SPA_VERSION_8
360 #define	SPA_VERSION_FUID		SPA_VERSION_9
361 #define	SPA_VERSION_REFRESERVATION	SPA_VERSION_9
362 #define	SPA_VERSION_REFQUOTA		SPA_VERSION_9
363 #define	SPA_VERSION_UNIQUE_ACCURATE	SPA_VERSION_9
364 #define	SPA_VERSION_L2CACHE		SPA_VERSION_10
365 #define	SPA_VERSION_NEXT_CLONES		SPA_VERSION_11
366 #define	SPA_VERSION_ORIGIN		SPA_VERSION_11
367 #define	SPA_VERSION_DSL_SCRUB		SPA_VERSION_11
368 #define	SPA_VERSION_SNAP_PROPS		SPA_VERSION_12
369 #define	SPA_VERSION_USED_BREAKDOWN	SPA_VERSION_13
370 #define	SPA_VERSION_PASSTHROUGH_X	SPA_VERSION_14
371 #define	SPA_VERSION_USERSPACE		SPA_VERSION_15
372 #define	SPA_VERSION_STMF_PROP		SPA_VERSION_16
373 #define	SPA_VERSION_RAIDZ3		SPA_VERSION_17
374 #define	SPA_VERSION_USERREFS		SPA_VERSION_18
375 #define	SPA_VERSION_HOLES		SPA_VERSION_19
376 #define	SPA_VERSION_ZLE_COMPRESSION	SPA_VERSION_20
377 #define	SPA_VERSION_DEDUP		SPA_VERSION_21
378 #define	SPA_VERSION_RECVD_PROPS		SPA_VERSION_22
379 #define	SPA_VERSION_SLIM_ZIL		SPA_VERSION_23
380 #define	SPA_VERSION_SA			SPA_VERSION_24
381 
382 /*
383  * ZPL version - rev'd whenever an incompatible on-disk format change
384  * occurs.  This is independent of SPA/DMU/ZAP versioning.  You must
385  * also update the version_table[] and help message in zfs_prop.c.
386  *
387  * When changing, be sure to teach GRUB how to read the new format!
388  * See usr/src/grub/grub-0.97/stage2/{zfs-include/,fsys_zfs*}
389  */
390 #define	ZPL_VERSION_1			1ULL
391 #define	ZPL_VERSION_2			2ULL
392 #define	ZPL_VERSION_3			3ULL
393 #define	ZPL_VERSION_4			4ULL
394 #define	ZPL_VERSION_5			5ULL
395 #define	ZPL_VERSION			ZPL_VERSION_5
396 #define	ZPL_VERSION_STRING		"5"
397 
398 #define	ZPL_VERSION_INITIAL		ZPL_VERSION_1
399 #define	ZPL_VERSION_DIRENT_TYPE		ZPL_VERSION_2
400 #define	ZPL_VERSION_FUID		ZPL_VERSION_3
401 #define	ZPL_VERSION_NORMALIZATION	ZPL_VERSION_3
402 #define	ZPL_VERSION_SYSATTR		ZPL_VERSION_3
403 #define	ZPL_VERSION_USERSPACE		ZPL_VERSION_4
404 #define	ZPL_VERSION_SA			ZPL_VERSION_5
405 
406 /* Rewind request information */
407 #define	ZPOOL_NO_REWIND		1  /* No policy - default behavior */
408 #define	ZPOOL_NEVER_REWIND	2  /* Do not search for best txg or rewind */
409 #define	ZPOOL_TRY_REWIND	4  /* Search for best txg, but do not rewind */
410 #define	ZPOOL_DO_REWIND		8  /* Rewind to best txg w/in deferred frees */
411 #define	ZPOOL_EXTREME_REWIND	16 /* Allow extreme measures to find best txg */
412 #define	ZPOOL_REWIND_MASK	28 /* All the possible rewind bits */
413 #define	ZPOOL_REWIND_POLICIES	31 /* All the possible policy bits */
414 
415 typedef struct zpool_rewind_policy {
416 	uint32_t	zrp_request;	/* rewind behavior requested */
417 	uint64_t	zrp_maxmeta;	/* max acceptable meta-data errors */
418 	uint64_t	zrp_maxdata;	/* max acceptable data errors */
419 	uint64_t	zrp_txg;	/* specific txg to load */
420 } zpool_rewind_policy_t;
421 
422 /*
423  * The following are configuration names used in the nvlist describing a pool's
424  * configuration.
425  */
426 #define	ZPOOL_CONFIG_VERSION		"version"
427 #define	ZPOOL_CONFIG_POOL_NAME		"name"
428 #define	ZPOOL_CONFIG_POOL_STATE		"state"
429 #define	ZPOOL_CONFIG_POOL_TXG		"txg"
430 #define	ZPOOL_CONFIG_POOL_GUID		"pool_guid"
431 #define	ZPOOL_CONFIG_CREATE_TXG		"create_txg"
432 #define	ZPOOL_CONFIG_TOP_GUID		"top_guid"
433 #define	ZPOOL_CONFIG_VDEV_TREE		"vdev_tree"
434 #define	ZPOOL_CONFIG_TYPE		"type"
435 #define	ZPOOL_CONFIG_CHILDREN		"children"
436 #define	ZPOOL_CONFIG_ID			"id"
437 #define	ZPOOL_CONFIG_GUID		"guid"
438 #define	ZPOOL_CONFIG_PATH		"path"
439 #define	ZPOOL_CONFIG_DEVID		"devid"
440 #define	ZPOOL_CONFIG_METASLAB_ARRAY	"metaslab_array"
441 #define	ZPOOL_CONFIG_METASLAB_SHIFT	"metaslab_shift"
442 #define	ZPOOL_CONFIG_ASHIFT		"ashift"
443 #define	ZPOOL_CONFIG_ASIZE		"asize"
444 #define	ZPOOL_CONFIG_DTL		"DTL"
445 #define	ZPOOL_CONFIG_STATS		"stats"
446 #define	ZPOOL_CONFIG_WHOLE_DISK		"whole_disk"
447 #define	ZPOOL_CONFIG_ERRCOUNT		"error_count"
448 #define	ZPOOL_CONFIG_NOT_PRESENT	"not_present"
449 #define	ZPOOL_CONFIG_SPARES		"spares"
450 #define	ZPOOL_CONFIG_IS_SPARE		"is_spare"
451 #define	ZPOOL_CONFIG_NPARITY		"nparity"
452 #define	ZPOOL_CONFIG_HOSTID		"hostid"
453 #define	ZPOOL_CONFIG_HOSTNAME		"hostname"
454 #define	ZPOOL_CONFIG_UNSPARE		"unspare"
455 #define	ZPOOL_CONFIG_PHYS_PATH		"phys_path"
456 #define	ZPOOL_CONFIG_IS_LOG		"is_log"
457 #define	ZPOOL_CONFIG_L2CACHE		"l2cache"
458 #define	ZPOOL_CONFIG_HOLE_ARRAY		"hole_array"
459 #define	ZPOOL_CONFIG_VDEV_CHILDREN	"vdev_children"
460 #define	ZPOOL_CONFIG_IS_HOLE		"is_hole"
461 #define	ZPOOL_CONFIG_DDT_HISTOGRAM	"ddt_histogram"
462 #define	ZPOOL_CONFIG_DDT_OBJ_STATS	"ddt_object_stats"
463 #define	ZPOOL_CONFIG_DDT_STATS		"ddt_stats"
464 #define	ZPOOL_CONFIG_SPLIT		"splitcfg"
465 #define	ZPOOL_CONFIG_ORIG_GUID		"orig_guid"
466 #define	ZPOOL_CONFIG_SPLIT_GUID		"split_guid"
467 #define	ZPOOL_CONFIG_SPLIT_LIST		"guid_list"
468 #define	ZPOOL_CONFIG_SUSPENDED		"suspended"	/* not stored on disk */
469 #define	ZPOOL_CONFIG_TIMESTAMP		"timestamp"	/* not stored on disk */
470 #define	ZPOOL_CONFIG_BOOTFS		"bootfs"	/* not stored on disk */
471 /*
472  * The persistent vdev state is stored as separate values rather than a single
473  * 'vdev_state' entry.  This is because a device can be in multiple states, such
474  * as offline and degraded.
475  */
476 #define	ZPOOL_CONFIG_OFFLINE		"offline"
477 #define	ZPOOL_CONFIG_FAULTED		"faulted"
478 #define	ZPOOL_CONFIG_DEGRADED		"degraded"
479 #define	ZPOOL_CONFIG_REMOVED		"removed"
480 #define	ZPOOL_CONFIG_FRU		"fru"
481 #define	ZPOOL_CONFIG_AUX_STATE		"aux_state"
482 
483 /* Rewind policy parameters */
484 #define	ZPOOL_REWIND_POLICY		"rewind-policy"
485 #define	ZPOOL_REWIND_REQUEST		"rewind-request"
486 #define	ZPOOL_REWIND_REQUEST_TXG	"rewind-request-txg"
487 #define	ZPOOL_REWIND_META_THRESH	"rewind-meta-thresh"
488 #define	ZPOOL_REWIND_DATA_THRESH	"rewind-data-thresh"
489 
490 /* Rewind data discovered */
491 #define	ZPOOL_CONFIG_LOAD_TIME		"rewind_txg_ts"
492 #define	ZPOOL_CONFIG_LOAD_DATA_ERRORS	"verify_data_errors"
493 #define	ZPOOL_CONFIG_REWIND_TIME	"seconds_of_rewind"
494 
495 #define	VDEV_TYPE_ROOT			"root"
496 #define	VDEV_TYPE_MIRROR		"mirror"
497 #define	VDEV_TYPE_REPLACING		"replacing"
498 #define	VDEV_TYPE_RAIDZ			"raidz"
499 #define	VDEV_TYPE_DISK			"disk"
500 #define	VDEV_TYPE_FILE			"file"
501 #define	VDEV_TYPE_MISSING		"missing"
502 #define	VDEV_TYPE_HOLE			"hole"
503 #define	VDEV_TYPE_SPARE			"spare"
504 #define	VDEV_TYPE_LOG			"log"
505 #define	VDEV_TYPE_L2CACHE		"l2cache"
506 
507 /*
508  * This is needed in userland to report the minimum necessary device size.
509  */
510 #define	SPA_MINDEVSIZE		(64ULL << 20)
511 
512 /*
513  * The location of the pool configuration repository, shared between kernel and
514  * userland.
515  */
516 #define	ZPOOL_CACHE		"/etc/zfs/zpool.cache"
517 
518 /*
519  * vdev states are ordered from least to most healthy.
520  * A vdev that's CANT_OPEN or below is considered unusable.
521  */
522 typedef enum vdev_state {
523 	VDEV_STATE_UNKNOWN = 0,	/* Uninitialized vdev			*/
524 	VDEV_STATE_CLOSED,	/* Not currently open			*/
525 	VDEV_STATE_OFFLINE,	/* Not allowed to open			*/
526 	VDEV_STATE_REMOVED,	/* Explicitly removed from system	*/
527 	VDEV_STATE_CANT_OPEN,	/* Tried to open, but failed		*/
528 	VDEV_STATE_FAULTED,	/* External request to fault device	*/
529 	VDEV_STATE_DEGRADED,	/* Replicated vdev with unhealthy kids	*/
530 	VDEV_STATE_HEALTHY	/* Presumed good			*/
531 } vdev_state_t;
532 
533 #define	VDEV_STATE_ONLINE	VDEV_STATE_HEALTHY
534 
535 /*
536  * vdev aux states.  When a vdev is in the CANT_OPEN state, the aux field
537  * of the vdev stats structure uses these constants to distinguish why.
538  */
539 typedef enum vdev_aux {
540 	VDEV_AUX_NONE,		/* no error				*/
541 	VDEV_AUX_OPEN_FAILED,	/* ldi_open_*() or vn_open() failed	*/
542 	VDEV_AUX_CORRUPT_DATA,	/* bad label or disk contents		*/
543 	VDEV_AUX_NO_REPLICAS,	/* insufficient number of replicas	*/
544 	VDEV_AUX_BAD_GUID_SUM,	/* vdev guid sum doesn't match		*/
545 	VDEV_AUX_TOO_SMALL,	/* vdev size is too small		*/
546 	VDEV_AUX_BAD_LABEL,	/* the label is OK but invalid		*/
547 	VDEV_AUX_VERSION_NEWER,	/* on-disk version is too new		*/
548 	VDEV_AUX_VERSION_OLDER,	/* on-disk version is too old		*/
549 	VDEV_AUX_SPARED,	/* hot spare used in another pool	*/
550 	VDEV_AUX_ERR_EXCEEDED,	/* too many errors			*/
551 	VDEV_AUX_IO_FAILURE,	/* experienced I/O failure		*/
552 	VDEV_AUX_BAD_LOG,	/* cannot read log chain(s)		*/
553 	VDEV_AUX_EXTERNAL,	/* external diagnosis			*/
554 	VDEV_AUX_SPLIT_POOL	/* vdev was split off into another pool	*/
555 } vdev_aux_t;
556 
557 /*
558  * pool state.  The following states are written to disk as part of the normal
559  * SPA lifecycle: ACTIVE, EXPORTED, DESTROYED, SPARE, L2CACHE.  The remaining
560  * states are software abstractions used at various levels to communicate
561  * pool state.
562  */
563 typedef enum pool_state {
564 	POOL_STATE_ACTIVE = 0,		/* In active use		*/
565 	POOL_STATE_EXPORTED,		/* Explicitly exported		*/
566 	POOL_STATE_DESTROYED,		/* Explicitly destroyed		*/
567 	POOL_STATE_SPARE,		/* Reserved for hot spare use	*/
568 	POOL_STATE_L2CACHE,		/* Level 2 ARC device		*/
569 	POOL_STATE_UNINITIALIZED,	/* Internal spa_t state		*/
570 	POOL_STATE_UNAVAIL,		/* Internal libzfs state	*/
571 	POOL_STATE_POTENTIALLY_ACTIVE	/* Internal libzfs state	*/
572 } pool_state_t;
573 
574 /*
575  * Scrub types.
576  */
577 typedef enum pool_scrub_type {
578 	POOL_SCRUB_NONE,
579 	POOL_SCRUB_RESILVER,
580 	POOL_SCRUB_EVERYTHING,
581 	POOL_SCRUB_TYPES
582 } pool_scrub_type_t;
583 
584 /*
585  * ZIO types.  Needed to interpret vdev statistics below.
586  */
587 typedef enum zio_type {
588 	ZIO_TYPE_NULL = 0,
589 	ZIO_TYPE_READ,
590 	ZIO_TYPE_WRITE,
591 	ZIO_TYPE_FREE,
592 	ZIO_TYPE_CLAIM,
593 	ZIO_TYPE_IOCTL,
594 	ZIO_TYPES
595 } zio_type_t;
596 
597 /*
598  * Vdev statistics.  Note: all fields should be 64-bit because this
599  * is passed between kernel and userland as an nvlist uint64 array.
600  */
601 typedef struct vdev_stat {
602 	hrtime_t	vs_timestamp;		/* time since vdev load	*/
603 	uint64_t	vs_state;		/* vdev state		*/
604 	uint64_t	vs_aux;			/* see vdev_aux_t	*/
605 	uint64_t	vs_alloc;		/* space allocated	*/
606 	uint64_t	vs_space;		/* total capacity	*/
607 	uint64_t	vs_dspace;		/* deflated capacity	*/
608 	uint64_t	vs_rsize;		/* replaceable dev size */
609 	uint64_t	vs_ops[ZIO_TYPES];	/* operation count	*/
610 	uint64_t	vs_bytes[ZIO_TYPES];	/* bytes read/written	*/
611 	uint64_t	vs_read_errors;		/* read errors		*/
612 	uint64_t	vs_write_errors;	/* write errors		*/
613 	uint64_t	vs_checksum_errors;	/* checksum errors	*/
614 	uint64_t	vs_self_healed;		/* self-healed bytes	*/
615 	uint64_t	vs_scrub_type;		/* pool_scrub_type_t	*/
616 	uint64_t	vs_scrub_complete;	/* completed?		*/
617 	uint64_t	vs_scrub_examined;	/* bytes examined; top	*/
618 	uint64_t	vs_scrub_repaired;	/* bytes repaired; leaf	*/
619 	uint64_t	vs_scrub_errors;	/* errors during scrub	*/
620 	uint64_t	vs_scrub_start;		/* UTC scrub start time	*/
621 	uint64_t	vs_scrub_end;		/* UTC scrub end time	*/
622 } vdev_stat_t;
623 
624 /*
625  * DDT statistics.  Note: all fields should be 64-bit because this
626  * is passed between kernel and userland as an nvlist uint64 array.
627  */
628 typedef struct ddt_object {
629 	uint64_t	ddo_count;	/* number of elments in ddt 	*/
630 	uint64_t	ddo_dspace;	/* size of ddt on disk		*/
631 	uint64_t	ddo_mspace;	/* size of ddt in-core		*/
632 } ddt_object_t;
633 
634 typedef struct ddt_stat {
635 	uint64_t	dds_blocks;	/* blocks			*/
636 	uint64_t	dds_lsize;	/* logical size			*/
637 	uint64_t	dds_psize;	/* physical size		*/
638 	uint64_t	dds_dsize;	/* deflated allocated size	*/
639 	uint64_t	dds_ref_blocks;	/* referenced blocks		*/
640 	uint64_t	dds_ref_lsize;	/* referenced lsize * refcnt	*/
641 	uint64_t	dds_ref_psize;	/* referenced psize * refcnt	*/
642 	uint64_t	dds_ref_dsize;	/* referenced dsize * refcnt	*/
643 } ddt_stat_t;
644 
645 typedef struct ddt_histogram {
646 	ddt_stat_t	ddh_stat[64];	/* power-of-two histogram buckets */
647 } ddt_histogram_t;
648 
649 #define	ZVOL_DRIVER	"zvol"
650 #define	ZFS_DRIVER	"zfs"
651 #define	ZFS_DEV		"/dev/zfs"
652 
653 /* general zvol path */
654 #define	ZVOL_DIR		"/dev/zvol"
655 /* expansion */
656 #define	ZVOL_PSEUDO_DEV		"/devices/pseudo/zfs@0:"
657 /* for dump and swap */
658 #define	ZVOL_FULL_DEV_DIR	ZVOL_DIR "/dsk/"
659 #define	ZVOL_FULL_RDEV_DIR	ZVOL_DIR "/rdsk/"
660 
661 #define	ZVOL_PROP_NAME		"name"
662 #define	ZVOL_DEFAULT_BLOCKSIZE	8192
663 
664 /*
665  * /dev/zfs ioctl numbers.
666  */
667 #define	ZFS_IOC		('Z' << 8)
668 
669 typedef enum zfs_ioc {
670 	ZFS_IOC_POOL_CREATE = ZFS_IOC,
671 	ZFS_IOC_POOL_DESTROY,
672 	ZFS_IOC_POOL_IMPORT,
673 	ZFS_IOC_POOL_EXPORT,
674 	ZFS_IOC_POOL_CONFIGS,
675 	ZFS_IOC_POOL_STATS,
676 	ZFS_IOC_POOL_TRYIMPORT,
677 	ZFS_IOC_POOL_SCRUB,
678 	ZFS_IOC_POOL_FREEZE,
679 	ZFS_IOC_POOL_UPGRADE,
680 	ZFS_IOC_POOL_GET_HISTORY,
681 	ZFS_IOC_VDEV_ADD,
682 	ZFS_IOC_VDEV_REMOVE,
683 	ZFS_IOC_VDEV_SET_STATE,
684 	ZFS_IOC_VDEV_ATTACH,
685 	ZFS_IOC_VDEV_DETACH,
686 	ZFS_IOC_VDEV_SETPATH,
687 	ZFS_IOC_VDEV_SETFRU,
688 	ZFS_IOC_OBJSET_STATS,
689 	ZFS_IOC_OBJSET_ZPLPROPS,
690 	ZFS_IOC_DATASET_LIST_NEXT,
691 	ZFS_IOC_SNAPSHOT_LIST_NEXT,
692 	ZFS_IOC_SET_PROP,
693 	ZFS_IOC_CREATE,
694 	ZFS_IOC_DESTROY,
695 	ZFS_IOC_ROLLBACK,
696 	ZFS_IOC_RENAME,
697 	ZFS_IOC_RECV,
698 	ZFS_IOC_SEND,
699 	ZFS_IOC_INJECT_FAULT,
700 	ZFS_IOC_CLEAR_FAULT,
701 	ZFS_IOC_INJECT_LIST_NEXT,
702 	ZFS_IOC_ERROR_LOG,
703 	ZFS_IOC_CLEAR,
704 	ZFS_IOC_PROMOTE,
705 	ZFS_IOC_DESTROY_SNAPS,
706 	ZFS_IOC_SNAPSHOT,
707 	ZFS_IOC_DSOBJ_TO_DSNAME,
708 	ZFS_IOC_OBJ_TO_PATH,
709 	ZFS_IOC_POOL_SET_PROPS,
710 	ZFS_IOC_POOL_GET_PROPS,
711 	ZFS_IOC_SET_FSACL,
712 	ZFS_IOC_GET_FSACL,
713 	ZFS_IOC_SHARE,
714 	ZFS_IOC_INHERIT_PROP,
715 	ZFS_IOC_SMB_ACL,
716 	ZFS_IOC_USERSPACE_ONE,
717 	ZFS_IOC_USERSPACE_MANY,
718 	ZFS_IOC_USERSPACE_UPGRADE,
719 	ZFS_IOC_HOLD,
720 	ZFS_IOC_RELEASE,
721 	ZFS_IOC_GET_HOLDS,
722 	ZFS_IOC_OBJSET_RECVD_PROPS,
723 	ZFS_IOC_VDEV_SPLIT
724 } zfs_ioc_t;
725 
726 /*
727  * Internal SPA load state.  Used by FMA diagnosis engine.
728  */
729 typedef enum {
730 	SPA_LOAD_NONE,		/* no load in progress	*/
731 	SPA_LOAD_OPEN,		/* normal open		*/
732 	SPA_LOAD_IMPORT,	/* import in progress	*/
733 	SPA_LOAD_TRYIMPORT,	/* tryimport in progress */
734 	SPA_LOAD_RECOVER,	/* recovery requested	*/
735 	SPA_LOAD_ERROR		/* load failed		*/
736 } spa_load_state_t;
737 
738 /*
739  * Bookmark name values.
740  */
741 #define	ZPOOL_ERR_LIST		"error list"
742 #define	ZPOOL_ERR_DATASET	"dataset"
743 #define	ZPOOL_ERR_OBJECT	"object"
744 
745 #define	HIS_MAX_RECORD_LEN	(MAXPATHLEN + MAXPATHLEN + 1)
746 
747 /*
748  * The following are names used in the nvlist describing
749  * the pool's history log.
750  */
751 #define	ZPOOL_HIST_RECORD	"history record"
752 #define	ZPOOL_HIST_TIME		"history time"
753 #define	ZPOOL_HIST_CMD		"history command"
754 #define	ZPOOL_HIST_WHO		"history who"
755 #define	ZPOOL_HIST_ZONE		"history zone"
756 #define	ZPOOL_HIST_HOST		"history hostname"
757 #define	ZPOOL_HIST_TXG		"history txg"
758 #define	ZPOOL_HIST_INT_EVENT	"history internal event"
759 #define	ZPOOL_HIST_INT_STR	"history internal str"
760 
761 /*
762  * Flags for ZFS_IOC_VDEV_SET_STATE
763  */
764 #define	ZFS_ONLINE_CHECKREMOVE	0x1
765 #define	ZFS_ONLINE_UNSPARE	0x2
766 #define	ZFS_ONLINE_FORCEFAULT	0x4
767 #define	ZFS_ONLINE_EXPAND	0x8
768 #define	ZFS_OFFLINE_TEMPORARY	0x1
769 
770 /*
771  * Sysevent payload members.  ZFS will generate the following sysevents with the
772  * given payloads:
773  *
774  *	ESC_ZFS_RESILVER_START
775  *	ESC_ZFS_RESILVER_END
776  *	ESC_ZFS_POOL_DESTROY
777  *
778  *		ZFS_EV_POOL_NAME	DATA_TYPE_STRING
779  *		ZFS_EV_POOL_GUID	DATA_TYPE_UINT64
780  *
781  *	ESC_ZFS_VDEV_REMOVE
782  *	ESC_ZFS_VDEV_CLEAR
783  *	ESC_ZFS_VDEV_CHECK
784  *
785  *		ZFS_EV_POOL_NAME	DATA_TYPE_STRING
786  *		ZFS_EV_POOL_GUID	DATA_TYPE_UINT64
787  *		ZFS_EV_VDEV_PATH	DATA_TYPE_STRING	(optional)
788  *		ZFS_EV_VDEV_GUID	DATA_TYPE_UINT64
789  */
790 #define	ZFS_EV_POOL_NAME	"pool_name"
791 #define	ZFS_EV_POOL_GUID	"pool_guid"
792 #define	ZFS_EV_VDEV_PATH	"vdev_path"
793 #define	ZFS_EV_VDEV_GUID	"vdev_guid"
794 
795 /*
796  * Note: This is encoded on-disk, so new events must be added to the
797  * end, and unused events can not be removed.  Be sure to edit
798  * libzfs_pool.c: hist_event_table[].
799  */
800 typedef enum history_internal_events {
801 	LOG_NO_EVENT = 0,
802 	LOG_POOL_CREATE,
803 	LOG_POOL_VDEV_ADD,
804 	LOG_POOL_REMOVE,
805 	LOG_POOL_DESTROY,
806 	LOG_POOL_EXPORT,
807 	LOG_POOL_IMPORT,
808 	LOG_POOL_VDEV_ATTACH,
809 	LOG_POOL_VDEV_REPLACE,
810 	LOG_POOL_VDEV_DETACH,
811 	LOG_POOL_VDEV_ONLINE,
812 	LOG_POOL_VDEV_OFFLINE,
813 	LOG_POOL_UPGRADE,
814 	LOG_POOL_CLEAR,
815 	LOG_POOL_SCRUB,
816 	LOG_POOL_PROPSET,
817 	LOG_DS_CREATE,
818 	LOG_DS_CLONE,
819 	LOG_DS_DESTROY,
820 	LOG_DS_DESTROY_BEGIN,
821 	LOG_DS_INHERIT,
822 	LOG_DS_PROPSET,
823 	LOG_DS_QUOTA,
824 	LOG_DS_PERM_UPDATE,
825 	LOG_DS_PERM_REMOVE,
826 	LOG_DS_PERM_WHO_REMOVE,
827 	LOG_DS_PROMOTE,
828 	LOG_DS_RECEIVE,
829 	LOG_DS_RENAME,
830 	LOG_DS_RESERVATION,
831 	LOG_DS_REPLAY_INC_SYNC,
832 	LOG_DS_REPLAY_FULL_SYNC,
833 	LOG_DS_ROLLBACK,
834 	LOG_DS_SNAPSHOT,
835 	LOG_DS_UPGRADE,
836 	LOG_DS_REFQUOTA,
837 	LOG_DS_REFRESERV,
838 	LOG_POOL_SCRUB_DONE,
839 	LOG_DS_USER_HOLD,
840 	LOG_DS_USER_RELEASE,
841 	LOG_POOL_SPLIT,
842 	LOG_END
843 } history_internal_events_t;
844 
845 #ifdef	__cplusplus
846 }
847 #endif
848 
849 #endif	/* _SYS_FS_ZFS_H */
850