]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - module/zcommon/zfs_prop.c
Illumos 4368, 4369.
[FreeBSD/FreeBSD.git] / module / zcommon / zfs_prop.c
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  * 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.
25  */
26
27 /* Portions Copyright 2010 Robert Milkowski */
28
29 #include <sys/zio.h>
30 #include <sys/spa.h>
31 #include <sys/u8_textprep.h>
32 #include <sys/zfs_acl.h>
33 #include <sys/zfs_ioctl.h>
34 #include <sys/zfs_znode.h>
35
36 #include "zfs_prop.h"
37 #include "zfs_deleg.h"
38
39 #if defined(_KERNEL)
40 #include <sys/systm.h>
41 #else
42 #include <stdlib.h>
43 #include <string.h>
44 #include <ctype.h>
45 #endif
46
47 static zprop_desc_t zfs_prop_table[ZFS_NUM_PROPS];
48
49 /* Note this is indexed by zfs_userquota_prop_t, keep the order the same */
50 const char *zfs_userquota_prop_prefixes[] = {
51         "userused@",
52         "userquota@",
53         "groupused@",
54         "groupquota@"
55 };
56
57 zprop_desc_t *
58 zfs_prop_get_table(void)
59 {
60         return (zfs_prop_table);
61 }
62
63 void
64 zfs_prop_init(void)
65 {
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 },
72                 { NULL }
73         };
74
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 },
80                 { "sha256,verify",
81                                 ZIO_CHECKSUM_SHA256 | ZIO_CHECKSUM_VERIFY },
82                 { NULL }
83         };
84
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 },
101                 { NULL }
102         };
103
104         static zprop_index_t snapdir_table[] = {
105                 { "hidden",     ZFS_SNAPDIR_HIDDEN },
106                 { "visible",    ZFS_SNAPDIR_VISIBLE },
107                 { NULL }
108         };
109
110         static zprop_index_t snapdev_table[] = {
111                 { "hidden",     ZFS_SNAPDEV_HIDDEN },
112                 { "visible",    ZFS_SNAPDEV_VISIBLE },
113                 { NULL }
114         };
115
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 },
121                 { NULL }
122         };
123
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 },
131                 { NULL }
132         };
133
134         static zprop_index_t case_table[] = {
135                 { "sensitive",          ZFS_CASE_SENSITIVE },
136                 { "insensitive",        ZFS_CASE_INSENSITIVE },
137                 { "mixed",              ZFS_CASE_MIXED },
138                 { NULL }
139         };
140
141         static zprop_index_t copies_table[] = {
142                 { "1",          1 },
143                 { "2",          2 },
144                 { "3",          3 },
145                 { NULL }
146         };
147
148         /*
149          * Use the unique flags we have to send to u8_strcmp() and/or
150          * u8_textprep() to represent the various normalization property
151          * values.
152          */
153         static zprop_index_t normalize_table[] = {
154                 { "none",       0 },
155                 { "formD",      U8_TEXTPREP_NFD },
156                 { "formKC",     U8_TEXTPREP_NFKC },
157                 { "formC",      U8_TEXTPREP_NFC },
158                 { "formKD",     U8_TEXTPREP_NFKD },
159                 { NULL }
160         };
161
162         static zprop_index_t version_table[] = {
163                 { "1",          1 },
164                 { "2",          2 },
165                 { "3",          3 },
166                 { "4",          4 },
167                 { "5",          5 },
168                 { "current",    ZPL_VERSION },
169                 { NULL }
170         };
171
172         static zprop_index_t boolean_table[] = {
173                 { "off",        0 },
174                 { "on",         1 },
175                 { NULL }
176         };
177
178         static zprop_index_t logbias_table[] = {
179                 { "latency",    ZFS_LOGBIAS_LATENCY },
180                 { "throughput", ZFS_LOGBIAS_THROUGHPUT },
181                 { NULL }
182         };
183
184         static zprop_index_t canmount_table[] = {
185                 { "off",        ZFS_CANMOUNT_OFF },
186                 { "on",         ZFS_CANMOUNT_ON },
187                 { "noauto",     ZFS_CANMOUNT_NOAUTO },
188                 { NULL }
189         };
190
191         static zprop_index_t cache_table[] = {
192                 { "none",       ZFS_CACHE_NONE },
193                 { "metadata",   ZFS_CACHE_METADATA },
194                 { "all",        ZFS_CACHE_ALL },
195                 { NULL }
196         };
197
198         static zprop_index_t sync_table[] = {
199                 { "standard",   ZFS_SYNC_STANDARD },
200                 { "always",     ZFS_SYNC_ALWAYS },
201                 { "disabled",   ZFS_SYNC_DISABLED },
202                 { NULL }
203         };
204
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 },
210                 { NULL }
211         };
212
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",
217             sync_table);
218         zprop_register_index(ZFS_PROP_CHECKSUM, "checksum",
219             ZIO_CHECKSUM_DEFAULT, PROP_INHERIT, ZFS_TYPE_FILESYSTEM |
220             ZFS_TYPE_VOLUME,
221             "on | off | fletcher2 | fletcher4 | sha256", "CHECKSUM",
222             checksum_table);
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",
226             dedup_table);
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",
231             compress_table);
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);
262
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",
270             boolean_table);
271         zprop_register_index(ZFS_PROP_EXEC, "exec", 1, PROP_INHERIT,
272             ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "EXEC",
273             boolean_table);
274         zprop_register_index(ZFS_PROP_SETUID, "setuid", 1, PROP_INHERIT,
275             ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "SETUID",
276             boolean_table);
277         zprop_register_index(ZFS_PROP_READONLY, "readonly", 0, PROP_INHERIT,
278             ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "on | off", "RDONLY",
279             boolean_table);
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",
286             boolean_table);
287
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);
295
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",
301             boolean_table);
302
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",
307             normalize_table);
308         zprop_register_index(ZFS_PROP_CASE, "casesensitivity",
309             ZFS_CASE_SENSITIVE, PROP_ONETIME, ZFS_TYPE_FILESYSTEM |
310             ZFS_TYPE_SNAPSHOT,
311             "sensitive | insensitive | mixed", "CASE", case_table);
312
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);
317
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",
325             "MOUNTPOINT");
326         zprop_register_string(ZFS_PROP_SHARENFS, "sharenfs", "off",
327             PROP_INHERIT, ZFS_TYPE_FILESYSTEM, "on | off | share(1M) options",
328             "SHARENFS");
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>",
340             "CONTEXT");
341         zprop_register_string(ZFS_PROP_SELINUX_FSCONTEXT, "fscontext",
342             "none", PROP_DEFAULT, ZFS_TYPE_DATASET, "<selinux fscontext>",
343             "FSCONTEXT");
344         zprop_register_string(ZFS_PROP_SELINUX_DEFCONTEXT, "defcontext",
345             "none", PROP_DEFAULT, ZFS_TYPE_DATASET, "<selinux defcontext>",
346             "DEFCONTEXT");
347         zprop_register_string(ZFS_PROP_SELINUX_ROOTCONTEXT, "rootcontext",
348             "none", PROP_DEFAULT, ZFS_TYPE_DATASET, "<selinux rootcontext>",
349             "ROOTCONTEXT");
350
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>",
369             "USEDSNAP");
370         zprop_register_number(ZFS_PROP_USEDDS, "usedbydataset", 0,
371             PROP_READONLY, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>",
372             "USEDDS");
373         zprop_register_number(ZFS_PROP_USEDCHILD, "usedbychildren", 0,
374             PROP_READONLY, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>",
375             "USEDCHILD");
376         zprop_register_number(ZFS_PROP_USEDREFRESERV, "usedbyrefreservation", 0,
377             PROP_READONLY,
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");
387
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");
401
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");
406
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,
418             "STMF_SBD_LU");
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,
423             "USERACCOUNTING");
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");
430
431         /*
432          * Property to be removed once libbe is integrated
433          */
434         zprop_register_hidden(ZFS_PROP_PRIVATE, "priv_prop",
435             PROP_TYPE_NUMBER, PROP_READONLY, ZFS_TYPE_FILESYSTEM,
436             "PRIV_PROP");
437
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);
442 }
443
444 boolean_t
445 zfs_prop_delegatable(zfs_prop_t prop)
446 {
447         zprop_desc_t *pd = &zfs_prop_table[prop];
448
449         /* The mlslabel property is never delegatable. */
450         if (prop == ZFS_PROP_MLSLABEL)
451                 return (B_FALSE);
452
453         return (pd->pd_attr != PROP_READONLY);
454 }
455
456 /*
457  * Given a zfs dataset property name, returns the corresponding property ID.
458  */
459 zfs_prop_t
460 zfs_name_to_prop(const char *propname)
461 {
462         return (zprop_name_to_prop(propname, ZFS_TYPE_DATASET));
463 }
464
465 /*
466  * For user property names, we allow all lowercase alphanumeric characters, plus
467  * a few useful punctuation characters.
468  */
469 static int
470 valid_char(char c)
471 {
472         return ((c >= 'a' && c <= 'z') ||
473             (c >= '0' && c <= '9') ||
474             c == '-' || c == '_' || c == '.' || c == ':');
475 }
476
477 /*
478  * Returns true if this is a valid user-defined property (one with a ':').
479  */
480 boolean_t
481 zfs_prop_user(const char *name)
482 {
483         int i;
484         char c;
485         boolean_t foundsep = B_FALSE;
486
487         for (i = 0; i < strlen(name); i++) {
488                 c = name[i];
489                 if (!valid_char(c))
490                         return (B_FALSE);
491                 if (c == ':')
492                         foundsep = B_TRUE;
493         }
494
495         if (!foundsep)
496                 return (B_FALSE);
497
498         return (B_TRUE);
499 }
500
501 /*
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
504  * user@domain).
505  */
506 boolean_t
507 zfs_prop_userquota(const char *name)
508 {
509         zfs_userquota_prop_t prop;
510
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) {
514                         return (B_TRUE);
515                 }
516         }
517
518         return (B_FALSE);
519 }
520
521 /*
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).
525  */
526 boolean_t
527 zfs_prop_written(const char *name)
528 {
529         static const char *prefix = "written@";
530         return (strncmp(name, prefix, strlen(prefix)) == 0);
531 }
532
533 /*
534  * Tables of index types, plus functions to convert between the user view
535  * (strings) and internal representation (uint64_t).
536  */
537 int
538 zfs_prop_string_to_index(zfs_prop_t prop, const char *string, uint64_t *index)
539 {
540         return (zprop_string_to_index(prop, string, index, ZFS_TYPE_DATASET));
541 }
542
543 int
544 zfs_prop_index_to_string(zfs_prop_t prop, uint64_t index, const char **string)
545 {
546         return (zprop_index_to_string(prop, index, string, ZFS_TYPE_DATASET));
547 }
548
549 uint64_t
550 zfs_prop_random_value(zfs_prop_t prop, uint64_t seed)
551 {
552         return (zprop_random_value(prop, seed, ZFS_TYPE_DATASET));
553 }
554
555 /*
556  * Returns TRUE if the property applies to any of the given dataset types.
557  */
558 boolean_t
559 zfs_prop_valid_for_type(int prop, zfs_type_t types, boolean_t headcheck)
560 {
561         return (zprop_valid_for_type(prop, types, headcheck));
562 }
563
564 zprop_type_t
565 zfs_prop_get_type(zfs_prop_t prop)
566 {
567         return (zfs_prop_table[prop].pd_proptype);
568 }
569
570 /*
571  * Returns TRUE if the property is readonly.
572  */
573 boolean_t
574 zfs_prop_readonly(zfs_prop_t prop)
575 {
576         return (zfs_prop_table[prop].pd_attr == PROP_READONLY ||
577             zfs_prop_table[prop].pd_attr == PROP_ONETIME);
578 }
579
580 /*
581  * Returns TRUE if the property is only allowed to be set once.
582  */
583 boolean_t
584 zfs_prop_setonce(zfs_prop_t prop)
585 {
586         return (zfs_prop_table[prop].pd_attr == PROP_ONETIME);
587 }
588
589 const char *
590 zfs_prop_default_string(zfs_prop_t prop)
591 {
592         return (zfs_prop_table[prop].pd_strdefault);
593 }
594
595 uint64_t
596 zfs_prop_default_numeric(zfs_prop_t prop)
597 {
598         return (zfs_prop_table[prop].pd_numdefault);
599 }
600
601 /*
602  * Given a dataset property ID, returns the corresponding name.
603  * Assuming the zfs dataset property ID is valid.
604  */
605 const char *
606 zfs_prop_to_name(zfs_prop_t prop)
607 {
608         return (zfs_prop_table[prop].pd_name);
609 }
610
611 /*
612  * Returns TRUE if the property is inheritable.
613  */
614 boolean_t
615 zfs_prop_inheritable(zfs_prop_t prop)
616 {
617         return (zfs_prop_table[prop].pd_attr == PROP_INHERIT ||
618             zfs_prop_table[prop].pd_attr == PROP_ONETIME);
619 }
620
621 #ifndef _KERNEL
622
623 /*
624  * Returns a string describing the set of acceptable values for the given
625  * zfs property, or NULL if it cannot be set.
626  */
627 const char *
628 zfs_prop_values(zfs_prop_t prop)
629 {
630         return (zfs_prop_table[prop].pd_values);
631 }
632
633 /*
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.
637  */
638 int
639 zfs_prop_is_string(zfs_prop_t prop)
640 {
641         return (zfs_prop_table[prop].pd_proptype == PROP_TYPE_STRING ||
642             zfs_prop_table[prop].pd_proptype == PROP_TYPE_INDEX);
643 }
644
645 /*
646  * Returns the column header for the given property.  Used only in
647  * 'zfs list -o', but centralized here with the other property information.
648  */
649 const char *
650 zfs_prop_column_name(zfs_prop_t prop)
651 {
652         return (zfs_prop_table[prop].pd_colname);
653 }
654
655 /*
656  * Returns whether the given property should be displayed right-justified for
657  * 'zfs list'.
658  */
659 boolean_t
660 zfs_prop_align_right(zfs_prop_t prop)
661 {
662         return (zfs_prop_table[prop].pd_rightalign);
663 }
664
665 #endif
666
667 #if defined(_KERNEL) && defined(HAVE_SPL)
668
669 static int zcommon_init(void) { return 0; }
670 static int zcommon_fini(void) { return 0; }
671
672 spl_module_init(zcommon_init);
673 spl_module_exit(zcommon_fini);
674
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);
679
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);
686
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);
700
701 #endif