xref: /titanic_53/usr/src/common/zfs/zfs_prop.c (revision c9431fa1e59a88c2f0abf611f25b97af964449e5)
1fa9e4066Sahrens /*
2fa9e4066Sahrens  * CDDL HEADER START
3fa9e4066Sahrens  *
4fa9e4066Sahrens  * The contents of this file are subject to the terms of the
5906d120cSlling  * Common Development and Distribution License (the "License").
6906d120cSlling  * You may not use this file except in compliance with the License.
7fa9e4066Sahrens  *
8fa9e4066Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9fa9e4066Sahrens  * or http://www.opensolaris.org/os/licensing.
10fa9e4066Sahrens  * See the License for the specific language governing permissions
11fa9e4066Sahrens  * and limitations under the License.
12fa9e4066Sahrens  *
13fa9e4066Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
14fa9e4066Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15fa9e4066Sahrens  * If applicable, add the following below this CDDL HEADER, with the
16fa9e4066Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
17fa9e4066Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
18fa9e4066Sahrens  *
19fa9e4066Sahrens  * CDDL HEADER END
20fa9e4066Sahrens  */
21fa9e4066Sahrens /*
2239c23413Seschrock  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23fa9e4066Sahrens  * Use is subject to license terms.
24fa9e4066Sahrens  */
25fa9e4066Sahrens 
26fa9e4066Sahrens #pragma ident	"%Z%%M%	%I%	%E% SMI"
27fa9e4066Sahrens 
28fa9e4066Sahrens /*
29fa9e4066Sahrens  * Master property table.
30fa9e4066Sahrens  *
31fa9e4066Sahrens  * This table keeps track of all the properties supported by ZFS, and their
32fa9e4066Sahrens  * various attributes.  Not all of these are needed by the kernel, and several
33fa9e4066Sahrens  * are only used by a single libzfs client.  But having them here centralizes
34fa9e4066Sahrens  * all property information in one location.
35fa9e4066Sahrens  *
36fa9e4066Sahrens  * 	name		The human-readable string representing this property
37fa9e4066Sahrens  * 	proptype	Basic type (string, boolean, number)
38fa9e4066Sahrens  * 	default		Default value for the property.  Sadly, C only allows
39fa9e4066Sahrens  * 			you to initialize the first member of a union, so we
40fa9e4066Sahrens  * 			have two default members for each property.
41fa9e4066Sahrens  * 	attr		Attributes (readonly, inheritable) for the property
42fa9e4066Sahrens  * 	types		Valid dataset types to which this applies
43fa9e4066Sahrens  * 	values		String describing acceptable values for the property
44fa9e4066Sahrens  * 	colname		The column header for 'zfs list'
45fa9e4066Sahrens  *	colfmt		The column formatting for 'zfs list'
46fa9e4066Sahrens  *
47fa9e4066Sahrens  * This table must match the order of property types in libzfs.h.
48fa9e4066Sahrens  */
49fa9e4066Sahrens 
50fa9e4066Sahrens #include <sys/zio.h>
51fa9e4066Sahrens #include <sys/spa.h>
52fa9e4066Sahrens #include <sys/zfs_acl.h>
53fa9e4066Sahrens #include <sys/zfs_ioctl.h>
54fa9e4066Sahrens 
55fa9e4066Sahrens #include "zfs_prop.h"
56fa9e4066Sahrens 
57fa9e4066Sahrens #if defined(_KERNEL)
58fa9e4066Sahrens #include <sys/systm.h>
59fa9e4066Sahrens #else
60fa9e4066Sahrens #include <stdlib.h>
61fa9e4066Sahrens #include <string.h>
62fa9e4066Sahrens #include <ctype.h>
63fa9e4066Sahrens #endif
64fa9e4066Sahrens 
65fa9e4066Sahrens typedef enum {
66fa9e4066Sahrens 	prop_default,
67fa9e4066Sahrens 	prop_readonly,
68fa9e4066Sahrens 	prop_inherit
69fa9e4066Sahrens } prop_attr_t;
70fa9e4066Sahrens 
71fa9e4066Sahrens typedef struct {
72fa9e4066Sahrens 	const char	*pd_name;
73fa9e4066Sahrens 	zfs_proptype_t	pd_proptype;
74fa9e4066Sahrens 	uint64_t	pd_numdefault;
75fa9e4066Sahrens 	const char	*pd_strdefault;
76fa9e4066Sahrens 	prop_attr_t	pd_attr;
77fa9e4066Sahrens 	int		pd_types;
78fa9e4066Sahrens 	const char	*pd_values;
79fa9e4066Sahrens 	const char	*pd_colname;
80e9dbad6fSeschrock 	boolean_t	pd_rightalign;
8166e2aaccSgw25295 	boolean_t	pd_visible;
82fa9e4066Sahrens } prop_desc_t;
83fa9e4066Sahrens 
8466e2aaccSgw25295 static prop_desc_t zfs_prop_table[] = {
85fa9e4066Sahrens 	{ "type",	prop_type_string,	0,	NULL,	prop_readonly,
8666e2aaccSgw25295 	    ZFS_TYPE_ANY, "filesystem | volume | snapshot", "TYPE", B_TRUE,
8766e2aaccSgw25295 	    B_TRUE },
88fa9e4066Sahrens 	{ "creation",	prop_type_number,	0,	NULL,	prop_readonly,
8966e2aaccSgw25295 	    ZFS_TYPE_ANY, "<date>", "CREATION", B_FALSE, B_TRUE },
90fa9e4066Sahrens 	{ "used",	prop_type_number,	0,	NULL,	prop_readonly,
9166e2aaccSgw25295 	    ZFS_TYPE_ANY, "<size>",	"USED", B_TRUE, B_TRUE },
92fa9e4066Sahrens 	{ "available",	prop_type_number,	0,	NULL,	prop_readonly,
9366e2aaccSgw25295 	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "AVAIL", B_TRUE,
9466e2aaccSgw25295 	    B_TRUE },
95fa9e4066Sahrens 	{ "referenced",	prop_type_number,	0,	NULL,	prop_readonly,
964f75c27eSeschrock 	    ZFS_TYPE_ANY,
9766e2aaccSgw25295 	    "<size>", "REFER", B_TRUE, B_TRUE },
98fa9e4066Sahrens 	{ "compressratio", prop_type_number,	0,	NULL,	prop_readonly,
9966e2aaccSgw25295 	    ZFS_TYPE_ANY, "<1.00x or higher if compressed>", "RATIO", B_TRUE,
10066e2aaccSgw25295 	    B_TRUE },
101fa9e4066Sahrens 	{ "mounted",	prop_type_boolean,	0,	NULL,	prop_readonly,
10266e2aaccSgw25295 	    ZFS_TYPE_FILESYSTEM, "yes | no | -", "MOUNTED", B_TRUE, B_TRUE },
103fa9e4066Sahrens 	{ "origin",	prop_type_string,	0,	NULL,	prop_readonly,
104101f5531Slling 	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<snapshot>", "ORIGIN",
10566e2aaccSgw25295 	    B_FALSE, B_TRUE },
106fa9e4066Sahrens 	{ "quota",	prop_type_number,	0,	NULL,	prop_default,
10766e2aaccSgw25295 	    ZFS_TYPE_FILESYSTEM, "<size> | none", "QUOTA", B_TRUE, B_TRUE },
108fa9e4066Sahrens 	{ "reservation", prop_type_number,	0,	NULL,	prop_default,
109fa9e4066Sahrens 	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
11066e2aaccSgw25295 	    "<size> | none", "RESERV", B_TRUE, B_TRUE },
111fa9e4066Sahrens 	{ "volsize",	prop_type_number,	0,	NULL,	prop_default,
11266e2aaccSgw25295 	    ZFS_TYPE_VOLUME, "<size>", "VOLSIZE", B_TRUE, B_TRUE },
1134f75c27eSeschrock 	{ "volblocksize", prop_type_number,	8192,	NULL,	prop_readonly,
11466e2aaccSgw25295 	    ZFS_TYPE_VOLUME, "512 to 128k, power of 2",	"VOLBLOCK", B_TRUE,
11566e2aaccSgw25295 	    B_TRUE },
116fa9e4066Sahrens 	{ "recordsize",	prop_type_number,	SPA_MAXBLOCKSIZE,	NULL,
117fa9e4066Sahrens 	    prop_inherit,
1184f75c27eSeschrock 	    ZFS_TYPE_FILESYSTEM,
11966e2aaccSgw25295 	    "512 to 128k, power of 2", "RECSIZE", B_TRUE, B_TRUE },
120fa9e4066Sahrens 	{ "mountpoint",	prop_type_string,	0,	"/",	prop_inherit,
121fa9e4066Sahrens 	    ZFS_TYPE_FILESYSTEM,
12266e2aaccSgw25295 	    "<path> | legacy | none", "MOUNTPOINT", B_FALSE, B_TRUE },
123fa9e4066Sahrens 	{ "sharenfs",	prop_type_string,	0,	"off",	prop_inherit,
124fa9e4066Sahrens 	    ZFS_TYPE_FILESYSTEM,
12566e2aaccSgw25295 	    "on | off | share(1M) options", "SHARENFS", B_FALSE, B_TRUE },
126101f5531Slling 	{ "checksum",	prop_type_index,	ZIO_CHECKSUM_DEFAULT,	"on",
1274f75c27eSeschrock 	    prop_inherit,	ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
12866e2aaccSgw25295 	    "on | off | fletcher2 | fletcher4 | sha256", "CHECKSUM", B_TRUE,
12966e2aaccSgw25295 	    B_TRUE },
130101f5531Slling 	{ "compression", prop_type_index,	ZIO_COMPRESS_DEFAULT,	"off",
1314f75c27eSeschrock 	    prop_inherit,	ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
132*c9431fa1Sahl 	    "on | off | lzjb | gzip | gzip-[1-9]", "COMPRESS", B_TRUE, B_TRUE },
133fa9e4066Sahrens 	{ "atime",	prop_type_boolean,	1,	NULL,	prop_inherit,
134fa9e4066Sahrens 	    ZFS_TYPE_FILESYSTEM,
13566e2aaccSgw25295 	    "on | off", "ATIME", B_TRUE, B_TRUE },
136fa9e4066Sahrens 	{ "devices",	prop_type_boolean,	1,	NULL,	prop_inherit,
13712054bfcSnd150628 	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT,
13866e2aaccSgw25295 	    "on | off", "DEVICES", B_TRUE, B_TRUE },
139fa9e4066Sahrens 	{ "exec",	prop_type_boolean,	1,	NULL,	prop_inherit,
14012054bfcSnd150628 	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT,
14166e2aaccSgw25295 	    "on | off", "EXEC", B_TRUE, B_TRUE },
142fa9e4066Sahrens 	{ "setuid",	prop_type_boolean,	1,	NULL,	prop_inherit,
14312054bfcSnd150628 	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "SETUID",
14466e2aaccSgw25295 	    B_TRUE, B_TRUE },
145fa9e4066Sahrens 	{ "readonly",	prop_type_boolean,	0,	NULL,	prop_inherit,
1464f75c27eSeschrock 	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
14766e2aaccSgw25295 	    "on | off", "RDONLY", B_TRUE, B_TRUE },
148fa9e4066Sahrens 	{ "zoned",	prop_type_boolean,	0,	NULL,	prop_inherit,
1494f75c27eSeschrock 	    ZFS_TYPE_FILESYSTEM,
15066e2aaccSgw25295 	    "on | off", "ZONED", B_TRUE, B_TRUE },
151906d120cSlling 	{ "snapdir",	prop_type_index,	ZFS_SNAPDIR_HIDDEN, "hidden",
152a0965f35Sbonwick 	    prop_inherit,
153fa9e4066Sahrens 	    ZFS_TYPE_FILESYSTEM,
15466e2aaccSgw25295 	    "hidden | visible", "SNAPDIR", B_TRUE, B_TRUE },
155e9dbad6fSeschrock 	{ "aclmode", prop_type_index,	ZFS_ACL_GROUPMASK, "groupmask",
156e9dbad6fSeschrock 	    prop_inherit, ZFS_TYPE_FILESYSTEM,
15766e2aaccSgw25295 	    "discard | groupmask | passthrough", "ACLMODE", B_TRUE, B_TRUE },
158e9dbad6fSeschrock 	{ "aclinherit", prop_type_index,	ZFS_ACL_SECURE,	"secure",
159e9dbad6fSeschrock 	    prop_inherit, ZFS_TYPE_FILESYSTEM,
16066e2aaccSgw25295 	    "discard | noallow | secure | passthrough", "ACLINHERIT", B_TRUE,
16166e2aaccSgw25295 	    B_TRUE },
16266e2aaccSgw25295 	{ "createtxg",	prop_type_number,	0,	NULL,	prop_readonly,
16366e2aaccSgw25295 	    ZFS_TYPE_ANY, NULL, NULL, B_FALSE, B_FALSE },
16466e2aaccSgw25295 	{ "name",	prop_type_string,	0,	NULL,	prop_readonly,
16566e2aaccSgw25295 	    ZFS_TYPE_ANY, NULL, "NAME", B_FALSE, B_FALSE },
166e9dbad6fSeschrock 	{ "canmount",	prop_type_boolean,	1,	NULL,	prop_default,
167fa9e4066Sahrens 	    ZFS_TYPE_FILESYSTEM,
16866e2aaccSgw25295 	    "on | off", "CANMOUNT", B_TRUE, B_TRUE },
16966e2aaccSgw25295 	{ "shareiscsi",	prop_type_string,	0,	"off",	prop_inherit,
17066e2aaccSgw25295 	    ZFS_TYPE_ANY,
17166e2aaccSgw25295 	    "on | off | type=<type>", "SHAREISCSI", B_FALSE, B_TRUE },
17266e2aaccSgw25295 	{ "iscsioptions", prop_type_string,	0,	NULL,	prop_inherit,
17366e2aaccSgw25295 	    ZFS_TYPE_VOLUME, NULL, "ISCSIOPTIONS", B_FALSE, B_FALSE },
1747b55fa8eSck153898 	{ "xattr",	prop_type_boolean,	1,	NULL,	prop_inherit,
1757b55fa8eSck153898 	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT,
17666e2aaccSgw25295 	    "on | off", "XATTR", B_TRUE, B_TRUE },
17739c23413Seschrock 	{ "numclones", prop_type_number,	0,	NULL,	prop_readonly,
17866e2aaccSgw25295 	    ZFS_TYPE_SNAPSHOT, NULL, NULL, B_FALSE, B_FALSE },
179d0ad202dSahrens 	{ "copies",	prop_type_index,	1,	"1",	prop_inherit,
180d0ad202dSahrens 	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
181d0ad202dSahrens 	    "1 | 2 | 3", "COPIES", B_TRUE, B_TRUE },
182fa9e4066Sahrens };
183fa9e4066Sahrens 
18466e2aaccSgw25295 #define	ZFS_PROP_COUNT	((sizeof (zfs_prop_table))/(sizeof (prop_desc_t)))
18566e2aaccSgw25295 
186fa9e4066Sahrens zfs_proptype_t
187fa9e4066Sahrens zfs_prop_get_type(zfs_prop_t prop)
188fa9e4066Sahrens {
189fa9e4066Sahrens 	return (zfs_prop_table[prop].pd_proptype);
190fa9e4066Sahrens }
191fa9e4066Sahrens 
192e9dbad6fSeschrock static boolean_t
193e9dbad6fSeschrock propname_match(const char *p, zfs_prop_t prop, size_t len)
1945c709891Seschrock {
1955c709891Seschrock 	const char *propname = zfs_prop_table[prop].pd_name;
1965c709891Seschrock #ifndef _KERNEL
1975c709891Seschrock 	const char *colname = zfs_prop_table[prop].pd_colname;
1985c709891Seschrock 	int c;
1995c709891Seschrock #endif
2005c709891Seschrock 
2013bb79becSeschrock #ifndef _KERNEL
2023bb79becSeschrock 	if (colname == NULL)
203e9dbad6fSeschrock 		return (B_FALSE);
2043bb79becSeschrock #endif
2053bb79becSeschrock 
2065c709891Seschrock 	if (len == strlen(propname) &&
2075c709891Seschrock 	    strncmp(p, propname, len) == 0)
208e9dbad6fSeschrock 		return (B_TRUE);
2095c709891Seschrock 
2105c709891Seschrock #ifndef _KERNEL
2113bb79becSeschrock 	if (len != strlen(colname))
212e9dbad6fSeschrock 		return (B_FALSE);
2135c709891Seschrock 
2145c709891Seschrock 	for (c = 0; c < len; c++)
2155c709891Seschrock 		if (p[c] != tolower(colname[c]))
2165c709891Seschrock 			break;
2175c709891Seschrock 
2185c709891Seschrock 	return (colname[c] == '\0');
2195c709891Seschrock #else
220e9dbad6fSeschrock 	return (B_FALSE);
2215c709891Seschrock #endif
2225c709891Seschrock }
2235c709891Seschrock 
22466e2aaccSgw25295 zfs_prop_t
22566e2aaccSgw25295 zfs_name_to_prop_cb(zfs_prop_t prop, void *cb_data)
22666e2aaccSgw25295 {
22766e2aaccSgw25295 	const char *propname = cb_data;
22866e2aaccSgw25295 
22966e2aaccSgw25295 	if (propname_match(propname, prop, strlen(propname)))
23066e2aaccSgw25295 		return (prop);
23166e2aaccSgw25295 
23266e2aaccSgw25295 	return (ZFS_PROP_CONT);
23366e2aaccSgw25295 }
2345c709891Seschrock 
235fa9e4066Sahrens /*
236fa9e4066Sahrens  * Given a property name, returns the corresponding property ID.
237fa9e4066Sahrens  */
238fa9e4066Sahrens zfs_prop_t
239fa9e4066Sahrens zfs_name_to_prop(const char *propname)
240fa9e4066Sahrens {
24166e2aaccSgw25295 	zfs_prop_t prop;
242fa9e4066Sahrens 
24366e2aaccSgw25295 	prop = zfs_prop_iter(zfs_name_to_prop_cb, (void *)propname, B_TRUE);
24466e2aaccSgw25295 	return (prop == ZFS_PROP_CONT ? ZFS_PROP_INVAL : prop);
245fa9e4066Sahrens }
246fa9e4066Sahrens 
247fa9e4066Sahrens /*
248e9dbad6fSeschrock  * For user property names, we allow all lowercase alphanumeric characters, plus
249e9dbad6fSeschrock  * a few useful punctuation characters.
250e9dbad6fSeschrock  */
251e9dbad6fSeschrock static int
252e9dbad6fSeschrock valid_char(char c)
253e9dbad6fSeschrock {
254e9dbad6fSeschrock 	return ((c >= 'a' && c <= 'z') ||
255e9dbad6fSeschrock 	    (c >= '0' && c <= '9') ||
256e9dbad6fSeschrock 	    c == '-' || c == '_' || c == '.' || c == ':');
257e9dbad6fSeschrock }
258e9dbad6fSeschrock 
259e9dbad6fSeschrock /*
260e9dbad6fSeschrock  * Returns true if this is a valid user-defined property (one with a ':').
261e9dbad6fSeschrock  */
262e9dbad6fSeschrock boolean_t
263e9dbad6fSeschrock zfs_prop_user(const char *name)
264e9dbad6fSeschrock {
265e9dbad6fSeschrock 	int i;
266e9dbad6fSeschrock 	char c;
267e9dbad6fSeschrock 	boolean_t foundsep = B_FALSE;
268e9dbad6fSeschrock 
269e9dbad6fSeschrock 	for (i = 0; i < strlen(name); i++) {
270e9dbad6fSeschrock 		c = name[i];
271e9dbad6fSeschrock 		if (!valid_char(c))
272e9dbad6fSeschrock 			return (B_FALSE);
273e9dbad6fSeschrock 		if (c == ':')
274e9dbad6fSeschrock 			foundsep = B_TRUE;
275e9dbad6fSeschrock 	}
276e9dbad6fSeschrock 
277e9dbad6fSeschrock 	if (!foundsep)
278e9dbad6fSeschrock 		return (B_FALSE);
279e9dbad6fSeschrock 
280e9dbad6fSeschrock 	return (B_TRUE);
281e9dbad6fSeschrock }
282e9dbad6fSeschrock 
283e9dbad6fSeschrock /*
284fa9e4066Sahrens  * Return the default value for the given property.
285fa9e4066Sahrens  */
2867f7322feSeschrock const char *
2877f7322feSeschrock zfs_prop_default_string(zfs_prop_t prop)
288fa9e4066Sahrens {
2897f7322feSeschrock 	return (zfs_prop_table[prop].pd_strdefault);
290fa9e4066Sahrens }
291fa9e4066Sahrens 
292fa9e4066Sahrens uint64_t
293fa9e4066Sahrens zfs_prop_default_numeric(zfs_prop_t prop)
294fa9e4066Sahrens {
295fa9e4066Sahrens 	return (zfs_prop_table[prop].pd_numdefault);
296fa9e4066Sahrens }
297fa9e4066Sahrens 
298fa9e4066Sahrens /*
299fa9e4066Sahrens  * Returns TRUE if the property is readonly.
300fa9e4066Sahrens  */
301fa9e4066Sahrens int
302fa9e4066Sahrens zfs_prop_readonly(zfs_prop_t prop)
303fa9e4066Sahrens {
304fa9e4066Sahrens 	return (zfs_prop_table[prop].pd_attr == prop_readonly);
305fa9e4066Sahrens }
306fa9e4066Sahrens 
307fa9e4066Sahrens /*
308fa9e4066Sahrens  * Given a property ID, returns the corresponding name.
309fa9e4066Sahrens  */
310fa9e4066Sahrens const char *
311fa9e4066Sahrens zfs_prop_to_name(zfs_prop_t prop)
312fa9e4066Sahrens {
313fa9e4066Sahrens 	return (zfs_prop_table[prop].pd_name);
314fa9e4066Sahrens }
315fa9e4066Sahrens 
316fa9e4066Sahrens /*
317fa9e4066Sahrens  * Returns TRUE if the property is inheritable.
318fa9e4066Sahrens  */
319fa9e4066Sahrens int
320fa9e4066Sahrens zfs_prop_inheritable(zfs_prop_t prop)
321fa9e4066Sahrens {
322fa9e4066Sahrens 	return (zfs_prop_table[prop].pd_attr == prop_inherit);
323fa9e4066Sahrens }
324fa9e4066Sahrens 
325e9dbad6fSeschrock typedef struct zfs_index {
326e9dbad6fSeschrock 	const char *name;
327e9dbad6fSeschrock 	uint64_t index;
328e9dbad6fSeschrock } zfs_index_t;
329e9dbad6fSeschrock 
330e9dbad6fSeschrock static zfs_index_t checksum_table[] = {
331e9dbad6fSeschrock 	{ "on",		ZIO_CHECKSUM_ON },
332e9dbad6fSeschrock 	{ "off",	ZIO_CHECKSUM_OFF },
333e9dbad6fSeschrock 	{ "fletcher2",	ZIO_CHECKSUM_FLETCHER_2 },
334e9dbad6fSeschrock 	{ "fletcher4",	ZIO_CHECKSUM_FLETCHER_4 },
335e9dbad6fSeschrock 	{ "sha256",	ZIO_CHECKSUM_SHA256 },
336e9dbad6fSeschrock 	{ NULL }
337e9dbad6fSeschrock };
338e9dbad6fSeschrock 
339e9dbad6fSeschrock static zfs_index_t compress_table[] = {
340e9dbad6fSeschrock 	{ "on",		ZIO_COMPRESS_ON },
341e9dbad6fSeschrock 	{ "off",	ZIO_COMPRESS_OFF },
342e9dbad6fSeschrock 	{ "lzjb",	ZIO_COMPRESS_LZJB },
343*c9431fa1Sahl 	{ "gzip",	ZIO_COMPRESS_GZIP_6 },	/* the default gzip level */
344*c9431fa1Sahl 	{ "gzip-1",	ZIO_COMPRESS_GZIP_1 },
345*c9431fa1Sahl 	{ "gzip-2",	ZIO_COMPRESS_GZIP_2 },
346*c9431fa1Sahl 	{ "gzip-3",	ZIO_COMPRESS_GZIP_3 },
347*c9431fa1Sahl 	{ "gzip-4",	ZIO_COMPRESS_GZIP_4 },
348*c9431fa1Sahl 	{ "gzip-5",	ZIO_COMPRESS_GZIP_5 },
349*c9431fa1Sahl 	{ "gzip-6",	ZIO_COMPRESS_GZIP_6 },
350*c9431fa1Sahl 	{ "gzip-7",	ZIO_COMPRESS_GZIP_7 },
351*c9431fa1Sahl 	{ "gzip-8",	ZIO_COMPRESS_GZIP_8 },
352*c9431fa1Sahl 	{ "gzip-9",	ZIO_COMPRESS_GZIP_9 },
353e9dbad6fSeschrock 	{ NULL }
354e9dbad6fSeschrock };
355e9dbad6fSeschrock 
356e9dbad6fSeschrock static zfs_index_t snapdir_table[] = {
357e9dbad6fSeschrock 	{ "hidden",	ZFS_SNAPDIR_HIDDEN },
358e9dbad6fSeschrock 	{ "visible",	ZFS_SNAPDIR_VISIBLE },
359e9dbad6fSeschrock 	{ NULL }
360e9dbad6fSeschrock };
361e9dbad6fSeschrock 
362e9dbad6fSeschrock static zfs_index_t acl_mode_table[] = {
363e9dbad6fSeschrock 	{ "discard",	ZFS_ACL_DISCARD },
364e9dbad6fSeschrock 	{ "groupmask",	ZFS_ACL_GROUPMASK },
365e9dbad6fSeschrock 	{ "passthrough", ZFS_ACL_PASSTHROUGH },
366e9dbad6fSeschrock 	{ NULL }
367e9dbad6fSeschrock };
368e9dbad6fSeschrock 
369e9dbad6fSeschrock static zfs_index_t acl_inherit_table[] = {
370e9dbad6fSeschrock 	{ "discard",	ZFS_ACL_DISCARD },
371e9dbad6fSeschrock 	{ "noallow",	ZFS_ACL_NOALLOW },
372e9dbad6fSeschrock 	{ "secure",	ZFS_ACL_SECURE },
373e9dbad6fSeschrock 	{ "passthrough", ZFS_ACL_PASSTHROUGH },
374e9dbad6fSeschrock 	{ NULL }
375e9dbad6fSeschrock };
376e9dbad6fSeschrock 
377d0ad202dSahrens static zfs_index_t copies_table[] = {
378d0ad202dSahrens 	{ "1",	1 },
379d0ad202dSahrens 	{ "2",	2 },
380d0ad202dSahrens 	{ "3",	3 },
381d0ad202dSahrens 	{ NULL }
382d0ad202dSahrens };
383d0ad202dSahrens 
384e9dbad6fSeschrock static zfs_index_t *
385e9dbad6fSeschrock zfs_prop_index_table(zfs_prop_t prop)
386e9dbad6fSeschrock {
387e9dbad6fSeschrock 	switch (prop) {
388e9dbad6fSeschrock 	case ZFS_PROP_CHECKSUM:
389e9dbad6fSeschrock 		return (checksum_table);
390e9dbad6fSeschrock 	case ZFS_PROP_COMPRESSION:
391e9dbad6fSeschrock 		return (compress_table);
392e9dbad6fSeschrock 	case ZFS_PROP_SNAPDIR:
393e9dbad6fSeschrock 		return (snapdir_table);
394e9dbad6fSeschrock 	case ZFS_PROP_ACLMODE:
395e9dbad6fSeschrock 		return (acl_mode_table);
396e9dbad6fSeschrock 	case ZFS_PROP_ACLINHERIT:
397e9dbad6fSeschrock 		return (acl_inherit_table);
398d0ad202dSahrens 	case ZFS_PROP_COPIES:
399d0ad202dSahrens 		return (copies_table);
400e9dbad6fSeschrock 	default:
401e9dbad6fSeschrock 		return (NULL);
402e9dbad6fSeschrock 	}
403e9dbad6fSeschrock }
404e9dbad6fSeschrock 
405e9dbad6fSeschrock 
406e9dbad6fSeschrock /*
407e9dbad6fSeschrock  * Tables of index types, plus functions to convert between the user view
408e9dbad6fSeschrock  * (strings) and internal representation (uint64_t).
409e9dbad6fSeschrock  */
410e9dbad6fSeschrock int
411e9dbad6fSeschrock zfs_prop_string_to_index(zfs_prop_t prop, const char *string, uint64_t *index)
412e9dbad6fSeschrock {
413e9dbad6fSeschrock 	zfs_index_t *table;
414e9dbad6fSeschrock 	int i;
415e9dbad6fSeschrock 
416e9dbad6fSeschrock 	if ((table = zfs_prop_index_table(prop)) == NULL)
417e9dbad6fSeschrock 		return (-1);
418e9dbad6fSeschrock 
419e9dbad6fSeschrock 	for (i = 0; table[i].name != NULL; i++) {
420e9dbad6fSeschrock 		if (strcmp(string, table[i].name) == 0) {
421e9dbad6fSeschrock 			*index = table[i].index;
422e9dbad6fSeschrock 			return (0);
423e9dbad6fSeschrock 		}
424e9dbad6fSeschrock 	}
425e9dbad6fSeschrock 
426e9dbad6fSeschrock 	return (-1);
427e9dbad6fSeschrock }
428e9dbad6fSeschrock 
429e9dbad6fSeschrock int
430e9dbad6fSeschrock zfs_prop_index_to_string(zfs_prop_t prop, uint64_t index, const char **string)
431e9dbad6fSeschrock {
432e9dbad6fSeschrock 	zfs_index_t *table;
433e9dbad6fSeschrock 	int i;
434e9dbad6fSeschrock 
435e9dbad6fSeschrock 	if ((table = zfs_prop_index_table(prop)) == NULL)
436e9dbad6fSeschrock 		return (-1);
437e9dbad6fSeschrock 
438e9dbad6fSeschrock 	for (i = 0; table[i].name != NULL; i++) {
439e9dbad6fSeschrock 		if (table[i].index == index) {
440e9dbad6fSeschrock 			*string = table[i].name;
441e9dbad6fSeschrock 			return (0);
442e9dbad6fSeschrock 		}
443e9dbad6fSeschrock 	}
444e9dbad6fSeschrock 
445e9dbad6fSeschrock 	return (-1);
446e9dbad6fSeschrock }
447e9dbad6fSeschrock 
44866e2aaccSgw25295 /*
44966e2aaccSgw25295  * Determine if the specified property is visible or not.
45066e2aaccSgw25295  */
45166e2aaccSgw25295 boolean_t
45266e2aaccSgw25295 zfs_prop_is_visible(zfs_prop_t prop)
45366e2aaccSgw25295 {
45466e2aaccSgw25295 	if (prop < 0)
45566e2aaccSgw25295 		return (B_FALSE);
45666e2aaccSgw25295 
45766e2aaccSgw25295 	return (zfs_prop_table[prop].pd_visible);
45866e2aaccSgw25295 }
45966e2aaccSgw25295 
46066e2aaccSgw25295 /*
46166e2aaccSgw25295  * Iterate over all properties, calling back into the specified function
46266e2aaccSgw25295  * for each property. We will continue to iterate until we either
46366e2aaccSgw25295  * reach the end or the callback function something other than
46466e2aaccSgw25295  * ZFS_PROP_CONT.
46566e2aaccSgw25295  */
46666e2aaccSgw25295 zfs_prop_t
46766e2aaccSgw25295 zfs_prop_iter(zfs_prop_f func, void *cb, boolean_t show_all)
46866e2aaccSgw25295 {
46966e2aaccSgw25295 	int i;
47066e2aaccSgw25295 
47166e2aaccSgw25295 	for (i = 0; i < ZFS_PROP_COUNT; i++) {
47266e2aaccSgw25295 		if (zfs_prop_is_visible(i) || show_all) {
47366e2aaccSgw25295 			if (func(i, cb) != ZFS_PROP_CONT)
47466e2aaccSgw25295 				return (i);
47566e2aaccSgw25295 		}
47666e2aaccSgw25295 	}
47766e2aaccSgw25295 	return (ZFS_PROP_CONT);
47866e2aaccSgw25295 }
47966e2aaccSgw25295 
480acd76fe5Seschrock #ifndef _KERNEL
481acd76fe5Seschrock 
482fa9e4066Sahrens /*
483fa9e4066Sahrens  * Returns TRUE if the property applies to the given dataset types.
484fa9e4066Sahrens  */
485fa9e4066Sahrens int
486fa9e4066Sahrens zfs_prop_valid_for_type(zfs_prop_t prop, int types)
487fa9e4066Sahrens {
488fa9e4066Sahrens 	return ((zfs_prop_table[prop].pd_types & types) != 0);
489fa9e4066Sahrens }
490fa9e4066Sahrens 
491fa9e4066Sahrens /*
492fa9e4066Sahrens  * Returns a string describing the set of acceptable values for the given
493fa9e4066Sahrens  * property, or NULL if it cannot be set.
494fa9e4066Sahrens  */
495fa9e4066Sahrens const char *
496fa9e4066Sahrens zfs_prop_values(zfs_prop_t prop)
497fa9e4066Sahrens {
498fa9e4066Sahrens 	return (zfs_prop_table[prop].pd_values);
499fa9e4066Sahrens }
500fa9e4066Sahrens 
501fa9e4066Sahrens /*
502fa9e4066Sahrens  * Returns TRUE if this property is a string type.  Note that index types
503fa9e4066Sahrens  * (compression, checksum) are treated as strings in userland, even though they
504fa9e4066Sahrens  * are stored numerically on disk.
505fa9e4066Sahrens  */
506fa9e4066Sahrens int
507fa9e4066Sahrens zfs_prop_is_string(zfs_prop_t prop)
508fa9e4066Sahrens {
509fa9e4066Sahrens 	return (zfs_prop_table[prop].pd_proptype == prop_type_string ||
510fa9e4066Sahrens 	    zfs_prop_table[prop].pd_proptype == prop_type_index);
511fa9e4066Sahrens }
512fa9e4066Sahrens 
513fa9e4066Sahrens /*
514fa9e4066Sahrens  * Returns the column header for the given property.  Used only in
515fa9e4066Sahrens  * 'zfs list -o', but centralized here with the other property information.
516fa9e4066Sahrens  */
517fa9e4066Sahrens const char *
518fa9e4066Sahrens zfs_prop_column_name(zfs_prop_t prop)
519fa9e4066Sahrens {
520fa9e4066Sahrens 	return (zfs_prop_table[prop].pd_colname);
521fa9e4066Sahrens }
522fa9e4066Sahrens 
523fa9e4066Sahrens /*
524e9dbad6fSeschrock  * Returns whether the given property should be displayed right-justified for
525e9dbad6fSeschrock  * 'zfs list'.
526fa9e4066Sahrens  */
527e9dbad6fSeschrock boolean_t
528e9dbad6fSeschrock zfs_prop_align_right(zfs_prop_t prop)
529fa9e4066Sahrens {
530e9dbad6fSeschrock 	return (zfs_prop_table[prop].pd_rightalign);
531fa9e4066Sahrens }
532fa9e4066Sahrens 
533fa9e4066Sahrens /*
534e9dbad6fSeschrock  * Determines the minimum width for the column, and indicates whether it's fixed
535e9dbad6fSeschrock  * or not.  Only string columns are non-fixed.
536fa9e4066Sahrens  */
537e9dbad6fSeschrock size_t
538e9dbad6fSeschrock zfs_prop_width(zfs_prop_t prop, boolean_t *fixed)
539fa9e4066Sahrens {
540e9dbad6fSeschrock 	prop_desc_t *pd = &zfs_prop_table[prop];
541e9dbad6fSeschrock 	zfs_index_t *idx;
542e9dbad6fSeschrock 	size_t ret;
543fa9e4066Sahrens 	int i;
544fa9e4066Sahrens 
545e9dbad6fSeschrock 	*fixed = B_TRUE;
546fa9e4066Sahrens 
54707ba0419Seschrock 	/*
548e9dbad6fSeschrock 	 * Start with the width of the column name.
54907ba0419Seschrock 	 */
550e9dbad6fSeschrock 	ret = strlen(pd->pd_colname);
551fa9e4066Sahrens 
552e9dbad6fSeschrock 	/*
553e9dbad6fSeschrock 	 * For fixed-width values, make sure the width is large enough to hold
554e9dbad6fSeschrock 	 * any possible value.
555e9dbad6fSeschrock 	 */
556e9dbad6fSeschrock 	switch (pd->pd_proptype) {
557e9dbad6fSeschrock 	case prop_type_number:
558e9dbad6fSeschrock 		/*
559e9dbad6fSeschrock 		 * The maximum length of a human-readable number is 5 characters
560e9dbad6fSeschrock 		 * ("20.4M", for example).
561e9dbad6fSeschrock 		 */
562e9dbad6fSeschrock 		if (ret < 5)
563e9dbad6fSeschrock 			ret = 5;
564e9dbad6fSeschrock 		/*
565e9dbad6fSeschrock 		 * 'creation' is handled specially because it's a number
566e9dbad6fSeschrock 		 * internally, but displayed as a date string.
567e9dbad6fSeschrock 		 */
568e9dbad6fSeschrock 		if (prop == ZFS_PROP_CREATION)
569e9dbad6fSeschrock 			*fixed = B_FALSE;
570e9dbad6fSeschrock 		break;
571e9dbad6fSeschrock 	case prop_type_boolean:
572e9dbad6fSeschrock 		/*
573e9dbad6fSeschrock 		 * The maximum length of a boolean value is 3 characters, for
574e9dbad6fSeschrock 		 * "off".
575e9dbad6fSeschrock 		 */
576e9dbad6fSeschrock 		if (ret < 3)
577e9dbad6fSeschrock 			ret = 3;
578e9dbad6fSeschrock 		break;
579e9dbad6fSeschrock 	case prop_type_index:
580e9dbad6fSeschrock 		idx = zfs_prop_index_table(prop);
581e9dbad6fSeschrock 		for (i = 0; idx[i].name != NULL; i++) {
582e9dbad6fSeschrock 			if (strlen(idx[i].name) > ret)
583e9dbad6fSeschrock 				ret = strlen(idx[i].name);
584fa9e4066Sahrens 		}
585e9dbad6fSeschrock 		break;
586fa9e4066Sahrens 
587e9dbad6fSeschrock 	case prop_type_string:
588e9dbad6fSeschrock 		*fixed = B_FALSE;
58907ba0419Seschrock 		break;
59007ba0419Seschrock 	}
59107ba0419Seschrock 
592e9dbad6fSeschrock 	return (ret);
593fa9e4066Sahrens }
594fa9e4066Sahrens 
595fa9e4066Sahrens #endif
596