usr/src/common/zfs/zfs_prop.c
author Matthew Ahrens <Matthew.Ahrens@Sun.COM>
Sat, 18 Apr 2009 13:41:47 -0700
changeset 9396 f41cf682d0d3
parent 8053 271f44d3de11
child 9643 ffd8e7765f02
permissions -rw-r--r--
PSARC/2009/204 ZFS user/group quotas & space accounting 6501037 want user/group quotas on ZFS 6830813 zfs list -t all fails assertion 6827260 assertion failed in arc_read(): hdr == pbuf->b_hdr 6815592 panic: No such hold X on refcount Y from zfs_znode_move 6759986 zfs list shows temporary %clone when doing online zfs recv
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     1
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     2
 * CDDL HEADER START
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     3
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     4
 * The contents of this file are subject to the terms of the
1638
52000886673f 6399899 change the default value of snapdir property to "hidden"
lling
parents: 1356
diff changeset
     5
 * Common Development and Distribution License (the "License").
52000886673f 6399899 change the default value of snapdir property to "hidden"
lling
parents: 1356
diff changeset
     6
 * You may not use this file except in compliance with the License.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     7
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     8
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     9
 * or http://www.opensolaris.org/os/licensing.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    10
 * See the License for the specific language governing permissions
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    11
 * and limitations under the License.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    12
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    13
 * When distributing Covered Code, include this CDDL HEADER in each
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    14
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    15
 * If applicable, add the following below this CDDL HEADER, with the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    16
 * fields enclosed by brackets "[]" replaced with your own identifying
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    17
 * information: Portions Copyright [yyyy] [name of copyright owner]
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    18
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    19
 * CDDL HEADER END
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    20
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    21
/*
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
    22
 * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    23
 * Use is subject to license terms.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    24
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    25
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    26
#include <sys/zio.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    27
#include <sys/spa.h>
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
    28
#include <sys/u8_textprep.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    29
#include <sys/zfs_acl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    30
#include <sys/zfs_ioctl.h>
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
    31
#include <sys/zfs_znode.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    32
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    33
#include "zfs_prop.h"
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4451
diff changeset
    34
#include "zfs_deleg.h"
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    35
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    36
#if defined(_KERNEL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    37
#include <sys/systm.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    38
#else
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    39
#include <stdlib.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    40
#include <string.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    41
#include <ctype.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    42
#endif
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    43
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
    44
static zprop_desc_t zfs_prop_table[ZFS_NUM_PROPS];
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    45
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
    46
/* Note this is indexed by zfs_userquota_prop_t, keep the order the same */
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
    47
const char *zfs_userquota_prop_prefixes[] = {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
    48
	"userused@",
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
    49
	"userquota@",
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
    50
	"groupused@",
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
    51
	"groupquota@"
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
    52
};
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
    53
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
    54
zprop_desc_t *
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
    55
zfs_prop_get_table(void)
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    56
{
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
    57
	return (zfs_prop_table);
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    58
}
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    59
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    60
void
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    61
zfs_prop_init(void)
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    62
{
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
    63
	static zprop_index_t checksum_table[] = {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    64
		{ "on",		ZIO_CHECKSUM_ON },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    65
		{ "off",	ZIO_CHECKSUM_OFF },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    66
		{ "fletcher2",	ZIO_CHECKSUM_FLETCHER_2 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    67
		{ "fletcher4",	ZIO_CHECKSUM_FLETCHER_4 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    68
		{ "sha256",	ZIO_CHECKSUM_SHA256 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    69
		{ NULL }
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    70
	};
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    71
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
    72
	static zprop_index_t compress_table[] = {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    73
		{ "on",		ZIO_COMPRESS_ON },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    74
		{ "off",	ZIO_COMPRESS_OFF },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    75
		{ "lzjb",	ZIO_COMPRESS_LZJB },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    76
		{ "gzip",	ZIO_COMPRESS_GZIP_6 },	/* gzip default */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    77
		{ "gzip-1",	ZIO_COMPRESS_GZIP_1 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    78
		{ "gzip-2",	ZIO_COMPRESS_GZIP_2 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    79
		{ "gzip-3",	ZIO_COMPRESS_GZIP_3 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    80
		{ "gzip-4",	ZIO_COMPRESS_GZIP_4 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    81
		{ "gzip-5",	ZIO_COMPRESS_GZIP_5 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    82
		{ "gzip-6",	ZIO_COMPRESS_GZIP_6 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    83
		{ "gzip-7",	ZIO_COMPRESS_GZIP_7 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    84
		{ "gzip-8",	ZIO_COMPRESS_GZIP_8 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    85
		{ "gzip-9",	ZIO_COMPRESS_GZIP_9 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    86
		{ NULL }
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    87
	};
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    88
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
    89
	static zprop_index_t snapdir_table[] = {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    90
		{ "hidden",	ZFS_SNAPDIR_HIDDEN },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    91
		{ "visible",	ZFS_SNAPDIR_VISIBLE },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    92
		{ NULL }
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    93
	};
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    94
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
    95
	static zprop_index_t acl_mode_table[] = {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    96
		{ "discard",	ZFS_ACL_DISCARD },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    97
		{ "groupmask",	ZFS_ACL_GROUPMASK },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    98
		{ "passthrough", ZFS_ACL_PASSTHROUGH },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    99
		{ NULL }
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   100
	};
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   101
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   102
	static zprop_index_t acl_inherit_table[] = {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   103
		{ "discard",	ZFS_ACL_DISCARD },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   104
		{ "noallow",	ZFS_ACL_NOALLOW },
6385
5437941ec5a1 PSARC/2008/231 New ZFS "passthrough" ACL inheritance rules
marks
parents: 6168
diff changeset
   105
		{ "restricted",	ZFS_ACL_RESTRICTED },
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   106
		{ "passthrough", ZFS_ACL_PASSTHROUGH },
6385
5437941ec5a1 PSARC/2008/231 New ZFS "passthrough" ACL inheritance rules
marks
parents: 6168
diff changeset
   107
		{ "secure",	ZFS_ACL_RESTRICTED }, /* bkwrd compatability */
8053
271f44d3de11 PSARC/2008/659 New ZFS "passthrough-x" ACL inheritance rules
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 7390
diff changeset
   108
		{ "passthrough-x", ZFS_ACL_PASSTHROUGH_X },
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   109
		{ NULL }
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   110
	};
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   111
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   112
	static zprop_index_t case_table[] = {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   113
		{ "sensitive",		ZFS_CASE_SENSITIVE },
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   114
		{ "insensitive",	ZFS_CASE_INSENSITIVE },
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   115
		{ "mixed",		ZFS_CASE_MIXED },
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   116
		{ NULL }
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   117
	};
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   118
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   119
	static zprop_index_t copies_table[] = {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   120
		{ "1",		1 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   121
		{ "2",		2 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   122
		{ "3",		3 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   123
		{ NULL }
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   124
	};
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   125
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   126
	/*
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   127
	 * Use the unique flags we have to send to u8_strcmp() and/or
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   128
	 * u8_textprep() to represent the various normalization property
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   129
	 * values.
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   130
	 */
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   131
	static zprop_index_t normalize_table[] = {
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   132
		{ "none",	0 },
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   133
		{ "formD",	U8_TEXTPREP_NFD },
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   134
		{ "formKC",	U8_TEXTPREP_NFKC },
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   135
		{ "formC",	U8_TEXTPREP_NFC },
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   136
		{ "formKD",	U8_TEXTPREP_NFKD },
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   137
		{ NULL }
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   138
	};
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   139
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   140
	static zprop_index_t version_table[] = {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   141
		{ "1",		1 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   142
		{ "2",		2 },
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   143
		{ "3",		3 },
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   144
		{ "4",		4 },
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   145
		{ "current",	ZPL_VERSION },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   146
		{ NULL }
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   147
	};
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   148
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   149
	static zprop_index_t boolean_table[] = {
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   150
		{ "off",	0 },
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   151
		{ "on",		1 },
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   152
		{ NULL }
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   153
	};
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   154
6168
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   155
	static zprop_index_t canmount_table[] = {
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   156
		{ "off",	ZFS_CANMOUNT_OFF },
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   157
		{ "on",		ZFS_CANMOUNT_ON },
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   158
		{ "noauto",	ZFS_CANMOUNT_NOAUTO },
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   159
		{ NULL }
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   160
	};
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   161
7237
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   162
	static zprop_index_t cache_table[] = {
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   163
		{ "none",	ZFS_CACHE_NONE },
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   164
		{ "metadata",	ZFS_CACHE_METADATA },
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   165
		{ "all",	ZFS_CACHE_ALL },
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   166
		{ NULL }
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   167
	};
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   168
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   169
	/* inherit index properties */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   170
	register_index(ZFS_PROP_CHECKSUM, "checksum", ZIO_CHECKSUM_DEFAULT,
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   171
	    PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   172
	    "on | off | fletcher2 | fletcher4 | sha256", "CHECKSUM",
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   173
	    checksum_table);
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   174
	register_index(ZFS_PROP_COMPRESSION, "compression",
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   175
	    ZIO_COMPRESS_DEFAULT, PROP_INHERIT,
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   176
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   177
	    "on | off | lzjb | gzip | gzip-[1-9]", "COMPRESS", compress_table);
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   178
	register_index(ZFS_PROP_SNAPDIR, "snapdir", ZFS_SNAPDIR_HIDDEN,
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   179
	    PROP_INHERIT, ZFS_TYPE_FILESYSTEM,
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   180
	    "hidden | visible", "SNAPDIR", snapdir_table);
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   181
	register_index(ZFS_PROP_ACLMODE, "aclmode", ZFS_ACL_GROUPMASK,
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   182
	    PROP_INHERIT, ZFS_TYPE_FILESYSTEM,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   183
	    "discard | groupmask | passthrough", "ACLMODE", acl_mode_table);
6385
5437941ec5a1 PSARC/2008/231 New ZFS "passthrough" ACL inheritance rules
marks
parents: 6168
diff changeset
   184
	register_index(ZFS_PROP_ACLINHERIT, "aclinherit", ZFS_ACL_RESTRICTED,
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   185
	    PROP_INHERIT, ZFS_TYPE_FILESYSTEM,
8053
271f44d3de11 PSARC/2008/659 New ZFS "passthrough-x" ACL inheritance rules
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 7390
diff changeset
   186
	    "discard | noallow | restricted | passthrough | passthrough-x",
6385
5437941ec5a1 PSARC/2008/231 New ZFS "passthrough" ACL inheritance rules
marks
parents: 6168
diff changeset
   187
	    "ACLINHERIT", acl_inherit_table);
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   188
	register_index(ZFS_PROP_COPIES, "copies", 1,
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   189
	    PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   190
	    "1 | 2 | 3", "COPIES", copies_table);
7237
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   191
	register_index(ZFS_PROP_PRIMARYCACHE, "primarycache",
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   192
	    ZFS_CACHE_ALL, PROP_INHERIT,
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   193
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT | ZFS_TYPE_VOLUME,
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   194
	    "all | none | metadata", "PRIMARYCACHE", cache_table);
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   195
	register_index(ZFS_PROP_SECONDARYCACHE, "secondarycache",
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   196
	    ZFS_CACHE_ALL, PROP_INHERIT,
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   197
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT | ZFS_TYPE_VOLUME,
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   198
	    "all | none | metadata", "SECONDARYCACHE", cache_table);
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   199
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   200
	/* inherit index (boolean) properties */
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   201
	register_index(ZFS_PROP_ATIME, "atime", 1, PROP_INHERIT,
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   202
	    ZFS_TYPE_FILESYSTEM, "on | off", "ATIME", boolean_table);
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   203
	register_index(ZFS_PROP_DEVICES, "devices", 1, PROP_INHERIT,
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   204
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "DEVICES",
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   205
	    boolean_table);
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   206
	register_index(ZFS_PROP_EXEC, "exec", 1, PROP_INHERIT,
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   207
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "EXEC",
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   208
	    boolean_table);
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   209
	register_index(ZFS_PROP_SETUID, "setuid", 1, PROP_INHERIT,
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   210
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "SETUID",
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   211
	    boolean_table);
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   212
	register_index(ZFS_PROP_READONLY, "readonly", 0, PROP_INHERIT,
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   213
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "on | off", "RDONLY",
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   214
	    boolean_table);
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   215
	register_index(ZFS_PROP_ZONED, "zoned", 0, PROP_INHERIT,
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   216
	    ZFS_TYPE_FILESYSTEM, "on | off", "ZONED", boolean_table);
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   217
	register_index(ZFS_PROP_XATTR, "xattr", 1, PROP_INHERIT,
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   218
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "XATTR",
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   219
	    boolean_table);
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   220
	register_index(ZFS_PROP_VSCAN, "vscan", 0, PROP_INHERIT,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   221
	    ZFS_TYPE_FILESYSTEM, "on | off", "VSCAN",
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   222
	    boolean_table);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   223
	register_index(ZFS_PROP_NBMAND, "nbmand", 0, PROP_INHERIT,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   224
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "NBMAND",
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   225
	    boolean_table);
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   226
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   227
	/* default index properties */
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   228
	register_index(ZFS_PROP_VERSION, "version", 0, PROP_DEFAULT,
2597
21c0f93f2513 6349987 lzjb.c lived longer than expected?
nd150628
parents: 2474
diff changeset
   229
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT,
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   230
	    "1 | 2 | 3 | 4 | current", "VERSION", version_table);
6168
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   231
	register_index(ZFS_PROP_CANMOUNT, "canmount", ZFS_CANMOUNT_ON,
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   232
	    PROP_DEFAULT, ZFS_TYPE_FILESYSTEM, "on | off | noauto",
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   233
	    "CANMOUNT", canmount_table);
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   234
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   235
	/* readonly index (boolean) properties */
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   236
	register_index(ZFS_PROP_MOUNTED, "mounted", 0, PROP_READONLY,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   237
	    ZFS_TYPE_FILESYSTEM, "yes | no", "MOUNTED", boolean_table);
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   238
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   239
	/* set once index properties */
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   240
	register_index(ZFS_PROP_NORMALIZE, "normalization", 0,
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   241
	    PROP_ONETIME, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   242
	    "none | formC | formD | formKC | formKD", "NORMALIZATION",
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   243
	    normalize_table);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   244
	register_index(ZFS_PROP_CASE, "casesensitivity", ZFS_CASE_SENSITIVE,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   245
	    PROP_ONETIME, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   246
	    "sensitive | insensitive | mixed", "CASE", case_table);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   247
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   248
	/* set once index (boolean) properties */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   249
	register_index(ZFS_PROP_UTF8ONLY, "utf8only", 0, PROP_ONETIME,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   250
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   251
	    "on | off", "UTF8ONLY", boolean_table);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   252
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   253
	/* string properties */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   254
	register_string(ZFS_PROP_ORIGIN, "origin", NULL, PROP_READONLY,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   255
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<snapshot>", "ORIGIN");
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   256
	register_string(ZFS_PROP_MOUNTPOINT, "mountpoint", "/", PROP_INHERIT,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   257
	    ZFS_TYPE_FILESYSTEM, "<path> | legacy | none", "MOUNTPOINT");
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   258
	register_string(ZFS_PROP_SHARENFS, "sharenfs", "off", PROP_INHERIT,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   259
	    ZFS_TYPE_FILESYSTEM, "on | off | share(1M) options", "SHARENFS");
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   260
	register_string(ZFS_PROP_SHAREISCSI, "shareiscsi", "off", PROP_INHERIT,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   261
	    ZFS_TYPE_DATASET, "on | off | type=<type>", "SHAREISCSI");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   262
	register_string(ZFS_PROP_TYPE, "type", NULL, PROP_READONLY,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   263
	    ZFS_TYPE_DATASET, "filesystem | volume | snapshot", "TYPE");
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   264
	register_string(ZFS_PROP_SHARESMB, "sharesmb", "off", PROP_INHERIT,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   265
	    ZFS_TYPE_FILESYSTEM, "on | off | sharemgr(1M) options", "SHARESMB");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   266
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   267
	/* readonly number properties */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   268
	register_number(ZFS_PROP_USED, "used", 0, PROP_READONLY,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   269
	    ZFS_TYPE_DATASET, "<size>", "USED");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   270
	register_number(ZFS_PROP_AVAILABLE, "available", 0, PROP_READONLY,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   271
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "AVAIL");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   272
	register_number(ZFS_PROP_REFERENCED, "referenced", 0, PROP_READONLY,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   273
	    ZFS_TYPE_DATASET, "<size>", "REFER");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   274
	register_number(ZFS_PROP_COMPRESSRATIO, "compressratio", 0,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   275
	    PROP_READONLY, ZFS_TYPE_DATASET,
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   276
	    "<1.00x or higher if compressed>", "RATIO");
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   277
	register_number(ZFS_PROP_VOLBLOCKSIZE, "volblocksize", 8192,
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   278
	    PROP_ONETIME,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   279
	    ZFS_TYPE_VOLUME, "512 to 128k, power of 2",	"VOLBLOCK");
7390
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7237
diff changeset
   280
	register_number(ZFS_PROP_USEDSNAP, "usedbysnapshots", 0, PROP_READONLY,
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7237
diff changeset
   281
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "USEDSNAP");
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7237
diff changeset
   282
	register_number(ZFS_PROP_USEDDS, "usedbydataset", 0, PROP_READONLY,
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7237
diff changeset
   283
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "USEDDS");
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7237
diff changeset
   284
	register_number(ZFS_PROP_USEDCHILD, "usedbychildren", 0, PROP_READONLY,
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7237
diff changeset
   285
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "USEDCHILD");
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7237
diff changeset
   286
	register_number(ZFS_PROP_USEDREFRESERV, "usedbyrefreservation", 0,
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7237
diff changeset
   287
	    PROP_READONLY,
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7237
diff changeset
   288
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "USEDREFRESERV");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   289
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   290
	/* default number properties */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   291
	register_number(ZFS_PROP_QUOTA, "quota", 0, PROP_DEFAULT,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   292
	    ZFS_TYPE_FILESYSTEM, "<size> | none", "QUOTA");
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   293
	register_number(ZFS_PROP_RESERVATION, "reservation", 0, PROP_DEFAULT,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   294
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size> | none", "RESERV");
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   295
	register_number(ZFS_PROP_VOLSIZE, "volsize", 0, PROP_DEFAULT,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   296
	    ZFS_TYPE_VOLUME, "<size>", "VOLSIZE");
5378
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5331
diff changeset
   297
	register_number(ZFS_PROP_REFQUOTA, "refquota", 0, PROP_DEFAULT,
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5331
diff changeset
   298
	    ZFS_TYPE_FILESYSTEM, "<size> | none", "REFQUOTA");
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5331
diff changeset
   299
	register_number(ZFS_PROP_REFRESERVATION, "refreservation", 0,
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5331
diff changeset
   300
	    PROP_DEFAULT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5331
diff changeset
   301
	    "<size> | none", "REFRESERV");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   302
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   303
	/* inherit number properties */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   304
	register_number(ZFS_PROP_RECORDSIZE, "recordsize", SPA_MAXBLOCKSIZE,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   305
	    PROP_INHERIT,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   306
	    ZFS_TYPE_FILESYSTEM, "512 to 128k, power of 2", "RECSIZE");
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   307
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   308
	/* hidden properties */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   309
	register_hidden(ZFS_PROP_CREATETXG, "createtxg", PROP_TYPE_NUMBER,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   310
	    PROP_READONLY, ZFS_TYPE_DATASET, NULL);
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   311
	register_hidden(ZFS_PROP_NUMCLONES, "numclones", PROP_TYPE_NUMBER,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   312
	    PROP_READONLY, ZFS_TYPE_SNAPSHOT, NULL);
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   313
	register_hidden(ZFS_PROP_NAME, "name", PROP_TYPE_STRING,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   314
	    PROP_READONLY, ZFS_TYPE_DATASET, "NAME");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   315
	register_hidden(ZFS_PROP_ISCSIOPTIONS, "iscsioptions", PROP_TYPE_STRING,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   316
	    PROP_INHERIT, ZFS_TYPE_VOLUME, "ISCSIOPTIONS");
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6385
diff changeset
   317
	register_hidden(ZFS_PROP_GUID, "guid", PROP_TYPE_NUMBER, PROP_READONLY,
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6385
diff changeset
   318
	    ZFS_TYPE_DATASET, "GUID");
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   319
	register_hidden(ZFS_PROP_USERACCOUNTING, "useraccounting",
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   320
	    PROP_TYPE_NUMBER, PROP_READONLY, ZFS_TYPE_DATASET, NULL);
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   321
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   322
	/* oddball properties */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   323
	register_impl(ZFS_PROP_CREATION, "creation", PROP_TYPE_NUMBER, 0, NULL,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   324
	    PROP_READONLY, ZFS_TYPE_DATASET,
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   325
	    "<date>", "CREATION", B_FALSE, B_TRUE, NULL);
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   326
}
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   327
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   328
boolean_t
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   329
zfs_prop_delegatable(zfs_prop_t prop)
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   330
{
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   331
	zprop_desc_t *pd = &zfs_prop_table[prop];
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   332
	return (pd->pd_attr != PROP_READONLY);
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   333
}
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   334
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   335
/*
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   336
 * Given a zfs dataset property name, returns the corresponding property ID.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   337
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   338
zfs_prop_t
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   339
zfs_name_to_prop(const char *propname)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   340
{
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   341
	return (zprop_name_to_prop(propname, ZFS_TYPE_DATASET));
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   342
}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   343
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   344
/*
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   345
 * For user property names, we allow all lowercase alphanumeric characters, plus
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   346
 * a few useful punctuation characters.
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   347
 */
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   348
static int
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   349
valid_char(char c)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   350
{
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   351
	return ((c >= 'a' && c <= 'z') ||
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   352
	    (c >= '0' && c <= '9') ||
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   353
	    c == '-' || c == '_' || c == '.' || c == ':');
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   354
}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   355
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   356
/*
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   357
 * Returns true if this is a valid user-defined property (one with a ':').
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   358
 */
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   359
boolean_t
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   360
zfs_prop_user(const char *name)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   361
{
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   362
	int i;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   363
	char c;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   364
	boolean_t foundsep = B_FALSE;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   365
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   366
	for (i = 0; i < strlen(name); i++) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   367
		c = name[i];
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   368
		if (!valid_char(c))
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   369
			return (B_FALSE);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   370
		if (c == ':')
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   371
			foundsep = B_TRUE;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   372
	}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   373
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   374
	if (!foundsep)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   375
		return (B_FALSE);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   376
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   377
	return (B_TRUE);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   378
}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   379
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   380
/*
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   381
 * Returns true if this is a valid userspace-type property (one with a '@').
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   382
 * Note that after the @, any character is valid (eg, another @, for SID
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   383
 * user@domain).
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   384
 */
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   385
boolean_t
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   386
zfs_prop_userquota(const char *name)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   387
{
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   388
	zfs_userquota_prop_t prop;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   389
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   390
	for (prop = 0; prop < ZFS_NUM_USERQUOTA_PROPS; prop++) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   391
		if (strncmp(name, zfs_userquota_prop_prefixes[prop],
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   392
		    strlen(zfs_userquota_prop_prefixes[prop])) == 0) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   393
			return (B_TRUE);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   394
		}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   395
	}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   397
	return (B_FALSE);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   398
}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   399
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   400
/*
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   401
 * Tables of index types, plus functions to convert between the user view
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   402
 * (strings) and internal representation (uint64_t).
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   403
 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   404
int
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   405
zfs_prop_string_to_index(zfs_prop_t prop, const char *string, uint64_t *index)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   406
{
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   407
	return (zprop_string_to_index(prop, string, index, ZFS_TYPE_DATASET));
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   408
}
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   409
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   410
int
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   411
zfs_prop_index_to_string(zfs_prop_t prop, uint64_t index, const char **string)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   412
{
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   413
	return (zprop_index_to_string(prop, index, string, ZFS_TYPE_DATASET));
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   414
}
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   415
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   416
/*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   417
 * Returns TRUE if the property applies to any of the given dataset types.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   418
 */
6690
19b5b95523e1 6695219 Running 'zfs get all' on a snapshot should not display the user properties
gw25295
parents: 6643
diff changeset
   419
boolean_t
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   420
zfs_prop_valid_for_type(int prop, zfs_type_t types)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   421
{
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   422
	return (zprop_valid_for_type(prop, types));
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   423
}
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   424
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   425
zprop_type_t
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   426
zfs_prop_get_type(zfs_prop_t prop)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   427
{
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   428
	return (zfs_prop_table[prop].pd_proptype);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   429
}
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   430
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   431
/*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   432
 * Returns TRUE if the property is readonly.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   433
 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   434
boolean_t
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   435
zfs_prop_readonly(zfs_prop_t prop)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   436
{
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   437
	return (zfs_prop_table[prop].pd_attr == PROP_READONLY ||
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   438
	    zfs_prop_table[prop].pd_attr == PROP_ONETIME);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   439
}
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   440
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   441
/*
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   442
 * Returns TRUE if the property is only allowed to be set once.
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   443
 */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   444
boolean_t
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   445
zfs_prop_setonce(zfs_prop_t prop)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   446
{
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   447
	return (zfs_prop_table[prop].pd_attr == PROP_ONETIME);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   448
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   449
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3912
diff changeset
   450
const char *
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   451
zfs_prop_default_string(zfs_prop_t prop)
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3912
diff changeset
   452
{
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3912
diff changeset
   453
	return (zfs_prop_table[prop].pd_strdefault);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3912
diff changeset
   454
}
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3912
diff changeset
   455
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   456
uint64_t
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   457
zfs_prop_default_numeric(zfs_prop_t prop)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   458
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   459
	return (zfs_prop_table[prop].pd_numdefault);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   460
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   461
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   462
/*
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   463
 * Given a dataset property ID, returns the corresponding name.
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3912
diff changeset
   464
 * Assuming the zfs dataset property ID is valid.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   465
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   466
const char *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   467
zfs_prop_to_name(zfs_prop_t prop)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   468
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   469
	return (zfs_prop_table[prop].pd_name);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   470
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   471
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   472
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   473
 * Returns TRUE if the property is inheritable.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   474
 */
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   475
boolean_t
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   476
zfs_prop_inheritable(zfs_prop_t prop)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   477
{
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   478
	return (zfs_prop_table[prop].pd_attr == PROP_INHERIT ||
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   479
	    zfs_prop_table[prop].pd_attr == PROP_ONETIME);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   480
}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   481
2717
ed589a32259d 6469385 zfs_set_prop_nvlist range checking is busted
eschrock
parents: 2676
diff changeset
   482
#ifndef _KERNEL
ed589a32259d 6469385 zfs_set_prop_nvlist range checking is busted
eschrock
parents: 2676
diff changeset
   483
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   484
/*
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   485
 * Returns a string describing the set of acceptable values for the given
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   486
 * zfs property, or NULL if it cannot be set.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   487
 */
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   488
const char *
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   489
zfs_prop_values(zfs_prop_t prop)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   490
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   491
	return (zfs_prop_table[prop].pd_values);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   492
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   493
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   494
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   495
 * Returns TRUE if this property is a string type.  Note that index types
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   496
 * (compression, checksum) are treated as strings in userland, even though they
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   497
 * are stored numerically on disk.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   498
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   499
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   500
zfs_prop_is_string(zfs_prop_t prop)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   501
{
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   502
	return (zfs_prop_table[prop].pd_proptype == PROP_TYPE_STRING ||
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   503
	    zfs_prop_table[prop].pd_proptype == PROP_TYPE_INDEX);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   504
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   505
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   506
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   507
 * Returns the column header for the given property.  Used only in
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   508
 * 'zfs list -o', but centralized here with the other property information.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   509
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   510
const char *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   511
zfs_prop_column_name(zfs_prop_t prop)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   512
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   513
	return (zfs_prop_table[prop].pd_colname);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   514
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   515
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   516
/*
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   517
 * Returns whether the given property should be displayed right-justified for
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   518
 * 'zfs list'.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   519
 */
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   520
boolean_t
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   521
zfs_prop_align_right(zfs_prop_t prop)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   522
{
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   523
	return (zfs_prop_table[prop].pd_rightalign);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   524
}
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   525
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   526
#endif