1 /* 2 * CDDL HEADER START 3 * 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. 7 * 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. 12 * 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] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. 23 * Copyright (c) 2011, 2018 by Delphix. All rights reserved. 24 * Copyright (c) 2013 by Saso Kiselkov. All rights reserved. 25 * Copyright 2016, Joyent, Inc. 26 * Copyright (c) 2019, Klara Inc. 27 * Copyright (c) 2019, Allan Jude 28 */ 29 30 /* Portions Copyright 2010 Robert Milkowski */ 31 32 #include <sys/zio.h> 33 #include <sys/spa.h> 34 #include <sys/u8_textprep.h> 35 #include <sys/zfs_acl.h> 36 #include <sys/zfs_ioctl.h> 37 #include <sys/zfs_znode.h> 38 #include <sys/dsl_crypt.h> 39 40 #include "zfs_prop.h" 41 #include "zfs_deleg.h" 42 #include "zfs_fletcher.h" 43 44 #if !defined(_KERNEL) 45 #include <stdlib.h> 46 #include <string.h> 47 #include <ctype.h> 48 #endif 49 50 static zprop_desc_t zfs_prop_table[ZFS_NUM_PROPS]; 51 52 /* Note this is indexed by zfs_userquota_prop_t, keep the order the same */ 53 const char *const zfs_userquota_prop_prefixes[] = { 54 "userused@", 55 "userquota@", 56 "groupused@", 57 "groupquota@", 58 "userobjused@", 59 "userobjquota@", 60 "groupobjused@", 61 "groupobjquota@", 62 "projectused@", 63 "projectquota@", 64 "projectobjused@", 65 "projectobjquota@" 66 }; 67 68 zprop_desc_t * 69 zfs_prop_get_table(void) 70 { 71 return (zfs_prop_table); 72 } 73 74 void 75 zfs_prop_init(void) 76 { 77 static const zprop_index_t checksum_table[] = { 78 { "on", ZIO_CHECKSUM_ON }, 79 { "off", ZIO_CHECKSUM_OFF }, 80 { "fletcher2", ZIO_CHECKSUM_FLETCHER_2 }, 81 { "fletcher4", ZIO_CHECKSUM_FLETCHER_4 }, 82 { "sha256", ZIO_CHECKSUM_SHA256 }, 83 { "noparity", ZIO_CHECKSUM_NOPARITY }, 84 { "sha512", ZIO_CHECKSUM_SHA512 }, 85 { "skein", ZIO_CHECKSUM_SKEIN }, 86 { "edonr", ZIO_CHECKSUM_EDONR }, 87 { "blake3", ZIO_CHECKSUM_BLAKE3 }, 88 { NULL } 89 }; 90 91 static const zprop_index_t dedup_table[] = { 92 { "on", ZIO_CHECKSUM_ON }, 93 { "off", ZIO_CHECKSUM_OFF }, 94 { "verify", ZIO_CHECKSUM_ON | ZIO_CHECKSUM_VERIFY }, 95 { "sha256", ZIO_CHECKSUM_SHA256 }, 96 { "sha256,verify", 97 ZIO_CHECKSUM_SHA256 | ZIO_CHECKSUM_VERIFY }, 98 { "sha512", ZIO_CHECKSUM_SHA512 }, 99 { "sha512,verify", 100 ZIO_CHECKSUM_SHA512 | ZIO_CHECKSUM_VERIFY }, 101 { "skein", ZIO_CHECKSUM_SKEIN }, 102 { "skein,verify", 103 ZIO_CHECKSUM_SKEIN | ZIO_CHECKSUM_VERIFY }, 104 { "edonr,verify", 105 ZIO_CHECKSUM_EDONR | ZIO_CHECKSUM_VERIFY }, 106 { "blake3", ZIO_CHECKSUM_BLAKE3 }, 107 { "blake3,verify", 108 ZIO_CHECKSUM_BLAKE3 | ZIO_CHECKSUM_VERIFY }, 109 { NULL } 110 }; 111 112 static const zprop_index_t compress_table[] = { 113 { "on", ZIO_COMPRESS_ON }, 114 { "off", ZIO_COMPRESS_OFF }, 115 { "lzjb", ZIO_COMPRESS_LZJB }, 116 { "gzip", ZIO_COMPRESS_GZIP_6 }, /* gzip default */ 117 { "gzip-1", ZIO_COMPRESS_GZIP_1 }, 118 { "gzip-2", ZIO_COMPRESS_GZIP_2 }, 119 { "gzip-3", ZIO_COMPRESS_GZIP_3 }, 120 { "gzip-4", ZIO_COMPRESS_GZIP_4 }, 121 { "gzip-5", ZIO_COMPRESS_GZIP_5 }, 122 { "gzip-6", ZIO_COMPRESS_GZIP_6 }, 123 { "gzip-7", ZIO_COMPRESS_GZIP_7 }, 124 { "gzip-8", ZIO_COMPRESS_GZIP_8 }, 125 { "gzip-9", ZIO_COMPRESS_GZIP_9 }, 126 { "zle", ZIO_COMPRESS_ZLE }, 127 { "lz4", ZIO_COMPRESS_LZ4 }, 128 { "zstd", ZIO_COMPRESS_ZSTD }, 129 { "zstd-fast", 130 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_DEFAULT) }, 131 132 /* 133 * ZSTD 1-19 are synthetic. We store the compression level in a 134 * separate hidden property to avoid wasting a large amount of 135 * space in the ZIO_COMPRESS enum. 136 * 137 * The compression level is also stored within the header of the 138 * compressed block since we may need it for later recompression 139 * to avoid checksum errors (L2ARC). 140 * 141 * Note that the level here is defined as bit shifted mask on 142 * top of the method. 143 */ 144 { "zstd-1", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_1) }, 145 { "zstd-2", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_2) }, 146 { "zstd-3", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_3) }, 147 { "zstd-4", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_4) }, 148 { "zstd-5", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_5) }, 149 { "zstd-6", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_6) }, 150 { "zstd-7", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_7) }, 151 { "zstd-8", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_8) }, 152 { "zstd-9", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_9) }, 153 { "zstd-10", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_10) }, 154 { "zstd-11", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_11) }, 155 { "zstd-12", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_12) }, 156 { "zstd-13", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_13) }, 157 { "zstd-14", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_14) }, 158 { "zstd-15", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_15) }, 159 { "zstd-16", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_16) }, 160 { "zstd-17", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_17) }, 161 { "zstd-18", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_18) }, 162 { "zstd-19", ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_19) }, 163 164 /* 165 * The ZSTD-Fast levels are also synthetic. 166 */ 167 { "zstd-fast-1", 168 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_1) }, 169 { "zstd-fast-2", 170 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_2) }, 171 { "zstd-fast-3", 172 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_3) }, 173 { "zstd-fast-4", 174 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_4) }, 175 { "zstd-fast-5", 176 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_5) }, 177 { "zstd-fast-6", 178 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_6) }, 179 { "zstd-fast-7", 180 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_7) }, 181 { "zstd-fast-8", 182 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_8) }, 183 { "zstd-fast-9", 184 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_9) }, 185 { "zstd-fast-10", 186 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_10) }, 187 { "zstd-fast-20", 188 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_20) }, 189 { "zstd-fast-30", 190 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_30) }, 191 { "zstd-fast-40", 192 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_40) }, 193 { "zstd-fast-50", 194 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_50) }, 195 { "zstd-fast-60", 196 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_60) }, 197 { "zstd-fast-70", 198 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_70) }, 199 { "zstd-fast-80", 200 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_80) }, 201 { "zstd-fast-90", 202 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_90) }, 203 { "zstd-fast-100", 204 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_100) }, 205 { "zstd-fast-500", 206 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_500) }, 207 { "zstd-fast-1000", 208 ZIO_COMPLEVEL_ZSTD(ZIO_ZSTD_LEVEL_FAST_1000) }, 209 { NULL } 210 }; 211 212 static const zprop_index_t crypto_table[] = { 213 { "on", ZIO_CRYPT_ON }, 214 { "off", ZIO_CRYPT_OFF }, 215 { "aes-128-ccm", ZIO_CRYPT_AES_128_CCM }, 216 { "aes-192-ccm", ZIO_CRYPT_AES_192_CCM }, 217 { "aes-256-ccm", ZIO_CRYPT_AES_256_CCM }, 218 { "aes-128-gcm", ZIO_CRYPT_AES_128_GCM }, 219 { "aes-192-gcm", ZIO_CRYPT_AES_192_GCM }, 220 { "aes-256-gcm", ZIO_CRYPT_AES_256_GCM }, 221 { NULL } 222 }; 223 224 static const zprop_index_t keyformat_table[] = { 225 { "none", ZFS_KEYFORMAT_NONE }, 226 { "raw", ZFS_KEYFORMAT_RAW }, 227 { "hex", ZFS_KEYFORMAT_HEX }, 228 { "passphrase", ZFS_KEYFORMAT_PASSPHRASE }, 229 { NULL } 230 }; 231 232 static const zprop_index_t snapdir_table[] = { 233 { "hidden", ZFS_SNAPDIR_HIDDEN }, 234 { "visible", ZFS_SNAPDIR_VISIBLE }, 235 { NULL } 236 }; 237 238 static const zprop_index_t snapdev_table[] = { 239 { "hidden", ZFS_SNAPDEV_HIDDEN }, 240 { "visible", ZFS_SNAPDEV_VISIBLE }, 241 { NULL } 242 }; 243 244 static const zprop_index_t acl_mode_table[] = { 245 { "discard", ZFS_ACL_DISCARD }, 246 { "groupmask", ZFS_ACL_GROUPMASK }, 247 { "passthrough", ZFS_ACL_PASSTHROUGH }, 248 { "restricted", ZFS_ACL_RESTRICTED }, 249 { NULL } 250 }; 251 252 static const zprop_index_t acltype_table[] = { 253 { "off", ZFS_ACLTYPE_OFF }, 254 { "posix", ZFS_ACLTYPE_POSIX }, 255 { "nfsv4", ZFS_ACLTYPE_NFSV4 }, 256 { "disabled", ZFS_ACLTYPE_OFF }, /* bkwrd compatibility */ 257 { "noacl", ZFS_ACLTYPE_OFF }, /* bkwrd compatibility */ 258 { "posixacl", ZFS_ACLTYPE_POSIX }, /* bkwrd compatibility */ 259 { NULL } 260 }; 261 262 static const zprop_index_t acl_inherit_table[] = { 263 { "discard", ZFS_ACL_DISCARD }, 264 { "noallow", ZFS_ACL_NOALLOW }, 265 { "restricted", ZFS_ACL_RESTRICTED }, 266 { "passthrough", ZFS_ACL_PASSTHROUGH }, 267 { "secure", ZFS_ACL_RESTRICTED }, /* bkwrd compatibility */ 268 { "passthrough-x", ZFS_ACL_PASSTHROUGH_X }, 269 { NULL } 270 }; 271 272 static const zprop_index_t case_table[] = { 273 { "sensitive", ZFS_CASE_SENSITIVE }, 274 { "insensitive", ZFS_CASE_INSENSITIVE }, 275 { "mixed", ZFS_CASE_MIXED }, 276 { NULL } 277 }; 278 279 static const zprop_index_t copies_table[] = { 280 { "1", 1 }, 281 { "2", 2 }, 282 { "3", 3 }, 283 { NULL } 284 }; 285 286 /* 287 * Use the unique flags we have to send to u8_strcmp() and/or 288 * u8_textprep() to represent the various normalization property 289 * values. 290 */ 291 static const zprop_index_t normalize_table[] = { 292 { "none", 0 }, 293 { "formD", U8_TEXTPREP_NFD }, 294 { "formKC", U8_TEXTPREP_NFKC }, 295 { "formC", U8_TEXTPREP_NFC }, 296 { "formKD", U8_TEXTPREP_NFKD }, 297 { NULL } 298 }; 299 300 static const zprop_index_t version_table[] = { 301 { "1", 1 }, 302 { "2", 2 }, 303 { "3", 3 }, 304 { "4", 4 }, 305 { "5", 5 }, 306 { "current", ZPL_VERSION }, 307 { NULL } 308 }; 309 310 static const zprop_index_t boolean_table[] = { 311 { "off", 0 }, 312 { "on", 1 }, 313 { NULL } 314 }; 315 316 static const zprop_index_t keystatus_table[] = { 317 { "none", ZFS_KEYSTATUS_NONE}, 318 { "unavailable", ZFS_KEYSTATUS_UNAVAILABLE}, 319 { "available", ZFS_KEYSTATUS_AVAILABLE}, 320 { NULL } 321 }; 322 323 static const zprop_index_t logbias_table[] = { 324 { "latency", ZFS_LOGBIAS_LATENCY }, 325 { "throughput", ZFS_LOGBIAS_THROUGHPUT }, 326 { NULL } 327 }; 328 329 static const zprop_index_t canmount_table[] = { 330 { "off", ZFS_CANMOUNT_OFF }, 331 { "on", ZFS_CANMOUNT_ON }, 332 { "noauto", ZFS_CANMOUNT_NOAUTO }, 333 { NULL } 334 }; 335 336 static const zprop_index_t cache_table[] = { 337 { "none", ZFS_CACHE_NONE }, 338 { "metadata", ZFS_CACHE_METADATA }, 339 { "all", ZFS_CACHE_ALL }, 340 { NULL } 341 }; 342 343 static const zprop_index_t sync_table[] = { 344 { "standard", ZFS_SYNC_STANDARD }, 345 { "always", ZFS_SYNC_ALWAYS }, 346 { "disabled", ZFS_SYNC_DISABLED }, 347 { NULL } 348 }; 349 350 static const zprop_index_t xattr_table[] = { 351 { "off", ZFS_XATTR_OFF }, 352 { "on", ZFS_XATTR_DIR }, 353 { "sa", ZFS_XATTR_SA }, 354 { "dir", ZFS_XATTR_DIR }, 355 { NULL } 356 }; 357 358 static const zprop_index_t dnsize_table[] = { 359 { "legacy", ZFS_DNSIZE_LEGACY }, 360 { "auto", ZFS_DNSIZE_AUTO }, 361 { "1k", ZFS_DNSIZE_1K }, 362 { "2k", ZFS_DNSIZE_2K }, 363 { "4k", ZFS_DNSIZE_4K }, 364 { "8k", ZFS_DNSIZE_8K }, 365 { "16k", ZFS_DNSIZE_16K }, 366 { NULL } 367 }; 368 369 static const zprop_index_t redundant_metadata_table[] = { 370 { "all", ZFS_REDUNDANT_METADATA_ALL }, 371 { "most", ZFS_REDUNDANT_METADATA_MOST }, 372 { NULL } 373 }; 374 375 static const zprop_index_t volmode_table[] = { 376 { "default", ZFS_VOLMODE_DEFAULT }, 377 { "full", ZFS_VOLMODE_GEOM }, 378 { "geom", ZFS_VOLMODE_GEOM }, 379 { "dev", ZFS_VOLMODE_DEV }, 380 { "none", ZFS_VOLMODE_NONE }, 381 { NULL } 382 }; 383 384 struct zfs_mod_supported_features *sfeatures = 385 zfs_mod_list_supported(ZFS_SYSFS_DATASET_PROPERTIES); 386 387 /* inherit index properties */ 388 zprop_register_index(ZFS_PROP_REDUNDANT_METADATA, "redundant_metadata", 389 ZFS_REDUNDANT_METADATA_ALL, 390 PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 391 "all | most", "REDUND_MD", 392 redundant_metadata_table, sfeatures); 393 zprop_register_index(ZFS_PROP_SYNC, "sync", ZFS_SYNC_STANDARD, 394 PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 395 "standard | always | disabled", "SYNC", 396 sync_table, sfeatures); 397 zprop_register_index(ZFS_PROP_CHECKSUM, "checksum", 398 ZIO_CHECKSUM_DEFAULT, PROP_INHERIT, ZFS_TYPE_FILESYSTEM | 399 ZFS_TYPE_VOLUME, 400 "on | off | fletcher2 | fletcher4 | sha256 | sha512 | skein" 401 " | edonr | blake3", 402 "CHECKSUM", checksum_table, sfeatures); 403 zprop_register_index(ZFS_PROP_DEDUP, "dedup", ZIO_CHECKSUM_OFF, 404 PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 405 "on | off | verify | sha256[,verify] | sha512[,verify] | " 406 "skein[,verify] | edonr,verify | blake3[,verify]", 407 "DEDUP", dedup_table, sfeatures); 408 zprop_register_index(ZFS_PROP_COMPRESSION, "compression", 409 ZIO_COMPRESS_DEFAULT, PROP_INHERIT, 410 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 411 "on | off | lzjb | gzip | gzip-[1-9] | zle | lz4 | " 412 "zstd | zstd-[1-19] | " 413 "zstd-fast | zstd-fast-[1-10,20,30,40,50,60,70,80,90,100,500,1000]", 414 "COMPRESS", compress_table, sfeatures); 415 zprop_register_index(ZFS_PROP_SNAPDIR, "snapdir", ZFS_SNAPDIR_HIDDEN, 416 PROP_INHERIT, ZFS_TYPE_FILESYSTEM, 417 "hidden | visible", "SNAPDIR", snapdir_table, sfeatures); 418 zprop_register_index(ZFS_PROP_SNAPDEV, "snapdev", ZFS_SNAPDEV_HIDDEN, 419 PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 420 "hidden | visible", "SNAPDEV", snapdev_table, sfeatures); 421 zprop_register_index(ZFS_PROP_ACLMODE, "aclmode", ZFS_ACL_DISCARD, 422 PROP_INHERIT, ZFS_TYPE_FILESYSTEM, 423 "discard | groupmask | passthrough | restricted", "ACLMODE", 424 acl_mode_table, sfeatures); 425 zprop_register_index(ZFS_PROP_ACLTYPE, "acltype", 426 #ifdef __linux__ 427 /* Linux doesn't natively support ZFS's NFSv4-style ACLs. */ 428 ZFS_ACLTYPE_OFF, 429 #else 430 ZFS_ACLTYPE_NFSV4, 431 #endif 432 PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, 433 "off | nfsv4 | posix", "ACLTYPE", acltype_table, sfeatures); 434 zprop_register_index(ZFS_PROP_ACLINHERIT, "aclinherit", 435 ZFS_ACL_RESTRICTED, PROP_INHERIT, ZFS_TYPE_FILESYSTEM, 436 "discard | noallow | restricted | passthrough | passthrough-x", 437 "ACLINHERIT", acl_inherit_table, sfeatures); 438 zprop_register_index(ZFS_PROP_COPIES, "copies", 1, PROP_INHERIT, 439 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 440 "1 | 2 | 3", "COPIES", copies_table, sfeatures); 441 zprop_register_index(ZFS_PROP_PRIMARYCACHE, "primarycache", 442 ZFS_CACHE_ALL, PROP_INHERIT, 443 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT | ZFS_TYPE_VOLUME, 444 "all | none | metadata", "PRIMARYCACHE", cache_table, sfeatures); 445 zprop_register_index(ZFS_PROP_SECONDARYCACHE, "secondarycache", 446 ZFS_CACHE_ALL, PROP_INHERIT, 447 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT | ZFS_TYPE_VOLUME, 448 "all | none | metadata", "SECONDARYCACHE", cache_table, sfeatures); 449 zprop_register_index(ZFS_PROP_LOGBIAS, "logbias", ZFS_LOGBIAS_LATENCY, 450 PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 451 "latency | throughput", "LOGBIAS", logbias_table, sfeatures); 452 zprop_register_index(ZFS_PROP_XATTR, "xattr", ZFS_XATTR_DIR, 453 PROP_INHERIT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, 454 "on | off | dir | sa", "XATTR", xattr_table, sfeatures); 455 zprop_register_index(ZFS_PROP_DNODESIZE, "dnodesize", 456 ZFS_DNSIZE_LEGACY, PROP_INHERIT, ZFS_TYPE_FILESYSTEM, 457 "legacy | auto | 1k | 2k | 4k | 8k | 16k", "DNSIZE", dnsize_table, 458 sfeatures); 459 zprop_register_index(ZFS_PROP_VOLMODE, "volmode", 460 ZFS_VOLMODE_DEFAULT, PROP_INHERIT, 461 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 462 "default | full | geom | dev | none", "VOLMODE", volmode_table, 463 sfeatures); 464 465 /* inherit index (boolean) properties */ 466 zprop_register_index(ZFS_PROP_ATIME, "atime", 1, PROP_INHERIT, 467 ZFS_TYPE_FILESYSTEM, "on | off", "ATIME", boolean_table, sfeatures); 468 zprop_register_index(ZFS_PROP_RELATIME, "relatime", 0, PROP_INHERIT, 469 ZFS_TYPE_FILESYSTEM, "on | off", "RELATIME", boolean_table, 470 sfeatures); 471 zprop_register_index(ZFS_PROP_DEVICES, "devices", 1, PROP_INHERIT, 472 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "DEVICES", 473 boolean_table, sfeatures); 474 zprop_register_index(ZFS_PROP_EXEC, "exec", 1, PROP_INHERIT, 475 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "EXEC", 476 boolean_table, sfeatures); 477 zprop_register_index(ZFS_PROP_SETUID, "setuid", 1, PROP_INHERIT, 478 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "SETUID", 479 boolean_table, sfeatures); 480 zprop_register_index(ZFS_PROP_READONLY, "readonly", 0, PROP_INHERIT, 481 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "on | off", "RDONLY", 482 boolean_table, sfeatures); 483 #ifdef __FreeBSD__ 484 zprop_register_index(ZFS_PROP_ZONED, "jailed", 0, PROP_INHERIT, 485 ZFS_TYPE_FILESYSTEM, "on | off", "JAILED", boolean_table, 486 sfeatures); 487 #else 488 zprop_register_index(ZFS_PROP_ZONED, "zoned", 0, PROP_INHERIT, 489 ZFS_TYPE_FILESYSTEM, "on | off", "ZONED", boolean_table, sfeatures); 490 #endif 491 zprop_register_index(ZFS_PROP_VSCAN, "vscan", 0, PROP_INHERIT, 492 ZFS_TYPE_FILESYSTEM, "on | off", "VSCAN", boolean_table, sfeatures); 493 zprop_register_index(ZFS_PROP_NBMAND, "nbmand", 0, PROP_INHERIT, 494 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, "on | off", "NBMAND", 495 boolean_table, sfeatures); 496 zprop_register_index(ZFS_PROP_OVERLAY, "overlay", 1, PROP_INHERIT, 497 ZFS_TYPE_FILESYSTEM, "on | off", "OVERLAY", boolean_table, 498 sfeatures); 499 500 /* default index properties */ 501 zprop_register_index(ZFS_PROP_VERSION, "version", 0, PROP_DEFAULT, 502 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, 503 "1 | 2 | 3 | 4 | 5 | current", "VERSION", version_table, sfeatures); 504 zprop_register_index(ZFS_PROP_CANMOUNT, "canmount", ZFS_CANMOUNT_ON, 505 PROP_DEFAULT, ZFS_TYPE_FILESYSTEM, "on | off | noauto", 506 "CANMOUNT", canmount_table, sfeatures); 507 508 /* readonly index properties */ 509 zprop_register_index(ZFS_PROP_MOUNTED, "mounted", 0, PROP_READONLY, 510 ZFS_TYPE_FILESYSTEM, "yes | no", "MOUNTED", boolean_table, 511 sfeatures); 512 zprop_register_index(ZFS_PROP_DEFER_DESTROY, "defer_destroy", 0, 513 PROP_READONLY, ZFS_TYPE_SNAPSHOT, "yes | no", "DEFER_DESTROY", 514 boolean_table, sfeatures); 515 zprop_register_index(ZFS_PROP_KEYSTATUS, "keystatus", 516 ZFS_KEYSTATUS_NONE, PROP_READONLY, ZFS_TYPE_DATASET, 517 "none | unavailable | available", 518 "KEYSTATUS", keystatus_table, sfeatures); 519 520 /* set once index properties */ 521 zprop_register_index(ZFS_PROP_NORMALIZE, "normalization", 0, 522 PROP_ONETIME, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, 523 "none | formC | formD | formKC | formKD", "NORMALIZATION", 524 normalize_table, sfeatures); 525 zprop_register_index(ZFS_PROP_CASE, "casesensitivity", 526 ZFS_CASE_SENSITIVE, PROP_ONETIME, ZFS_TYPE_FILESYSTEM | 527 ZFS_TYPE_SNAPSHOT, 528 "sensitive | insensitive | mixed", "CASE", case_table, sfeatures); 529 zprop_register_index(ZFS_PROP_KEYFORMAT, "keyformat", 530 ZFS_KEYFORMAT_NONE, PROP_ONETIME_DEFAULT, 531 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 532 "none | raw | hex | passphrase", "KEYFORMAT", keyformat_table, 533 sfeatures); 534 zprop_register_index(ZFS_PROP_ENCRYPTION, "encryption", 535 ZIO_CRYPT_DEFAULT, PROP_ONETIME, ZFS_TYPE_DATASET, 536 "on | off | aes-128-ccm | aes-192-ccm | aes-256-ccm | " 537 "aes-128-gcm | aes-192-gcm | aes-256-gcm", "ENCRYPTION", 538 crypto_table, sfeatures); 539 540 /* set once index (boolean) properties */ 541 zprop_register_index(ZFS_PROP_UTF8ONLY, "utf8only", 0, PROP_ONETIME, 542 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_SNAPSHOT, 543 "on | off", "UTF8ONLY", boolean_table, sfeatures); 544 545 /* string properties */ 546 zprop_register_string(ZFS_PROP_ORIGIN, "origin", NULL, PROP_READONLY, 547 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<snapshot>", "ORIGIN", 548 sfeatures); 549 zprop_register_string(ZFS_PROP_CLONES, "clones", NULL, PROP_READONLY, 550 ZFS_TYPE_SNAPSHOT, "<dataset>[,...]", "CLONES", sfeatures); 551 zprop_register_string(ZFS_PROP_MOUNTPOINT, "mountpoint", "/", 552 PROP_INHERIT, ZFS_TYPE_FILESYSTEM, "<path> | legacy | none", 553 "MOUNTPOINT", sfeatures); 554 zprop_register_string(ZFS_PROP_SHARENFS, "sharenfs", "off", 555 PROP_INHERIT, ZFS_TYPE_FILESYSTEM, "on | off | NFS share options", 556 "SHARENFS", sfeatures); 557 zprop_register_string(ZFS_PROP_TYPE, "type", NULL, PROP_READONLY, 558 ZFS_TYPE_DATASET | ZFS_TYPE_BOOKMARK, 559 "filesystem | volume | snapshot | bookmark", "TYPE", sfeatures); 560 zprop_register_string(ZFS_PROP_SHARESMB, "sharesmb", "off", 561 PROP_INHERIT, ZFS_TYPE_FILESYSTEM, 562 "on | off | SMB share options", "SHARESMB", sfeatures); 563 zprop_register_string(ZFS_PROP_MLSLABEL, "mlslabel", 564 ZFS_MLSLABEL_DEFAULT, PROP_INHERIT, ZFS_TYPE_DATASET, 565 "<sensitivity label>", "MLSLABEL", sfeatures); 566 zprop_register_string(ZFS_PROP_SELINUX_CONTEXT, "context", 567 "none", PROP_DEFAULT, ZFS_TYPE_DATASET, "<selinux context>", 568 "CONTEXT", sfeatures); 569 zprop_register_string(ZFS_PROP_SELINUX_FSCONTEXT, "fscontext", 570 "none", PROP_DEFAULT, ZFS_TYPE_DATASET, "<selinux fscontext>", 571 "FSCONTEXT", sfeatures); 572 zprop_register_string(ZFS_PROP_SELINUX_DEFCONTEXT, "defcontext", 573 "none", PROP_DEFAULT, ZFS_TYPE_DATASET, "<selinux defcontext>", 574 "DEFCONTEXT", sfeatures); 575 zprop_register_string(ZFS_PROP_SELINUX_ROOTCONTEXT, "rootcontext", 576 "none", PROP_DEFAULT, ZFS_TYPE_DATASET, "<selinux rootcontext>", 577 "ROOTCONTEXT", sfeatures); 578 zprop_register_string(ZFS_PROP_RECEIVE_RESUME_TOKEN, 579 "receive_resume_token", 580 NULL, PROP_READONLY, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 581 "<string token>", "RESUMETOK", sfeatures); 582 zprop_register_string(ZFS_PROP_ENCRYPTION_ROOT, "encryptionroot", NULL, 583 PROP_READONLY, ZFS_TYPE_DATASET, "<filesystem | volume>", 584 "ENCROOT", sfeatures); 585 zprop_register_string(ZFS_PROP_KEYLOCATION, "keylocation", 586 "none", PROP_DEFAULT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 587 "prompt | <file URI> | <https URL> | <http URL>", "KEYLOCATION", 588 sfeatures); 589 zprop_register_string(ZFS_PROP_REDACT_SNAPS, 590 "redact_snaps", NULL, PROP_READONLY, 591 ZFS_TYPE_DATASET | ZFS_TYPE_BOOKMARK, "<snapshot>[,...]", 592 "RSNAPS", sfeatures); 593 594 /* readonly number properties */ 595 zprop_register_number(ZFS_PROP_USED, "used", 0, PROP_READONLY, 596 ZFS_TYPE_DATASET, "<size>", "USED", B_FALSE, sfeatures); 597 zprop_register_number(ZFS_PROP_AVAILABLE, "available", 0, PROP_READONLY, 598 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "AVAIL", 599 B_FALSE, sfeatures); 600 zprop_register_number(ZFS_PROP_REFERENCED, "referenced", 0, 601 PROP_READONLY, ZFS_TYPE_DATASET | ZFS_TYPE_BOOKMARK, "<size>", 602 "REFER", B_FALSE, sfeatures); 603 zprop_register_number(ZFS_PROP_COMPRESSRATIO, "compressratio", 0, 604 PROP_READONLY, ZFS_TYPE_DATASET | ZFS_TYPE_BOOKMARK, 605 "<1.00x or higher if compressed>", "RATIO", B_FALSE, sfeatures); 606 zprop_register_number(ZFS_PROP_REFRATIO, "refcompressratio", 0, 607 PROP_READONLY, ZFS_TYPE_DATASET, 608 "<1.00x or higher if compressed>", "REFRATIO", B_FALSE, sfeatures); 609 zprop_register_number(ZFS_PROP_VOLBLOCKSIZE, "volblocksize", 610 ZVOL_DEFAULT_BLOCKSIZE, PROP_ONETIME, 611 ZFS_TYPE_VOLUME, "512 to 128k, power of 2", "VOLBLOCK", B_FALSE, 612 sfeatures); 613 zprop_register_number(ZFS_PROP_USEDSNAP, "usedbysnapshots", 0, 614 PROP_READONLY, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", 615 "USEDSNAP", B_FALSE, sfeatures); 616 zprop_register_number(ZFS_PROP_USEDDS, "usedbydataset", 0, 617 PROP_READONLY, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", 618 "USEDDS", B_FALSE, sfeatures); 619 zprop_register_number(ZFS_PROP_USEDCHILD, "usedbychildren", 0, 620 PROP_READONLY, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", 621 "USEDCHILD", B_FALSE, sfeatures); 622 zprop_register_number(ZFS_PROP_USEDREFRESERV, "usedbyrefreservation", 0, 623 PROP_READONLY, 624 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", "USEDREFRESERV", 625 B_FALSE, sfeatures); 626 zprop_register_number(ZFS_PROP_USERREFS, "userrefs", 0, PROP_READONLY, 627 ZFS_TYPE_SNAPSHOT, "<count>", "USERREFS", B_FALSE, sfeatures); 628 zprop_register_number(ZFS_PROP_WRITTEN, "written", 0, PROP_READONLY, 629 ZFS_TYPE_DATASET, "<size>", "WRITTEN", B_FALSE, sfeatures); 630 zprop_register_number(ZFS_PROP_LOGICALUSED, "logicalused", 0, 631 PROP_READONLY, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "<size>", 632 "LUSED", B_FALSE, sfeatures); 633 zprop_register_number(ZFS_PROP_LOGICALREFERENCED, "logicalreferenced", 634 0, PROP_READONLY, ZFS_TYPE_DATASET | ZFS_TYPE_BOOKMARK, "<size>", 635 "LREFER", B_FALSE, sfeatures); 636 zprop_register_number(ZFS_PROP_FILESYSTEM_COUNT, "filesystem_count", 637 UINT64_MAX, PROP_READONLY, ZFS_TYPE_FILESYSTEM, 638 "<count>", "FSCOUNT", B_FALSE, sfeatures); 639 zprop_register_number(ZFS_PROP_SNAPSHOT_COUNT, "snapshot_count", 640 UINT64_MAX, PROP_READONLY, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 641 "<count>", "SSCOUNT", B_FALSE, sfeatures); 642 zprop_register_number(ZFS_PROP_GUID, "guid", 0, PROP_READONLY, 643 ZFS_TYPE_DATASET | ZFS_TYPE_BOOKMARK, "<uint64>", "GUID", 644 B_TRUE, sfeatures); 645 zprop_register_number(ZFS_PROP_CREATETXG, "createtxg", 0, PROP_READONLY, 646 ZFS_TYPE_DATASET | ZFS_TYPE_BOOKMARK, "<uint64>", "CREATETXG", 647 B_TRUE, sfeatures); 648 zprop_register_number(ZFS_PROP_PBKDF2_ITERS, "pbkdf2iters", 649 0, PROP_ONETIME_DEFAULT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 650 "<iters>", "PBKDF2ITERS", B_TRUE, sfeatures); 651 zprop_register_number(ZFS_PROP_OBJSETID, "objsetid", 0, 652 PROP_READONLY, ZFS_TYPE_DATASET, "<uint64>", "OBJSETID", B_TRUE, 653 sfeatures); 654 655 /* default number properties */ 656 zprop_register_number(ZFS_PROP_QUOTA, "quota", 0, PROP_DEFAULT, 657 ZFS_TYPE_FILESYSTEM, "<size> | none", "QUOTA", B_FALSE, sfeatures); 658 zprop_register_number(ZFS_PROP_RESERVATION, "reservation", 0, 659 PROP_DEFAULT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 660 "<size> | none", "RESERV", B_FALSE, sfeatures); 661 zprop_register_number(ZFS_PROP_VOLSIZE, "volsize", 0, PROP_DEFAULT, 662 ZFS_TYPE_SNAPSHOT | ZFS_TYPE_VOLUME, "<size>", "VOLSIZE", 663 B_FALSE, sfeatures); 664 zprop_register_number(ZFS_PROP_REFQUOTA, "refquota", 0, PROP_DEFAULT, 665 ZFS_TYPE_FILESYSTEM, "<size> | none", "REFQUOTA", B_FALSE, 666 sfeatures); 667 zprop_register_number(ZFS_PROP_REFRESERVATION, "refreservation", 0, 668 PROP_DEFAULT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 669 "<size> | none", "REFRESERV", B_FALSE, sfeatures); 670 zprop_register_number(ZFS_PROP_FILESYSTEM_LIMIT, "filesystem_limit", 671 UINT64_MAX, PROP_DEFAULT, ZFS_TYPE_FILESYSTEM, 672 "<count> | none", "FSLIMIT", B_FALSE, sfeatures); 673 zprop_register_number(ZFS_PROP_SNAPSHOT_LIMIT, "snapshot_limit", 674 UINT64_MAX, PROP_DEFAULT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, 675 "<count> | none", "SSLIMIT", B_FALSE, sfeatures); 676 677 /* inherit number properties */ 678 zprop_register_number(ZFS_PROP_RECORDSIZE, "recordsize", 679 SPA_OLD_MAXBLOCKSIZE, PROP_INHERIT, 680 ZFS_TYPE_FILESYSTEM, "512 to 1M, power of 2", "RECSIZE", B_FALSE, 681 sfeatures); 682 zprop_register_number(ZFS_PROP_SPECIAL_SMALL_BLOCKS, 683 "special_small_blocks", 0, PROP_INHERIT, ZFS_TYPE_FILESYSTEM, 684 "zero or 512 to 1M, power of 2", "SPECIAL_SMALL_BLOCKS", B_FALSE, 685 sfeatures); 686 687 /* hidden properties */ 688 zprop_register_hidden(ZFS_PROP_NUMCLONES, "numclones", PROP_TYPE_NUMBER, 689 PROP_READONLY, ZFS_TYPE_SNAPSHOT, "NUMCLONES", B_FALSE, sfeatures); 690 zprop_register_hidden(ZFS_PROP_NAME, "name", PROP_TYPE_STRING, 691 PROP_READONLY, ZFS_TYPE_DATASET | ZFS_TYPE_BOOKMARK, "NAME", 692 B_TRUE, sfeatures); 693 zprop_register_hidden(ZFS_PROP_ISCSIOPTIONS, "iscsioptions", 694 PROP_TYPE_STRING, PROP_INHERIT, ZFS_TYPE_VOLUME, "ISCSIOPTIONS", 695 B_TRUE, sfeatures); 696 zprop_register_hidden(ZFS_PROP_STMF_SHAREINFO, "stmf_sbd_lu", 697 PROP_TYPE_STRING, PROP_INHERIT, ZFS_TYPE_VOLUME, 698 "STMF_SBD_LU", B_TRUE, sfeatures); 699 zprop_register_hidden(ZFS_PROP_USERACCOUNTING, "useraccounting", 700 PROP_TYPE_NUMBER, PROP_READONLY, ZFS_TYPE_DATASET, 701 "USERACCOUNTING", B_FALSE, sfeatures); 702 zprop_register_hidden(ZFS_PROP_UNIQUE, "unique", PROP_TYPE_NUMBER, 703 PROP_READONLY, ZFS_TYPE_DATASET, "UNIQUE", B_FALSE, sfeatures); 704 zprop_register_hidden(ZFS_PROP_INCONSISTENT, "inconsistent", 705 PROP_TYPE_NUMBER, PROP_READONLY, ZFS_TYPE_DATASET, "INCONSISTENT", 706 B_FALSE, sfeatures); 707 zprop_register_hidden(ZFS_PROP_IVSET_GUID, "ivsetguid", 708 PROP_TYPE_NUMBER, PROP_READONLY, 709 ZFS_TYPE_DATASET | ZFS_TYPE_BOOKMARK, "IVSETGUID", B_TRUE, 710 sfeatures); 711 zprop_register_hidden(ZFS_PROP_PREV_SNAP, "prevsnap", PROP_TYPE_STRING, 712 PROP_READONLY, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "PREVSNAP", 713 B_TRUE, sfeatures); 714 zprop_register_hidden(ZFS_PROP_PBKDF2_SALT, "pbkdf2salt", 715 PROP_TYPE_NUMBER, PROP_ONETIME_DEFAULT, 716 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, "PBKDF2SALT", B_FALSE, 717 sfeatures); 718 zprop_register_hidden(ZFS_PROP_KEY_GUID, "keyguid", PROP_TYPE_NUMBER, 719 PROP_READONLY, ZFS_TYPE_DATASET, "KEYGUID", B_TRUE, sfeatures); 720 zprop_register_hidden(ZFS_PROP_REDACTED, "redacted", PROP_TYPE_NUMBER, 721 PROP_READONLY, ZFS_TYPE_DATASET, "REDACTED", B_FALSE, sfeatures); 722 723 /* 724 * Properties that are obsolete and not used. These are retained so 725 * that we don't have to change the values of the zfs_prop_t enum, or 726 * have NULL pointers in the zfs_prop_table[]. 727 */ 728 zprop_register_hidden(ZFS_PROP_REMAPTXG, "remaptxg", PROP_TYPE_NUMBER, 729 PROP_READONLY, ZFS_TYPE_DATASET, "REMAPTXG", B_FALSE, sfeatures); 730 731 /* oddball properties */ 732 /* 'creation' is a number but displayed as human-readable => flex */ 733 zprop_register_impl(ZFS_PROP_CREATION, "creation", PROP_TYPE_NUMBER, 0, 734 NULL, PROP_READONLY, ZFS_TYPE_DATASET | ZFS_TYPE_BOOKMARK, 735 "<date>", "CREATION", B_FALSE, B_TRUE, B_TRUE, NULL, sfeatures); 736 737 zfs_mod_list_supported_free(sfeatures); 738 } 739 740 boolean_t 741 zfs_prop_delegatable(zfs_prop_t prop) 742 { 743 zprop_desc_t *pd = &zfs_prop_table[prop]; 744 745 /* The mlslabel property is never delegatable. */ 746 if (prop == ZFS_PROP_MLSLABEL) 747 return (B_FALSE); 748 749 return (pd->pd_attr != PROP_READONLY); 750 } 751 752 /* 753 * Given a zfs dataset property name, returns the corresponding property ID. 754 */ 755 zfs_prop_t 756 zfs_name_to_prop(const char *propname) 757 { 758 return (zprop_name_to_prop(propname, ZFS_TYPE_DATASET)); 759 } 760 761 /* 762 * Returns true if this is a valid user-defined property (one with a ':'). 763 */ 764 boolean_t 765 zfs_prop_user(const char *name) 766 { 767 int i; 768 char c; 769 boolean_t foundsep = B_FALSE; 770 771 for (i = 0; i < strlen(name); i++) { 772 c = name[i]; 773 if (!zprop_valid_char(c)) 774 return (B_FALSE); 775 if (c == ':') 776 foundsep = B_TRUE; 777 } 778 779 if (!foundsep) 780 return (B_FALSE); 781 782 return (B_TRUE); 783 } 784 785 /* 786 * Returns true if this is a valid userspace-type property (one with a '@'). 787 * Note that after the @, any character is valid (eg, another @, for SID 788 * user@domain). 789 */ 790 boolean_t 791 zfs_prop_userquota(const char *name) 792 { 793 zfs_userquota_prop_t prop; 794 795 for (prop = 0; prop < ZFS_NUM_USERQUOTA_PROPS; prop++) { 796 if (strncmp(name, zfs_userquota_prop_prefixes[prop], 797 strlen(zfs_userquota_prop_prefixes[prop])) == 0) { 798 return (B_TRUE); 799 } 800 } 801 802 return (B_FALSE); 803 } 804 805 /* 806 * Returns true if this is a valid written@ property. 807 * Note that after the @, any character is valid (eg, another @, for 808 * written@pool/fs@origin). 809 */ 810 boolean_t 811 zfs_prop_written(const char *name) 812 { 813 static const char *prop_prefix = "written@"; 814 static const char *book_prefix = "written#"; 815 return (strncmp(name, prop_prefix, strlen(prop_prefix)) == 0 || 816 strncmp(name, book_prefix, strlen(book_prefix)) == 0); 817 } 818 819 /* 820 * Tables of index types, plus functions to convert between the user view 821 * (strings) and internal representation (uint64_t). 822 */ 823 int 824 zfs_prop_string_to_index(zfs_prop_t prop, const char *string, uint64_t *index) 825 { 826 return (zprop_string_to_index(prop, string, index, ZFS_TYPE_DATASET)); 827 } 828 829 int 830 zfs_prop_index_to_string(zfs_prop_t prop, uint64_t index, const char **string) 831 { 832 return (zprop_index_to_string(prop, index, string, ZFS_TYPE_DATASET)); 833 } 834 835 uint64_t 836 zfs_prop_random_value(zfs_prop_t prop, uint64_t seed) 837 { 838 return (zprop_random_value(prop, seed, ZFS_TYPE_DATASET)); 839 } 840 841 /* 842 * Returns TRUE if the property applies to any of the given dataset types. 843 */ 844 boolean_t 845 zfs_prop_valid_for_type(int prop, zfs_type_t types, boolean_t headcheck) 846 { 847 return (zprop_valid_for_type(prop, types, headcheck)); 848 } 849 850 zprop_type_t 851 zfs_prop_get_type(zfs_prop_t prop) 852 { 853 return (zfs_prop_table[prop].pd_proptype); 854 } 855 856 /* 857 * Returns TRUE if the property is readonly. 858 */ 859 boolean_t 860 zfs_prop_readonly(zfs_prop_t prop) 861 { 862 return (zfs_prop_table[prop].pd_attr == PROP_READONLY || 863 zfs_prop_table[prop].pd_attr == PROP_ONETIME || 864 zfs_prop_table[prop].pd_attr == PROP_ONETIME_DEFAULT); 865 } 866 867 /* 868 * Returns TRUE if the property is visible (not hidden). 869 */ 870 boolean_t 871 zfs_prop_visible(zfs_prop_t prop) 872 { 873 return (zfs_prop_table[prop].pd_visible && 874 zfs_prop_table[prop].pd_zfs_mod_supported); 875 } 876 877 /* 878 * Returns TRUE if the property is only allowed to be set once. 879 */ 880 boolean_t 881 zfs_prop_setonce(zfs_prop_t prop) 882 { 883 return (zfs_prop_table[prop].pd_attr == PROP_ONETIME || 884 zfs_prop_table[prop].pd_attr == PROP_ONETIME_DEFAULT); 885 } 886 887 const char * 888 zfs_prop_default_string(zfs_prop_t prop) 889 { 890 return (zfs_prop_table[prop].pd_strdefault); 891 } 892 893 uint64_t 894 zfs_prop_default_numeric(zfs_prop_t prop) 895 { 896 return (zfs_prop_table[prop].pd_numdefault); 897 } 898 899 /* 900 * Given a dataset property ID, returns the corresponding name. 901 * Assuming the zfs dataset property ID is valid. 902 */ 903 const char * 904 zfs_prop_to_name(zfs_prop_t prop) 905 { 906 return (zfs_prop_table[prop].pd_name); 907 } 908 909 /* 910 * Returns TRUE if the property is inheritable. 911 */ 912 boolean_t 913 zfs_prop_inheritable(zfs_prop_t prop) 914 { 915 return (zfs_prop_table[prop].pd_attr == PROP_INHERIT || 916 zfs_prop_table[prop].pd_attr == PROP_ONETIME); 917 } 918 919 /* 920 * Returns TRUE if property is one of the encryption properties that requires 921 * a loaded encryption key to modify. 922 */ 923 boolean_t 924 zfs_prop_encryption_key_param(zfs_prop_t prop) 925 { 926 /* 927 * keylocation does not count as an encryption property. It can be 928 * changed at will without needing the master keys. 929 */ 930 return (prop == ZFS_PROP_PBKDF2_SALT || prop == ZFS_PROP_PBKDF2_ITERS || 931 prop == ZFS_PROP_KEYFORMAT); 932 } 933 934 /* 935 * Helper function used by both kernelspace and userspace to check the 936 * keylocation property. If encrypted is set, the keylocation must be valid 937 * for an encrypted dataset. 938 */ 939 boolean_t 940 zfs_prop_valid_keylocation(const char *str, boolean_t encrypted) 941 { 942 if (strcmp("none", str) == 0) 943 return (!encrypted); 944 else if (strcmp("prompt", str) == 0) 945 return (B_TRUE); 946 else if (strlen(str) > 8 && strncmp("file:///", str, 8) == 0) 947 return (B_TRUE); 948 else if (strlen(str) > 8 && strncmp("https://", str, 8) == 0) 949 return (B_TRUE); 950 else if (strlen(str) > 7 && strncmp("http://", str, 7) == 0) 951 return (B_TRUE); 952 953 return (B_FALSE); 954 } 955 956 957 #ifndef _KERNEL 958 #include <libzfs.h> 959 960 /* 961 * Returns a string describing the set of acceptable values for the given 962 * zfs property, or NULL if it cannot be set. 963 */ 964 const char * 965 zfs_prop_values(zfs_prop_t prop) 966 { 967 return (zfs_prop_table[prop].pd_values); 968 } 969 970 /* 971 * Returns TRUE if this property is a string type. Note that index types 972 * (compression, checksum) are treated as strings in userland, even though they 973 * are stored numerically on disk. 974 */ 975 int 976 zfs_prop_is_string(zfs_prop_t prop) 977 { 978 return (zfs_prop_table[prop].pd_proptype == PROP_TYPE_STRING || 979 zfs_prop_table[prop].pd_proptype == PROP_TYPE_INDEX); 980 } 981 982 /* 983 * Returns the column header for the given property. Used only in 984 * 'zfs list -o', but centralized here with the other property information. 985 */ 986 const char * 987 zfs_prop_column_name(zfs_prop_t prop) 988 { 989 return (zfs_prop_table[prop].pd_colname); 990 } 991 992 /* 993 * Returns whether the given property should be displayed right-justified for 994 * 'zfs list'. 995 */ 996 boolean_t 997 zfs_prop_align_right(zfs_prop_t prop) 998 { 999 return (zfs_prop_table[prop].pd_rightalign); 1000 } 1001 1002 #endif 1003 1004 #if defined(_KERNEL) 1005 1006 #include <sys/simd.h> 1007 1008 #if defined(HAVE_KERNEL_FPU_INTERNAL) 1009 uint8_t **zfs_kfpu_fpregs; 1010 EXPORT_SYMBOL(zfs_kfpu_fpregs); 1011 #endif /* defined(HAVE_KERNEL_FPU_INTERNAL) */ 1012 1013 extern int __init zcommon_init(void); 1014 extern void zcommon_fini(void); 1015 1016 int __init 1017 zcommon_init(void) 1018 { 1019 int error = kfpu_init(); 1020 if (error) 1021 return (error); 1022 1023 fletcher_4_init(); 1024 1025 return (0); 1026 } 1027 1028 void 1029 zcommon_fini(void) 1030 { 1031 fletcher_4_fini(); 1032 kfpu_fini(); 1033 } 1034 1035 #ifdef __FreeBSD__ 1036 module_init_early(zcommon_init); 1037 module_exit(zcommon_fini); 1038 #endif 1039 1040 #endif 1041 1042 /* zfs dataset property functions */ 1043 EXPORT_SYMBOL(zfs_userquota_prop_prefixes); 1044 EXPORT_SYMBOL(zfs_prop_init); 1045 EXPORT_SYMBOL(zfs_prop_get_type); 1046 EXPORT_SYMBOL(zfs_prop_get_table); 1047 EXPORT_SYMBOL(zfs_prop_delegatable); 1048 EXPORT_SYMBOL(zfs_prop_visible); 1049 1050 /* Dataset property functions shared between libzfs and kernel. */ 1051 EXPORT_SYMBOL(zfs_prop_default_string); 1052 EXPORT_SYMBOL(zfs_prop_default_numeric); 1053 EXPORT_SYMBOL(zfs_prop_readonly); 1054 EXPORT_SYMBOL(zfs_prop_inheritable); 1055 EXPORT_SYMBOL(zfs_prop_encryption_key_param); 1056 EXPORT_SYMBOL(zfs_prop_valid_keylocation); 1057 EXPORT_SYMBOL(zfs_prop_setonce); 1058 EXPORT_SYMBOL(zfs_prop_to_name); 1059 EXPORT_SYMBOL(zfs_name_to_prop); 1060 EXPORT_SYMBOL(zfs_prop_user); 1061 EXPORT_SYMBOL(zfs_prop_userquota); 1062 EXPORT_SYMBOL(zfs_prop_index_to_string); 1063 EXPORT_SYMBOL(zfs_prop_string_to_index); 1064 EXPORT_SYMBOL(zfs_prop_valid_for_type); 1065 EXPORT_SYMBOL(zfs_prop_written); 1066