8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / common / zfs / zpool_prop.c
blob2a4f55d5b996ce04a7aedccea768f493c54a8f59
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
22 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
24 * Copyright (c) 2012, 2014 by Delphix. All rights reserved.
25 * Copyright (c) 2014 Integros [integros.com]
28 #include <sys/zio.h>
29 #include <sys/spa.h>
30 #include <sys/zfs_acl.h>
31 #include <sys/zfs_ioctl.h>
32 #include <sys/fs/zfs.h>
34 #include "zfs_prop.h"
36 #if defined(_KERNEL)
37 #include <sys/systm.h>
38 #else
39 #include <stdlib.h>
40 #include <string.h>
41 #include <ctype.h>
42 #endif
44 static zprop_desc_t zpool_prop_table[ZPOOL_NUM_PROPS];
46 zprop_desc_t *
47 zpool_prop_get_table(void)
49 return (zpool_prop_table);
52 void
53 zpool_prop_init(void)
55 static zprop_index_t boolean_table[] = {
56 { "off", 0},
57 { "on", 1},
58 { NULL }
61 static zprop_index_t failuremode_table[] = {
62 { "wait", ZIO_FAILURE_MODE_WAIT },
63 { "continue", ZIO_FAILURE_MODE_CONTINUE },
64 { "panic", ZIO_FAILURE_MODE_PANIC },
65 { NULL }
68 /* string properties */
69 zprop_register_string(ZPOOL_PROP_ALTROOT, "altroot", NULL, PROP_DEFAULT,
70 ZFS_TYPE_POOL, "<path>", "ALTROOT");
71 zprop_register_string(ZPOOL_PROP_BOOTFS, "bootfs", NULL, PROP_DEFAULT,
72 ZFS_TYPE_POOL, "<filesystem>", "BOOTFS");
73 zprop_register_string(ZPOOL_PROP_CACHEFILE, "cachefile", NULL,
74 PROP_DEFAULT, ZFS_TYPE_POOL, "<file> | none", "CACHEFILE");
75 zprop_register_string(ZPOOL_PROP_COMMENT, "comment", NULL,
76 PROP_DEFAULT, ZFS_TYPE_POOL, "<comment-string>", "COMMENT");
78 /* readonly number properties */
79 zprop_register_number(ZPOOL_PROP_SIZE, "size", 0, PROP_READONLY,
80 ZFS_TYPE_POOL, "<size>", "SIZE");
81 zprop_register_number(ZPOOL_PROP_FREE, "free", 0, PROP_READONLY,
82 ZFS_TYPE_POOL, "<size>", "FREE");
83 zprop_register_number(ZPOOL_PROP_FREEING, "freeing", 0, PROP_READONLY,
84 ZFS_TYPE_POOL, "<size>", "FREEING");
85 zprop_register_number(ZPOOL_PROP_LEAKED, "leaked", 0, PROP_READONLY,
86 ZFS_TYPE_POOL, "<size>", "LEAKED");
87 zprop_register_number(ZPOOL_PROP_ALLOCATED, "allocated", 0,
88 PROP_READONLY, ZFS_TYPE_POOL, "<size>", "ALLOC");
89 zprop_register_number(ZPOOL_PROP_EXPANDSZ, "expandsize", 0,
90 PROP_READONLY, ZFS_TYPE_POOL, "<size>", "EXPANDSZ");
91 zprop_register_number(ZPOOL_PROP_FRAGMENTATION, "fragmentation", 0,
92 PROP_READONLY, ZFS_TYPE_POOL, "<percent>", "FRAG");
93 zprop_register_number(ZPOOL_PROP_CAPACITY, "capacity", 0, PROP_READONLY,
94 ZFS_TYPE_POOL, "<size>", "CAP");
95 zprop_register_number(ZPOOL_PROP_GUID, "guid", 0, PROP_READONLY,
96 ZFS_TYPE_POOL, "<guid>", "GUID");
97 zprop_register_number(ZPOOL_PROP_HEALTH, "health", 0, PROP_READONLY,
98 ZFS_TYPE_POOL, "<state>", "HEALTH");
99 zprop_register_number(ZPOOL_PROP_DEDUPRATIO, "dedupratio", 0,
100 PROP_READONLY, ZFS_TYPE_POOL, "<1.00x or higher if deduped>",
101 "DEDUP");
103 /* system partition size */
104 zprop_register_number(ZPOOL_PROP_BOOTSIZE, "bootsize", 0, PROP_ONETIME,
105 ZFS_TYPE_POOL, "<size>", "BOOTSIZE");
107 /* default number properties */
108 zprop_register_number(ZPOOL_PROP_VERSION, "version", SPA_VERSION,
109 PROP_DEFAULT, ZFS_TYPE_POOL, "<version>", "VERSION");
110 zprop_register_number(ZPOOL_PROP_DEDUPDITTO, "dedupditto", 0,
111 PROP_DEFAULT, ZFS_TYPE_POOL, "<threshold (min 100)>", "DEDUPDITTO");
113 /* default index (boolean) properties */
114 zprop_register_index(ZPOOL_PROP_DELEGATION, "delegation", 1,
115 PROP_DEFAULT, ZFS_TYPE_POOL, "on | off", "DELEGATION",
116 boolean_table);
117 zprop_register_index(ZPOOL_PROP_AUTOREPLACE, "autoreplace", 0,
118 PROP_DEFAULT, ZFS_TYPE_POOL, "on | off", "REPLACE", boolean_table);
119 zprop_register_index(ZPOOL_PROP_LISTSNAPS, "listsnapshots", 0,
120 PROP_DEFAULT, ZFS_TYPE_POOL, "on | off", "LISTSNAPS",
121 boolean_table);
122 zprop_register_index(ZPOOL_PROP_AUTOEXPAND, "autoexpand", 0,
123 PROP_DEFAULT, ZFS_TYPE_POOL, "on | off", "EXPAND", boolean_table);
124 zprop_register_index(ZPOOL_PROP_READONLY, "readonly", 0,
125 PROP_DEFAULT, ZFS_TYPE_POOL, "on | off", "RDONLY", boolean_table);
127 /* default index properties */
128 zprop_register_index(ZPOOL_PROP_FAILUREMODE, "failmode",
129 ZIO_FAILURE_MODE_WAIT, PROP_DEFAULT, ZFS_TYPE_POOL,
130 "wait | continue | panic", "FAILMODE", failuremode_table);
132 /* hidden properties */
133 zprop_register_hidden(ZPOOL_PROP_NAME, "name", PROP_TYPE_STRING,
134 PROP_READONLY, ZFS_TYPE_POOL, "NAME");
135 zprop_register_hidden(ZPOOL_PROP_MAXBLOCKSIZE, "maxblocksize",
136 PROP_TYPE_NUMBER, PROP_READONLY, ZFS_TYPE_POOL, "MAXBLOCKSIZE");
140 * Given a property name and its type, returns the corresponding property ID.
142 zpool_prop_t
143 zpool_name_to_prop(const char *propname)
145 return (zprop_name_to_prop(propname, ZFS_TYPE_POOL));
149 * Given a pool property ID, returns the corresponding name.
150 * Assuming the pool propety ID is valid.
152 const char *
153 zpool_prop_to_name(zpool_prop_t prop)
155 return (zpool_prop_table[prop].pd_name);
158 zprop_type_t
159 zpool_prop_get_type(zpool_prop_t prop)
161 return (zpool_prop_table[prop].pd_proptype);
164 boolean_t
165 zpool_prop_readonly(zpool_prop_t prop)
167 return (zpool_prop_table[prop].pd_attr == PROP_READONLY);
170 const char *
171 zpool_prop_default_string(zpool_prop_t prop)
173 return (zpool_prop_table[prop].pd_strdefault);
176 uint64_t
177 zpool_prop_default_numeric(zpool_prop_t prop)
179 return (zpool_prop_table[prop].pd_numdefault);
183 * Returns true if this is a valid feature@ property.
185 boolean_t
186 zpool_prop_feature(const char *name)
188 static const char *prefix = "feature@";
189 return (strncmp(name, prefix, strlen(prefix)) == 0);
193 * Returns true if this is a valid unsupported@ property.
195 boolean_t
196 zpool_prop_unsupported(const char *name)
198 static const char *prefix = "unsupported@";
199 return (strncmp(name, prefix, strlen(prefix)) == 0);
203 zpool_prop_string_to_index(zpool_prop_t prop, const char *string,
204 uint64_t *index)
206 return (zprop_string_to_index(prop, string, index, ZFS_TYPE_POOL));
210 zpool_prop_index_to_string(zpool_prop_t prop, uint64_t index,
211 const char **string)
213 return (zprop_index_to_string(prop, index, string, ZFS_TYPE_POOL));
216 uint64_t
217 zpool_prop_random_value(zpool_prop_t prop, uint64_t seed)
219 return (zprop_random_value(prop, seed, ZFS_TYPE_POOL));
222 #ifndef _KERNEL
224 const char *
225 zpool_prop_values(zpool_prop_t prop)
227 return (zpool_prop_table[prop].pd_values);
230 const char *
231 zpool_prop_column_name(zpool_prop_t prop)
233 return (zpool_prop_table[prop].pd_colname);
236 boolean_t
237 zpool_prop_align_right(zpool_prop_t prop)
239 return (zpool_prop_table[prop].pd_rightalign);
241 #endif