usr/src/common/zfs/zfs_prop.c
author Jeff Bonwick <Jeff.Bonwick@Sun.COM>
Sun, 01 Nov 2009 14:14:46 -0800
changeset 10922 e2081f502306
parent 10575 2a8816c5173b
child 10972 807794d41b3a
permissions -rw-r--r--
PSARC 2009/571 ZFS Deduplication Properties 6677093 zfs should have dedup capability
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
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
    72
	static zprop_index_t dedup_table[] = {
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
    73
		{ "on",		ZIO_CHECKSUM_ON },
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
    74
		{ "off",	ZIO_CHECKSUM_OFF },
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
    75
		{ "verify",	ZIO_CHECKSUM_ON | ZIO_CHECKSUM_VERIFY },
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
    76
		{ "sha256",	ZIO_CHECKSUM_SHA256 },
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
    77
		{ "sha256,verify",
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
    78
				ZIO_CHECKSUM_SHA256 | ZIO_CHECKSUM_VERIFY },
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
    79
		{ "fletcher4,verify",
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
    80
				ZIO_CHECKSUM_FLETCHER_4 | ZIO_CHECKSUM_VERIFY },
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
    81
		{ NULL }
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
    82
	};
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
    83
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
    84
	static zprop_index_t compress_table[] = {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    85
		{ "on",		ZIO_COMPRESS_ON },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    86
		{ "off",	ZIO_COMPRESS_OFF },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    87
		{ "lzjb",	ZIO_COMPRESS_LZJB },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    88
		{ "gzip",	ZIO_COMPRESS_GZIP_6 },	/* gzip default */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    89
		{ "gzip-1",	ZIO_COMPRESS_GZIP_1 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    90
		{ "gzip-2",	ZIO_COMPRESS_GZIP_2 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    91
		{ "gzip-3",	ZIO_COMPRESS_GZIP_3 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    92
		{ "gzip-4",	ZIO_COMPRESS_GZIP_4 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    93
		{ "gzip-5",	ZIO_COMPRESS_GZIP_5 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    94
		{ "gzip-6",	ZIO_COMPRESS_GZIP_6 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    95
		{ "gzip-7",	ZIO_COMPRESS_GZIP_7 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    96
		{ "gzip-8",	ZIO_COMPRESS_GZIP_8 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
    97
		{ "gzip-9",	ZIO_COMPRESS_GZIP_9 },
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
    98
		{ "zle",	ZIO_COMPRESS_ZLE },
4787
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 snapdir_table[] = {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   103
		{ "hidden",	ZFS_SNAPDIR_HIDDEN },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   104
		{ "visible",	ZFS_SNAPDIR_VISIBLE },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   105
		{ NULL }
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   106
	};
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   107
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   108
	static zprop_index_t acl_mode_table[] = {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   109
		{ "discard",	ZFS_ACL_DISCARD },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   110
		{ "groupmask",	ZFS_ACL_GROUPMASK },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   111
		{ "passthrough", ZFS_ACL_PASSTHROUGH },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   112
		{ NULL }
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   113
	};
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   114
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   115
	static zprop_index_t acl_inherit_table[] = {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   116
		{ "discard",	ZFS_ACL_DISCARD },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   117
		{ "noallow",	ZFS_ACL_NOALLOW },
6385
5437941ec5a1 PSARC/2008/231 New ZFS "passthrough" ACL inheritance rules
marks
parents: 6168
diff changeset
   118
		{ "restricted",	ZFS_ACL_RESTRICTED },
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   119
		{ "passthrough", ZFS_ACL_PASSTHROUGH },
6385
5437941ec5a1 PSARC/2008/231 New ZFS "passthrough" ACL inheritance rules
marks
parents: 6168
diff changeset
   120
		{ "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
   121
		{ "passthrough-x", ZFS_ACL_PASSTHROUGH_X },
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   122
		{ NULL }
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   123
	};
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   124
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   125
	static zprop_index_t case_table[] = {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   126
		{ "sensitive",		ZFS_CASE_SENSITIVE },
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   127
		{ "insensitive",	ZFS_CASE_INSENSITIVE },
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   128
		{ "mixed",		ZFS_CASE_MIXED },
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   129
		{ NULL }
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   130
	};
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   131
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   132
	static zprop_index_t copies_table[] = {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   133
		{ "1",		1 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   134
		{ "2",		2 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   135
		{ "3",		3 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   136
		{ NULL }
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   137
	};
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   138
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   139
	/*
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   140
	 * 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
   141
	 * u8_textprep() to represent the various normalization property
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   142
	 * values.
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   143
	 */
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   144
	static zprop_index_t normalize_table[] = {
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   145
		{ "none",	0 },
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   146
		{ "formD",	U8_TEXTPREP_NFD },
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   147
		{ "formKC",	U8_TEXTPREP_NFKC },
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   148
		{ "formC",	U8_TEXTPREP_NFC },
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   149
		{ "formKD",	U8_TEXTPREP_NFKD },
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   150
		{ NULL }
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   151
	};
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   152
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   153
	static zprop_index_t version_table[] = {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   154
		{ "1",		1 },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   155
		{ "2",		2 },
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   156
		{ "3",		3 },
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   157
		{ "4",		4 },
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   158
		{ "current",	ZPL_VERSION },
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   159
		{ NULL }
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   160
	};
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   161
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   162
	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
   163
		{ "off",	0 },
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   164
		{ "on",		1 },
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   165
		{ NULL }
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   166
	};
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   167
10310
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   168
	static zprop_index_t logbias_table[] = {
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   169
		{ "latency",	ZFS_LOGBIAS_LATENCY },
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   170
		{ "throughput",	ZFS_LOGBIAS_THROUGHPUT },
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   171
		{ NULL }
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   172
	};
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   173
6168
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   174
	static zprop_index_t canmount_table[] = {
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   175
		{ "off",	ZFS_CANMOUNT_OFF },
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   176
		{ "on",		ZFS_CANMOUNT_ON },
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   177
		{ "noauto",	ZFS_CANMOUNT_NOAUTO },
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   178
		{ NULL }
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   179
	};
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   180
7237
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   181
	static zprop_index_t cache_table[] = {
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   182
		{ "none",	ZFS_CACHE_NONE },
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   183
		{ "metadata",	ZFS_CACHE_METADATA },
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   184
		{ "all",	ZFS_CACHE_ALL },
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   185
		{ NULL }
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   186
	};
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   187
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   188
	/* inherit index properties */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   189
	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
   190
	    PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   191
	    "on | off | fletcher2 | fletcher4 | sha256", "CHECKSUM",
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   192
	    checksum_table);
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   193
	register_index(ZFS_PROP_DEDUP, "dedup", ZIO_CHECKSUM_OFF,
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   194
	    PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   195
	    "on | off | verify | sha256[,verify] | fletcher4,verify", "DEDUP",
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   196
	    dedup_table);
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   197
	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
   198
	    ZIO_COMPRESS_DEFAULT, PROP_INHERIT,
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   199
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   200
	    "on | off | lzjb | gzip | gzip-[1-9] | zle", "COMPRESS",
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   201
	    compress_table);
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   202
	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
   203
	    PROP_INHERIT, ZFS_TYPE_FILESYSTEM,
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   204
	    "hidden | visible", "SNAPDIR", snapdir_table);
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   205
	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
   206
	    PROP_INHERIT, ZFS_TYPE_FILESYSTEM,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   207
	    "discard | groupmask | passthrough", "ACLMODE", acl_mode_table);
6385
5437941ec5a1 PSARC/2008/231 New ZFS "passthrough" ACL inheritance rules
marks
parents: 6168
diff changeset
   208
	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
   209
	    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
   210
	    "discard | noallow | restricted | passthrough | passthrough-x",
6385
5437941ec5a1 PSARC/2008/231 New ZFS "passthrough" ACL inheritance rules
marks
parents: 6168
diff changeset
   211
	    "ACLINHERIT", acl_inherit_table);
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   212
	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
   213
	    PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   214
	    "1 | 2 | 3", "COPIES", copies_table);
7237
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   215
	register_index(ZFS_PROP_PRIMARYCACHE, "primarycache",
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   216
	    ZFS_CACHE_ALL, PROP_INHERIT,
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   217
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT | ZFS_TYPE_VOLUME,
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   218
	    "all | none | metadata", "PRIMARYCACHE", cache_table);
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   219
	register_index(ZFS_PROP_SECONDARYCACHE, "secondarycache",
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   220
	    ZFS_CACHE_ALL, PROP_INHERIT,
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   221
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT | ZFS_TYPE_VOLUME,
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 6690
diff changeset
   222
	    "all | none | metadata", "SECONDARYCACHE", cache_table);
10310
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   223
	register_index(ZFS_PROP_LOGBIAS, "logbias", ZFS_LOGBIAS_LATENCY,
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   224
	    PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   225
	    "latency | throughput", "LOGBIAS", logbias_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
	/* inherit index (boolean) properties */
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   228
	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
   229
	    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
   230
	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
   231
	    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
   232
	    boolean_table);
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   233
	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
   234
	    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
   235
	    boolean_table);
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   236
	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
   237
	    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
   238
	    boolean_table);
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   239
	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
   240
	    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
   241
	    boolean_table);
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   242
	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
   243
	    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
   244
	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
   245
	    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
   246
	    boolean_table);
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   247
	register_index(ZFS_PROP_VSCAN, "vscan", 0, PROP_INHERIT,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   248
	    ZFS_TYPE_FILESYSTEM, "on | off", "VSCAN",
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   249
	    boolean_table);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   250
	register_index(ZFS_PROP_NBMAND, "nbmand", 0, PROP_INHERIT,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   251
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "NBMAND",
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   252
	    boolean_table);
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   253
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   254
	/* default index properties */
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   255
	register_index(ZFS_PROP_VERSION, "version", 0, PROP_DEFAULT,
2597
21c0f93f2513 6349987 lzjb.c lived longer than expected?
nd150628
parents: 2474
diff changeset
   256
	    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
   257
	    "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
   258
	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
   259
	    PROP_DEFAULT, ZFS_TYPE_FILESYSTEM, "on | off | noauto",
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   260
	    "CANMOUNT", canmount_table);
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   261
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   262
	/* readonly index (boolean) properties */
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   263
	register_index(ZFS_PROP_MOUNTED, "mounted", 0, PROP_READONLY,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   264
	    ZFS_TYPE_FILESYSTEM, "yes | no", "MOUNTED", boolean_table);
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 9643
diff changeset
   265
	register_index(ZFS_PROP_DEFER_DESTROY, "defer_destroy", 0,
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 9643
diff changeset
   266
	    PROP_READONLY, ZFS_TYPE_SNAPSHOT, "yes | no", "DEFER_DESTROY",
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 9643
diff changeset
   267
	    boolean_table);
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   268
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   269
	/* set once index properties */
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5378
diff changeset
   270
	register_index(ZFS_PROP_NORMALIZE, "normalization", 0,
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   271
	    PROP_ONETIME, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   272
	    "none | formC | formD | formKC | formKD", "NORMALIZATION",
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   273
	    normalize_table);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   274
	register_index(ZFS_PROP_CASE, "casesensitivity", ZFS_CASE_SENSITIVE,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   275
	    PROP_ONETIME, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   276
	    "sensitive | insensitive | mixed", "CASE", case_table);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   277
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   278
	/* set once index (boolean) properties */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   279
	register_index(ZFS_PROP_UTF8ONLY, "utf8only", 0, PROP_ONETIME,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   280
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   281
	    "on | off", "UTF8ONLY", boolean_table);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   282
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   283
	/* string properties */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   284
	register_string(ZFS_PROP_ORIGIN, "origin", NULL, PROP_READONLY,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   285
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<snapshot>", "ORIGIN");
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   286
	register_string(ZFS_PROP_MOUNTPOINT, "mountpoint", "/", PROP_INHERIT,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   287
	    ZFS_TYPE_FILESYSTEM, "<path> | legacy | none", "MOUNTPOINT");
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   288
	register_string(ZFS_PROP_SHARENFS, "sharenfs", "off", PROP_INHERIT,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   289
	    ZFS_TYPE_FILESYSTEM, "on | off | share(1M) options", "SHARENFS");
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   290
	register_string(ZFS_PROP_SHAREISCSI, "shareiscsi", "off", PROP_INHERIT,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   291
	    ZFS_TYPE_DATASET, "on | off | type=<type>", "SHAREISCSI");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   292
	register_string(ZFS_PROP_TYPE, "type", NULL, PROP_READONLY,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   293
	    ZFS_TYPE_DATASET, "filesystem | volume | snapshot", "TYPE");
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   294
	register_string(ZFS_PROP_SHARESMB, "sharesmb", "off", PROP_INHERIT,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   295
	    ZFS_TYPE_FILESYSTEM, "on | off | sharemgr(1M) options", "SHARESMB");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   296
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   297
	/* readonly number properties */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   298
	register_number(ZFS_PROP_USED, "used", 0, PROP_READONLY,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   299
	    ZFS_TYPE_DATASET, "<size>", "USED");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   300
	register_number(ZFS_PROP_AVAILABLE, "available", 0, PROP_READONLY,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   301
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "AVAIL");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   302
	register_number(ZFS_PROP_REFERENCED, "referenced", 0, PROP_READONLY,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   303
	    ZFS_TYPE_DATASET, "<size>", "REFER");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   304
	register_number(ZFS_PROP_COMPRESSRATIO, "compressratio", 0,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   305
	    PROP_READONLY, ZFS_TYPE_DATASET,
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   306
	    "<1.00x or higher if compressed>", "RATIO");
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   307
	register_number(ZFS_PROP_VOLBLOCKSIZE, "volblocksize", 8192,
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   308
	    PROP_ONETIME,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   309
	    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
   310
	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
   311
	    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
   312
	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
   313
	    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
   314
	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
   315
	    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
   316
	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
   317
	    PROP_READONLY,
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7237
diff changeset
   318
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "USEDREFRESERV");
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 9643
diff changeset
   319
	register_number(ZFS_PROP_USERREFS, "userrefs", 0, PROP_READONLY,
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 9643
diff changeset
   320
	    ZFS_TYPE_SNAPSHOT, "<count>", "USERREFS");
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
	/* default number properties */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   323
	register_number(ZFS_PROP_QUOTA, "quota", 0, PROP_DEFAULT,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   324
	    ZFS_TYPE_FILESYSTEM, "<size> | none", "QUOTA");
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   325
	register_number(ZFS_PROP_RESERVATION, "reservation", 0, PROP_DEFAULT,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   326
	    ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size> | none", "RESERV");
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   327
	register_number(ZFS_PROP_VOLSIZE, "volsize", 0, PROP_DEFAULT,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   328
	    ZFS_TYPE_VOLUME, "<size>", "VOLSIZE");
5378
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5331
diff changeset
   329
	register_number(ZFS_PROP_REFQUOTA, "refquota", 0, PROP_DEFAULT,
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5331
diff changeset
   330
	    ZFS_TYPE_FILESYSTEM, "<size> | none", "REFQUOTA");
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5331
diff changeset
   331
	register_number(ZFS_PROP_REFRESERVATION, "refreservation", 0,
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5331
diff changeset
   332
	    PROP_DEFAULT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME,
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5331
diff changeset
   333
	    "<size> | none", "REFRESERV");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   334
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   335
	/* inherit number properties */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   336
	register_number(ZFS_PROP_RECORDSIZE, "recordsize", SPA_MAXBLOCKSIZE,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   337
	    PROP_INHERIT,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   338
	    ZFS_TYPE_FILESYSTEM, "512 to 128k, power of 2", "RECSIZE");
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   339
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   340
	/* hidden properties */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   341
	register_hidden(ZFS_PROP_CREATETXG, "createtxg", PROP_TYPE_NUMBER,
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   342
	    PROP_READONLY, ZFS_TYPE_DATASET, "CREATETXG");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   343
	register_hidden(ZFS_PROP_NUMCLONES, "numclones", PROP_TYPE_NUMBER,
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   344
	    PROP_READONLY, ZFS_TYPE_SNAPSHOT, "NUMCLONES");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   345
	register_hidden(ZFS_PROP_NAME, "name", PROP_TYPE_STRING,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   346
	    PROP_READONLY, ZFS_TYPE_DATASET, "NAME");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   347
	register_hidden(ZFS_PROP_ISCSIOPTIONS, "iscsioptions", PROP_TYPE_STRING,
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   348
	    PROP_INHERIT, ZFS_TYPE_VOLUME, "ISCSIOPTIONS");
9643
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9396
diff changeset
   349
	register_hidden(ZFS_PROP_STMF_SHAREINFO, "stmf_sbd_lu",
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9396
diff changeset
   350
	    PROP_TYPE_STRING, PROP_INHERIT, ZFS_TYPE_VOLUME,
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9396
diff changeset
   351
	    "STMF_SBD_LU");
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6385
diff changeset
   352
	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
   353
	    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
   354
	register_hidden(ZFS_PROP_USERACCOUNTING, "useraccounting",
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   355
	    PROP_TYPE_NUMBER, PROP_READONLY, ZFS_TYPE_DATASET,
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   356
	    "USERACCOUNTING");
10575
2a8816c5173b 6882196 resource.* events shouldn't be posted during spa_tryimport()
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 10310
diff changeset
   357
	register_hidden(ZFS_PROP_UNIQUE, "unique", PROP_TYPE_NUMBER,
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   358
	    PROP_READONLY, ZFS_TYPE_DATASET, "UNIQUE");
10575
2a8816c5173b 6882196 resource.* events shouldn't be posted during spa_tryimport()
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 10310
diff changeset
   359
	register_hidden(ZFS_PROP_OBJSETID, "objsetid", PROP_TYPE_NUMBER,
2a8816c5173b 6882196 resource.* events shouldn't be posted during spa_tryimport()
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 10310
diff changeset
   360
	    PROP_READONLY, ZFS_TYPE_DATASET, "OBJSETID");
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   361
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   362
	/* oddball properties */
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   363
	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
   364
	    PROP_READONLY, ZFS_TYPE_DATASET,
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   365
	    "<date>", "CREATION", B_FALSE, B_TRUE, NULL);
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   366
}
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   367
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   368
boolean_t
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   369
zfs_prop_delegatable(zfs_prop_t prop)
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   370
{
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   371
	zprop_desc_t *pd = &zfs_prop_table[prop];
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   372
	return (pd->pd_attr != PROP_READONLY);
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   373
}
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   374
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   375
/*
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   376
 * Given a zfs dataset property name, returns the corresponding property ID.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   377
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   378
zfs_prop_t
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   379
zfs_name_to_prop(const char *propname)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   380
{
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   381
	return (zprop_name_to_prop(propname, ZFS_TYPE_DATASET));
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   382
}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   383
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   384
/*
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   385
 * For user property names, we allow all lowercase alphanumeric characters, plus
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   386
 * a few useful punctuation characters.
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   387
 */
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   388
static int
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   389
valid_char(char c)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   390
{
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   391
	return ((c >= 'a' && c <= 'z') ||
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   392
	    (c >= '0' && c <= '9') ||
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   393
	    c == '-' || c == '_' || c == '.' || c == ':');
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   394
}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   395
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   396
/*
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   397
 * 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
   398
 */
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   399
boolean_t
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   400
zfs_prop_user(const char *name)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   401
{
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   402
	int i;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   403
	char c;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   404
	boolean_t foundsep = B_FALSE;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   405
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   406
	for (i = 0; i < strlen(name); i++) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   407
		c = name[i];
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   408
		if (!valid_char(c))
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   409
			return (B_FALSE);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   410
		if (c == ':')
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   411
			foundsep = B_TRUE;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   412
	}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   413
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   414
	if (!foundsep)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   415
		return (B_FALSE);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   416
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   417
	return (B_TRUE);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   418
}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   419
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   420
/*
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   421
 * 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
   422
 * 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
   423
 * user@domain).
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   424
 */
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   425
boolean_t
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   426
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
   427
{
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   428
	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
   429
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   430
	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
   431
		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
   432
		    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
   433
			return (B_TRUE);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   434
		}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   435
	}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   436
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   437
	return (B_FALSE);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   438
}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   439
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8053
diff changeset
   440
/*
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   441
 * 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
   442
 * (strings) and internal representation (uint64_t).
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   443
 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   444
int
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   445
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
   446
{
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   447
	return (zprop_string_to_index(prop, string, index, ZFS_TYPE_DATASET));
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   448
}
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   449
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   450
int
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   451
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
   452
{
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   453
	return (zprop_index_to_string(prop, index, string, ZFS_TYPE_DATASET));
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   454
}
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   455
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   456
uint64_t
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   457
zfs_prop_random_value(zfs_prop_t prop, uint64_t seed)
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   458
{
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   459
	return (zprop_random_value(prop, seed, ZFS_TYPE_DATASET));
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   460
}
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10575
diff changeset
   461
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   462
/*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   463
 * Returns TRUE if the property applies to any of the given dataset types.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   464
 */
6690
19b5b95523e1 6695219 Running 'zfs get all' on a snapshot should not display the user properties
gw25295
parents: 6643
diff changeset
   465
boolean_t
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   466
zfs_prop_valid_for_type(int prop, zfs_type_t types)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   467
{
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   468
	return (zprop_valid_for_type(prop, types));
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   469
}
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   470
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   471
zprop_type_t
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   472
zfs_prop_get_type(zfs_prop_t prop)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   473
{
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   474
	return (zfs_prop_table[prop].pd_proptype);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   475
}
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   476
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   477
/*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   478
 * Returns TRUE if the property is readonly.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   479
 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   480
boolean_t
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   481
zfs_prop_readonly(zfs_prop_t prop)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   482
{
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   483
	return (zfs_prop_table[prop].pd_attr == PROP_READONLY ||
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   484
	    zfs_prop_table[prop].pd_attr == PROP_ONETIME);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   485
}
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   486
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   487
/*
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   488
 * 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
   489
 */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   490
boolean_t
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   491
zfs_prop_setonce(zfs_prop_t prop)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   492
{
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   493
	return (zfs_prop_table[prop].pd_attr == PROP_ONETIME);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   494
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   495
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3912
diff changeset
   496
const char *
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   497
zfs_prop_default_string(zfs_prop_t prop)
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3912
diff changeset
   498
{
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3912
diff changeset
   499
	return (zfs_prop_table[prop].pd_strdefault);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3912
diff changeset
   500
}
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3912
diff changeset
   501
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   502
uint64_t
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   503
zfs_prop_default_numeric(zfs_prop_t prop)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   504
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   505
	return (zfs_prop_table[prop].pd_numdefault);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   506
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   507
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   508
/*
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   509
 * Given a dataset property ID, returns the corresponding name.
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3912
diff changeset
   510
 * Assuming the zfs dataset property ID is valid.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   511
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   512
const char *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   513
zfs_prop_to_name(zfs_prop_t prop)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   514
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   515
	return (zfs_prop_table[prop].pd_name);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   516
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   517
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   518
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   519
 * Returns TRUE if the property is inheritable.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   520
 */
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   521
boolean_t
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   522
zfs_prop_inheritable(zfs_prop_t prop)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   523
{
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   524
	return (zfs_prop_table[prop].pd_attr == PROP_INHERIT ||
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   525
	    zfs_prop_table[prop].pd_attr == PROP_ONETIME);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   526
}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   527
2717
ed589a32259d 6469385 zfs_set_prop_nvlist range checking is busted
eschrock
parents: 2676
diff changeset
   528
#ifndef _KERNEL
ed589a32259d 6469385 zfs_set_prop_nvlist range checking is busted
eschrock
parents: 2676
diff changeset
   529
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   530
/*
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   531
 * Returns a string describing the set of acceptable values for the given
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   532
 * zfs property, or NULL if it cannot be set.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   533
 */
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   534
const char *
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   535
zfs_prop_values(zfs_prop_t prop)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   536
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   537
	return (zfs_prop_table[prop].pd_values);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   538
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   539
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   540
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   541
 * Returns TRUE if this property is a string type.  Note that index types
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   542
 * (compression, checksum) are treated as strings in userland, even though they
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   543
 * are stored numerically on disk.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   544
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   545
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   546
zfs_prop_is_string(zfs_prop_t prop)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   547
{
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   548
	return (zfs_prop_table[prop].pd_proptype == PROP_TYPE_STRING ||
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   549
	    zfs_prop_table[prop].pd_proptype == PROP_TYPE_INDEX);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   550
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   551
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   552
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   553
 * Returns the column header for the given property.  Used only in
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   554
 * 'zfs list -o', but centralized here with the other property information.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   555
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   556
const char *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   557
zfs_prop_column_name(zfs_prop_t prop)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   558
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   559
	return (zfs_prop_table[prop].pd_colname);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   560
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   561
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   562
/*
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   563
 * Returns whether the given property should be displayed right-justified for
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   564
 * 'zfs list'.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   565
 */
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   566
boolean_t
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   567
zfs_prop_align_right(zfs_prop_t prop)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   568
{
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2597
diff changeset
   569
	return (zfs_prop_table[prop].pd_rightalign);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   570
}
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
   571
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   572
#endif