1fa9e4066Sahrens /* 2fa9e4066Sahrens * CDDL HEADER START 3fa9e4066Sahrens * 4fa9e4066Sahrens * The contents of this file are subject to the terms of the 5906d120cSlling * Common Development and Distribution License (the "License"). 6906d120cSlling * You may not use this file except in compliance with the License. 7fa9e4066Sahrens * 8fa9e4066Sahrens * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9fa9e4066Sahrens * or http://www.opensolaris.org/os/licensing. 10fa9e4066Sahrens * See the License for the specific language governing permissions 11fa9e4066Sahrens * and limitations under the License. 12fa9e4066Sahrens * 13fa9e4066Sahrens * When distributing Covered Code, include this CDDL HEADER in each 14fa9e4066Sahrens * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15fa9e4066Sahrens * If applicable, add the following below this CDDL HEADER, with the 16fa9e4066Sahrens * fields enclosed by brackets "[]" replaced with your own identifying 17fa9e4066Sahrens * information: Portions Copyright [yyyy] [name of copyright owner] 18fa9e4066Sahrens * 19fa9e4066Sahrens * CDDL HEADER END 20fa9e4066Sahrens */ 21fa9e4066Sahrens /* 2214843421SMatthew Ahrens * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23fa9e4066Sahrens * Use is subject to license terms. 24fa9e4066Sahrens */ 25fa9e4066Sahrens 26fa9e4066Sahrens #include <sys/zio.h> 27fa9e4066Sahrens #include <sys/spa.h> 28de8267e0Stimh #include <sys/u8_textprep.h> 29fa9e4066Sahrens #include <sys/zfs_acl.h> 30fa9e4066Sahrens #include <sys/zfs_ioctl.h> 31e7437265Sahrens #include <sys/zfs_znode.h> 32fa9e4066Sahrens 33fa9e4066Sahrens #include "zfs_prop.h" 34ecd6cf80Smarks #include "zfs_deleg.h" 35fa9e4066Sahrens 36fa9e4066Sahrens #if defined(_KERNEL) 37fa9e4066Sahrens #include <sys/systm.h> 38fa9e4066Sahrens #else 39fa9e4066Sahrens #include <stdlib.h> 40fa9e4066Sahrens #include <string.h> 41fa9e4066Sahrens #include <ctype.h> 42fa9e4066Sahrens #endif 43fa9e4066Sahrens 44990b4856Slling static zprop_desc_t zfs_prop_table[ZFS_NUM_PROPS]; 45fa9e4066Sahrens 4614843421SMatthew Ahrens /* Note this is indexed by zfs_userquota_prop_t, keep the order the same */ 4714843421SMatthew Ahrens const char *zfs_userquota_prop_prefixes[] = { 4814843421SMatthew Ahrens "userused@", 4914843421SMatthew Ahrens "userquota@", 5014843421SMatthew Ahrens "groupused@", 5114843421SMatthew Ahrens "groupquota@" 5214843421SMatthew Ahrens }; 5314843421SMatthew Ahrens 54990b4856Slling zprop_desc_t * 55990b4856Slling zfs_prop_get_table(void) 5691ebeef5Sahrens { 57990b4856Slling return (zfs_prop_table); 5891ebeef5Sahrens } 5991ebeef5Sahrens 6091ebeef5Sahrens void 6191ebeef5Sahrens zfs_prop_init(void) 6291ebeef5Sahrens { 63990b4856Slling static zprop_index_t checksum_table[] = { 6491ebeef5Sahrens { "on", ZIO_CHECKSUM_ON }, 6591ebeef5Sahrens { "off", ZIO_CHECKSUM_OFF }, 6691ebeef5Sahrens { "fletcher2", ZIO_CHECKSUM_FLETCHER_2 }, 6791ebeef5Sahrens { "fletcher4", ZIO_CHECKSUM_FLETCHER_4 }, 6891ebeef5Sahrens { "sha256", ZIO_CHECKSUM_SHA256 }, 6991ebeef5Sahrens { NULL } 70fa9e4066Sahrens }; 71fa9e4066Sahrens 72990b4856Slling static zprop_index_t compress_table[] = { 7391ebeef5Sahrens { "on", ZIO_COMPRESS_ON }, 7491ebeef5Sahrens { "off", ZIO_COMPRESS_OFF }, 7591ebeef5Sahrens { "lzjb", ZIO_COMPRESS_LZJB }, 7691ebeef5Sahrens { "gzip", ZIO_COMPRESS_GZIP_6 }, /* gzip default */ 7791ebeef5Sahrens { "gzip-1", ZIO_COMPRESS_GZIP_1 }, 7891ebeef5Sahrens { "gzip-2", ZIO_COMPRESS_GZIP_2 }, 7991ebeef5Sahrens { "gzip-3", ZIO_COMPRESS_GZIP_3 }, 8091ebeef5Sahrens { "gzip-4", ZIO_COMPRESS_GZIP_4 }, 8191ebeef5Sahrens { "gzip-5", ZIO_COMPRESS_GZIP_5 }, 8291ebeef5Sahrens { "gzip-6", ZIO_COMPRESS_GZIP_6 }, 8391ebeef5Sahrens { "gzip-7", ZIO_COMPRESS_GZIP_7 }, 8491ebeef5Sahrens { "gzip-8", ZIO_COMPRESS_GZIP_8 }, 8591ebeef5Sahrens { "gzip-9", ZIO_COMPRESS_GZIP_9 }, 8691ebeef5Sahrens { NULL } 8791ebeef5Sahrens }; 8891ebeef5Sahrens 89990b4856Slling static zprop_index_t snapdir_table[] = { 9091ebeef5Sahrens { "hidden", ZFS_SNAPDIR_HIDDEN }, 9191ebeef5Sahrens { "visible", ZFS_SNAPDIR_VISIBLE }, 9291ebeef5Sahrens { NULL } 9391ebeef5Sahrens }; 9491ebeef5Sahrens 95990b4856Slling static zprop_index_t acl_mode_table[] = { 9691ebeef5Sahrens { "discard", ZFS_ACL_DISCARD }, 9791ebeef5Sahrens { "groupmask", ZFS_ACL_GROUPMASK }, 9891ebeef5Sahrens { "passthrough", ZFS_ACL_PASSTHROUGH }, 9991ebeef5Sahrens { NULL } 10091ebeef5Sahrens }; 10191ebeef5Sahrens 102990b4856Slling static zprop_index_t acl_inherit_table[] = { 10391ebeef5Sahrens { "discard", ZFS_ACL_DISCARD }, 10491ebeef5Sahrens { "noallow", ZFS_ACL_NOALLOW }, 105b3d141f8Smarks { "restricted", ZFS_ACL_RESTRICTED }, 10691ebeef5Sahrens { "passthrough", ZFS_ACL_PASSTHROUGH }, 107b3d141f8Smarks { "secure", ZFS_ACL_RESTRICTED }, /* bkwrd compatability */ 108d0f3f37eSMark Shellenbaum { "passthrough-x", ZFS_ACL_PASSTHROUGH_X }, 10991ebeef5Sahrens { NULL } 11091ebeef5Sahrens }; 11191ebeef5Sahrens 112da6c28aaSamw static zprop_index_t case_table[] = { 113da6c28aaSamw { "sensitive", ZFS_CASE_SENSITIVE }, 114da6c28aaSamw { "insensitive", ZFS_CASE_INSENSITIVE }, 115da6c28aaSamw { "mixed", ZFS_CASE_MIXED }, 116da6c28aaSamw { NULL } 117da6c28aaSamw }; 118da6c28aaSamw 119990b4856Slling static zprop_index_t copies_table[] = { 12091ebeef5Sahrens { "1", 1 }, 12191ebeef5Sahrens { "2", 2 }, 12291ebeef5Sahrens { "3", 3 }, 12391ebeef5Sahrens { NULL } 12491ebeef5Sahrens }; 12591ebeef5Sahrens 126de8267e0Stimh /* 127de8267e0Stimh * Use the unique flags we have to send to u8_strcmp() and/or 128de8267e0Stimh * u8_textprep() to represent the various normalization property 129de8267e0Stimh * values. 130de8267e0Stimh */ 131da6c28aaSamw static zprop_index_t normalize_table[] = { 132de8267e0Stimh { "none", 0 }, 133de8267e0Stimh { "formD", U8_TEXTPREP_NFD }, 134de8267e0Stimh { "formKC", U8_TEXTPREP_NFKC }, 135de8267e0Stimh { "formC", U8_TEXTPREP_NFC }, 136de8267e0Stimh { "formKD", U8_TEXTPREP_NFKD }, 137da6c28aaSamw { NULL } 138da6c28aaSamw }; 139da6c28aaSamw 140990b4856Slling static zprop_index_t version_table[] = { 14191ebeef5Sahrens { "1", 1 }, 14291ebeef5Sahrens { "2", 2 }, 143da6c28aaSamw { "3", 3 }, 14414843421SMatthew Ahrens { "4", 4 }, 14591ebeef5Sahrens { "current", ZPL_VERSION }, 14691ebeef5Sahrens { NULL } 14791ebeef5Sahrens }; 14891ebeef5Sahrens 149990b4856Slling static zprop_index_t boolean_table[] = { 150e45ce728Sahrens { "off", 0 }, 151e45ce728Sahrens { "on", 1 }, 152e45ce728Sahrens { NULL } 153e45ce728Sahrens }; 154e45ce728Sahrens 155*e09fa4daSNeil Perrin static zprop_index_t logbias_table[] = { 156*e09fa4daSNeil Perrin { "latency", ZFS_LOGBIAS_LATENCY }, 157*e09fa4daSNeil Perrin { "throughput", ZFS_LOGBIAS_THROUGHPUT }, 158*e09fa4daSNeil Perrin { NULL } 159*e09fa4daSNeil Perrin }; 160*e09fa4daSNeil Perrin 161a227b7f4Shs24103 static zprop_index_t canmount_table[] = { 162a227b7f4Shs24103 { "off", ZFS_CANMOUNT_OFF }, 163a227b7f4Shs24103 { "on", ZFS_CANMOUNT_ON }, 164a227b7f4Shs24103 { "noauto", ZFS_CANMOUNT_NOAUTO }, 165a227b7f4Shs24103 { NULL } 166a227b7f4Shs24103 }; 167a227b7f4Shs24103 1683baa08fcSek110237 static zprop_index_t cache_table[] = { 1693baa08fcSek110237 { "none", ZFS_CACHE_NONE }, 1703baa08fcSek110237 { "metadata", ZFS_CACHE_METADATA }, 1713baa08fcSek110237 { "all", ZFS_CACHE_ALL }, 1723baa08fcSek110237 { NULL } 1733baa08fcSek110237 }; 1743baa08fcSek110237 17591ebeef5Sahrens /* inherit index properties */ 17691ebeef5Sahrens register_index(ZFS_PROP_CHECKSUM, "checksum", ZIO_CHECKSUM_DEFAULT, 177e45ce728Sahrens PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 17891ebeef5Sahrens "on | off | fletcher2 | fletcher4 | sha256", "CHECKSUM", 17991ebeef5Sahrens checksum_table); 18091ebeef5Sahrens register_index(ZFS_PROP_COMPRESSION, "compression", 181e45ce728Sahrens ZIO_COMPRESS_DEFAULT, PROP_INHERIT, 182e45ce728Sahrens ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 18391ebeef5Sahrens "on | off | lzjb | gzip | gzip-[1-9]", "COMPRESS", compress_table); 18491ebeef5Sahrens register_index(ZFS_PROP_SNAPDIR, "snapdir", ZFS_SNAPDIR_HIDDEN, 185e45ce728Sahrens PROP_INHERIT, ZFS_TYPE_FILESYSTEM, 186e45ce728Sahrens "hidden | visible", "SNAPDIR", snapdir_table); 18791ebeef5Sahrens register_index(ZFS_PROP_ACLMODE, "aclmode", ZFS_ACL_GROUPMASK, 188e45ce728Sahrens PROP_INHERIT, ZFS_TYPE_FILESYSTEM, 189990b4856Slling "discard | groupmask | passthrough", "ACLMODE", acl_mode_table); 190b3d141f8Smarks register_index(ZFS_PROP_ACLINHERIT, "aclinherit", ZFS_ACL_RESTRICTED, 191e45ce728Sahrens PROP_INHERIT, ZFS_TYPE_FILESYSTEM, 192d0f3f37eSMark Shellenbaum "discard | noallow | restricted | passthrough | passthrough-x", 193b3d141f8Smarks "ACLINHERIT", acl_inherit_table); 19491ebeef5Sahrens register_index(ZFS_PROP_COPIES, "copies", 1, 195e45ce728Sahrens PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 19691ebeef5Sahrens "1 | 2 | 3", "COPIES", copies_table); 1973baa08fcSek110237 register_index(ZFS_PROP_PRIMARYCACHE, "primarycache", 1983baa08fcSek110237 ZFS_CACHE_ALL, PROP_INHERIT, 1993baa08fcSek110237 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT | ZFS_TYPE_VOLUME, 2003baa08fcSek110237 "all | none | metadata", "PRIMARYCACHE", cache_table); 2013baa08fcSek110237 register_index(ZFS_PROP_SECONDARYCACHE, "secondarycache", 2023baa08fcSek110237 ZFS_CACHE_ALL, PROP_INHERIT, 2033baa08fcSek110237 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT | ZFS_TYPE_VOLUME, 2043baa08fcSek110237 "all | none | metadata", "SECONDARYCACHE", cache_table); 205*e09fa4daSNeil Perrin register_index(ZFS_PROP_LOGBIAS, "logbias", ZFS_LOGBIAS_LATENCY, 206*e09fa4daSNeil Perrin PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 207*e09fa4daSNeil Perrin "latency | throughput", "LOGBIAS", logbias_table); 208e45ce728Sahrens 209e45ce728Sahrens /* inherit index (boolean) properties */ 210e45ce728Sahrens register_index(ZFS_PROP_ATIME, "atime", 1, PROP_INHERIT, 211e45ce728Sahrens ZFS_TYPE_FILESYSTEM, "on | off", "ATIME", boolean_table); 212e45ce728Sahrens register_index(ZFS_PROP_DEVICES, "devices", 1, PROP_INHERIT, 213e45ce728Sahrens ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "DEVICES", 214e45ce728Sahrens boolean_table); 215e45ce728Sahrens register_index(ZFS_PROP_EXEC, "exec", 1, PROP_INHERIT, 216e45ce728Sahrens ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "EXEC", 217e45ce728Sahrens boolean_table); 218e45ce728Sahrens register_index(ZFS_PROP_SETUID, "setuid", 1, PROP_INHERIT, 219e45ce728Sahrens ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "SETUID", 220e45ce728Sahrens boolean_table); 221e45ce728Sahrens register_index(ZFS_PROP_READONLY, "readonly", 0, PROP_INHERIT, 222e45ce728Sahrens ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "on | off", "RDONLY", 223e45ce728Sahrens boolean_table); 224e45ce728Sahrens register_index(ZFS_PROP_ZONED, "zoned", 0, PROP_INHERIT, 225e45ce728Sahrens ZFS_TYPE_FILESYSTEM, "on | off", "ZONED", boolean_table); 226e45ce728Sahrens register_index(ZFS_PROP_XATTR, "xattr", 1, PROP_INHERIT, 227e45ce728Sahrens ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "XATTR", 228e45ce728Sahrens boolean_table); 229da6c28aaSamw register_index(ZFS_PROP_VSCAN, "vscan", 0, PROP_INHERIT, 230da6c28aaSamw ZFS_TYPE_FILESYSTEM, "on | off", "VSCAN", 231da6c28aaSamw boolean_table); 232da6c28aaSamw register_index(ZFS_PROP_NBMAND, "nbmand", 0, PROP_INHERIT, 233da6c28aaSamw ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "NBMAND", 234da6c28aaSamw boolean_table); 235e45ce728Sahrens 236e45ce728Sahrens /* default index properties */ 237e45ce728Sahrens register_index(ZFS_PROP_VERSION, "version", 0, PROP_DEFAULT, 23891ebeef5Sahrens ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, 23914843421SMatthew Ahrens "1 | 2 | 3 | 4 | current", "VERSION", version_table); 240a227b7f4Shs24103 register_index(ZFS_PROP_CANMOUNT, "canmount", ZFS_CANMOUNT_ON, 241a227b7f4Shs24103 PROP_DEFAULT, ZFS_TYPE_FILESYSTEM, "on | off | noauto", 242a227b7f4Shs24103 "CANMOUNT", canmount_table); 243e45ce728Sahrens 244e45ce728Sahrens /* readonly index (boolean) properties */ 245e45ce728Sahrens register_index(ZFS_PROP_MOUNTED, "mounted", 0, PROP_READONLY, 246990b4856Slling ZFS_TYPE_FILESYSTEM, "yes | no", "MOUNTED", boolean_table); 247842727c2SChris Kirby register_index(ZFS_PROP_DEFER_DESTROY, "defer_destroy", 0, 248842727c2SChris Kirby PROP_READONLY, ZFS_TYPE_SNAPSHOT, "yes | no", "DEFER_DESTROY", 249842727c2SChris Kirby boolean_table); 250e45ce728Sahrens 251da6c28aaSamw /* set once index properties */ 252de8267e0Stimh register_index(ZFS_PROP_NORMALIZE, "normalization", 0, 253da6c28aaSamw PROP_ONETIME, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, 254da6c28aaSamw "none | formC | formD | formKC | formKD", "NORMALIZATION", 255da6c28aaSamw normalize_table); 256da6c28aaSamw register_index(ZFS_PROP_CASE, "casesensitivity", ZFS_CASE_SENSITIVE, 257da6c28aaSamw PROP_ONETIME, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, 258da6c28aaSamw "sensitive | insensitive | mixed", "CASE", case_table); 259da6c28aaSamw 260da6c28aaSamw /* set once index (boolean) properties */ 261da6c28aaSamw register_index(ZFS_PROP_UTF8ONLY, "utf8only", 0, PROP_ONETIME, 262da6c28aaSamw ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, 263da6c28aaSamw "on | off", "UTF8ONLY", boolean_table); 264da6c28aaSamw 26591ebeef5Sahrens /* string properties */ 26691ebeef5Sahrens register_string(ZFS_PROP_ORIGIN, "origin", NULL, PROP_READONLY, 26791ebeef5Sahrens ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<snapshot>", "ORIGIN"); 26891ebeef5Sahrens register_string(ZFS_PROP_MOUNTPOINT, "mountpoint", "/", PROP_INHERIT, 26991ebeef5Sahrens ZFS_TYPE_FILESYSTEM, "<path> | legacy | none", "MOUNTPOINT"); 27091ebeef5Sahrens register_string(ZFS_PROP_SHARENFS, "sharenfs", "off", PROP_INHERIT, 27191ebeef5Sahrens ZFS_TYPE_FILESYSTEM, "on | off | share(1M) options", "SHARENFS"); 27291ebeef5Sahrens register_string(ZFS_PROP_SHAREISCSI, "shareiscsi", "off", PROP_INHERIT, 273990b4856Slling ZFS_TYPE_DATASET, "on | off | type=<type>", "SHAREISCSI"); 27491ebeef5Sahrens register_string(ZFS_PROP_TYPE, "type", NULL, PROP_READONLY, 275990b4856Slling ZFS_TYPE_DATASET, "filesystem | volume | snapshot", "TYPE"); 276da6c28aaSamw register_string(ZFS_PROP_SHARESMB, "sharesmb", "off", PROP_INHERIT, 277da6c28aaSamw ZFS_TYPE_FILESYSTEM, "on | off | sharemgr(1M) options", "SHARESMB"); 27891ebeef5Sahrens 27991ebeef5Sahrens /* readonly number properties */ 28091ebeef5Sahrens register_number(ZFS_PROP_USED, "used", 0, PROP_READONLY, 281990b4856Slling ZFS_TYPE_DATASET, "<size>", "USED"); 28291ebeef5Sahrens register_number(ZFS_PROP_AVAILABLE, "available", 0, PROP_READONLY, 283990b4856Slling ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "AVAIL"); 28491ebeef5Sahrens register_number(ZFS_PROP_REFERENCED, "referenced", 0, PROP_READONLY, 285990b4856Slling ZFS_TYPE_DATASET, "<size>", "REFER"); 28691ebeef5Sahrens register_number(ZFS_PROP_COMPRESSRATIO, "compressratio", 0, 287990b4856Slling PROP_READONLY, ZFS_TYPE_DATASET, 28891ebeef5Sahrens "<1.00x or higher if compressed>", "RATIO"); 28991ebeef5Sahrens register_number(ZFS_PROP_VOLBLOCKSIZE, "volblocksize", 8192, 290da6c28aaSamw PROP_ONETIME, 291da6c28aaSamw ZFS_TYPE_VOLUME, "512 to 128k, power of 2", "VOLBLOCK"); 29274e7dc98SMatthew Ahrens register_number(ZFS_PROP_USEDSNAP, "usedbysnapshots", 0, PROP_READONLY, 29374e7dc98SMatthew Ahrens ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "USEDSNAP"); 29474e7dc98SMatthew Ahrens register_number(ZFS_PROP_USEDDS, "usedbydataset", 0, PROP_READONLY, 29574e7dc98SMatthew Ahrens ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "USEDDS"); 29674e7dc98SMatthew Ahrens register_number(ZFS_PROP_USEDCHILD, "usedbychildren", 0, PROP_READONLY, 29774e7dc98SMatthew Ahrens ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "USEDCHILD"); 29874e7dc98SMatthew Ahrens register_number(ZFS_PROP_USEDREFRESERV, "usedbyrefreservation", 0, 29974e7dc98SMatthew Ahrens PROP_READONLY, 30074e7dc98SMatthew Ahrens ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "USEDREFRESERV"); 301842727c2SChris Kirby register_number(ZFS_PROP_USERREFS, "userrefs", 0, PROP_READONLY, 302842727c2SChris Kirby ZFS_TYPE_SNAPSHOT, "<count>", "USERREFS"); 30391ebeef5Sahrens 30491ebeef5Sahrens /* default number properties */ 30591ebeef5Sahrens register_number(ZFS_PROP_QUOTA, "quota", 0, PROP_DEFAULT, 30691ebeef5Sahrens ZFS_TYPE_FILESYSTEM, "<size> | none", "QUOTA"); 30791ebeef5Sahrens register_number(ZFS_PROP_RESERVATION, "reservation", 0, PROP_DEFAULT, 30891ebeef5Sahrens ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size> | none", "RESERV"); 30991ebeef5Sahrens register_number(ZFS_PROP_VOLSIZE, "volsize", 0, PROP_DEFAULT, 31091ebeef5Sahrens ZFS_TYPE_VOLUME, "<size>", "VOLSIZE"); 311a9799022Sck153898 register_number(ZFS_PROP_REFQUOTA, "refquota", 0, PROP_DEFAULT, 312a9799022Sck153898 ZFS_TYPE_FILESYSTEM, "<size> | none", "REFQUOTA"); 313a9799022Sck153898 register_number(ZFS_PROP_REFRESERVATION, "refreservation", 0, 314a9799022Sck153898 PROP_DEFAULT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 315a9799022Sck153898 "<size> | none", "REFRESERV"); 31691ebeef5Sahrens 31791ebeef5Sahrens /* inherit number properties */ 31891ebeef5Sahrens register_number(ZFS_PROP_RECORDSIZE, "recordsize", SPA_MAXBLOCKSIZE, 31991ebeef5Sahrens PROP_INHERIT, 32091ebeef5Sahrens ZFS_TYPE_FILESYSTEM, "512 to 128k, power of 2", "RECSIZE"); 32191ebeef5Sahrens 32291ebeef5Sahrens /* hidden properties */ 32391ebeef5Sahrens register_hidden(ZFS_PROP_CREATETXG, "createtxg", PROP_TYPE_NUMBER, 324990b4856Slling PROP_READONLY, ZFS_TYPE_DATASET, NULL); 32591ebeef5Sahrens register_hidden(ZFS_PROP_NUMCLONES, "numclones", PROP_TYPE_NUMBER, 32691ebeef5Sahrens PROP_READONLY, ZFS_TYPE_SNAPSHOT, NULL); 32791ebeef5Sahrens register_hidden(ZFS_PROP_NAME, "name", PROP_TYPE_STRING, 328990b4856Slling PROP_READONLY, ZFS_TYPE_DATASET, "NAME"); 32991ebeef5Sahrens register_hidden(ZFS_PROP_ISCSIOPTIONS, "iscsioptions", PROP_TYPE_STRING, 33091ebeef5Sahrens PROP_INHERIT, ZFS_TYPE_VOLUME, "ISCSIOPTIONS"); 331478ed9adSEric Taylor register_hidden(ZFS_PROP_STMF_SHAREINFO, "stmf_sbd_lu", 332478ed9adSEric Taylor PROP_TYPE_STRING, PROP_INHERIT, ZFS_TYPE_VOLUME, 333478ed9adSEric Taylor "STMF_SBD_LU"); 334c5904d13Seschrock register_hidden(ZFS_PROP_GUID, "guid", PROP_TYPE_NUMBER, PROP_READONLY, 335c5904d13Seschrock ZFS_TYPE_DATASET, "GUID"); 33614843421SMatthew Ahrens register_hidden(ZFS_PROP_USERACCOUNTING, "useraccounting", 33714843421SMatthew Ahrens PROP_TYPE_NUMBER, PROP_READONLY, ZFS_TYPE_DATASET, NULL); 33891ebeef5Sahrens 33991ebeef5Sahrens /* oddball properties */ 34091ebeef5Sahrens register_impl(ZFS_PROP_CREATION, "creation", PROP_TYPE_NUMBER, 0, NULL, 341990b4856Slling PROP_READONLY, ZFS_TYPE_DATASET, 34291ebeef5Sahrens "<date>", "CREATION", B_FALSE, B_TRUE, NULL); 34391ebeef5Sahrens } 34491ebeef5Sahrens 345b1b8ab34Slling boolean_t 346990b4856Slling zfs_prop_delegatable(zfs_prop_t prop) 347b1b8ab34Slling { 348990b4856Slling zprop_desc_t *pd = &zfs_prop_table[prop]; 349990b4856Slling return (pd->pd_attr != PROP_READONLY); 350b1b8ab34Slling } 351b1b8ab34Slling 352b1b8ab34Slling /* 353b1b8ab34Slling * Given a zfs dataset property name, returns the corresponding property ID. 354fa9e4066Sahrens */ 355fa9e4066Sahrens zfs_prop_t 356fa9e4066Sahrens zfs_name_to_prop(const char *propname) 357fa9e4066Sahrens { 358990b4856Slling return (zprop_name_to_prop(propname, ZFS_TYPE_DATASET)); 359b1b8ab34Slling } 360fa9e4066Sahrens 361fa9e4066Sahrens /* 362e9dbad6fSeschrock * For user property names, we allow all lowercase alphanumeric characters, plus 363e9dbad6fSeschrock * a few useful punctuation characters. 364e9dbad6fSeschrock */ 365e9dbad6fSeschrock static int 366e9dbad6fSeschrock valid_char(char c) 367e9dbad6fSeschrock { 368e9dbad6fSeschrock return ((c >= 'a' && c <= 'z') || 369e9dbad6fSeschrock (c >= '0' && c <= '9') || 370e9dbad6fSeschrock c == '-' || c == '_' || c == '.' || c == ':'); 371e9dbad6fSeschrock } 372e9dbad6fSeschrock 373e9dbad6fSeschrock /* 374e9dbad6fSeschrock * Returns true if this is a valid user-defined property (one with a ':'). 375e9dbad6fSeschrock */ 376e9dbad6fSeschrock boolean_t 377e9dbad6fSeschrock zfs_prop_user(const char *name) 378e9dbad6fSeschrock { 379e9dbad6fSeschrock int i; 380e9dbad6fSeschrock char c; 381e9dbad6fSeschrock boolean_t foundsep = B_FALSE; 382e9dbad6fSeschrock 383e9dbad6fSeschrock for (i = 0; i < strlen(name); i++) { 384e9dbad6fSeschrock c = name[i]; 385e9dbad6fSeschrock if (!valid_char(c)) 386e9dbad6fSeschrock return (B_FALSE); 387e9dbad6fSeschrock if (c == ':') 388e9dbad6fSeschrock foundsep = B_TRUE; 389e9dbad6fSeschrock } 390e9dbad6fSeschrock 391e9dbad6fSeschrock if (!foundsep) 392e9dbad6fSeschrock return (B_FALSE); 393e9dbad6fSeschrock 394e9dbad6fSeschrock return (B_TRUE); 395e9dbad6fSeschrock } 396e9dbad6fSeschrock 397e9dbad6fSeschrock /* 39814843421SMatthew Ahrens * Returns true if this is a valid userspace-type property (one with a '@'). 39914843421SMatthew Ahrens * Note that after the @, any character is valid (eg, another @, for SID 40014843421SMatthew Ahrens * user@domain). 40114843421SMatthew Ahrens */ 40214843421SMatthew Ahrens boolean_t 40314843421SMatthew Ahrens zfs_prop_userquota(const char *name) 40414843421SMatthew Ahrens { 40514843421SMatthew Ahrens zfs_userquota_prop_t prop; 40614843421SMatthew Ahrens 40714843421SMatthew Ahrens for (prop = 0; prop < ZFS_NUM_USERQUOTA_PROPS; prop++) { 40814843421SMatthew Ahrens if (strncmp(name, zfs_userquota_prop_prefixes[prop], 40914843421SMatthew Ahrens strlen(zfs_userquota_prop_prefixes[prop])) == 0) { 41014843421SMatthew Ahrens return (B_TRUE); 41114843421SMatthew Ahrens } 41214843421SMatthew Ahrens } 41314843421SMatthew Ahrens 41414843421SMatthew Ahrens return (B_FALSE); 41514843421SMatthew Ahrens } 41614843421SMatthew Ahrens 41714843421SMatthew Ahrens /* 418990b4856Slling * Tables of index types, plus functions to convert between the user view 419990b4856Slling * (strings) and internal representation (uint64_t). 420fa9e4066Sahrens */ 421990b4856Slling int 422990b4856Slling zfs_prop_string_to_index(zfs_prop_t prop, const char *string, uint64_t *index) 423fa9e4066Sahrens { 424990b4856Slling return (zprop_string_to_index(prop, string, index, ZFS_TYPE_DATASET)); 425990b4856Slling } 426990b4856Slling 427990b4856Slling int 428990b4856Slling zfs_prop_index_to_string(zfs_prop_t prop, uint64_t index, const char **string) 429990b4856Slling { 430990b4856Slling return (zprop_index_to_string(prop, index, string, ZFS_TYPE_DATASET)); 431990b4856Slling } 432990b4856Slling 433990b4856Slling /* 434990b4856Slling * Returns TRUE if the property applies to any of the given dataset types. 435990b4856Slling */ 4364853e976Sgw25295 boolean_t 437990b4856Slling zfs_prop_valid_for_type(int prop, zfs_type_t types) 438990b4856Slling { 439990b4856Slling return (zprop_valid_for_type(prop, types)); 440990b4856Slling } 441990b4856Slling 442990b4856Slling zprop_type_t 443990b4856Slling zfs_prop_get_type(zfs_prop_t prop) 444990b4856Slling { 445990b4856Slling return (zfs_prop_table[prop].pd_proptype); 446990b4856Slling } 447990b4856Slling 448990b4856Slling /* 449990b4856Slling * Returns TRUE if the property is readonly. 450990b4856Slling */ 451990b4856Slling boolean_t 452990b4856Slling zfs_prop_readonly(zfs_prop_t prop) 453990b4856Slling { 454da6c28aaSamw return (zfs_prop_table[prop].pd_attr == PROP_READONLY || 455da6c28aaSamw zfs_prop_table[prop].pd_attr == PROP_ONETIME); 456da6c28aaSamw } 457da6c28aaSamw 458da6c28aaSamw /* 459da6c28aaSamw * Returns TRUE if the property is only allowed to be set once. 460da6c28aaSamw */ 461da6c28aaSamw boolean_t 462da6c28aaSamw zfs_prop_setonce(zfs_prop_t prop) 463da6c28aaSamw { 464da6c28aaSamw return (zfs_prop_table[prop].pd_attr == PROP_ONETIME); 465fa9e4066Sahrens } 466fa9e4066Sahrens 4673d7072f8Seschrock const char * 468990b4856Slling zfs_prop_default_string(zfs_prop_t prop) 4693d7072f8Seschrock { 4703d7072f8Seschrock return (zfs_prop_table[prop].pd_strdefault); 4713d7072f8Seschrock } 4723d7072f8Seschrock 473fa9e4066Sahrens uint64_t 474fa9e4066Sahrens zfs_prop_default_numeric(zfs_prop_t prop) 475fa9e4066Sahrens { 476fa9e4066Sahrens return (zfs_prop_table[prop].pd_numdefault); 477fa9e4066Sahrens } 478fa9e4066Sahrens 479fa9e4066Sahrens /* 480b1b8ab34Slling * Given a dataset property ID, returns the corresponding name. 4813d7072f8Seschrock * Assuming the zfs dataset property ID is valid. 482fa9e4066Sahrens */ 483fa9e4066Sahrens const char * 484fa9e4066Sahrens zfs_prop_to_name(zfs_prop_t prop) 485fa9e4066Sahrens { 486fa9e4066Sahrens return (zfs_prop_table[prop].pd_name); 487fa9e4066Sahrens } 488fa9e4066Sahrens 489fa9e4066Sahrens /* 490fa9e4066Sahrens * Returns TRUE if the property is inheritable. 491fa9e4066Sahrens */ 492990b4856Slling boolean_t 493fa9e4066Sahrens zfs_prop_inheritable(zfs_prop_t prop) 494fa9e4066Sahrens { 495da6c28aaSamw return (zfs_prop_table[prop].pd_attr == PROP_INHERIT || 496da6c28aaSamw zfs_prop_table[prop].pd_attr == PROP_ONETIME); 497e9dbad6fSeschrock } 498e9dbad6fSeschrock 499acd76fe5Seschrock #ifndef _KERNEL 500acd76fe5Seschrock 501fa9e4066Sahrens /* 502fa9e4066Sahrens * Returns a string describing the set of acceptable values for the given 503b1b8ab34Slling * zfs property, or NULL if it cannot be set. 504fa9e4066Sahrens */ 505fa9e4066Sahrens const char * 506fa9e4066Sahrens zfs_prop_values(zfs_prop_t prop) 507fa9e4066Sahrens { 508fa9e4066Sahrens return (zfs_prop_table[prop].pd_values); 509fa9e4066Sahrens } 510fa9e4066Sahrens 511fa9e4066Sahrens /* 512fa9e4066Sahrens * Returns TRUE if this property is a string type. Note that index types 513fa9e4066Sahrens * (compression, checksum) are treated as strings in userland, even though they 514fa9e4066Sahrens * are stored numerically on disk. 515fa9e4066Sahrens */ 516fa9e4066Sahrens int 517fa9e4066Sahrens zfs_prop_is_string(zfs_prop_t prop) 518fa9e4066Sahrens { 51991ebeef5Sahrens return (zfs_prop_table[prop].pd_proptype == PROP_TYPE_STRING || 52091ebeef5Sahrens zfs_prop_table[prop].pd_proptype == PROP_TYPE_INDEX); 521fa9e4066Sahrens } 522fa9e4066Sahrens 523fa9e4066Sahrens /* 524fa9e4066Sahrens * Returns the column header for the given property. Used only in 525fa9e4066Sahrens * 'zfs list -o', but centralized here with the other property information. 526fa9e4066Sahrens */ 527fa9e4066Sahrens const char * 528fa9e4066Sahrens zfs_prop_column_name(zfs_prop_t prop) 529fa9e4066Sahrens { 530fa9e4066Sahrens return (zfs_prop_table[prop].pd_colname); 531fa9e4066Sahrens } 532fa9e4066Sahrens 533fa9e4066Sahrens /* 534e9dbad6fSeschrock * Returns whether the given property should be displayed right-justified for 535e9dbad6fSeschrock * 'zfs list'. 536fa9e4066Sahrens */ 537e9dbad6fSeschrock boolean_t 538e9dbad6fSeschrock zfs_prop_align_right(zfs_prop_t prop) 539fa9e4066Sahrens { 540e9dbad6fSeschrock return (zfs_prop_table[prop].pd_rightalign); 541fa9e4066Sahrens } 542da6c28aaSamw 543fa9e4066Sahrens #endif 544