/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at usr/src/OPENSOLARIS.LICENSE. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #pragma ident "%Z%%M% %I% %E% SMI" /* * Master property table. * * This table keeps track of all the properties supported by ZFS, and their * various attributes. Not all of these are needed by the kernel, and several * are only used by a single libzfs client. But having them here centralizes * all property information in one location. * * name The human-readable string representing this property * proptype Basic type (string, boolean, number) * default Default value for the property. Sadly, C only allows * you to initialize the first member of a union, so we * have two default members for each property. * attr Attributes (readonly, inheritable) for the property * types Valid dataset types to which this applies * values String describing acceptable values for the property * colname The column header for 'zfs list' * colfmt The column formatting for 'zfs list' * * This table must match the order of property types in libzfs.h. */ #include #include #include #include #include "zfs_prop.h" #if defined(_KERNEL) #include #else #include #include #include #endif typedef enum { prop_default, prop_readonly, prop_inherit } prop_attr_t; typedef struct { const char *pd_name; zfs_proptype_t pd_proptype; uint64_t pd_numdefault; const char *pd_strdefault; prop_attr_t pd_attr; int pd_types; const char *pd_values; const char *pd_colname; const char *pd_colfmt; } prop_desc_t; static prop_desc_t zfs_prop_table[ZFS_NPROP_ALL] = { { "type", prop_type_string, 0, NULL, prop_readonly, ZFS_TYPE_ANY, "filesystem | volume | snapshot", "TYPE", "%10s" }, { "creation", prop_type_number, 0, NULL, prop_readonly, ZFS_TYPE_ANY, "", "CREATION", "%-20s" }, { "used", prop_type_number, 0, NULL, prop_readonly, ZFS_TYPE_ANY, "", "USED", "%5s" }, { "available", prop_type_number, 0, NULL, prop_readonly, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "", "AVAIL", "%5s" }, { "referenced", prop_type_number, 0, NULL, prop_readonly, ZFS_TYPE_ANY, "", "REFER", "%5s" }, { "compressratio", prop_type_number, 0, NULL, prop_readonly, ZFS_TYPE_ANY, "<1.00x or higher if compressed>", "RATIO", "%5s" }, { "mounted", prop_type_boolean, 0, NULL, prop_readonly, ZFS_TYPE_FILESYSTEM, "yes | no | -", "MOUNTED", "%7s" }, { "origin", prop_type_string, 0, NULL, prop_readonly, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "", "ORIGIN", "%-20s" }, { "quota", prop_type_number, 0, NULL, prop_default, ZFS_TYPE_FILESYSTEM, " | none", "QUOTA", "%5s" }, { "reservation", prop_type_number, 0, NULL, prop_default, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, " | none", "RESERV", "%6s" }, { "volsize", prop_type_number, 0, NULL, prop_default, ZFS_TYPE_VOLUME, "", "VOLSIZE", "%7s" }, { "volblocksize", prop_type_number, 8192, NULL, prop_readonly, ZFS_TYPE_VOLUME, "512 to 128k, power of 2", "VOLBLOCK", "%8s" }, { "recordsize", prop_type_number, SPA_MAXBLOCKSIZE, NULL, prop_inherit, ZFS_TYPE_FILESYSTEM, "512 to 128k, power of 2", "RECSIZE", "%7s" }, { "mountpoint", prop_type_string, 0, "/", prop_inherit, ZFS_TYPE_FILESYSTEM, " | legacy | none", "MOUNTPOINT", "%-20s" }, { "sharenfs", prop_type_string, 0, "off", prop_inherit, ZFS_TYPE_FILESYSTEM, "on | off | share(1M) options", "SHARENFS", "%-15s" }, { "checksum", prop_type_index, ZIO_CHECKSUM_DEFAULT, "on", prop_inherit, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "on | off | fletcher2 | fletcher4 | sha256", "CHECKSUM", "%10s" }, { "compression", prop_type_index, ZIO_COMPRESS_DEFAULT, "off", prop_inherit, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "on | off | lzjb", "COMPRESS", "%8s" }, { "atime", prop_type_boolean, 1, NULL, prop_inherit, ZFS_TYPE_FILESYSTEM, "on | off", "ATIME", "%5s" }, { "devices", prop_type_boolean, 1, NULL, prop_inherit, ZFS_TYPE_FILESYSTEM, "on | off", "DEVICES", "%7s" }, { "exec", prop_type_boolean, 1, NULL, prop_inherit, ZFS_TYPE_FILESYSTEM, "on | off", "EXEC", "%4s" }, { "setuid", prop_type_boolean, 1, NULL, prop_inherit, ZFS_TYPE_FILESYSTEM, "on | off", "SETUID", "%6s" }, { "readonly", prop_type_boolean, 0, NULL, prop_inherit, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "on | off", "RDONLY", "%6s" }, { "zoned", prop_type_boolean, 0, NULL, prop_inherit, ZFS_TYPE_FILESYSTEM, "on | off", "ZONED", "%5s" }, { "snapdir", prop_type_index, ZFS_SNAPDIR_HIDDEN, "hidden", prop_inherit, ZFS_TYPE_FILESYSTEM, "hidden | visible", "SNAPDIR", "%7s" }, { "aclmode", prop_type_index, GROUPMASK, "groupmask", prop_inherit, ZFS_TYPE_FILESYSTEM, "discard | groupmask | passthrough", "ACLMODE", "%11s" }, { "aclinherit", prop_type_index, SECURE, "secure", prop_inherit, ZFS_TYPE_FILESYSTEM, "discard | noallow | secure | passthrough", "ACLINHERIT", "%11s" }, { "createtxg", prop_type_number, 0, NULL, prop_readonly, ZFS_TYPE_ANY, NULL, NULL, NULL}, { "name", prop_type_string, 0, NULL, prop_readonly, ZFS_TYPE_ANY, NULL, "NAME", "%-20s" }, }; zfs_proptype_t zfs_prop_get_type(zfs_prop_t prop) { return (zfs_prop_table[prop].pd_proptype); } static int propname_match(const char *p, int prop, size_t len) { const char *propname = zfs_prop_table[prop].pd_name; #ifndef _KERNEL const char *colname = zfs_prop_table[prop].pd_colname; int c; #endif #ifndef _KERNEL if (colname == NULL) return (0); #endif if (len == strlen(propname) && strncmp(p, propname, len) == 0) return (1); #ifndef _KERNEL if (len != strlen(colname)) return (0); for (c = 0; c < len; c++) if (p[c] != tolower(colname[c])) break; return (colname[c] == '\0'); #else return (0); #endif } /* * Given a property name, returns the corresponding property ID. */ zfs_prop_t zfs_name_to_prop(const char *propname) { int i; for (i = 0; i < ZFS_NPROP_ALL; i++) { if (propname_match(propname, i, strlen(propname))) return (i); } return (ZFS_PROP_INVAL); } /* * Return the default value for the given property. */ const char * zfs_prop_default_string(zfs_prop_t prop) { return (zfs_prop_table[prop].pd_strdefault); } uint64_t zfs_prop_default_numeric(zfs_prop_t prop) { return (zfs_prop_table[prop].pd_numdefault); } /* * Returns TRUE if the property is readonly. */ int zfs_prop_readonly(zfs_prop_t prop) { return (zfs_prop_table[prop].pd_attr == prop_readonly); } #ifndef _KERNEL /* * Given a property ID, returns the corresponding name. */ const char * zfs_prop_to_name(zfs_prop_t prop) { return (zfs_prop_table[prop].pd_name); } /* * Returns TRUE if the property is inheritable. */ int zfs_prop_inheritable(zfs_prop_t prop) { return (zfs_prop_table[prop].pd_attr == prop_inherit); } /* * Returns TRUE if the property applies to the given dataset types. */ int zfs_prop_valid_for_type(zfs_prop_t prop, int types) { return ((zfs_prop_table[prop].pd_types & types) != 0); } /* * Returns a string describing the set of acceptable values for the given * property, or NULL if it cannot be set. */ const char * zfs_prop_values(zfs_prop_t prop) { return (zfs_prop_table[prop].pd_values); } /* * Returns TRUE if this property is a string type. Note that index types * (compression, checksum) are treated as strings in userland, even though they * are stored numerically on disk. */ int zfs_prop_is_string(zfs_prop_t prop) { return (zfs_prop_table[prop].pd_proptype == prop_type_string || zfs_prop_table[prop].pd_proptype == prop_type_index); } /* * Returns the column header for the given property. Used only in * 'zfs list -o', but centralized here with the other property information. */ const char * zfs_prop_column_name(zfs_prop_t prop) { return (zfs_prop_table[prop].pd_colname); } /* * Returns the column formatting for the given property. Used only in * 'zfs list -o', but centralized here with the other property information. */ const char * zfs_prop_column_format(zfs_prop_t prop) { return (zfs_prop_table[prop].pd_colfmt); } /* * Given a comma-separated list of fields, fills in the specified array with a * list of properties. The keyword "all" can be used to specify all properties. * The 'count' parameter returns the number of matching properties placed into * the list. The 'props' parameter must point to an array of at least * ZFS_NPROP_ALL elements. */ int zfs_get_proplist(char *fields, zfs_prop_t *props, int max, int *count, char **badopt) { int i; size_t len; char *s, *p; *count = 0; /* * Check for the special value "all", which indicates all properties * should be displayed. */ if (strcmp(fields, "all") == 0) { if (max < ZFS_NPROP_VISIBLE) return (EOVERFLOW); for (i = 0; i < ZFS_NPROP_VISIBLE; i++) props[i] = i; *count = ZFS_NPROP_VISIBLE; return (0); } /* * It would be nice to use getsubopt() here, but the inclusion of column * aliases makes this more effort than it's worth. */ s = fields; while (*s != '\0') { if ((p = strchr(s, ',')) == NULL) { len = strlen(s); p = s + len; } else { len = p - s; } /* * Check for empty options. */ if (len == 0) { *badopt = ""; return (EINVAL); } /* * Check all regular property names. */ for (i = 0; i < ZFS_NPROP_ALL; i++) { if (propname_match(s, i, len)) break; } /* * If no column is specified, then return failure, setting * 'badopt' to point to the invalid option. */ if (i == ZFS_NPROP_ALL) { s[len] = '\0'; *badopt = s; return (EINVAL); } /* * If the user specified too many options (by using the same one * multiple times). return an error with 'badopt' set to NULL to * indicate this condition. */ if (*count == max) return (EOVERFLOW); props[*count] = i; *count += 1; s = p; if (*s == ',') s++; } /* * If no fields were specified, return an error. */ if (*count == 0) { *badopt = ""; return (EINVAL); } return (0); } #endif