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