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.
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.
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]
22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright (c) 2013 by Delphix. All rights reserved.
24 * Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
27 /* Portions Copyright 2010 Robert Milkowski */
31 #include <sys/u8_textprep.h>
32 #include <sys/zfs_acl.h>
33 #include <sys/zfs_ioctl.h>
34 #include <sys/zfs_znode.h>
37 #include "zfs_deleg.h"
40 #include <sys/systm.h>
47 static zprop_desc_t zfs_prop_table
[ZFS_NUM_PROPS
];
49 /* Note this is indexed by zfs_userquota_prop_t, keep the order the same */
50 const char *zfs_userquota_prop_prefixes
[] = {
58 zfs_prop_get_table(void)
60 return (zfs_prop_table
);
66 static zprop_index_t checksum_table
[] = {
67 { "on", ZIO_CHECKSUM_ON
},
68 { "off", ZIO_CHECKSUM_OFF
},
69 { "fletcher2", ZIO_CHECKSUM_FLETCHER_2
},
70 { "fletcher4", ZIO_CHECKSUM_FLETCHER_4
},
71 { "sha256", ZIO_CHECKSUM_SHA256
},
75 static zprop_index_t dedup_table
[] = {
76 { "on", ZIO_CHECKSUM_ON
},
77 { "off", ZIO_CHECKSUM_OFF
},
78 { "verify", ZIO_CHECKSUM_ON
| ZIO_CHECKSUM_VERIFY
},
79 { "sha256", ZIO_CHECKSUM_SHA256
},
81 ZIO_CHECKSUM_SHA256
| ZIO_CHECKSUM_VERIFY
},
85 static zprop_index_t compress_table
[] = {
86 { "on", ZIO_COMPRESS_ON
},
87 { "off", ZIO_COMPRESS_OFF
},
88 { "lzjb", ZIO_COMPRESS_LZJB
},
89 { "gzip", ZIO_COMPRESS_GZIP_6
}, /* gzip default */
90 { "gzip-1", ZIO_COMPRESS_GZIP_1
},
91 { "gzip-2", ZIO_COMPRESS_GZIP_2
},
92 { "gzip-3", ZIO_COMPRESS_GZIP_3
},
93 { "gzip-4", ZIO_COMPRESS_GZIP_4
},
94 { "gzip-5", ZIO_COMPRESS_GZIP_5
},
95 { "gzip-6", ZIO_COMPRESS_GZIP_6
},
96 { "gzip-7", ZIO_COMPRESS_GZIP_7
},
97 { "gzip-8", ZIO_COMPRESS_GZIP_8
},
98 { "gzip-9", ZIO_COMPRESS_GZIP_9
},
99 { "zle", ZIO_COMPRESS_ZLE
},
100 { "lz4", ZIO_COMPRESS_LZ4
},
104 static zprop_index_t snapdir_table
[] = {
105 { "hidden", ZFS_SNAPDIR_HIDDEN
},
106 { "visible", ZFS_SNAPDIR_VISIBLE
},
110 static zprop_index_t snapdev_table
[] = {
111 { "hidden", ZFS_SNAPDEV_HIDDEN
},
112 { "visible", ZFS_SNAPDEV_VISIBLE
},
116 static zprop_index_t acltype_table
[] = {
117 { "off", ZFS_ACLTYPE_OFF
},
118 { "disabled", ZFS_ACLTYPE_OFF
},
119 { "noacl", ZFS_ACLTYPE_OFF
},
120 { "posixacl", ZFS_ACLTYPE_POSIXACL
},
124 static zprop_index_t acl_inherit_table
[] = {
125 { "discard", ZFS_ACL_DISCARD
},
126 { "noallow", ZFS_ACL_NOALLOW
},
127 { "restricted", ZFS_ACL_RESTRICTED
},
128 { "passthrough", ZFS_ACL_PASSTHROUGH
},
129 { "secure", ZFS_ACL_RESTRICTED
}, /* bkwrd compatability */
130 { "passthrough-x", ZFS_ACL_PASSTHROUGH_X
},
134 static zprop_index_t case_table
[] = {
135 { "sensitive", ZFS_CASE_SENSITIVE
},
136 { "insensitive", ZFS_CASE_INSENSITIVE
},
137 { "mixed", ZFS_CASE_MIXED
},
141 static zprop_index_t copies_table
[] = {
149 * Use the unique flags we have to send to u8_strcmp() and/or
150 * u8_textprep() to represent the various normalization property
153 static zprop_index_t normalize_table
[] = {
155 { "formD", U8_TEXTPREP_NFD
},
156 { "formKC", U8_TEXTPREP_NFKC
},
157 { "formC", U8_TEXTPREP_NFC
},
158 { "formKD", U8_TEXTPREP_NFKD
},
162 static zprop_index_t version_table
[] = {
168 { "current", ZPL_VERSION
},
172 static zprop_index_t boolean_table
[] = {
178 static zprop_index_t logbias_table
[] = {
179 { "latency", ZFS_LOGBIAS_LATENCY
},
180 { "throughput", ZFS_LOGBIAS_THROUGHPUT
},
184 static zprop_index_t canmount_table
[] = {
185 { "off", ZFS_CANMOUNT_OFF
},
186 { "on", ZFS_CANMOUNT_ON
},
187 { "noauto", ZFS_CANMOUNT_NOAUTO
},
191 static zprop_index_t cache_table
[] = {
192 { "none", ZFS_CACHE_NONE
},
193 { "metadata", ZFS_CACHE_METADATA
},
194 { "all", ZFS_CACHE_ALL
},
198 static zprop_index_t sync_table
[] = {
199 { "standard", ZFS_SYNC_STANDARD
},
200 { "always", ZFS_SYNC_ALWAYS
},
201 { "disabled", ZFS_SYNC_DISABLED
},
205 static zprop_index_t xattr_table
[] = {
206 { "off", ZFS_XATTR_OFF
},
207 { "on", ZFS_XATTR_DIR
},
208 { "sa", ZFS_XATTR_SA
},
209 { "dir", ZFS_XATTR_DIR
},
213 /* inherit index properties */
214 zprop_register_index(ZFS_PROP_SYNC
, "sync", ZFS_SYNC_STANDARD
,
215 PROP_INHERIT
, ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
,
216 "standard | always | disabled", "SYNC",
218 zprop_register_index(ZFS_PROP_CHECKSUM
, "checksum",
219 ZIO_CHECKSUM_DEFAULT
, PROP_INHERIT
, ZFS_TYPE_FILESYSTEM
|
221 "on | off | fletcher2 | fletcher4 | sha256", "CHECKSUM",
223 zprop_register_index(ZFS_PROP_DEDUP
, "dedup", ZIO_CHECKSUM_OFF
,
224 PROP_INHERIT
, ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
,
225 "on | off | verify | sha256[,verify]", "DEDUP",
227 zprop_register_index(ZFS_PROP_COMPRESSION
, "compression",
228 ZIO_COMPRESS_DEFAULT
, PROP_INHERIT
,
229 ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
,
230 "on | off | lzjb | gzip | gzip-[1-9] | zle | lz4", "COMPRESS",
232 zprop_register_index(ZFS_PROP_SNAPDIR
, "snapdir", ZFS_SNAPDIR_HIDDEN
,
233 PROP_INHERIT
, ZFS_TYPE_FILESYSTEM
,
234 "hidden | visible", "SNAPDIR", snapdir_table
);
235 zprop_register_index(ZFS_PROP_SNAPDEV
, "snapdev", ZFS_SNAPDEV_HIDDEN
,
236 PROP_INHERIT
, ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
,
237 "hidden | visible", "SNAPDEV", snapdev_table
);
238 zprop_register_index(ZFS_PROP_ACLTYPE
, "acltype", ZFS_ACLTYPE_OFF
,
239 PROP_INHERIT
, ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_SNAPSHOT
,
240 "noacl | posixacl", "ACLTYPE", acltype_table
);
241 zprop_register_index(ZFS_PROP_ACLINHERIT
, "aclinherit",
242 ZFS_ACL_RESTRICTED
, PROP_INHERIT
, ZFS_TYPE_FILESYSTEM
,
243 "discard | noallow | restricted | passthrough | passthrough-x",
244 "ACLINHERIT", acl_inherit_table
);
245 zprop_register_index(ZFS_PROP_COPIES
, "copies", 1, PROP_INHERIT
,
246 ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
,
247 "1 | 2 | 3", "COPIES", copies_table
);
248 zprop_register_index(ZFS_PROP_PRIMARYCACHE
, "primarycache",
249 ZFS_CACHE_ALL
, PROP_INHERIT
,
250 ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_SNAPSHOT
| ZFS_TYPE_VOLUME
,
251 "all | none | metadata", "PRIMARYCACHE", cache_table
);
252 zprop_register_index(ZFS_PROP_SECONDARYCACHE
, "secondarycache",
253 ZFS_CACHE_ALL
, PROP_INHERIT
,
254 ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_SNAPSHOT
| ZFS_TYPE_VOLUME
,
255 "all | none | metadata", "SECONDARYCACHE", cache_table
);
256 zprop_register_index(ZFS_PROP_LOGBIAS
, "logbias", ZFS_LOGBIAS_LATENCY
,
257 PROP_INHERIT
, ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
,
258 "latency | throughput", "LOGBIAS", logbias_table
);
259 zprop_register_index(ZFS_PROP_XATTR
, "xattr", ZFS_XATTR_DIR
,
260 PROP_INHERIT
, ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_SNAPSHOT
,
261 "on | off | dir | sa", "XATTR", xattr_table
);
263 /* inherit index (boolean) properties */
264 zprop_register_index(ZFS_PROP_ATIME
, "atime", 1, PROP_INHERIT
,
265 ZFS_TYPE_FILESYSTEM
, "on | off", "ATIME", boolean_table
);
266 zprop_register_index(ZFS_PROP_RELATIME
, "relatime", 0, PROP_INHERIT
,
267 ZFS_TYPE_FILESYSTEM
, "on | off", "RELATIME", boolean_table
);
268 zprop_register_index(ZFS_PROP_DEVICES
, "devices", 1, PROP_INHERIT
,
269 ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_SNAPSHOT
, "on | off", "DEVICES",
271 zprop_register_index(ZFS_PROP_EXEC
, "exec", 1, PROP_INHERIT
,
272 ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_SNAPSHOT
, "on | off", "EXEC",
274 zprop_register_index(ZFS_PROP_SETUID
, "setuid", 1, PROP_INHERIT
,
275 ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_SNAPSHOT
, "on | off", "SETUID",
277 zprop_register_index(ZFS_PROP_READONLY
, "readonly", 0, PROP_INHERIT
,
278 ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
, "on | off", "RDONLY",
280 zprop_register_index(ZFS_PROP_ZONED
, "zoned", 0, PROP_INHERIT
,
281 ZFS_TYPE_FILESYSTEM
, "on | off", "ZONED", boolean_table
);
282 zprop_register_index(ZFS_PROP_VSCAN
, "vscan", 0, PROP_INHERIT
,
283 ZFS_TYPE_FILESYSTEM
, "on | off", "VSCAN", boolean_table
);
284 zprop_register_index(ZFS_PROP_NBMAND
, "nbmand", 0, PROP_INHERIT
,
285 ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_SNAPSHOT
, "on | off", "NBMAND",
288 /* default index properties */
289 zprop_register_index(ZFS_PROP_VERSION
, "version", 0, PROP_DEFAULT
,
290 ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_SNAPSHOT
,
291 "1 | 2 | 3 | 4 | 5 | current", "VERSION", version_table
);
292 zprop_register_index(ZFS_PROP_CANMOUNT
, "canmount", ZFS_CANMOUNT_ON
,
293 PROP_DEFAULT
, ZFS_TYPE_FILESYSTEM
, "on | off | noauto",
294 "CANMOUNT", canmount_table
);
296 /* readonly index (boolean) properties */
297 zprop_register_index(ZFS_PROP_MOUNTED
, "mounted", 0, PROP_READONLY
,
298 ZFS_TYPE_FILESYSTEM
, "yes | no", "MOUNTED", boolean_table
);
299 zprop_register_index(ZFS_PROP_DEFER_DESTROY
, "defer_destroy", 0,
300 PROP_READONLY
, ZFS_TYPE_SNAPSHOT
, "yes | no", "DEFER_DESTROY",
303 /* set once index properties */
304 zprop_register_index(ZFS_PROP_NORMALIZE
, "normalization", 0,
305 PROP_ONETIME
, ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_SNAPSHOT
,
306 "none | formC | formD | formKC | formKD", "NORMALIZATION",
308 zprop_register_index(ZFS_PROP_CASE
, "casesensitivity",
309 ZFS_CASE_SENSITIVE
, PROP_ONETIME
, ZFS_TYPE_FILESYSTEM
|
311 "sensitive | insensitive | mixed", "CASE", case_table
);
313 /* set once index (boolean) properties */
314 zprop_register_index(ZFS_PROP_UTF8ONLY
, "utf8only", 0, PROP_ONETIME
,
315 ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_SNAPSHOT
,
316 "on | off", "UTF8ONLY", boolean_table
);
318 /* string properties */
319 zprop_register_string(ZFS_PROP_ORIGIN
, "origin", NULL
, PROP_READONLY
,
320 ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
, "<snapshot>", "ORIGIN");
321 zprop_register_string(ZFS_PROP_CLONES
, "clones", NULL
, PROP_READONLY
,
322 ZFS_TYPE_SNAPSHOT
, "<dataset>[,...]", "CLONES");
323 zprop_register_string(ZFS_PROP_MOUNTPOINT
, "mountpoint", "/",
324 PROP_INHERIT
, ZFS_TYPE_FILESYSTEM
, "<path> | legacy | none",
326 zprop_register_string(ZFS_PROP_SHARENFS
, "sharenfs", "off",
327 PROP_INHERIT
, ZFS_TYPE_FILESYSTEM
, "on | off | share(1M) options",
329 zprop_register_string(ZFS_PROP_TYPE
, "type", NULL
, PROP_READONLY
,
330 ZFS_TYPE_DATASET
| ZFS_TYPE_BOOKMARK
,
331 "filesystem | volume | snapshot | bookmark", "TYPE");
332 zprop_register_string(ZFS_PROP_SHARESMB
, "sharesmb", "off",
333 PROP_INHERIT
, ZFS_TYPE_FILESYSTEM
,
334 "on | off | sharemgr(1M) options", "SHARESMB");
335 zprop_register_string(ZFS_PROP_MLSLABEL
, "mlslabel",
336 ZFS_MLSLABEL_DEFAULT
, PROP_INHERIT
, ZFS_TYPE_DATASET
,
337 "<sensitivity label>", "MLSLABEL");
338 zprop_register_string(ZFS_PROP_SELINUX_CONTEXT
, "context",
339 "none", PROP_DEFAULT
, ZFS_TYPE_DATASET
, "<selinux context>",
341 zprop_register_string(ZFS_PROP_SELINUX_FSCONTEXT
, "fscontext",
342 "none", PROP_DEFAULT
, ZFS_TYPE_DATASET
, "<selinux fscontext>",
344 zprop_register_string(ZFS_PROP_SELINUX_DEFCONTEXT
, "defcontext",
345 "none", PROP_DEFAULT
, ZFS_TYPE_DATASET
, "<selinux defcontext>",
347 zprop_register_string(ZFS_PROP_SELINUX_ROOTCONTEXT
, "rootcontext",
348 "none", PROP_DEFAULT
, ZFS_TYPE_DATASET
, "<selinux rootcontext>",
351 /* readonly number properties */
352 zprop_register_number(ZFS_PROP_USED
, "used", 0, PROP_READONLY
,
353 ZFS_TYPE_DATASET
, "<size>", "USED");
354 zprop_register_number(ZFS_PROP_AVAILABLE
, "available", 0, PROP_READONLY
,
355 ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
, "<size>", "AVAIL");
356 zprop_register_number(ZFS_PROP_REFERENCED
, "referenced", 0,
357 PROP_READONLY
, ZFS_TYPE_DATASET
, "<size>", "REFER");
358 zprop_register_number(ZFS_PROP_COMPRESSRATIO
, "compressratio", 0,
359 PROP_READONLY
, ZFS_TYPE_DATASET
,
360 "<1.00x or higher if compressed>", "RATIO");
361 zprop_register_number(ZFS_PROP_REFRATIO
, "refcompressratio", 0,
362 PROP_READONLY
, ZFS_TYPE_DATASET
,
363 "<1.00x or higher if compressed>", "REFRATIO");
364 zprop_register_number(ZFS_PROP_VOLBLOCKSIZE
, "volblocksize",
365 ZVOL_DEFAULT_BLOCKSIZE
, PROP_ONETIME
,
366 ZFS_TYPE_VOLUME
, "512 to 128k, power of 2", "VOLBLOCK");
367 zprop_register_number(ZFS_PROP_USEDSNAP
, "usedbysnapshots", 0,
368 PROP_READONLY
, ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
, "<size>",
370 zprop_register_number(ZFS_PROP_USEDDS
, "usedbydataset", 0,
371 PROP_READONLY
, ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
, "<size>",
373 zprop_register_number(ZFS_PROP_USEDCHILD
, "usedbychildren", 0,
374 PROP_READONLY
, ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
, "<size>",
376 zprop_register_number(ZFS_PROP_USEDREFRESERV
, "usedbyrefreservation", 0,
378 ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
, "<size>", "USEDREFRESERV");
379 zprop_register_number(ZFS_PROP_USERREFS
, "userrefs", 0, PROP_READONLY
,
380 ZFS_TYPE_SNAPSHOT
, "<count>", "USERREFS");
381 zprop_register_number(ZFS_PROP_WRITTEN
, "written", 0, PROP_READONLY
,
382 ZFS_TYPE_DATASET
, "<size>", "WRITTEN");
383 zprop_register_number(ZFS_PROP_LOGICALUSED
, "logicalused", 0,
384 PROP_READONLY
, ZFS_TYPE_DATASET
, "<size>", "LUSED");
385 zprop_register_number(ZFS_PROP_LOGICALREFERENCED
, "logicalreferenced",
386 0, PROP_READONLY
, ZFS_TYPE_DATASET
, "<size>", "LREFER");
388 /* default number properties */
389 zprop_register_number(ZFS_PROP_QUOTA
, "quota", 0, PROP_DEFAULT
,
390 ZFS_TYPE_FILESYSTEM
, "<size> | none", "QUOTA");
391 zprop_register_number(ZFS_PROP_RESERVATION
, "reservation", 0,
392 PROP_DEFAULT
, ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
,
393 "<size> | none", "RESERV");
394 zprop_register_number(ZFS_PROP_VOLSIZE
, "volsize", 0, PROP_DEFAULT
,
395 ZFS_TYPE_SNAPSHOT
| ZFS_TYPE_VOLUME
, "<size>", "VOLSIZE");
396 zprop_register_number(ZFS_PROP_REFQUOTA
, "refquota", 0, PROP_DEFAULT
,
397 ZFS_TYPE_FILESYSTEM
, "<size> | none", "REFQUOTA");
398 zprop_register_number(ZFS_PROP_REFRESERVATION
, "refreservation", 0,
399 PROP_DEFAULT
, ZFS_TYPE_FILESYSTEM
| ZFS_TYPE_VOLUME
,
400 "<size> | none", "REFRESERV");
402 /* inherit number properties */
403 zprop_register_number(ZFS_PROP_RECORDSIZE
, "recordsize",
404 SPA_MAXBLOCKSIZE
, PROP_INHERIT
,
405 ZFS_TYPE_FILESYSTEM
, "512 to 128k, power of 2", "RECSIZE");
407 /* hidden properties */
408 zprop_register_hidden(ZFS_PROP_CREATETXG
, "createtxg", PROP_TYPE_NUMBER
,
409 PROP_READONLY
, ZFS_TYPE_DATASET
| ZFS_TYPE_BOOKMARK
, "CREATETXG");
410 zprop_register_hidden(ZFS_PROP_NUMCLONES
, "numclones", PROP_TYPE_NUMBER
,
411 PROP_READONLY
, ZFS_TYPE_SNAPSHOT
, "NUMCLONES");
412 zprop_register_hidden(ZFS_PROP_NAME
, "name", PROP_TYPE_STRING
,
413 PROP_READONLY
, ZFS_TYPE_DATASET
| ZFS_TYPE_BOOKMARK
, "NAME");
414 zprop_register_hidden(ZFS_PROP_ISCSIOPTIONS
, "iscsioptions",
415 PROP_TYPE_STRING
, PROP_INHERIT
, ZFS_TYPE_VOLUME
, "ISCSIOPTIONS");
416 zprop_register_hidden(ZFS_PROP_STMF_SHAREINFO
, "stmf_sbd_lu",
417 PROP_TYPE_STRING
, PROP_INHERIT
, ZFS_TYPE_VOLUME
,
419 zprop_register_hidden(ZFS_PROP_GUID
, "guid", PROP_TYPE_NUMBER
,
420 PROP_READONLY
, ZFS_TYPE_DATASET
| ZFS_TYPE_BOOKMARK
, "GUID");
421 zprop_register_hidden(ZFS_PROP_USERACCOUNTING
, "useraccounting",
422 PROP_TYPE_NUMBER
, PROP_READONLY
, ZFS_TYPE_DATASET
,
424 zprop_register_hidden(ZFS_PROP_UNIQUE
, "unique", PROP_TYPE_NUMBER
,
425 PROP_READONLY
, ZFS_TYPE_DATASET
, "UNIQUE");
426 zprop_register_hidden(ZFS_PROP_OBJSETID
, "objsetid", PROP_TYPE_NUMBER
,
427 PROP_READONLY
, ZFS_TYPE_DATASET
, "OBJSETID");
428 zprop_register_hidden(ZFS_PROP_INCONSISTENT
, "inconsistent",
429 PROP_TYPE_NUMBER
, PROP_READONLY
, ZFS_TYPE_DATASET
, "INCONSISTENT");
432 * Property to be removed once libbe is integrated
434 zprop_register_hidden(ZFS_PROP_PRIVATE
, "priv_prop",
435 PROP_TYPE_NUMBER
, PROP_READONLY
, ZFS_TYPE_FILESYSTEM
,
438 /* oddball properties */
439 zprop_register_impl(ZFS_PROP_CREATION
, "creation", PROP_TYPE_NUMBER
, 0,
440 NULL
, PROP_READONLY
, ZFS_TYPE_DATASET
| ZFS_TYPE_BOOKMARK
,
441 "<date>", "CREATION", B_FALSE
, B_TRUE
, NULL
);
445 zfs_prop_delegatable(zfs_prop_t prop
)
447 zprop_desc_t
*pd
= &zfs_prop_table
[prop
];
449 /* The mlslabel property is never delegatable. */
450 if (prop
== ZFS_PROP_MLSLABEL
)
453 return (pd
->pd_attr
!= PROP_READONLY
);
457 * Given a zfs dataset property name, returns the corresponding property ID.
460 zfs_name_to_prop(const char *propname
)
462 return (zprop_name_to_prop(propname
, ZFS_TYPE_DATASET
));
466 * For user property names, we allow all lowercase alphanumeric characters, plus
467 * a few useful punctuation characters.
472 return ((c
>= 'a' && c
<= 'z') ||
473 (c
>= '0' && c
<= '9') ||
474 c
== '-' || c
== '_' || c
== '.' || c
== ':');
478 * Returns true if this is a valid user-defined property (one with a ':').
481 zfs_prop_user(const char *name
)
485 boolean_t foundsep
= B_FALSE
;
487 for (i
= 0; i
< strlen(name
); i
++) {
502 * Returns true if this is a valid userspace-type property (one with a '@').
503 * Note that after the @, any character is valid (eg, another @, for SID
507 zfs_prop_userquota(const char *name
)
509 zfs_userquota_prop_t prop
;
511 for (prop
= 0; prop
< ZFS_NUM_USERQUOTA_PROPS
; prop
++) {
512 if (strncmp(name
, zfs_userquota_prop_prefixes
[prop
],
513 strlen(zfs_userquota_prop_prefixes
[prop
])) == 0) {
522 * Returns true if this is a valid written@ property.
523 * Note that after the @, any character is valid (eg, another @, for
524 * written@pool/fs@origin).
527 zfs_prop_written(const char *name
)
529 static const char *prefix
= "written@";
530 return (strncmp(name
, prefix
, strlen(prefix
)) == 0);
534 * Tables of index types, plus functions to convert between the user view
535 * (strings) and internal representation (uint64_t).
538 zfs_prop_string_to_index(zfs_prop_t prop
, const char *string
, uint64_t *index
)
540 return (zprop_string_to_index(prop
, string
, index
, ZFS_TYPE_DATASET
));
544 zfs_prop_index_to_string(zfs_prop_t prop
, uint64_t index
, const char **string
)
546 return (zprop_index_to_string(prop
, index
, string
, ZFS_TYPE_DATASET
));
550 zfs_prop_random_value(zfs_prop_t prop
, uint64_t seed
)
552 return (zprop_random_value(prop
, seed
, ZFS_TYPE_DATASET
));
556 * Returns TRUE if the property applies to any of the given dataset types.
559 zfs_prop_valid_for_type(int prop
, zfs_type_t types
, boolean_t headcheck
)
561 return (zprop_valid_for_type(prop
, types
, headcheck
));
565 zfs_prop_get_type(zfs_prop_t prop
)
567 return (zfs_prop_table
[prop
].pd_proptype
);
571 * Returns TRUE if the property is readonly.
574 zfs_prop_readonly(zfs_prop_t prop
)
576 return (zfs_prop_table
[prop
].pd_attr
== PROP_READONLY
||
577 zfs_prop_table
[prop
].pd_attr
== PROP_ONETIME
);
581 * Returns TRUE if the property is only allowed to be set once.
584 zfs_prop_setonce(zfs_prop_t prop
)
586 return (zfs_prop_table
[prop
].pd_attr
== PROP_ONETIME
);
590 zfs_prop_default_string(zfs_prop_t prop
)
592 return (zfs_prop_table
[prop
].pd_strdefault
);
596 zfs_prop_default_numeric(zfs_prop_t prop
)
598 return (zfs_prop_table
[prop
].pd_numdefault
);
602 * Given a dataset property ID, returns the corresponding name.
603 * Assuming the zfs dataset property ID is valid.
606 zfs_prop_to_name(zfs_prop_t prop
)
608 return (zfs_prop_table
[prop
].pd_name
);
612 * Returns TRUE if the property is inheritable.
615 zfs_prop_inheritable(zfs_prop_t prop
)
617 return (zfs_prop_table
[prop
].pd_attr
== PROP_INHERIT
||
618 zfs_prop_table
[prop
].pd_attr
== PROP_ONETIME
);
624 * Returns a string describing the set of acceptable values for the given
625 * zfs property, or NULL if it cannot be set.
628 zfs_prop_values(zfs_prop_t prop
)
630 return (zfs_prop_table
[prop
].pd_values
);
634 * Returns TRUE if this property is a string type. Note that index types
635 * (compression, checksum) are treated as strings in userland, even though they
636 * are stored numerically on disk.
639 zfs_prop_is_string(zfs_prop_t prop
)
641 return (zfs_prop_table
[prop
].pd_proptype
== PROP_TYPE_STRING
||
642 zfs_prop_table
[prop
].pd_proptype
== PROP_TYPE_INDEX
);
646 * Returns the column header for the given property. Used only in
647 * 'zfs list -o', but centralized here with the other property information.
650 zfs_prop_column_name(zfs_prop_t prop
)
652 return (zfs_prop_table
[prop
].pd_colname
);
656 * Returns whether the given property should be displayed right-justified for
660 zfs_prop_align_right(zfs_prop_t prop
)
662 return (zfs_prop_table
[prop
].pd_rightalign
);
667 #if defined(_KERNEL) && defined(HAVE_SPL)
669 static int zcommon_init(void) { return 0; }
670 static int zcommon_fini(void) { return 0; }
672 spl_module_init(zcommon_init
);
673 spl_module_exit(zcommon_fini
);
675 MODULE_DESCRIPTION("Generic ZFS support");
676 MODULE_AUTHOR(ZFS_META_AUTHOR
);
677 MODULE_LICENSE(ZFS_META_LICENSE
);
678 MODULE_VERSION(ZFS_META_VERSION
"-" ZFS_META_RELEASE
);
680 /* zfs dataset property functions */
681 EXPORT_SYMBOL(zfs_userquota_prop_prefixes
);
682 EXPORT_SYMBOL(zfs_prop_init
);
683 EXPORT_SYMBOL(zfs_prop_get_type
);
684 EXPORT_SYMBOL(zfs_prop_get_table
);
685 EXPORT_SYMBOL(zfs_prop_delegatable
);
687 /* Dataset property functions shared between libzfs and kernel. */
688 EXPORT_SYMBOL(zfs_prop_default_string
);
689 EXPORT_SYMBOL(zfs_prop_default_numeric
);
690 EXPORT_SYMBOL(zfs_prop_readonly
);
691 EXPORT_SYMBOL(zfs_prop_inheritable
);
692 EXPORT_SYMBOL(zfs_prop_setonce
);
693 EXPORT_SYMBOL(zfs_prop_to_name
);
694 EXPORT_SYMBOL(zfs_name_to_prop
);
695 EXPORT_SYMBOL(zfs_prop_user
);
696 EXPORT_SYMBOL(zfs_prop_userquota
);
697 EXPORT_SYMBOL(zfs_prop_index_to_string
);
698 EXPORT_SYMBOL(zfs_prop_string_to_index
);
699 EXPORT_SYMBOL(zfs_prop_valid_for_type
);