4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Copyright (c) 2013, Joyent, Inc. All rights reserved.
25 * Copyright (c) 2011, 2016 by Delphix. All rights reserved.
26 * Copyright (c) 2012 DEY Storage Systems, Inc. All rights reserved.
27 * Copyright (c) 2011-2012 Pawel Jakub Dawidek. All rights reserved.
28 * Copyright (c) 2013 Martin Matuska. All rights reserved.
29 * Copyright (c) 2013 Steven Hartland. All rights reserved.
30 * Copyright (c) 2014 Integros [integros.com]
31 * Copyright 2016 Nexenta Systems, Inc.
32 * Copyright 2016 Igor Kozhukhov <ikozhukhov@gmail.com>
33 * Copyright 2017 RackTop Systems.
47 #include <sys/mntent.h>
48 #include <sys/mount.h>
56 #include <directory.h>
58 #include <sys/dnode.h>
63 #include "zfs_namecheck.h"
65 #include "libzfs_impl.h"
66 #include "zfs_deleg.h"
68 static int userquota_propname_decode(const char *propname
, boolean_t zoned
,
69 zfs_userquota_prop_t
*typep
, char *domain
, int domainlen
, uint64_t *ridp
);
72 * Given a single type (not a mask of types), return the type in a human
76 zfs_type_to_name(zfs_type_t type
)
79 case ZFS_TYPE_FILESYSTEM
:
80 return (dgettext(TEXT_DOMAIN
, "filesystem"));
81 case ZFS_TYPE_SNAPSHOT
:
82 return (dgettext(TEXT_DOMAIN
, "snapshot"));
84 return (dgettext(TEXT_DOMAIN
, "volume"));
86 return (dgettext(TEXT_DOMAIN
, "pool"));
87 case ZFS_TYPE_BOOKMARK
:
88 return (dgettext(TEXT_DOMAIN
, "bookmark"));
90 assert(!"unhandled zfs_type_t");
97 * Validate a ZFS path. This is used even before trying to open the dataset, to
98 * provide a more meaningful error message. We call zfs_error_aux() to
99 * explain exactly why the name was not valid.
102 zfs_validate_name(libzfs_handle_t
*hdl
, const char *path
, int type
,
108 if (entity_namecheck(path
, &why
, &what
) != 0) {
111 case NAME_ERR_TOOLONG
:
112 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
113 "name is too long"));
116 case NAME_ERR_LEADING_SLASH
:
117 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
118 "leading slash in name"));
121 case NAME_ERR_EMPTY_COMPONENT
:
122 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
123 "empty component in name"));
126 case NAME_ERR_TRAILING_SLASH
:
127 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
128 "trailing slash in name"));
131 case NAME_ERR_INVALCHAR
:
133 dgettext(TEXT_DOMAIN
, "invalid character "
134 "'%c' in name"), what
);
137 case NAME_ERR_MULTIPLE_DELIMITERS
:
138 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
139 "multiple '@' and/or '#' delimiters in "
143 case NAME_ERR_NOLETTER
:
144 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
145 "pool doesn't begin with a letter"));
148 case NAME_ERR_RESERVED
:
149 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
150 "name is reserved"));
153 case NAME_ERR_DISKLIKE
:
154 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
155 "reserved disk name"));
159 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
160 "(%d) not defined"), why
);
168 if (!(type
& ZFS_TYPE_SNAPSHOT
) && strchr(path
, '@') != NULL
) {
170 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
171 "snapshot delimiter '@' is not expected here"));
175 if (type
== ZFS_TYPE_SNAPSHOT
&& strchr(path
, '@') == NULL
) {
177 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
178 "missing '@' delimiter in snapshot name"));
182 if (!(type
& ZFS_TYPE_BOOKMARK
) && strchr(path
, '#') != NULL
) {
184 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
185 "bookmark delimiter '#' is not expected here"));
189 if (type
== ZFS_TYPE_BOOKMARK
&& strchr(path
, '#') == NULL
) {
191 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
192 "missing '#' delimiter in bookmark name"));
196 if (modifying
&& strchr(path
, '%') != NULL
) {
198 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
199 "invalid character %c in name"), '%');
207 zfs_name_valid(const char *name
, zfs_type_t type
)
209 if (type
== ZFS_TYPE_POOL
)
210 return (zpool_name_valid(NULL
, B_FALSE
, name
));
211 return (zfs_validate_name(NULL
, name
, type
, B_FALSE
));
215 * This function takes the raw DSL properties, and filters out the user-defined
216 * properties into a separate nvlist.
219 process_user_props(zfs_handle_t
*zhp
, nvlist_t
*props
)
221 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
226 if (nvlist_alloc(&nvl
, NV_UNIQUE_NAME
, 0) != 0) {
227 (void) no_memory(hdl
);
232 while ((elem
= nvlist_next_nvpair(props
, elem
)) != NULL
) {
233 if (!zfs_prop_user(nvpair_name(elem
)))
236 verify(nvpair_value_nvlist(elem
, &propval
) == 0);
237 if (nvlist_add_nvlist(nvl
, nvpair_name(elem
), propval
) != 0) {
239 (void) no_memory(hdl
);
247 static zpool_handle_t
*
248 zpool_add_handle(zfs_handle_t
*zhp
, const char *pool_name
)
250 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
253 if ((zph
= zpool_open_canfail(hdl
, pool_name
)) != NULL
) {
254 if (hdl
->libzfs_pool_handles
!= NULL
)
255 zph
->zpool_next
= hdl
->libzfs_pool_handles
;
256 hdl
->libzfs_pool_handles
= zph
;
261 static zpool_handle_t
*
262 zpool_find_handle(zfs_handle_t
*zhp
, const char *pool_name
, int len
)
264 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
265 zpool_handle_t
*zph
= hdl
->libzfs_pool_handles
;
267 while ((zph
!= NULL
) &&
268 (strncmp(pool_name
, zpool_get_name(zph
), len
) != 0))
269 zph
= zph
->zpool_next
;
274 * Returns a handle to the pool that contains the provided dataset.
275 * If a handle to that pool already exists then that handle is returned.
276 * Otherwise, a new handle is created and added to the list of handles.
278 static zpool_handle_t
*
279 zpool_handle(zfs_handle_t
*zhp
)
285 len
= strcspn(zhp
->zfs_name
, "/@#") + 1;
286 pool_name
= zfs_alloc(zhp
->zfs_hdl
, len
);
287 (void) strlcpy(pool_name
, zhp
->zfs_name
, len
);
289 zph
= zpool_find_handle(zhp
, pool_name
, len
);
291 zph
= zpool_add_handle(zhp
, pool_name
);
298 zpool_free_handles(libzfs_handle_t
*hdl
)
300 zpool_handle_t
*next
, *zph
= hdl
->libzfs_pool_handles
;
302 while (zph
!= NULL
) {
303 next
= zph
->zpool_next
;
307 hdl
->libzfs_pool_handles
= NULL
;
311 * Utility function to gather stats (objset and zpl) for the given object.
314 get_stats_ioctl(zfs_handle_t
*zhp
, zfs_cmd_t
*zc
)
316 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
318 (void) strlcpy(zc
->zc_name
, zhp
->zfs_name
, sizeof (zc
->zc_name
));
320 while (ioctl(hdl
->libzfs_fd
, ZFS_IOC_OBJSET_STATS
, zc
) != 0) {
321 if (errno
== ENOMEM
) {
322 if (zcmd_expand_dst_nvlist(hdl
, zc
) != 0) {
333 * Utility function to get the received properties of the given object.
336 get_recvd_props_ioctl(zfs_handle_t
*zhp
)
338 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
339 nvlist_t
*recvdprops
;
340 zfs_cmd_t zc
= { 0 };
343 if (zcmd_alloc_dst_nvlist(hdl
, &zc
, 0) != 0)
346 (void) strlcpy(zc
.zc_name
, zhp
->zfs_name
, sizeof (zc
.zc_name
));
348 while (ioctl(hdl
->libzfs_fd
, ZFS_IOC_OBJSET_RECVD_PROPS
, &zc
) != 0) {
349 if (errno
== ENOMEM
) {
350 if (zcmd_expand_dst_nvlist(hdl
, &zc
) != 0) {
354 zcmd_free_nvlists(&zc
);
359 err
= zcmd_read_dst_nvlist(zhp
->zfs_hdl
, &zc
, &recvdprops
);
360 zcmd_free_nvlists(&zc
);
364 nvlist_free(zhp
->zfs_recvd_props
);
365 zhp
->zfs_recvd_props
= recvdprops
;
371 put_stats_zhdl(zfs_handle_t
*zhp
, zfs_cmd_t
*zc
)
373 nvlist_t
*allprops
, *userprops
;
375 zhp
->zfs_dmustats
= zc
->zc_objset_stats
; /* structure assignment */
377 if (zcmd_read_dst_nvlist(zhp
->zfs_hdl
, zc
, &allprops
) != 0) {
382 * XXX Why do we store the user props separately, in addition to
383 * storing them in zfs_props?
385 if ((userprops
= process_user_props(zhp
, allprops
)) == NULL
) {
386 nvlist_free(allprops
);
390 nvlist_free(zhp
->zfs_props
);
391 nvlist_free(zhp
->zfs_user_props
);
393 zhp
->zfs_props
= allprops
;
394 zhp
->zfs_user_props
= userprops
;
400 get_stats(zfs_handle_t
*zhp
)
403 zfs_cmd_t zc
= { 0 };
405 if (zcmd_alloc_dst_nvlist(zhp
->zfs_hdl
, &zc
, 0) != 0)
407 if (get_stats_ioctl(zhp
, &zc
) != 0)
409 else if (put_stats_zhdl(zhp
, &zc
) != 0)
411 zcmd_free_nvlists(&zc
);
416 * Refresh the properties currently stored in the handle.
419 zfs_refresh_properties(zfs_handle_t
*zhp
)
421 (void) get_stats(zhp
);
425 * Makes a handle from the given dataset name. Used by zfs_open() and
426 * zfs_iter_* to create child handles on the fly.
429 make_dataset_handle_common(zfs_handle_t
*zhp
, zfs_cmd_t
*zc
)
431 if (put_stats_zhdl(zhp
, zc
) != 0)
435 * We've managed to open the dataset and gather statistics. Determine
436 * the high-level type.
438 if (zhp
->zfs_dmustats
.dds_type
== DMU_OST_ZVOL
)
439 zhp
->zfs_head_type
= ZFS_TYPE_VOLUME
;
440 else if (zhp
->zfs_dmustats
.dds_type
== DMU_OST_ZFS
)
441 zhp
->zfs_head_type
= ZFS_TYPE_FILESYSTEM
;
445 if (zhp
->zfs_dmustats
.dds_is_snapshot
)
446 zhp
->zfs_type
= ZFS_TYPE_SNAPSHOT
;
447 else if (zhp
->zfs_dmustats
.dds_type
== DMU_OST_ZVOL
)
448 zhp
->zfs_type
= ZFS_TYPE_VOLUME
;
449 else if (zhp
->zfs_dmustats
.dds_type
== DMU_OST_ZFS
)
450 zhp
->zfs_type
= ZFS_TYPE_FILESYSTEM
;
452 abort(); /* we should never see any other types */
454 if ((zhp
->zpool_hdl
= zpool_handle(zhp
)) == NULL
)
461 make_dataset_handle(libzfs_handle_t
*hdl
, const char *path
)
463 zfs_cmd_t zc
= { 0 };
465 zfs_handle_t
*zhp
= calloc(sizeof (zfs_handle_t
), 1);
471 (void) strlcpy(zhp
->zfs_name
, path
, sizeof (zhp
->zfs_name
));
472 if (zcmd_alloc_dst_nvlist(hdl
, &zc
, 0) != 0) {
476 if (get_stats_ioctl(zhp
, &zc
) == -1) {
477 zcmd_free_nvlists(&zc
);
481 if (make_dataset_handle_common(zhp
, &zc
) == -1) {
485 zcmd_free_nvlists(&zc
);
490 make_dataset_handle_zc(libzfs_handle_t
*hdl
, zfs_cmd_t
*zc
)
492 zfs_handle_t
*zhp
= calloc(sizeof (zfs_handle_t
), 1);
498 (void) strlcpy(zhp
->zfs_name
, zc
->zc_name
, sizeof (zhp
->zfs_name
));
499 if (make_dataset_handle_common(zhp
, zc
) == -1) {
507 make_dataset_simple_handle_zc(zfs_handle_t
*pzhp
, zfs_cmd_t
*zc
)
509 zfs_handle_t
*zhp
= calloc(sizeof (zfs_handle_t
), 1);
514 zhp
->zfs_hdl
= pzhp
->zfs_hdl
;
515 (void) strlcpy(zhp
->zfs_name
, zc
->zc_name
, sizeof (zhp
->zfs_name
));
516 zhp
->zfs_head_type
= pzhp
->zfs_type
;
517 zhp
->zfs_type
= ZFS_TYPE_SNAPSHOT
;
518 zhp
->zpool_hdl
= zpool_handle(zhp
);
523 zfs_handle_dup(zfs_handle_t
*zhp_orig
)
525 zfs_handle_t
*zhp
= calloc(sizeof (zfs_handle_t
), 1);
530 zhp
->zfs_hdl
= zhp_orig
->zfs_hdl
;
531 zhp
->zpool_hdl
= zhp_orig
->zpool_hdl
;
532 (void) strlcpy(zhp
->zfs_name
, zhp_orig
->zfs_name
,
533 sizeof (zhp
->zfs_name
));
534 zhp
->zfs_type
= zhp_orig
->zfs_type
;
535 zhp
->zfs_head_type
= zhp_orig
->zfs_head_type
;
536 zhp
->zfs_dmustats
= zhp_orig
->zfs_dmustats
;
537 if (zhp_orig
->zfs_props
!= NULL
) {
538 if (nvlist_dup(zhp_orig
->zfs_props
, &zhp
->zfs_props
, 0) != 0) {
539 (void) no_memory(zhp
->zfs_hdl
);
544 if (zhp_orig
->zfs_user_props
!= NULL
) {
545 if (nvlist_dup(zhp_orig
->zfs_user_props
,
546 &zhp
->zfs_user_props
, 0) != 0) {
547 (void) no_memory(zhp
->zfs_hdl
);
552 if (zhp_orig
->zfs_recvd_props
!= NULL
) {
553 if (nvlist_dup(zhp_orig
->zfs_recvd_props
,
554 &zhp
->zfs_recvd_props
, 0)) {
555 (void) no_memory(zhp
->zfs_hdl
);
560 zhp
->zfs_mntcheck
= zhp_orig
->zfs_mntcheck
;
561 if (zhp_orig
->zfs_mntopts
!= NULL
) {
562 zhp
->zfs_mntopts
= zfs_strdup(zhp_orig
->zfs_hdl
,
563 zhp_orig
->zfs_mntopts
);
565 zhp
->zfs_props_table
= zhp_orig
->zfs_props_table
;
570 zfs_bookmark_exists(const char *path
)
574 char fsname
[ZFS_MAX_DATASET_NAME_LEN
];
581 (void) strlcpy(fsname
, path
, sizeof (fsname
));
582 pound
= strchr(fsname
, '#');
587 bmark_name
= pound
+ 1;
588 props
= fnvlist_alloc();
589 err
= lzc_get_bookmarks(fsname
, props
, &bmarks
);
596 rv
= nvlist_exists(bmarks
, bmark_name
);
602 make_bookmark_handle(zfs_handle_t
*parent
, const char *path
,
603 nvlist_t
*bmark_props
)
605 zfs_handle_t
*zhp
= calloc(sizeof (zfs_handle_t
), 1);
610 /* Fill in the name. */
611 zhp
->zfs_hdl
= parent
->zfs_hdl
;
612 (void) strlcpy(zhp
->zfs_name
, path
, sizeof (zhp
->zfs_name
));
614 /* Set the property lists. */
615 if (nvlist_dup(bmark_props
, &zhp
->zfs_props
, 0) != 0) {
621 zhp
->zfs_head_type
= parent
->zfs_head_type
;
622 zhp
->zfs_type
= ZFS_TYPE_BOOKMARK
;
624 if ((zhp
->zpool_hdl
= zpool_handle(zhp
)) == NULL
) {
625 nvlist_free(zhp
->zfs_props
);
633 struct zfs_open_bookmarks_cb_data
{
639 zfs_open_bookmarks_cb(zfs_handle_t
*zhp
, void *data
)
641 struct zfs_open_bookmarks_cb_data
*dp
= data
;
644 * Is it the one we are looking for?
646 if (strcmp(dp
->path
, zfs_get_name(zhp
)) == 0) {
648 * We found it. Save it and let the caller know we are done.
655 * Not found. Close the handle and ask for another one.
662 * Opens the given snapshot, bookmark, filesystem, or volume. The 'types'
663 * argument is a mask of acceptable types. The function will print an
664 * appropriate error message and return NULL if it can't be opened.
667 zfs_open(libzfs_handle_t
*hdl
, const char *path
, int types
)
673 (void) snprintf(errbuf
, sizeof (errbuf
),
674 dgettext(TEXT_DOMAIN
, "cannot open '%s'"), path
);
677 * Validate the name before we even try to open it.
679 if (!zfs_validate_name(hdl
, path
, types
, B_FALSE
)) {
680 (void) zfs_error(hdl
, EZFS_INVALIDNAME
, errbuf
);
685 * Bookmarks needs to be handled separately.
687 bookp
= strchr(path
, '#');
690 * Try to get stats for the dataset, which will tell us if it
694 if ((zhp
= make_dataset_handle(hdl
, path
)) == NULL
) {
695 (void) zfs_standard_error(hdl
, errno
, errbuf
);
699 char dsname
[ZFS_MAX_DATASET_NAME_LEN
];
701 struct zfs_open_bookmarks_cb_data cb_data
= {path
, NULL
};
704 * We need to cut out '#' and everything after '#'
705 * to get the parent dataset name only.
707 assert(bookp
- path
< sizeof (dsname
));
708 (void) strncpy(dsname
, path
, bookp
- path
);
709 dsname
[bookp
- path
] = '\0';
712 * Create handle for the parent dataset.
715 if ((pzhp
= make_dataset_handle(hdl
, dsname
)) == NULL
) {
716 (void) zfs_standard_error(hdl
, errno
, errbuf
);
721 * Iterate bookmarks to find the right one.
724 if ((zfs_iter_bookmarks(pzhp
, zfs_open_bookmarks_cb
,
725 &cb_data
) == 0) && (cb_data
.zhp
== NULL
)) {
726 (void) zfs_error(hdl
, EZFS_NOENT
, errbuf
);
730 if (cb_data
.zhp
== NULL
) {
731 (void) zfs_standard_error(hdl
, errno
, errbuf
);
743 if (!(types
& zhp
->zfs_type
)) {
744 (void) zfs_error(hdl
, EZFS_BADTYPE
, errbuf
);
753 * Release a ZFS handle. Nothing to do but free the associated memory.
756 zfs_close(zfs_handle_t
*zhp
)
758 free(zhp
->zfs_mntopts
);
759 nvlist_free(zhp
->zfs_props
);
760 nvlist_free(zhp
->zfs_user_props
);
761 nvlist_free(zhp
->zfs_recvd_props
);
765 typedef struct mnttab_node
{
766 struct mnttab mtn_mt
;
771 libzfs_mnttab_cache_compare(const void *arg1
, const void *arg2
)
773 const mnttab_node_t
*mtn1
= arg1
;
774 const mnttab_node_t
*mtn2
= arg2
;
777 rv
= strcmp(mtn1
->mtn_mt
.mnt_special
, mtn2
->mtn_mt
.mnt_special
);
781 return (rv
> 0 ? 1 : -1);
785 libzfs_mnttab_init(libzfs_handle_t
*hdl
)
787 assert(avl_numnodes(&hdl
->libzfs_mnttab_cache
) == 0);
788 avl_create(&hdl
->libzfs_mnttab_cache
, libzfs_mnttab_cache_compare
,
789 sizeof (mnttab_node_t
), offsetof(mnttab_node_t
, mtn_node
));
793 libzfs_mnttab_update(libzfs_handle_t
*hdl
)
797 rewind(hdl
->libzfs_mnttab
);
798 while (getmntent(hdl
->libzfs_mnttab
, &entry
) == 0) {
801 if (strcmp(entry
.mnt_fstype
, MNTTYPE_ZFS
) != 0)
803 mtn
= zfs_alloc(hdl
, sizeof (mnttab_node_t
));
804 mtn
->mtn_mt
.mnt_special
= zfs_strdup(hdl
, entry
.mnt_special
);
805 mtn
->mtn_mt
.mnt_mountp
= zfs_strdup(hdl
, entry
.mnt_mountp
);
806 mtn
->mtn_mt
.mnt_fstype
= zfs_strdup(hdl
, entry
.mnt_fstype
);
807 mtn
->mtn_mt
.mnt_mntopts
= zfs_strdup(hdl
, entry
.mnt_mntopts
);
808 avl_add(&hdl
->libzfs_mnttab_cache
, mtn
);
813 libzfs_mnttab_fini(libzfs_handle_t
*hdl
)
818 while ((mtn
= avl_destroy_nodes(&hdl
->libzfs_mnttab_cache
, &cookie
))
820 free(mtn
->mtn_mt
.mnt_special
);
821 free(mtn
->mtn_mt
.mnt_mountp
);
822 free(mtn
->mtn_mt
.mnt_fstype
);
823 free(mtn
->mtn_mt
.mnt_mntopts
);
826 avl_destroy(&hdl
->libzfs_mnttab_cache
);
830 libzfs_mnttab_cache(libzfs_handle_t
*hdl
, boolean_t enable
)
832 hdl
->libzfs_mnttab_enable
= enable
;
836 libzfs_mnttab_find(libzfs_handle_t
*hdl
, const char *fsname
,
837 struct mnttab
*entry
)
842 if (!hdl
->libzfs_mnttab_enable
) {
843 struct mnttab srch
= { 0 };
845 if (avl_numnodes(&hdl
->libzfs_mnttab_cache
))
846 libzfs_mnttab_fini(hdl
);
847 rewind(hdl
->libzfs_mnttab
);
848 srch
.mnt_special
= (char *)fsname
;
849 srch
.mnt_fstype
= MNTTYPE_ZFS
;
850 if (getmntany(hdl
->libzfs_mnttab
, entry
, &srch
) == 0)
856 if (avl_numnodes(&hdl
->libzfs_mnttab_cache
) == 0)
857 libzfs_mnttab_update(hdl
);
859 find
.mtn_mt
.mnt_special
= (char *)fsname
;
860 mtn
= avl_find(&hdl
->libzfs_mnttab_cache
, &find
, NULL
);
862 *entry
= mtn
->mtn_mt
;
869 libzfs_mnttab_add(libzfs_handle_t
*hdl
, const char *special
,
870 const char *mountp
, const char *mntopts
)
874 if (avl_numnodes(&hdl
->libzfs_mnttab_cache
) == 0)
876 mtn
= zfs_alloc(hdl
, sizeof (mnttab_node_t
));
877 mtn
->mtn_mt
.mnt_special
= zfs_strdup(hdl
, special
);
878 mtn
->mtn_mt
.mnt_mountp
= zfs_strdup(hdl
, mountp
);
879 mtn
->mtn_mt
.mnt_fstype
= zfs_strdup(hdl
, MNTTYPE_ZFS
);
880 mtn
->mtn_mt
.mnt_mntopts
= zfs_strdup(hdl
, mntopts
);
881 avl_add(&hdl
->libzfs_mnttab_cache
, mtn
);
885 libzfs_mnttab_remove(libzfs_handle_t
*hdl
, const char *fsname
)
890 find
.mtn_mt
.mnt_special
= (char *)fsname
;
891 if ((ret
= avl_find(&hdl
->libzfs_mnttab_cache
, (void *)&find
, NULL
))
893 avl_remove(&hdl
->libzfs_mnttab_cache
, ret
);
894 free(ret
->mtn_mt
.mnt_special
);
895 free(ret
->mtn_mt
.mnt_mountp
);
896 free(ret
->mtn_mt
.mnt_fstype
);
897 free(ret
->mtn_mt
.mnt_mntopts
);
903 zfs_spa_version(zfs_handle_t
*zhp
, int *spa_version
)
905 zpool_handle_t
*zpool_handle
= zhp
->zpool_hdl
;
907 if (zpool_handle
== NULL
)
910 *spa_version
= zpool_get_prop_int(zpool_handle
,
911 ZPOOL_PROP_VERSION
, NULL
);
916 * The choice of reservation property depends on the SPA version.
919 zfs_which_resv_prop(zfs_handle_t
*zhp
, zfs_prop_t
*resv_prop
)
923 if (zfs_spa_version(zhp
, &spa_version
) < 0)
926 if (spa_version
>= SPA_VERSION_REFRESERVATION
)
927 *resv_prop
= ZFS_PROP_REFRESERVATION
;
929 *resv_prop
= ZFS_PROP_RESERVATION
;
935 * Given an nvlist of properties to set, validates that they are correct, and
936 * parses any numeric properties (index, boolean, etc) if they are specified as
940 zfs_valid_proplist(libzfs_handle_t
*hdl
, zfs_type_t type
, nvlist_t
*nvl
,
941 uint64_t zoned
, zfs_handle_t
*zhp
, zpool_handle_t
*zpool_hdl
,
949 int chosen_normal
= -1;
952 if (nvlist_alloc(&ret
, NV_UNIQUE_NAME
, 0) != 0) {
953 (void) no_memory(hdl
);
958 * Make sure this property is valid and applies to this type.
962 while ((elem
= nvlist_next_nvpair(nvl
, elem
)) != NULL
) {
963 const char *propname
= nvpair_name(elem
);
965 prop
= zfs_name_to_prop(propname
);
966 if (prop
== ZPROP_INVAL
&& zfs_prop_user(propname
)) {
968 * This is a user property: make sure it's a
969 * string, and that it's less than ZAP_MAXNAMELEN.
971 if (nvpair_type(elem
) != DATA_TYPE_STRING
) {
972 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
973 "'%s' must be a string"), propname
);
974 (void) zfs_error(hdl
, EZFS_BADPROP
, errbuf
);
978 if (strlen(nvpair_name(elem
)) >= ZAP_MAXNAMELEN
) {
979 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
980 "property name '%s' is too long"),
982 (void) zfs_error(hdl
, EZFS_BADPROP
, errbuf
);
986 (void) nvpair_value_string(elem
, &strval
);
987 if (nvlist_add_string(ret
, propname
, strval
) != 0) {
988 (void) no_memory(hdl
);
995 * Currently, only user properties can be modified on
998 if (type
== ZFS_TYPE_SNAPSHOT
) {
999 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1000 "this property can not be modified for snapshots"));
1001 (void) zfs_error(hdl
, EZFS_PROPTYPE
, errbuf
);
1005 if (prop
== ZPROP_INVAL
&& zfs_prop_userquota(propname
)) {
1006 zfs_userquota_prop_t uqtype
;
1007 char newpropname
[128];
1012 if (userquota_propname_decode(propname
, zoned
,
1013 &uqtype
, domain
, sizeof (domain
), &rid
) != 0) {
1015 dgettext(TEXT_DOMAIN
,
1016 "'%s' has an invalid user/group name"),
1018 (void) zfs_error(hdl
, EZFS_BADPROP
, errbuf
);
1022 if (uqtype
!= ZFS_PROP_USERQUOTA
&&
1023 uqtype
!= ZFS_PROP_GROUPQUOTA
) {
1025 dgettext(TEXT_DOMAIN
, "'%s' is readonly"),
1027 (void) zfs_error(hdl
, EZFS_PROPREADONLY
,
1032 if (nvpair_type(elem
) == DATA_TYPE_STRING
) {
1033 (void) nvpair_value_string(elem
, &strval
);
1034 if (strcmp(strval
, "none") == 0) {
1036 } else if (zfs_nicestrtonum(hdl
,
1037 strval
, &intval
) != 0) {
1038 (void) zfs_error(hdl
,
1039 EZFS_BADPROP
, errbuf
);
1042 } else if (nvpair_type(elem
) ==
1044 (void) nvpair_value_uint64(elem
, &intval
);
1046 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1047 "use 'none' to disable "
1048 "userquota/groupquota"));
1052 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1053 "'%s' must be a number"), propname
);
1054 (void) zfs_error(hdl
, EZFS_BADPROP
, errbuf
);
1059 * Encode the prop name as
1060 * userquota@<hex-rid>-domain, to make it easy
1061 * for the kernel to decode.
1063 (void) snprintf(newpropname
, sizeof (newpropname
),
1064 "%s%llx-%s", zfs_userquota_prop_prefixes
[uqtype
],
1065 (longlong_t
)rid
, domain
);
1069 if (nvlist_add_uint64_array(ret
, newpropname
,
1071 (void) no_memory(hdl
);
1075 } else if (prop
== ZPROP_INVAL
&& zfs_prop_written(propname
)) {
1076 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1077 "'%s' is readonly"),
1079 (void) zfs_error(hdl
, EZFS_PROPREADONLY
, errbuf
);
1083 if (prop
== ZPROP_INVAL
) {
1084 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1085 "invalid property '%s'"), propname
);
1086 (void) zfs_error(hdl
, EZFS_BADPROP
, errbuf
);
1090 if (!zfs_prop_valid_for_type(prop
, type
)) {
1092 dgettext(TEXT_DOMAIN
, "'%s' does not "
1093 "apply to datasets of this type"), propname
);
1094 (void) zfs_error(hdl
, EZFS_PROPTYPE
, errbuf
);
1098 if (zfs_prop_readonly(prop
) &&
1099 (!zfs_prop_setonce(prop
) || zhp
!= NULL
)) {
1101 dgettext(TEXT_DOMAIN
, "'%s' is readonly"),
1103 (void) zfs_error(hdl
, EZFS_PROPREADONLY
, errbuf
);
1107 if (zprop_parse_value(hdl
, elem
, prop
, type
, ret
,
1108 &strval
, &intval
, errbuf
) != 0)
1112 * Perform some additional checks for specific properties.
1115 case ZFS_PROP_VERSION
:
1121 version
= zfs_prop_get_int(zhp
, ZFS_PROP_VERSION
);
1122 if (intval
< version
) {
1123 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1124 "Can not downgrade; already at version %u"),
1126 (void) zfs_error(hdl
, EZFS_BADPROP
, errbuf
);
1132 case ZFS_PROP_VOLBLOCKSIZE
:
1133 case ZFS_PROP_RECORDSIZE
:
1135 int maxbs
= SPA_MAXBLOCKSIZE
;
1136 if (zpool_hdl
!= NULL
) {
1137 maxbs
= zpool_get_prop_int(zpool_hdl
,
1138 ZPOOL_PROP_MAXBLOCKSIZE
, NULL
);
1141 * Volumes are limited to a volblocksize of 128KB,
1142 * because they typically service workloads with
1143 * small random writes, which incur a large performance
1144 * penalty with large blocks.
1146 if (prop
== ZFS_PROP_VOLBLOCKSIZE
)
1147 maxbs
= SPA_OLD_MAXBLOCKSIZE
;
1149 * The value must be a power of two between
1150 * SPA_MINBLOCKSIZE and maxbs.
1152 if (intval
< SPA_MINBLOCKSIZE
||
1153 intval
> maxbs
|| !ISP2(intval
)) {
1154 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1155 "'%s' must be power of 2 from 512B "
1156 "to %uKB"), propname
, maxbs
>> 10);
1157 (void) zfs_error(hdl
, EZFS_BADPROP
, errbuf
);
1162 case ZFS_PROP_MOUNTPOINT
:
1164 namecheck_err_t why
;
1166 if (strcmp(strval
, ZFS_MOUNTPOINT_NONE
) == 0 ||
1167 strcmp(strval
, ZFS_MOUNTPOINT_LEGACY
) == 0)
1170 if (mountpoint_namecheck(strval
, &why
)) {
1172 case NAME_ERR_LEADING_SLASH
:
1174 dgettext(TEXT_DOMAIN
,
1175 "'%s' must be an absolute path, "
1176 "'none', or 'legacy'"), propname
);
1178 case NAME_ERR_TOOLONG
:
1180 dgettext(TEXT_DOMAIN
,
1181 "component of '%s' is too long"),
1187 dgettext(TEXT_DOMAIN
,
1188 "(%d) not defined"),
1192 (void) zfs_error(hdl
, EZFS_BADPROP
, errbuf
);
1199 case ZFS_PROP_SHARESMB
:
1200 case ZFS_PROP_SHARENFS
:
1202 * For the mountpoint and sharenfs or sharesmb
1203 * properties, check if it can be set in a
1204 * global/non-global zone based on
1205 * the zoned property value:
1207 * global zone non-global zone
1208 * --------------------------------------------------
1209 * zoned=on mountpoint (no) mountpoint (yes)
1210 * sharenfs (no) sharenfs (no)
1211 * sharesmb (no) sharesmb (no)
1213 * zoned=off mountpoint (yes) N/A
1218 if (getzoneid() == GLOBAL_ZONEID
) {
1219 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1220 "'%s' cannot be set on "
1221 "dataset in a non-global zone"),
1223 (void) zfs_error(hdl
, EZFS_ZONED
,
1226 } else if (prop
== ZFS_PROP_SHARENFS
||
1227 prop
== ZFS_PROP_SHARESMB
) {
1228 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1229 "'%s' cannot be set in "
1230 "a non-global zone"), propname
);
1231 (void) zfs_error(hdl
, EZFS_ZONED
,
1235 } else if (getzoneid() != GLOBAL_ZONEID
) {
1237 * If zoned property is 'off', this must be in
1238 * a global zone. If not, something is wrong.
1240 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1241 "'%s' cannot be set while dataset "
1242 "'zoned' property is set"), propname
);
1243 (void) zfs_error(hdl
, EZFS_ZONED
, errbuf
);
1248 * At this point, it is legitimate to set the
1249 * property. Now we want to make sure that the
1250 * property value is valid if it is sharenfs.
1252 if ((prop
== ZFS_PROP_SHARENFS
||
1253 prop
== ZFS_PROP_SHARESMB
) &&
1254 strcmp(strval
, "on") != 0 &&
1255 strcmp(strval
, "off") != 0) {
1256 zfs_share_proto_t proto
;
1258 if (prop
== ZFS_PROP_SHARESMB
)
1264 * Must be an valid sharing protocol
1265 * option string so init the libshare
1266 * in order to enable the parser and
1267 * then parse the options. We use the
1268 * control API since we don't care about
1269 * the current configuration and don't
1270 * want the overhead of loading it
1271 * until we actually do something.
1274 if (zfs_init_libshare(hdl
,
1275 SA_INIT_CONTROL_API
) != SA_OK
) {
1277 * An error occurred so we can't do
1280 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1281 "'%s' cannot be set: problem "
1282 "in share initialization"),
1284 (void) zfs_error(hdl
, EZFS_BADPROP
,
1289 if (zfs_parse_options(strval
, proto
) != SA_OK
) {
1291 * There was an error in parsing so
1292 * deal with it by issuing an error
1293 * message and leaving after
1294 * uninitializing the the libshare
1297 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1298 "'%s' cannot be set to invalid "
1299 "options"), propname
);
1300 (void) zfs_error(hdl
, EZFS_BADPROP
,
1302 zfs_uninit_libshare(hdl
);
1305 zfs_uninit_libshare(hdl
);
1310 case ZFS_PROP_UTF8ONLY
:
1311 chosen_utf
= (int)intval
;
1314 case ZFS_PROP_NORMALIZE
:
1315 chosen_normal
= (int)intval
;
1323 * For changes to existing volumes, we have some additional
1324 * checks to enforce.
1326 if (type
== ZFS_TYPE_VOLUME
&& zhp
!= NULL
) {
1327 uint64_t volsize
= zfs_prop_get_int(zhp
,
1329 uint64_t blocksize
= zfs_prop_get_int(zhp
,
1330 ZFS_PROP_VOLBLOCKSIZE
);
1334 case ZFS_PROP_RESERVATION
:
1335 case ZFS_PROP_REFRESERVATION
:
1336 if (intval
> volsize
) {
1337 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1338 "'%s' is greater than current "
1339 "volume size"), propname
);
1340 (void) zfs_error(hdl
, EZFS_BADPROP
,
1346 case ZFS_PROP_VOLSIZE
:
1347 if (intval
% blocksize
!= 0) {
1348 zfs_nicenum(blocksize
, buf
,
1350 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1351 "'%s' must be a multiple of "
1352 "volume block size (%s)"),
1354 (void) zfs_error(hdl
, EZFS_BADPROP
,
1360 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1361 "'%s' cannot be zero"),
1363 (void) zfs_error(hdl
, EZFS_BADPROP
,
1376 * If normalization was chosen, but no UTF8 choice was made,
1377 * enforce rejection of non-UTF8 names.
1379 * If normalization was chosen, but rejecting non-UTF8 names
1380 * was explicitly not chosen, it is an error.
1382 if (chosen_normal
> 0 && chosen_utf
< 0) {
1383 if (nvlist_add_uint64(ret
,
1384 zfs_prop_to_name(ZFS_PROP_UTF8ONLY
), 1) != 0) {
1385 (void) no_memory(hdl
);
1388 } else if (chosen_normal
> 0 && chosen_utf
== 0) {
1389 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1390 "'%s' must be set 'on' if normalization chosen"),
1391 zfs_prop_to_name(ZFS_PROP_UTF8ONLY
));
1392 (void) zfs_error(hdl
, EZFS_BADPROP
, errbuf
);
1403 zfs_add_synthetic_resv(zfs_handle_t
*zhp
, nvlist_t
*nvl
)
1405 uint64_t old_volsize
;
1406 uint64_t new_volsize
;
1407 uint64_t old_reservation
;
1408 uint64_t new_reservation
;
1409 zfs_prop_t resv_prop
;
1413 * If this is an existing volume, and someone is setting the volsize,
1414 * make sure that it matches the reservation, or add it if necessary.
1416 old_volsize
= zfs_prop_get_int(zhp
, ZFS_PROP_VOLSIZE
);
1417 if (zfs_which_resv_prop(zhp
, &resv_prop
) < 0)
1419 old_reservation
= zfs_prop_get_int(zhp
, resv_prop
);
1421 props
= fnvlist_alloc();
1422 fnvlist_add_uint64(props
, zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE
),
1423 zfs_prop_get_int(zhp
, ZFS_PROP_VOLBLOCKSIZE
));
1425 if ((zvol_volsize_to_reservation(old_volsize
, props
) !=
1426 old_reservation
) || nvlist_exists(nvl
,
1427 zfs_prop_to_name(resv_prop
))) {
1428 fnvlist_free(props
);
1431 if (nvlist_lookup_uint64(nvl
, zfs_prop_to_name(ZFS_PROP_VOLSIZE
),
1432 &new_volsize
) != 0) {
1433 fnvlist_free(props
);
1436 new_reservation
= zvol_volsize_to_reservation(new_volsize
, props
);
1437 fnvlist_free(props
);
1439 if (nvlist_add_uint64(nvl
, zfs_prop_to_name(resv_prop
),
1440 new_reservation
) != 0) {
1441 (void) no_memory(zhp
->zfs_hdl
);
1448 zfs_setprop_error(libzfs_handle_t
*hdl
, zfs_prop_t prop
, int err
,
1455 * For quotas and reservations, ENOSPC indicates
1456 * something different; setting a quota or reservation
1457 * doesn't use any disk space.
1460 case ZFS_PROP_QUOTA
:
1461 case ZFS_PROP_REFQUOTA
:
1462 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1463 "size is less than current used or "
1465 (void) zfs_error(hdl
, EZFS_PROPSPACE
, errbuf
);
1468 case ZFS_PROP_RESERVATION
:
1469 case ZFS_PROP_REFRESERVATION
:
1470 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1471 "size is greater than available space"));
1472 (void) zfs_error(hdl
, EZFS_PROPSPACE
, errbuf
);
1476 (void) zfs_standard_error(hdl
, err
, errbuf
);
1482 (void) zfs_standard_error(hdl
, EBUSY
, errbuf
);
1486 (void) zfs_error(hdl
, EZFS_DSREADONLY
, errbuf
);
1490 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1491 "property value too long"));
1492 (void) zfs_error(hdl
, EZFS_BADPROP
, errbuf
);
1496 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1497 "pool and or dataset must be upgraded to set this "
1498 "property or value"));
1499 (void) zfs_error(hdl
, EZFS_BADVERSION
, errbuf
);
1503 if (prop
== ZFS_PROP_COMPRESSION
||
1504 prop
== ZFS_PROP_RECORDSIZE
) {
1505 (void) zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1506 "property setting is not allowed on "
1507 "bootable datasets"));
1508 (void) zfs_error(hdl
, EZFS_NOTSUP
, errbuf
);
1509 } else if (prop
== ZFS_PROP_CHECKSUM
||
1510 prop
== ZFS_PROP_DEDUP
) {
1511 (void) zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1512 "property setting is not allowed on "
1514 (void) zfs_error(hdl
, EZFS_NOTSUP
, errbuf
);
1516 (void) zfs_standard_error(hdl
, err
, errbuf
);
1521 if (prop
== ZPROP_INVAL
) {
1522 (void) zfs_error(hdl
, EZFS_BADPROP
, errbuf
);
1524 (void) zfs_standard_error(hdl
, err
, errbuf
);
1530 * This platform can't address a volume this big.
1533 if (prop
== ZFS_PROP_VOLSIZE
) {
1534 (void) zfs_error(hdl
, EZFS_VOLTOOBIG
, errbuf
);
1540 (void) zfs_standard_error(hdl
, err
, errbuf
);
1545 * Given a property name and value, set the property for the given dataset.
1548 zfs_prop_set(zfs_handle_t
*zhp
, const char *propname
, const char *propval
)
1552 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
1553 nvlist_t
*nvl
= NULL
;
1555 (void) snprintf(errbuf
, sizeof (errbuf
),
1556 dgettext(TEXT_DOMAIN
, "cannot set property for '%s'"),
1559 if (nvlist_alloc(&nvl
, NV_UNIQUE_NAME
, 0) != 0 ||
1560 nvlist_add_string(nvl
, propname
, propval
) != 0) {
1561 (void) no_memory(hdl
);
1565 ret
= zfs_prop_set_list(zhp
, nvl
);
1575 * Given an nvlist of property names and values, set the properties for the
1579 zfs_prop_set_list(zfs_handle_t
*zhp
, nvlist_t
*props
)
1581 zfs_cmd_t zc
= { 0 };
1583 prop_changelist_t
**cls
= NULL
;
1586 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
1591 (void) snprintf(errbuf
, sizeof (errbuf
),
1592 dgettext(TEXT_DOMAIN
, "cannot set property for '%s'"),
1595 if ((nvl
= zfs_valid_proplist(hdl
, zhp
->zfs_type
, props
,
1596 zfs_prop_get_int(zhp
, ZFS_PROP_ZONED
), zhp
, zhp
->zpool_hdl
,
1601 * We have to check for any extra properties which need to be added
1602 * before computing the length of the nvlist.
1604 for (nvpair_t
*elem
= nvlist_next_nvpair(nvl
, NULL
);
1606 elem
= nvlist_next_nvpair(nvl
, elem
)) {
1607 if (zfs_name_to_prop(nvpair_name(elem
)) == ZFS_PROP_VOLSIZE
&&
1608 (added_resv
= zfs_add_synthetic_resv(zhp
, nvl
)) == -1) {
1613 * Check how many properties we're setting and allocate an array to
1614 * store changelist pointers for postfix().
1617 for (nvpair_t
*elem
= nvlist_next_nvpair(nvl
, NULL
);
1619 elem
= nvlist_next_nvpair(nvl
, elem
))
1621 if ((cls
= calloc(nvl_len
, sizeof (prop_changelist_t
*))) == NULL
)
1625 for (nvpair_t
*elem
= nvlist_next_nvpair(nvl
, NULL
);
1627 elem
= nvlist_next_nvpair(nvl
, elem
)) {
1629 zfs_prop_t prop
= zfs_name_to_prop(nvpair_name(elem
));
1631 assert(cl_idx
< nvl_len
);
1633 * We don't want to unmount & remount the dataset when changing
1634 * its canmount property to 'on' or 'noauto'. We only use
1635 * the changelist logic to unmount when setting canmount=off.
1637 if (prop
!= ZFS_PROP_CANMOUNT
||
1638 (fnvpair_value_uint64(elem
) == ZFS_CANMOUNT_OFF
&&
1639 zfs_is_mounted(zhp
, NULL
))) {
1640 cls
[cl_idx
] = changelist_gather(zhp
, prop
, 0, 0);
1641 if (cls
[cl_idx
] == NULL
)
1645 if (prop
== ZFS_PROP_MOUNTPOINT
&&
1646 changelist_haszonedchild(cls
[cl_idx
])) {
1647 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1648 "child dataset with inherited mountpoint is used "
1649 "in a non-global zone"));
1650 ret
= zfs_error(hdl
, EZFS_ZONED
, errbuf
);
1654 if (cls
[cl_idx
] != NULL
&&
1655 (ret
= changelist_prefix(cls
[cl_idx
])) != 0)
1660 assert(cl_idx
== nvl_len
);
1663 * Execute the corresponding ioctl() to set this list of properties.
1665 (void) strlcpy(zc
.zc_name
, zhp
->zfs_name
, sizeof (zc
.zc_name
));
1667 if ((ret
= zcmd_write_src_nvlist(hdl
, &zc
, nvl
)) != 0 ||
1668 (ret
= zcmd_alloc_dst_nvlist(hdl
, &zc
, 0)) != 0)
1671 ret
= zfs_ioctl(hdl
, ZFS_IOC_SET_PROP
, &zc
);
1674 /* Get the list of unset properties back and report them. */
1675 nvlist_t
*errorprops
= NULL
;
1676 if (zcmd_read_dst_nvlist(hdl
, &zc
, &errorprops
) != 0)
1678 for (nvpair_t
*elem
= nvlist_next_nvpair(nvl
, NULL
);
1680 elem
= nvlist_next_nvpair(nvl
, elem
)) {
1681 zfs_prop_t prop
= zfs_name_to_prop(nvpair_name(elem
));
1682 zfs_setprop_error(hdl
, prop
, errno
, errbuf
);
1684 nvlist_free(errorprops
);
1686 if (added_resv
&& errno
== ENOSPC
) {
1687 /* clean up the volsize property we tried to set */
1688 uint64_t old_volsize
= zfs_prop_get_int(zhp
,
1692 zcmd_free_nvlists(&zc
);
1694 if (nvlist_alloc(&nvl
, NV_UNIQUE_NAME
, 0) != 0)
1696 if (nvlist_add_uint64(nvl
,
1697 zfs_prop_to_name(ZFS_PROP_VOLSIZE
),
1700 if (zcmd_write_src_nvlist(hdl
, &zc
, nvl
) != 0)
1702 (void) zfs_ioctl(hdl
, ZFS_IOC_SET_PROP
, &zc
);
1705 for (cl_idx
= 0; cl_idx
< nvl_len
; cl_idx
++) {
1706 if (cls
[cl_idx
] != NULL
) {
1707 int clp_err
= changelist_postfix(cls
[cl_idx
]);
1714 * Refresh the statistics so the new property value
1718 (void) get_stats(zhp
);
1723 zcmd_free_nvlists(&zc
);
1725 for (cl_idx
= 0; cl_idx
< nvl_len
; cl_idx
++) {
1726 if (cls
[cl_idx
] != NULL
)
1727 changelist_free(cls
[cl_idx
]);
1735 * Given a property, inherit the value from the parent dataset, or if received
1736 * is TRUE, revert to the received value, if any.
1739 zfs_prop_inherit(zfs_handle_t
*zhp
, const char *propname
, boolean_t received
)
1741 zfs_cmd_t zc
= { 0 };
1743 prop_changelist_t
*cl
;
1744 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
1748 (void) snprintf(errbuf
, sizeof (errbuf
), dgettext(TEXT_DOMAIN
,
1749 "cannot inherit %s for '%s'"), propname
, zhp
->zfs_name
);
1751 zc
.zc_cookie
= received
;
1752 if ((prop
= zfs_name_to_prop(propname
)) == ZPROP_INVAL
) {
1754 * For user properties, the amount of work we have to do is very
1755 * small, so just do it here.
1757 if (!zfs_prop_user(propname
)) {
1758 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1759 "invalid property"));
1760 return (zfs_error(hdl
, EZFS_BADPROP
, errbuf
));
1763 (void) strlcpy(zc
.zc_name
, zhp
->zfs_name
, sizeof (zc
.zc_name
));
1764 (void) strlcpy(zc
.zc_value
, propname
, sizeof (zc
.zc_value
));
1766 if (zfs_ioctl(zhp
->zfs_hdl
, ZFS_IOC_INHERIT_PROP
, &zc
) != 0)
1767 return (zfs_standard_error(hdl
, errno
, errbuf
));
1773 * Verify that this property is inheritable.
1775 if (zfs_prop_readonly(prop
))
1776 return (zfs_error(hdl
, EZFS_PROPREADONLY
, errbuf
));
1778 if (!zfs_prop_inheritable(prop
) && !received
)
1779 return (zfs_error(hdl
, EZFS_PROPNONINHERIT
, errbuf
));
1782 * Check to see if the value applies to this type
1784 if (!zfs_prop_valid_for_type(prop
, zhp
->zfs_type
))
1785 return (zfs_error(hdl
, EZFS_PROPTYPE
, errbuf
));
1788 * Normalize the name, to get rid of shorthand abbreviations.
1790 propname
= zfs_prop_to_name(prop
);
1791 (void) strlcpy(zc
.zc_name
, zhp
->zfs_name
, sizeof (zc
.zc_name
));
1792 (void) strlcpy(zc
.zc_value
, propname
, sizeof (zc
.zc_value
));
1794 if (prop
== ZFS_PROP_MOUNTPOINT
&& getzoneid() == GLOBAL_ZONEID
&&
1795 zfs_prop_get_int(zhp
, ZFS_PROP_ZONED
)) {
1796 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1797 "dataset is used in a non-global zone"));
1798 return (zfs_error(hdl
, EZFS_ZONED
, errbuf
));
1802 * Determine datasets which will be affected by this change, if any.
1804 if ((cl
= changelist_gather(zhp
, prop
, 0, 0)) == NULL
)
1807 if (prop
== ZFS_PROP_MOUNTPOINT
&& changelist_haszonedchild(cl
)) {
1808 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
1809 "child dataset with inherited mountpoint is used "
1810 "in a non-global zone"));
1811 ret
= zfs_error(hdl
, EZFS_ZONED
, errbuf
);
1815 if ((ret
= changelist_prefix(cl
)) != 0)
1818 if ((ret
= zfs_ioctl(zhp
->zfs_hdl
, ZFS_IOC_INHERIT_PROP
, &zc
)) != 0) {
1819 return (zfs_standard_error(hdl
, errno
, errbuf
));
1822 if ((ret
= changelist_postfix(cl
)) != 0)
1826 * Refresh the statistics so the new property is reflected.
1828 (void) get_stats(zhp
);
1832 changelist_free(cl
);
1837 * True DSL properties are stored in an nvlist. The following two functions
1838 * extract them appropriately.
1841 getprop_uint64(zfs_handle_t
*zhp
, zfs_prop_t prop
, char **source
)
1847 if (nvlist_lookup_nvlist(zhp
->zfs_props
,
1848 zfs_prop_to_name(prop
), &nv
) == 0) {
1849 verify(nvlist_lookup_uint64(nv
, ZPROP_VALUE
, &value
) == 0);
1850 (void) nvlist_lookup_string(nv
, ZPROP_SOURCE
, source
);
1852 verify(!zhp
->zfs_props_table
||
1853 zhp
->zfs_props_table
[prop
] == B_TRUE
);
1854 value
= zfs_prop_default_numeric(prop
);
1862 getprop_string(zfs_handle_t
*zhp
, zfs_prop_t prop
, char **source
)
1868 if (nvlist_lookup_nvlist(zhp
->zfs_props
,
1869 zfs_prop_to_name(prop
), &nv
) == 0) {
1870 value
= fnvlist_lookup_string(nv
, ZPROP_VALUE
);
1871 (void) nvlist_lookup_string(nv
, ZPROP_SOURCE
, source
);
1873 verify(!zhp
->zfs_props_table
||
1874 zhp
->zfs_props_table
[prop
] == B_TRUE
);
1875 value
= zfs_prop_default_string(prop
);
1883 zfs_is_recvd_props_mode(zfs_handle_t
*zhp
)
1885 return (zhp
->zfs_props
== zhp
->zfs_recvd_props
);
1889 zfs_set_recvd_props_mode(zfs_handle_t
*zhp
, uint64_t *cookie
)
1891 *cookie
= (uint64_t)(uintptr_t)zhp
->zfs_props
;
1892 zhp
->zfs_props
= zhp
->zfs_recvd_props
;
1896 zfs_unset_recvd_props_mode(zfs_handle_t
*zhp
, uint64_t *cookie
)
1898 zhp
->zfs_props
= (nvlist_t
*)(uintptr_t)*cookie
;
1903 * Internal function for getting a numeric property. Both zfs_prop_get() and
1904 * zfs_prop_get_int() are built using this interface.
1906 * Certain properties can be overridden using 'mount -o'. In this case, scan
1907 * the contents of the /etc/mnttab entry, searching for the appropriate options.
1908 * If they differ from the on-disk values, report the current values and mark
1909 * the source "temporary".
1912 get_numeric_property(zfs_handle_t
*zhp
, zfs_prop_t prop
, zprop_source_t
*src
,
1913 char **source
, uint64_t *val
)
1915 zfs_cmd_t zc
= { 0 };
1916 nvlist_t
*zplprops
= NULL
;
1918 char *mntopt_on
= NULL
;
1919 char *mntopt_off
= NULL
;
1920 boolean_t received
= zfs_is_recvd_props_mode(zhp
);
1925 case ZFS_PROP_ATIME
:
1926 mntopt_on
= MNTOPT_ATIME
;
1927 mntopt_off
= MNTOPT_NOATIME
;
1930 case ZFS_PROP_DEVICES
:
1931 mntopt_on
= MNTOPT_DEVICES
;
1932 mntopt_off
= MNTOPT_NODEVICES
;
1936 mntopt_on
= MNTOPT_EXEC
;
1937 mntopt_off
= MNTOPT_NOEXEC
;
1940 case ZFS_PROP_READONLY
:
1941 mntopt_on
= MNTOPT_RO
;
1942 mntopt_off
= MNTOPT_RW
;
1945 case ZFS_PROP_SETUID
:
1946 mntopt_on
= MNTOPT_SETUID
;
1947 mntopt_off
= MNTOPT_NOSETUID
;
1950 case ZFS_PROP_XATTR
:
1951 mntopt_on
= MNTOPT_XATTR
;
1952 mntopt_off
= MNTOPT_NOXATTR
;
1955 case ZFS_PROP_NBMAND
:
1956 mntopt_on
= MNTOPT_NBMAND
;
1957 mntopt_off
= MNTOPT_NONBMAND
;
1965 * Because looking up the mount options is potentially expensive
1966 * (iterating over all of /etc/mnttab), we defer its calculation until
1967 * we're looking up a property which requires its presence.
1969 if (!zhp
->zfs_mntcheck
&&
1970 (mntopt_on
!= NULL
|| prop
== ZFS_PROP_MOUNTED
)) {
1971 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
1972 struct mnttab entry
;
1974 if (libzfs_mnttab_find(hdl
, zhp
->zfs_name
, &entry
) == 0) {
1975 zhp
->zfs_mntopts
= zfs_strdup(hdl
,
1977 if (zhp
->zfs_mntopts
== NULL
)
1981 zhp
->zfs_mntcheck
= B_TRUE
;
1984 if (zhp
->zfs_mntopts
== NULL
)
1985 mnt
.mnt_mntopts
= "";
1987 mnt
.mnt_mntopts
= zhp
->zfs_mntopts
;
1990 case ZFS_PROP_ATIME
:
1991 case ZFS_PROP_DEVICES
:
1993 case ZFS_PROP_READONLY
:
1994 case ZFS_PROP_SETUID
:
1995 case ZFS_PROP_XATTR
:
1996 case ZFS_PROP_NBMAND
:
1997 *val
= getprop_uint64(zhp
, prop
, source
);
2002 if (hasmntopt(&mnt
, mntopt_on
) && !*val
) {
2005 *src
= ZPROP_SRC_TEMPORARY
;
2006 } else if (hasmntopt(&mnt
, mntopt_off
) && *val
) {
2009 *src
= ZPROP_SRC_TEMPORARY
;
2013 case ZFS_PROP_CANMOUNT
:
2014 case ZFS_PROP_VOLSIZE
:
2015 case ZFS_PROP_QUOTA
:
2016 case ZFS_PROP_REFQUOTA
:
2017 case ZFS_PROP_RESERVATION
:
2018 case ZFS_PROP_REFRESERVATION
:
2019 case ZFS_PROP_FILESYSTEM_LIMIT
:
2020 case ZFS_PROP_SNAPSHOT_LIMIT
:
2021 case ZFS_PROP_FILESYSTEM_COUNT
:
2022 case ZFS_PROP_SNAPSHOT_COUNT
:
2023 *val
= getprop_uint64(zhp
, prop
, source
);
2025 if (*source
== NULL
) {
2026 /* not default, must be local */
2027 *source
= zhp
->zfs_name
;
2031 case ZFS_PROP_MOUNTED
:
2032 *val
= (zhp
->zfs_mntopts
!= NULL
);
2035 case ZFS_PROP_NUMCLONES
:
2036 *val
= zhp
->zfs_dmustats
.dds_num_clones
;
2039 case ZFS_PROP_VERSION
:
2040 case ZFS_PROP_NORMALIZE
:
2041 case ZFS_PROP_UTF8ONLY
:
2043 if (!zfs_prop_valid_for_type(prop
, zhp
->zfs_head_type
) ||
2044 zcmd_alloc_dst_nvlist(zhp
->zfs_hdl
, &zc
, 0) != 0)
2046 (void) strlcpy(zc
.zc_name
, zhp
->zfs_name
, sizeof (zc
.zc_name
));
2047 if (zfs_ioctl(zhp
->zfs_hdl
, ZFS_IOC_OBJSET_ZPLPROPS
, &zc
)) {
2048 zcmd_free_nvlists(&zc
);
2051 if (zcmd_read_dst_nvlist(zhp
->zfs_hdl
, &zc
, &zplprops
) != 0 ||
2052 nvlist_lookup_uint64(zplprops
, zfs_prop_to_name(prop
),
2054 zcmd_free_nvlists(&zc
);
2057 nvlist_free(zplprops
);
2058 zcmd_free_nvlists(&zc
);
2061 case ZFS_PROP_INCONSISTENT
:
2062 *val
= zhp
->zfs_dmustats
.dds_inconsistent
;
2066 switch (zfs_prop_get_type(prop
)) {
2067 case PROP_TYPE_NUMBER
:
2068 case PROP_TYPE_INDEX
:
2069 *val
= getprop_uint64(zhp
, prop
, source
);
2071 * If we tried to use a default value for a
2072 * readonly property, it means that it was not
2073 * present. Note this only applies to "truly"
2074 * readonly properties, not set-once properties
2075 * like volblocksize.
2077 if (zfs_prop_readonly(prop
) &&
2078 !zfs_prop_setonce(prop
) &&
2079 *source
!= NULL
&& (*source
)[0] == '\0') {
2085 case PROP_TYPE_STRING
:
2087 zfs_error_aux(zhp
->zfs_hdl
, dgettext(TEXT_DOMAIN
,
2088 "cannot get non-numeric property"));
2089 return (zfs_error(zhp
->zfs_hdl
, EZFS_BADPROP
,
2090 dgettext(TEXT_DOMAIN
, "internal error")));
2098 * Calculate the source type, given the raw source string.
2101 get_source(zfs_handle_t
*zhp
, zprop_source_t
*srctype
, char *source
,
2102 char *statbuf
, size_t statlen
)
2104 if (statbuf
== NULL
|| *srctype
== ZPROP_SRC_TEMPORARY
)
2107 if (source
== NULL
) {
2108 *srctype
= ZPROP_SRC_NONE
;
2109 } else if (source
[0] == '\0') {
2110 *srctype
= ZPROP_SRC_DEFAULT
;
2111 } else if (strstr(source
, ZPROP_SOURCE_VAL_RECVD
) != NULL
) {
2112 *srctype
= ZPROP_SRC_RECEIVED
;
2114 if (strcmp(source
, zhp
->zfs_name
) == 0) {
2115 *srctype
= ZPROP_SRC_LOCAL
;
2117 (void) strlcpy(statbuf
, source
, statlen
);
2118 *srctype
= ZPROP_SRC_INHERITED
;
2125 zfs_prop_get_recvd(zfs_handle_t
*zhp
, const char *propname
, char *propbuf
,
2126 size_t proplen
, boolean_t literal
)
2131 if (zhp
->zfs_recvd_props
== NULL
)
2132 if (get_recvd_props_ioctl(zhp
) != 0)
2135 prop
= zfs_name_to_prop(propname
);
2137 if (prop
!= ZPROP_INVAL
) {
2139 if (!nvlist_exists(zhp
->zfs_recvd_props
, propname
))
2141 zfs_set_recvd_props_mode(zhp
, &cookie
);
2142 err
= zfs_prop_get(zhp
, prop
, propbuf
, proplen
,
2143 NULL
, NULL
, 0, literal
);
2144 zfs_unset_recvd_props_mode(zhp
, &cookie
);
2148 if (nvlist_lookup_nvlist(zhp
->zfs_recvd_props
,
2149 propname
, &propval
) != 0)
2151 verify(nvlist_lookup_string(propval
, ZPROP_VALUE
,
2153 (void) strlcpy(propbuf
, recvdval
, proplen
);
2156 return (err
== 0 ? 0 : -1);
2160 get_clones_string(zfs_handle_t
*zhp
, char *propbuf
, size_t proplen
)
2165 value
= zfs_get_clones_nvl(zhp
);
2170 for (pair
= nvlist_next_nvpair(value
, NULL
); pair
!= NULL
;
2171 pair
= nvlist_next_nvpair(value
, pair
)) {
2172 if (propbuf
[0] != '\0')
2173 (void) strlcat(propbuf
, ",", proplen
);
2174 (void) strlcat(propbuf
, nvpair_name(pair
), proplen
);
2180 struct get_clones_arg
{
2184 char buf
[ZFS_MAX_DATASET_NAME_LEN
];
2188 get_clones_cb(zfs_handle_t
*zhp
, void *arg
)
2190 struct get_clones_arg
*gca
= arg
;
2192 if (gca
->numclones
== 0) {
2197 if (zfs_prop_get(zhp
, ZFS_PROP_ORIGIN
, gca
->buf
, sizeof (gca
->buf
),
2198 NULL
, NULL
, 0, B_TRUE
) != 0)
2200 if (strcmp(gca
->buf
, gca
->origin
) == 0) {
2201 fnvlist_add_boolean(gca
->value
, zfs_get_name(zhp
));
2206 (void) zfs_iter_children(zhp
, get_clones_cb
, gca
);
2212 zfs_get_clones_nvl(zfs_handle_t
*zhp
)
2214 nvlist_t
*nv
, *value
;
2216 if (nvlist_lookup_nvlist(zhp
->zfs_props
,
2217 zfs_prop_to_name(ZFS_PROP_CLONES
), &nv
) != 0) {
2218 struct get_clones_arg gca
;
2221 * if this is a snapshot, then the kernel wasn't able
2222 * to get the clones. Do it by slowly iterating.
2224 if (zhp
->zfs_type
!= ZFS_TYPE_SNAPSHOT
)
2226 if (nvlist_alloc(&nv
, NV_UNIQUE_NAME
, 0) != 0)
2228 if (nvlist_alloc(&value
, NV_UNIQUE_NAME
, 0) != 0) {
2233 gca
.numclones
= zfs_prop_get_int(zhp
, ZFS_PROP_NUMCLONES
);
2235 gca
.origin
= zhp
->zfs_name
;
2237 if (gca
.numclones
!= 0) {
2239 char pool
[ZFS_MAX_DATASET_NAME_LEN
];
2242 /* get the pool name */
2243 (void) strlcpy(pool
, zhp
->zfs_name
, sizeof (pool
));
2244 (void) strsep(&cp
, "/@");
2245 root
= zfs_open(zhp
->zfs_hdl
, pool
,
2246 ZFS_TYPE_FILESYSTEM
);
2248 (void) get_clones_cb(root
, &gca
);
2251 if (gca
.numclones
!= 0 ||
2252 nvlist_add_nvlist(nv
, ZPROP_VALUE
, value
) != 0 ||
2253 nvlist_add_nvlist(zhp
->zfs_props
,
2254 zfs_prop_to_name(ZFS_PROP_CLONES
), nv
) != 0) {
2261 verify(0 == nvlist_lookup_nvlist(zhp
->zfs_props
,
2262 zfs_prop_to_name(ZFS_PROP_CLONES
), &nv
));
2265 verify(nvlist_lookup_nvlist(nv
, ZPROP_VALUE
, &value
) == 0);
2271 * Accepts a property and value and checks that the value
2272 * matches the one found by the channel program. If they are
2273 * not equal, print both of them.
2276 zcp_check(zfs_handle_t
*zhp
, zfs_prop_t prop
, uint64_t intval
,
2279 if (!zhp
->zfs_hdl
->libzfs_prop_debug
)
2282 char *poolname
= zhp
->zpool_hdl
->zpool_name
;
2283 const char *program
=
2285 "ds = args['dataset']\n"
2286 "prop = args['property']\n"
2287 "value, setpoint = zfs.get_prop(ds, prop)\n"
2288 "return {value=value, setpoint=setpoint}\n";
2291 nvlist_t
*argnvl
= fnvlist_alloc();
2293 fnvlist_add_string(argnvl
, "dataset", zhp
->zfs_name
);
2294 fnvlist_add_string(argnvl
, "property", zfs_prop_to_name(prop
));
2296 error
= lzc_channel_program(poolname
, program
,
2297 10 * 1000 * 1000, 10 * 1024 * 1024, argnvl
, &outnvl
);
2300 retnvl
= fnvlist_lookup_nvlist(outnvl
, "return");
2301 if (zfs_prop_get_type(prop
) == PROP_TYPE_NUMBER
) {
2303 error
= nvlist_lookup_int64(retnvl
, "value", &ans
);
2305 (void) fprintf(stderr
, "zcp check error: %u\n",
2309 if (ans
!= intval
) {
2310 (void) fprintf(stderr
,
2311 "%s: zfs found %lld, but zcp found %lld\n",
2312 zfs_prop_to_name(prop
),
2313 (longlong_t
)intval
, (longlong_t
)ans
);
2317 error
= nvlist_lookup_string(retnvl
, "value", &str_ans
);
2319 (void) fprintf(stderr
, "zcp check error: %u\n",
2323 if (strcmp(strval
, str_ans
) != 0) {
2324 (void) fprintf(stderr
,
2325 "%s: zfs found %s, but zcp found %s\n",
2326 zfs_prop_to_name(prop
),
2331 (void) fprintf(stderr
,
2332 "zcp check failed, channel program error: %u\n", error
);
2334 nvlist_free(argnvl
);
2335 nvlist_free(outnvl
);
2339 * Retrieve a property from the given object. If 'literal' is specified, then
2340 * numbers are left as exact values. Otherwise, numbers are converted to a
2341 * human-readable form.
2343 * Returns 0 on success, or -1 on error.
2346 zfs_prop_get(zfs_handle_t
*zhp
, zfs_prop_t prop
, char *propbuf
, size_t proplen
,
2347 zprop_source_t
*src
, char *statbuf
, size_t statlen
, boolean_t literal
)
2349 char *source
= NULL
;
2353 boolean_t received
= zfs_is_recvd_props_mode(zhp
);
2356 * Check to see if this property applies to our object
2358 if (!zfs_prop_valid_for_type(prop
, zhp
->zfs_type
))
2361 if (received
&& zfs_prop_readonly(prop
))
2365 *src
= ZPROP_SRC_NONE
;
2368 case ZFS_PROP_CREATION
:
2370 * 'creation' is a time_t stored in the statistics. We convert
2371 * this into a string unless 'literal' is specified.
2374 val
= getprop_uint64(zhp
, prop
, &source
);
2375 time_t time
= (time_t)val
;
2379 localtime_r(&time
, &t
) == NULL
||
2380 strftime(propbuf
, proplen
, "%a %b %e %k:%M %Y",
2382 (void) snprintf(propbuf
, proplen
, "%llu", val
);
2384 zcp_check(zhp
, prop
, val
, NULL
);
2387 case ZFS_PROP_MOUNTPOINT
:
2389 * Getting the precise mountpoint can be tricky.
2391 * - for 'none' or 'legacy', return those values.
2392 * - for inherited mountpoints, we want to take everything
2393 * after our ancestor and append it to the inherited value.
2395 * If the pool has an alternate root, we want to prepend that
2396 * root to any values we return.
2399 str
= getprop_string(zhp
, prop
, &source
);
2401 if (str
[0] == '/') {
2402 char buf
[MAXPATHLEN
];
2404 const char *relpath
;
2407 * If we inherit the mountpoint, even from a dataset
2408 * with a received value, the source will be the path of
2409 * the dataset we inherit from. If source is
2410 * ZPROP_SOURCE_VAL_RECVD, the received value is not
2413 if (strcmp(source
, ZPROP_SOURCE_VAL_RECVD
) == 0) {
2416 relpath
= zhp
->zfs_name
+ strlen(source
);
2417 if (relpath
[0] == '/')
2421 if ((zpool_get_prop(zhp
->zpool_hdl
,
2422 ZPOOL_PROP_ALTROOT
, buf
, MAXPATHLEN
, NULL
,
2423 B_FALSE
)) || (strcmp(root
, "-") == 0))
2426 * Special case an alternate root of '/'. This will
2427 * avoid having multiple leading slashes in the
2430 if (strcmp(root
, "/") == 0)
2434 * If the mountpoint is '/' then skip over this
2435 * if we are obtaining either an alternate root or
2436 * an inherited mountpoint.
2438 if (str
[1] == '\0' && (root
[0] != '\0' ||
2439 relpath
[0] != '\0'))
2442 if (relpath
[0] == '\0')
2443 (void) snprintf(propbuf
, proplen
, "%s%s",
2446 (void) snprintf(propbuf
, proplen
, "%s%s%s%s",
2447 root
, str
, relpath
[0] == '@' ? "" : "/",
2450 /* 'legacy' or 'none' */
2451 (void) strlcpy(propbuf
, str
, proplen
);
2453 zcp_check(zhp
, prop
, 0, propbuf
);
2456 case ZFS_PROP_ORIGIN
:
2457 str
= getprop_string(zhp
, prop
, &source
);
2460 (void) strlcpy(propbuf
, str
, proplen
);
2461 zcp_check(zhp
, prop
, 0, str
);
2464 case ZFS_PROP_CLONES
:
2465 if (get_clones_string(zhp
, propbuf
, proplen
) != 0)
2469 case ZFS_PROP_QUOTA
:
2470 case ZFS_PROP_REFQUOTA
:
2471 case ZFS_PROP_RESERVATION
:
2472 case ZFS_PROP_REFRESERVATION
:
2474 if (get_numeric_property(zhp
, prop
, src
, &source
, &val
) != 0)
2477 * If quota or reservation is 0, we translate this into 'none'
2478 * (unless literal is set), and indicate that it's the default
2479 * value. Otherwise, we print the number nicely and indicate
2480 * that its set locally.
2484 (void) strlcpy(propbuf
, "0", proplen
);
2486 (void) strlcpy(propbuf
, "none", proplen
);
2489 (void) snprintf(propbuf
, proplen
, "%llu",
2492 zfs_nicenum(val
, propbuf
, proplen
);
2494 zcp_check(zhp
, prop
, val
, NULL
);
2497 case ZFS_PROP_FILESYSTEM_LIMIT
:
2498 case ZFS_PROP_SNAPSHOT_LIMIT
:
2499 case ZFS_PROP_FILESYSTEM_COUNT
:
2500 case ZFS_PROP_SNAPSHOT_COUNT
:
2502 if (get_numeric_property(zhp
, prop
, src
, &source
, &val
) != 0)
2506 * If limit is UINT64_MAX, we translate this into 'none' (unless
2507 * literal is set), and indicate that it's the default value.
2508 * Otherwise, we print the number nicely and indicate that it's
2512 (void) snprintf(propbuf
, proplen
, "%llu",
2514 } else if (val
== UINT64_MAX
) {
2515 (void) strlcpy(propbuf
, "none", proplen
);
2517 zfs_nicenum(val
, propbuf
, proplen
);
2520 zcp_check(zhp
, prop
, val
, NULL
);
2523 case ZFS_PROP_REFRATIO
:
2524 case ZFS_PROP_COMPRESSRATIO
:
2525 if (get_numeric_property(zhp
, prop
, src
, &source
, &val
) != 0)
2527 (void) snprintf(propbuf
, proplen
, "%llu.%02llux",
2528 (u_longlong_t
)(val
/ 100),
2529 (u_longlong_t
)(val
% 100));
2530 zcp_check(zhp
, prop
, val
, NULL
);
2534 switch (zhp
->zfs_type
) {
2535 case ZFS_TYPE_FILESYSTEM
:
2538 case ZFS_TYPE_VOLUME
:
2541 case ZFS_TYPE_SNAPSHOT
:
2544 case ZFS_TYPE_BOOKMARK
:
2550 (void) snprintf(propbuf
, proplen
, "%s", str
);
2551 zcp_check(zhp
, prop
, 0, propbuf
);
2554 case ZFS_PROP_MOUNTED
:
2556 * The 'mounted' property is a pseudo-property that described
2557 * whether the filesystem is currently mounted. Even though
2558 * it's a boolean value, the typical values of "on" and "off"
2559 * don't make sense, so we translate to "yes" and "no".
2561 if (get_numeric_property(zhp
, ZFS_PROP_MOUNTED
,
2562 src
, &source
, &val
) != 0)
2565 (void) strlcpy(propbuf
, "yes", proplen
);
2567 (void) strlcpy(propbuf
, "no", proplen
);
2572 * The 'name' property is a pseudo-property derived from the
2573 * dataset name. It is presented as a real property to simplify
2576 (void) strlcpy(propbuf
, zhp
->zfs_name
, proplen
);
2577 zcp_check(zhp
, prop
, 0, propbuf
);
2582 * GUIDs are stored as numbers, but they are identifiers.
2583 * We don't want them to be pretty printed, because pretty
2584 * printing mangles the ID into a truncated and useless value.
2586 if (get_numeric_property(zhp
, prop
, src
, &source
, &val
) != 0)
2588 (void) snprintf(propbuf
, proplen
, "%llu", (u_longlong_t
)val
);
2589 zcp_check(zhp
, prop
, val
, NULL
);
2593 switch (zfs_prop_get_type(prop
)) {
2594 case PROP_TYPE_NUMBER
:
2595 if (get_numeric_property(zhp
, prop
, src
,
2596 &source
, &val
) != 0) {
2601 (void) snprintf(propbuf
, proplen
, "%llu",
2604 zfs_nicenum(val
, propbuf
, proplen
);
2606 zcp_check(zhp
, prop
, val
, NULL
);
2609 case PROP_TYPE_STRING
:
2610 str
= getprop_string(zhp
, prop
, &source
);
2614 (void) strlcpy(propbuf
, str
, proplen
);
2615 zcp_check(zhp
, prop
, 0, str
);
2618 case PROP_TYPE_INDEX
:
2619 if (get_numeric_property(zhp
, prop
, src
,
2620 &source
, &val
) != 0)
2622 if (zfs_prop_index_to_string(prop
, val
, &strval
) != 0)
2625 (void) strlcpy(propbuf
, strval
, proplen
);
2626 zcp_check(zhp
, prop
, 0, strval
);
2634 get_source(zhp
, src
, source
, statbuf
, statlen
);
2640 * Utility function to get the given numeric property. Does no validation that
2641 * the given property is the appropriate type; should only be used with
2642 * hard-coded property types.
2645 zfs_prop_get_int(zfs_handle_t
*zhp
, zfs_prop_t prop
)
2650 (void) get_numeric_property(zhp
, prop
, NULL
, &source
, &val
);
2656 zfs_prop_set_int(zfs_handle_t
*zhp
, zfs_prop_t prop
, uint64_t val
)
2660 (void) snprintf(buf
, sizeof (buf
), "%llu", (longlong_t
)val
);
2661 return (zfs_prop_set(zhp
, zfs_prop_to_name(prop
), buf
));
2665 * Similar to zfs_prop_get(), but returns the value as an integer.
2668 zfs_prop_get_numeric(zfs_handle_t
*zhp
, zfs_prop_t prop
, uint64_t *value
,
2669 zprop_source_t
*src
, char *statbuf
, size_t statlen
)
2674 * Check to see if this property applies to our object
2676 if (!zfs_prop_valid_for_type(prop
, zhp
->zfs_type
)) {
2677 return (zfs_error_fmt(zhp
->zfs_hdl
, EZFS_PROPTYPE
,
2678 dgettext(TEXT_DOMAIN
, "cannot get property '%s'"),
2679 zfs_prop_to_name(prop
)));
2683 *src
= ZPROP_SRC_NONE
;
2685 if (get_numeric_property(zhp
, prop
, src
, &source
, value
) != 0)
2688 get_source(zhp
, src
, source
, statbuf
, statlen
);
2694 idmap_id_to_numeric_domain_rid(uid_t id
, boolean_t isuser
,
2695 char **domainp
, idmap_rid_t
*ridp
)
2697 idmap_get_handle_t
*get_hdl
= NULL
;
2701 if (idmap_get_create(&get_hdl
) != IDMAP_SUCCESS
)
2705 err
= idmap_get_sidbyuid(get_hdl
, id
,
2706 IDMAP_REQ_FLG_USE_CACHE
, domainp
, ridp
, &status
);
2708 err
= idmap_get_sidbygid(get_hdl
, id
,
2709 IDMAP_REQ_FLG_USE_CACHE
, domainp
, ridp
, &status
);
2711 if (err
== IDMAP_SUCCESS
&&
2712 idmap_get_mappings(get_hdl
) == IDMAP_SUCCESS
&&
2713 status
== IDMAP_SUCCESS
)
2719 idmap_get_destroy(get_hdl
);
2724 * convert the propname into parameters needed by kernel
2725 * Eg: userquota@ahrens -> ZFS_PROP_USERQUOTA, "", 126829
2726 * Eg: userused@matt@domain -> ZFS_PROP_USERUSED, "S-1-123-456", 789
2729 userquota_propname_decode(const char *propname
, boolean_t zoned
,
2730 zfs_userquota_prop_t
*typep
, char *domain
, int domainlen
, uint64_t *ridp
)
2732 zfs_userquota_prop_t type
;
2734 char *numericsid
= NULL
;
2739 /* Figure out the property type ({user|group}{quota|space}) */
2740 for (type
= 0; type
< ZFS_NUM_USERQUOTA_PROPS
; type
++) {
2741 if (strncmp(propname
, zfs_userquota_prop_prefixes
[type
],
2742 strlen(zfs_userquota_prop_prefixes
[type
])) == 0)
2745 if (type
== ZFS_NUM_USERQUOTA_PROPS
)
2749 isuser
= (type
== ZFS_PROP_USERQUOTA
||
2750 type
== ZFS_PROP_USERUSED
);
2752 cp
= strchr(propname
, '@') + 1;
2754 if (strchr(cp
, '@')) {
2756 * It's a SID name (eg "user@domain") that needs to be
2757 * turned into S-1-domainID-RID.
2760 idmap_stat stat
, map_stat
;
2763 idmap_get_handle_t
*gh
= NULL
;
2765 stat
= idmap_get_create(&gh
);
2766 if (stat
!= IDMAP_SUCCESS
) {
2767 idmap_get_destroy(gh
);
2770 if (zoned
&& getzoneid() == GLOBAL_ZONEID
)
2773 stat
= idmap_getuidbywinname(cp
, NULL
, flag
, &pid
);
2776 stat
= idmap_get_sidbyuid(gh
, pid
, flag
, &numericsid
,
2779 stat
= idmap_getgidbywinname(cp
, NULL
, flag
, &pid
);
2782 stat
= idmap_get_sidbygid(gh
, pid
, flag
, &numericsid
,
2786 idmap_get_destroy(gh
);
2789 stat
= idmap_get_mappings(gh
);
2790 idmap_get_destroy(gh
);
2795 if (numericsid
== NULL
)
2799 /* will be further decoded below */
2802 if (strncmp(cp
, "S-1-", 4) == 0) {
2803 /* It's a numeric SID (eg "S-1-234-567-89") */
2804 (void) strlcpy(domain
, cp
, domainlen
);
2807 cp
= strrchr(domain
, '-');
2810 *ridp
= strtoull(cp
, &end
, 10);
2818 if (errno
!= 0 || *end
!= '\0')
2820 } else if (!isdigit(*cp
)) {
2822 * It's a user/group name (eg "user") that needs to be
2823 * turned into a uid/gid
2825 if (zoned
&& getzoneid() == GLOBAL_ZONEID
)
2841 /* It's a user/group ID (eg "12345"). */
2842 uid_t id
= strtoul(cp
, &end
, 10);
2849 /* It's an ephemeral ID. */
2850 if (idmap_id_to_numeric_domain_rid(id
, isuser
,
2851 &mapdomain
, &rid
) != 0)
2853 (void) strlcpy(domain
, mapdomain
, domainlen
);
2860 ASSERT3P(numericsid
, ==, NULL
);
2865 zfs_prop_get_userquota_common(zfs_handle_t
*zhp
, const char *propname
,
2866 uint64_t *propvalue
, zfs_userquota_prop_t
*typep
)
2869 zfs_cmd_t zc
= { 0 };
2871 (void) strlcpy(zc
.zc_name
, zhp
->zfs_name
, sizeof (zc
.zc_name
));
2873 err
= userquota_propname_decode(propname
,
2874 zfs_prop_get_int(zhp
, ZFS_PROP_ZONED
),
2875 typep
, zc
.zc_value
, sizeof (zc
.zc_value
), &zc
.zc_guid
);
2876 zc
.zc_objset_type
= *typep
;
2880 err
= ioctl(zhp
->zfs_hdl
->libzfs_fd
, ZFS_IOC_USERSPACE_ONE
, &zc
);
2884 *propvalue
= zc
.zc_cookie
;
2889 zfs_prop_get_userquota_int(zfs_handle_t
*zhp
, const char *propname
,
2890 uint64_t *propvalue
)
2892 zfs_userquota_prop_t type
;
2894 return (zfs_prop_get_userquota_common(zhp
, propname
, propvalue
,
2899 zfs_prop_get_userquota(zfs_handle_t
*zhp
, const char *propname
,
2900 char *propbuf
, int proplen
, boolean_t literal
)
2904 zfs_userquota_prop_t type
;
2906 err
= zfs_prop_get_userquota_common(zhp
, propname
, &propvalue
,
2913 (void) snprintf(propbuf
, proplen
, "%llu", propvalue
);
2914 } else if (propvalue
== 0 &&
2915 (type
== ZFS_PROP_USERQUOTA
|| type
== ZFS_PROP_GROUPQUOTA
)) {
2916 (void) strlcpy(propbuf
, "none", proplen
);
2918 zfs_nicenum(propvalue
, propbuf
, proplen
);
2924 zfs_prop_get_written_int(zfs_handle_t
*zhp
, const char *propname
,
2925 uint64_t *propvalue
)
2928 zfs_cmd_t zc
= { 0 };
2929 const char *snapname
;
2931 (void) strlcpy(zc
.zc_name
, zhp
->zfs_name
, sizeof (zc
.zc_name
));
2933 snapname
= strchr(propname
, '@') + 1;
2934 if (strchr(snapname
, '@')) {
2935 (void) strlcpy(zc
.zc_value
, snapname
, sizeof (zc
.zc_value
));
2937 /* snapname is the short name, append it to zhp's fsname */
2940 (void) strlcpy(zc
.zc_value
, zhp
->zfs_name
,
2941 sizeof (zc
.zc_value
));
2942 cp
= strchr(zc
.zc_value
, '@');
2945 (void) strlcat(zc
.zc_value
, "@", sizeof (zc
.zc_value
));
2946 (void) strlcat(zc
.zc_value
, snapname
, sizeof (zc
.zc_value
));
2949 err
= ioctl(zhp
->zfs_hdl
->libzfs_fd
, ZFS_IOC_SPACE_WRITTEN
, &zc
);
2953 *propvalue
= zc
.zc_cookie
;
2958 zfs_prop_get_written(zfs_handle_t
*zhp
, const char *propname
,
2959 char *propbuf
, int proplen
, boolean_t literal
)
2964 err
= zfs_prop_get_written_int(zhp
, propname
, &propvalue
);
2970 (void) snprintf(propbuf
, proplen
, "%llu", propvalue
);
2972 zfs_nicenum(propvalue
, propbuf
, proplen
);
2978 * Returns the name of the given zfs handle.
2981 zfs_get_name(const zfs_handle_t
*zhp
)
2983 return (zhp
->zfs_name
);
2987 * Returns the name of the parent pool for the given zfs handle.
2990 zfs_get_pool_name(const zfs_handle_t
*zhp
)
2992 return (zhp
->zpool_hdl
->zpool_name
);
2996 * Returns the type of the given zfs handle.
2999 zfs_get_type(const zfs_handle_t
*zhp
)
3001 return (zhp
->zfs_type
);
3005 * Is one dataset name a child dataset of another?
3007 * Needs to handle these cases:
3008 * Dataset 1 "a/foo" "a/foo" "a/foo" "a/foo"
3009 * Dataset 2 "a/fo" "a/foobar" "a/bar/baz" "a/foo/bar"
3010 * Descendant? No. No. No. Yes.
3013 is_descendant(const char *ds1
, const char *ds2
)
3015 size_t d1len
= strlen(ds1
);
3017 /* ds2 can't be a descendant if it's smaller */
3018 if (strlen(ds2
) < d1len
)
3021 /* otherwise, compare strings and verify that there's a '/' char */
3022 return (ds2
[d1len
] == '/' && (strncmp(ds1
, ds2
, d1len
) == 0));
3026 * Given a complete name, return just the portion that refers to the parent.
3027 * Will return -1 if there is no parent (path is just the name of the
3031 parent_name(const char *path
, char *buf
, size_t buflen
)
3035 (void) strlcpy(buf
, path
, buflen
);
3037 if ((slashp
= strrchr(buf
, '/')) == NULL
)
3045 * If accept_ancestor is false, then check to make sure that the given path has
3046 * a parent, and that it exists. If accept_ancestor is true, then find the
3047 * closest existing ancestor for the given path. In prefixlen return the
3048 * length of already existing prefix of the given path. We also fetch the
3049 * 'zoned' property, which is used to validate property settings when creating
3053 check_parents(libzfs_handle_t
*hdl
, const char *path
, uint64_t *zoned
,
3054 boolean_t accept_ancestor
, int *prefixlen
)
3056 zfs_cmd_t zc
= { 0 };
3057 char parent
[ZFS_MAX_DATASET_NAME_LEN
];
3063 (void) snprintf(errbuf
, sizeof (errbuf
),
3064 dgettext(TEXT_DOMAIN
, "cannot create '%s'"), path
);
3066 /* get parent, and check to see if this is just a pool */
3067 if (parent_name(path
, parent
, sizeof (parent
)) != 0) {
3068 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3069 "missing dataset name"));
3070 return (zfs_error(hdl
, EZFS_INVALIDNAME
, errbuf
));
3073 /* check to see if the pool exists */
3074 if ((slash
= strchr(parent
, '/')) == NULL
)
3075 slash
= parent
+ strlen(parent
);
3076 (void) strncpy(zc
.zc_name
, parent
, slash
- parent
);
3077 zc
.zc_name
[slash
- parent
] = '\0';
3078 if (ioctl(hdl
->libzfs_fd
, ZFS_IOC_OBJSET_STATS
, &zc
) != 0 &&
3080 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3081 "no such pool '%s'"), zc
.zc_name
);
3082 return (zfs_error(hdl
, EZFS_NOENT
, errbuf
));
3085 /* check to see if the parent dataset exists */
3086 while ((zhp
= make_dataset_handle(hdl
, parent
)) == NULL
) {
3087 if (errno
== ENOENT
&& accept_ancestor
) {
3089 * Go deeper to find an ancestor, give up on top level.
3091 if (parent_name(parent
, parent
, sizeof (parent
)) != 0) {
3092 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3093 "no such pool '%s'"), zc
.zc_name
);
3094 return (zfs_error(hdl
, EZFS_NOENT
, errbuf
));
3096 } else if (errno
== ENOENT
) {
3097 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3098 "parent does not exist"));
3099 return (zfs_error(hdl
, EZFS_NOENT
, errbuf
));
3101 return (zfs_standard_error(hdl
, errno
, errbuf
));
3104 is_zoned
= zfs_prop_get_int(zhp
, ZFS_PROP_ZONED
);
3108 /* we are in a non-global zone, but parent is in the global zone */
3109 if (getzoneid() != GLOBAL_ZONEID
&& !is_zoned
) {
3110 (void) zfs_standard_error(hdl
, EPERM
, errbuf
);
3115 /* make sure parent is a filesystem */
3116 if (zfs_get_type(zhp
) != ZFS_TYPE_FILESYSTEM
) {
3117 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3118 "parent is not a filesystem"));
3119 (void) zfs_error(hdl
, EZFS_BADTYPE
, errbuf
);
3125 if (prefixlen
!= NULL
)
3126 *prefixlen
= strlen(parent
);
3131 * Finds whether the dataset of the given type(s) exists.
3134 zfs_dataset_exists(libzfs_handle_t
*hdl
, const char *path
, zfs_type_t types
)
3138 if (!zfs_validate_name(hdl
, path
, types
, B_FALSE
))
3142 * Try to get stats for the dataset, which will tell us if it exists.
3144 if ((zhp
= make_dataset_handle(hdl
, path
)) != NULL
) {
3145 int ds_type
= zhp
->zfs_type
;
3148 if (types
& ds_type
)
3155 * Given a path to 'target', create all the ancestors between
3156 * the prefixlen portion of the path, and the target itself.
3157 * Fail if the initial prefixlen-ancestor does not already exist.
3160 create_parents(libzfs_handle_t
*hdl
, char *target
, int prefixlen
)
3166 /* make sure prefix exists */
3167 cp
= target
+ prefixlen
;
3169 assert(strchr(cp
, '/') == NULL
);
3170 h
= zfs_open(hdl
, target
, ZFS_TYPE_FILESYSTEM
);
3173 h
= zfs_open(hdl
, target
, ZFS_TYPE_FILESYSTEM
);
3181 * Attempt to create, mount, and share any ancestor filesystems,
3182 * up to the prefixlen-long one.
3184 for (cp
= target
+ prefixlen
+ 1;
3185 (cp
= strchr(cp
, '/')) != NULL
; *cp
= '/', cp
++) {
3189 h
= make_dataset_handle(hdl
, target
);
3191 /* it already exists, nothing to do here */
3196 if (zfs_create(hdl
, target
, ZFS_TYPE_FILESYSTEM
,
3198 opname
= dgettext(TEXT_DOMAIN
, "create");
3202 h
= zfs_open(hdl
, target
, ZFS_TYPE_FILESYSTEM
);
3204 opname
= dgettext(TEXT_DOMAIN
, "open");
3208 if (zfs_mount(h
, NULL
, 0) != 0) {
3209 opname
= dgettext(TEXT_DOMAIN
, "mount");
3213 if (zfs_share(h
) != 0) {
3214 opname
= dgettext(TEXT_DOMAIN
, "share");
3224 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3225 "failed to %s ancestor '%s'"), opname
, target
);
3230 * Creates non-existing ancestors of the given path.
3233 zfs_create_ancestors(libzfs_handle_t
*hdl
, const char *path
)
3239 if (check_parents(hdl
, path
, NULL
, B_TRUE
, &prefix
) != 0)
3242 if ((path_copy
= strdup(path
)) != NULL
) {
3243 rc
= create_parents(hdl
, path_copy
, prefix
);
3246 if (path_copy
== NULL
|| rc
!= 0)
3253 * Create a new filesystem or volume.
3256 zfs_create(libzfs_handle_t
*hdl
, const char *path
, zfs_type_t type
,
3261 uint64_t blocksize
= zfs_prop_default_numeric(ZFS_PROP_VOLBLOCKSIZE
);
3264 enum lzc_dataset_type ost
;
3265 zpool_handle_t
*zpool_handle
;
3267 (void) snprintf(errbuf
, sizeof (errbuf
), dgettext(TEXT_DOMAIN
,
3268 "cannot create '%s'"), path
);
3270 /* validate the path, taking care to note the extended error message */
3271 if (!zfs_validate_name(hdl
, path
, type
, B_TRUE
))
3272 return (zfs_error(hdl
, EZFS_INVALIDNAME
, errbuf
));
3274 /* validate parents exist */
3275 if (check_parents(hdl
, path
, &zoned
, B_FALSE
, NULL
) != 0)
3279 * The failure modes when creating a dataset of a different type over
3280 * one that already exists is a little strange. In particular, if you
3281 * try to create a dataset on top of an existing dataset, the ioctl()
3282 * will return ENOENT, not EEXIST. To prevent this from happening, we
3283 * first try to see if the dataset exists.
3285 if (zfs_dataset_exists(hdl
, path
, ZFS_TYPE_DATASET
)) {
3286 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3287 "dataset already exists"));
3288 return (zfs_error(hdl
, EZFS_EXISTS
, errbuf
));
3291 if (type
== ZFS_TYPE_VOLUME
)
3292 ost
= LZC_DATSET_TYPE_ZVOL
;
3294 ost
= LZC_DATSET_TYPE_ZFS
;
3296 /* open zpool handle for prop validation */
3297 char pool_path
[ZFS_MAX_DATASET_NAME_LEN
];
3298 (void) strlcpy(pool_path
, path
, sizeof (pool_path
));
3300 /* truncate pool_path at first slash */
3301 char *p
= strchr(pool_path
, '/');
3305 if ((zpool_handle
= zpool_open(hdl
, pool_path
)) == NULL
)
3308 if (props
&& (props
= zfs_valid_proplist(hdl
, type
, props
,
3309 zoned
, NULL
, zpool_handle
, errbuf
)) == 0) {
3310 zpool_close(zpool_handle
);
3313 zpool_close(zpool_handle
);
3315 if (type
== ZFS_TYPE_VOLUME
) {
3317 * If we are creating a volume, the size and block size must
3318 * satisfy a few restraints. First, the blocksize must be a
3319 * valid block size between SPA_{MIN,MAX}BLOCKSIZE. Second, the
3320 * volsize must be a multiple of the block size, and cannot be
3323 if (props
== NULL
|| nvlist_lookup_uint64(props
,
3324 zfs_prop_to_name(ZFS_PROP_VOLSIZE
), &size
) != 0) {
3326 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3327 "missing volume size"));
3328 return (zfs_error(hdl
, EZFS_BADPROP
, errbuf
));
3331 if ((ret
= nvlist_lookup_uint64(props
,
3332 zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE
),
3333 &blocksize
)) != 0) {
3334 if (ret
== ENOENT
) {
3335 blocksize
= zfs_prop_default_numeric(
3336 ZFS_PROP_VOLBLOCKSIZE
);
3339 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3340 "missing volume block size"));
3341 return (zfs_error(hdl
, EZFS_BADPROP
, errbuf
));
3347 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3348 "volume size cannot be zero"));
3349 return (zfs_error(hdl
, EZFS_BADPROP
, errbuf
));
3352 if (size
% blocksize
!= 0) {
3354 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3355 "volume size must be a multiple of volume block "
3357 return (zfs_error(hdl
, EZFS_BADPROP
, errbuf
));
3361 /* create the dataset */
3362 ret
= lzc_create(path
, ost
, props
);
3365 /* check for failure */
3367 char parent
[ZFS_MAX_DATASET_NAME_LEN
];
3368 (void) parent_name(path
, parent
, sizeof (parent
));
3372 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3373 "no such parent '%s'"), parent
);
3374 return (zfs_error(hdl
, EZFS_NOENT
, errbuf
));
3377 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3378 "parent '%s' is not a filesystem"), parent
);
3379 return (zfs_error(hdl
, EZFS_BADTYPE
, errbuf
));
3382 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3383 "pool must be upgraded to set this "
3384 "property or value"));
3385 return (zfs_error(hdl
, EZFS_BADVERSION
, errbuf
));
3389 * This platform can't address a volume this big.
3391 if (type
== ZFS_TYPE_VOLUME
)
3392 return (zfs_error(hdl
, EZFS_VOLTOOBIG
,
3397 return (zfs_standard_error(hdl
, errno
, errbuf
));
3405 * Destroys the given dataset. The caller must make sure that the filesystem
3406 * isn't mounted, and that there are no active dependents. If the file system
3407 * does not exist this function does nothing.
3410 zfs_destroy(zfs_handle_t
*zhp
, boolean_t defer
)
3412 zfs_cmd_t zc
= { 0 };
3414 if (zhp
->zfs_type
== ZFS_TYPE_BOOKMARK
) {
3415 nvlist_t
*nv
= fnvlist_alloc();
3416 fnvlist_add_boolean(nv
, zhp
->zfs_name
);
3417 int error
= lzc_destroy_bookmarks(nv
, NULL
);
3420 return (zfs_standard_error_fmt(zhp
->zfs_hdl
, errno
,
3421 dgettext(TEXT_DOMAIN
, "cannot destroy '%s'"),
3427 (void) strlcpy(zc
.zc_name
, zhp
->zfs_name
, sizeof (zc
.zc_name
));
3429 if (ZFS_IS_VOLUME(zhp
)) {
3430 zc
.zc_objset_type
= DMU_OST_ZVOL
;
3432 zc
.zc_objset_type
= DMU_OST_ZFS
;
3435 zc
.zc_defer_destroy
= defer
;
3436 if (zfs_ioctl(zhp
->zfs_hdl
, ZFS_IOC_DESTROY
, &zc
) != 0 &&
3438 return (zfs_standard_error_fmt(zhp
->zfs_hdl
, errno
,
3439 dgettext(TEXT_DOMAIN
, "cannot destroy '%s'"),
3443 remove_mountpoint(zhp
);
3448 struct destroydata
{
3450 const char *snapname
;
3454 zfs_check_snap_cb(zfs_handle_t
*zhp
, void *arg
)
3456 struct destroydata
*dd
= arg
;
3457 char name
[ZFS_MAX_DATASET_NAME_LEN
];
3460 (void) snprintf(name
, sizeof (name
),
3461 "%s@%s", zhp
->zfs_name
, dd
->snapname
);
3463 if (lzc_exists(name
))
3464 verify(nvlist_add_boolean(dd
->nvl
, name
) == 0);
3466 rv
= zfs_iter_filesystems(zhp
, zfs_check_snap_cb
, dd
);
3472 * Destroys all snapshots with the given name in zhp & descendants.
3475 zfs_destroy_snaps(zfs_handle_t
*zhp
, char *snapname
, boolean_t defer
)
3478 struct destroydata dd
= { 0 };
3480 dd
.snapname
= snapname
;
3481 verify(nvlist_alloc(&dd
.nvl
, NV_UNIQUE_NAME
, 0) == 0);
3482 (void) zfs_check_snap_cb(zfs_handle_dup(zhp
), &dd
);
3484 if (nvlist_empty(dd
.nvl
)) {
3485 ret
= zfs_standard_error_fmt(zhp
->zfs_hdl
, ENOENT
,
3486 dgettext(TEXT_DOMAIN
, "cannot destroy '%s@%s'"),
3487 zhp
->zfs_name
, snapname
);
3489 ret
= zfs_destroy_snaps_nvl(zhp
->zfs_hdl
, dd
.nvl
, defer
);
3491 nvlist_free(dd
.nvl
);
3496 * Destroys all the snapshots named in the nvlist.
3499 zfs_destroy_snaps_nvl(libzfs_handle_t
*hdl
, nvlist_t
*snaps
, boolean_t defer
)
3502 nvlist_t
*errlist
= NULL
;
3504 ret
= lzc_destroy_snaps(snaps
, defer
, &errlist
);
3507 nvlist_free(errlist
);
3511 if (nvlist_empty(errlist
)) {
3513 (void) snprintf(errbuf
, sizeof (errbuf
),
3514 dgettext(TEXT_DOMAIN
, "cannot destroy snapshots"));
3516 ret
= zfs_standard_error(hdl
, ret
, errbuf
);
3518 for (nvpair_t
*pair
= nvlist_next_nvpair(errlist
, NULL
);
3519 pair
!= NULL
; pair
= nvlist_next_nvpair(errlist
, pair
)) {
3521 (void) snprintf(errbuf
, sizeof (errbuf
),
3522 dgettext(TEXT_DOMAIN
, "cannot destroy snapshot %s"),
3525 switch (fnvpair_value_int32(pair
)) {
3528 dgettext(TEXT_DOMAIN
, "snapshot is cloned"));
3529 ret
= zfs_error(hdl
, EZFS_EXISTS
, errbuf
);
3532 ret
= zfs_standard_error(hdl
, errno
, errbuf
);
3537 nvlist_free(errlist
);
3542 * Clones the given dataset. The target must be of the same type as the source.
3545 zfs_clone(zfs_handle_t
*zhp
, const char *target
, nvlist_t
*props
)
3547 char parent
[ZFS_MAX_DATASET_NAME_LEN
];
3550 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
3553 assert(zhp
->zfs_type
== ZFS_TYPE_SNAPSHOT
);
3555 (void) snprintf(errbuf
, sizeof (errbuf
), dgettext(TEXT_DOMAIN
,
3556 "cannot create '%s'"), target
);
3558 /* validate the target/clone name */
3559 if (!zfs_validate_name(hdl
, target
, ZFS_TYPE_FILESYSTEM
, B_TRUE
))
3560 return (zfs_error(hdl
, EZFS_INVALIDNAME
, errbuf
));
3562 /* validate parents exist */
3563 if (check_parents(hdl
, target
, &zoned
, B_FALSE
, NULL
) != 0)
3566 (void) parent_name(target
, parent
, sizeof (parent
));
3572 if (ZFS_IS_VOLUME(zhp
)) {
3573 type
= ZFS_TYPE_VOLUME
;
3575 type
= ZFS_TYPE_FILESYSTEM
;
3577 if ((props
= zfs_valid_proplist(hdl
, type
, props
, zoned
,
3578 zhp
, zhp
->zpool_hdl
, errbuf
)) == NULL
)
3582 ret
= lzc_clone(target
, zhp
->zfs_name
, props
);
3590 * The parent doesn't exist. We should have caught this
3591 * above, but there may a race condition that has since
3592 * destroyed the parent.
3594 * At this point, we don't know whether it's the source
3595 * that doesn't exist anymore, or whether the target
3596 * dataset doesn't exist.
3598 zfs_error_aux(zhp
->zfs_hdl
, dgettext(TEXT_DOMAIN
,
3599 "no such parent '%s'"), parent
);
3600 return (zfs_error(zhp
->zfs_hdl
, EZFS_NOENT
, errbuf
));
3603 zfs_error_aux(zhp
->zfs_hdl
, dgettext(TEXT_DOMAIN
,
3604 "source and target pools differ"));
3605 return (zfs_error(zhp
->zfs_hdl
, EZFS_CROSSTARGET
,
3609 return (zfs_standard_error(zhp
->zfs_hdl
, errno
,
3618 * Promotes the given clone fs to be the clone parent.
3621 zfs_promote(zfs_handle_t
*zhp
)
3623 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
3624 char snapname
[ZFS_MAX_DATASET_NAME_LEN
];
3628 (void) snprintf(errbuf
, sizeof (errbuf
), dgettext(TEXT_DOMAIN
,
3629 "cannot promote '%s'"), zhp
->zfs_name
);
3631 if (zhp
->zfs_type
== ZFS_TYPE_SNAPSHOT
) {
3632 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3633 "snapshots can not be promoted"));
3634 return (zfs_error(hdl
, EZFS_BADTYPE
, errbuf
));
3637 if (zhp
->zfs_dmustats
.dds_origin
[0] == '\0') {
3638 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3639 "not a cloned filesystem"));
3640 return (zfs_error(hdl
, EZFS_BADTYPE
, errbuf
));
3643 ret
= lzc_promote(zhp
->zfs_name
, snapname
, sizeof (snapname
));
3648 /* There is a conflicting snapshot name. */
3649 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3650 "conflicting snapshot '%s' from parent '%s'"),
3651 snapname
, zhp
->zfs_dmustats
.dds_origin
);
3652 return (zfs_error(hdl
, EZFS_EXISTS
, errbuf
));
3655 return (zfs_standard_error(hdl
, ret
, errbuf
));
3661 typedef struct snapdata
{
3663 const char *sd_snapname
;
3667 zfs_snapshot_cb(zfs_handle_t
*zhp
, void *arg
)
3669 snapdata_t
*sd
= arg
;
3670 char name
[ZFS_MAX_DATASET_NAME_LEN
];
3673 if (zfs_prop_get_int(zhp
, ZFS_PROP_INCONSISTENT
) == 0) {
3674 (void) snprintf(name
, sizeof (name
),
3675 "%s@%s", zfs_get_name(zhp
), sd
->sd_snapname
);
3677 fnvlist_add_boolean(sd
->sd_nvl
, name
);
3679 rv
= zfs_iter_filesystems(zhp
, zfs_snapshot_cb
, sd
);
3687 * Creates snapshots. The keys in the snaps nvlist are the snapshots to be
3691 zfs_snapshot_nvl(libzfs_handle_t
*hdl
, nvlist_t
*snaps
, nvlist_t
*props
)
3698 (void) snprintf(errbuf
, sizeof (errbuf
), dgettext(TEXT_DOMAIN
,
3699 "cannot create snapshots "));
3702 while ((elem
= nvlist_next_nvpair(snaps
, elem
)) != NULL
) {
3703 const char *snapname
= nvpair_name(elem
);
3705 /* validate the target name */
3706 if (!zfs_validate_name(hdl
, snapname
, ZFS_TYPE_SNAPSHOT
,
3708 (void) snprintf(errbuf
, sizeof (errbuf
),
3709 dgettext(TEXT_DOMAIN
,
3710 "cannot create snapshot '%s'"), snapname
);
3711 return (zfs_error(hdl
, EZFS_INVALIDNAME
, errbuf
));
3716 * get pool handle for prop validation. assumes all snaps are in the
3717 * same pool, as does lzc_snapshot (below).
3719 char pool
[ZFS_MAX_DATASET_NAME_LEN
];
3720 elem
= nvlist_next_nvpair(snaps
, NULL
);
3721 (void) strlcpy(pool
, nvpair_name(elem
), sizeof (pool
));
3722 pool
[strcspn(pool
, "/@")] = '\0';
3723 zpool_handle_t
*zpool_hdl
= zpool_open(hdl
, pool
);
3725 if (props
!= NULL
&&
3726 (props
= zfs_valid_proplist(hdl
, ZFS_TYPE_SNAPSHOT
,
3727 props
, B_FALSE
, NULL
, zpool_hdl
, errbuf
)) == NULL
) {
3728 zpool_close(zpool_hdl
);
3731 zpool_close(zpool_hdl
);
3733 ret
= lzc_snapshot(snaps
, props
, &errors
);
3736 boolean_t printed
= B_FALSE
;
3737 for (elem
= nvlist_next_nvpair(errors
, NULL
);
3739 elem
= nvlist_next_nvpair(errors
, elem
)) {
3740 (void) snprintf(errbuf
, sizeof (errbuf
),
3741 dgettext(TEXT_DOMAIN
,
3742 "cannot create snapshot '%s'"), nvpair_name(elem
));
3743 (void) zfs_standard_error(hdl
,
3744 fnvpair_value_int32(elem
), errbuf
);
3750 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3751 "multiple snapshots of same "
3753 (void) zfs_error(hdl
, EZFS_EXISTS
, errbuf
);
3757 (void) zfs_standard_error(hdl
, ret
, errbuf
);
3763 nvlist_free(errors
);
3768 zfs_snapshot(libzfs_handle_t
*hdl
, const char *path
, boolean_t recursive
,
3772 snapdata_t sd
= { 0 };
3773 char fsname
[ZFS_MAX_DATASET_NAME_LEN
];
3778 (void) snprintf(errbuf
, sizeof (errbuf
), dgettext(TEXT_DOMAIN
,
3779 "cannot snapshot %s"), path
);
3781 if (!zfs_validate_name(hdl
, path
, ZFS_TYPE_SNAPSHOT
, B_TRUE
))
3782 return (zfs_error(hdl
, EZFS_INVALIDNAME
, errbuf
));
3784 (void) strlcpy(fsname
, path
, sizeof (fsname
));
3785 cp
= strchr(fsname
, '@');
3787 sd
.sd_snapname
= cp
+ 1;
3789 if ((zhp
= zfs_open(hdl
, fsname
, ZFS_TYPE_FILESYSTEM
|
3790 ZFS_TYPE_VOLUME
)) == NULL
) {
3794 verify(nvlist_alloc(&sd
.sd_nvl
, NV_UNIQUE_NAME
, 0) == 0);
3796 (void) zfs_snapshot_cb(zfs_handle_dup(zhp
), &sd
);
3798 fnvlist_add_boolean(sd
.sd_nvl
, path
);
3801 ret
= zfs_snapshot_nvl(hdl
, sd
.sd_nvl
, props
);
3802 nvlist_free(sd
.sd_nvl
);
3808 * Destroy any more recent snapshots. We invoke this callback on any dependents
3809 * of the snapshot first. If the 'cb_dependent' member is non-zero, then this
3810 * is a dependent and we should just destroy it without checking the transaction
3813 typedef struct rollback_data
{
3814 const char *cb_target
; /* the snapshot */
3815 uint64_t cb_create
; /* creation time reference */
3821 rollback_destroy_dependent(zfs_handle_t
*zhp
, void *data
)
3823 rollback_data_t
*cbp
= data
;
3824 prop_changelist_t
*clp
;
3826 /* We must destroy this clone; first unmount it */
3827 clp
= changelist_gather(zhp
, ZFS_PROP_NAME
, 0,
3828 cbp
->cb_force
? MS_FORCE
: 0);
3829 if (clp
== NULL
|| changelist_prefix(clp
) != 0) {
3830 cbp
->cb_error
= B_TRUE
;
3834 if (zfs_destroy(zhp
, B_FALSE
) != 0)
3835 cbp
->cb_error
= B_TRUE
;
3837 changelist_remove(clp
, zhp
->zfs_name
);
3838 (void) changelist_postfix(clp
);
3839 changelist_free(clp
);
3846 rollback_destroy(zfs_handle_t
*zhp
, void *data
)
3848 rollback_data_t
*cbp
= data
;
3850 if (zfs_prop_get_int(zhp
, ZFS_PROP_CREATETXG
) > cbp
->cb_create
) {
3851 cbp
->cb_error
|= zfs_iter_dependents(zhp
, B_FALSE
,
3852 rollback_destroy_dependent
, cbp
);
3854 cbp
->cb_error
|= zfs_destroy(zhp
, B_FALSE
);
3862 * Given a dataset, rollback to a specific snapshot, discarding any
3863 * data changes since then and making it the active dataset.
3865 * Any snapshots and bookmarks more recent than the target are
3866 * destroyed, along with their dependents (i.e. clones).
3869 zfs_rollback(zfs_handle_t
*zhp
, zfs_handle_t
*snap
, boolean_t force
)
3871 rollback_data_t cb
= { 0 };
3873 boolean_t restore_resv
= 0;
3874 uint64_t old_volsize
= 0, new_volsize
;
3875 zfs_prop_t resv_prop
;
3877 assert(zhp
->zfs_type
== ZFS_TYPE_FILESYSTEM
||
3878 zhp
->zfs_type
== ZFS_TYPE_VOLUME
);
3881 * Destroy all recent snapshots and their dependents.
3883 cb
.cb_force
= force
;
3884 cb
.cb_target
= snap
->zfs_name
;
3885 cb
.cb_create
= zfs_prop_get_int(snap
, ZFS_PROP_CREATETXG
);
3886 (void) zfs_iter_snapshots(zhp
, B_FALSE
, rollback_destroy
, &cb
);
3887 (void) zfs_iter_bookmarks(zhp
, rollback_destroy
, &cb
);
3893 * Now that we have verified that the snapshot is the latest,
3894 * rollback to the given snapshot.
3897 if (zhp
->zfs_type
== ZFS_TYPE_VOLUME
) {
3898 if (zfs_which_resv_prop(zhp
, &resv_prop
) < 0)
3900 old_volsize
= zfs_prop_get_int(zhp
, ZFS_PROP_VOLSIZE
);
3902 (old_volsize
== zfs_prop_get_int(zhp
, resv_prop
));
3906 * Pass both the filesystem and the wanted snapshot names,
3907 * we would get an error back if the snapshot is destroyed or
3908 * a new snapshot is created before this request is processed.
3910 err
= lzc_rollback_to(zhp
->zfs_name
, snap
->zfs_name
);
3912 zfs_error_aux(zhp
->zfs_hdl
, dgettext(TEXT_DOMAIN
,
3913 "'%s' is not the latest snapshot"), snap
->zfs_name
);
3914 (void) zfs_error_fmt(zhp
->zfs_hdl
, EZFS_BUSY
,
3915 dgettext(TEXT_DOMAIN
, "cannot rollback '%s'"),
3918 } else if (err
!= 0) {
3919 (void) zfs_standard_error_fmt(zhp
->zfs_hdl
, errno
,
3920 dgettext(TEXT_DOMAIN
, "cannot rollback '%s'"),
3926 * For volumes, if the pre-rollback volsize matched the pre-
3927 * rollback reservation and the volsize has changed then set
3928 * the reservation property to the post-rollback volsize.
3929 * Make a new handle since the rollback closed the dataset.
3931 if ((zhp
->zfs_type
== ZFS_TYPE_VOLUME
) &&
3932 (zhp
= make_dataset_handle(zhp
->zfs_hdl
, zhp
->zfs_name
))) {
3934 new_volsize
= zfs_prop_get_int(zhp
, ZFS_PROP_VOLSIZE
);
3935 if (old_volsize
!= new_volsize
)
3936 err
= zfs_prop_set_int(zhp
, resv_prop
,
3945 * Renames the given dataset.
3948 zfs_rename(zfs_handle_t
*zhp
, const char *target
, boolean_t recursive
,
3949 boolean_t force_unmount
)
3952 zfs_cmd_t zc
= { 0 };
3954 prop_changelist_t
*cl
= NULL
;
3955 zfs_handle_t
*zhrp
= NULL
;
3956 char *parentname
= NULL
;
3957 char parent
[ZFS_MAX_DATASET_NAME_LEN
];
3958 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
3961 /* if we have the same exact name, just return success */
3962 if (strcmp(zhp
->zfs_name
, target
) == 0)
3965 (void) snprintf(errbuf
, sizeof (errbuf
), dgettext(TEXT_DOMAIN
,
3966 "cannot rename to '%s'"), target
);
3969 * Make sure the target name is valid
3971 if (zhp
->zfs_type
== ZFS_TYPE_SNAPSHOT
) {
3972 if ((strchr(target
, '@') == NULL
) ||
3975 * Snapshot target name is abbreviated,
3976 * reconstruct full dataset name
3978 (void) strlcpy(parent
, zhp
->zfs_name
,
3980 delim
= strchr(parent
, '@');
3981 if (strchr(target
, '@') == NULL
)
3985 (void) strlcat(parent
, target
, sizeof (parent
));
3989 * Make sure we're renaming within the same dataset.
3991 delim
= strchr(target
, '@');
3992 if (strncmp(zhp
->zfs_name
, target
, delim
- target
)
3993 != 0 || zhp
->zfs_name
[delim
- target
] != '@') {
3994 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
3995 "snapshots must be part of same "
3997 return (zfs_error(hdl
, EZFS_CROSSTARGET
,
4001 if (!zfs_validate_name(hdl
, target
, zhp
->zfs_type
, B_TRUE
))
4002 return (zfs_error(hdl
, EZFS_INVALIDNAME
, errbuf
));
4005 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
4006 "recursive rename must be a snapshot"));
4007 return (zfs_error(hdl
, EZFS_BADTYPE
, errbuf
));
4010 if (!zfs_validate_name(hdl
, target
, zhp
->zfs_type
, B_TRUE
))
4011 return (zfs_error(hdl
, EZFS_INVALIDNAME
, errbuf
));
4013 /* validate parents */
4014 if (check_parents(hdl
, target
, NULL
, B_FALSE
, NULL
) != 0)
4017 /* make sure we're in the same pool */
4018 verify((delim
= strchr(target
, '/')) != NULL
);
4019 if (strncmp(zhp
->zfs_name
, target
, delim
- target
) != 0 ||
4020 zhp
->zfs_name
[delim
- target
] != '/') {
4021 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
4022 "datasets must be within same pool"));
4023 return (zfs_error(hdl
, EZFS_CROSSTARGET
, errbuf
));
4026 /* new name cannot be a child of the current dataset name */
4027 if (is_descendant(zhp
->zfs_name
, target
)) {
4028 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
4029 "New dataset name cannot be a descendant of "
4030 "current dataset name"));
4031 return (zfs_error(hdl
, EZFS_INVALIDNAME
, errbuf
));
4035 (void) snprintf(errbuf
, sizeof (errbuf
),
4036 dgettext(TEXT_DOMAIN
, "cannot rename '%s'"), zhp
->zfs_name
);
4038 if (getzoneid() == GLOBAL_ZONEID
&&
4039 zfs_prop_get_int(zhp
, ZFS_PROP_ZONED
)) {
4040 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
4041 "dataset is used in a non-global zone"));
4042 return (zfs_error(hdl
, EZFS_ZONED
, errbuf
));
4046 parentname
= zfs_strdup(zhp
->zfs_hdl
, zhp
->zfs_name
);
4047 if (parentname
== NULL
) {
4051 delim
= strchr(parentname
, '@');
4053 zhrp
= zfs_open(zhp
->zfs_hdl
, parentname
, ZFS_TYPE_DATASET
);
4058 } else if (zhp
->zfs_type
!= ZFS_TYPE_SNAPSHOT
) {
4059 if ((cl
= changelist_gather(zhp
, ZFS_PROP_NAME
, 0,
4060 force_unmount
? MS_FORCE
: 0)) == NULL
)
4063 if (changelist_haszonedchild(cl
)) {
4064 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
4065 "child dataset with inherited mountpoint is used "
4066 "in a non-global zone"));
4067 (void) zfs_error(hdl
, EZFS_ZONED
, errbuf
);
4072 if ((ret
= changelist_prefix(cl
)) != 0)
4076 if (ZFS_IS_VOLUME(zhp
))
4077 zc
.zc_objset_type
= DMU_OST_ZVOL
;
4079 zc
.zc_objset_type
= DMU_OST_ZFS
;
4081 (void) strlcpy(zc
.zc_name
, zhp
->zfs_name
, sizeof (zc
.zc_name
));
4082 (void) strlcpy(zc
.zc_value
, target
, sizeof (zc
.zc_value
));
4084 zc
.zc_cookie
= recursive
;
4086 if ((ret
= zfs_ioctl(zhp
->zfs_hdl
, ZFS_IOC_RENAME
, &zc
)) != 0) {
4088 * if it was recursive, the one that actually failed will
4091 (void) snprintf(errbuf
, sizeof (errbuf
), dgettext(TEXT_DOMAIN
,
4092 "cannot rename '%s'"), zc
.zc_name
);
4094 if (recursive
&& errno
== EEXIST
) {
4095 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
4096 "a child dataset already has a snapshot "
4097 "with the new name"));
4098 (void) zfs_error(hdl
, EZFS_EXISTS
, errbuf
);
4100 (void) zfs_standard_error(zhp
->zfs_hdl
, errno
, errbuf
);
4104 * On failure, we still want to remount any filesystems that
4105 * were previously mounted, so we don't alter the system state.
4108 (void) changelist_postfix(cl
);
4111 changelist_rename(cl
, zfs_get_name(zhp
), target
);
4112 ret
= changelist_postfix(cl
);
4117 if (parentname
!= NULL
) {
4124 changelist_free(cl
);
4130 zfs_get_user_props(zfs_handle_t
*zhp
)
4132 return (zhp
->zfs_user_props
);
4136 zfs_get_recvd_props(zfs_handle_t
*zhp
)
4138 if (zhp
->zfs_recvd_props
== NULL
)
4139 if (get_recvd_props_ioctl(zhp
) != 0)
4141 return (zhp
->zfs_recvd_props
);
4145 * This function is used by 'zfs list' to determine the exact set of columns to
4146 * display, and their maximum widths. This does two main things:
4148 * - If this is a list of all properties, then expand the list to include
4149 * all native properties, and set a flag so that for each dataset we look
4150 * for new unique user properties and add them to the list.
4152 * - For non fixed-width properties, keep track of the maximum width seen
4153 * so that we can size the column appropriately. If the user has
4154 * requested received property values, we also need to compute the width
4155 * of the RECEIVED column.
4158 zfs_expand_proplist(zfs_handle_t
*zhp
, zprop_list_t
**plp
, boolean_t received
,
4161 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
4162 zprop_list_t
*entry
;
4163 zprop_list_t
**last
, **start
;
4164 nvlist_t
*userprops
, *propval
;
4167 char buf
[ZFS_MAXPROPLEN
];
4169 if (zprop_expand_list(hdl
, plp
, ZFS_TYPE_DATASET
) != 0)
4172 userprops
= zfs_get_user_props(zhp
);
4175 if (entry
->pl_all
&& nvlist_next_nvpair(userprops
, NULL
) != NULL
) {
4177 * Go through and add any user properties as necessary. We
4178 * start by incrementing our list pointer to the first
4179 * non-native property.
4182 while (*start
!= NULL
) {
4183 if ((*start
)->pl_prop
== ZPROP_INVAL
)
4185 start
= &(*start
)->pl_next
;
4189 while ((elem
= nvlist_next_nvpair(userprops
, elem
)) != NULL
) {
4191 * See if we've already found this property in our list.
4193 for (last
= start
; *last
!= NULL
;
4194 last
= &(*last
)->pl_next
) {
4195 if (strcmp((*last
)->pl_user_prop
,
4196 nvpair_name(elem
)) == 0)
4200 if (*last
== NULL
) {
4201 if ((entry
= zfs_alloc(hdl
,
4202 sizeof (zprop_list_t
))) == NULL
||
4203 ((entry
->pl_user_prop
= zfs_strdup(hdl
,
4204 nvpair_name(elem
)))) == NULL
) {
4209 entry
->pl_prop
= ZPROP_INVAL
;
4210 entry
->pl_width
= strlen(nvpair_name(elem
));
4211 entry
->pl_all
= B_TRUE
;
4218 * Now go through and check the width of any non-fixed columns
4220 for (entry
= *plp
; entry
!= NULL
; entry
= entry
->pl_next
) {
4221 if (entry
->pl_fixed
&& !literal
)
4224 if (entry
->pl_prop
!= ZPROP_INVAL
) {
4225 if (zfs_prop_get(zhp
, entry
->pl_prop
,
4226 buf
, sizeof (buf
), NULL
, NULL
, 0, literal
) == 0) {
4227 if (strlen(buf
) > entry
->pl_width
)
4228 entry
->pl_width
= strlen(buf
);
4230 if (received
&& zfs_prop_get_recvd(zhp
,
4231 zfs_prop_to_name(entry
->pl_prop
),
4232 buf
, sizeof (buf
), literal
) == 0)
4233 if (strlen(buf
) > entry
->pl_recvd_width
)
4234 entry
->pl_recvd_width
= strlen(buf
);
4236 if (nvlist_lookup_nvlist(userprops
, entry
->pl_user_prop
,
4238 verify(nvlist_lookup_string(propval
,
4239 ZPROP_VALUE
, &strval
) == 0);
4240 if (strlen(strval
) > entry
->pl_width
)
4241 entry
->pl_width
= strlen(strval
);
4243 if (received
&& zfs_prop_get_recvd(zhp
,
4244 entry
->pl_user_prop
,
4245 buf
, sizeof (buf
), literal
) == 0)
4246 if (strlen(buf
) > entry
->pl_recvd_width
)
4247 entry
->pl_recvd_width
= strlen(buf
);
4255 zfs_deleg_share_nfs(libzfs_handle_t
*hdl
, char *dataset
, char *path
,
4256 char *resource
, void *export
, void *sharetab
,
4257 int sharemax
, zfs_share_op_t operation
)
4259 zfs_cmd_t zc
= { 0 };
4262 (void) strlcpy(zc
.zc_name
, dataset
, sizeof (zc
.zc_name
));
4263 (void) strlcpy(zc
.zc_value
, path
, sizeof (zc
.zc_value
));
4265 (void) strlcpy(zc
.zc_string
, resource
, sizeof (zc
.zc_string
));
4266 zc
.zc_share
.z_sharedata
= (uint64_t)(uintptr_t)sharetab
;
4267 zc
.zc_share
.z_exportdata
= (uint64_t)(uintptr_t)export
;
4268 zc
.zc_share
.z_sharetype
= operation
;
4269 zc
.zc_share
.z_sharemax
= sharemax
;
4270 error
= ioctl(hdl
->libzfs_fd
, ZFS_IOC_SHARE
, &zc
);
4275 zfs_prune_proplist(zfs_handle_t
*zhp
, uint8_t *props
)
4280 * Keep a reference to the props-table against which we prune the
4283 zhp
->zfs_props_table
= props
;
4285 curr
= nvlist_next_nvpair(zhp
->zfs_props
, NULL
);
4288 zfs_prop_t zfs_prop
= zfs_name_to_prop(nvpair_name(curr
));
4289 nvpair_t
*next
= nvlist_next_nvpair(zhp
->zfs_props
, curr
);
4292 * User properties will result in ZPROP_INVAL, and since we
4293 * only know how to prune standard ZFS properties, we always
4294 * leave these in the list. This can also happen if we
4295 * encounter an unknown DSL property (when running older
4296 * software, for example).
4298 if (zfs_prop
!= ZPROP_INVAL
&& props
[zfs_prop
] == B_FALSE
)
4299 (void) nvlist_remove(zhp
->zfs_props
,
4300 nvpair_name(curr
), nvpair_type(curr
));
4306 zfs_smb_acl_mgmt(libzfs_handle_t
*hdl
, char *dataset
, char *path
,
4307 zfs_smb_acl_op_t cmd
, char *resource1
, char *resource2
)
4309 zfs_cmd_t zc
= { 0 };
4310 nvlist_t
*nvlist
= NULL
;
4313 (void) strlcpy(zc
.zc_name
, dataset
, sizeof (zc
.zc_name
));
4314 (void) strlcpy(zc
.zc_value
, path
, sizeof (zc
.zc_value
));
4315 zc
.zc_cookie
= (uint64_t)cmd
;
4317 if (cmd
== ZFS_SMB_ACL_RENAME
) {
4318 if (nvlist_alloc(&nvlist
, NV_UNIQUE_NAME
, 0) != 0) {
4319 (void) no_memory(hdl
);
4325 case ZFS_SMB_ACL_ADD
:
4326 case ZFS_SMB_ACL_REMOVE
:
4327 (void) strlcpy(zc
.zc_string
, resource1
, sizeof (zc
.zc_string
));
4329 case ZFS_SMB_ACL_RENAME
:
4330 if (nvlist_add_string(nvlist
, ZFS_SMB_ACL_SRC
,
4332 (void) no_memory(hdl
);
4335 if (nvlist_add_string(nvlist
, ZFS_SMB_ACL_TARGET
,
4337 (void) no_memory(hdl
);
4340 if (zcmd_write_src_nvlist(hdl
, &zc
, nvlist
) != 0) {
4341 nvlist_free(nvlist
);
4345 case ZFS_SMB_ACL_PURGE
:
4350 error
= ioctl(hdl
->libzfs_fd
, ZFS_IOC_SMB_ACL
, &zc
);
4351 nvlist_free(nvlist
);
4356 zfs_smb_acl_add(libzfs_handle_t
*hdl
, char *dataset
,
4357 char *path
, char *resource
)
4359 return (zfs_smb_acl_mgmt(hdl
, dataset
, path
, ZFS_SMB_ACL_ADD
,
4364 zfs_smb_acl_remove(libzfs_handle_t
*hdl
, char *dataset
,
4365 char *path
, char *resource
)
4367 return (zfs_smb_acl_mgmt(hdl
, dataset
, path
, ZFS_SMB_ACL_REMOVE
,
4372 zfs_smb_acl_purge(libzfs_handle_t
*hdl
, char *dataset
, char *path
)
4374 return (zfs_smb_acl_mgmt(hdl
, dataset
, path
, ZFS_SMB_ACL_PURGE
,
4379 zfs_smb_acl_rename(libzfs_handle_t
*hdl
, char *dataset
, char *path
,
4380 char *oldname
, char *newname
)
4382 return (zfs_smb_acl_mgmt(hdl
, dataset
, path
, ZFS_SMB_ACL_RENAME
,
4387 zfs_userspace(zfs_handle_t
*zhp
, zfs_userquota_prop_t type
,
4388 zfs_userspace_cb_t func
, void *arg
)
4390 zfs_cmd_t zc
= { 0 };
4391 zfs_useracct_t buf
[100];
4392 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
4395 (void) strlcpy(zc
.zc_name
, zhp
->zfs_name
, sizeof (zc
.zc_name
));
4397 zc
.zc_objset_type
= type
;
4398 zc
.zc_nvlist_dst
= (uintptr_t)buf
;
4401 zfs_useracct_t
*zua
= buf
;
4403 zc
.zc_nvlist_dst_size
= sizeof (buf
);
4404 if (zfs_ioctl(hdl
, ZFS_IOC_USERSPACE_MANY
, &zc
) != 0) {
4407 (void) snprintf(errbuf
, sizeof (errbuf
),
4408 dgettext(TEXT_DOMAIN
,
4409 "cannot get used/quota for %s"), zc
.zc_name
);
4410 return (zfs_standard_error_fmt(hdl
, errno
, errbuf
));
4412 if (zc
.zc_nvlist_dst_size
== 0)
4415 while (zc
.zc_nvlist_dst_size
> 0) {
4416 if ((ret
= func(arg
, zua
->zu_domain
, zua
->zu_rid
,
4417 zua
->zu_space
)) != 0)
4420 zc
.zc_nvlist_dst_size
-= sizeof (zfs_useracct_t
);
4429 const char *snapname
;
4431 boolean_t recursive
;
4436 zfs_hold_one(zfs_handle_t
*zhp
, void *arg
)
4438 struct holdarg
*ha
= arg
;
4439 char name
[ZFS_MAX_DATASET_NAME_LEN
];
4442 (void) snprintf(name
, sizeof (name
),
4443 "%s@%s", zhp
->zfs_name
, ha
->snapname
);
4445 if (lzc_exists(name
))
4446 fnvlist_add_string(ha
->nvl
, name
, ha
->tag
);
4449 rv
= zfs_iter_filesystems(zhp
, zfs_hold_one
, ha
);
4455 zfs_hold(zfs_handle_t
*zhp
, const char *snapname
, const char *tag
,
4456 boolean_t recursive
, int cleanup_fd
)
4461 ha
.nvl
= fnvlist_alloc();
4462 ha
.snapname
= snapname
;
4464 ha
.recursive
= recursive
;
4465 (void) zfs_hold_one(zfs_handle_dup(zhp
), &ha
);
4467 if (nvlist_empty(ha
.nvl
)) {
4470 fnvlist_free(ha
.nvl
);
4472 (void) snprintf(errbuf
, sizeof (errbuf
),
4473 dgettext(TEXT_DOMAIN
,
4474 "cannot hold snapshot '%s@%s'"),
4475 zhp
->zfs_name
, snapname
);
4476 (void) zfs_standard_error(zhp
->zfs_hdl
, ret
, errbuf
);
4480 ret
= zfs_hold_nvl(zhp
, cleanup_fd
, ha
.nvl
);
4481 fnvlist_free(ha
.nvl
);
4487 zfs_hold_nvl(zfs_handle_t
*zhp
, int cleanup_fd
, nvlist_t
*holds
)
4491 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
4496 ret
= lzc_hold(holds
, cleanup_fd
, &errors
);
4499 /* There may be errors even in the success case. */
4500 fnvlist_free(errors
);
4504 if (nvlist_empty(errors
)) {
4505 /* no hold-specific errors */
4506 (void) snprintf(errbuf
, sizeof (errbuf
),
4507 dgettext(TEXT_DOMAIN
, "cannot hold"));
4510 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
4511 "pool must be upgraded"));
4512 (void) zfs_error(hdl
, EZFS_BADVERSION
, errbuf
);
4515 (void) zfs_error(hdl
, EZFS_BADTYPE
, errbuf
);
4518 (void) zfs_standard_error(hdl
, ret
, errbuf
);
4522 for (elem
= nvlist_next_nvpair(errors
, NULL
);
4524 elem
= nvlist_next_nvpair(errors
, elem
)) {
4525 (void) snprintf(errbuf
, sizeof (errbuf
),
4526 dgettext(TEXT_DOMAIN
,
4527 "cannot hold snapshot '%s'"), nvpair_name(elem
));
4528 switch (fnvpair_value_int32(elem
)) {
4531 * Temporary tags wind up having the ds object id
4532 * prepended. So even if we passed the length check
4533 * above, it's still possible for the tag to wind
4534 * up being slightly too long.
4536 (void) zfs_error(hdl
, EZFS_TAGTOOLONG
, errbuf
);
4539 (void) zfs_error(hdl
, EZFS_BADTYPE
, errbuf
);
4542 (void) zfs_error(hdl
, EZFS_REFTAG_HOLD
, errbuf
);
4545 (void) zfs_standard_error(hdl
,
4546 fnvpair_value_int32(elem
), errbuf
);
4550 fnvlist_free(errors
);
4555 zfs_release_one(zfs_handle_t
*zhp
, void *arg
)
4557 struct holdarg
*ha
= arg
;
4558 char name
[ZFS_MAX_DATASET_NAME_LEN
];
4560 nvlist_t
*existing_holds
;
4562 (void) snprintf(name
, sizeof (name
),
4563 "%s@%s", zhp
->zfs_name
, ha
->snapname
);
4565 if (lzc_get_holds(name
, &existing_holds
) != 0) {
4567 } else if (!nvlist_exists(existing_holds
, ha
->tag
)) {
4570 nvlist_t
*torelease
= fnvlist_alloc();
4571 fnvlist_add_boolean(torelease
, ha
->tag
);
4572 fnvlist_add_nvlist(ha
->nvl
, name
, torelease
);
4573 fnvlist_free(torelease
);
4577 rv
= zfs_iter_filesystems(zhp
, zfs_release_one
, ha
);
4583 zfs_release(zfs_handle_t
*zhp
, const char *snapname
, const char *tag
,
4584 boolean_t recursive
)
4588 nvlist_t
*errors
= NULL
;
4590 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
4593 ha
.nvl
= fnvlist_alloc();
4594 ha
.snapname
= snapname
;
4596 ha
.recursive
= recursive
;
4598 (void) zfs_release_one(zfs_handle_dup(zhp
), &ha
);
4600 if (nvlist_empty(ha
.nvl
)) {
4601 fnvlist_free(ha
.nvl
);
4603 (void) snprintf(errbuf
, sizeof (errbuf
),
4604 dgettext(TEXT_DOMAIN
,
4605 "cannot release hold from snapshot '%s@%s'"),
4606 zhp
->zfs_name
, snapname
);
4608 (void) zfs_error(hdl
, EZFS_REFTAG_RELE
, errbuf
);
4610 (void) zfs_standard_error(hdl
, ret
, errbuf
);
4615 ret
= lzc_release(ha
.nvl
, &errors
);
4616 fnvlist_free(ha
.nvl
);
4619 /* There may be errors even in the success case. */
4620 fnvlist_free(errors
);
4624 if (nvlist_empty(errors
)) {
4625 /* no hold-specific errors */
4626 (void) snprintf(errbuf
, sizeof (errbuf
), dgettext(TEXT_DOMAIN
,
4630 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
4631 "pool must be upgraded"));
4632 (void) zfs_error(hdl
, EZFS_BADVERSION
, errbuf
);
4635 (void) zfs_standard_error_fmt(hdl
, errno
, errbuf
);
4639 for (elem
= nvlist_next_nvpair(errors
, NULL
);
4641 elem
= nvlist_next_nvpair(errors
, elem
)) {
4642 (void) snprintf(errbuf
, sizeof (errbuf
),
4643 dgettext(TEXT_DOMAIN
,
4644 "cannot release hold from snapshot '%s'"),
4646 switch (fnvpair_value_int32(elem
)) {
4648 (void) zfs_error(hdl
, EZFS_REFTAG_RELE
, errbuf
);
4651 (void) zfs_error(hdl
, EZFS_BADTYPE
, errbuf
);
4654 (void) zfs_standard_error_fmt(hdl
,
4655 fnvpair_value_int32(elem
), errbuf
);
4659 fnvlist_free(errors
);
4664 zfs_get_fsacl(zfs_handle_t
*zhp
, nvlist_t
**nvl
)
4666 zfs_cmd_t zc
= { 0 };
4667 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
4673 assert(zhp
->zfs_type
== ZFS_TYPE_VOLUME
||
4674 zhp
->zfs_type
== ZFS_TYPE_FILESYSTEM
);
4678 nvbuf
= malloc(nvsz
);
4679 if (nvbuf
== NULL
) {
4680 err
= (zfs_error(hdl
, EZFS_NOMEM
, strerror(errno
)));
4684 zc
.zc_nvlist_dst_size
= nvsz
;
4685 zc
.zc_nvlist_dst
= (uintptr_t)nvbuf
;
4687 (void) strlcpy(zc
.zc_name
, zhp
->zfs_name
, sizeof (zc
.zc_name
));
4689 if (ioctl(hdl
->libzfs_fd
, ZFS_IOC_GET_FSACL
, &zc
) != 0) {
4690 (void) snprintf(errbuf
, sizeof (errbuf
),
4691 dgettext(TEXT_DOMAIN
, "cannot get permissions on '%s'"),
4696 nvsz
= zc
.zc_nvlist_dst_size
;
4700 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
4701 "pool must be upgraded"));
4702 err
= zfs_error(hdl
, EZFS_BADVERSION
, errbuf
);
4705 err
= zfs_error(hdl
, EZFS_BADTYPE
, errbuf
);
4708 err
= zfs_error(hdl
, EZFS_NOENT
, errbuf
);
4711 err
= zfs_standard_error_fmt(hdl
, errno
, errbuf
);
4716 int rc
= nvlist_unpack(nvbuf
, zc
.zc_nvlist_dst_size
, nvl
, 0);
4718 (void) snprintf(errbuf
, sizeof (errbuf
), dgettext(
4719 TEXT_DOMAIN
, "cannot get permissions on '%s'"),
4721 err
= zfs_standard_error_fmt(hdl
, rc
, errbuf
);
4731 zfs_set_fsacl(zfs_handle_t
*zhp
, boolean_t un
, nvlist_t
*nvl
)
4733 zfs_cmd_t zc
= { 0 };
4734 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
4740 assert(zhp
->zfs_type
== ZFS_TYPE_VOLUME
||
4741 zhp
->zfs_type
== ZFS_TYPE_FILESYSTEM
);
4743 err
= nvlist_size(nvl
, &nvsz
, NV_ENCODE_NATIVE
);
4746 nvbuf
= malloc(nvsz
);
4748 err
= nvlist_pack(nvl
, &nvbuf
, &nvsz
, NV_ENCODE_NATIVE
, 0);
4751 zc
.zc_nvlist_src_size
= nvsz
;
4752 zc
.zc_nvlist_src
= (uintptr_t)nvbuf
;
4753 zc
.zc_perm_action
= un
;
4755 (void) strlcpy(zc
.zc_name
, zhp
->zfs_name
, sizeof (zc
.zc_name
));
4757 if (zfs_ioctl(hdl
, ZFS_IOC_SET_FSACL
, &zc
) != 0) {
4758 (void) snprintf(errbuf
, sizeof (errbuf
),
4759 dgettext(TEXT_DOMAIN
, "cannot set permissions on '%s'"),
4763 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
4764 "pool must be upgraded"));
4765 err
= zfs_error(hdl
, EZFS_BADVERSION
, errbuf
);
4768 err
= zfs_error(hdl
, EZFS_BADTYPE
, errbuf
);
4771 err
= zfs_error(hdl
, EZFS_NOENT
, errbuf
);
4774 err
= zfs_standard_error_fmt(hdl
, errno
, errbuf
);
4785 zfs_get_holds(zfs_handle_t
*zhp
, nvlist_t
**nvl
)
4790 err
= lzc_get_holds(zhp
->zfs_name
, nvl
);
4793 libzfs_handle_t
*hdl
= zhp
->zfs_hdl
;
4795 (void) snprintf(errbuf
, sizeof (errbuf
),
4796 dgettext(TEXT_DOMAIN
, "cannot get holds for '%s'"),
4800 zfs_error_aux(hdl
, dgettext(TEXT_DOMAIN
,
4801 "pool must be upgraded"));
4802 err
= zfs_error(hdl
, EZFS_BADVERSION
, errbuf
);
4805 err
= zfs_error(hdl
, EZFS_BADTYPE
, errbuf
);
4808 err
= zfs_error(hdl
, EZFS_NOENT
, errbuf
);
4811 err
= zfs_standard_error_fmt(hdl
, errno
, errbuf
);
4820 * Convert the zvol's volume size to an appropriate reservation.
4821 * Note: If this routine is updated, it is necessary to update the ZFS test
4822 * suite's shell version in reservation.kshlib.
4825 zvol_volsize_to_reservation(uint64_t volsize
, nvlist_t
*props
)
4828 uint64_t nblocks
, volblocksize
;
4832 if (nvlist_lookup_string(props
,
4833 zfs_prop_to_name(ZFS_PROP_COPIES
), &strval
) == 0)
4834 ncopies
= atoi(strval
);
4837 if (nvlist_lookup_uint64(props
,
4838 zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE
),
4839 &volblocksize
) != 0)
4840 volblocksize
= ZVOL_DEFAULT_BLOCKSIZE
;
4841 nblocks
= volsize
/volblocksize
;
4842 /* start with metadnode L0-L6 */
4844 /* calculate number of indirects */
4845 while (nblocks
> 1) {
4846 nblocks
+= DNODES_PER_LEVEL
- 1;
4847 nblocks
/= DNODES_PER_LEVEL
;
4850 numdb
*= MIN(SPA_DVAS_PER_BP
, ncopies
+ 1);
4853 * this is exactly DN_MAX_INDBLKSHIFT when metadata isn't
4854 * compressed, but in practice they compress down to about
4857 numdb
*= 1ULL << DN_MAX_INDBLKSHIFT
;