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 /* 23 * Copyright 2010 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 27 #include <ctype.h> 28 #include <errno.h> 29 #include <libintl.h> 30 #include <math.h> 31 #include <stdio.h> 32 #include <stdlib.h> 33 #include <strings.h> 34 #include <unistd.h> 35 #include <stddef.h> 36 #include <zone.h> 37 #include <fcntl.h> 38 #include <sys/mntent.h> 39 #include <sys/mount.h> 40 #include <priv.h> 41 #include <pwd.h> 42 #include <grp.h> 43 #include <stddef.h> 44 #include <ucred.h> 45 #include <idmap.h> 46 #include <aclutils.h> 47 #include <directory.h> 48 49 #include <sys/dnode.h> 50 #include <sys/spa.h> 51 #include <sys/zap.h> 52 #include <libzfs.h> 53 54 #include "zfs_namecheck.h" 55 #include "zfs_prop.h" 56 #include "libzfs_impl.h" 57 #include "zfs_deleg.h" 58 59 static int userquota_propname_decode(const char *propname, boolean_t zoned, 60 zfs_userquota_prop_t *typep, char *domain, int domainlen, uint64_t *ridp); 61 62 /* 63 * Given a single type (not a mask of types), return the type in a human 64 * readable form. 65 */ 66 const char * 67 zfs_type_to_name(zfs_type_t type) 68 { 69 switch (type) { 70 case ZFS_TYPE_FILESYSTEM: 71 return (dgettext(TEXT_DOMAIN, "filesystem")); 72 case ZFS_TYPE_SNAPSHOT: 73 return (dgettext(TEXT_DOMAIN, "snapshot")); 74 case ZFS_TYPE_VOLUME: 75 return (dgettext(TEXT_DOMAIN, "volume")); 76 } 77 78 return (NULL); 79 } 80 81 /* 82 * Given a path and mask of ZFS types, return a string describing this dataset. 83 * This is used when we fail to open a dataset and we cannot get an exact type. 84 * We guess what the type would have been based on the path and the mask of 85 * acceptable types. 86 */ 87 static const char * 88 path_to_str(const char *path, int types) 89 { 90 /* 91 * When given a single type, always report the exact type. 92 */ 93 if (types == ZFS_TYPE_SNAPSHOT) 94 return (dgettext(TEXT_DOMAIN, "snapshot")); 95 if (types == ZFS_TYPE_FILESYSTEM) 96 return (dgettext(TEXT_DOMAIN, "filesystem")); 97 if (types == ZFS_TYPE_VOLUME) 98 return (dgettext(TEXT_DOMAIN, "volume")); 99 100 /* 101 * The user is requesting more than one type of dataset. If this is the 102 * case, consult the path itself. If we're looking for a snapshot, and 103 * a '@' is found, then report it as "snapshot". Otherwise, remove the 104 * snapshot attribute and try again. 105 */ 106 if (types & ZFS_TYPE_SNAPSHOT) { 107 if (strchr(path, '@') != NULL) 108 return (dgettext(TEXT_DOMAIN, "snapshot")); 109 return (path_to_str(path, types & ~ZFS_TYPE_SNAPSHOT)); 110 } 111 112 /* 113 * The user has requested either filesystems or volumes. 114 * We have no way of knowing a priori what type this would be, so always 115 * report it as "filesystem" or "volume", our two primitive types. 116 */ 117 if (types & ZFS_TYPE_FILESYSTEM) 118 return (dgettext(TEXT_DOMAIN, "filesystem")); 119 120 assert(types & ZFS_TYPE_VOLUME); 121 return (dgettext(TEXT_DOMAIN, "volume")); 122 } 123 124 /* 125 * Validate a ZFS path. This is used even before trying to open the dataset, to 126 * provide a more meaningful error message. We call zfs_error_aux() to 127 * explain exactly why the name was not valid. 128 */ 129 static int 130 zfs_validate_name(libzfs_handle_t *hdl, const char *path, int type, 131 boolean_t modifying) 132 { 133 namecheck_err_t why; 134 char what; 135 136 if (dataset_namecheck(path, &why, &what) != 0) { 137 if (hdl != NULL) { 138 switch (why) { 139 case NAME_ERR_TOOLONG: 140 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 141 "name is too long")); 142 break; 143 144 case NAME_ERR_LEADING_SLASH: 145 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 146 "leading slash in name")); 147 break; 148 149 case NAME_ERR_EMPTY_COMPONENT: 150 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 151 "empty component in name")); 152 break; 153 154 case NAME_ERR_TRAILING_SLASH: 155 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 156 "trailing slash in name")); 157 break; 158 159 case NAME_ERR_INVALCHAR: 160 zfs_error_aux(hdl, 161 dgettext(TEXT_DOMAIN, "invalid character " 162 "'%c' in name"), what); 163 break; 164 165 case NAME_ERR_MULTIPLE_AT: 166 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 167 "multiple '@' delimiters in name")); 168 break; 169 170 case NAME_ERR_NOLETTER: 171 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 172 "pool doesn't begin with a letter")); 173 break; 174 175 case NAME_ERR_RESERVED: 176 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 177 "name is reserved")); 178 break; 179 180 case NAME_ERR_DISKLIKE: 181 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 182 "reserved disk name")); 183 break; 184 } 185 } 186 187 return (0); 188 } 189 190 if (!(type & ZFS_TYPE_SNAPSHOT) && strchr(path, '@') != NULL) { 191 if (hdl != NULL) 192 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 193 "snapshot delimiter '@' in filesystem name")); 194 return (0); 195 } 196 197 if (type == ZFS_TYPE_SNAPSHOT && strchr(path, '@') == NULL) { 198 if (hdl != NULL) 199 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 200 "missing '@' delimiter in snapshot name")); 201 return (0); 202 } 203 204 if (modifying && strchr(path, '%') != NULL) { 205 if (hdl != NULL) 206 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 207 "invalid character %c in name"), '%'); 208 return (0); 209 } 210 211 return (-1); 212 } 213 214 int 215 zfs_name_valid(const char *name, zfs_type_t type) 216 { 217 if (type == ZFS_TYPE_POOL) 218 return (zpool_name_valid(NULL, B_FALSE, name)); 219 return (zfs_validate_name(NULL, name, type, B_FALSE)); 220 } 221 222 /* 223 * This function takes the raw DSL properties, and filters out the user-defined 224 * properties into a separate nvlist. 225 */ 226 static nvlist_t * 227 process_user_props(zfs_handle_t *zhp, nvlist_t *props) 228 { 229 libzfs_handle_t *hdl = zhp->zfs_hdl; 230 nvpair_t *elem; 231 nvlist_t *propval; 232 nvlist_t *nvl; 233 234 if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0) != 0) { 235 (void) no_memory(hdl); 236 return (NULL); 237 } 238 239 elem = NULL; 240 while ((elem = nvlist_next_nvpair(props, elem)) != NULL) { 241 if (!zfs_prop_user(nvpair_name(elem))) 242 continue; 243 244 verify(nvpair_value_nvlist(elem, &propval) == 0); 245 if (nvlist_add_nvlist(nvl, nvpair_name(elem), propval) != 0) { 246 nvlist_free(nvl); 247 (void) no_memory(hdl); 248 return (NULL); 249 } 250 } 251 252 return (nvl); 253 } 254 255 static zpool_handle_t * 256 zpool_add_handle(zfs_handle_t *zhp, const char *pool_name) 257 { 258 libzfs_handle_t *hdl = zhp->zfs_hdl; 259 zpool_handle_t *zph; 260 261 if ((zph = zpool_open_canfail(hdl, pool_name)) != NULL) { 262 if (hdl->libzfs_pool_handles != NULL) 263 zph->zpool_next = hdl->libzfs_pool_handles; 264 hdl->libzfs_pool_handles = zph; 265 } 266 return (zph); 267 } 268 269 static zpool_handle_t * 270 zpool_find_handle(zfs_handle_t *zhp, const char *pool_name, int len) 271 { 272 libzfs_handle_t *hdl = zhp->zfs_hdl; 273 zpool_handle_t *zph = hdl->libzfs_pool_handles; 274 275 while ((zph != NULL) && 276 (strncmp(pool_name, zpool_get_name(zph), len) != 0)) 277 zph = zph->zpool_next; 278 return (zph); 279 } 280 281 /* 282 * Returns a handle to the pool that contains the provided dataset. 283 * If a handle to that pool already exists then that handle is returned. 284 * Otherwise, a new handle is created and added to the list of handles. 285 */ 286 static zpool_handle_t * 287 zpool_handle(zfs_handle_t *zhp) 288 { 289 char *pool_name; 290 int len; 291 zpool_handle_t *zph; 292 293 len = strcspn(zhp->zfs_name, "/@") + 1; 294 pool_name = zfs_alloc(zhp->zfs_hdl, len); 295 (void) strlcpy(pool_name, zhp->zfs_name, len); 296 297 zph = zpool_find_handle(zhp, pool_name, len); 298 if (zph == NULL) 299 zph = zpool_add_handle(zhp, pool_name); 300 301 free(pool_name); 302 return (zph); 303 } 304 305 void 306 zpool_free_handles(libzfs_handle_t *hdl) 307 { 308 zpool_handle_t *next, *zph = hdl->libzfs_pool_handles; 309 310 while (zph != NULL) { 311 next = zph->zpool_next; 312 zpool_close(zph); 313 zph = next; 314 } 315 hdl->libzfs_pool_handles = NULL; 316 } 317 318 /* 319 * Utility function to gather stats (objset and zpl) for the given object. 320 */ 321 static int 322 get_stats_ioctl(zfs_handle_t *zhp, zfs_cmd_t *zc) 323 { 324 libzfs_handle_t *hdl = zhp->zfs_hdl; 325 326 (void) strlcpy(zc->zc_name, zhp->zfs_name, sizeof (zc->zc_name)); 327 328 while (ioctl(hdl->libzfs_fd, ZFS_IOC_OBJSET_STATS, zc) != 0) { 329 if (errno == ENOMEM) { 330 if (zcmd_expand_dst_nvlist(hdl, zc) != 0) { 331 return (-1); 332 } 333 } else { 334 return (-1); 335 } 336 } 337 return (0); 338 } 339 340 /* 341 * Utility function to get the received properties of the given object. 342 */ 343 static int 344 get_recvd_props_ioctl(zfs_handle_t *zhp) 345 { 346 libzfs_handle_t *hdl = zhp->zfs_hdl; 347 nvlist_t *recvdprops; 348 zfs_cmd_t zc = { 0 }; 349 int err; 350 351 if (zcmd_alloc_dst_nvlist(hdl, &zc, 0) != 0) 352 return (-1); 353 354 (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 355 356 while (ioctl(hdl->libzfs_fd, ZFS_IOC_OBJSET_RECVD_PROPS, &zc) != 0) { 357 if (errno == ENOMEM) { 358 if (zcmd_expand_dst_nvlist(hdl, &zc) != 0) { 359 return (-1); 360 } 361 } else { 362 zcmd_free_nvlists(&zc); 363 return (-1); 364 } 365 } 366 367 err = zcmd_read_dst_nvlist(zhp->zfs_hdl, &zc, &recvdprops); 368 zcmd_free_nvlists(&zc); 369 if (err != 0) 370 return (-1); 371 372 nvlist_free(zhp->zfs_recvd_props); 373 zhp->zfs_recvd_props = recvdprops; 374 375 return (0); 376 } 377 378 static int 379 put_stats_zhdl(zfs_handle_t *zhp, zfs_cmd_t *zc) 380 { 381 nvlist_t *allprops, *userprops; 382 383 zhp->zfs_dmustats = zc->zc_objset_stats; /* structure assignment */ 384 385 if (zcmd_read_dst_nvlist(zhp->zfs_hdl, zc, &allprops) != 0) { 386 return (-1); 387 } 388 389 /* 390 * XXX Why do we store the user props separately, in addition to 391 * storing them in zfs_props? 392 */ 393 if ((userprops = process_user_props(zhp, allprops)) == NULL) { 394 nvlist_free(allprops); 395 return (-1); 396 } 397 398 nvlist_free(zhp->zfs_props); 399 nvlist_free(zhp->zfs_user_props); 400 401 zhp->zfs_props = allprops; 402 zhp->zfs_user_props = userprops; 403 404 return (0); 405 } 406 407 static int 408 get_stats(zfs_handle_t *zhp) 409 { 410 int rc = 0; 411 zfs_cmd_t zc = { 0 }; 412 413 if (zcmd_alloc_dst_nvlist(zhp->zfs_hdl, &zc, 0) != 0) 414 return (-1); 415 if (get_stats_ioctl(zhp, &zc) != 0) 416 rc = -1; 417 else if (put_stats_zhdl(zhp, &zc) != 0) 418 rc = -1; 419 zcmd_free_nvlists(&zc); 420 return (rc); 421 } 422 423 /* 424 * Refresh the properties currently stored in the handle. 425 */ 426 void 427 zfs_refresh_properties(zfs_handle_t *zhp) 428 { 429 (void) get_stats(zhp); 430 } 431 432 /* 433 * Makes a handle from the given dataset name. Used by zfs_open() and 434 * zfs_iter_* to create child handles on the fly. 435 */ 436 static int 437 make_dataset_handle_common(zfs_handle_t *zhp, zfs_cmd_t *zc) 438 { 439 if (put_stats_zhdl(zhp, zc) != 0) 440 return (-1); 441 442 /* 443 * We've managed to open the dataset and gather statistics. Determine 444 * the high-level type. 445 */ 446 if (zhp->zfs_dmustats.dds_type == DMU_OST_ZVOL) 447 zhp->zfs_head_type = ZFS_TYPE_VOLUME; 448 else if (zhp->zfs_dmustats.dds_type == DMU_OST_ZFS) 449 zhp->zfs_head_type = ZFS_TYPE_FILESYSTEM; 450 else 451 abort(); 452 453 if (zhp->zfs_dmustats.dds_is_snapshot) 454 zhp->zfs_type = ZFS_TYPE_SNAPSHOT; 455 else if (zhp->zfs_dmustats.dds_type == DMU_OST_ZVOL) 456 zhp->zfs_type = ZFS_TYPE_VOLUME; 457 else if (zhp->zfs_dmustats.dds_type == DMU_OST_ZFS) 458 zhp->zfs_type = ZFS_TYPE_FILESYSTEM; 459 else 460 abort(); /* we should never see any other types */ 461 462 zhp->zpool_hdl = zpool_handle(zhp); 463 return (0); 464 } 465 466 zfs_handle_t * 467 make_dataset_handle(libzfs_handle_t *hdl, const char *path) 468 { 469 zfs_cmd_t zc = { 0 }; 470 471 zfs_handle_t *zhp = calloc(sizeof (zfs_handle_t), 1); 472 473 if (zhp == NULL) 474 return (NULL); 475 476 zhp->zfs_hdl = hdl; 477 (void) strlcpy(zhp->zfs_name, path, sizeof (zhp->zfs_name)); 478 if (zcmd_alloc_dst_nvlist(hdl, &zc, 0) != 0) { 479 free(zhp); 480 return (NULL); 481 } 482 if (get_stats_ioctl(zhp, &zc) == -1) { 483 zcmd_free_nvlists(&zc); 484 free(zhp); 485 return (NULL); 486 } 487 if (make_dataset_handle_common(zhp, &zc) == -1) { 488 free(zhp); 489 zhp = NULL; 490 } 491 zcmd_free_nvlists(&zc); 492 return (zhp); 493 } 494 495 static zfs_handle_t * 496 make_dataset_handle_zc(libzfs_handle_t *hdl, zfs_cmd_t *zc) 497 { 498 zfs_handle_t *zhp = calloc(sizeof (zfs_handle_t), 1); 499 500 if (zhp == NULL) 501 return (NULL); 502 503 zhp->zfs_hdl = hdl; 504 (void) strlcpy(zhp->zfs_name, zc->zc_name, sizeof (zhp->zfs_name)); 505 if (make_dataset_handle_common(zhp, zc) == -1) { 506 free(zhp); 507 return (NULL); 508 } 509 return (zhp); 510 } 511 512 /* 513 * Opens the given snapshot, filesystem, or volume. The 'types' 514 * argument is a mask of acceptable types. The function will print an 515 * appropriate error message and return NULL if it can't be opened. 516 */ 517 zfs_handle_t * 518 zfs_open(libzfs_handle_t *hdl, const char *path, int types) 519 { 520 zfs_handle_t *zhp; 521 char errbuf[1024]; 522 523 (void) snprintf(errbuf, sizeof (errbuf), 524 dgettext(TEXT_DOMAIN, "cannot open '%s'"), path); 525 526 /* 527 * Validate the name before we even try to open it. 528 */ 529 if (!zfs_validate_name(hdl, path, ZFS_TYPE_DATASET, B_FALSE)) { 530 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 531 "invalid dataset name")); 532 (void) zfs_error(hdl, EZFS_INVALIDNAME, errbuf); 533 return (NULL); 534 } 535 536 /* 537 * Try to get stats for the dataset, which will tell us if it exists. 538 */ 539 errno = 0; 540 if ((zhp = make_dataset_handle(hdl, path)) == NULL) { 541 (void) zfs_standard_error(hdl, errno, errbuf); 542 return (NULL); 543 } 544 545 if (!(types & zhp->zfs_type)) { 546 (void) zfs_error(hdl, EZFS_BADTYPE, errbuf); 547 zfs_close(zhp); 548 return (NULL); 549 } 550 551 return (zhp); 552 } 553 554 /* 555 * Release a ZFS handle. Nothing to do but free the associated memory. 556 */ 557 void 558 zfs_close(zfs_handle_t *zhp) 559 { 560 if (zhp->zfs_mntopts) 561 free(zhp->zfs_mntopts); 562 nvlist_free(zhp->zfs_props); 563 nvlist_free(zhp->zfs_user_props); 564 nvlist_free(zhp->zfs_recvd_props); 565 free(zhp); 566 } 567 568 typedef struct mnttab_node { 569 struct mnttab mtn_mt; 570 avl_node_t mtn_node; 571 } mnttab_node_t; 572 573 static int 574 libzfs_mnttab_cache_compare(const void *arg1, const void *arg2) 575 { 576 const mnttab_node_t *mtn1 = arg1; 577 const mnttab_node_t *mtn2 = arg2; 578 int rv; 579 580 rv = strcmp(mtn1->mtn_mt.mnt_special, mtn2->mtn_mt.mnt_special); 581 582 if (rv == 0) 583 return (0); 584 return (rv > 0 ? 1 : -1); 585 } 586 587 void 588 libzfs_mnttab_init(libzfs_handle_t *hdl) 589 { 590 assert(avl_numnodes(&hdl->libzfs_mnttab_cache) == 0); 591 avl_create(&hdl->libzfs_mnttab_cache, libzfs_mnttab_cache_compare, 592 sizeof (mnttab_node_t), offsetof(mnttab_node_t, mtn_node)); 593 } 594 595 void 596 libzfs_mnttab_update(libzfs_handle_t *hdl) 597 { 598 struct mnttab entry; 599 600 rewind(hdl->libzfs_mnttab); 601 while (getmntent(hdl->libzfs_mnttab, &entry) == 0) { 602 mnttab_node_t *mtn; 603 604 if (strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0) 605 continue; 606 mtn = zfs_alloc(hdl, sizeof (mnttab_node_t)); 607 mtn->mtn_mt.mnt_special = zfs_strdup(hdl, entry.mnt_special); 608 mtn->mtn_mt.mnt_mountp = zfs_strdup(hdl, entry.mnt_mountp); 609 mtn->mtn_mt.mnt_fstype = zfs_strdup(hdl, entry.mnt_fstype); 610 mtn->mtn_mt.mnt_mntopts = zfs_strdup(hdl, entry.mnt_mntopts); 611 avl_add(&hdl->libzfs_mnttab_cache, mtn); 612 } 613 } 614 615 void 616 libzfs_mnttab_fini(libzfs_handle_t *hdl) 617 { 618 void *cookie = NULL; 619 mnttab_node_t *mtn; 620 621 while (mtn = avl_destroy_nodes(&hdl->libzfs_mnttab_cache, &cookie)) { 622 free(mtn->mtn_mt.mnt_special); 623 free(mtn->mtn_mt.mnt_mountp); 624 free(mtn->mtn_mt.mnt_fstype); 625 free(mtn->mtn_mt.mnt_mntopts); 626 free(mtn); 627 } 628 avl_destroy(&hdl->libzfs_mnttab_cache); 629 } 630 631 void 632 libzfs_mnttab_cache(libzfs_handle_t *hdl, boolean_t enable) 633 { 634 hdl->libzfs_mnttab_enable = enable; 635 } 636 637 int 638 libzfs_mnttab_find(libzfs_handle_t *hdl, const char *fsname, 639 struct mnttab *entry) 640 { 641 mnttab_node_t find; 642 mnttab_node_t *mtn; 643 644 if (!hdl->libzfs_mnttab_enable) { 645 struct mnttab srch = { 0 }; 646 647 if (avl_numnodes(&hdl->libzfs_mnttab_cache)) 648 libzfs_mnttab_fini(hdl); 649 rewind(hdl->libzfs_mnttab); 650 srch.mnt_special = (char *)fsname; 651 srch.mnt_fstype = MNTTYPE_ZFS; 652 if (getmntany(hdl->libzfs_mnttab, entry, &srch) == 0) 653 return (0); 654 else 655 return (ENOENT); 656 } 657 658 if (avl_numnodes(&hdl->libzfs_mnttab_cache) == 0) 659 libzfs_mnttab_update(hdl); 660 661 find.mtn_mt.mnt_special = (char *)fsname; 662 mtn = avl_find(&hdl->libzfs_mnttab_cache, &find, NULL); 663 if (mtn) { 664 *entry = mtn->mtn_mt; 665 return (0); 666 } 667 return (ENOENT); 668 } 669 670 void 671 libzfs_mnttab_add(libzfs_handle_t *hdl, const char *special, 672 const char *mountp, const char *mntopts) 673 { 674 mnttab_node_t *mtn; 675 676 if (avl_numnodes(&hdl->libzfs_mnttab_cache) == 0) 677 return; 678 mtn = zfs_alloc(hdl, sizeof (mnttab_node_t)); 679 mtn->mtn_mt.mnt_special = zfs_strdup(hdl, special); 680 mtn->mtn_mt.mnt_mountp = zfs_strdup(hdl, mountp); 681 mtn->mtn_mt.mnt_fstype = zfs_strdup(hdl, MNTTYPE_ZFS); 682 mtn->mtn_mt.mnt_mntopts = zfs_strdup(hdl, mntopts); 683 avl_add(&hdl->libzfs_mnttab_cache, mtn); 684 } 685 686 void 687 libzfs_mnttab_remove(libzfs_handle_t *hdl, const char *fsname) 688 { 689 mnttab_node_t find; 690 mnttab_node_t *ret; 691 692 find.mtn_mt.mnt_special = (char *)fsname; 693 if (ret = avl_find(&hdl->libzfs_mnttab_cache, (void *)&find, NULL)) { 694 avl_remove(&hdl->libzfs_mnttab_cache, ret); 695 free(ret->mtn_mt.mnt_special); 696 free(ret->mtn_mt.mnt_mountp); 697 free(ret->mtn_mt.mnt_fstype); 698 free(ret->mtn_mt.mnt_mntopts); 699 free(ret); 700 } 701 } 702 703 int 704 zfs_spa_version(zfs_handle_t *zhp, int *spa_version) 705 { 706 zpool_handle_t *zpool_handle = zhp->zpool_hdl; 707 708 if (zpool_handle == NULL) 709 return (-1); 710 711 *spa_version = zpool_get_prop_int(zpool_handle, 712 ZPOOL_PROP_VERSION, NULL); 713 return (0); 714 } 715 716 /* 717 * The choice of reservation property depends on the SPA version. 718 */ 719 static int 720 zfs_which_resv_prop(zfs_handle_t *zhp, zfs_prop_t *resv_prop) 721 { 722 int spa_version; 723 724 if (zfs_spa_version(zhp, &spa_version) < 0) 725 return (-1); 726 727 if (spa_version >= SPA_VERSION_REFRESERVATION) 728 *resv_prop = ZFS_PROP_REFRESERVATION; 729 else 730 *resv_prop = ZFS_PROP_RESERVATION; 731 732 return (0); 733 } 734 735 /* 736 * Given an nvlist of properties to set, validates that they are correct, and 737 * parses any numeric properties (index, boolean, etc) if they are specified as 738 * strings. 739 */ 740 nvlist_t * 741 zfs_valid_proplist(libzfs_handle_t *hdl, zfs_type_t type, nvlist_t *nvl, 742 uint64_t zoned, zfs_handle_t *zhp, const char *errbuf) 743 { 744 nvpair_t *elem; 745 uint64_t intval; 746 char *strval; 747 zfs_prop_t prop; 748 nvlist_t *ret; 749 int chosen_normal = -1; 750 int chosen_utf = -1; 751 752 if (nvlist_alloc(&ret, NV_UNIQUE_NAME, 0) != 0) { 753 (void) no_memory(hdl); 754 return (NULL); 755 } 756 757 /* 758 * Make sure this property is valid and applies to this type. 759 */ 760 761 elem = NULL; 762 while ((elem = nvlist_next_nvpair(nvl, elem)) != NULL) { 763 const char *propname = nvpair_name(elem); 764 765 prop = zfs_name_to_prop(propname); 766 if (prop == ZPROP_INVAL && zfs_prop_user(propname)) { 767 /* 768 * This is a user property: make sure it's a 769 * string, and that it's less than ZAP_MAXNAMELEN. 770 */ 771 if (nvpair_type(elem) != DATA_TYPE_STRING) { 772 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 773 "'%s' must be a string"), propname); 774 (void) zfs_error(hdl, EZFS_BADPROP, errbuf); 775 goto error; 776 } 777 778 if (strlen(nvpair_name(elem)) >= ZAP_MAXNAMELEN) { 779 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 780 "property name '%s' is too long"), 781 propname); 782 (void) zfs_error(hdl, EZFS_BADPROP, errbuf); 783 goto error; 784 } 785 786 (void) nvpair_value_string(elem, &strval); 787 if (nvlist_add_string(ret, propname, strval) != 0) { 788 (void) no_memory(hdl); 789 goto error; 790 } 791 continue; 792 } 793 794 /* 795 * Currently, only user properties can be modified on 796 * snapshots. 797 */ 798 if (type == ZFS_TYPE_SNAPSHOT) { 799 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 800 "this property can not be modified for snapshots")); 801 (void) zfs_error(hdl, EZFS_PROPTYPE, errbuf); 802 goto error; 803 } 804 805 if (prop == ZPROP_INVAL && zfs_prop_userquota(propname)) { 806 zfs_userquota_prop_t uqtype; 807 char newpropname[128]; 808 char domain[128]; 809 uint64_t rid; 810 uint64_t valary[3]; 811 812 if (userquota_propname_decode(propname, zoned, 813 &uqtype, domain, sizeof (domain), &rid) != 0) { 814 zfs_error_aux(hdl, 815 dgettext(TEXT_DOMAIN, 816 "'%s' has an invalid user/group name"), 817 propname); 818 (void) zfs_error(hdl, EZFS_BADPROP, errbuf); 819 goto error; 820 } 821 822 if (uqtype != ZFS_PROP_USERQUOTA && 823 uqtype != ZFS_PROP_GROUPQUOTA) { 824 zfs_error_aux(hdl, 825 dgettext(TEXT_DOMAIN, "'%s' is readonly"), 826 propname); 827 (void) zfs_error(hdl, EZFS_PROPREADONLY, 828 errbuf); 829 goto error; 830 } 831 832 if (nvpair_type(elem) == DATA_TYPE_STRING) { 833 (void) nvpair_value_string(elem, &strval); 834 if (strcmp(strval, "none") == 0) { 835 intval = 0; 836 } else if (zfs_nicestrtonum(hdl, 837 strval, &intval) != 0) { 838 (void) zfs_error(hdl, 839 EZFS_BADPROP, errbuf); 840 goto error; 841 } 842 } else if (nvpair_type(elem) == 843 DATA_TYPE_UINT64) { 844 (void) nvpair_value_uint64(elem, &intval); 845 if (intval == 0) { 846 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 847 "use 'none' to disable " 848 "userquota/groupquota")); 849 goto error; 850 } 851 } else { 852 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 853 "'%s' must be a number"), propname); 854 (void) zfs_error(hdl, EZFS_BADPROP, errbuf); 855 goto error; 856 } 857 858 /* 859 * Encode the prop name as 860 * userquota@<hex-rid>-domain, to make it easy 861 * for the kernel to decode. 862 */ 863 (void) snprintf(newpropname, sizeof (newpropname), 864 "%s%llx-%s", zfs_userquota_prop_prefixes[uqtype], 865 (longlong_t)rid, domain); 866 valary[0] = uqtype; 867 valary[1] = rid; 868 valary[2] = intval; 869 if (nvlist_add_uint64_array(ret, newpropname, 870 valary, 3) != 0) { 871 (void) no_memory(hdl); 872 goto error; 873 } 874 continue; 875 } 876 877 if (prop == ZPROP_INVAL) { 878 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 879 "invalid property '%s'"), propname); 880 (void) zfs_error(hdl, EZFS_BADPROP, errbuf); 881 goto error; 882 } 883 884 if (!zfs_prop_valid_for_type(prop, type)) { 885 zfs_error_aux(hdl, 886 dgettext(TEXT_DOMAIN, "'%s' does not " 887 "apply to datasets of this type"), propname); 888 (void) zfs_error(hdl, EZFS_PROPTYPE, errbuf); 889 goto error; 890 } 891 892 if (zfs_prop_readonly(prop) && 893 (!zfs_prop_setonce(prop) || zhp != NULL)) { 894 zfs_error_aux(hdl, 895 dgettext(TEXT_DOMAIN, "'%s' is readonly"), 896 propname); 897 (void) zfs_error(hdl, EZFS_PROPREADONLY, errbuf); 898 goto error; 899 } 900 901 if (zprop_parse_value(hdl, elem, prop, type, ret, 902 &strval, &intval, errbuf) != 0) 903 goto error; 904 905 /* 906 * Perform some additional checks for specific properties. 907 */ 908 switch (prop) { 909 case ZFS_PROP_VERSION: 910 { 911 int version; 912 913 if (zhp == NULL) 914 break; 915 version = zfs_prop_get_int(zhp, ZFS_PROP_VERSION); 916 if (intval < version) { 917 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 918 "Can not downgrade; already at version %u"), 919 version); 920 (void) zfs_error(hdl, EZFS_BADPROP, errbuf); 921 goto error; 922 } 923 break; 924 } 925 926 case ZFS_PROP_RECORDSIZE: 927 case ZFS_PROP_VOLBLOCKSIZE: 928 /* must be power of two within SPA_{MIN,MAX}BLOCKSIZE */ 929 if (intval < SPA_MINBLOCKSIZE || 930 intval > SPA_MAXBLOCKSIZE || !ISP2(intval)) { 931 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 932 "'%s' must be power of 2 from %u " 933 "to %uk"), propname, 934 (uint_t)SPA_MINBLOCKSIZE, 935 (uint_t)SPA_MAXBLOCKSIZE >> 10); 936 (void) zfs_error(hdl, EZFS_BADPROP, errbuf); 937 goto error; 938 } 939 break; 940 941 case ZFS_PROP_SHAREISCSI: 942 if (strcmp(strval, "off") != 0 && 943 strcmp(strval, "on") != 0 && 944 strcmp(strval, "type=disk") != 0) { 945 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 946 "'%s' must be 'on', 'off', or 'type=disk'"), 947 propname); 948 (void) zfs_error(hdl, EZFS_BADPROP, errbuf); 949 goto error; 950 } 951 952 break; 953 954 case ZFS_PROP_MLSLABEL: 955 { 956 /* 957 * Verify the mlslabel string and convert to 958 * internal hex label string. 959 */ 960 961 m_label_t *new_sl; 962 char *hex = NULL; /* internal label string */ 963 964 /* Default value is already OK. */ 965 if (strcasecmp(strval, ZFS_MLSLABEL_DEFAULT) == 0) 966 break; 967 968 /* Verify the label can be converted to binary form */ 969 if (((new_sl = m_label_alloc(MAC_LABEL)) == NULL) || 970 (str_to_label(strval, &new_sl, MAC_LABEL, 971 L_NO_CORRECTION, NULL) == -1)) { 972 goto badlabel; 973 } 974 975 /* Now translate to hex internal label string */ 976 if (label_to_str(new_sl, &hex, M_INTERNAL, 977 DEF_NAMES) != 0) { 978 if (hex) 979 free(hex); 980 goto badlabel; 981 } 982 m_label_free(new_sl); 983 984 /* If string is already in internal form, we're done. */ 985 if (strcmp(strval, hex) == 0) { 986 free(hex); 987 break; 988 } 989 990 /* Replace the label string with the internal form. */ 991 (void) nvlist_remove(ret, zfs_prop_to_name(prop), 992 DATA_TYPE_STRING); 993 verify(nvlist_add_string(ret, zfs_prop_to_name(prop), 994 hex) == 0); 995 free(hex); 996 997 break; 998 999 badlabel: 1000 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1001 "invalid mlslabel '%s'"), strval); 1002 (void) zfs_error(hdl, EZFS_BADPROP, errbuf); 1003 m_label_free(new_sl); /* OK if null */ 1004 goto error; 1005 1006 } 1007 1008 case ZFS_PROP_MOUNTPOINT: 1009 { 1010 namecheck_err_t why; 1011 1012 if (strcmp(strval, ZFS_MOUNTPOINT_NONE) == 0 || 1013 strcmp(strval, ZFS_MOUNTPOINT_LEGACY) == 0) 1014 break; 1015 1016 if (mountpoint_namecheck(strval, &why)) { 1017 switch (why) { 1018 case NAME_ERR_LEADING_SLASH: 1019 zfs_error_aux(hdl, 1020 dgettext(TEXT_DOMAIN, 1021 "'%s' must be an absolute path, " 1022 "'none', or 'legacy'"), propname); 1023 break; 1024 case NAME_ERR_TOOLONG: 1025 zfs_error_aux(hdl, 1026 dgettext(TEXT_DOMAIN, 1027 "component of '%s' is too long"), 1028 propname); 1029 break; 1030 } 1031 (void) zfs_error(hdl, EZFS_BADPROP, errbuf); 1032 goto error; 1033 } 1034 } 1035 1036 /*FALLTHRU*/ 1037 1038 case ZFS_PROP_SHARESMB: 1039 case ZFS_PROP_SHARENFS: 1040 /* 1041 * For the mountpoint and sharenfs or sharesmb 1042 * properties, check if it can be set in a 1043 * global/non-global zone based on 1044 * the zoned property value: 1045 * 1046 * global zone non-global zone 1047 * -------------------------------------------------- 1048 * zoned=on mountpoint (no) mountpoint (yes) 1049 * sharenfs (no) sharenfs (no) 1050 * sharesmb (no) sharesmb (no) 1051 * 1052 * zoned=off mountpoint (yes) N/A 1053 * sharenfs (yes) 1054 * sharesmb (yes) 1055 */ 1056 if (zoned) { 1057 if (getzoneid() == GLOBAL_ZONEID) { 1058 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1059 "'%s' cannot be set on " 1060 "dataset in a non-global zone"), 1061 propname); 1062 (void) zfs_error(hdl, EZFS_ZONED, 1063 errbuf); 1064 goto error; 1065 } else if (prop == ZFS_PROP_SHARENFS || 1066 prop == ZFS_PROP_SHARESMB) { 1067 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1068 "'%s' cannot be set in " 1069 "a non-global zone"), propname); 1070 (void) zfs_error(hdl, EZFS_ZONED, 1071 errbuf); 1072 goto error; 1073 } 1074 } else if (getzoneid() != GLOBAL_ZONEID) { 1075 /* 1076 * If zoned property is 'off', this must be in 1077 * a global zone. If not, something is wrong. 1078 */ 1079 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1080 "'%s' cannot be set while dataset " 1081 "'zoned' property is set"), propname); 1082 (void) zfs_error(hdl, EZFS_ZONED, errbuf); 1083 goto error; 1084 } 1085 1086 /* 1087 * At this point, it is legitimate to set the 1088 * property. Now we want to make sure that the 1089 * property value is valid if it is sharenfs. 1090 */ 1091 if ((prop == ZFS_PROP_SHARENFS || 1092 prop == ZFS_PROP_SHARESMB) && 1093 strcmp(strval, "on") != 0 && 1094 strcmp(strval, "off") != 0) { 1095 zfs_share_proto_t proto; 1096 1097 if (prop == ZFS_PROP_SHARESMB) 1098 proto = PROTO_SMB; 1099 else 1100 proto = PROTO_NFS; 1101 1102 /* 1103 * Must be an valid sharing protocol 1104 * option string so init the libshare 1105 * in order to enable the parser and 1106 * then parse the options. We use the 1107 * control API since we don't care about 1108 * the current configuration and don't 1109 * want the overhead of loading it 1110 * until we actually do something. 1111 */ 1112 1113 if (zfs_init_libshare(hdl, 1114 SA_INIT_CONTROL_API) != SA_OK) { 1115 /* 1116 * An error occurred so we can't do 1117 * anything 1118 */ 1119 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1120 "'%s' cannot be set: problem " 1121 "in share initialization"), 1122 propname); 1123 (void) zfs_error(hdl, EZFS_BADPROP, 1124 errbuf); 1125 goto error; 1126 } 1127 1128 if (zfs_parse_options(strval, proto) != SA_OK) { 1129 /* 1130 * There was an error in parsing so 1131 * deal with it by issuing an error 1132 * message and leaving after 1133 * uninitializing the the libshare 1134 * interface. 1135 */ 1136 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1137 "'%s' cannot be set to invalid " 1138 "options"), propname); 1139 (void) zfs_error(hdl, EZFS_BADPROP, 1140 errbuf); 1141 zfs_uninit_libshare(hdl); 1142 goto error; 1143 } 1144 zfs_uninit_libshare(hdl); 1145 } 1146 1147 break; 1148 case ZFS_PROP_UTF8ONLY: 1149 chosen_utf = (int)intval; 1150 break; 1151 case ZFS_PROP_NORMALIZE: 1152 chosen_normal = (int)intval; 1153 break; 1154 } 1155 1156 /* 1157 * For changes to existing volumes, we have some additional 1158 * checks to enforce. 1159 */ 1160 if (type == ZFS_TYPE_VOLUME && zhp != NULL) { 1161 uint64_t volsize = zfs_prop_get_int(zhp, 1162 ZFS_PROP_VOLSIZE); 1163 uint64_t blocksize = zfs_prop_get_int(zhp, 1164 ZFS_PROP_VOLBLOCKSIZE); 1165 char buf[64]; 1166 1167 switch (prop) { 1168 case ZFS_PROP_RESERVATION: 1169 case ZFS_PROP_REFRESERVATION: 1170 if (intval > volsize) { 1171 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1172 "'%s' is greater than current " 1173 "volume size"), propname); 1174 (void) zfs_error(hdl, EZFS_BADPROP, 1175 errbuf); 1176 goto error; 1177 } 1178 break; 1179 1180 case ZFS_PROP_VOLSIZE: 1181 if (intval % blocksize != 0) { 1182 zfs_nicenum(blocksize, buf, 1183 sizeof (buf)); 1184 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1185 "'%s' must be a multiple of " 1186 "volume block size (%s)"), 1187 propname, buf); 1188 (void) zfs_error(hdl, EZFS_BADPROP, 1189 errbuf); 1190 goto error; 1191 } 1192 1193 if (intval == 0) { 1194 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1195 "'%s' cannot be zero"), 1196 propname); 1197 (void) zfs_error(hdl, EZFS_BADPROP, 1198 errbuf); 1199 goto error; 1200 } 1201 break; 1202 } 1203 } 1204 } 1205 1206 /* 1207 * If normalization was chosen, but no UTF8 choice was made, 1208 * enforce rejection of non-UTF8 names. 1209 * 1210 * If normalization was chosen, but rejecting non-UTF8 names 1211 * was explicitly not chosen, it is an error. 1212 */ 1213 if (chosen_normal > 0 && chosen_utf < 0) { 1214 if (nvlist_add_uint64(ret, 1215 zfs_prop_to_name(ZFS_PROP_UTF8ONLY), 1) != 0) { 1216 (void) no_memory(hdl); 1217 goto error; 1218 } 1219 } else if (chosen_normal > 0 && chosen_utf == 0) { 1220 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1221 "'%s' must be set 'on' if normalization chosen"), 1222 zfs_prop_to_name(ZFS_PROP_UTF8ONLY)); 1223 (void) zfs_error(hdl, EZFS_BADPROP, errbuf); 1224 goto error; 1225 } 1226 1227 /* 1228 * If this is an existing volume, and someone is setting the volsize, 1229 * make sure that it matches the reservation, or add it if necessary. 1230 */ 1231 if (zhp != NULL && type == ZFS_TYPE_VOLUME && 1232 nvlist_lookup_uint64(ret, zfs_prop_to_name(ZFS_PROP_VOLSIZE), 1233 &intval) == 0) { 1234 uint64_t old_volsize = zfs_prop_get_int(zhp, 1235 ZFS_PROP_VOLSIZE); 1236 uint64_t old_reservation; 1237 uint64_t new_reservation; 1238 zfs_prop_t resv_prop; 1239 1240 if (zfs_which_resv_prop(zhp, &resv_prop) < 0) 1241 goto error; 1242 old_reservation = zfs_prop_get_int(zhp, resv_prop); 1243 1244 if (old_volsize == old_reservation && 1245 nvlist_lookup_uint64(ret, zfs_prop_to_name(resv_prop), 1246 &new_reservation) != 0) { 1247 if (nvlist_add_uint64(ret, 1248 zfs_prop_to_name(resv_prop), intval) != 0) { 1249 (void) no_memory(hdl); 1250 goto error; 1251 } 1252 } 1253 } 1254 return (ret); 1255 1256 error: 1257 nvlist_free(ret); 1258 return (NULL); 1259 } 1260 1261 void 1262 zfs_setprop_error(libzfs_handle_t *hdl, zfs_prop_t prop, int err, 1263 char *errbuf) 1264 { 1265 switch (err) { 1266 1267 case ENOSPC: 1268 /* 1269 * For quotas and reservations, ENOSPC indicates 1270 * something different; setting a quota or reservation 1271 * doesn't use any disk space. 1272 */ 1273 switch (prop) { 1274 case ZFS_PROP_QUOTA: 1275 case ZFS_PROP_REFQUOTA: 1276 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1277 "size is less than current used or " 1278 "reserved space")); 1279 (void) zfs_error(hdl, EZFS_PROPSPACE, errbuf); 1280 break; 1281 1282 case ZFS_PROP_RESERVATION: 1283 case ZFS_PROP_REFRESERVATION: 1284 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1285 "size is greater than available space")); 1286 (void) zfs_error(hdl, EZFS_PROPSPACE, errbuf); 1287 break; 1288 1289 default: 1290 (void) zfs_standard_error(hdl, err, errbuf); 1291 break; 1292 } 1293 break; 1294 1295 case EBUSY: 1296 (void) zfs_standard_error(hdl, EBUSY, errbuf); 1297 break; 1298 1299 case EROFS: 1300 (void) zfs_error(hdl, EZFS_DSREADONLY, errbuf); 1301 break; 1302 1303 case ENOTSUP: 1304 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1305 "pool and or dataset must be upgraded to set this " 1306 "property or value")); 1307 (void) zfs_error(hdl, EZFS_BADVERSION, errbuf); 1308 break; 1309 1310 case ERANGE: 1311 if (prop == ZFS_PROP_COMPRESSION) { 1312 (void) zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1313 "property setting is not allowed on " 1314 "bootable datasets")); 1315 (void) zfs_error(hdl, EZFS_NOTSUP, errbuf); 1316 } else { 1317 (void) zfs_standard_error(hdl, err, errbuf); 1318 } 1319 break; 1320 1321 case EOVERFLOW: 1322 /* 1323 * This platform can't address a volume this big. 1324 */ 1325 #ifdef _ILP32 1326 if (prop == ZFS_PROP_VOLSIZE) { 1327 (void) zfs_error(hdl, EZFS_VOLTOOBIG, errbuf); 1328 break; 1329 } 1330 #endif 1331 /* FALLTHROUGH */ 1332 default: 1333 (void) zfs_standard_error(hdl, err, errbuf); 1334 } 1335 } 1336 1337 /* 1338 * Given a property name and value, set the property for the given dataset. 1339 */ 1340 int 1341 zfs_prop_set(zfs_handle_t *zhp, const char *propname, const char *propval) 1342 { 1343 zfs_cmd_t zc = { 0 }; 1344 int ret = -1; 1345 prop_changelist_t *cl = NULL; 1346 char errbuf[1024]; 1347 libzfs_handle_t *hdl = zhp->zfs_hdl; 1348 nvlist_t *nvl = NULL, *realprops; 1349 zfs_prop_t prop; 1350 boolean_t do_prefix; 1351 uint64_t idx; 1352 1353 (void) snprintf(errbuf, sizeof (errbuf), 1354 dgettext(TEXT_DOMAIN, "cannot set property for '%s'"), 1355 zhp->zfs_name); 1356 1357 if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0) != 0 || 1358 nvlist_add_string(nvl, propname, propval) != 0) { 1359 (void) no_memory(hdl); 1360 goto error; 1361 } 1362 1363 if ((realprops = zfs_valid_proplist(hdl, zhp->zfs_type, nvl, 1364 zfs_prop_get_int(zhp, ZFS_PROP_ZONED), zhp, errbuf)) == NULL) 1365 goto error; 1366 1367 nvlist_free(nvl); 1368 nvl = realprops; 1369 1370 prop = zfs_name_to_prop(propname); 1371 1372 if ((cl = changelist_gather(zhp, prop, 0, 0)) == NULL) 1373 goto error; 1374 1375 if (prop == ZFS_PROP_MOUNTPOINT && changelist_haszonedchild(cl)) { 1376 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1377 "child dataset with inherited mountpoint is used " 1378 "in a non-global zone")); 1379 ret = zfs_error(hdl, EZFS_ZONED, errbuf); 1380 goto error; 1381 } 1382 1383 /* 1384 * If the dataset's canmount property is being set to noauto, 1385 * then we want to prevent unmounting & remounting it. 1386 */ 1387 do_prefix = !((prop == ZFS_PROP_CANMOUNT) && 1388 (zprop_string_to_index(prop, propval, &idx, 1389 ZFS_TYPE_DATASET) == 0) && (idx == ZFS_CANMOUNT_NOAUTO)); 1390 1391 if (do_prefix && (ret = changelist_prefix(cl)) != 0) 1392 goto error; 1393 1394 /* 1395 * Execute the corresponding ioctl() to set this property. 1396 */ 1397 (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 1398 1399 if (zcmd_write_src_nvlist(hdl, &zc, nvl) != 0) 1400 goto error; 1401 1402 ret = zfs_ioctl(hdl, ZFS_IOC_SET_PROP, &zc); 1403 1404 if (ret != 0) { 1405 zfs_setprop_error(hdl, prop, errno, errbuf); 1406 } else { 1407 if (do_prefix) 1408 ret = changelist_postfix(cl); 1409 1410 /* 1411 * Refresh the statistics so the new property value 1412 * is reflected. 1413 */ 1414 if (ret == 0) 1415 (void) get_stats(zhp); 1416 } 1417 1418 error: 1419 nvlist_free(nvl); 1420 zcmd_free_nvlists(&zc); 1421 if (cl) 1422 changelist_free(cl); 1423 return (ret); 1424 } 1425 1426 /* 1427 * Given a property, inherit the value from the parent dataset, or if received 1428 * is TRUE, revert to the received value, if any. 1429 */ 1430 int 1431 zfs_prop_inherit(zfs_handle_t *zhp, const char *propname, boolean_t received) 1432 { 1433 zfs_cmd_t zc = { 0 }; 1434 int ret; 1435 prop_changelist_t *cl; 1436 libzfs_handle_t *hdl = zhp->zfs_hdl; 1437 char errbuf[1024]; 1438 zfs_prop_t prop; 1439 1440 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN, 1441 "cannot inherit %s for '%s'"), propname, zhp->zfs_name); 1442 1443 zc.zc_cookie = received; 1444 if ((prop = zfs_name_to_prop(propname)) == ZPROP_INVAL) { 1445 /* 1446 * For user properties, the amount of work we have to do is very 1447 * small, so just do it here. 1448 */ 1449 if (!zfs_prop_user(propname)) { 1450 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1451 "invalid property")); 1452 return (zfs_error(hdl, EZFS_BADPROP, errbuf)); 1453 } 1454 1455 (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 1456 (void) strlcpy(zc.zc_value, propname, sizeof (zc.zc_value)); 1457 1458 if (zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_INHERIT_PROP, &zc) != 0) 1459 return (zfs_standard_error(hdl, errno, errbuf)); 1460 1461 return (0); 1462 } 1463 1464 /* 1465 * Verify that this property is inheritable. 1466 */ 1467 if (zfs_prop_readonly(prop)) 1468 return (zfs_error(hdl, EZFS_PROPREADONLY, errbuf)); 1469 1470 if (!zfs_prop_inheritable(prop) && !received) 1471 return (zfs_error(hdl, EZFS_PROPNONINHERIT, errbuf)); 1472 1473 /* 1474 * Check to see if the value applies to this type 1475 */ 1476 if (!zfs_prop_valid_for_type(prop, zhp->zfs_type)) 1477 return (zfs_error(hdl, EZFS_PROPTYPE, errbuf)); 1478 1479 /* 1480 * Normalize the name, to get rid of shorthand abbrevations. 1481 */ 1482 propname = zfs_prop_to_name(prop); 1483 (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 1484 (void) strlcpy(zc.zc_value, propname, sizeof (zc.zc_value)); 1485 1486 if (prop == ZFS_PROP_MOUNTPOINT && getzoneid() == GLOBAL_ZONEID && 1487 zfs_prop_get_int(zhp, ZFS_PROP_ZONED)) { 1488 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1489 "dataset is used in a non-global zone")); 1490 return (zfs_error(hdl, EZFS_ZONED, errbuf)); 1491 } 1492 1493 /* 1494 * Determine datasets which will be affected by this change, if any. 1495 */ 1496 if ((cl = changelist_gather(zhp, prop, 0, 0)) == NULL) 1497 return (-1); 1498 1499 if (prop == ZFS_PROP_MOUNTPOINT && changelist_haszonedchild(cl)) { 1500 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 1501 "child dataset with inherited mountpoint is used " 1502 "in a non-global zone")); 1503 ret = zfs_error(hdl, EZFS_ZONED, errbuf); 1504 goto error; 1505 } 1506 1507 if ((ret = changelist_prefix(cl)) != 0) 1508 goto error; 1509 1510 if ((ret = zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_INHERIT_PROP, &zc)) != 0) { 1511 return (zfs_standard_error(hdl, errno, errbuf)); 1512 } else { 1513 1514 if ((ret = changelist_postfix(cl)) != 0) 1515 goto error; 1516 1517 /* 1518 * Refresh the statistics so the new property is reflected. 1519 */ 1520 (void) get_stats(zhp); 1521 } 1522 1523 error: 1524 changelist_free(cl); 1525 return (ret); 1526 } 1527 1528 /* 1529 * True DSL properties are stored in an nvlist. The following two functions 1530 * extract them appropriately. 1531 */ 1532 static uint64_t 1533 getprop_uint64(zfs_handle_t *zhp, zfs_prop_t prop, char **source) 1534 { 1535 nvlist_t *nv; 1536 uint64_t value; 1537 1538 *source = NULL; 1539 if (nvlist_lookup_nvlist(zhp->zfs_props, 1540 zfs_prop_to_name(prop), &nv) == 0) { 1541 verify(nvlist_lookup_uint64(nv, ZPROP_VALUE, &value) == 0); 1542 (void) nvlist_lookup_string(nv, ZPROP_SOURCE, source); 1543 } else { 1544 verify(!zhp->zfs_props_table || 1545 zhp->zfs_props_table[prop] == B_TRUE); 1546 value = zfs_prop_default_numeric(prop); 1547 *source = ""; 1548 } 1549 1550 return (value); 1551 } 1552 1553 static char * 1554 getprop_string(zfs_handle_t *zhp, zfs_prop_t prop, char **source) 1555 { 1556 nvlist_t *nv; 1557 char *value; 1558 1559 *source = NULL; 1560 if (nvlist_lookup_nvlist(zhp->zfs_props, 1561 zfs_prop_to_name(prop), &nv) == 0) { 1562 verify(nvlist_lookup_string(nv, ZPROP_VALUE, &value) == 0); 1563 (void) nvlist_lookup_string(nv, ZPROP_SOURCE, source); 1564 } else { 1565 verify(!zhp->zfs_props_table || 1566 zhp->zfs_props_table[prop] == B_TRUE); 1567 if ((value = (char *)zfs_prop_default_string(prop)) == NULL) 1568 value = ""; 1569 *source = ""; 1570 } 1571 1572 return (value); 1573 } 1574 1575 static boolean_t 1576 zfs_is_recvd_props_mode(zfs_handle_t *zhp) 1577 { 1578 return (zhp->zfs_props == zhp->zfs_recvd_props); 1579 } 1580 1581 static void 1582 zfs_set_recvd_props_mode(zfs_handle_t *zhp, uint64_t *cookie) 1583 { 1584 *cookie = (uint64_t)(uintptr_t)zhp->zfs_props; 1585 zhp->zfs_props = zhp->zfs_recvd_props; 1586 } 1587 1588 static void 1589 zfs_unset_recvd_props_mode(zfs_handle_t *zhp, uint64_t *cookie) 1590 { 1591 zhp->zfs_props = (nvlist_t *)(uintptr_t)*cookie; 1592 *cookie = 0; 1593 } 1594 1595 /* 1596 * Internal function for getting a numeric property. Both zfs_prop_get() and 1597 * zfs_prop_get_int() are built using this interface. 1598 * 1599 * Certain properties can be overridden using 'mount -o'. In this case, scan 1600 * the contents of the /etc/mnttab entry, searching for the appropriate options. 1601 * If they differ from the on-disk values, report the current values and mark 1602 * the source "temporary". 1603 */ 1604 static int 1605 get_numeric_property(zfs_handle_t *zhp, zfs_prop_t prop, zprop_source_t *src, 1606 char **source, uint64_t *val) 1607 { 1608 zfs_cmd_t zc = { 0 }; 1609 nvlist_t *zplprops = NULL; 1610 struct mnttab mnt; 1611 char *mntopt_on = NULL; 1612 char *mntopt_off = NULL; 1613 boolean_t received = zfs_is_recvd_props_mode(zhp); 1614 1615 *source = NULL; 1616 1617 switch (prop) { 1618 case ZFS_PROP_ATIME: 1619 mntopt_on = MNTOPT_ATIME; 1620 mntopt_off = MNTOPT_NOATIME; 1621 break; 1622 1623 case ZFS_PROP_DEVICES: 1624 mntopt_on = MNTOPT_DEVICES; 1625 mntopt_off = MNTOPT_NODEVICES; 1626 break; 1627 1628 case ZFS_PROP_EXEC: 1629 mntopt_on = MNTOPT_EXEC; 1630 mntopt_off = MNTOPT_NOEXEC; 1631 break; 1632 1633 case ZFS_PROP_READONLY: 1634 mntopt_on = MNTOPT_RO; 1635 mntopt_off = MNTOPT_RW; 1636 break; 1637 1638 case ZFS_PROP_SETUID: 1639 mntopt_on = MNTOPT_SETUID; 1640 mntopt_off = MNTOPT_NOSETUID; 1641 break; 1642 1643 case ZFS_PROP_XATTR: 1644 mntopt_on = MNTOPT_XATTR; 1645 mntopt_off = MNTOPT_NOXATTR; 1646 break; 1647 1648 case ZFS_PROP_NBMAND: 1649 mntopt_on = MNTOPT_NBMAND; 1650 mntopt_off = MNTOPT_NONBMAND; 1651 break; 1652 } 1653 1654 /* 1655 * Because looking up the mount options is potentially expensive 1656 * (iterating over all of /etc/mnttab), we defer its calculation until 1657 * we're looking up a property which requires its presence. 1658 */ 1659 if (!zhp->zfs_mntcheck && 1660 (mntopt_on != NULL || prop == ZFS_PROP_MOUNTED)) { 1661 libzfs_handle_t *hdl = zhp->zfs_hdl; 1662 struct mnttab entry; 1663 1664 if (libzfs_mnttab_find(hdl, zhp->zfs_name, &entry) == 0) { 1665 zhp->zfs_mntopts = zfs_strdup(hdl, 1666 entry.mnt_mntopts); 1667 if (zhp->zfs_mntopts == NULL) 1668 return (-1); 1669 } 1670 1671 zhp->zfs_mntcheck = B_TRUE; 1672 } 1673 1674 if (zhp->zfs_mntopts == NULL) 1675 mnt.mnt_mntopts = ""; 1676 else 1677 mnt.mnt_mntopts = zhp->zfs_mntopts; 1678 1679 switch (prop) { 1680 case ZFS_PROP_ATIME: 1681 case ZFS_PROP_DEVICES: 1682 case ZFS_PROP_EXEC: 1683 case ZFS_PROP_READONLY: 1684 case ZFS_PROP_SETUID: 1685 case ZFS_PROP_XATTR: 1686 case ZFS_PROP_NBMAND: 1687 *val = getprop_uint64(zhp, prop, source); 1688 1689 if (received) 1690 break; 1691 1692 if (hasmntopt(&mnt, mntopt_on) && !*val) { 1693 *val = B_TRUE; 1694 if (src) 1695 *src = ZPROP_SRC_TEMPORARY; 1696 } else if (hasmntopt(&mnt, mntopt_off) && *val) { 1697 *val = B_FALSE; 1698 if (src) 1699 *src = ZPROP_SRC_TEMPORARY; 1700 } 1701 break; 1702 1703 case ZFS_PROP_CANMOUNT: 1704 case ZFS_PROP_VOLSIZE: 1705 case ZFS_PROP_QUOTA: 1706 case ZFS_PROP_REFQUOTA: 1707 case ZFS_PROP_RESERVATION: 1708 case ZFS_PROP_REFRESERVATION: 1709 *val = getprop_uint64(zhp, prop, source); 1710 1711 if (*source == NULL) { 1712 /* not default, must be local */ 1713 *source = zhp->zfs_name; 1714 } 1715 break; 1716 1717 case ZFS_PROP_MOUNTED: 1718 *val = (zhp->zfs_mntopts != NULL); 1719 break; 1720 1721 case ZFS_PROP_NUMCLONES: 1722 *val = zhp->zfs_dmustats.dds_num_clones; 1723 break; 1724 1725 case ZFS_PROP_VERSION: 1726 case ZFS_PROP_NORMALIZE: 1727 case ZFS_PROP_UTF8ONLY: 1728 case ZFS_PROP_CASE: 1729 if (!zfs_prop_valid_for_type(prop, zhp->zfs_head_type) || 1730 zcmd_alloc_dst_nvlist(zhp->zfs_hdl, &zc, 0) != 0) 1731 return (-1); 1732 (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 1733 if (zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_OBJSET_ZPLPROPS, &zc)) { 1734 zcmd_free_nvlists(&zc); 1735 return (-1); 1736 } 1737 if (zcmd_read_dst_nvlist(zhp->zfs_hdl, &zc, &zplprops) != 0 || 1738 nvlist_lookup_uint64(zplprops, zfs_prop_to_name(prop), 1739 val) != 0) { 1740 zcmd_free_nvlists(&zc); 1741 return (-1); 1742 } 1743 if (zplprops) 1744 nvlist_free(zplprops); 1745 zcmd_free_nvlists(&zc); 1746 break; 1747 1748 default: 1749 switch (zfs_prop_get_type(prop)) { 1750 case PROP_TYPE_NUMBER: 1751 case PROP_TYPE_INDEX: 1752 *val = getprop_uint64(zhp, prop, source); 1753 /* 1754 * If we tried to use a default value for a 1755 * readonly property, it means that it was not 1756 * present. 1757 */ 1758 if (zfs_prop_readonly(prop) && 1759 *source != NULL && (*source)[0] == '\0') { 1760 *source = NULL; 1761 } 1762 break; 1763 1764 case PROP_TYPE_STRING: 1765 default: 1766 zfs_error_aux(zhp->zfs_hdl, dgettext(TEXT_DOMAIN, 1767 "cannot get non-numeric property")); 1768 return (zfs_error(zhp->zfs_hdl, EZFS_BADPROP, 1769 dgettext(TEXT_DOMAIN, "internal error"))); 1770 } 1771 } 1772 1773 return (0); 1774 } 1775 1776 /* 1777 * Calculate the source type, given the raw source string. 1778 */ 1779 static void 1780 get_source(zfs_handle_t *zhp, zprop_source_t *srctype, char *source, 1781 char *statbuf, size_t statlen) 1782 { 1783 if (statbuf == NULL || *srctype == ZPROP_SRC_TEMPORARY) 1784 return; 1785 1786 if (source == NULL) { 1787 *srctype = ZPROP_SRC_NONE; 1788 } else if (source[0] == '\0') { 1789 *srctype = ZPROP_SRC_DEFAULT; 1790 } else if (strstr(source, ZPROP_SOURCE_VAL_RECVD) != NULL) { 1791 *srctype = ZPROP_SRC_RECEIVED; 1792 } else { 1793 if (strcmp(source, zhp->zfs_name) == 0) { 1794 *srctype = ZPROP_SRC_LOCAL; 1795 } else { 1796 (void) strlcpy(statbuf, source, statlen); 1797 *srctype = ZPROP_SRC_INHERITED; 1798 } 1799 } 1800 1801 } 1802 1803 int 1804 zfs_prop_get_recvd(zfs_handle_t *zhp, const char *propname, char *propbuf, 1805 size_t proplen, boolean_t literal) 1806 { 1807 zfs_prop_t prop; 1808 int err = 0; 1809 1810 if (zhp->zfs_recvd_props == NULL) 1811 if (get_recvd_props_ioctl(zhp) != 0) 1812 return (-1); 1813 1814 prop = zfs_name_to_prop(propname); 1815 1816 if (prop != ZPROP_INVAL) { 1817 uint64_t cookie; 1818 if (!nvlist_exists(zhp->zfs_recvd_props, propname)) 1819 return (-1); 1820 zfs_set_recvd_props_mode(zhp, &cookie); 1821 err = zfs_prop_get(zhp, prop, propbuf, proplen, 1822 NULL, NULL, 0, literal); 1823 zfs_unset_recvd_props_mode(zhp, &cookie); 1824 } else if (zfs_prop_userquota(propname)) { 1825 return (-1); 1826 } else { 1827 nvlist_t *propval; 1828 char *recvdval; 1829 if (nvlist_lookup_nvlist(zhp->zfs_recvd_props, 1830 propname, &propval) != 0) 1831 return (-1); 1832 verify(nvlist_lookup_string(propval, ZPROP_VALUE, 1833 &recvdval) == 0); 1834 (void) strlcpy(propbuf, recvdval, proplen); 1835 } 1836 1837 return (err == 0 ? 0 : -1); 1838 } 1839 1840 /* 1841 * Retrieve a property from the given object. If 'literal' is specified, then 1842 * numbers are left as exact values. Otherwise, numbers are converted to a 1843 * human-readable form. 1844 * 1845 * Returns 0 on success, or -1 on error. 1846 */ 1847 int 1848 zfs_prop_get(zfs_handle_t *zhp, zfs_prop_t prop, char *propbuf, size_t proplen, 1849 zprop_source_t *src, char *statbuf, size_t statlen, boolean_t literal) 1850 { 1851 char *source = NULL; 1852 uint64_t val; 1853 char *str; 1854 const char *strval; 1855 boolean_t received = zfs_is_recvd_props_mode(zhp); 1856 1857 /* 1858 * Check to see if this property applies to our object 1859 */ 1860 if (!zfs_prop_valid_for_type(prop, zhp->zfs_type)) 1861 return (-1); 1862 1863 if (received && zfs_prop_readonly(prop)) 1864 return (-1); 1865 1866 if (src) 1867 *src = ZPROP_SRC_NONE; 1868 1869 switch (prop) { 1870 case ZFS_PROP_CREATION: 1871 /* 1872 * 'creation' is a time_t stored in the statistics. We convert 1873 * this into a string unless 'literal' is specified. 1874 */ 1875 { 1876 val = getprop_uint64(zhp, prop, &source); 1877 time_t time = (time_t)val; 1878 struct tm t; 1879 1880 if (literal || 1881 localtime_r(&time, &t) == NULL || 1882 strftime(propbuf, proplen, "%a %b %e %k:%M %Y", 1883 &t) == 0) 1884 (void) snprintf(propbuf, proplen, "%llu", val); 1885 } 1886 break; 1887 1888 case ZFS_PROP_MOUNTPOINT: 1889 /* 1890 * Getting the precise mountpoint can be tricky. 1891 * 1892 * - for 'none' or 'legacy', return those values. 1893 * - for inherited mountpoints, we want to take everything 1894 * after our ancestor and append it to the inherited value. 1895 * 1896 * If the pool has an alternate root, we want to prepend that 1897 * root to any values we return. 1898 */ 1899 1900 str = getprop_string(zhp, prop, &source); 1901 1902 if (str[0] == '/') { 1903 char buf[MAXPATHLEN]; 1904 char *root = buf; 1905 const char *relpath = zhp->zfs_name + strlen(source); 1906 1907 if (relpath[0] == '/') 1908 relpath++; 1909 1910 if ((zpool_get_prop(zhp->zpool_hdl, 1911 ZPOOL_PROP_ALTROOT, buf, MAXPATHLEN, NULL)) || 1912 (strcmp(root, "-") == 0)) 1913 root[0] = '\0'; 1914 /* 1915 * Special case an alternate root of '/'. This will 1916 * avoid having multiple leading slashes in the 1917 * mountpoint path. 1918 */ 1919 if (strcmp(root, "/") == 0) 1920 root++; 1921 1922 /* 1923 * If the mountpoint is '/' then skip over this 1924 * if we are obtaining either an alternate root or 1925 * an inherited mountpoint. 1926 */ 1927 if (str[1] == '\0' && (root[0] != '\0' || 1928 relpath[0] != '\0')) 1929 str++; 1930 1931 if (relpath[0] == '\0') 1932 (void) snprintf(propbuf, proplen, "%s%s", 1933 root, str); 1934 else 1935 (void) snprintf(propbuf, proplen, "%s%s%s%s", 1936 root, str, relpath[0] == '@' ? "" : "/", 1937 relpath); 1938 } else { 1939 /* 'legacy' or 'none' */ 1940 (void) strlcpy(propbuf, str, proplen); 1941 } 1942 1943 break; 1944 1945 case ZFS_PROP_ORIGIN: 1946 (void) strlcpy(propbuf, getprop_string(zhp, prop, &source), 1947 proplen); 1948 /* 1949 * If there is no parent at all, return failure to indicate that 1950 * it doesn't apply to this dataset. 1951 */ 1952 if (propbuf[0] == '\0') 1953 return (-1); 1954 break; 1955 1956 case ZFS_PROP_QUOTA: 1957 case ZFS_PROP_REFQUOTA: 1958 case ZFS_PROP_RESERVATION: 1959 case ZFS_PROP_REFRESERVATION: 1960 1961 if (get_numeric_property(zhp, prop, src, &source, &val) != 0) 1962 return (-1); 1963 1964 /* 1965 * If quota or reservation is 0, we translate this into 'none' 1966 * (unless literal is set), and indicate that it's the default 1967 * value. Otherwise, we print the number nicely and indicate 1968 * that its set locally. 1969 */ 1970 if (val == 0) { 1971 if (literal) 1972 (void) strlcpy(propbuf, "0", proplen); 1973 else 1974 (void) strlcpy(propbuf, "none", proplen); 1975 } else { 1976 if (literal) 1977 (void) snprintf(propbuf, proplen, "%llu", 1978 (u_longlong_t)val); 1979 else 1980 zfs_nicenum(val, propbuf, proplen); 1981 } 1982 break; 1983 1984 case ZFS_PROP_COMPRESSRATIO: 1985 if (get_numeric_property(zhp, prop, src, &source, &val) != 0) 1986 return (-1); 1987 (void) snprintf(propbuf, proplen, "%llu.%02llux", 1988 (u_longlong_t)(val / 100), 1989 (u_longlong_t)(val % 100)); 1990 break; 1991 1992 case ZFS_PROP_TYPE: 1993 switch (zhp->zfs_type) { 1994 case ZFS_TYPE_FILESYSTEM: 1995 str = "filesystem"; 1996 break; 1997 case ZFS_TYPE_VOLUME: 1998 str = "volume"; 1999 break; 2000 case ZFS_TYPE_SNAPSHOT: 2001 str = "snapshot"; 2002 break; 2003 default: 2004 abort(); 2005 } 2006 (void) snprintf(propbuf, proplen, "%s", str); 2007 break; 2008 2009 case ZFS_PROP_MOUNTED: 2010 /* 2011 * The 'mounted' property is a pseudo-property that described 2012 * whether the filesystem is currently mounted. Even though 2013 * it's a boolean value, the typical values of "on" and "off" 2014 * don't make sense, so we translate to "yes" and "no". 2015 */ 2016 if (get_numeric_property(zhp, ZFS_PROP_MOUNTED, 2017 src, &source, &val) != 0) 2018 return (-1); 2019 if (val) 2020 (void) strlcpy(propbuf, "yes", proplen); 2021 else 2022 (void) strlcpy(propbuf, "no", proplen); 2023 break; 2024 2025 case ZFS_PROP_NAME: 2026 /* 2027 * The 'name' property is a pseudo-property derived from the 2028 * dataset name. It is presented as a real property to simplify 2029 * consumers. 2030 */ 2031 (void) strlcpy(propbuf, zhp->zfs_name, proplen); 2032 break; 2033 2034 case ZFS_PROP_MLSLABEL: 2035 { 2036 m_label_t *new_sl = NULL; 2037 char *ascii = NULL; /* human readable label */ 2038 2039 (void) strlcpy(propbuf, 2040 getprop_string(zhp, prop, &source), proplen); 2041 2042 if (literal || (strcasecmp(propbuf, 2043 ZFS_MLSLABEL_DEFAULT) == 0)) 2044 break; 2045 2046 /* 2047 * Try to translate the internal hex string to 2048 * human-readable output. If there are any 2049 * problems just use the hex string. 2050 */ 2051 2052 if (str_to_label(propbuf, &new_sl, MAC_LABEL, 2053 L_NO_CORRECTION, NULL) == -1) { 2054 m_label_free(new_sl); 2055 break; 2056 } 2057 2058 if (label_to_str(new_sl, &ascii, M_LABEL, 2059 DEF_NAMES) != 0) { 2060 if (ascii) 2061 free(ascii); 2062 m_label_free(new_sl); 2063 break; 2064 } 2065 m_label_free(new_sl); 2066 2067 (void) strlcpy(propbuf, ascii, proplen); 2068 free(ascii); 2069 } 2070 break; 2071 2072 default: 2073 switch (zfs_prop_get_type(prop)) { 2074 case PROP_TYPE_NUMBER: 2075 if (get_numeric_property(zhp, prop, src, 2076 &source, &val) != 0) 2077 return (-1); 2078 if (literal) 2079 (void) snprintf(propbuf, proplen, "%llu", 2080 (u_longlong_t)val); 2081 else 2082 zfs_nicenum(val, propbuf, proplen); 2083 break; 2084 2085 case PROP_TYPE_STRING: 2086 (void) strlcpy(propbuf, 2087 getprop_string(zhp, prop, &source), proplen); 2088 break; 2089 2090 case PROP_TYPE_INDEX: 2091 if (get_numeric_property(zhp, prop, src, 2092 &source, &val) != 0) 2093 return (-1); 2094 if (zfs_prop_index_to_string(prop, val, &strval) != 0) 2095 return (-1); 2096 (void) strlcpy(propbuf, strval, proplen); 2097 break; 2098 2099 default: 2100 abort(); 2101 } 2102 } 2103 2104 get_source(zhp, src, source, statbuf, statlen); 2105 2106 return (0); 2107 } 2108 2109 /* 2110 * Utility function to get the given numeric property. Does no validation that 2111 * the given property is the appropriate type; should only be used with 2112 * hard-coded property types. 2113 */ 2114 uint64_t 2115 zfs_prop_get_int(zfs_handle_t *zhp, zfs_prop_t prop) 2116 { 2117 char *source; 2118 uint64_t val; 2119 2120 (void) get_numeric_property(zhp, prop, NULL, &source, &val); 2121 2122 return (val); 2123 } 2124 2125 int 2126 zfs_prop_set_int(zfs_handle_t *zhp, zfs_prop_t prop, uint64_t val) 2127 { 2128 char buf[64]; 2129 2130 (void) snprintf(buf, sizeof (buf), "%llu", (longlong_t)val); 2131 return (zfs_prop_set(zhp, zfs_prop_to_name(prop), buf)); 2132 } 2133 2134 /* 2135 * Similar to zfs_prop_get(), but returns the value as an integer. 2136 */ 2137 int 2138 zfs_prop_get_numeric(zfs_handle_t *zhp, zfs_prop_t prop, uint64_t *value, 2139 zprop_source_t *src, char *statbuf, size_t statlen) 2140 { 2141 char *source; 2142 2143 /* 2144 * Check to see if this property applies to our object 2145 */ 2146 if (!zfs_prop_valid_for_type(prop, zhp->zfs_type)) { 2147 return (zfs_error_fmt(zhp->zfs_hdl, EZFS_PROPTYPE, 2148 dgettext(TEXT_DOMAIN, "cannot get property '%s'"), 2149 zfs_prop_to_name(prop))); 2150 } 2151 2152 if (src) 2153 *src = ZPROP_SRC_NONE; 2154 2155 if (get_numeric_property(zhp, prop, src, &source, value) != 0) 2156 return (-1); 2157 2158 get_source(zhp, src, source, statbuf, statlen); 2159 2160 return (0); 2161 } 2162 2163 static int 2164 idmap_id_to_numeric_domain_rid(uid_t id, boolean_t isuser, 2165 char **domainp, idmap_rid_t *ridp) 2166 { 2167 idmap_handle_t *idmap_hdl = NULL; 2168 idmap_get_handle_t *get_hdl = NULL; 2169 idmap_stat status; 2170 int err = EINVAL; 2171 2172 if (idmap_init(&idmap_hdl) != IDMAP_SUCCESS) 2173 goto out; 2174 if (idmap_get_create(idmap_hdl, &get_hdl) != IDMAP_SUCCESS) 2175 goto out; 2176 2177 if (isuser) { 2178 err = idmap_get_sidbyuid(get_hdl, id, 2179 IDMAP_REQ_FLG_USE_CACHE, domainp, ridp, &status); 2180 } else { 2181 err = idmap_get_sidbygid(get_hdl, id, 2182 IDMAP_REQ_FLG_USE_CACHE, domainp, ridp, &status); 2183 } 2184 if (err == IDMAP_SUCCESS && 2185 idmap_get_mappings(get_hdl) == IDMAP_SUCCESS && 2186 status == IDMAP_SUCCESS) 2187 err = 0; 2188 else 2189 err = EINVAL; 2190 out: 2191 if (get_hdl) 2192 idmap_get_destroy(get_hdl); 2193 if (idmap_hdl) 2194 (void) idmap_fini(idmap_hdl); 2195 return (err); 2196 } 2197 2198 /* 2199 * convert the propname into parameters needed by kernel 2200 * Eg: userquota@ahrens -> ZFS_PROP_USERQUOTA, "", 126829 2201 * Eg: userused@matt@domain -> ZFS_PROP_USERUSED, "S-1-123-456", 789 2202 */ 2203 static int 2204 userquota_propname_decode(const char *propname, boolean_t zoned, 2205 zfs_userquota_prop_t *typep, char *domain, int domainlen, uint64_t *ridp) 2206 { 2207 zfs_userquota_prop_t type; 2208 char *cp, *end; 2209 char *numericsid = NULL; 2210 boolean_t isuser; 2211 2212 domain[0] = '\0'; 2213 2214 /* Figure out the property type ({user|group}{quota|space}) */ 2215 for (type = 0; type < ZFS_NUM_USERQUOTA_PROPS; type++) { 2216 if (strncmp(propname, zfs_userquota_prop_prefixes[type], 2217 strlen(zfs_userquota_prop_prefixes[type])) == 0) 2218 break; 2219 } 2220 if (type == ZFS_NUM_USERQUOTA_PROPS) 2221 return (EINVAL); 2222 *typep = type; 2223 2224 isuser = (type == ZFS_PROP_USERQUOTA || 2225 type == ZFS_PROP_USERUSED); 2226 2227 cp = strchr(propname, '@') + 1; 2228 2229 if (strchr(cp, '@')) { 2230 /* 2231 * It's a SID name (eg "user@domain") that needs to be 2232 * turned into S-1-domainID-RID. 2233 */ 2234 directory_error_t e; 2235 if (zoned && getzoneid() == GLOBAL_ZONEID) 2236 return (ENOENT); 2237 if (isuser) { 2238 e = directory_sid_from_user_name(NULL, 2239 cp, &numericsid); 2240 } else { 2241 e = directory_sid_from_group_name(NULL, 2242 cp, &numericsid); 2243 } 2244 if (e != NULL) { 2245 directory_error_free(e); 2246 return (ENOENT); 2247 } 2248 if (numericsid == NULL) 2249 return (ENOENT); 2250 cp = numericsid; 2251 /* will be further decoded below */ 2252 } 2253 2254 if (strncmp(cp, "S-1-", 4) == 0) { 2255 /* It's a numeric SID (eg "S-1-234-567-89") */ 2256 (void) strlcpy(domain, cp, domainlen); 2257 cp = strrchr(domain, '-'); 2258 *cp = '\0'; 2259 cp++; 2260 2261 errno = 0; 2262 *ridp = strtoull(cp, &end, 10); 2263 if (numericsid) { 2264 free(numericsid); 2265 numericsid = NULL; 2266 } 2267 if (errno != 0 || *end != '\0') 2268 return (EINVAL); 2269 } else if (!isdigit(*cp)) { 2270 /* 2271 * It's a user/group name (eg "user") that needs to be 2272 * turned into a uid/gid 2273 */ 2274 if (zoned && getzoneid() == GLOBAL_ZONEID) 2275 return (ENOENT); 2276 if (isuser) { 2277 struct passwd *pw; 2278 pw = getpwnam(cp); 2279 if (pw == NULL) 2280 return (ENOENT); 2281 *ridp = pw->pw_uid; 2282 } else { 2283 struct group *gr; 2284 gr = getgrnam(cp); 2285 if (gr == NULL) 2286 return (ENOENT); 2287 *ridp = gr->gr_gid; 2288 } 2289 } else { 2290 /* It's a user/group ID (eg "12345"). */ 2291 uid_t id = strtoul(cp, &end, 10); 2292 idmap_rid_t rid; 2293 char *mapdomain; 2294 2295 if (*end != '\0') 2296 return (EINVAL); 2297 if (id > MAXUID) { 2298 /* It's an ephemeral ID. */ 2299 if (idmap_id_to_numeric_domain_rid(id, isuser, 2300 &mapdomain, &rid) != 0) 2301 return (ENOENT); 2302 (void) strlcpy(domain, mapdomain, domainlen); 2303 *ridp = rid; 2304 } else { 2305 *ridp = id; 2306 } 2307 } 2308 2309 ASSERT3P(numericsid, ==, NULL); 2310 return (0); 2311 } 2312 2313 static int 2314 zfs_prop_get_userquota_common(zfs_handle_t *zhp, const char *propname, 2315 uint64_t *propvalue, zfs_userquota_prop_t *typep) 2316 { 2317 int err; 2318 zfs_cmd_t zc = { 0 }; 2319 2320 (void) strncpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 2321 2322 err = userquota_propname_decode(propname, 2323 zfs_prop_get_int(zhp, ZFS_PROP_ZONED), 2324 typep, zc.zc_value, sizeof (zc.zc_value), &zc.zc_guid); 2325 zc.zc_objset_type = *typep; 2326 if (err) 2327 return (err); 2328 2329 err = ioctl(zhp->zfs_hdl->libzfs_fd, ZFS_IOC_USERSPACE_ONE, &zc); 2330 if (err) 2331 return (err); 2332 2333 *propvalue = zc.zc_cookie; 2334 return (0); 2335 } 2336 2337 int 2338 zfs_prop_get_userquota_int(zfs_handle_t *zhp, const char *propname, 2339 uint64_t *propvalue) 2340 { 2341 zfs_userquota_prop_t type; 2342 2343 return (zfs_prop_get_userquota_common(zhp, propname, propvalue, 2344 &type)); 2345 } 2346 2347 int 2348 zfs_prop_get_userquota(zfs_handle_t *zhp, const char *propname, 2349 char *propbuf, int proplen, boolean_t literal) 2350 { 2351 int err; 2352 uint64_t propvalue; 2353 zfs_userquota_prop_t type; 2354 2355 err = zfs_prop_get_userquota_common(zhp, propname, &propvalue, 2356 &type); 2357 2358 if (err) 2359 return (err); 2360 2361 if (literal) { 2362 (void) snprintf(propbuf, proplen, "%llu", propvalue); 2363 } else if (propvalue == 0 && 2364 (type == ZFS_PROP_USERQUOTA || type == ZFS_PROP_GROUPQUOTA)) { 2365 (void) strlcpy(propbuf, "none", proplen); 2366 } else { 2367 zfs_nicenum(propvalue, propbuf, proplen); 2368 } 2369 return (0); 2370 } 2371 2372 /* 2373 * Returns the name of the given zfs handle. 2374 */ 2375 const char * 2376 zfs_get_name(const zfs_handle_t *zhp) 2377 { 2378 return (zhp->zfs_name); 2379 } 2380 2381 /* 2382 * Returns the type of the given zfs handle. 2383 */ 2384 zfs_type_t 2385 zfs_get_type(const zfs_handle_t *zhp) 2386 { 2387 return (zhp->zfs_type); 2388 } 2389 2390 static int 2391 zfs_do_list_ioctl(zfs_handle_t *zhp, int arg, zfs_cmd_t *zc) 2392 { 2393 int rc; 2394 uint64_t orig_cookie; 2395 2396 orig_cookie = zc->zc_cookie; 2397 top: 2398 (void) strlcpy(zc->zc_name, zhp->zfs_name, sizeof (zc->zc_name)); 2399 rc = ioctl(zhp->zfs_hdl->libzfs_fd, arg, zc); 2400 2401 if (rc == -1) { 2402 switch (errno) { 2403 case ENOMEM: 2404 /* expand nvlist memory and try again */ 2405 if (zcmd_expand_dst_nvlist(zhp->zfs_hdl, zc) != 0) { 2406 zcmd_free_nvlists(zc); 2407 return (-1); 2408 } 2409 zc->zc_cookie = orig_cookie; 2410 goto top; 2411 /* 2412 * An errno value of ESRCH indicates normal completion. 2413 * If ENOENT is returned, then the underlying dataset 2414 * has been removed since we obtained the handle. 2415 */ 2416 case ESRCH: 2417 case ENOENT: 2418 rc = 1; 2419 break; 2420 default: 2421 rc = zfs_standard_error(zhp->zfs_hdl, errno, 2422 dgettext(TEXT_DOMAIN, 2423 "cannot iterate filesystems")); 2424 break; 2425 } 2426 } 2427 return (rc); 2428 } 2429 2430 /* 2431 * Iterate over all child filesystems 2432 */ 2433 int 2434 zfs_iter_filesystems(zfs_handle_t *zhp, zfs_iter_f func, void *data) 2435 { 2436 zfs_cmd_t zc = { 0 }; 2437 zfs_handle_t *nzhp; 2438 int ret; 2439 2440 if (zhp->zfs_type != ZFS_TYPE_FILESYSTEM) 2441 return (0); 2442 2443 if (zcmd_alloc_dst_nvlist(zhp->zfs_hdl, &zc, 0) != 0) 2444 return (-1); 2445 2446 while ((ret = zfs_do_list_ioctl(zhp, ZFS_IOC_DATASET_LIST_NEXT, 2447 &zc)) == 0) { 2448 /* 2449 * Silently ignore errors, as the only plausible explanation is 2450 * that the pool has since been removed. 2451 */ 2452 if ((nzhp = make_dataset_handle_zc(zhp->zfs_hdl, 2453 &zc)) == NULL) { 2454 continue; 2455 } 2456 2457 if ((ret = func(nzhp, data)) != 0) { 2458 zcmd_free_nvlists(&zc); 2459 return (ret); 2460 } 2461 } 2462 zcmd_free_nvlists(&zc); 2463 return ((ret < 0) ? ret : 0); 2464 } 2465 2466 /* 2467 * Iterate over all snapshots 2468 */ 2469 int 2470 zfs_iter_snapshots(zfs_handle_t *zhp, zfs_iter_f func, void *data) 2471 { 2472 zfs_cmd_t zc = { 0 }; 2473 zfs_handle_t *nzhp; 2474 int ret; 2475 2476 if (zhp->zfs_type == ZFS_TYPE_SNAPSHOT) 2477 return (0); 2478 2479 if (zcmd_alloc_dst_nvlist(zhp->zfs_hdl, &zc, 0) != 0) 2480 return (-1); 2481 while ((ret = zfs_do_list_ioctl(zhp, ZFS_IOC_SNAPSHOT_LIST_NEXT, 2482 &zc)) == 0) { 2483 2484 if ((nzhp = make_dataset_handle_zc(zhp->zfs_hdl, 2485 &zc)) == NULL) { 2486 continue; 2487 } 2488 2489 if ((ret = func(nzhp, data)) != 0) { 2490 zcmd_free_nvlists(&zc); 2491 return (ret); 2492 } 2493 } 2494 zcmd_free_nvlists(&zc); 2495 return ((ret < 0) ? ret : 0); 2496 } 2497 2498 /* 2499 * Iterate over all children, snapshots and filesystems 2500 */ 2501 int 2502 zfs_iter_children(zfs_handle_t *zhp, zfs_iter_f func, void *data) 2503 { 2504 int ret; 2505 2506 if ((ret = zfs_iter_filesystems(zhp, func, data)) != 0) 2507 return (ret); 2508 2509 return (zfs_iter_snapshots(zhp, func, data)); 2510 } 2511 2512 /* 2513 * Is one dataset name a child dataset of another? 2514 * 2515 * Needs to handle these cases: 2516 * Dataset 1 "a/foo" "a/foo" "a/foo" "a/foo" 2517 * Dataset 2 "a/fo" "a/foobar" "a/bar/baz" "a/foo/bar" 2518 * Descendant? No. No. No. Yes. 2519 */ 2520 static boolean_t 2521 is_descendant(const char *ds1, const char *ds2) 2522 { 2523 size_t d1len = strlen(ds1); 2524 2525 /* ds2 can't be a descendant if it's smaller */ 2526 if (strlen(ds2) < d1len) 2527 return (B_FALSE); 2528 2529 /* otherwise, compare strings and verify that there's a '/' char */ 2530 return (ds2[d1len] == '/' && (strncmp(ds1, ds2, d1len) == 0)); 2531 } 2532 2533 /* 2534 * Given a complete name, return just the portion that refers to the parent. 2535 * Can return NULL if this is a pool. 2536 */ 2537 static int 2538 parent_name(const char *path, char *buf, size_t buflen) 2539 { 2540 char *loc; 2541 2542 if ((loc = strrchr(path, '/')) == NULL) 2543 return (-1); 2544 2545 (void) strncpy(buf, path, MIN(buflen, loc - path)); 2546 buf[loc - path] = '\0'; 2547 2548 return (0); 2549 } 2550 2551 /* 2552 * If accept_ancestor is false, then check to make sure that the given path has 2553 * a parent, and that it exists. If accept_ancestor is true, then find the 2554 * closest existing ancestor for the given path. In prefixlen return the 2555 * length of already existing prefix of the given path. We also fetch the 2556 * 'zoned' property, which is used to validate property settings when creating 2557 * new datasets. 2558 */ 2559 static int 2560 check_parents(libzfs_handle_t *hdl, const char *path, uint64_t *zoned, 2561 boolean_t accept_ancestor, int *prefixlen) 2562 { 2563 zfs_cmd_t zc = { 0 }; 2564 char parent[ZFS_MAXNAMELEN]; 2565 char *slash; 2566 zfs_handle_t *zhp; 2567 char errbuf[1024]; 2568 uint64_t is_zoned; 2569 2570 (void) snprintf(errbuf, sizeof (errbuf), 2571 dgettext(TEXT_DOMAIN, "cannot create '%s'"), path); 2572 2573 /* get parent, and check to see if this is just a pool */ 2574 if (parent_name(path, parent, sizeof (parent)) != 0) { 2575 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2576 "missing dataset name")); 2577 return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf)); 2578 } 2579 2580 /* check to see if the pool exists */ 2581 if ((slash = strchr(parent, '/')) == NULL) 2582 slash = parent + strlen(parent); 2583 (void) strncpy(zc.zc_name, parent, slash - parent); 2584 zc.zc_name[slash - parent] = '\0'; 2585 if (ioctl(hdl->libzfs_fd, ZFS_IOC_OBJSET_STATS, &zc) != 0 && 2586 errno == ENOENT) { 2587 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2588 "no such pool '%s'"), zc.zc_name); 2589 return (zfs_error(hdl, EZFS_NOENT, errbuf)); 2590 } 2591 2592 /* check to see if the parent dataset exists */ 2593 while ((zhp = make_dataset_handle(hdl, parent)) == NULL) { 2594 if (errno == ENOENT && accept_ancestor) { 2595 /* 2596 * Go deeper to find an ancestor, give up on top level. 2597 */ 2598 if (parent_name(parent, parent, sizeof (parent)) != 0) { 2599 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2600 "no such pool '%s'"), zc.zc_name); 2601 return (zfs_error(hdl, EZFS_NOENT, errbuf)); 2602 } 2603 } else if (errno == ENOENT) { 2604 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2605 "parent does not exist")); 2606 return (zfs_error(hdl, EZFS_NOENT, errbuf)); 2607 } else 2608 return (zfs_standard_error(hdl, errno, errbuf)); 2609 } 2610 2611 is_zoned = zfs_prop_get_int(zhp, ZFS_PROP_ZONED); 2612 if (zoned != NULL) 2613 *zoned = is_zoned; 2614 2615 /* we are in a non-global zone, but parent is in the global zone */ 2616 if (getzoneid() != GLOBAL_ZONEID && !is_zoned) { 2617 (void) zfs_standard_error(hdl, EPERM, errbuf); 2618 zfs_close(zhp); 2619 return (-1); 2620 } 2621 2622 /* make sure parent is a filesystem */ 2623 if (zfs_get_type(zhp) != ZFS_TYPE_FILESYSTEM) { 2624 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2625 "parent is not a filesystem")); 2626 (void) zfs_error(hdl, EZFS_BADTYPE, errbuf); 2627 zfs_close(zhp); 2628 return (-1); 2629 } 2630 2631 zfs_close(zhp); 2632 if (prefixlen != NULL) 2633 *prefixlen = strlen(parent); 2634 return (0); 2635 } 2636 2637 /* 2638 * Finds whether the dataset of the given type(s) exists. 2639 */ 2640 boolean_t 2641 zfs_dataset_exists(libzfs_handle_t *hdl, const char *path, zfs_type_t types) 2642 { 2643 zfs_handle_t *zhp; 2644 2645 if (!zfs_validate_name(hdl, path, types, B_FALSE)) 2646 return (B_FALSE); 2647 2648 /* 2649 * Try to get stats for the dataset, which will tell us if it exists. 2650 */ 2651 if ((zhp = make_dataset_handle(hdl, path)) != NULL) { 2652 int ds_type = zhp->zfs_type; 2653 2654 zfs_close(zhp); 2655 if (types & ds_type) 2656 return (B_TRUE); 2657 } 2658 return (B_FALSE); 2659 } 2660 2661 /* 2662 * Given a path to 'target', create all the ancestors between 2663 * the prefixlen portion of the path, and the target itself. 2664 * Fail if the initial prefixlen-ancestor does not already exist. 2665 */ 2666 int 2667 create_parents(libzfs_handle_t *hdl, char *target, int prefixlen) 2668 { 2669 zfs_handle_t *h; 2670 char *cp; 2671 const char *opname; 2672 2673 /* make sure prefix exists */ 2674 cp = target + prefixlen; 2675 if (*cp != '/') { 2676 assert(strchr(cp, '/') == NULL); 2677 h = zfs_open(hdl, target, ZFS_TYPE_FILESYSTEM); 2678 } else { 2679 *cp = '\0'; 2680 h = zfs_open(hdl, target, ZFS_TYPE_FILESYSTEM); 2681 *cp = '/'; 2682 } 2683 if (h == NULL) 2684 return (-1); 2685 zfs_close(h); 2686 2687 /* 2688 * Attempt to create, mount, and share any ancestor filesystems, 2689 * up to the prefixlen-long one. 2690 */ 2691 for (cp = target + prefixlen + 1; 2692 cp = strchr(cp, '/'); *cp = '/', cp++) { 2693 char *logstr; 2694 2695 *cp = '\0'; 2696 2697 h = make_dataset_handle(hdl, target); 2698 if (h) { 2699 /* it already exists, nothing to do here */ 2700 zfs_close(h); 2701 continue; 2702 } 2703 2704 logstr = hdl->libzfs_log_str; 2705 hdl->libzfs_log_str = NULL; 2706 if (zfs_create(hdl, target, ZFS_TYPE_FILESYSTEM, 2707 NULL) != 0) { 2708 hdl->libzfs_log_str = logstr; 2709 opname = dgettext(TEXT_DOMAIN, "create"); 2710 goto ancestorerr; 2711 } 2712 2713 hdl->libzfs_log_str = logstr; 2714 h = zfs_open(hdl, target, ZFS_TYPE_FILESYSTEM); 2715 if (h == NULL) { 2716 opname = dgettext(TEXT_DOMAIN, "open"); 2717 goto ancestorerr; 2718 } 2719 2720 if (zfs_mount(h, NULL, 0) != 0) { 2721 opname = dgettext(TEXT_DOMAIN, "mount"); 2722 goto ancestorerr; 2723 } 2724 2725 if (zfs_share(h) != 0) { 2726 opname = dgettext(TEXT_DOMAIN, "share"); 2727 goto ancestorerr; 2728 } 2729 2730 zfs_close(h); 2731 } 2732 2733 return (0); 2734 2735 ancestorerr: 2736 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2737 "failed to %s ancestor '%s'"), opname, target); 2738 return (-1); 2739 } 2740 2741 /* 2742 * Creates non-existing ancestors of the given path. 2743 */ 2744 int 2745 zfs_create_ancestors(libzfs_handle_t *hdl, const char *path) 2746 { 2747 int prefix; 2748 char *path_copy; 2749 int rc; 2750 2751 if (check_parents(hdl, path, NULL, B_TRUE, &prefix) != 0) 2752 return (-1); 2753 2754 if ((path_copy = strdup(path)) != NULL) { 2755 rc = create_parents(hdl, path_copy, prefix); 2756 free(path_copy); 2757 } 2758 if (path_copy == NULL || rc != 0) 2759 return (-1); 2760 2761 return (0); 2762 } 2763 2764 /* 2765 * Create a new filesystem or volume. 2766 */ 2767 int 2768 zfs_create(libzfs_handle_t *hdl, const char *path, zfs_type_t type, 2769 nvlist_t *props) 2770 { 2771 zfs_cmd_t zc = { 0 }; 2772 int ret; 2773 uint64_t size = 0; 2774 uint64_t blocksize = zfs_prop_default_numeric(ZFS_PROP_VOLBLOCKSIZE); 2775 char errbuf[1024]; 2776 uint64_t zoned; 2777 2778 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN, 2779 "cannot create '%s'"), path); 2780 2781 /* validate the path, taking care to note the extended error message */ 2782 if (!zfs_validate_name(hdl, path, type, B_TRUE)) 2783 return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf)); 2784 2785 /* validate parents exist */ 2786 if (check_parents(hdl, path, &zoned, B_FALSE, NULL) != 0) 2787 return (-1); 2788 2789 /* 2790 * The failure modes when creating a dataset of a different type over 2791 * one that already exists is a little strange. In particular, if you 2792 * try to create a dataset on top of an existing dataset, the ioctl() 2793 * will return ENOENT, not EEXIST. To prevent this from happening, we 2794 * first try to see if the dataset exists. 2795 */ 2796 (void) strlcpy(zc.zc_name, path, sizeof (zc.zc_name)); 2797 if (zfs_dataset_exists(hdl, zc.zc_name, ZFS_TYPE_DATASET)) { 2798 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2799 "dataset already exists")); 2800 return (zfs_error(hdl, EZFS_EXISTS, errbuf)); 2801 } 2802 2803 if (type == ZFS_TYPE_VOLUME) 2804 zc.zc_objset_type = DMU_OST_ZVOL; 2805 else 2806 zc.zc_objset_type = DMU_OST_ZFS; 2807 2808 if (props && (props = zfs_valid_proplist(hdl, type, props, 2809 zoned, NULL, errbuf)) == 0) 2810 return (-1); 2811 2812 if (type == ZFS_TYPE_VOLUME) { 2813 /* 2814 * If we are creating a volume, the size and block size must 2815 * satisfy a few restraints. First, the blocksize must be a 2816 * valid block size between SPA_{MIN,MAX}BLOCKSIZE. Second, the 2817 * volsize must be a multiple of the block size, and cannot be 2818 * zero. 2819 */ 2820 if (props == NULL || nvlist_lookup_uint64(props, 2821 zfs_prop_to_name(ZFS_PROP_VOLSIZE), &size) != 0) { 2822 nvlist_free(props); 2823 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2824 "missing volume size")); 2825 return (zfs_error(hdl, EZFS_BADPROP, errbuf)); 2826 } 2827 2828 if ((ret = nvlist_lookup_uint64(props, 2829 zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), 2830 &blocksize)) != 0) { 2831 if (ret == ENOENT) { 2832 blocksize = zfs_prop_default_numeric( 2833 ZFS_PROP_VOLBLOCKSIZE); 2834 } else { 2835 nvlist_free(props); 2836 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2837 "missing volume block size")); 2838 return (zfs_error(hdl, EZFS_BADPROP, errbuf)); 2839 } 2840 } 2841 2842 if (size == 0) { 2843 nvlist_free(props); 2844 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2845 "volume size cannot be zero")); 2846 return (zfs_error(hdl, EZFS_BADPROP, errbuf)); 2847 } 2848 2849 if (size % blocksize != 0) { 2850 nvlist_free(props); 2851 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2852 "volume size must be a multiple of volume block " 2853 "size")); 2854 return (zfs_error(hdl, EZFS_BADPROP, errbuf)); 2855 } 2856 } 2857 2858 if (props && zcmd_write_src_nvlist(hdl, &zc, props) != 0) 2859 return (-1); 2860 nvlist_free(props); 2861 2862 /* create the dataset */ 2863 ret = zfs_ioctl(hdl, ZFS_IOC_CREATE, &zc); 2864 2865 zcmd_free_nvlists(&zc); 2866 2867 /* check for failure */ 2868 if (ret != 0) { 2869 char parent[ZFS_MAXNAMELEN]; 2870 (void) parent_name(path, parent, sizeof (parent)); 2871 2872 switch (errno) { 2873 case ENOENT: 2874 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2875 "no such parent '%s'"), parent); 2876 return (zfs_error(hdl, EZFS_NOENT, errbuf)); 2877 2878 case EINVAL: 2879 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2880 "parent '%s' is not a filesystem"), parent); 2881 return (zfs_error(hdl, EZFS_BADTYPE, errbuf)); 2882 2883 case EDOM: 2884 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2885 "volume block size must be power of 2 from " 2886 "%u to %uk"), 2887 (uint_t)SPA_MINBLOCKSIZE, 2888 (uint_t)SPA_MAXBLOCKSIZE >> 10); 2889 2890 return (zfs_error(hdl, EZFS_BADPROP, errbuf)); 2891 2892 case ENOTSUP: 2893 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 2894 "pool must be upgraded to set this " 2895 "property or value")); 2896 return (zfs_error(hdl, EZFS_BADVERSION, errbuf)); 2897 #ifdef _ILP32 2898 case EOVERFLOW: 2899 /* 2900 * This platform can't address a volume this big. 2901 */ 2902 if (type == ZFS_TYPE_VOLUME) 2903 return (zfs_error(hdl, EZFS_VOLTOOBIG, 2904 errbuf)); 2905 #endif 2906 /* FALLTHROUGH */ 2907 default: 2908 return (zfs_standard_error(hdl, errno, errbuf)); 2909 } 2910 } 2911 2912 return (0); 2913 } 2914 2915 /* 2916 * Destroys the given dataset. The caller must make sure that the filesystem 2917 * isn't mounted, and that there are no active dependents. 2918 */ 2919 int 2920 zfs_destroy(zfs_handle_t *zhp, boolean_t defer) 2921 { 2922 zfs_cmd_t zc = { 0 }; 2923 2924 (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 2925 2926 if (ZFS_IS_VOLUME(zhp)) { 2927 /* 2928 * If user doesn't have permissions to unshare volume, then 2929 * abort the request. This would only happen for a 2930 * non-privileged user. 2931 */ 2932 if (zfs_unshare_iscsi(zhp) != 0) { 2933 return (-1); 2934 } 2935 2936 zc.zc_objset_type = DMU_OST_ZVOL; 2937 } else { 2938 zc.zc_objset_type = DMU_OST_ZFS; 2939 } 2940 2941 zc.zc_defer_destroy = defer; 2942 if (zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_DESTROY, &zc) != 0) { 2943 return (zfs_standard_error_fmt(zhp->zfs_hdl, errno, 2944 dgettext(TEXT_DOMAIN, "cannot destroy '%s'"), 2945 zhp->zfs_name)); 2946 } 2947 2948 remove_mountpoint(zhp); 2949 2950 return (0); 2951 } 2952 2953 struct destroydata { 2954 char *snapname; 2955 boolean_t gotone; 2956 boolean_t closezhp; 2957 }; 2958 2959 static int 2960 zfs_check_snap_cb(zfs_handle_t *zhp, void *arg) 2961 { 2962 struct destroydata *dd = arg; 2963 zfs_handle_t *szhp; 2964 char name[ZFS_MAXNAMELEN]; 2965 boolean_t closezhp = dd->closezhp; 2966 int rv = 0; 2967 2968 (void) strlcpy(name, zhp->zfs_name, sizeof (name)); 2969 (void) strlcat(name, "@", sizeof (name)); 2970 (void) strlcat(name, dd->snapname, sizeof (name)); 2971 2972 szhp = make_dataset_handle(zhp->zfs_hdl, name); 2973 if (szhp) { 2974 dd->gotone = B_TRUE; 2975 zfs_close(szhp); 2976 } 2977 2978 dd->closezhp = B_TRUE; 2979 if (!dd->gotone) 2980 rv = zfs_iter_filesystems(zhp, zfs_check_snap_cb, arg); 2981 if (closezhp) 2982 zfs_close(zhp); 2983 return (rv); 2984 } 2985 2986 /* 2987 * Destroys all snapshots with the given name in zhp & descendants. 2988 */ 2989 int 2990 zfs_destroy_snaps(zfs_handle_t *zhp, char *snapname, boolean_t defer) 2991 { 2992 zfs_cmd_t zc = { 0 }; 2993 int ret; 2994 struct destroydata dd = { 0 }; 2995 2996 dd.snapname = snapname; 2997 (void) zfs_check_snap_cb(zhp, &dd); 2998 2999 if (!dd.gotone) { 3000 return (zfs_standard_error_fmt(zhp->zfs_hdl, ENOENT, 3001 dgettext(TEXT_DOMAIN, "cannot destroy '%s@%s'"), 3002 zhp->zfs_name, snapname)); 3003 } 3004 3005 (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 3006 (void) strlcpy(zc.zc_value, snapname, sizeof (zc.zc_value)); 3007 zc.zc_defer_destroy = defer; 3008 3009 ret = zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_DESTROY_SNAPS, &zc); 3010 if (ret != 0) { 3011 char errbuf[1024]; 3012 3013 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN, 3014 "cannot destroy '%s@%s'"), zc.zc_name, snapname); 3015 3016 switch (errno) { 3017 case EEXIST: 3018 zfs_error_aux(zhp->zfs_hdl, dgettext(TEXT_DOMAIN, 3019 "snapshot is cloned")); 3020 return (zfs_error(zhp->zfs_hdl, EZFS_EXISTS, errbuf)); 3021 3022 default: 3023 return (zfs_standard_error(zhp->zfs_hdl, errno, 3024 errbuf)); 3025 } 3026 } 3027 3028 return (0); 3029 } 3030 3031 /* 3032 * Clones the given dataset. The target must be of the same type as the source. 3033 */ 3034 int 3035 zfs_clone(zfs_handle_t *zhp, const char *target, nvlist_t *props) 3036 { 3037 zfs_cmd_t zc = { 0 }; 3038 char parent[ZFS_MAXNAMELEN]; 3039 int ret; 3040 char errbuf[1024]; 3041 libzfs_handle_t *hdl = zhp->zfs_hdl; 3042 zfs_type_t type; 3043 uint64_t zoned; 3044 3045 assert(zhp->zfs_type == ZFS_TYPE_SNAPSHOT); 3046 3047 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN, 3048 "cannot create '%s'"), target); 3049 3050 /* validate the target name */ 3051 if (!zfs_validate_name(hdl, target, ZFS_TYPE_FILESYSTEM, B_TRUE)) 3052 return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf)); 3053 3054 /* validate parents exist */ 3055 if (check_parents(hdl, target, &zoned, B_FALSE, NULL) != 0) 3056 return (-1); 3057 3058 (void) parent_name(target, parent, sizeof (parent)); 3059 3060 /* do the clone */ 3061 if (ZFS_IS_VOLUME(zhp)) { 3062 zc.zc_objset_type = DMU_OST_ZVOL; 3063 type = ZFS_TYPE_VOLUME; 3064 } else { 3065 zc.zc_objset_type = DMU_OST_ZFS; 3066 type = ZFS_TYPE_FILESYSTEM; 3067 } 3068 3069 if (props) { 3070 if ((props = zfs_valid_proplist(hdl, type, props, zoned, 3071 zhp, errbuf)) == NULL) 3072 return (-1); 3073 3074 if (zcmd_write_src_nvlist(hdl, &zc, props) != 0) { 3075 nvlist_free(props); 3076 return (-1); 3077 } 3078 3079 nvlist_free(props); 3080 } 3081 3082 (void) strlcpy(zc.zc_name, target, sizeof (zc.zc_name)); 3083 (void) strlcpy(zc.zc_value, zhp->zfs_name, sizeof (zc.zc_value)); 3084 ret = zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_CREATE, &zc); 3085 3086 zcmd_free_nvlists(&zc); 3087 3088 if (ret != 0) { 3089 switch (errno) { 3090 3091 case ENOENT: 3092 /* 3093 * The parent doesn't exist. We should have caught this 3094 * above, but there may a race condition that has since 3095 * destroyed the parent. 3096 * 3097 * At this point, we don't know whether it's the source 3098 * that doesn't exist anymore, or whether the target 3099 * dataset doesn't exist. 3100 */ 3101 zfs_error_aux(zhp->zfs_hdl, dgettext(TEXT_DOMAIN, 3102 "no such parent '%s'"), parent); 3103 return (zfs_error(zhp->zfs_hdl, EZFS_NOENT, errbuf)); 3104 3105 case EXDEV: 3106 zfs_error_aux(zhp->zfs_hdl, dgettext(TEXT_DOMAIN, 3107 "source and target pools differ")); 3108 return (zfs_error(zhp->zfs_hdl, EZFS_CROSSTARGET, 3109 errbuf)); 3110 3111 default: 3112 return (zfs_standard_error(zhp->zfs_hdl, errno, 3113 errbuf)); 3114 } 3115 } 3116 3117 return (ret); 3118 } 3119 3120 /* 3121 * Promotes the given clone fs to be the clone parent. 3122 */ 3123 int 3124 zfs_promote(zfs_handle_t *zhp) 3125 { 3126 libzfs_handle_t *hdl = zhp->zfs_hdl; 3127 zfs_cmd_t zc = { 0 }; 3128 char parent[MAXPATHLEN]; 3129 int ret; 3130 char errbuf[1024]; 3131 3132 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN, 3133 "cannot promote '%s'"), zhp->zfs_name); 3134 3135 if (zhp->zfs_type == ZFS_TYPE_SNAPSHOT) { 3136 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 3137 "snapshots can not be promoted")); 3138 return (zfs_error(hdl, EZFS_BADTYPE, errbuf)); 3139 } 3140 3141 (void) strlcpy(parent, zhp->zfs_dmustats.dds_origin, sizeof (parent)); 3142 if (parent[0] == '\0') { 3143 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 3144 "not a cloned filesystem")); 3145 return (zfs_error(hdl, EZFS_BADTYPE, errbuf)); 3146 } 3147 3148 (void) strlcpy(zc.zc_value, zhp->zfs_dmustats.dds_origin, 3149 sizeof (zc.zc_value)); 3150 (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 3151 ret = zfs_ioctl(hdl, ZFS_IOC_PROMOTE, &zc); 3152 3153 if (ret != 0) { 3154 int save_errno = errno; 3155 3156 switch (save_errno) { 3157 case EEXIST: 3158 /* There is a conflicting snapshot name. */ 3159 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 3160 "conflicting snapshot '%s' from parent '%s'"), 3161 zc.zc_string, parent); 3162 return (zfs_error(hdl, EZFS_EXISTS, errbuf)); 3163 3164 default: 3165 return (zfs_standard_error(hdl, save_errno, errbuf)); 3166 } 3167 } 3168 return (ret); 3169 } 3170 3171 /* 3172 * Takes a snapshot of the given dataset. 3173 */ 3174 int 3175 zfs_snapshot(libzfs_handle_t *hdl, const char *path, boolean_t recursive, 3176 nvlist_t *props) 3177 { 3178 const char *delim; 3179 char parent[ZFS_MAXNAMELEN]; 3180 zfs_handle_t *zhp; 3181 zfs_cmd_t zc = { 0 }; 3182 int ret; 3183 char errbuf[1024]; 3184 3185 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN, 3186 "cannot snapshot '%s'"), path); 3187 3188 /* validate the target name */ 3189 if (!zfs_validate_name(hdl, path, ZFS_TYPE_SNAPSHOT, B_TRUE)) 3190 return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf)); 3191 3192 if (props) { 3193 if ((props = zfs_valid_proplist(hdl, ZFS_TYPE_SNAPSHOT, 3194 props, B_FALSE, NULL, errbuf)) == NULL) 3195 return (-1); 3196 3197 if (zcmd_write_src_nvlist(hdl, &zc, props) != 0) { 3198 nvlist_free(props); 3199 return (-1); 3200 } 3201 3202 nvlist_free(props); 3203 } 3204 3205 /* make sure the parent exists and is of the appropriate type */ 3206 delim = strchr(path, '@'); 3207 (void) strncpy(parent, path, delim - path); 3208 parent[delim - path] = '\0'; 3209 3210 if ((zhp = zfs_open(hdl, parent, ZFS_TYPE_FILESYSTEM | 3211 ZFS_TYPE_VOLUME)) == NULL) { 3212 zcmd_free_nvlists(&zc); 3213 return (-1); 3214 } 3215 3216 (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 3217 (void) strlcpy(zc.zc_value, delim+1, sizeof (zc.zc_value)); 3218 if (ZFS_IS_VOLUME(zhp)) 3219 zc.zc_objset_type = DMU_OST_ZVOL; 3220 else 3221 zc.zc_objset_type = DMU_OST_ZFS; 3222 zc.zc_cookie = recursive; 3223 ret = zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_SNAPSHOT, &zc); 3224 3225 zcmd_free_nvlists(&zc); 3226 3227 /* 3228 * if it was recursive, the one that actually failed will be in 3229 * zc.zc_name. 3230 */ 3231 if (ret != 0) { 3232 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN, 3233 "cannot create snapshot '%s@%s'"), zc.zc_name, zc.zc_value); 3234 (void) zfs_standard_error(hdl, errno, errbuf); 3235 } 3236 3237 zfs_close(zhp); 3238 3239 return (ret); 3240 } 3241 3242 /* 3243 * Destroy any more recent snapshots. We invoke this callback on any dependents 3244 * of the snapshot first. If the 'cb_dependent' member is non-zero, then this 3245 * is a dependent and we should just destroy it without checking the transaction 3246 * group. 3247 */ 3248 typedef struct rollback_data { 3249 const char *cb_target; /* the snapshot */ 3250 uint64_t cb_create; /* creation time reference */ 3251 boolean_t cb_error; 3252 boolean_t cb_dependent; 3253 boolean_t cb_force; 3254 } rollback_data_t; 3255 3256 static int 3257 rollback_destroy(zfs_handle_t *zhp, void *data) 3258 { 3259 rollback_data_t *cbp = data; 3260 3261 if (!cbp->cb_dependent) { 3262 if (strcmp(zhp->zfs_name, cbp->cb_target) != 0 && 3263 zfs_get_type(zhp) == ZFS_TYPE_SNAPSHOT && 3264 zfs_prop_get_int(zhp, ZFS_PROP_CREATETXG) > 3265 cbp->cb_create) { 3266 char *logstr; 3267 3268 cbp->cb_dependent = B_TRUE; 3269 cbp->cb_error |= zfs_iter_dependents(zhp, B_FALSE, 3270 rollback_destroy, cbp); 3271 cbp->cb_dependent = B_FALSE; 3272 3273 logstr = zhp->zfs_hdl->libzfs_log_str; 3274 zhp->zfs_hdl->libzfs_log_str = NULL; 3275 cbp->cb_error |= zfs_destroy(zhp, B_FALSE); 3276 zhp->zfs_hdl->libzfs_log_str = logstr; 3277 } 3278 } else { 3279 /* We must destroy this clone; first unmount it */ 3280 prop_changelist_t *clp; 3281 3282 clp = changelist_gather(zhp, ZFS_PROP_NAME, 0, 3283 cbp->cb_force ? MS_FORCE: 0); 3284 if (clp == NULL || changelist_prefix(clp) != 0) { 3285 cbp->cb_error = B_TRUE; 3286 zfs_close(zhp); 3287 return (0); 3288 } 3289 if (zfs_destroy(zhp, B_FALSE) != 0) 3290 cbp->cb_error = B_TRUE; 3291 else 3292 changelist_remove(clp, zhp->zfs_name); 3293 (void) changelist_postfix(clp); 3294 changelist_free(clp); 3295 } 3296 3297 zfs_close(zhp); 3298 return (0); 3299 } 3300 3301 /* 3302 * Given a dataset, rollback to a specific snapshot, discarding any 3303 * data changes since then and making it the active dataset. 3304 * 3305 * Any snapshots more recent than the target are destroyed, along with 3306 * their dependents. 3307 */ 3308 int 3309 zfs_rollback(zfs_handle_t *zhp, zfs_handle_t *snap, boolean_t force) 3310 { 3311 rollback_data_t cb = { 0 }; 3312 int err; 3313 zfs_cmd_t zc = { 0 }; 3314 boolean_t restore_resv = 0; 3315 uint64_t old_volsize, new_volsize; 3316 zfs_prop_t resv_prop; 3317 3318 assert(zhp->zfs_type == ZFS_TYPE_FILESYSTEM || 3319 zhp->zfs_type == ZFS_TYPE_VOLUME); 3320 3321 /* 3322 * Destroy all recent snapshots and its dependends. 3323 */ 3324 cb.cb_force = force; 3325 cb.cb_target = snap->zfs_name; 3326 cb.cb_create = zfs_prop_get_int(snap, ZFS_PROP_CREATETXG); 3327 (void) zfs_iter_children(zhp, rollback_destroy, &cb); 3328 3329 if (cb.cb_error) 3330 return (-1); 3331 3332 /* 3333 * Now that we have verified that the snapshot is the latest, 3334 * rollback to the given snapshot. 3335 */ 3336 3337 if (zhp->zfs_type == ZFS_TYPE_VOLUME) { 3338 if (zfs_which_resv_prop(zhp, &resv_prop) < 0) 3339 return (-1); 3340 old_volsize = zfs_prop_get_int(zhp, ZFS_PROP_VOLSIZE); 3341 restore_resv = 3342 (old_volsize == zfs_prop_get_int(zhp, resv_prop)); 3343 } 3344 3345 (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 3346 3347 if (ZFS_IS_VOLUME(zhp)) 3348 zc.zc_objset_type = DMU_OST_ZVOL; 3349 else 3350 zc.zc_objset_type = DMU_OST_ZFS; 3351 3352 /* 3353 * We rely on zfs_iter_children() to verify that there are no 3354 * newer snapshots for the given dataset. Therefore, we can 3355 * simply pass the name on to the ioctl() call. There is still 3356 * an unlikely race condition where the user has taken a 3357 * snapshot since we verified that this was the most recent. 3358 * 3359 */ 3360 if ((err = zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_ROLLBACK, &zc)) != 0) { 3361 (void) zfs_standard_error_fmt(zhp->zfs_hdl, errno, 3362 dgettext(TEXT_DOMAIN, "cannot rollback '%s'"), 3363 zhp->zfs_name); 3364 return (err); 3365 } 3366 3367 /* 3368 * For volumes, if the pre-rollback volsize matched the pre- 3369 * rollback reservation and the volsize has changed then set 3370 * the reservation property to the post-rollback volsize. 3371 * Make a new handle since the rollback closed the dataset. 3372 */ 3373 if ((zhp->zfs_type == ZFS_TYPE_VOLUME) && 3374 (zhp = make_dataset_handle(zhp->zfs_hdl, zhp->zfs_name))) { 3375 if (restore_resv) { 3376 new_volsize = zfs_prop_get_int(zhp, ZFS_PROP_VOLSIZE); 3377 if (old_volsize != new_volsize) 3378 err = zfs_prop_set_int(zhp, resv_prop, 3379 new_volsize); 3380 } 3381 zfs_close(zhp); 3382 } 3383 return (err); 3384 } 3385 3386 /* 3387 * Iterate over all dependents for a given dataset. This includes both 3388 * hierarchical dependents (children) and data dependents (snapshots and 3389 * clones). The bulk of the processing occurs in get_dependents() in 3390 * libzfs_graph.c. 3391 */ 3392 int 3393 zfs_iter_dependents(zfs_handle_t *zhp, boolean_t allowrecursion, 3394 zfs_iter_f func, void *data) 3395 { 3396 char **dependents; 3397 size_t count; 3398 int i; 3399 zfs_handle_t *child; 3400 int ret = 0; 3401 3402 if (get_dependents(zhp->zfs_hdl, allowrecursion, zhp->zfs_name, 3403 &dependents, &count) != 0) 3404 return (-1); 3405 3406 for (i = 0; i < count; i++) { 3407 if ((child = make_dataset_handle(zhp->zfs_hdl, 3408 dependents[i])) == NULL) 3409 continue; 3410 3411 if ((ret = func(child, data)) != 0) 3412 break; 3413 } 3414 3415 for (i = 0; i < count; i++) 3416 free(dependents[i]); 3417 free(dependents); 3418 3419 return (ret); 3420 } 3421 3422 /* 3423 * Renames the given dataset. 3424 */ 3425 int 3426 zfs_rename(zfs_handle_t *zhp, const char *target, boolean_t recursive) 3427 { 3428 int ret; 3429 zfs_cmd_t zc = { 0 }; 3430 char *delim; 3431 prop_changelist_t *cl = NULL; 3432 zfs_handle_t *zhrp = NULL; 3433 char *parentname = NULL; 3434 char parent[ZFS_MAXNAMELEN]; 3435 libzfs_handle_t *hdl = zhp->zfs_hdl; 3436 char errbuf[1024]; 3437 3438 /* if we have the same exact name, just return success */ 3439 if (strcmp(zhp->zfs_name, target) == 0) 3440 return (0); 3441 3442 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN, 3443 "cannot rename to '%s'"), target); 3444 3445 /* 3446 * Make sure the target name is valid 3447 */ 3448 if (zhp->zfs_type == ZFS_TYPE_SNAPSHOT) { 3449 if ((strchr(target, '@') == NULL) || 3450 *target == '@') { 3451 /* 3452 * Snapshot target name is abbreviated, 3453 * reconstruct full dataset name 3454 */ 3455 (void) strlcpy(parent, zhp->zfs_name, 3456 sizeof (parent)); 3457 delim = strchr(parent, '@'); 3458 if (strchr(target, '@') == NULL) 3459 *(++delim) = '\0'; 3460 else 3461 *delim = '\0'; 3462 (void) strlcat(parent, target, sizeof (parent)); 3463 target = parent; 3464 } else { 3465 /* 3466 * Make sure we're renaming within the same dataset. 3467 */ 3468 delim = strchr(target, '@'); 3469 if (strncmp(zhp->zfs_name, target, delim - target) 3470 != 0 || zhp->zfs_name[delim - target] != '@') { 3471 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 3472 "snapshots must be part of same " 3473 "dataset")); 3474 return (zfs_error(hdl, EZFS_CROSSTARGET, 3475 errbuf)); 3476 } 3477 } 3478 if (!zfs_validate_name(hdl, target, zhp->zfs_type, B_TRUE)) 3479 return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf)); 3480 } else { 3481 if (recursive) { 3482 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 3483 "recursive rename must be a snapshot")); 3484 return (zfs_error(hdl, EZFS_BADTYPE, errbuf)); 3485 } 3486 3487 if (!zfs_validate_name(hdl, target, zhp->zfs_type, B_TRUE)) 3488 return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf)); 3489 3490 /* validate parents */ 3491 if (check_parents(hdl, target, NULL, B_FALSE, NULL) != 0) 3492 return (-1); 3493 3494 /* make sure we're in the same pool */ 3495 verify((delim = strchr(target, '/')) != NULL); 3496 if (strncmp(zhp->zfs_name, target, delim - target) != 0 || 3497 zhp->zfs_name[delim - target] != '/') { 3498 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 3499 "datasets must be within same pool")); 3500 return (zfs_error(hdl, EZFS_CROSSTARGET, errbuf)); 3501 } 3502 3503 /* new name cannot be a child of the current dataset name */ 3504 if (is_descendant(zhp->zfs_name, target)) { 3505 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 3506 "New dataset name cannot be a descendant of " 3507 "current dataset name")); 3508 return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf)); 3509 } 3510 } 3511 3512 (void) snprintf(errbuf, sizeof (errbuf), 3513 dgettext(TEXT_DOMAIN, "cannot rename '%s'"), zhp->zfs_name); 3514 3515 if (getzoneid() == GLOBAL_ZONEID && 3516 zfs_prop_get_int(zhp, ZFS_PROP_ZONED)) { 3517 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 3518 "dataset is used in a non-global zone")); 3519 return (zfs_error(hdl, EZFS_ZONED, errbuf)); 3520 } 3521 3522 if (recursive) { 3523 3524 parentname = zfs_strdup(zhp->zfs_hdl, zhp->zfs_name); 3525 if (parentname == NULL) { 3526 ret = -1; 3527 goto error; 3528 } 3529 delim = strchr(parentname, '@'); 3530 *delim = '\0'; 3531 zhrp = zfs_open(zhp->zfs_hdl, parentname, ZFS_TYPE_DATASET); 3532 if (zhrp == NULL) { 3533 ret = -1; 3534 goto error; 3535 } 3536 3537 } else { 3538 if ((cl = changelist_gather(zhp, ZFS_PROP_NAME, 0, 0)) == NULL) 3539 return (-1); 3540 3541 if (changelist_haszonedchild(cl)) { 3542 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 3543 "child dataset with inherited mountpoint is used " 3544 "in a non-global zone")); 3545 (void) zfs_error(hdl, EZFS_ZONED, errbuf); 3546 goto error; 3547 } 3548 3549 if ((ret = changelist_prefix(cl)) != 0) 3550 goto error; 3551 } 3552 3553 if (ZFS_IS_VOLUME(zhp)) 3554 zc.zc_objset_type = DMU_OST_ZVOL; 3555 else 3556 zc.zc_objset_type = DMU_OST_ZFS; 3557 3558 (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 3559 (void) strlcpy(zc.zc_value, target, sizeof (zc.zc_value)); 3560 3561 zc.zc_cookie = recursive; 3562 3563 if ((ret = zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_RENAME, &zc)) != 0) { 3564 /* 3565 * if it was recursive, the one that actually failed will 3566 * be in zc.zc_name 3567 */ 3568 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN, 3569 "cannot rename '%s'"), zc.zc_name); 3570 3571 if (recursive && errno == EEXIST) { 3572 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 3573 "a child dataset already has a snapshot " 3574 "with the new name")); 3575 (void) zfs_error(hdl, EZFS_EXISTS, errbuf); 3576 } else { 3577 (void) zfs_standard_error(zhp->zfs_hdl, errno, errbuf); 3578 } 3579 3580 /* 3581 * On failure, we still want to remount any filesystems that 3582 * were previously mounted, so we don't alter the system state. 3583 */ 3584 if (!recursive) 3585 (void) changelist_postfix(cl); 3586 } else { 3587 if (!recursive) { 3588 changelist_rename(cl, zfs_get_name(zhp), target); 3589 ret = changelist_postfix(cl); 3590 } 3591 } 3592 3593 error: 3594 if (parentname) { 3595 free(parentname); 3596 } 3597 if (zhrp) { 3598 zfs_close(zhrp); 3599 } 3600 if (cl) { 3601 changelist_free(cl); 3602 } 3603 return (ret); 3604 } 3605 3606 nvlist_t * 3607 zfs_get_user_props(zfs_handle_t *zhp) 3608 { 3609 return (zhp->zfs_user_props); 3610 } 3611 3612 nvlist_t * 3613 zfs_get_recvd_props(zfs_handle_t *zhp) 3614 { 3615 if (zhp->zfs_recvd_props == NULL) 3616 if (get_recvd_props_ioctl(zhp) != 0) 3617 return (NULL); 3618 return (zhp->zfs_recvd_props); 3619 } 3620 3621 /* 3622 * This function is used by 'zfs list' to determine the exact set of columns to 3623 * display, and their maximum widths. This does two main things: 3624 * 3625 * - If this is a list of all properties, then expand the list to include 3626 * all native properties, and set a flag so that for each dataset we look 3627 * for new unique user properties and add them to the list. 3628 * 3629 * - For non fixed-width properties, keep track of the maximum width seen 3630 * so that we can size the column appropriately. If the user has 3631 * requested received property values, we also need to compute the width 3632 * of the RECEIVED column. 3633 */ 3634 int 3635 zfs_expand_proplist(zfs_handle_t *zhp, zprop_list_t **plp, boolean_t received) 3636 { 3637 libzfs_handle_t *hdl = zhp->zfs_hdl; 3638 zprop_list_t *entry; 3639 zprop_list_t **last, **start; 3640 nvlist_t *userprops, *propval; 3641 nvpair_t *elem; 3642 char *strval; 3643 char buf[ZFS_MAXPROPLEN]; 3644 3645 if (zprop_expand_list(hdl, plp, ZFS_TYPE_DATASET) != 0) 3646 return (-1); 3647 3648 userprops = zfs_get_user_props(zhp); 3649 3650 entry = *plp; 3651 if (entry->pl_all && nvlist_next_nvpair(userprops, NULL) != NULL) { 3652 /* 3653 * Go through and add any user properties as necessary. We 3654 * start by incrementing our list pointer to the first 3655 * non-native property. 3656 */ 3657 start = plp; 3658 while (*start != NULL) { 3659 if ((*start)->pl_prop == ZPROP_INVAL) 3660 break; 3661 start = &(*start)->pl_next; 3662 } 3663 3664 elem = NULL; 3665 while ((elem = nvlist_next_nvpair(userprops, elem)) != NULL) { 3666 /* 3667 * See if we've already found this property in our list. 3668 */ 3669 for (last = start; *last != NULL; 3670 last = &(*last)->pl_next) { 3671 if (strcmp((*last)->pl_user_prop, 3672 nvpair_name(elem)) == 0) 3673 break; 3674 } 3675 3676 if (*last == NULL) { 3677 if ((entry = zfs_alloc(hdl, 3678 sizeof (zprop_list_t))) == NULL || 3679 ((entry->pl_user_prop = zfs_strdup(hdl, 3680 nvpair_name(elem)))) == NULL) { 3681 free(entry); 3682 return (-1); 3683 } 3684 3685 entry->pl_prop = ZPROP_INVAL; 3686 entry->pl_width = strlen(nvpair_name(elem)); 3687 entry->pl_all = B_TRUE; 3688 *last = entry; 3689 } 3690 } 3691 } 3692 3693 /* 3694 * Now go through and check the width of any non-fixed columns 3695 */ 3696 for (entry = *plp; entry != NULL; entry = entry->pl_next) { 3697 if (entry->pl_fixed) 3698 continue; 3699 3700 if (entry->pl_prop != ZPROP_INVAL) { 3701 if (zfs_prop_get(zhp, entry->pl_prop, 3702 buf, sizeof (buf), NULL, NULL, 0, B_FALSE) == 0) { 3703 if (strlen(buf) > entry->pl_width) 3704 entry->pl_width = strlen(buf); 3705 } 3706 if (received && zfs_prop_get_recvd(zhp, 3707 zfs_prop_to_name(entry->pl_prop), 3708 buf, sizeof (buf), B_FALSE) == 0) 3709 if (strlen(buf) > entry->pl_recvd_width) 3710 entry->pl_recvd_width = strlen(buf); 3711 } else { 3712 if (nvlist_lookup_nvlist(userprops, entry->pl_user_prop, 3713 &propval) == 0) { 3714 verify(nvlist_lookup_string(propval, 3715 ZPROP_VALUE, &strval) == 0); 3716 if (strlen(strval) > entry->pl_width) 3717 entry->pl_width = strlen(strval); 3718 } 3719 if (received && zfs_prop_get_recvd(zhp, 3720 entry->pl_user_prop, 3721 buf, sizeof (buf), B_FALSE) == 0) 3722 if (strlen(buf) > entry->pl_recvd_width) 3723 entry->pl_recvd_width = strlen(buf); 3724 } 3725 } 3726 3727 return (0); 3728 } 3729 3730 int 3731 zfs_iscsi_perm_check(libzfs_handle_t *hdl, char *dataset, ucred_t *cred) 3732 { 3733 zfs_cmd_t zc = { 0 }; 3734 nvlist_t *nvp; 3735 gid_t gid; 3736 uid_t uid; 3737 const gid_t *groups; 3738 int group_cnt; 3739 int error; 3740 3741 if (nvlist_alloc(&nvp, NV_UNIQUE_NAME, 0) != 0) 3742 return (no_memory(hdl)); 3743 3744 uid = ucred_geteuid(cred); 3745 gid = ucred_getegid(cred); 3746 group_cnt = ucred_getgroups(cred, &groups); 3747 3748 if (uid == (uid_t)-1 || gid == (uid_t)-1 || group_cnt == (uid_t)-1) 3749 return (1); 3750 3751 if (nvlist_add_uint32(nvp, ZFS_DELEG_PERM_UID, uid) != 0) { 3752 nvlist_free(nvp); 3753 return (1); 3754 } 3755 3756 if (nvlist_add_uint32(nvp, ZFS_DELEG_PERM_GID, gid) != 0) { 3757 nvlist_free(nvp); 3758 return (1); 3759 } 3760 3761 if (nvlist_add_uint32_array(nvp, 3762 ZFS_DELEG_PERM_GROUPS, (uint32_t *)groups, group_cnt) != 0) { 3763 nvlist_free(nvp); 3764 return (1); 3765 } 3766 (void) strlcpy(zc.zc_name, dataset, sizeof (zc.zc_name)); 3767 3768 if (zcmd_write_src_nvlist(hdl, &zc, nvp)) 3769 return (-1); 3770 3771 error = ioctl(hdl->libzfs_fd, ZFS_IOC_ISCSI_PERM_CHECK, &zc); 3772 nvlist_free(nvp); 3773 return (error); 3774 } 3775 3776 int 3777 zfs_deleg_share_nfs(libzfs_handle_t *hdl, char *dataset, char *path, 3778 char *resource, void *export, void *sharetab, 3779 int sharemax, zfs_share_op_t operation) 3780 { 3781 zfs_cmd_t zc = { 0 }; 3782 int error; 3783 3784 (void) strlcpy(zc.zc_name, dataset, sizeof (zc.zc_name)); 3785 (void) strlcpy(zc.zc_value, path, sizeof (zc.zc_value)); 3786 if (resource) 3787 (void) strlcpy(zc.zc_string, resource, sizeof (zc.zc_string)); 3788 zc.zc_share.z_sharedata = (uint64_t)(uintptr_t)sharetab; 3789 zc.zc_share.z_exportdata = (uint64_t)(uintptr_t)export; 3790 zc.zc_share.z_sharetype = operation; 3791 zc.zc_share.z_sharemax = sharemax; 3792 error = ioctl(hdl->libzfs_fd, ZFS_IOC_SHARE, &zc); 3793 return (error); 3794 } 3795 3796 void 3797 zfs_prune_proplist(zfs_handle_t *zhp, uint8_t *props) 3798 { 3799 nvpair_t *curr; 3800 3801 /* 3802 * Keep a reference to the props-table against which we prune the 3803 * properties. 3804 */ 3805 zhp->zfs_props_table = props; 3806 3807 curr = nvlist_next_nvpair(zhp->zfs_props, NULL); 3808 3809 while (curr) { 3810 zfs_prop_t zfs_prop = zfs_name_to_prop(nvpair_name(curr)); 3811 nvpair_t *next = nvlist_next_nvpair(zhp->zfs_props, curr); 3812 3813 /* 3814 * User properties will result in ZPROP_INVAL, and since we 3815 * only know how to prune standard ZFS properties, we always 3816 * leave these in the list. This can also happen if we 3817 * encounter an unknown DSL property (when running older 3818 * software, for example). 3819 */ 3820 if (zfs_prop != ZPROP_INVAL && props[zfs_prop] == B_FALSE) 3821 (void) nvlist_remove(zhp->zfs_props, 3822 nvpair_name(curr), nvpair_type(curr)); 3823 curr = next; 3824 } 3825 } 3826 3827 static int 3828 zfs_smb_acl_mgmt(libzfs_handle_t *hdl, char *dataset, char *path, 3829 zfs_smb_acl_op_t cmd, char *resource1, char *resource2) 3830 { 3831 zfs_cmd_t zc = { 0 }; 3832 nvlist_t *nvlist = NULL; 3833 int error; 3834 3835 (void) strlcpy(zc.zc_name, dataset, sizeof (zc.zc_name)); 3836 (void) strlcpy(zc.zc_value, path, sizeof (zc.zc_value)); 3837 zc.zc_cookie = (uint64_t)cmd; 3838 3839 if (cmd == ZFS_SMB_ACL_RENAME) { 3840 if (nvlist_alloc(&nvlist, NV_UNIQUE_NAME, 0) != 0) { 3841 (void) no_memory(hdl); 3842 return (NULL); 3843 } 3844 } 3845 3846 switch (cmd) { 3847 case ZFS_SMB_ACL_ADD: 3848 case ZFS_SMB_ACL_REMOVE: 3849 (void) strlcpy(zc.zc_string, resource1, sizeof (zc.zc_string)); 3850 break; 3851 case ZFS_SMB_ACL_RENAME: 3852 if (nvlist_add_string(nvlist, ZFS_SMB_ACL_SRC, 3853 resource1) != 0) { 3854 (void) no_memory(hdl); 3855 return (-1); 3856 } 3857 if (nvlist_add_string(nvlist, ZFS_SMB_ACL_TARGET, 3858 resource2) != 0) { 3859 (void) no_memory(hdl); 3860 return (-1); 3861 } 3862 if (zcmd_write_src_nvlist(hdl, &zc, nvlist) != 0) { 3863 nvlist_free(nvlist); 3864 return (-1); 3865 } 3866 break; 3867 case ZFS_SMB_ACL_PURGE: 3868 break; 3869 default: 3870 return (-1); 3871 } 3872 error = ioctl(hdl->libzfs_fd, ZFS_IOC_SMB_ACL, &zc); 3873 if (nvlist) 3874 nvlist_free(nvlist); 3875 return (error); 3876 } 3877 3878 int 3879 zfs_smb_acl_add(libzfs_handle_t *hdl, char *dataset, 3880 char *path, char *resource) 3881 { 3882 return (zfs_smb_acl_mgmt(hdl, dataset, path, ZFS_SMB_ACL_ADD, 3883 resource, NULL)); 3884 } 3885 3886 int 3887 zfs_smb_acl_remove(libzfs_handle_t *hdl, char *dataset, 3888 char *path, char *resource) 3889 { 3890 return (zfs_smb_acl_mgmt(hdl, dataset, path, ZFS_SMB_ACL_REMOVE, 3891 resource, NULL)); 3892 } 3893 3894 int 3895 zfs_smb_acl_purge(libzfs_handle_t *hdl, char *dataset, char *path) 3896 { 3897 return (zfs_smb_acl_mgmt(hdl, dataset, path, ZFS_SMB_ACL_PURGE, 3898 NULL, NULL)); 3899 } 3900 3901 int 3902 zfs_smb_acl_rename(libzfs_handle_t *hdl, char *dataset, char *path, 3903 char *oldname, char *newname) 3904 { 3905 return (zfs_smb_acl_mgmt(hdl, dataset, path, ZFS_SMB_ACL_RENAME, 3906 oldname, newname)); 3907 } 3908 3909 int 3910 zfs_userspace(zfs_handle_t *zhp, zfs_userquota_prop_t type, 3911 zfs_userspace_cb_t func, void *arg) 3912 { 3913 zfs_cmd_t zc = { 0 }; 3914 int error; 3915 zfs_useracct_t buf[100]; 3916 3917 (void) strncpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 3918 3919 zc.zc_objset_type = type; 3920 zc.zc_nvlist_dst = (uintptr_t)buf; 3921 3922 /* CONSTCOND */ 3923 while (1) { 3924 zfs_useracct_t *zua = buf; 3925 3926 zc.zc_nvlist_dst_size = sizeof (buf); 3927 error = ioctl(zhp->zfs_hdl->libzfs_fd, 3928 ZFS_IOC_USERSPACE_MANY, &zc); 3929 if (error || zc.zc_nvlist_dst_size == 0) 3930 break; 3931 3932 while (zc.zc_nvlist_dst_size > 0) { 3933 error = func(arg, zua->zu_domain, zua->zu_rid, 3934 zua->zu_space); 3935 if (error != 0) 3936 return (error); 3937 zua++; 3938 zc.zc_nvlist_dst_size -= sizeof (zfs_useracct_t); 3939 } 3940 } 3941 3942 return (error); 3943 } 3944 3945 int 3946 zfs_hold(zfs_handle_t *zhp, const char *snapname, const char *tag, 3947 boolean_t recursive, boolean_t temphold, boolean_t enoent_ok) 3948 { 3949 zfs_cmd_t zc = { 0 }; 3950 libzfs_handle_t *hdl = zhp->zfs_hdl; 3951 3952 (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 3953 (void) strlcpy(zc.zc_value, snapname, sizeof (zc.zc_value)); 3954 if (strlcpy(zc.zc_string, tag, sizeof (zc.zc_string)) 3955 >= sizeof (zc.zc_string)) 3956 return (zfs_error(hdl, EZFS_TAGTOOLONG, tag)); 3957 zc.zc_cookie = recursive; 3958 zc.zc_temphold = temphold; 3959 3960 if (zfs_ioctl(hdl, ZFS_IOC_HOLD, &zc) != 0) { 3961 char errbuf[ZFS_MAXNAMELEN+32]; 3962 3963 /* 3964 * if it was recursive, the one that actually failed will be in 3965 * zc.zc_name. 3966 */ 3967 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN, 3968 "cannot hold '%s@%s'"), zc.zc_name, snapname); 3969 switch (errno) { 3970 case E2BIG: 3971 /* 3972 * Temporary tags wind up having the ds object id 3973 * prepended. So even if we passed the length check 3974 * above, it's still possible for the tag to wind 3975 * up being slightly too long. 3976 */ 3977 return (zfs_error(hdl, EZFS_TAGTOOLONG, errbuf)); 3978 case ENOTSUP: 3979 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 3980 "pool must be upgraded")); 3981 return (zfs_error(hdl, EZFS_BADVERSION, errbuf)); 3982 case EINVAL: 3983 return (zfs_error(hdl, EZFS_BADTYPE, errbuf)); 3984 case EEXIST: 3985 return (zfs_error(hdl, EZFS_REFTAG_HOLD, errbuf)); 3986 case ENOENT: 3987 if (enoent_ok) 3988 return (0); 3989 /* FALLTHROUGH */ 3990 default: 3991 return (zfs_standard_error_fmt(hdl, errno, errbuf)); 3992 } 3993 } 3994 3995 return (0); 3996 } 3997 3998 struct hold_range_arg { 3999 zfs_handle_t *origin; 4000 const char *fromsnap; 4001 const char *tosnap; 4002 char lastsnapheld[ZFS_MAXNAMELEN]; 4003 const char *tag; 4004 boolean_t temphold; 4005 boolean_t seento; 4006 boolean_t seenfrom; 4007 boolean_t holding; 4008 }; 4009 4010 static int 4011 zfs_hold_range_one(zfs_handle_t *zhp, void *arg) 4012 { 4013 struct hold_range_arg *hra = arg; 4014 const char *thissnap; 4015 int error; 4016 4017 thissnap = strchr(zfs_get_name(zhp), '@') + 1; 4018 4019 if (hra->fromsnap && !hra->seenfrom && 4020 strcmp(hra->fromsnap, thissnap) == 0) 4021 hra->seenfrom = B_TRUE; 4022 4023 /* snap is older or newer than the desired range, ignore it */ 4024 if (hra->seento || !hra->seenfrom) { 4025 zfs_close(zhp); 4026 return (0); 4027 } 4028 4029 if (hra->holding) { 4030 /* We could be racing with destroy, so ignore ENOENT. */ 4031 error = zfs_hold(hra->origin, thissnap, hra->tag, B_FALSE, 4032 hra->temphold, B_TRUE); 4033 if (error == 0) { 4034 (void) strlcpy(hra->lastsnapheld, zfs_get_name(zhp), 4035 sizeof (hra->lastsnapheld)); 4036 } 4037 } else { 4038 error = zfs_release(hra->origin, thissnap, hra->tag, B_FALSE); 4039 } 4040 4041 if (!hra->seento && strcmp(hra->tosnap, thissnap) == 0) 4042 hra->seento = B_TRUE; 4043 4044 zfs_close(zhp); 4045 return (error); 4046 } 4047 4048 /* 4049 * Add a user hold on the set of snapshots starting with fromsnap up to 4050 * and including tosnap. If we're unable to to acquire a particular hold, 4051 * undo any holds up to that point. 4052 */ 4053 int 4054 zfs_hold_range(zfs_handle_t *zhp, const char *fromsnap, const char *tosnap, 4055 const char *tag, boolean_t temphold) 4056 { 4057 struct hold_range_arg arg = { 0 }; 4058 int error; 4059 4060 arg.origin = zhp; 4061 arg.fromsnap = fromsnap; 4062 arg.tosnap = tosnap; 4063 arg.tag = tag; 4064 arg.temphold = temphold; 4065 arg.holding = B_TRUE; 4066 4067 error = zfs_iter_snapshots_sorted(zhp, zfs_hold_range_one, &arg); 4068 4069 /* 4070 * Make sure we either hold the entire range or none. 4071 */ 4072 if (error && arg.lastsnapheld[0] != '\0') { 4073 (void) zfs_release_range(zhp, fromsnap, 4074 (const char *)arg.lastsnapheld, tag); 4075 } 4076 return (error); 4077 } 4078 4079 int 4080 zfs_release(zfs_handle_t *zhp, const char *snapname, const char *tag, 4081 boolean_t recursive) 4082 { 4083 zfs_cmd_t zc = { 0 }; 4084 libzfs_handle_t *hdl = zhp->zfs_hdl; 4085 4086 (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); 4087 (void) strlcpy(zc.zc_value, snapname, sizeof (zc.zc_value)); 4088 if (strlcpy(zc.zc_string, tag, sizeof (zc.zc_string)) 4089 >= sizeof (zc.zc_string)) 4090 return (zfs_error(hdl, EZFS_TAGTOOLONG, tag)); 4091 zc.zc_cookie = recursive; 4092 4093 if (zfs_ioctl(hdl, ZFS_IOC_RELEASE, &zc) != 0) { 4094 char errbuf[ZFS_MAXNAMELEN+32]; 4095 4096 /* 4097 * if it was recursive, the one that actually failed will be in 4098 * zc.zc_name. 4099 */ 4100 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN, 4101 "cannot release '%s@%s'"), zc.zc_name, snapname); 4102 switch (errno) { 4103 case ESRCH: 4104 return (zfs_error(hdl, EZFS_REFTAG_RELE, errbuf)); 4105 case ENOTSUP: 4106 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, 4107 "pool must be upgraded")); 4108 return (zfs_error(hdl, EZFS_BADVERSION, errbuf)); 4109 case EINVAL: 4110 return (zfs_error(hdl, EZFS_BADTYPE, errbuf)); 4111 default: 4112 return (zfs_standard_error_fmt(hdl, errno, errbuf)); 4113 } 4114 } 4115 4116 return (0); 4117 } 4118 4119 /* 4120 * Release a user hold from the set of snapshots starting with fromsnap 4121 * up to and including tosnap. 4122 */ 4123 int 4124 zfs_release_range(zfs_handle_t *zhp, const char *fromsnap, const char *tosnap, 4125 const char *tag) 4126 { 4127 struct hold_range_arg arg = { 0 }; 4128 4129 arg.origin = zhp; 4130 arg.fromsnap = fromsnap; 4131 arg.tosnap = tosnap; 4132 arg.tag = tag; 4133 4134 return (zfs_iter_snapshots_sorted(zhp, zfs_hold_range_one, &arg)); 4135 } 4136 4137 uint64_t 4138 zvol_volsize_to_reservation(uint64_t volsize, nvlist_t *props) 4139 { 4140 uint64_t numdb; 4141 uint64_t nblocks, volblocksize; 4142 int ncopies; 4143 char *strval; 4144 4145 if (nvlist_lookup_string(props, 4146 zfs_prop_to_name(ZFS_PROP_COPIES), &strval) == 0) 4147 ncopies = atoi(strval); 4148 else 4149 ncopies = 1; 4150 if (nvlist_lookup_uint64(props, 4151 zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), 4152 &volblocksize) != 0) 4153 volblocksize = ZVOL_DEFAULT_BLOCKSIZE; 4154 nblocks = volsize/volblocksize; 4155 /* start with metadnode L0-L6 */ 4156 numdb = 7; 4157 /* calculate number of indirects */ 4158 while (nblocks > 1) { 4159 nblocks += DNODES_PER_LEVEL - 1; 4160 nblocks /= DNODES_PER_LEVEL; 4161 numdb += nblocks; 4162 } 4163 numdb *= MIN(SPA_DVAS_PER_BP, ncopies + 1); 4164 volsize *= ncopies; 4165 /* 4166 * this is exactly DN_MAX_INDBLKSHIFT when metadata isn't 4167 * compressed, but in practice they compress down to about 4168 * 1100 bytes 4169 */ 4170 numdb *= 1ULL << DN_MAX_INDBLKSHIFT; 4171 volsize += numdb; 4172 return (volsize); 4173 } 4174