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) 2011, 2016 by Delphix. All rights reserved.
25 * Copyright (c) 2014, Joyent, Inc. All rights reserved.
26 * Copyright (c) 2014 RackTop Systems.
27 * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
28 * Copyright (c) 2014 Integros [integros.com]
29 * Copyright 2016, OmniTI Computer Consulting, Inc. All rights reserved.
30 * Copyright 2017 Nexenta Systems, Inc.
33 #include <sys/dmu_objset.h>
34 #include <sys/dsl_dataset.h>
35 #include <sys/dsl_dir.h>
36 #include <sys/dsl_prop.h>
37 #include <sys/dsl_synctask.h>
38 #include <sys/dmu_traverse.h>
39 #include <sys/dmu_impl.h>
40 #include <sys/dmu_tx.h>
44 #include <sys/zfeature.h>
45 #include <sys/unique.h>
46 #include <sys/zfs_context.h>
47 #include <sys/zfs_ioctl.h>
49 #include <sys/zfs_znode.h>
50 #include <sys/zfs_onexit.h>
52 #include <sys/dsl_scan.h>
53 #include <sys/dsl_deadlist.h>
54 #include <sys/dsl_destroy.h>
55 #include <sys/dsl_userhold.h>
56 #include <sys/dsl_bookmark.h>
57 #include <sys/dmu_send.h>
58 #include <sys/zio_checksum.h>
59 #include <sys/zio_compress.h>
60 #include <zfs_fletcher.h>
63 * The SPA supports block sizes up to 16MB. However, very large blocks
64 * can have an impact on i/o latency (e.g. tying up a spinning disk for
65 * ~300ms), and also potentially on the memory allocator. Therefore,
66 * we do not allow the recordsize to be set larger than zfs_max_recordsize
67 * (default 1MB). Larger blocks can be created by changing this tunable,
68 * and pools with larger blocks can always be imported and used, regardless
71 int zfs_max_recordsize
= 1 * 1024 * 1024;
73 #define SWITCH64(x, y) \
75 uint64_t __tmp = (x); \
80 #define DS_REF_MAX (1ULL << 62)
82 extern inline dsl_dataset_phys_t
*dsl_dataset_phys(dsl_dataset_t
*ds
);
84 extern int spa_asize_inflation
;
86 static zil_header_t zero_zil
;
89 * Figure out how much of this delta should be propogated to the dsl_dir
90 * layer. If there's a refreservation, that space has already been
91 * partially accounted for in our ancestors.
94 parent_delta(dsl_dataset_t
*ds
, int64_t delta
)
96 dsl_dataset_phys_t
*ds_phys
;
97 uint64_t old_bytes
, new_bytes
;
99 if (ds
->ds_reserved
== 0)
102 ds_phys
= dsl_dataset_phys(ds
);
103 old_bytes
= MAX(ds_phys
->ds_unique_bytes
, ds
->ds_reserved
);
104 new_bytes
= MAX(ds_phys
->ds_unique_bytes
+ delta
, ds
->ds_reserved
);
106 ASSERT3U(ABS((int64_t)(new_bytes
- old_bytes
)), <=, ABS(delta
));
107 return (new_bytes
- old_bytes
);
111 dsl_dataset_block_born(dsl_dataset_t
*ds
, const blkptr_t
*bp
, dmu_tx_t
*tx
)
113 int used
= bp_get_dsize_sync(tx
->tx_pool
->dp_spa
, bp
);
114 int compressed
= BP_GET_PSIZE(bp
);
115 int uncompressed
= BP_GET_UCSIZE(bp
);
118 dprintf_bp(bp
, "ds=%p", ds
);
120 ASSERT(dmu_tx_is_syncing(tx
));
121 /* It could have been compressed away to nothing */
124 ASSERT(BP_GET_TYPE(bp
) != DMU_OT_NONE
);
125 ASSERT(DMU_OT_IS_VALID(BP_GET_TYPE(bp
)));
127 dsl_pool_mos_diduse_space(tx
->tx_pool
,
128 used
, compressed
, uncompressed
);
132 ASSERT3U(bp
->blk_birth
, >, dsl_dataset_phys(ds
)->ds_prev_snap_txg
);
133 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
134 mutex_enter(&ds
->ds_lock
);
135 delta
= parent_delta(ds
, used
);
136 dsl_dataset_phys(ds
)->ds_referenced_bytes
+= used
;
137 dsl_dataset_phys(ds
)->ds_compressed_bytes
+= compressed
;
138 dsl_dataset_phys(ds
)->ds_uncompressed_bytes
+= uncompressed
;
139 dsl_dataset_phys(ds
)->ds_unique_bytes
+= used
;
141 if (BP_GET_LSIZE(bp
) > SPA_OLD_MAXBLOCKSIZE
) {
142 ds
->ds_feature_activation_needed
[SPA_FEATURE_LARGE_BLOCKS
] =
146 spa_feature_t f
= zio_checksum_to_feature(BP_GET_CHECKSUM(bp
));
147 if (f
!= SPA_FEATURE_NONE
)
148 ds
->ds_feature_activation_needed
[f
] = B_TRUE
;
150 mutex_exit(&ds
->ds_lock
);
151 dsl_dir_diduse_space(ds
->ds_dir
, DD_USED_HEAD
, delta
,
152 compressed
, uncompressed
, tx
);
153 dsl_dir_transfer_space(ds
->ds_dir
, used
- delta
,
154 DD_USED_REFRSRV
, DD_USED_HEAD
, tx
);
158 dsl_dataset_block_kill(dsl_dataset_t
*ds
, const blkptr_t
*bp
, dmu_tx_t
*tx
,
161 int used
= bp_get_dsize_sync(tx
->tx_pool
->dp_spa
, bp
);
162 int compressed
= BP_GET_PSIZE(bp
);
163 int uncompressed
= BP_GET_UCSIZE(bp
);
168 ASSERT(dmu_tx_is_syncing(tx
));
169 ASSERT(bp
->blk_birth
<= tx
->tx_txg
);
172 dsl_free(tx
->tx_pool
, tx
->tx_txg
, bp
);
173 dsl_pool_mos_diduse_space(tx
->tx_pool
,
174 -used
, -compressed
, -uncompressed
);
177 ASSERT3P(tx
->tx_pool
, ==, ds
->ds_dir
->dd_pool
);
179 ASSERT(!ds
->ds_is_snapshot
);
180 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
182 if (bp
->blk_birth
> dsl_dataset_phys(ds
)->ds_prev_snap_txg
) {
185 dprintf_bp(bp
, "freeing ds=%llu", ds
->ds_object
);
186 dsl_free(tx
->tx_pool
, tx
->tx_txg
, bp
);
188 mutex_enter(&ds
->ds_lock
);
189 ASSERT(dsl_dataset_phys(ds
)->ds_unique_bytes
>= used
||
190 !DS_UNIQUE_IS_ACCURATE(ds
));
191 delta
= parent_delta(ds
, -used
);
192 dsl_dataset_phys(ds
)->ds_unique_bytes
-= used
;
193 mutex_exit(&ds
->ds_lock
);
194 dsl_dir_diduse_space(ds
->ds_dir
, DD_USED_HEAD
,
195 delta
, -compressed
, -uncompressed
, tx
);
196 dsl_dir_transfer_space(ds
->ds_dir
, -used
- delta
,
197 DD_USED_REFRSRV
, DD_USED_HEAD
, tx
);
199 dprintf_bp(bp
, "putting on dead list: %s", "");
202 * We are here as part of zio's write done callback,
203 * which means we're a zio interrupt thread. We can't
204 * call dsl_deadlist_insert() now because it may block
205 * waiting for I/O. Instead, put bp on the deferred
206 * queue and let dsl_pool_sync() finish the job.
208 bplist_append(&ds
->ds_pending_deadlist
, bp
);
210 dsl_deadlist_insert(&ds
->ds_deadlist
, bp
, tx
);
212 ASSERT3U(ds
->ds_prev
->ds_object
, ==,
213 dsl_dataset_phys(ds
)->ds_prev_snap_obj
);
214 ASSERT(dsl_dataset_phys(ds
->ds_prev
)->ds_num_children
> 0);
215 /* if (bp->blk_birth > prev prev snap txg) prev unique += bs */
216 if (dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
==
217 ds
->ds_object
&& bp
->blk_birth
>
218 dsl_dataset_phys(ds
->ds_prev
)->ds_prev_snap_txg
) {
219 dmu_buf_will_dirty(ds
->ds_prev
->ds_dbuf
, tx
);
220 mutex_enter(&ds
->ds_prev
->ds_lock
);
221 dsl_dataset_phys(ds
->ds_prev
)->ds_unique_bytes
+= used
;
222 mutex_exit(&ds
->ds_prev
->ds_lock
);
224 if (bp
->blk_birth
> ds
->ds_dir
->dd_origin_txg
) {
225 dsl_dir_transfer_space(ds
->ds_dir
, used
,
226 DD_USED_HEAD
, DD_USED_SNAP
, tx
);
229 mutex_enter(&ds
->ds_lock
);
230 ASSERT3U(dsl_dataset_phys(ds
)->ds_referenced_bytes
, >=, used
);
231 dsl_dataset_phys(ds
)->ds_referenced_bytes
-= used
;
232 ASSERT3U(dsl_dataset_phys(ds
)->ds_compressed_bytes
, >=, compressed
);
233 dsl_dataset_phys(ds
)->ds_compressed_bytes
-= compressed
;
234 ASSERT3U(dsl_dataset_phys(ds
)->ds_uncompressed_bytes
, >=, uncompressed
);
235 dsl_dataset_phys(ds
)->ds_uncompressed_bytes
-= uncompressed
;
236 mutex_exit(&ds
->ds_lock
);
242 * We have to release the fsid syncronously or we risk that a subsequent
243 * mount of the same dataset will fail to unique_insert the fsid. This
244 * failure would manifest itself as the fsid of this dataset changing
245 * between mounts which makes NFS clients quite unhappy.
248 dsl_dataset_evict_sync(void *dbu
)
250 dsl_dataset_t
*ds
= dbu
;
252 ASSERT(ds
->ds_owner
== NULL
);
254 unique_remove(ds
->ds_fsid_guid
);
258 dsl_dataset_evict_async(void *dbu
)
260 dsl_dataset_t
*ds
= dbu
;
262 ASSERT(ds
->ds_owner
== NULL
);
266 if (ds
->ds_objset
!= NULL
)
267 dmu_objset_evict(ds
->ds_objset
);
270 dsl_dataset_rele(ds
->ds_prev
, ds
);
274 bplist_destroy(&ds
->ds_pending_deadlist
);
275 if (ds
->ds_deadlist
.dl_os
!= NULL
)
276 dsl_deadlist_close(&ds
->ds_deadlist
);
278 dsl_dir_async_rele(ds
->ds_dir
, ds
);
280 ASSERT(!list_link_active(&ds
->ds_synced_link
));
282 list_destroy(&ds
->ds_prop_cbs
);
283 mutex_destroy(&ds
->ds_lock
);
284 mutex_destroy(&ds
->ds_opening_lock
);
285 mutex_destroy(&ds
->ds_sendstream_lock
);
286 refcount_destroy(&ds
->ds_longholds
);
287 rrw_destroy(&ds
->ds_bp_rwlock
);
289 kmem_free(ds
, sizeof (dsl_dataset_t
));
293 dsl_dataset_get_snapname(dsl_dataset_t
*ds
)
295 dsl_dataset_phys_t
*headphys
;
298 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
299 objset_t
*mos
= dp
->dp_meta_objset
;
301 if (ds
->ds_snapname
[0])
303 if (dsl_dataset_phys(ds
)->ds_next_snap_obj
== 0)
306 err
= dmu_bonus_hold(mos
, dsl_dir_phys(ds
->ds_dir
)->dd_head_dataset_obj
,
310 headphys
= headdbuf
->db_data
;
311 err
= zap_value_search(dp
->dp_meta_objset
,
312 headphys
->ds_snapnames_zapobj
, ds
->ds_object
, 0, ds
->ds_snapname
);
313 dmu_buf_rele(headdbuf
, FTAG
);
318 dsl_dataset_snap_lookup(dsl_dataset_t
*ds
, const char *name
, uint64_t *value
)
320 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
321 uint64_t snapobj
= dsl_dataset_phys(ds
)->ds_snapnames_zapobj
;
325 if (dsl_dataset_phys(ds
)->ds_flags
& DS_FLAG_CI_DATASET
)
328 err
= zap_lookup_norm(mos
, snapobj
, name
, 8, 1,
329 value
, mt
, NULL
, 0, NULL
);
330 if (err
== ENOTSUP
&& (mt
& MT_NORMALIZE
))
331 err
= zap_lookup(mos
, snapobj
, name
, 8, 1, value
);
336 dsl_dataset_snap_remove(dsl_dataset_t
*ds
, const char *name
, dmu_tx_t
*tx
,
339 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
340 uint64_t snapobj
= dsl_dataset_phys(ds
)->ds_snapnames_zapobj
;
344 dsl_dir_snap_cmtime_update(ds
->ds_dir
);
346 if (dsl_dataset_phys(ds
)->ds_flags
& DS_FLAG_CI_DATASET
)
349 err
= zap_remove_norm(mos
, snapobj
, name
, mt
, tx
);
350 if (err
== ENOTSUP
&& (mt
& MT_NORMALIZE
))
351 err
= zap_remove(mos
, snapobj
, name
, tx
);
353 if (err
== 0 && adj_cnt
)
354 dsl_fs_ss_count_adjust(ds
->ds_dir
, -1,
355 DD_FIELD_SNAPSHOT_COUNT
, tx
);
361 dsl_dataset_try_add_ref(dsl_pool_t
*dp
, dsl_dataset_t
*ds
, void *tag
)
363 dmu_buf_t
*dbuf
= ds
->ds_dbuf
;
364 boolean_t result
= B_FALSE
;
366 if (dbuf
!= NULL
&& dmu_buf_try_add_ref(dbuf
, dp
->dp_meta_objset
,
367 ds
->ds_object
, DMU_BONUS_BLKID
, tag
)) {
369 if (ds
== dmu_buf_get_user(dbuf
))
372 dmu_buf_rele(dbuf
, tag
);
379 dsl_dataset_hold_obj(dsl_pool_t
*dp
, uint64_t dsobj
, void *tag
,
382 objset_t
*mos
= dp
->dp_meta_objset
;
386 dmu_object_info_t doi
;
388 ASSERT(dsl_pool_config_held(dp
));
390 err
= dmu_bonus_hold(mos
, dsobj
, tag
, &dbuf
);
394 /* Make sure dsobj has the correct object type. */
395 dmu_object_info_from_db(dbuf
, &doi
);
396 if (doi
.doi_bonus_type
!= DMU_OT_DSL_DATASET
) {
397 dmu_buf_rele(dbuf
, tag
);
398 return (SET_ERROR(EINVAL
));
401 ds
= dmu_buf_get_user(dbuf
);
403 dsl_dataset_t
*winner
= NULL
;
405 ds
= kmem_zalloc(sizeof (dsl_dataset_t
), KM_SLEEP
);
407 ds
->ds_object
= dsobj
;
408 ds
->ds_is_snapshot
= dsl_dataset_phys(ds
)->ds_num_children
!= 0;
410 mutex_init(&ds
->ds_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
411 mutex_init(&ds
->ds_opening_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
412 mutex_init(&ds
->ds_sendstream_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
413 rrw_init(&ds
->ds_bp_rwlock
, B_FALSE
);
414 refcount_create(&ds
->ds_longholds
);
416 bplist_create(&ds
->ds_pending_deadlist
);
417 dsl_deadlist_open(&ds
->ds_deadlist
,
418 mos
, dsl_dataset_phys(ds
)->ds_deadlist_obj
);
420 list_create(&ds
->ds_sendstreams
, sizeof (dmu_sendarg_t
),
421 offsetof(dmu_sendarg_t
, dsa_link
));
423 list_create(&ds
->ds_prop_cbs
, sizeof (dsl_prop_cb_record_t
),
424 offsetof(dsl_prop_cb_record_t
, cbr_ds_node
));
426 if (doi
.doi_type
== DMU_OTN_ZAP_METADATA
) {
427 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
428 if (!(spa_feature_table
[f
].fi_flags
&
429 ZFEATURE_FLAG_PER_DATASET
))
431 err
= zap_contains(mos
, dsobj
,
432 spa_feature_table
[f
].fi_guid
);
434 ds
->ds_feature_inuse
[f
] = B_TRUE
;
436 ASSERT3U(err
, ==, ENOENT
);
442 err
= dsl_dir_hold_obj(dp
,
443 dsl_dataset_phys(ds
)->ds_dir_obj
, NULL
, ds
, &ds
->ds_dir
);
445 mutex_destroy(&ds
->ds_lock
);
446 mutex_destroy(&ds
->ds_opening_lock
);
447 mutex_destroy(&ds
->ds_sendstream_lock
);
448 refcount_destroy(&ds
->ds_longholds
);
449 bplist_destroy(&ds
->ds_pending_deadlist
);
450 dsl_deadlist_close(&ds
->ds_deadlist
);
451 kmem_free(ds
, sizeof (dsl_dataset_t
));
452 dmu_buf_rele(dbuf
, tag
);
456 if (!ds
->ds_is_snapshot
) {
457 ds
->ds_snapname
[0] = '\0';
458 if (dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0) {
459 err
= dsl_dataset_hold_obj(dp
,
460 dsl_dataset_phys(ds
)->ds_prev_snap_obj
,
463 if (doi
.doi_type
== DMU_OTN_ZAP_METADATA
) {
464 int zaperr
= zap_lookup(mos
, ds
->ds_object
,
465 DS_FIELD_BOOKMARK_NAMES
,
466 sizeof (ds
->ds_bookmarks
), 1,
468 if (zaperr
!= ENOENT
)
472 if (zfs_flags
& ZFS_DEBUG_SNAPNAMES
)
473 err
= dsl_dataset_get_snapname(ds
);
475 dsl_dataset_phys(ds
)->ds_userrefs_obj
!= 0) {
477 ds
->ds_dir
->dd_pool
->dp_meta_objset
,
478 dsl_dataset_phys(ds
)->ds_userrefs_obj
,
483 if (err
== 0 && !ds
->ds_is_snapshot
) {
484 err
= dsl_prop_get_int_ds(ds
,
485 zfs_prop_to_name(ZFS_PROP_REFRESERVATION
),
488 err
= dsl_prop_get_int_ds(ds
,
489 zfs_prop_to_name(ZFS_PROP_REFQUOTA
),
493 ds
->ds_reserved
= ds
->ds_quota
= 0;
496 dmu_buf_init_user(&ds
->ds_dbu
, dsl_dataset_evict_sync
,
497 dsl_dataset_evict_async
, &ds
->ds_dbuf
);
499 winner
= dmu_buf_set_user_ie(dbuf
, &ds
->ds_dbu
);
501 if (err
!= 0 || winner
!= NULL
) {
502 bplist_destroy(&ds
->ds_pending_deadlist
);
503 dsl_deadlist_close(&ds
->ds_deadlist
);
505 dsl_dataset_rele(ds
->ds_prev
, ds
);
506 dsl_dir_rele(ds
->ds_dir
, ds
);
507 mutex_destroy(&ds
->ds_lock
);
508 mutex_destroy(&ds
->ds_opening_lock
);
509 mutex_destroy(&ds
->ds_sendstream_lock
);
510 refcount_destroy(&ds
->ds_longholds
);
511 kmem_free(ds
, sizeof (dsl_dataset_t
));
513 dmu_buf_rele(dbuf
, tag
);
519 unique_insert(dsl_dataset_phys(ds
)->ds_fsid_guid
);
520 if (ds
->ds_fsid_guid
!=
521 dsl_dataset_phys(ds
)->ds_fsid_guid
) {
522 zfs_dbgmsg("ds_fsid_guid changed from "
523 "%llx to %llx for pool %s dataset id %llu",
525 dsl_dataset_phys(ds
)->ds_fsid_guid
,
526 (long long)ds
->ds_fsid_guid
,
527 spa_name(dp
->dp_spa
),
532 ASSERT3P(ds
->ds_dbuf
, ==, dbuf
);
533 ASSERT3P(dsl_dataset_phys(ds
), ==, dbuf
->db_data
);
534 ASSERT(dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0 ||
535 spa_version(dp
->dp_spa
) < SPA_VERSION_ORIGIN
||
536 dp
->dp_origin_snap
== NULL
|| ds
== dp
->dp_origin_snap
);
542 dsl_dataset_hold(dsl_pool_t
*dp
, const char *name
,
543 void *tag
, dsl_dataset_t
**dsp
)
546 const char *snapname
;
551 err
= dsl_dir_hold(dp
, name
, FTAG
, &dd
, &snapname
);
555 ASSERT(dsl_pool_config_held(dp
));
556 obj
= dsl_dir_phys(dd
)->dd_head_dataset_obj
;
558 err
= dsl_dataset_hold_obj(dp
, obj
, tag
, &ds
);
560 err
= SET_ERROR(ENOENT
);
562 /* we may be looking for a snapshot */
563 if (err
== 0 && snapname
!= NULL
) {
564 dsl_dataset_t
*snap_ds
;
566 if (*snapname
++ != '@') {
567 dsl_dataset_rele(ds
, tag
);
568 dsl_dir_rele(dd
, FTAG
);
569 return (SET_ERROR(ENOENT
));
572 dprintf("looking for snapshot '%s'\n", snapname
);
573 err
= dsl_dataset_snap_lookup(ds
, snapname
, &obj
);
575 err
= dsl_dataset_hold_obj(dp
, obj
, tag
, &snap_ds
);
576 dsl_dataset_rele(ds
, tag
);
579 mutex_enter(&snap_ds
->ds_lock
);
580 if (snap_ds
->ds_snapname
[0] == 0)
581 (void) strlcpy(snap_ds
->ds_snapname
, snapname
,
582 sizeof (snap_ds
->ds_snapname
));
583 mutex_exit(&snap_ds
->ds_lock
);
589 dsl_dir_rele(dd
, FTAG
);
594 dsl_dataset_own_obj(dsl_pool_t
*dp
, uint64_t dsobj
,
595 void *tag
, dsl_dataset_t
**dsp
)
597 int err
= dsl_dataset_hold_obj(dp
, dsobj
, tag
, dsp
);
600 if (!dsl_dataset_tryown(*dsp
, tag
)) {
601 dsl_dataset_rele(*dsp
, tag
);
603 return (SET_ERROR(EBUSY
));
609 dsl_dataset_own(dsl_pool_t
*dp
, const char *name
,
610 void *tag
, dsl_dataset_t
**dsp
)
612 int err
= dsl_dataset_hold(dp
, name
, tag
, dsp
);
615 if (!dsl_dataset_tryown(*dsp
, tag
)) {
616 dsl_dataset_rele(*dsp
, tag
);
617 return (SET_ERROR(EBUSY
));
623 * See the comment above dsl_pool_hold() for details. In summary, a long
624 * hold is used to prevent destruction of a dataset while the pool hold
625 * is dropped, allowing other concurrent operations (e.g. spa_sync()).
627 * The dataset and pool must be held when this function is called. After it
628 * is called, the pool hold may be released while the dataset is still held
632 dsl_dataset_long_hold(dsl_dataset_t
*ds
, void *tag
)
634 ASSERT(dsl_pool_config_held(ds
->ds_dir
->dd_pool
));
635 (void) refcount_add(&ds
->ds_longholds
, tag
);
639 dsl_dataset_long_rele(dsl_dataset_t
*ds
, void *tag
)
641 (void) refcount_remove(&ds
->ds_longholds
, tag
);
644 /* Return B_TRUE if there are any long holds on this dataset. */
646 dsl_dataset_long_held(dsl_dataset_t
*ds
)
648 return (!refcount_is_zero(&ds
->ds_longholds
));
652 dsl_dataset_name(dsl_dataset_t
*ds
, char *name
)
655 (void) strcpy(name
, "mos");
657 dsl_dir_name(ds
->ds_dir
, name
);
658 VERIFY0(dsl_dataset_get_snapname(ds
));
659 if (ds
->ds_snapname
[0]) {
660 VERIFY3U(strlcat(name
, "@", ZFS_MAX_DATASET_NAME_LEN
),
661 <, ZFS_MAX_DATASET_NAME_LEN
);
663 * We use a "recursive" mutex so that we
664 * can call dprintf_ds() with ds_lock held.
666 if (!MUTEX_HELD(&ds
->ds_lock
)) {
667 mutex_enter(&ds
->ds_lock
);
668 VERIFY3U(strlcat(name
, ds
->ds_snapname
,
669 ZFS_MAX_DATASET_NAME_LEN
), <,
670 ZFS_MAX_DATASET_NAME_LEN
);
671 mutex_exit(&ds
->ds_lock
);
673 VERIFY3U(strlcat(name
, ds
->ds_snapname
,
674 ZFS_MAX_DATASET_NAME_LEN
), <,
675 ZFS_MAX_DATASET_NAME_LEN
);
682 dsl_dataset_namelen(dsl_dataset_t
*ds
)
684 VERIFY0(dsl_dataset_get_snapname(ds
));
685 mutex_enter(&ds
->ds_lock
);
686 int len
= dsl_dir_namelen(ds
->ds_dir
) + 1 + strlen(ds
->ds_snapname
);
687 mutex_exit(&ds
->ds_lock
);
692 dsl_dataset_rele(dsl_dataset_t
*ds
, void *tag
)
694 dmu_buf_rele(ds
->ds_dbuf
, tag
);
698 dsl_dataset_disown(dsl_dataset_t
*ds
, void *tag
)
700 ASSERT3P(ds
->ds_owner
, ==, tag
);
701 ASSERT(ds
->ds_dbuf
!= NULL
);
703 mutex_enter(&ds
->ds_lock
);
705 mutex_exit(&ds
->ds_lock
);
706 dsl_dataset_long_rele(ds
, tag
);
707 dsl_dataset_rele(ds
, tag
);
711 dsl_dataset_tryown(dsl_dataset_t
*ds
, void *tag
)
713 boolean_t gotit
= FALSE
;
715 ASSERT(dsl_pool_config_held(ds
->ds_dir
->dd_pool
));
716 mutex_enter(&ds
->ds_lock
);
717 if (ds
->ds_owner
== NULL
&& !DS_IS_INCONSISTENT(ds
)) {
719 dsl_dataset_long_hold(ds
, tag
);
722 mutex_exit(&ds
->ds_lock
);
727 dsl_dataset_has_owner(dsl_dataset_t
*ds
)
730 mutex_enter(&ds
->ds_lock
);
731 rv
= (ds
->ds_owner
!= NULL
);
732 mutex_exit(&ds
->ds_lock
);
737 dsl_dataset_activate_feature(uint64_t dsobj
, spa_feature_t f
, dmu_tx_t
*tx
)
739 spa_t
*spa
= dmu_tx_pool(tx
)->dp_spa
;
740 objset_t
*mos
= dmu_tx_pool(tx
)->dp_meta_objset
;
743 VERIFY(spa_feature_table
[f
].fi_flags
& ZFEATURE_FLAG_PER_DATASET
);
745 spa_feature_incr(spa
, f
, tx
);
746 dmu_object_zapify(mos
, dsobj
, DMU_OT_DSL_DATASET
, tx
);
748 VERIFY0(zap_add(mos
, dsobj
, spa_feature_table
[f
].fi_guid
,
749 sizeof (zero
), 1, &zero
, tx
));
753 dsl_dataset_deactivate_feature(uint64_t dsobj
, spa_feature_t f
, dmu_tx_t
*tx
)
755 spa_t
*spa
= dmu_tx_pool(tx
)->dp_spa
;
756 objset_t
*mos
= dmu_tx_pool(tx
)->dp_meta_objset
;
758 VERIFY(spa_feature_table
[f
].fi_flags
& ZFEATURE_FLAG_PER_DATASET
);
760 VERIFY0(zap_remove(mos
, dsobj
, spa_feature_table
[f
].fi_guid
, tx
));
761 spa_feature_decr(spa
, f
, tx
);
765 dsl_dataset_create_sync_dd(dsl_dir_t
*dd
, dsl_dataset_t
*origin
,
766 uint64_t flags
, dmu_tx_t
*tx
)
768 dsl_pool_t
*dp
= dd
->dd_pool
;
770 dsl_dataset_phys_t
*dsphys
;
772 objset_t
*mos
= dp
->dp_meta_objset
;
775 origin
= dp
->dp_origin_snap
;
777 ASSERT(origin
== NULL
|| origin
->ds_dir
->dd_pool
== dp
);
778 ASSERT(origin
== NULL
|| dsl_dataset_phys(origin
)->ds_num_children
> 0);
779 ASSERT(dmu_tx_is_syncing(tx
));
780 ASSERT(dsl_dir_phys(dd
)->dd_head_dataset_obj
== 0);
782 dsobj
= dmu_object_alloc(mos
, DMU_OT_DSL_DATASET
, 0,
783 DMU_OT_DSL_DATASET
, sizeof (dsl_dataset_phys_t
), tx
);
784 VERIFY0(dmu_bonus_hold(mos
, dsobj
, FTAG
, &dbuf
));
785 dmu_buf_will_dirty(dbuf
, tx
);
786 dsphys
= dbuf
->db_data
;
787 bzero(dsphys
, sizeof (dsl_dataset_phys_t
));
788 dsphys
->ds_dir_obj
= dd
->dd_object
;
789 dsphys
->ds_flags
= flags
;
790 dsphys
->ds_fsid_guid
= unique_create();
791 (void) random_get_pseudo_bytes((void*)&dsphys
->ds_guid
,
792 sizeof (dsphys
->ds_guid
));
793 dsphys
->ds_snapnames_zapobj
=
794 zap_create_norm(mos
, U8_TEXTPREP_TOUPPER
, DMU_OT_DSL_DS_SNAP_MAP
,
796 dsphys
->ds_creation_time
= gethrestime_sec();
797 dsphys
->ds_creation_txg
= tx
->tx_txg
== TXG_INITIAL
? 1 : tx
->tx_txg
;
799 if (origin
== NULL
) {
800 dsphys
->ds_deadlist_obj
= dsl_deadlist_alloc(mos
, tx
);
802 dsl_dataset_t
*ohds
; /* head of the origin snapshot */
804 dsphys
->ds_prev_snap_obj
= origin
->ds_object
;
805 dsphys
->ds_prev_snap_txg
=
806 dsl_dataset_phys(origin
)->ds_creation_txg
;
807 dsphys
->ds_referenced_bytes
=
808 dsl_dataset_phys(origin
)->ds_referenced_bytes
;
809 dsphys
->ds_compressed_bytes
=
810 dsl_dataset_phys(origin
)->ds_compressed_bytes
;
811 dsphys
->ds_uncompressed_bytes
=
812 dsl_dataset_phys(origin
)->ds_uncompressed_bytes
;
813 rrw_enter(&origin
->ds_bp_rwlock
, RW_READER
, FTAG
);
814 dsphys
->ds_bp
= dsl_dataset_phys(origin
)->ds_bp
;
815 rrw_exit(&origin
->ds_bp_rwlock
, FTAG
);
818 * Inherit flags that describe the dataset's contents
819 * (INCONSISTENT) or properties (Case Insensitive).
821 dsphys
->ds_flags
|= dsl_dataset_phys(origin
)->ds_flags
&
822 (DS_FLAG_INCONSISTENT
| DS_FLAG_CI_DATASET
);
824 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
825 if (origin
->ds_feature_inuse
[f
])
826 dsl_dataset_activate_feature(dsobj
, f
, tx
);
829 dmu_buf_will_dirty(origin
->ds_dbuf
, tx
);
830 dsl_dataset_phys(origin
)->ds_num_children
++;
832 VERIFY0(dsl_dataset_hold_obj(dp
,
833 dsl_dir_phys(origin
->ds_dir
)->dd_head_dataset_obj
,
835 dsphys
->ds_deadlist_obj
= dsl_deadlist_clone(&ohds
->ds_deadlist
,
836 dsphys
->ds_prev_snap_txg
, dsphys
->ds_prev_snap_obj
, tx
);
837 dsl_dataset_rele(ohds
, FTAG
);
839 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_NEXT_CLONES
) {
840 if (dsl_dataset_phys(origin
)->ds_next_clones_obj
== 0) {
841 dsl_dataset_phys(origin
)->ds_next_clones_obj
=
843 DMU_OT_NEXT_CLONES
, DMU_OT_NONE
, 0, tx
);
845 VERIFY0(zap_add_int(mos
,
846 dsl_dataset_phys(origin
)->ds_next_clones_obj
,
850 dmu_buf_will_dirty(dd
->dd_dbuf
, tx
);
851 dsl_dir_phys(dd
)->dd_origin_obj
= origin
->ds_object
;
852 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_DIR_CLONES
) {
853 if (dsl_dir_phys(origin
->ds_dir
)->dd_clones
== 0) {
854 dmu_buf_will_dirty(origin
->ds_dir
->dd_dbuf
, tx
);
855 dsl_dir_phys(origin
->ds_dir
)->dd_clones
=
857 DMU_OT_DSL_CLONES
, DMU_OT_NONE
, 0, tx
);
859 VERIFY0(zap_add_int(mos
,
860 dsl_dir_phys(origin
->ds_dir
)->dd_clones
,
865 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_UNIQUE_ACCURATE
)
866 dsphys
->ds_flags
|= DS_FLAG_UNIQUE_ACCURATE
;
868 dmu_buf_rele(dbuf
, FTAG
);
870 dmu_buf_will_dirty(dd
->dd_dbuf
, tx
);
871 dsl_dir_phys(dd
)->dd_head_dataset_obj
= dsobj
;
877 dsl_dataset_zero_zil(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
881 VERIFY0(dmu_objset_from_ds(ds
, &os
));
882 if (bcmp(&os
->os_zil_header
, &zero_zil
, sizeof (zero_zil
)) != 0) {
883 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
886 bzero(&os
->os_zil_header
, sizeof (os
->os_zil_header
));
888 zio
= zio_root(dp
->dp_spa
, NULL
, NULL
, ZIO_FLAG_MUSTSUCCEED
);
889 dsl_dataset_sync(ds
, zio
, tx
);
890 VERIFY0(zio_wait(zio
));
892 /* dsl_dataset_sync_done will drop this reference. */
893 dmu_buf_add_ref(ds
->ds_dbuf
, ds
);
894 dsl_dataset_sync_done(ds
, tx
);
899 dsl_dataset_create_sync(dsl_dir_t
*pdd
, const char *lastname
,
900 dsl_dataset_t
*origin
, uint64_t flags
, cred_t
*cr
, dmu_tx_t
*tx
)
902 dsl_pool_t
*dp
= pdd
->dd_pool
;
903 uint64_t dsobj
, ddobj
;
906 ASSERT(dmu_tx_is_syncing(tx
));
907 ASSERT(lastname
[0] != '@');
909 ddobj
= dsl_dir_create_sync(dp
, pdd
, lastname
, tx
);
910 VERIFY0(dsl_dir_hold_obj(dp
, ddobj
, lastname
, FTAG
, &dd
));
912 dsobj
= dsl_dataset_create_sync_dd(dd
, origin
,
913 flags
& ~DS_CREATE_FLAG_NODIRTY
, tx
);
915 dsl_deleg_set_create_perms(dd
, tx
, cr
);
918 * Since we're creating a new node we know it's a leaf, so we can
919 * initialize the counts if the limit feature is active.
921 if (spa_feature_is_active(dp
->dp_spa
, SPA_FEATURE_FS_SS_LIMIT
)) {
923 objset_t
*os
= dd
->dd_pool
->dp_meta_objset
;
925 dsl_dir_zapify(dd
, tx
);
926 VERIFY0(zap_add(os
, dd
->dd_object
, DD_FIELD_FILESYSTEM_COUNT
,
927 sizeof (cnt
), 1, &cnt
, tx
));
928 VERIFY0(zap_add(os
, dd
->dd_object
, DD_FIELD_SNAPSHOT_COUNT
,
929 sizeof (cnt
), 1, &cnt
, tx
));
932 dsl_dir_rele(dd
, FTAG
);
935 * If we are creating a clone, make sure we zero out any stale
936 * data from the origin snapshots zil header.
938 if (origin
!= NULL
&& !(flags
& DS_CREATE_FLAG_NODIRTY
)) {
941 VERIFY0(dsl_dataset_hold_obj(dp
, dsobj
, FTAG
, &ds
));
942 dsl_dataset_zero_zil(ds
, tx
);
943 dsl_dataset_rele(ds
, FTAG
);
950 * The unique space in the head dataset can be calculated by subtracting
951 * the space used in the most recent snapshot, that is still being used
952 * in this file system, from the space currently in use. To figure out
953 * the space in the most recent snapshot still in use, we need to take
954 * the total space used in the snapshot and subtract out the space that
955 * has been freed up since the snapshot was taken.
958 dsl_dataset_recalc_head_uniq(dsl_dataset_t
*ds
)
961 uint64_t dlused
, dlcomp
, dluncomp
;
963 ASSERT(!ds
->ds_is_snapshot
);
965 if (dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0)
966 mrs_used
= dsl_dataset_phys(ds
->ds_prev
)->ds_referenced_bytes
;
970 dsl_deadlist_space(&ds
->ds_deadlist
, &dlused
, &dlcomp
, &dluncomp
);
972 ASSERT3U(dlused
, <=, mrs_used
);
973 dsl_dataset_phys(ds
)->ds_unique_bytes
=
974 dsl_dataset_phys(ds
)->ds_referenced_bytes
- (mrs_used
- dlused
);
976 if (spa_version(ds
->ds_dir
->dd_pool
->dp_spa
) >=
977 SPA_VERSION_UNIQUE_ACCURATE
)
978 dsl_dataset_phys(ds
)->ds_flags
|= DS_FLAG_UNIQUE_ACCURATE
;
982 dsl_dataset_remove_from_next_clones(dsl_dataset_t
*ds
, uint64_t obj
,
985 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
989 ASSERT(dsl_dataset_phys(ds
)->ds_num_children
>= 2);
990 err
= zap_remove_int(mos
, dsl_dataset_phys(ds
)->ds_next_clones_obj
,
993 * The err should not be ENOENT, but a bug in a previous version
994 * of the code could cause upgrade_clones_cb() to not set
995 * ds_next_snap_obj when it should, leading to a missing entry.
996 * If we knew that the pool was created after
997 * SPA_VERSION_NEXT_CLONES, we could assert that it isn't
998 * ENOENT. However, at least we can check that we don't have
999 * too many entries in the next_clones_obj even after failing to
1004 ASSERT0(zap_count(mos
, dsl_dataset_phys(ds
)->ds_next_clones_obj
,
1006 ASSERT3U(count
, <=, dsl_dataset_phys(ds
)->ds_num_children
- 2);
1011 dsl_dataset_get_blkptr(dsl_dataset_t
*ds
)
1013 return (&dsl_dataset_phys(ds
)->ds_bp
);
1017 dsl_dataset_get_spa(dsl_dataset_t
*ds
)
1019 return (ds
->ds_dir
->dd_pool
->dp_spa
);
1023 dsl_dataset_dirty(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
1027 if (ds
== NULL
) /* this is the meta-objset */
1030 ASSERT(ds
->ds_objset
!= NULL
);
1032 if (dsl_dataset_phys(ds
)->ds_next_snap_obj
!= 0)
1033 panic("dirtying snapshot!");
1035 /* Must not dirty a dataset in the same txg where it got snapshotted. */
1036 ASSERT3U(tx
->tx_txg
, >, dsl_dataset_phys(ds
)->ds_prev_snap_txg
);
1038 dp
= ds
->ds_dir
->dd_pool
;
1039 if (txg_list_add(&dp
->dp_dirty_datasets
, ds
, tx
->tx_txg
)) {
1040 /* up the hold count until we can be written out */
1041 dmu_buf_add_ref(ds
->ds_dbuf
, ds
);
1046 dsl_dataset_is_dirty(dsl_dataset_t
*ds
)
1048 for (int t
= 0; t
< TXG_SIZE
; t
++) {
1049 if (txg_list_member(&ds
->ds_dir
->dd_pool
->dp_dirty_datasets
,
1057 dsl_dataset_snapshot_reserve_space(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
1061 if (!dmu_tx_is_syncing(tx
))
1065 * If there's an fs-only reservation, any blocks that might become
1066 * owned by the snapshot dataset must be accommodated by space
1067 * outside of the reservation.
1069 ASSERT(ds
->ds_reserved
== 0 || DS_UNIQUE_IS_ACCURATE(ds
));
1070 asize
= MIN(dsl_dataset_phys(ds
)->ds_unique_bytes
, ds
->ds_reserved
);
1071 if (asize
> dsl_dir_space_available(ds
->ds_dir
, NULL
, 0, TRUE
))
1072 return (SET_ERROR(ENOSPC
));
1075 * Propagate any reserved space for this snapshot to other
1076 * snapshot checks in this sync group.
1079 dsl_dir_willuse_space(ds
->ds_dir
, asize
, tx
);
1084 typedef struct dsl_dataset_snapshot_arg
{
1085 nvlist_t
*ddsa_snaps
;
1086 nvlist_t
*ddsa_props
;
1087 nvlist_t
*ddsa_errors
;
1089 } dsl_dataset_snapshot_arg_t
;
1092 dsl_dataset_snapshot_check_impl(dsl_dataset_t
*ds
, const char *snapname
,
1093 dmu_tx_t
*tx
, boolean_t recv
, uint64_t cnt
, cred_t
*cr
)
1098 ds
->ds_trysnap_txg
= tx
->tx_txg
;
1100 if (!dmu_tx_is_syncing(tx
))
1104 * We don't allow multiple snapshots of the same txg. If there
1105 * is already one, try again.
1107 if (dsl_dataset_phys(ds
)->ds_prev_snap_txg
>= tx
->tx_txg
)
1108 return (SET_ERROR(EAGAIN
));
1111 * Check for conflicting snapshot name.
1113 error
= dsl_dataset_snap_lookup(ds
, snapname
, &value
);
1115 return (SET_ERROR(EEXIST
));
1116 if (error
!= ENOENT
)
1120 * We don't allow taking snapshots of inconsistent datasets, such as
1121 * those into which we are currently receiving. However, if we are
1122 * creating this snapshot as part of a receive, this check will be
1123 * executed atomically with respect to the completion of the receive
1124 * itself but prior to the clearing of DS_FLAG_INCONSISTENT; in this
1125 * case we ignore this, knowing it will be fixed up for us shortly in
1126 * dmu_recv_end_sync().
1128 if (!recv
&& DS_IS_INCONSISTENT(ds
))
1129 return (SET_ERROR(EBUSY
));
1132 * Skip the check for temporary snapshots or if we have already checked
1133 * the counts in dsl_dataset_snapshot_check. This means we really only
1134 * check the count here when we're receiving a stream.
1136 if (cnt
!= 0 && cr
!= NULL
) {
1137 error
= dsl_fs_ss_limit_check(ds
->ds_dir
, cnt
,
1138 ZFS_PROP_SNAPSHOT_LIMIT
, NULL
, cr
);
1143 error
= dsl_dataset_snapshot_reserve_space(ds
, tx
);
1151 dsl_dataset_snapshot_check(void *arg
, dmu_tx_t
*tx
)
1153 dsl_dataset_snapshot_arg_t
*ddsa
= arg
;
1154 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
1159 * Pre-compute how many total new snapshots will be created for each
1160 * level in the tree and below. This is needed for validating the
1161 * snapshot limit when either taking a recursive snapshot or when
1162 * taking multiple snapshots.
1164 * The problem is that the counts are not actually adjusted when
1165 * we are checking, only when we finally sync. For a single snapshot,
1166 * this is easy, the count will increase by 1 at each node up the tree,
1167 * but its more complicated for the recursive/multiple snapshot case.
1169 * The dsl_fs_ss_limit_check function does recursively check the count
1170 * at each level up the tree but since it is validating each snapshot
1171 * independently we need to be sure that we are validating the complete
1172 * count for the entire set of snapshots. We do this by rolling up the
1173 * counts for each component of the name into an nvlist and then
1174 * checking each of those cases with the aggregated count.
1176 * This approach properly handles not only the recursive snapshot
1177 * case (where we get all of those on the ddsa_snaps list) but also
1178 * the sibling case (e.g. snapshot a/b and a/c so that we will also
1179 * validate the limit on 'a' using a count of 2).
1181 * We validate the snapshot names in the third loop and only report
1184 if (dmu_tx_is_syncing(tx
)) {
1185 nvlist_t
*cnt_track
= NULL
;
1186 cnt_track
= fnvlist_alloc();
1188 /* Rollup aggregated counts into the cnt_track list */
1189 for (pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, NULL
);
1191 pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, pair
)) {
1194 char nm
[MAXPATHLEN
];
1196 (void) strlcpy(nm
, nvpair_name(pair
), sizeof (nm
));
1197 pdelim
= strchr(nm
, '@');
1203 if (nvlist_lookup_uint64(cnt_track
, nm
,
1205 /* update existing entry */
1206 fnvlist_add_uint64(cnt_track
, nm
,
1210 fnvlist_add_uint64(cnt_track
, nm
, 1);
1213 pdelim
= strrchr(nm
, '/');
1216 } while (pdelim
!= NULL
);
1219 /* Check aggregated counts at each level */
1220 for (pair
= nvlist_next_nvpair(cnt_track
, NULL
);
1221 pair
!= NULL
; pair
= nvlist_next_nvpair(cnt_track
, pair
)) {
1227 name
= nvpair_name(pair
);
1228 cnt
= fnvpair_value_uint64(pair
);
1231 error
= dsl_dataset_hold(dp
, name
, FTAG
, &ds
);
1233 error
= dsl_fs_ss_limit_check(ds
->ds_dir
, cnt
,
1234 ZFS_PROP_SNAPSHOT_LIMIT
, NULL
,
1236 dsl_dataset_rele(ds
, FTAG
);
1240 if (ddsa
->ddsa_errors
!= NULL
)
1241 fnvlist_add_int32(ddsa
->ddsa_errors
,
1244 /* only report one error for this check */
1248 nvlist_free(cnt_track
);
1251 for (pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, NULL
);
1252 pair
!= NULL
; pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, pair
)) {
1256 char dsname
[ZFS_MAX_DATASET_NAME_LEN
];
1258 name
= nvpair_name(pair
);
1259 if (strlen(name
) >= ZFS_MAX_DATASET_NAME_LEN
)
1260 error
= SET_ERROR(ENAMETOOLONG
);
1262 atp
= strchr(name
, '@');
1264 error
= SET_ERROR(EINVAL
);
1266 (void) strlcpy(dsname
, name
, atp
- name
+ 1);
1269 error
= dsl_dataset_hold(dp
, dsname
, FTAG
, &ds
);
1271 /* passing 0/NULL skips dsl_fs_ss_limit_check */
1272 error
= dsl_dataset_snapshot_check_impl(ds
,
1273 atp
+ 1, tx
, B_FALSE
, 0, NULL
);
1274 dsl_dataset_rele(ds
, FTAG
);
1278 if (ddsa
->ddsa_errors
!= NULL
) {
1279 fnvlist_add_int32(ddsa
->ddsa_errors
,
1290 dsl_dataset_snapshot_sync_impl(dsl_dataset_t
*ds
, const char *snapname
,
1293 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
1295 dsl_dataset_phys_t
*dsphys
;
1296 uint64_t dsobj
, crtxg
;
1297 objset_t
*mos
= dp
->dp_meta_objset
;
1300 ASSERT(RRW_WRITE_HELD(&dp
->dp_config_rwlock
));
1303 * If we are on an old pool, the zil must not be active, in which
1304 * case it will be zeroed. Usually zil_suspend() accomplishes this.
1306 ASSERT(spa_version(dmu_tx_pool(tx
)->dp_spa
) >= SPA_VERSION_FAST_SNAP
||
1307 dmu_objset_from_ds(ds
, &os
) != 0 ||
1308 bcmp(&os
->os_phys
->os_zil_header
, &zero_zil
,
1309 sizeof (zero_zil
)) == 0);
1311 /* Should not snapshot a dirty dataset. */
1312 ASSERT(!txg_list_member(&ds
->ds_dir
->dd_pool
->dp_dirty_datasets
,
1315 dsl_fs_ss_count_adjust(ds
->ds_dir
, 1, DD_FIELD_SNAPSHOT_COUNT
, tx
);
1318 * The origin's ds_creation_txg has to be < TXG_INITIAL
1320 if (strcmp(snapname
, ORIGIN_DIR_NAME
) == 0)
1325 dsobj
= dmu_object_alloc(mos
, DMU_OT_DSL_DATASET
, 0,
1326 DMU_OT_DSL_DATASET
, sizeof (dsl_dataset_phys_t
), tx
);
1327 VERIFY0(dmu_bonus_hold(mos
, dsobj
, FTAG
, &dbuf
));
1328 dmu_buf_will_dirty(dbuf
, tx
);
1329 dsphys
= dbuf
->db_data
;
1330 bzero(dsphys
, sizeof (dsl_dataset_phys_t
));
1331 dsphys
->ds_dir_obj
= ds
->ds_dir
->dd_object
;
1332 dsphys
->ds_fsid_guid
= unique_create();
1333 (void) random_get_pseudo_bytes((void*)&dsphys
->ds_guid
,
1334 sizeof (dsphys
->ds_guid
));
1335 dsphys
->ds_prev_snap_obj
= dsl_dataset_phys(ds
)->ds_prev_snap_obj
;
1336 dsphys
->ds_prev_snap_txg
= dsl_dataset_phys(ds
)->ds_prev_snap_txg
;
1337 dsphys
->ds_next_snap_obj
= ds
->ds_object
;
1338 dsphys
->ds_num_children
= 1;
1339 dsphys
->ds_creation_time
= gethrestime_sec();
1340 dsphys
->ds_creation_txg
= crtxg
;
1341 dsphys
->ds_deadlist_obj
= dsl_dataset_phys(ds
)->ds_deadlist_obj
;
1342 dsphys
->ds_referenced_bytes
= dsl_dataset_phys(ds
)->ds_referenced_bytes
;
1343 dsphys
->ds_compressed_bytes
= dsl_dataset_phys(ds
)->ds_compressed_bytes
;
1344 dsphys
->ds_uncompressed_bytes
=
1345 dsl_dataset_phys(ds
)->ds_uncompressed_bytes
;
1346 dsphys
->ds_flags
= dsl_dataset_phys(ds
)->ds_flags
;
1347 rrw_enter(&ds
->ds_bp_rwlock
, RW_READER
, FTAG
);
1348 dsphys
->ds_bp
= dsl_dataset_phys(ds
)->ds_bp
;
1349 rrw_exit(&ds
->ds_bp_rwlock
, FTAG
);
1350 dmu_buf_rele(dbuf
, FTAG
);
1352 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
1353 if (ds
->ds_feature_inuse
[f
])
1354 dsl_dataset_activate_feature(dsobj
, f
, tx
);
1357 ASSERT3U(ds
->ds_prev
!= 0, ==,
1358 dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0);
1360 uint64_t next_clones_obj
=
1361 dsl_dataset_phys(ds
->ds_prev
)->ds_next_clones_obj
;
1362 ASSERT(dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
==
1364 dsl_dataset_phys(ds
->ds_prev
)->ds_num_children
> 1);
1365 if (dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
==
1367 dmu_buf_will_dirty(ds
->ds_prev
->ds_dbuf
, tx
);
1368 ASSERT3U(dsl_dataset_phys(ds
)->ds_prev_snap_txg
, ==,
1369 dsl_dataset_phys(ds
->ds_prev
)->ds_creation_txg
);
1370 dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
= dsobj
;
1371 } else if (next_clones_obj
!= 0) {
1372 dsl_dataset_remove_from_next_clones(ds
->ds_prev
,
1373 dsphys
->ds_next_snap_obj
, tx
);
1374 VERIFY0(zap_add_int(mos
,
1375 next_clones_obj
, dsobj
, tx
));
1380 * If we have a reference-reservation on this dataset, we will
1381 * need to increase the amount of refreservation being charged
1382 * since our unique space is going to zero.
1384 if (ds
->ds_reserved
) {
1386 ASSERT(DS_UNIQUE_IS_ACCURATE(ds
));
1387 delta
= MIN(dsl_dataset_phys(ds
)->ds_unique_bytes
,
1389 dsl_dir_diduse_space(ds
->ds_dir
, DD_USED_REFRSRV
,
1393 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
1394 dsl_dataset_phys(ds
)->ds_deadlist_obj
=
1395 dsl_deadlist_clone(&ds
->ds_deadlist
, UINT64_MAX
,
1396 dsl_dataset_phys(ds
)->ds_prev_snap_obj
, tx
);
1397 dsl_deadlist_close(&ds
->ds_deadlist
);
1398 dsl_deadlist_open(&ds
->ds_deadlist
, mos
,
1399 dsl_dataset_phys(ds
)->ds_deadlist_obj
);
1400 dsl_deadlist_add_key(&ds
->ds_deadlist
,
1401 dsl_dataset_phys(ds
)->ds_prev_snap_txg
, tx
);
1403 ASSERT3U(dsl_dataset_phys(ds
)->ds_prev_snap_txg
, <, tx
->tx_txg
);
1404 dsl_dataset_phys(ds
)->ds_prev_snap_obj
= dsobj
;
1405 dsl_dataset_phys(ds
)->ds_prev_snap_txg
= crtxg
;
1406 dsl_dataset_phys(ds
)->ds_unique_bytes
= 0;
1407 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_UNIQUE_ACCURATE
)
1408 dsl_dataset_phys(ds
)->ds_flags
|= DS_FLAG_UNIQUE_ACCURATE
;
1410 VERIFY0(zap_add(mos
, dsl_dataset_phys(ds
)->ds_snapnames_zapobj
,
1411 snapname
, 8, 1, &dsobj
, tx
));
1414 dsl_dataset_rele(ds
->ds_prev
, ds
);
1415 VERIFY0(dsl_dataset_hold_obj(dp
,
1416 dsl_dataset_phys(ds
)->ds_prev_snap_obj
, ds
, &ds
->ds_prev
));
1418 dsl_scan_ds_snapshotted(ds
, tx
);
1420 dsl_dir_snap_cmtime_update(ds
->ds_dir
);
1422 spa_history_log_internal_ds(ds
->ds_prev
, "snapshot", tx
, "");
1426 dsl_dataset_snapshot_sync(void *arg
, dmu_tx_t
*tx
)
1428 dsl_dataset_snapshot_arg_t
*ddsa
= arg
;
1429 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
1432 for (pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, NULL
);
1433 pair
!= NULL
; pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, pair
)) {
1436 char dsname
[ZFS_MAX_DATASET_NAME_LEN
];
1438 name
= nvpair_name(pair
);
1439 atp
= strchr(name
, '@');
1440 (void) strlcpy(dsname
, name
, atp
- name
+ 1);
1441 VERIFY0(dsl_dataset_hold(dp
, dsname
, FTAG
, &ds
));
1443 dsl_dataset_snapshot_sync_impl(ds
, atp
+ 1, tx
);
1444 if (ddsa
->ddsa_props
!= NULL
) {
1445 dsl_props_set_sync_impl(ds
->ds_prev
,
1446 ZPROP_SRC_LOCAL
, ddsa
->ddsa_props
, tx
);
1448 dsl_dataset_rele(ds
, FTAG
);
1453 * The snapshots must all be in the same pool.
1454 * All-or-nothing: if there are any failures, nothing will be modified.
1457 dsl_dataset_snapshot(nvlist_t
*snaps
, nvlist_t
*props
, nvlist_t
*errors
)
1459 dsl_dataset_snapshot_arg_t ddsa
;
1461 boolean_t needsuspend
;
1465 nvlist_t
*suspended
= NULL
;
1467 pair
= nvlist_next_nvpair(snaps
, NULL
);
1470 firstname
= nvpair_name(pair
);
1472 error
= spa_open(firstname
, &spa
, FTAG
);
1475 needsuspend
= (spa_version(spa
) < SPA_VERSION_FAST_SNAP
);
1476 spa_close(spa
, FTAG
);
1479 suspended
= fnvlist_alloc();
1480 for (pair
= nvlist_next_nvpair(snaps
, NULL
); pair
!= NULL
;
1481 pair
= nvlist_next_nvpair(snaps
, pair
)) {
1482 char fsname
[ZFS_MAX_DATASET_NAME_LEN
];
1483 char *snapname
= nvpair_name(pair
);
1487 atp
= strchr(snapname
, '@');
1489 error
= SET_ERROR(EINVAL
);
1492 (void) strlcpy(fsname
, snapname
, atp
- snapname
+ 1);
1494 error
= zil_suspend(fsname
, &cookie
);
1497 fnvlist_add_uint64(suspended
, fsname
,
1502 ddsa
.ddsa_snaps
= snaps
;
1503 ddsa
.ddsa_props
= props
;
1504 ddsa
.ddsa_errors
= errors
;
1505 ddsa
.ddsa_cr
= CRED();
1508 error
= dsl_sync_task(firstname
, dsl_dataset_snapshot_check
,
1509 dsl_dataset_snapshot_sync
, &ddsa
,
1510 fnvlist_num_pairs(snaps
) * 3, ZFS_SPACE_CHECK_NORMAL
);
1513 if (suspended
!= NULL
) {
1514 for (pair
= nvlist_next_nvpair(suspended
, NULL
); pair
!= NULL
;
1515 pair
= nvlist_next_nvpair(suspended
, pair
)) {
1516 zil_resume((void *)(uintptr_t)
1517 fnvpair_value_uint64(pair
));
1519 fnvlist_free(suspended
);
1525 typedef struct dsl_dataset_snapshot_tmp_arg
{
1526 const char *ddsta_fsname
;
1527 const char *ddsta_snapname
;
1528 minor_t ddsta_cleanup_minor
;
1529 const char *ddsta_htag
;
1530 } dsl_dataset_snapshot_tmp_arg_t
;
1533 dsl_dataset_snapshot_tmp_check(void *arg
, dmu_tx_t
*tx
)
1535 dsl_dataset_snapshot_tmp_arg_t
*ddsta
= arg
;
1536 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
1540 error
= dsl_dataset_hold(dp
, ddsta
->ddsta_fsname
, FTAG
, &ds
);
1544 /* NULL cred means no limit check for tmp snapshot */
1545 error
= dsl_dataset_snapshot_check_impl(ds
, ddsta
->ddsta_snapname
,
1546 tx
, B_FALSE
, 0, NULL
);
1548 dsl_dataset_rele(ds
, FTAG
);
1552 if (spa_version(dp
->dp_spa
) < SPA_VERSION_USERREFS
) {
1553 dsl_dataset_rele(ds
, FTAG
);
1554 return (SET_ERROR(ENOTSUP
));
1556 error
= dsl_dataset_user_hold_check_one(NULL
, ddsta
->ddsta_htag
,
1559 dsl_dataset_rele(ds
, FTAG
);
1563 dsl_dataset_rele(ds
, FTAG
);
1568 dsl_dataset_snapshot_tmp_sync(void *arg
, dmu_tx_t
*tx
)
1570 dsl_dataset_snapshot_tmp_arg_t
*ddsta
= arg
;
1571 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
1574 VERIFY0(dsl_dataset_hold(dp
, ddsta
->ddsta_fsname
, FTAG
, &ds
));
1576 dsl_dataset_snapshot_sync_impl(ds
, ddsta
->ddsta_snapname
, tx
);
1577 dsl_dataset_user_hold_sync_one(ds
->ds_prev
, ddsta
->ddsta_htag
,
1578 ddsta
->ddsta_cleanup_minor
, gethrestime_sec(), tx
);
1579 dsl_destroy_snapshot_sync_impl(ds
->ds_prev
, B_TRUE
, tx
);
1581 dsl_dataset_rele(ds
, FTAG
);
1585 dsl_dataset_snapshot_tmp(const char *fsname
, const char *snapname
,
1586 minor_t cleanup_minor
, const char *htag
)
1588 dsl_dataset_snapshot_tmp_arg_t ddsta
;
1591 boolean_t needsuspend
;
1594 ddsta
.ddsta_fsname
= fsname
;
1595 ddsta
.ddsta_snapname
= snapname
;
1596 ddsta
.ddsta_cleanup_minor
= cleanup_minor
;
1597 ddsta
.ddsta_htag
= htag
;
1599 error
= spa_open(fsname
, &spa
, FTAG
);
1602 needsuspend
= (spa_version(spa
) < SPA_VERSION_FAST_SNAP
);
1603 spa_close(spa
, FTAG
);
1606 error
= zil_suspend(fsname
, &cookie
);
1611 error
= dsl_sync_task(fsname
, dsl_dataset_snapshot_tmp_check
,
1612 dsl_dataset_snapshot_tmp_sync
, &ddsta
, 3, ZFS_SPACE_CHECK_RESERVED
);
1620 dsl_dataset_sync(dsl_dataset_t
*ds
, zio_t
*zio
, dmu_tx_t
*tx
)
1622 ASSERT(dmu_tx_is_syncing(tx
));
1623 ASSERT(ds
->ds_objset
!= NULL
);
1624 ASSERT(dsl_dataset_phys(ds
)->ds_next_snap_obj
== 0);
1627 * in case we had to change ds_fsid_guid when we opened it,
1630 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
1631 dsl_dataset_phys(ds
)->ds_fsid_guid
= ds
->ds_fsid_guid
;
1633 if (ds
->ds_resume_bytes
[tx
->tx_txg
& TXG_MASK
] != 0) {
1634 VERIFY0(zap_update(tx
->tx_pool
->dp_meta_objset
,
1635 ds
->ds_object
, DS_FIELD_RESUME_OBJECT
, 8, 1,
1636 &ds
->ds_resume_object
[tx
->tx_txg
& TXG_MASK
], tx
));
1637 VERIFY0(zap_update(tx
->tx_pool
->dp_meta_objset
,
1638 ds
->ds_object
, DS_FIELD_RESUME_OFFSET
, 8, 1,
1639 &ds
->ds_resume_offset
[tx
->tx_txg
& TXG_MASK
], tx
));
1640 VERIFY0(zap_update(tx
->tx_pool
->dp_meta_objset
,
1641 ds
->ds_object
, DS_FIELD_RESUME_BYTES
, 8, 1,
1642 &ds
->ds_resume_bytes
[tx
->tx_txg
& TXG_MASK
], tx
));
1643 ds
->ds_resume_object
[tx
->tx_txg
& TXG_MASK
] = 0;
1644 ds
->ds_resume_offset
[tx
->tx_txg
& TXG_MASK
] = 0;
1645 ds
->ds_resume_bytes
[tx
->tx_txg
& TXG_MASK
] = 0;
1648 dmu_objset_sync(ds
->ds_objset
, zio
, tx
);
1650 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
1651 if (ds
->ds_feature_activation_needed
[f
]) {
1652 if (ds
->ds_feature_inuse
[f
])
1654 dsl_dataset_activate_feature(ds
->ds_object
, f
, tx
);
1655 ds
->ds_feature_inuse
[f
] = B_TRUE
;
1661 deadlist_enqueue_cb(void *arg
, const blkptr_t
*bp
, dmu_tx_t
*tx
)
1663 dsl_deadlist_t
*dl
= arg
;
1664 dsl_deadlist_insert(dl
, bp
, tx
);
1669 dsl_dataset_sync_done(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
1671 objset_t
*os
= ds
->ds_objset
;
1673 bplist_iterate(&ds
->ds_pending_deadlist
,
1674 deadlist_enqueue_cb
, &ds
->ds_deadlist
, tx
);
1676 if (os
->os_synced_dnodes
!= NULL
) {
1677 multilist_destroy(os
->os_synced_dnodes
);
1678 os
->os_synced_dnodes
= NULL
;
1681 ASSERT(!dmu_objset_is_dirty(os
, dmu_tx_get_txg(tx
)));
1683 dmu_buf_rele(ds
->ds_dbuf
, ds
);
1687 get_clones_stat_impl(dsl_dataset_t
*ds
, nvlist_t
*val
)
1690 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
1694 ASSERT(dsl_pool_config_held(ds
->ds_dir
->dd_pool
));
1697 * There may be missing entries in ds_next_clones_obj
1698 * due to a bug in a previous version of the code.
1699 * Only trust it if it has the right number of entries.
1701 if (dsl_dataset_phys(ds
)->ds_next_clones_obj
!= 0) {
1702 VERIFY0(zap_count(mos
, dsl_dataset_phys(ds
)->ds_next_clones_obj
,
1705 if (count
!= dsl_dataset_phys(ds
)->ds_num_children
- 1) {
1708 for (zap_cursor_init(&zc
, mos
,
1709 dsl_dataset_phys(ds
)->ds_next_clones_obj
);
1710 zap_cursor_retrieve(&zc
, &za
) == 0;
1711 zap_cursor_advance(&zc
)) {
1712 dsl_dataset_t
*clone
;
1713 char buf
[ZFS_MAX_DATASET_NAME_LEN
];
1714 VERIFY0(dsl_dataset_hold_obj(ds
->ds_dir
->dd_pool
,
1715 za
.za_first_integer
, FTAG
, &clone
));
1716 dsl_dir_name(clone
->ds_dir
, buf
);
1717 fnvlist_add_boolean(val
, buf
);
1718 dsl_dataset_rele(clone
, FTAG
);
1720 zap_cursor_fini(&zc
);
1725 get_clones_stat(dsl_dataset_t
*ds
, nvlist_t
*nv
)
1727 nvlist_t
*propval
= fnvlist_alloc();
1731 * We use nvlist_alloc() instead of fnvlist_alloc() because the
1732 * latter would allocate the list with NV_UNIQUE_NAME flag.
1733 * As a result, every time a clone name is appended to the list
1734 * it would be (linearly) searched for for a duplicate name.
1735 * We already know that all clone names must be unique and we
1736 * want avoid the quadratic complexity of double-checking that
1737 * because we can have a large number of clones.
1739 VERIFY0(nvlist_alloc(&val
, 0, KM_SLEEP
));
1741 if (get_clones_stat_impl(ds
, val
) == 0) {
1742 fnvlist_add_nvlist(propval
, ZPROP_VALUE
, val
);
1743 fnvlist_add_nvlist(nv
, zfs_prop_to_name(ZFS_PROP_CLONES
),
1747 nvlist_free(propval
);
1752 * Returns a string that represents the receive resume stats token. It should
1753 * be freed with strfree().
1756 get_receive_resume_stats_impl(dsl_dataset_t
*ds
)
1758 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
1760 if (dsl_dataset_has_resume_receive_state(ds
)) {
1763 uint8_t *compressed
;
1765 nvlist_t
*token_nv
= fnvlist_alloc();
1766 size_t packed_size
, compressed_size
;
1768 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
1769 DS_FIELD_RESUME_FROMGUID
, sizeof (val
), 1, &val
) == 0) {
1770 fnvlist_add_uint64(token_nv
, "fromguid", val
);
1772 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
1773 DS_FIELD_RESUME_OBJECT
, sizeof (val
), 1, &val
) == 0) {
1774 fnvlist_add_uint64(token_nv
, "object", val
);
1776 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
1777 DS_FIELD_RESUME_OFFSET
, sizeof (val
), 1, &val
) == 0) {
1778 fnvlist_add_uint64(token_nv
, "offset", val
);
1780 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
1781 DS_FIELD_RESUME_BYTES
, sizeof (val
), 1, &val
) == 0) {
1782 fnvlist_add_uint64(token_nv
, "bytes", val
);
1784 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
1785 DS_FIELD_RESUME_TOGUID
, sizeof (val
), 1, &val
) == 0) {
1786 fnvlist_add_uint64(token_nv
, "toguid", val
);
1789 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
1790 DS_FIELD_RESUME_TONAME
, 1, sizeof (buf
), buf
) == 0) {
1791 fnvlist_add_string(token_nv
, "toname", buf
);
1793 if (zap_contains(dp
->dp_meta_objset
, ds
->ds_object
,
1794 DS_FIELD_RESUME_LARGEBLOCK
) == 0) {
1795 fnvlist_add_boolean(token_nv
, "largeblockok");
1797 if (zap_contains(dp
->dp_meta_objset
, ds
->ds_object
,
1798 DS_FIELD_RESUME_EMBEDOK
) == 0) {
1799 fnvlist_add_boolean(token_nv
, "embedok");
1801 if (zap_contains(dp
->dp_meta_objset
, ds
->ds_object
,
1802 DS_FIELD_RESUME_COMPRESSOK
) == 0) {
1803 fnvlist_add_boolean(token_nv
, "compressok");
1805 packed
= fnvlist_pack(token_nv
, &packed_size
);
1806 fnvlist_free(token_nv
);
1807 compressed
= kmem_alloc(packed_size
, KM_SLEEP
);
1809 compressed_size
= gzip_compress(packed
, compressed
,
1810 packed_size
, packed_size
, 6);
1813 fletcher_4_native(compressed
, compressed_size
, NULL
, &cksum
);
1815 str
= kmem_alloc(compressed_size
* 2 + 1, KM_SLEEP
);
1816 for (int i
= 0; i
< compressed_size
; i
++) {
1817 (void) sprintf(str
+ i
* 2, "%02x", compressed
[i
]);
1819 str
[compressed_size
* 2] = '\0';
1820 char *propval
= kmem_asprintf("%u-%llx-%llx-%s",
1821 ZFS_SEND_RESUME_TOKEN_VERSION
,
1822 (longlong_t
)cksum
.zc_word
[0],
1823 (longlong_t
)packed_size
, str
);
1824 kmem_free(packed
, packed_size
);
1825 kmem_free(str
, compressed_size
* 2 + 1);
1826 kmem_free(compressed
, packed_size
);
1829 return (strdup(""));
1833 * Returns a string that represents the receive resume stats token of the
1834 * dataset's child. It should be freed with strfree().
1837 get_child_receive_stats(dsl_dataset_t
*ds
)
1839 char recvname
[ZFS_MAX_DATASET_NAME_LEN
+ 6];
1840 dsl_dataset_t
*recv_ds
;
1841 dsl_dataset_name(ds
, recvname
);
1842 if (strlcat(recvname
, "/", sizeof (recvname
)) <
1843 sizeof (recvname
) &&
1844 strlcat(recvname
, recv_clone_name
, sizeof (recvname
)) <
1845 sizeof (recvname
) &&
1846 dsl_dataset_hold(ds
->ds_dir
->dd_pool
, recvname
, FTAG
,
1848 char *propval
= get_receive_resume_stats_impl(recv_ds
);
1849 dsl_dataset_rele(recv_ds
, FTAG
);
1852 return (strdup(""));
1856 get_receive_resume_stats(dsl_dataset_t
*ds
, nvlist_t
*nv
)
1858 char *propval
= get_receive_resume_stats_impl(ds
);
1859 if (strcmp(propval
, "") != 0) {
1860 dsl_prop_nvlist_add_string(nv
,
1861 ZFS_PROP_RECEIVE_RESUME_TOKEN
, propval
);
1863 char *childval
= get_child_receive_stats(ds
);
1864 if (strcmp(childval
, "") != 0) {
1865 dsl_prop_nvlist_add_string(nv
,
1866 ZFS_PROP_RECEIVE_RESUME_TOKEN
, childval
);
1874 dsl_get_refratio(dsl_dataset_t
*ds
)
1876 uint64_t ratio
= dsl_dataset_phys(ds
)->ds_compressed_bytes
== 0 ? 100 :
1877 (dsl_dataset_phys(ds
)->ds_uncompressed_bytes
* 100 /
1878 dsl_dataset_phys(ds
)->ds_compressed_bytes
);
1883 dsl_get_logicalreferenced(dsl_dataset_t
*ds
)
1885 return (dsl_dataset_phys(ds
)->ds_uncompressed_bytes
);
1889 dsl_get_compressratio(dsl_dataset_t
*ds
)
1891 if (ds
->ds_is_snapshot
) {
1892 return (dsl_get_refratio(ds
));
1894 dsl_dir_t
*dd
= ds
->ds_dir
;
1895 mutex_enter(&dd
->dd_lock
);
1896 uint64_t val
= dsl_dir_get_compressratio(dd
);
1897 mutex_exit(&dd
->dd_lock
);
1903 dsl_get_used(dsl_dataset_t
*ds
)
1905 if (ds
->ds_is_snapshot
) {
1906 return (dsl_dataset_phys(ds
)->ds_unique_bytes
);
1908 dsl_dir_t
*dd
= ds
->ds_dir
;
1909 mutex_enter(&dd
->dd_lock
);
1910 uint64_t val
= dsl_dir_get_used(dd
);
1911 mutex_exit(&dd
->dd_lock
);
1917 dsl_get_creation(dsl_dataset_t
*ds
)
1919 return (dsl_dataset_phys(ds
)->ds_creation_time
);
1923 dsl_get_creationtxg(dsl_dataset_t
*ds
)
1925 return (dsl_dataset_phys(ds
)->ds_creation_txg
);
1929 dsl_get_refquota(dsl_dataset_t
*ds
)
1931 return (ds
->ds_quota
);
1935 dsl_get_refreservation(dsl_dataset_t
*ds
)
1937 return (ds
->ds_reserved
);
1941 dsl_get_guid(dsl_dataset_t
*ds
)
1943 return (dsl_dataset_phys(ds
)->ds_guid
);
1947 dsl_get_unique(dsl_dataset_t
*ds
)
1949 return (dsl_dataset_phys(ds
)->ds_unique_bytes
);
1953 dsl_get_objsetid(dsl_dataset_t
*ds
)
1955 return (ds
->ds_object
);
1959 dsl_get_userrefs(dsl_dataset_t
*ds
)
1961 return (ds
->ds_userrefs
);
1965 dsl_get_defer_destroy(dsl_dataset_t
*ds
)
1967 return (DS_IS_DEFER_DESTROY(ds
) ? 1 : 0);
1971 dsl_get_referenced(dsl_dataset_t
*ds
)
1973 return (dsl_dataset_phys(ds
)->ds_referenced_bytes
);
1977 dsl_get_numclones(dsl_dataset_t
*ds
)
1979 ASSERT(ds
->ds_is_snapshot
);
1980 return (dsl_dataset_phys(ds
)->ds_num_children
- 1);
1984 dsl_get_inconsistent(dsl_dataset_t
*ds
)
1986 return ((dsl_dataset_phys(ds
)->ds_flags
& DS_FLAG_INCONSISTENT
) ?
1991 dsl_get_available(dsl_dataset_t
*ds
)
1993 uint64_t refdbytes
= dsl_get_referenced(ds
);
1994 uint64_t availbytes
= dsl_dir_space_available(ds
->ds_dir
,
1996 if (ds
->ds_reserved
> dsl_dataset_phys(ds
)->ds_unique_bytes
) {
1998 ds
->ds_reserved
- dsl_dataset_phys(ds
)->ds_unique_bytes
;
2000 if (ds
->ds_quota
!= 0) {
2002 * Adjust available bytes according to refquota
2004 if (refdbytes
< ds
->ds_quota
) {
2005 availbytes
= MIN(availbytes
,
2006 ds
->ds_quota
- refdbytes
);
2011 return (availbytes
);
2015 dsl_get_written(dsl_dataset_t
*ds
, uint64_t *written
)
2017 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2018 dsl_dataset_t
*prev
;
2019 int err
= dsl_dataset_hold_obj(dp
,
2020 dsl_dataset_phys(ds
)->ds_prev_snap_obj
, FTAG
, &prev
);
2022 uint64_t comp
, uncomp
;
2023 err
= dsl_dataset_space_written(prev
, ds
, written
,
2025 dsl_dataset_rele(prev
, FTAG
);
2031 * 'snap' should be a buffer of size ZFS_MAX_DATASET_NAME_LEN.
2034 dsl_get_prev_snap(dsl_dataset_t
*ds
, char *snap
)
2036 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2037 if (ds
->ds_prev
!= NULL
&& ds
->ds_prev
!= dp
->dp_origin_snap
) {
2038 dsl_dataset_name(ds
->ds_prev
, snap
);
2046 * Returns the mountpoint property and source for the given dataset in the value
2047 * and source buffers. The value buffer must be at least as large as MAXPATHLEN
2048 * and the source buffer as least as large a ZFS_MAX_DATASET_NAME_LEN.
2049 * Returns 0 on success and an error on failure.
2052 dsl_get_mountpoint(dsl_dataset_t
*ds
, const char *dsname
, char *value
,
2056 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2058 /* Retrieve the mountpoint value stored in the zap opbject */
2059 error
= dsl_prop_get_ds(ds
, zfs_prop_to_name(ZFS_PROP_MOUNTPOINT
), 1,
2060 ZAP_MAXVALUELEN
, value
, source
);
2065 /* Process the dsname and source to find the full mountpoint string */
2066 if (value
[0] == '/') {
2067 char *buf
= kmem_alloc(ZAP_MAXVALUELEN
, KM_SLEEP
);
2069 const char *relpath
;
2072 * If we inherit the mountpoint, even from a dataset
2073 * with a received value, the source will be the path of
2074 * the dataset we inherit from. If source is
2075 * ZPROP_SOURCE_VAL_RECVD, the received value is not
2078 if (strcmp(source
, ZPROP_SOURCE_VAL_RECVD
) == 0) {
2081 ASSERT0(strncmp(dsname
, source
, strlen(source
)));
2082 relpath
= dsname
+ strlen(source
);
2083 if (relpath
[0] == '/')
2087 spa_altroot(dp
->dp_spa
, root
, ZAP_MAXVALUELEN
);
2090 * Special case an alternate root of '/'. This will
2091 * avoid having multiple leading slashes in the
2094 if (strcmp(root
, "/") == 0)
2098 * If the mountpoint is '/' then skip over this
2099 * if we are obtaining either an alternate root or
2100 * an inherited mountpoint.
2103 if (value
[1] == '\0' && (root
[0] != '\0' ||
2104 relpath
[0] != '\0'))
2107 if (relpath
[0] == '\0') {
2108 (void) snprintf(value
, ZAP_MAXVALUELEN
, "%s%s",
2111 (void) snprintf(value
, ZAP_MAXVALUELEN
, "%s%s%s%s",
2112 root
, mnt
, relpath
[0] == '@' ? "" : "/",
2115 kmem_free(buf
, ZAP_MAXVALUELEN
);
2117 /* 'legacy' or 'none' */
2118 (void) snprintf(value
, ZAP_MAXVALUELEN
, "%s", value
);
2124 dsl_dataset_stats(dsl_dataset_t
*ds
, nvlist_t
*nv
)
2126 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2128 ASSERT(dsl_pool_config_held(dp
));
2130 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_REFRATIO
,
2131 dsl_get_refratio(ds
));
2132 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_LOGICALREFERENCED
,
2133 dsl_get_logicalreferenced(ds
));
2134 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_COMPRESSRATIO
,
2135 dsl_get_compressratio(ds
));
2136 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_USED
,
2139 if (ds
->ds_is_snapshot
) {
2140 get_clones_stat(ds
, nv
);
2142 char buf
[ZFS_MAX_DATASET_NAME_LEN
];
2143 if (dsl_get_prev_snap(ds
, buf
) == 0)
2144 dsl_prop_nvlist_add_string(nv
, ZFS_PROP_PREV_SNAP
,
2146 dsl_dir_stats(ds
->ds_dir
, nv
);
2149 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_AVAILABLE
,
2150 dsl_get_available(ds
));
2151 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_REFERENCED
,
2152 dsl_get_referenced(ds
));
2153 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_CREATION
,
2154 dsl_get_creation(ds
));
2155 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_CREATETXG
,
2156 dsl_get_creationtxg(ds
));
2157 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_REFQUOTA
,
2158 dsl_get_refquota(ds
));
2159 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_REFRESERVATION
,
2160 dsl_get_refreservation(ds
));
2161 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_GUID
,
2163 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_UNIQUE
,
2164 dsl_get_unique(ds
));
2165 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_OBJSETID
,
2166 dsl_get_objsetid(ds
));
2167 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_USERREFS
,
2168 dsl_get_userrefs(ds
));
2169 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_DEFER_DESTROY
,
2170 dsl_get_defer_destroy(ds
));
2172 if (dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0) {
2174 if (dsl_get_written(ds
, &written
) == 0) {
2175 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_WRITTEN
,
2180 if (!dsl_dataset_is_snapshot(ds
)) {
2182 * A failed "newfs" (e.g. full) resumable receive leaves
2183 * the stats set on this dataset. Check here for the prop.
2185 get_receive_resume_stats(ds
, nv
);
2188 * A failed incremental resumable receive leaves the
2189 * stats set on our child named "%recv". Check the child
2192 /* 6 extra bytes for /%recv */
2193 char recvname
[ZFS_MAX_DATASET_NAME_LEN
+ 6];
2194 dsl_dataset_t
*recv_ds
;
2195 dsl_dataset_name(ds
, recvname
);
2196 if (strlcat(recvname
, "/", sizeof (recvname
)) <
2197 sizeof (recvname
) &&
2198 strlcat(recvname
, recv_clone_name
, sizeof (recvname
)) <
2199 sizeof (recvname
) &&
2200 dsl_dataset_hold(dp
, recvname
, FTAG
, &recv_ds
) == 0) {
2201 get_receive_resume_stats(recv_ds
, nv
);
2202 dsl_dataset_rele(recv_ds
, FTAG
);
2208 dsl_dataset_fast_stat(dsl_dataset_t
*ds
, dmu_objset_stats_t
*stat
)
2210 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2211 ASSERT(dsl_pool_config_held(dp
));
2213 stat
->dds_creation_txg
= dsl_get_creationtxg(ds
);
2214 stat
->dds_inconsistent
= dsl_get_inconsistent(ds
);
2215 stat
->dds_guid
= dsl_get_guid(ds
);
2216 stat
->dds_origin
[0] = '\0';
2217 if (ds
->ds_is_snapshot
) {
2218 stat
->dds_is_snapshot
= B_TRUE
;
2219 stat
->dds_num_clones
= dsl_get_numclones(ds
);
2221 stat
->dds_is_snapshot
= B_FALSE
;
2222 stat
->dds_num_clones
= 0;
2224 if (dsl_dir_is_clone(ds
->ds_dir
)) {
2225 dsl_dir_get_origin(ds
->ds_dir
, stat
->dds_origin
);
2231 dsl_dataset_fsid_guid(dsl_dataset_t
*ds
)
2233 return (ds
->ds_fsid_guid
);
2237 dsl_dataset_space(dsl_dataset_t
*ds
,
2238 uint64_t *refdbytesp
, uint64_t *availbytesp
,
2239 uint64_t *usedobjsp
, uint64_t *availobjsp
)
2241 *refdbytesp
= dsl_dataset_phys(ds
)->ds_referenced_bytes
;
2242 *availbytesp
= dsl_dir_space_available(ds
->ds_dir
, NULL
, 0, TRUE
);
2243 if (ds
->ds_reserved
> dsl_dataset_phys(ds
)->ds_unique_bytes
)
2245 ds
->ds_reserved
- dsl_dataset_phys(ds
)->ds_unique_bytes
;
2246 if (ds
->ds_quota
!= 0) {
2248 * Adjust available bytes according to refquota
2250 if (*refdbytesp
< ds
->ds_quota
)
2251 *availbytesp
= MIN(*availbytesp
,
2252 ds
->ds_quota
- *refdbytesp
);
2256 rrw_enter(&ds
->ds_bp_rwlock
, RW_READER
, FTAG
);
2257 *usedobjsp
= BP_GET_FILL(&dsl_dataset_phys(ds
)->ds_bp
);
2258 rrw_exit(&ds
->ds_bp_rwlock
, FTAG
);
2259 *availobjsp
= DN_MAX_OBJECT
- *usedobjsp
;
2263 dsl_dataset_modified_since_snap(dsl_dataset_t
*ds
, dsl_dataset_t
*snap
)
2265 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2268 ASSERT(dsl_pool_config_held(dp
));
2271 rrw_enter(&ds
->ds_bp_rwlock
, RW_READER
, FTAG
);
2272 birth
= dsl_dataset_get_blkptr(ds
)->blk_birth
;
2273 rrw_exit(&ds
->ds_bp_rwlock
, FTAG
);
2274 if (birth
> dsl_dataset_phys(snap
)->ds_creation_txg
) {
2275 objset_t
*os
, *os_snap
;
2277 * It may be that only the ZIL differs, because it was
2278 * reset in the head. Don't count that as being
2281 if (dmu_objset_from_ds(ds
, &os
) != 0)
2283 if (dmu_objset_from_ds(snap
, &os_snap
) != 0)
2285 return (bcmp(&os
->os_phys
->os_meta_dnode
,
2286 &os_snap
->os_phys
->os_meta_dnode
,
2287 sizeof (os
->os_phys
->os_meta_dnode
)) != 0);
2292 typedef struct dsl_dataset_rename_snapshot_arg
{
2293 const char *ddrsa_fsname
;
2294 const char *ddrsa_oldsnapname
;
2295 const char *ddrsa_newsnapname
;
2296 boolean_t ddrsa_recursive
;
2298 } dsl_dataset_rename_snapshot_arg_t
;
2302 dsl_dataset_rename_snapshot_check_impl(dsl_pool_t
*dp
,
2303 dsl_dataset_t
*hds
, void *arg
)
2305 dsl_dataset_rename_snapshot_arg_t
*ddrsa
= arg
;
2309 error
= dsl_dataset_snap_lookup(hds
, ddrsa
->ddrsa_oldsnapname
, &val
);
2311 /* ignore nonexistent snapshots */
2312 return (error
== ENOENT
? 0 : error
);
2315 /* new name should not exist */
2316 error
= dsl_dataset_snap_lookup(hds
, ddrsa
->ddrsa_newsnapname
, &val
);
2318 error
= SET_ERROR(EEXIST
);
2319 else if (error
== ENOENT
)
2322 /* dataset name + 1 for the "@" + the new snapshot name must fit */
2323 if (dsl_dir_namelen(hds
->ds_dir
) + 1 +
2324 strlen(ddrsa
->ddrsa_newsnapname
) >= ZFS_MAX_DATASET_NAME_LEN
)
2325 error
= SET_ERROR(ENAMETOOLONG
);
2331 dsl_dataset_rename_snapshot_check(void *arg
, dmu_tx_t
*tx
)
2333 dsl_dataset_rename_snapshot_arg_t
*ddrsa
= arg
;
2334 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
2338 error
= dsl_dataset_hold(dp
, ddrsa
->ddrsa_fsname
, FTAG
, &hds
);
2342 if (ddrsa
->ddrsa_recursive
) {
2343 error
= dmu_objset_find_dp(dp
, hds
->ds_dir
->dd_object
,
2344 dsl_dataset_rename_snapshot_check_impl
, ddrsa
,
2347 error
= dsl_dataset_rename_snapshot_check_impl(dp
, hds
, ddrsa
);
2349 dsl_dataset_rele(hds
, FTAG
);
2354 dsl_dataset_rename_snapshot_sync_impl(dsl_pool_t
*dp
,
2355 dsl_dataset_t
*hds
, void *arg
)
2357 dsl_dataset_rename_snapshot_arg_t
*ddrsa
= arg
;
2360 dmu_tx_t
*tx
= ddrsa
->ddrsa_tx
;
2363 error
= dsl_dataset_snap_lookup(hds
, ddrsa
->ddrsa_oldsnapname
, &val
);
2364 ASSERT(error
== 0 || error
== ENOENT
);
2365 if (error
== ENOENT
) {
2366 /* ignore nonexistent snapshots */
2370 VERIFY0(dsl_dataset_hold_obj(dp
, val
, FTAG
, &ds
));
2372 /* log before we change the name */
2373 spa_history_log_internal_ds(ds
, "rename", tx
,
2374 "-> @%s", ddrsa
->ddrsa_newsnapname
);
2376 VERIFY0(dsl_dataset_snap_remove(hds
, ddrsa
->ddrsa_oldsnapname
, tx
,
2378 mutex_enter(&ds
->ds_lock
);
2379 (void) strcpy(ds
->ds_snapname
, ddrsa
->ddrsa_newsnapname
);
2380 mutex_exit(&ds
->ds_lock
);
2381 VERIFY0(zap_add(dp
->dp_meta_objset
,
2382 dsl_dataset_phys(hds
)->ds_snapnames_zapobj
,
2383 ds
->ds_snapname
, 8, 1, &ds
->ds_object
, tx
));
2385 dsl_dataset_rele(ds
, FTAG
);
2390 dsl_dataset_rename_snapshot_sync(void *arg
, dmu_tx_t
*tx
)
2392 dsl_dataset_rename_snapshot_arg_t
*ddrsa
= arg
;
2393 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
2396 VERIFY0(dsl_dataset_hold(dp
, ddrsa
->ddrsa_fsname
, FTAG
, &hds
));
2397 ddrsa
->ddrsa_tx
= tx
;
2398 if (ddrsa
->ddrsa_recursive
) {
2399 VERIFY0(dmu_objset_find_dp(dp
, hds
->ds_dir
->dd_object
,
2400 dsl_dataset_rename_snapshot_sync_impl
, ddrsa
,
2403 VERIFY0(dsl_dataset_rename_snapshot_sync_impl(dp
, hds
, ddrsa
));
2405 dsl_dataset_rele(hds
, FTAG
);
2409 dsl_dataset_rename_snapshot(const char *fsname
,
2410 const char *oldsnapname
, const char *newsnapname
, boolean_t recursive
)
2412 dsl_dataset_rename_snapshot_arg_t ddrsa
;
2414 ddrsa
.ddrsa_fsname
= fsname
;
2415 ddrsa
.ddrsa_oldsnapname
= oldsnapname
;
2416 ddrsa
.ddrsa_newsnapname
= newsnapname
;
2417 ddrsa
.ddrsa_recursive
= recursive
;
2419 return (dsl_sync_task(fsname
, dsl_dataset_rename_snapshot_check
,
2420 dsl_dataset_rename_snapshot_sync
, &ddrsa
,
2421 1, ZFS_SPACE_CHECK_RESERVED
));
2425 * If we're doing an ownership handoff, we need to make sure that there is
2426 * only one long hold on the dataset. We're not allowed to change anything here
2427 * so we don't permanently release the long hold or regular hold here. We want
2428 * to do this only when syncing to avoid the dataset unexpectedly going away
2429 * when we release the long hold.
2432 dsl_dataset_handoff_check(dsl_dataset_t
*ds
, void *owner
, dmu_tx_t
*tx
)
2436 if (!dmu_tx_is_syncing(tx
))
2439 if (owner
!= NULL
) {
2440 VERIFY3P(ds
->ds_owner
, ==, owner
);
2441 dsl_dataset_long_rele(ds
, owner
);
2444 held
= dsl_dataset_long_held(ds
);
2447 dsl_dataset_long_hold(ds
, owner
);
2450 return (SET_ERROR(EBUSY
));
2455 typedef struct dsl_dataset_rollback_arg
{
2456 const char *ddra_fsname
;
2458 nvlist_t
*ddra_result
;
2459 } dsl_dataset_rollback_arg_t
;
2462 dsl_dataset_rollback_check(void *arg
, dmu_tx_t
*tx
)
2464 dsl_dataset_rollback_arg_t
*ddra
= arg
;
2465 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
2467 int64_t unused_refres_delta
;
2470 error
= dsl_dataset_hold(dp
, ddra
->ddra_fsname
, FTAG
, &ds
);
2474 /* must not be a snapshot */
2475 if (ds
->ds_is_snapshot
) {
2476 dsl_dataset_rele(ds
, FTAG
);
2477 return (SET_ERROR(EINVAL
));
2480 /* must have a most recent snapshot */
2481 if (dsl_dataset_phys(ds
)->ds_prev_snap_txg
< TXG_INITIAL
) {
2482 dsl_dataset_rele(ds
, FTAG
);
2483 return (SET_ERROR(EINVAL
));
2487 * No rollback to a snapshot created in the current txg, because
2488 * the rollback may dirty the dataset and create blocks that are
2489 * not reachable from the rootbp while having a birth txg that
2490 * falls into the snapshot's range.
2492 if (dmu_tx_is_syncing(tx
) &&
2493 dsl_dataset_phys(ds
)->ds_prev_snap_txg
>= tx
->tx_txg
) {
2494 dsl_dataset_rele(ds
, FTAG
);
2495 return (SET_ERROR(EAGAIN
));
2498 /* must not have any bookmarks after the most recent snapshot */
2499 nvlist_t
*proprequest
= fnvlist_alloc();
2500 fnvlist_add_boolean(proprequest
, zfs_prop_to_name(ZFS_PROP_CREATETXG
));
2501 nvlist_t
*bookmarks
= fnvlist_alloc();
2502 error
= dsl_get_bookmarks_impl(ds
, proprequest
, bookmarks
);
2503 fnvlist_free(proprequest
);
2506 for (nvpair_t
*pair
= nvlist_next_nvpair(bookmarks
, NULL
);
2507 pair
!= NULL
; pair
= nvlist_next_nvpair(bookmarks
, pair
)) {
2509 fnvlist_lookup_nvlist(fnvpair_value_nvlist(pair
),
2510 zfs_prop_to_name(ZFS_PROP_CREATETXG
));
2511 uint64_t createtxg
= fnvlist_lookup_uint64(valuenv
, "value");
2512 if (createtxg
> dsl_dataset_phys(ds
)->ds_prev_snap_txg
) {
2513 fnvlist_free(bookmarks
);
2514 dsl_dataset_rele(ds
, FTAG
);
2515 return (SET_ERROR(EEXIST
));
2518 fnvlist_free(bookmarks
);
2520 error
= dsl_dataset_handoff_check(ds
, ddra
->ddra_owner
, tx
);
2522 dsl_dataset_rele(ds
, FTAG
);
2527 * Check if the snap we are rolling back to uses more than
2530 if (ds
->ds_quota
!= 0 &&
2531 dsl_dataset_phys(ds
->ds_prev
)->ds_referenced_bytes
> ds
->ds_quota
) {
2532 dsl_dataset_rele(ds
, FTAG
);
2533 return (SET_ERROR(EDQUOT
));
2537 * When we do the clone swap, we will temporarily use more space
2538 * due to the refreservation (the head will no longer have any
2539 * unique space, so the entire amount of the refreservation will need
2540 * to be free). We will immediately destroy the clone, freeing
2541 * this space, but the freeing happens over many txg's.
2543 unused_refres_delta
= (int64_t)MIN(ds
->ds_reserved
,
2544 dsl_dataset_phys(ds
)->ds_unique_bytes
);
2546 if (unused_refres_delta
> 0 &&
2547 unused_refres_delta
>
2548 dsl_dir_space_available(ds
->ds_dir
, NULL
, 0, TRUE
)) {
2549 dsl_dataset_rele(ds
, FTAG
);
2550 return (SET_ERROR(ENOSPC
));
2553 dsl_dataset_rele(ds
, FTAG
);
2558 dsl_dataset_rollback_sync(void *arg
, dmu_tx_t
*tx
)
2560 dsl_dataset_rollback_arg_t
*ddra
= arg
;
2561 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
2562 dsl_dataset_t
*ds
, *clone
;
2564 char namebuf
[ZFS_MAX_DATASET_NAME_LEN
];
2566 VERIFY0(dsl_dataset_hold(dp
, ddra
->ddra_fsname
, FTAG
, &ds
));
2568 dsl_dataset_name(ds
->ds_prev
, namebuf
);
2569 fnvlist_add_string(ddra
->ddra_result
, "target", namebuf
);
2571 cloneobj
= dsl_dataset_create_sync(ds
->ds_dir
, "%rollback",
2572 ds
->ds_prev
, DS_CREATE_FLAG_NODIRTY
, kcred
, tx
);
2574 VERIFY0(dsl_dataset_hold_obj(dp
, cloneobj
, FTAG
, &clone
));
2576 dsl_dataset_clone_swap_sync_impl(clone
, ds
, tx
);
2577 dsl_dataset_zero_zil(ds
, tx
);
2579 dsl_destroy_head_sync_impl(clone
, tx
);
2581 dsl_dataset_rele(clone
, FTAG
);
2582 dsl_dataset_rele(ds
, FTAG
);
2586 * Rolls back the given filesystem or volume to the most recent snapshot.
2587 * The name of the most recent snapshot will be returned under key "target"
2588 * in the result nvlist.
2591 * - The existing dataset MUST be owned by the specified owner at entry
2592 * - Upon return, dataset will still be held by the same owner, whether we
2595 * This mode is required any time the existing filesystem is mounted. See
2596 * notes above zfs_suspend_fs() for further details.
2599 dsl_dataset_rollback(const char *fsname
, void *owner
, nvlist_t
*result
)
2601 dsl_dataset_rollback_arg_t ddra
;
2603 ddra
.ddra_fsname
= fsname
;
2604 ddra
.ddra_owner
= owner
;
2605 ddra
.ddra_result
= result
;
2607 return (dsl_sync_task(fsname
, dsl_dataset_rollback_check
,
2608 dsl_dataset_rollback_sync
, &ddra
,
2609 1, ZFS_SPACE_CHECK_RESERVED
));
2612 struct promotenode
{
2617 static int snaplist_space(list_t
*l
, uint64_t mintxg
, uint64_t *spacep
);
2618 static int promote_hold(dsl_dataset_promote_arg_t
*ddpa
, dsl_pool_t
*dp
,
2620 static void promote_rele(dsl_dataset_promote_arg_t
*ddpa
, void *tag
);
2623 dsl_dataset_promote_check(void *arg
, dmu_tx_t
*tx
)
2625 dsl_dataset_promote_arg_t
*ddpa
= arg
;
2626 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
2628 struct promotenode
*snap
;
2629 dsl_dataset_t
*origin_ds
;
2633 size_t max_snap_len
;
2634 boolean_t conflicting_snaps
;
2636 err
= promote_hold(ddpa
, dp
, FTAG
);
2640 hds
= ddpa
->ddpa_clone
;
2641 snap
= list_head(&ddpa
->shared_snaps
);
2642 origin_ds
= snap
->ds
;
2643 max_snap_len
= MAXNAMELEN
- strlen(ddpa
->ddpa_clonename
) - 1;
2645 snap
= list_head(&ddpa
->origin_snaps
);
2647 if (dsl_dataset_phys(hds
)->ds_flags
& DS_FLAG_NOPROMOTE
) {
2648 promote_rele(ddpa
, FTAG
);
2649 return (SET_ERROR(EXDEV
));
2653 * Compute and check the amount of space to transfer. Since this is
2654 * so expensive, don't do the preliminary check.
2656 if (!dmu_tx_is_syncing(tx
)) {
2657 promote_rele(ddpa
, FTAG
);
2661 /* compute origin's new unique space */
2662 snap
= list_tail(&ddpa
->clone_snaps
);
2663 ASSERT3U(dsl_dataset_phys(snap
->ds
)->ds_prev_snap_obj
, ==,
2664 origin_ds
->ds_object
);
2665 dsl_deadlist_space_range(&snap
->ds
->ds_deadlist
,
2666 dsl_dataset_phys(origin_ds
)->ds_prev_snap_txg
, UINT64_MAX
,
2667 &ddpa
->unique
, &unused
, &unused
);
2670 * Walk the snapshots that we are moving
2672 * Compute space to transfer. Consider the incremental changes
2673 * to used by each snapshot:
2674 * (my used) = (prev's used) + (blocks born) - (blocks killed)
2675 * So each snapshot gave birth to:
2676 * (blocks born) = (my used) - (prev's used) + (blocks killed)
2677 * So a sequence would look like:
2678 * (uN - u(N-1) + kN) + ... + (u1 - u0 + k1) + (u0 - 0 + k0)
2679 * Which simplifies to:
2680 * uN + kN + kN-1 + ... + k1 + k0
2681 * Note however, if we stop before we reach the ORIGIN we get:
2682 * uN + kN + kN-1 + ... + kM - uM-1
2684 conflicting_snaps
= B_FALSE
;
2686 ddpa
->used
= dsl_dataset_phys(origin_ds
)->ds_referenced_bytes
;
2687 ddpa
->comp
= dsl_dataset_phys(origin_ds
)->ds_compressed_bytes
;
2688 ddpa
->uncomp
= dsl_dataset_phys(origin_ds
)->ds_uncompressed_bytes
;
2689 for (snap
= list_head(&ddpa
->shared_snaps
); snap
;
2690 snap
= list_next(&ddpa
->shared_snaps
, snap
)) {
2691 uint64_t val
, dlused
, dlcomp
, dluncomp
;
2692 dsl_dataset_t
*ds
= snap
->ds
;
2697 * If there are long holds, we won't be able to evict
2700 if (dsl_dataset_long_held(ds
)) {
2701 err
= SET_ERROR(EBUSY
);
2705 /* Check that the snapshot name does not conflict */
2706 VERIFY0(dsl_dataset_get_snapname(ds
));
2707 if (strlen(ds
->ds_snapname
) >= max_snap_len
) {
2708 err
= SET_ERROR(ENAMETOOLONG
);
2711 err
= dsl_dataset_snap_lookup(hds
, ds
->ds_snapname
, &val
);
2713 fnvlist_add_boolean(ddpa
->err_ds
,
2714 snap
->ds
->ds_snapname
);
2715 conflicting_snaps
= B_TRUE
;
2716 } else if (err
!= ENOENT
) {
2720 /* The very first snapshot does not have a deadlist */
2721 if (dsl_dataset_phys(ds
)->ds_prev_snap_obj
== 0)
2724 dsl_deadlist_space(&ds
->ds_deadlist
,
2725 &dlused
, &dlcomp
, &dluncomp
);
2726 ddpa
->used
+= dlused
;
2727 ddpa
->comp
+= dlcomp
;
2728 ddpa
->uncomp
+= dluncomp
;
2732 * In order to return the full list of conflicting snapshots, we check
2733 * whether there was a conflict after traversing all of them.
2735 if (conflicting_snaps
) {
2736 err
= SET_ERROR(EEXIST
);
2741 * If we are a clone of a clone then we never reached ORIGIN,
2742 * so we need to subtract out the clone origin's used space.
2744 if (ddpa
->origin_origin
) {
2746 dsl_dataset_phys(ddpa
->origin_origin
)->ds_referenced_bytes
;
2748 dsl_dataset_phys(ddpa
->origin_origin
)->ds_compressed_bytes
;
2750 dsl_dataset_phys(ddpa
->origin_origin
)->
2751 ds_uncompressed_bytes
;
2754 /* Check that there is enough space and limit headroom here */
2755 err
= dsl_dir_transfer_possible(origin_ds
->ds_dir
, hds
->ds_dir
,
2756 0, ss_mv_cnt
, ddpa
->used
, ddpa
->cr
);
2761 * Compute the amounts of space that will be used by snapshots
2762 * after the promotion (for both origin and clone). For each,
2763 * it is the amount of space that will be on all of their
2764 * deadlists (that was not born before their new origin).
2766 if (dsl_dir_phys(hds
->ds_dir
)->dd_flags
& DD_FLAG_USED_BREAKDOWN
) {
2770 * Note, typically this will not be a clone of a clone,
2771 * so dd_origin_txg will be < TXG_INITIAL, so
2772 * these snaplist_space() -> dsl_deadlist_space_range()
2773 * calls will be fast because they do not have to
2774 * iterate over all bps.
2776 snap
= list_head(&ddpa
->origin_snaps
);
2777 err
= snaplist_space(&ddpa
->shared_snaps
,
2778 snap
->ds
->ds_dir
->dd_origin_txg
, &ddpa
->cloneusedsnap
);
2782 err
= snaplist_space(&ddpa
->clone_snaps
,
2783 snap
->ds
->ds_dir
->dd_origin_txg
, &space
);
2786 ddpa
->cloneusedsnap
+= space
;
2788 if (dsl_dir_phys(origin_ds
->ds_dir
)->dd_flags
&
2789 DD_FLAG_USED_BREAKDOWN
) {
2790 err
= snaplist_space(&ddpa
->origin_snaps
,
2791 dsl_dataset_phys(origin_ds
)->ds_creation_txg
,
2792 &ddpa
->originusedsnap
);
2798 promote_rele(ddpa
, FTAG
);
2803 dsl_dataset_promote_sync(void *arg
, dmu_tx_t
*tx
)
2805 dsl_dataset_promote_arg_t
*ddpa
= arg
;
2806 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
2808 struct promotenode
*snap
;
2809 dsl_dataset_t
*origin_ds
;
2810 dsl_dataset_t
*origin_head
;
2812 dsl_dir_t
*odd
= NULL
;
2813 uint64_t oldnext_obj
;
2816 VERIFY0(promote_hold(ddpa
, dp
, FTAG
));
2817 hds
= ddpa
->ddpa_clone
;
2819 ASSERT0(dsl_dataset_phys(hds
)->ds_flags
& DS_FLAG_NOPROMOTE
);
2821 snap
= list_head(&ddpa
->shared_snaps
);
2822 origin_ds
= snap
->ds
;
2825 snap
= list_head(&ddpa
->origin_snaps
);
2826 origin_head
= snap
->ds
;
2829 * We need to explicitly open odd, since origin_ds's dd will be
2832 VERIFY0(dsl_dir_hold_obj(dp
, origin_ds
->ds_dir
->dd_object
,
2835 /* change origin's next snap */
2836 dmu_buf_will_dirty(origin_ds
->ds_dbuf
, tx
);
2837 oldnext_obj
= dsl_dataset_phys(origin_ds
)->ds_next_snap_obj
;
2838 snap
= list_tail(&ddpa
->clone_snaps
);
2839 ASSERT3U(dsl_dataset_phys(snap
->ds
)->ds_prev_snap_obj
, ==,
2840 origin_ds
->ds_object
);
2841 dsl_dataset_phys(origin_ds
)->ds_next_snap_obj
= snap
->ds
->ds_object
;
2843 /* change the origin's next clone */
2844 if (dsl_dataset_phys(origin_ds
)->ds_next_clones_obj
) {
2845 dsl_dataset_remove_from_next_clones(origin_ds
,
2846 snap
->ds
->ds_object
, tx
);
2847 VERIFY0(zap_add_int(dp
->dp_meta_objset
,
2848 dsl_dataset_phys(origin_ds
)->ds_next_clones_obj
,
2853 dmu_buf_will_dirty(dd
->dd_dbuf
, tx
);
2854 ASSERT3U(dsl_dir_phys(dd
)->dd_origin_obj
, ==, origin_ds
->ds_object
);
2855 dsl_dir_phys(dd
)->dd_origin_obj
= dsl_dir_phys(odd
)->dd_origin_obj
;
2856 dd
->dd_origin_txg
= origin_head
->ds_dir
->dd_origin_txg
;
2857 dmu_buf_will_dirty(odd
->dd_dbuf
, tx
);
2858 dsl_dir_phys(odd
)->dd_origin_obj
= origin_ds
->ds_object
;
2859 origin_head
->ds_dir
->dd_origin_txg
=
2860 dsl_dataset_phys(origin_ds
)->ds_creation_txg
;
2862 /* change dd_clone entries */
2863 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_DIR_CLONES
) {
2864 VERIFY0(zap_remove_int(dp
->dp_meta_objset
,
2865 dsl_dir_phys(odd
)->dd_clones
, hds
->ds_object
, tx
));
2866 VERIFY0(zap_add_int(dp
->dp_meta_objset
,
2867 dsl_dir_phys(ddpa
->origin_origin
->ds_dir
)->dd_clones
,
2868 hds
->ds_object
, tx
));
2870 VERIFY0(zap_remove_int(dp
->dp_meta_objset
,
2871 dsl_dir_phys(ddpa
->origin_origin
->ds_dir
)->dd_clones
,
2872 origin_head
->ds_object
, tx
));
2873 if (dsl_dir_phys(dd
)->dd_clones
== 0) {
2874 dsl_dir_phys(dd
)->dd_clones
=
2875 zap_create(dp
->dp_meta_objset
, DMU_OT_DSL_CLONES
,
2876 DMU_OT_NONE
, 0, tx
);
2878 VERIFY0(zap_add_int(dp
->dp_meta_objset
,
2879 dsl_dir_phys(dd
)->dd_clones
, origin_head
->ds_object
, tx
));
2882 /* move snapshots to this dir */
2883 for (snap
= list_head(&ddpa
->shared_snaps
); snap
;
2884 snap
= list_next(&ddpa
->shared_snaps
, snap
)) {
2885 dsl_dataset_t
*ds
= snap
->ds
;
2888 * Property callbacks are registered to a particular
2889 * dsl_dir. Since ours is changing, evict the objset
2890 * so that they will be unregistered from the old dsl_dir.
2892 if (ds
->ds_objset
) {
2893 dmu_objset_evict(ds
->ds_objset
);
2894 ds
->ds_objset
= NULL
;
2897 /* move snap name entry */
2898 VERIFY0(dsl_dataset_get_snapname(ds
));
2899 VERIFY0(dsl_dataset_snap_remove(origin_head
,
2900 ds
->ds_snapname
, tx
, B_TRUE
));
2901 VERIFY0(zap_add(dp
->dp_meta_objset
,
2902 dsl_dataset_phys(hds
)->ds_snapnames_zapobj
, ds
->ds_snapname
,
2903 8, 1, &ds
->ds_object
, tx
));
2904 dsl_fs_ss_count_adjust(hds
->ds_dir
, 1,
2905 DD_FIELD_SNAPSHOT_COUNT
, tx
);
2907 /* change containing dsl_dir */
2908 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
2909 ASSERT3U(dsl_dataset_phys(ds
)->ds_dir_obj
, ==, odd
->dd_object
);
2910 dsl_dataset_phys(ds
)->ds_dir_obj
= dd
->dd_object
;
2911 ASSERT3P(ds
->ds_dir
, ==, odd
);
2912 dsl_dir_rele(ds
->ds_dir
, ds
);
2913 VERIFY0(dsl_dir_hold_obj(dp
, dd
->dd_object
,
2914 NULL
, ds
, &ds
->ds_dir
));
2916 /* move any clone references */
2917 if (dsl_dataset_phys(ds
)->ds_next_clones_obj
&&
2918 spa_version(dp
->dp_spa
) >= SPA_VERSION_DIR_CLONES
) {
2922 for (zap_cursor_init(&zc
, dp
->dp_meta_objset
,
2923 dsl_dataset_phys(ds
)->ds_next_clones_obj
);
2924 zap_cursor_retrieve(&zc
, &za
) == 0;
2925 zap_cursor_advance(&zc
)) {
2926 dsl_dataset_t
*cnds
;
2929 if (za
.za_first_integer
== oldnext_obj
) {
2931 * We've already moved the
2932 * origin's reference.
2937 VERIFY0(dsl_dataset_hold_obj(dp
,
2938 za
.za_first_integer
, FTAG
, &cnds
));
2939 o
= dsl_dir_phys(cnds
->ds_dir
)->
2940 dd_head_dataset_obj
;
2942 VERIFY0(zap_remove_int(dp
->dp_meta_objset
,
2943 dsl_dir_phys(odd
)->dd_clones
, o
, tx
));
2944 VERIFY0(zap_add_int(dp
->dp_meta_objset
,
2945 dsl_dir_phys(dd
)->dd_clones
, o
, tx
));
2946 dsl_dataset_rele(cnds
, FTAG
);
2948 zap_cursor_fini(&zc
);
2951 ASSERT(!dsl_prop_hascb(ds
));
2955 * Change space accounting.
2956 * Note, pa->*usedsnap and dd_used_breakdown[SNAP] will either
2957 * both be valid, or both be 0 (resulting in delta == 0). This
2958 * is true for each of {clone,origin} independently.
2961 delta
= ddpa
->cloneusedsnap
-
2962 dsl_dir_phys(dd
)->dd_used_breakdown
[DD_USED_SNAP
];
2963 ASSERT3S(delta
, >=, 0);
2964 ASSERT3U(ddpa
->used
, >=, delta
);
2965 dsl_dir_diduse_space(dd
, DD_USED_SNAP
, delta
, 0, 0, tx
);
2966 dsl_dir_diduse_space(dd
, DD_USED_HEAD
,
2967 ddpa
->used
- delta
, ddpa
->comp
, ddpa
->uncomp
, tx
);
2969 delta
= ddpa
->originusedsnap
-
2970 dsl_dir_phys(odd
)->dd_used_breakdown
[DD_USED_SNAP
];
2971 ASSERT3S(delta
, <=, 0);
2972 ASSERT3U(ddpa
->used
, >=, -delta
);
2973 dsl_dir_diduse_space(odd
, DD_USED_SNAP
, delta
, 0, 0, tx
);
2974 dsl_dir_diduse_space(odd
, DD_USED_HEAD
,
2975 -ddpa
->used
- delta
, -ddpa
->comp
, -ddpa
->uncomp
, tx
);
2977 dsl_dataset_phys(origin_ds
)->ds_unique_bytes
= ddpa
->unique
;
2979 /* log history record */
2980 spa_history_log_internal_ds(hds
, "promote", tx
, "");
2982 dsl_dir_rele(odd
, FTAG
);
2983 promote_rele(ddpa
, FTAG
);
2987 * Make a list of dsl_dataset_t's for the snapshots between first_obj
2988 * (exclusive) and last_obj (inclusive). The list will be in reverse
2989 * order (last_obj will be the list_head()). If first_obj == 0, do all
2990 * snapshots back to this dataset's origin.
2993 snaplist_make(dsl_pool_t
*dp
,
2994 uint64_t first_obj
, uint64_t last_obj
, list_t
*l
, void *tag
)
2996 uint64_t obj
= last_obj
;
2998 list_create(l
, sizeof (struct promotenode
),
2999 offsetof(struct promotenode
, link
));
3001 while (obj
!= first_obj
) {
3003 struct promotenode
*snap
;
3006 err
= dsl_dataset_hold_obj(dp
, obj
, tag
, &ds
);
3007 ASSERT(err
!= ENOENT
);
3012 first_obj
= dsl_dir_phys(ds
->ds_dir
)->dd_origin_obj
;
3014 snap
= kmem_alloc(sizeof (*snap
), KM_SLEEP
);
3016 list_insert_tail(l
, snap
);
3017 obj
= dsl_dataset_phys(ds
)->ds_prev_snap_obj
;
3024 snaplist_space(list_t
*l
, uint64_t mintxg
, uint64_t *spacep
)
3026 struct promotenode
*snap
;
3029 for (snap
= list_head(l
); snap
; snap
= list_next(l
, snap
)) {
3030 uint64_t used
, comp
, uncomp
;
3031 dsl_deadlist_space_range(&snap
->ds
->ds_deadlist
,
3032 mintxg
, UINT64_MAX
, &used
, &comp
, &uncomp
);
3039 snaplist_destroy(list_t
*l
, void *tag
)
3041 struct promotenode
*snap
;
3043 if (l
== NULL
|| !list_link_active(&l
->list_head
))
3046 while ((snap
= list_tail(l
)) != NULL
) {
3047 list_remove(l
, snap
);
3048 dsl_dataset_rele(snap
->ds
, tag
);
3049 kmem_free(snap
, sizeof (*snap
));
3055 promote_hold(dsl_dataset_promote_arg_t
*ddpa
, dsl_pool_t
*dp
, void *tag
)
3059 struct promotenode
*snap
;
3061 error
= dsl_dataset_hold(dp
, ddpa
->ddpa_clonename
, tag
,
3065 dd
= ddpa
->ddpa_clone
->ds_dir
;
3067 if (ddpa
->ddpa_clone
->ds_is_snapshot
||
3068 !dsl_dir_is_clone(dd
)) {
3069 dsl_dataset_rele(ddpa
->ddpa_clone
, tag
);
3070 return (SET_ERROR(EINVAL
));
3073 error
= snaplist_make(dp
, 0, dsl_dir_phys(dd
)->dd_origin_obj
,
3074 &ddpa
->shared_snaps
, tag
);
3078 error
= snaplist_make(dp
, 0, ddpa
->ddpa_clone
->ds_object
,
3079 &ddpa
->clone_snaps
, tag
);
3083 snap
= list_head(&ddpa
->shared_snaps
);
3084 ASSERT3U(snap
->ds
->ds_object
, ==, dsl_dir_phys(dd
)->dd_origin_obj
);
3085 error
= snaplist_make(dp
, dsl_dir_phys(dd
)->dd_origin_obj
,
3086 dsl_dir_phys(snap
->ds
->ds_dir
)->dd_head_dataset_obj
,
3087 &ddpa
->origin_snaps
, tag
);
3091 if (dsl_dir_phys(snap
->ds
->ds_dir
)->dd_origin_obj
!= 0) {
3092 error
= dsl_dataset_hold_obj(dp
,
3093 dsl_dir_phys(snap
->ds
->ds_dir
)->dd_origin_obj
,
3094 tag
, &ddpa
->origin_origin
);
3100 promote_rele(ddpa
, tag
);
3105 promote_rele(dsl_dataset_promote_arg_t
*ddpa
, void *tag
)
3107 snaplist_destroy(&ddpa
->shared_snaps
, tag
);
3108 snaplist_destroy(&ddpa
->clone_snaps
, tag
);
3109 snaplist_destroy(&ddpa
->origin_snaps
, tag
);
3110 if (ddpa
->origin_origin
!= NULL
)
3111 dsl_dataset_rele(ddpa
->origin_origin
, tag
);
3112 dsl_dataset_rele(ddpa
->ddpa_clone
, tag
);
3118 * If it fails due to a conflicting snapshot name, "conflsnap" will be filled
3119 * in with the name. (It must be at least ZFS_MAX_DATASET_NAME_LEN bytes long.)
3122 dsl_dataset_promote(const char *name
, char *conflsnap
)
3124 dsl_dataset_promote_arg_t ddpa
= { 0 };
3127 nvpair_t
*snap_pair
;
3131 * We will modify space proportional to the number of
3132 * snapshots. Compute numsnaps.
3134 error
= dmu_objset_hold(name
, FTAG
, &os
);
3137 error
= zap_count(dmu_objset_pool(os
)->dp_meta_objset
,
3138 dsl_dataset_phys(dmu_objset_ds(os
))->ds_snapnames_zapobj
,
3140 dmu_objset_rele(os
, FTAG
);
3144 ddpa
.ddpa_clonename
= name
;
3145 ddpa
.err_ds
= fnvlist_alloc();
3148 error
= dsl_sync_task(name
, dsl_dataset_promote_check
,
3149 dsl_dataset_promote_sync
, &ddpa
,
3150 2 + numsnaps
, ZFS_SPACE_CHECK_RESERVED
);
3153 * Return the first conflicting snapshot found.
3155 snap_pair
= nvlist_next_nvpair(ddpa
.err_ds
, NULL
);
3156 if (snap_pair
!= NULL
&& conflsnap
!= NULL
)
3157 (void) strcpy(conflsnap
, nvpair_name(snap_pair
));
3159 fnvlist_free(ddpa
.err_ds
);
3164 dsl_dataset_clone_swap_check_impl(dsl_dataset_t
*clone
,
3165 dsl_dataset_t
*origin_head
, boolean_t force
, void *owner
, dmu_tx_t
*tx
)
3168 * "slack" factor for received datasets with refquota set on them.
3169 * See the bottom of this function for details on its use.
3171 uint64_t refquota_slack
= DMU_MAX_ACCESS
* spa_asize_inflation
;
3172 int64_t unused_refres_delta
;
3174 /* they should both be heads */
3175 if (clone
->ds_is_snapshot
||
3176 origin_head
->ds_is_snapshot
)
3177 return (SET_ERROR(EINVAL
));
3179 /* if we are not forcing, the branch point should be just before them */
3180 if (!force
&& clone
->ds_prev
!= origin_head
->ds_prev
)
3181 return (SET_ERROR(EINVAL
));
3183 /* clone should be the clone (unless they are unrelated) */
3184 if (clone
->ds_prev
!= NULL
&&
3185 clone
->ds_prev
!= clone
->ds_dir
->dd_pool
->dp_origin_snap
&&
3186 origin_head
->ds_dir
!= clone
->ds_prev
->ds_dir
)
3187 return (SET_ERROR(EINVAL
));
3189 /* the clone should be a child of the origin */
3190 if (clone
->ds_dir
->dd_parent
!= origin_head
->ds_dir
)
3191 return (SET_ERROR(EINVAL
));
3193 /* origin_head shouldn't be modified unless 'force' */
3195 dsl_dataset_modified_since_snap(origin_head
, origin_head
->ds_prev
))
3196 return (SET_ERROR(ETXTBSY
));
3198 /* origin_head should have no long holds (e.g. is not mounted) */
3199 if (dsl_dataset_handoff_check(origin_head
, owner
, tx
))
3200 return (SET_ERROR(EBUSY
));
3202 /* check amount of any unconsumed refreservation */
3203 unused_refres_delta
=
3204 (int64_t)MIN(origin_head
->ds_reserved
,
3205 dsl_dataset_phys(origin_head
)->ds_unique_bytes
) -
3206 (int64_t)MIN(origin_head
->ds_reserved
,
3207 dsl_dataset_phys(clone
)->ds_unique_bytes
);
3209 if (unused_refres_delta
> 0 &&
3210 unused_refres_delta
>
3211 dsl_dir_space_available(origin_head
->ds_dir
, NULL
, 0, TRUE
))
3212 return (SET_ERROR(ENOSPC
));
3215 * The clone can't be too much over the head's refquota.
3217 * To ensure that the entire refquota can be used, we allow one
3218 * transaction to exceed the the refquota. Therefore, this check
3219 * needs to also allow for the space referenced to be more than the
3220 * refquota. The maximum amount of space that one transaction can use
3221 * on disk is DMU_MAX_ACCESS * spa_asize_inflation. Allowing this
3222 * overage ensures that we are able to receive a filesystem that
3223 * exceeds the refquota on the source system.
3225 * So that overage is the refquota_slack we use below.
3227 if (origin_head
->ds_quota
!= 0 &&
3228 dsl_dataset_phys(clone
)->ds_referenced_bytes
>
3229 origin_head
->ds_quota
+ refquota_slack
)
3230 return (SET_ERROR(EDQUOT
));
3236 dsl_dataset_clone_swap_sync_impl(dsl_dataset_t
*clone
,
3237 dsl_dataset_t
*origin_head
, dmu_tx_t
*tx
)
3239 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3240 int64_t unused_refres_delta
;
3242 ASSERT(clone
->ds_reserved
== 0);
3244 * NOTE: On DEBUG kernels there could be a race between this and
3245 * the check function if spa_asize_inflation is adjusted...
3247 ASSERT(origin_head
->ds_quota
== 0 ||
3248 dsl_dataset_phys(clone
)->ds_unique_bytes
<= origin_head
->ds_quota
+
3249 DMU_MAX_ACCESS
* spa_asize_inflation
);
3250 ASSERT3P(clone
->ds_prev
, ==, origin_head
->ds_prev
);
3253 * Swap per-dataset feature flags.
3255 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
3256 if (!(spa_feature_table
[f
].fi_flags
&
3257 ZFEATURE_FLAG_PER_DATASET
)) {
3258 ASSERT(!clone
->ds_feature_inuse
[f
]);
3259 ASSERT(!origin_head
->ds_feature_inuse
[f
]);
3263 boolean_t clone_inuse
= clone
->ds_feature_inuse
[f
];
3264 boolean_t origin_head_inuse
= origin_head
->ds_feature_inuse
[f
];
3267 dsl_dataset_deactivate_feature(clone
->ds_object
, f
, tx
);
3268 clone
->ds_feature_inuse
[f
] = B_FALSE
;
3270 if (origin_head_inuse
) {
3271 dsl_dataset_deactivate_feature(origin_head
->ds_object
,
3273 origin_head
->ds_feature_inuse
[f
] = B_FALSE
;
3276 dsl_dataset_activate_feature(origin_head
->ds_object
,
3278 origin_head
->ds_feature_inuse
[f
] = B_TRUE
;
3280 if (origin_head_inuse
) {
3281 dsl_dataset_activate_feature(clone
->ds_object
, f
, tx
);
3282 clone
->ds_feature_inuse
[f
] = B_TRUE
;
3286 dmu_buf_will_dirty(clone
->ds_dbuf
, tx
);
3287 dmu_buf_will_dirty(origin_head
->ds_dbuf
, tx
);
3289 if (clone
->ds_objset
!= NULL
) {
3290 dmu_objset_evict(clone
->ds_objset
);
3291 clone
->ds_objset
= NULL
;
3294 if (origin_head
->ds_objset
!= NULL
) {
3295 dmu_objset_evict(origin_head
->ds_objset
);
3296 origin_head
->ds_objset
= NULL
;
3299 unused_refres_delta
=
3300 (int64_t)MIN(origin_head
->ds_reserved
,
3301 dsl_dataset_phys(origin_head
)->ds_unique_bytes
) -
3302 (int64_t)MIN(origin_head
->ds_reserved
,
3303 dsl_dataset_phys(clone
)->ds_unique_bytes
);
3306 * Reset origin's unique bytes, if it exists.
3308 if (clone
->ds_prev
) {
3309 dsl_dataset_t
*origin
= clone
->ds_prev
;
3310 uint64_t comp
, uncomp
;
3312 dmu_buf_will_dirty(origin
->ds_dbuf
, tx
);
3313 dsl_deadlist_space_range(&clone
->ds_deadlist
,
3314 dsl_dataset_phys(origin
)->ds_prev_snap_txg
, UINT64_MAX
,
3315 &dsl_dataset_phys(origin
)->ds_unique_bytes
, &comp
, &uncomp
);
3320 rrw_enter(&clone
->ds_bp_rwlock
, RW_WRITER
, FTAG
);
3321 rrw_enter(&origin_head
->ds_bp_rwlock
, RW_WRITER
, FTAG
);
3323 tmp
= dsl_dataset_phys(origin_head
)->ds_bp
;
3324 dsl_dataset_phys(origin_head
)->ds_bp
=
3325 dsl_dataset_phys(clone
)->ds_bp
;
3326 dsl_dataset_phys(clone
)->ds_bp
= tmp
;
3327 rrw_exit(&origin_head
->ds_bp_rwlock
, FTAG
);
3328 rrw_exit(&clone
->ds_bp_rwlock
, FTAG
);
3331 /* set dd_*_bytes */
3333 int64_t dused
, dcomp
, duncomp
;
3334 uint64_t cdl_used
, cdl_comp
, cdl_uncomp
;
3335 uint64_t odl_used
, odl_comp
, odl_uncomp
;
3337 ASSERT3U(dsl_dir_phys(clone
->ds_dir
)->
3338 dd_used_breakdown
[DD_USED_SNAP
], ==, 0);
3340 dsl_deadlist_space(&clone
->ds_deadlist
,
3341 &cdl_used
, &cdl_comp
, &cdl_uncomp
);
3342 dsl_deadlist_space(&origin_head
->ds_deadlist
,
3343 &odl_used
, &odl_comp
, &odl_uncomp
);
3345 dused
= dsl_dataset_phys(clone
)->ds_referenced_bytes
+
3347 (dsl_dataset_phys(origin_head
)->ds_referenced_bytes
+
3349 dcomp
= dsl_dataset_phys(clone
)->ds_compressed_bytes
+
3351 (dsl_dataset_phys(origin_head
)->ds_compressed_bytes
+
3353 duncomp
= dsl_dataset_phys(clone
)->ds_uncompressed_bytes
+
3355 (dsl_dataset_phys(origin_head
)->ds_uncompressed_bytes
+
3358 dsl_dir_diduse_space(origin_head
->ds_dir
, DD_USED_HEAD
,
3359 dused
, dcomp
, duncomp
, tx
);
3360 dsl_dir_diduse_space(clone
->ds_dir
, DD_USED_HEAD
,
3361 -dused
, -dcomp
, -duncomp
, tx
);
3364 * The difference in the space used by snapshots is the
3365 * difference in snapshot space due to the head's
3366 * deadlist (since that's the only thing that's
3367 * changing that affects the snapused).
3369 dsl_deadlist_space_range(&clone
->ds_deadlist
,
3370 origin_head
->ds_dir
->dd_origin_txg
, UINT64_MAX
,
3371 &cdl_used
, &cdl_comp
, &cdl_uncomp
);
3372 dsl_deadlist_space_range(&origin_head
->ds_deadlist
,
3373 origin_head
->ds_dir
->dd_origin_txg
, UINT64_MAX
,
3374 &odl_used
, &odl_comp
, &odl_uncomp
);
3375 dsl_dir_transfer_space(origin_head
->ds_dir
, cdl_used
- odl_used
,
3376 DD_USED_HEAD
, DD_USED_SNAP
, tx
);
3379 /* swap ds_*_bytes */
3380 SWITCH64(dsl_dataset_phys(origin_head
)->ds_referenced_bytes
,
3381 dsl_dataset_phys(clone
)->ds_referenced_bytes
);
3382 SWITCH64(dsl_dataset_phys(origin_head
)->ds_compressed_bytes
,
3383 dsl_dataset_phys(clone
)->ds_compressed_bytes
);
3384 SWITCH64(dsl_dataset_phys(origin_head
)->ds_uncompressed_bytes
,
3385 dsl_dataset_phys(clone
)->ds_uncompressed_bytes
);
3386 SWITCH64(dsl_dataset_phys(origin_head
)->ds_unique_bytes
,
3387 dsl_dataset_phys(clone
)->ds_unique_bytes
);
3389 /* apply any parent delta for change in unconsumed refreservation */
3390 dsl_dir_diduse_space(origin_head
->ds_dir
, DD_USED_REFRSRV
,
3391 unused_refres_delta
, 0, 0, tx
);
3396 dsl_deadlist_close(&clone
->ds_deadlist
);
3397 dsl_deadlist_close(&origin_head
->ds_deadlist
);
3398 SWITCH64(dsl_dataset_phys(origin_head
)->ds_deadlist_obj
,
3399 dsl_dataset_phys(clone
)->ds_deadlist_obj
);
3400 dsl_deadlist_open(&clone
->ds_deadlist
, dp
->dp_meta_objset
,
3401 dsl_dataset_phys(clone
)->ds_deadlist_obj
);
3402 dsl_deadlist_open(&origin_head
->ds_deadlist
, dp
->dp_meta_objset
,
3403 dsl_dataset_phys(origin_head
)->ds_deadlist_obj
);
3405 dsl_scan_ds_clone_swapped(origin_head
, clone
, tx
);
3407 spa_history_log_internal_ds(clone
, "clone swap", tx
,
3408 "parent=%s", origin_head
->ds_dir
->dd_myname
);
3412 * Given a pool name and a dataset object number in that pool,
3413 * return the name of that dataset.
3416 dsl_dsobj_to_dsname(char *pname
, uint64_t obj
, char *buf
)
3422 error
= dsl_pool_hold(pname
, FTAG
, &dp
);
3426 error
= dsl_dataset_hold_obj(dp
, obj
, FTAG
, &ds
);
3428 dsl_dataset_name(ds
, buf
);
3429 dsl_dataset_rele(ds
, FTAG
);
3431 dsl_pool_rele(dp
, FTAG
);
3437 dsl_dataset_check_quota(dsl_dataset_t
*ds
, boolean_t check_quota
,
3438 uint64_t asize
, uint64_t inflight
, uint64_t *used
, uint64_t *ref_rsrv
)
3442 ASSERT3S(asize
, >, 0);
3445 * *ref_rsrv is the portion of asize that will come from any
3446 * unconsumed refreservation space.
3450 mutex_enter(&ds
->ds_lock
);
3452 * Make a space adjustment for reserved bytes.
3454 if (ds
->ds_reserved
> dsl_dataset_phys(ds
)->ds_unique_bytes
) {
3456 ds
->ds_reserved
- dsl_dataset_phys(ds
)->ds_unique_bytes
);
3458 (ds
->ds_reserved
- dsl_dataset_phys(ds
)->ds_unique_bytes
);
3460 asize
- MIN(asize
, parent_delta(ds
, asize
+ inflight
));
3463 if (!check_quota
|| ds
->ds_quota
== 0) {
3464 mutex_exit(&ds
->ds_lock
);
3468 * If they are requesting more space, and our current estimate
3469 * is over quota, they get to try again unless the actual
3470 * on-disk is over quota and there are no pending changes (which
3471 * may free up space for us).
3473 if (dsl_dataset_phys(ds
)->ds_referenced_bytes
+ inflight
>=
3476 dsl_dataset_phys(ds
)->ds_referenced_bytes
< ds
->ds_quota
)
3477 error
= SET_ERROR(ERESTART
);
3479 error
= SET_ERROR(EDQUOT
);
3481 mutex_exit(&ds
->ds_lock
);
3486 typedef struct dsl_dataset_set_qr_arg
{
3487 const char *ddsqra_name
;
3488 zprop_source_t ddsqra_source
;
3489 uint64_t ddsqra_value
;
3490 } dsl_dataset_set_qr_arg_t
;
3495 dsl_dataset_set_refquota_check(void *arg
, dmu_tx_t
*tx
)
3497 dsl_dataset_set_qr_arg_t
*ddsqra
= arg
;
3498 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3503 if (spa_version(dp
->dp_spa
) < SPA_VERSION_REFQUOTA
)
3504 return (SET_ERROR(ENOTSUP
));
3506 error
= dsl_dataset_hold(dp
, ddsqra
->ddsqra_name
, FTAG
, &ds
);
3510 if (ds
->ds_is_snapshot
) {
3511 dsl_dataset_rele(ds
, FTAG
);
3512 return (SET_ERROR(EINVAL
));
3515 error
= dsl_prop_predict(ds
->ds_dir
,
3516 zfs_prop_to_name(ZFS_PROP_REFQUOTA
),
3517 ddsqra
->ddsqra_source
, ddsqra
->ddsqra_value
, &newval
);
3519 dsl_dataset_rele(ds
, FTAG
);
3524 dsl_dataset_rele(ds
, FTAG
);
3528 if (newval
< dsl_dataset_phys(ds
)->ds_referenced_bytes
||
3529 newval
< ds
->ds_reserved
) {
3530 dsl_dataset_rele(ds
, FTAG
);
3531 return (SET_ERROR(ENOSPC
));
3534 dsl_dataset_rele(ds
, FTAG
);
3539 dsl_dataset_set_refquota_sync(void *arg
, dmu_tx_t
*tx
)
3541 dsl_dataset_set_qr_arg_t
*ddsqra
= arg
;
3542 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3546 VERIFY0(dsl_dataset_hold(dp
, ddsqra
->ddsqra_name
, FTAG
, &ds
));
3548 dsl_prop_set_sync_impl(ds
,
3549 zfs_prop_to_name(ZFS_PROP_REFQUOTA
),
3550 ddsqra
->ddsqra_source
, sizeof (ddsqra
->ddsqra_value
), 1,
3551 &ddsqra
->ddsqra_value
, tx
);
3553 VERIFY0(dsl_prop_get_int_ds(ds
,
3554 zfs_prop_to_name(ZFS_PROP_REFQUOTA
), &newval
));
3556 if (ds
->ds_quota
!= newval
) {
3557 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
3558 ds
->ds_quota
= newval
;
3560 dsl_dataset_rele(ds
, FTAG
);
3564 dsl_dataset_set_refquota(const char *dsname
, zprop_source_t source
,
3567 dsl_dataset_set_qr_arg_t ddsqra
;
3569 ddsqra
.ddsqra_name
= dsname
;
3570 ddsqra
.ddsqra_source
= source
;
3571 ddsqra
.ddsqra_value
= refquota
;
3573 return (dsl_sync_task(dsname
, dsl_dataset_set_refquota_check
,
3574 dsl_dataset_set_refquota_sync
, &ddsqra
, 0, ZFS_SPACE_CHECK_NONE
));
3578 dsl_dataset_set_refreservation_check(void *arg
, dmu_tx_t
*tx
)
3580 dsl_dataset_set_qr_arg_t
*ddsqra
= arg
;
3581 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3584 uint64_t newval
, unique
;
3586 if (spa_version(dp
->dp_spa
) < SPA_VERSION_REFRESERVATION
)
3587 return (SET_ERROR(ENOTSUP
));
3589 error
= dsl_dataset_hold(dp
, ddsqra
->ddsqra_name
, FTAG
, &ds
);
3593 if (ds
->ds_is_snapshot
) {
3594 dsl_dataset_rele(ds
, FTAG
);
3595 return (SET_ERROR(EINVAL
));
3598 error
= dsl_prop_predict(ds
->ds_dir
,
3599 zfs_prop_to_name(ZFS_PROP_REFRESERVATION
),
3600 ddsqra
->ddsqra_source
, ddsqra
->ddsqra_value
, &newval
);
3602 dsl_dataset_rele(ds
, FTAG
);
3607 * If we are doing the preliminary check in open context, the
3608 * space estimates may be inaccurate.
3610 if (!dmu_tx_is_syncing(tx
)) {
3611 dsl_dataset_rele(ds
, FTAG
);
3615 mutex_enter(&ds
->ds_lock
);
3616 if (!DS_UNIQUE_IS_ACCURATE(ds
))
3617 dsl_dataset_recalc_head_uniq(ds
);
3618 unique
= dsl_dataset_phys(ds
)->ds_unique_bytes
;
3619 mutex_exit(&ds
->ds_lock
);
3621 if (MAX(unique
, newval
) > MAX(unique
, ds
->ds_reserved
)) {
3622 uint64_t delta
= MAX(unique
, newval
) -
3623 MAX(unique
, ds
->ds_reserved
);
3626 dsl_dir_space_available(ds
->ds_dir
, NULL
, 0, B_TRUE
) ||
3627 (ds
->ds_quota
> 0 && newval
> ds
->ds_quota
)) {
3628 dsl_dataset_rele(ds
, FTAG
);
3629 return (SET_ERROR(ENOSPC
));
3633 dsl_dataset_rele(ds
, FTAG
);
3638 dsl_dataset_set_refreservation_sync_impl(dsl_dataset_t
*ds
,
3639 zprop_source_t source
, uint64_t value
, dmu_tx_t
*tx
)
3645 dsl_prop_set_sync_impl(ds
, zfs_prop_to_name(ZFS_PROP_REFRESERVATION
),
3646 source
, sizeof (value
), 1, &value
, tx
);
3648 VERIFY0(dsl_prop_get_int_ds(ds
,
3649 zfs_prop_to_name(ZFS_PROP_REFRESERVATION
), &newval
));
3651 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
3652 mutex_enter(&ds
->ds_dir
->dd_lock
);
3653 mutex_enter(&ds
->ds_lock
);
3654 ASSERT(DS_UNIQUE_IS_ACCURATE(ds
));
3655 unique
= dsl_dataset_phys(ds
)->ds_unique_bytes
;
3656 delta
= MAX(0, (int64_t)(newval
- unique
)) -
3657 MAX(0, (int64_t)(ds
->ds_reserved
- unique
));
3658 ds
->ds_reserved
= newval
;
3659 mutex_exit(&ds
->ds_lock
);
3661 dsl_dir_diduse_space(ds
->ds_dir
, DD_USED_REFRSRV
, delta
, 0, 0, tx
);
3662 mutex_exit(&ds
->ds_dir
->dd_lock
);
3666 dsl_dataset_set_refreservation_sync(void *arg
, dmu_tx_t
*tx
)
3668 dsl_dataset_set_qr_arg_t
*ddsqra
= arg
;
3669 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3672 VERIFY0(dsl_dataset_hold(dp
, ddsqra
->ddsqra_name
, FTAG
, &ds
));
3673 dsl_dataset_set_refreservation_sync_impl(ds
,
3674 ddsqra
->ddsqra_source
, ddsqra
->ddsqra_value
, tx
);
3675 dsl_dataset_rele(ds
, FTAG
);
3679 dsl_dataset_set_refreservation(const char *dsname
, zprop_source_t source
,
3680 uint64_t refreservation
)
3682 dsl_dataset_set_qr_arg_t ddsqra
;
3684 ddsqra
.ddsqra_name
= dsname
;
3685 ddsqra
.ddsqra_source
= source
;
3686 ddsqra
.ddsqra_value
= refreservation
;
3688 return (dsl_sync_task(dsname
, dsl_dataset_set_refreservation_check
,
3689 dsl_dataset_set_refreservation_sync
, &ddsqra
,
3690 0, ZFS_SPACE_CHECK_NONE
));
3694 * Return (in *usedp) the amount of space written in new that is not
3695 * present in oldsnap. New may be a snapshot or the head. Old must be
3696 * a snapshot before new, in new's filesystem (or its origin). If not then
3697 * fail and return EINVAL.
3699 * The written space is calculated by considering two components: First, we
3700 * ignore any freed space, and calculate the written as new's used space
3701 * minus old's used space. Next, we add in the amount of space that was freed
3702 * between the two snapshots, thus reducing new's used space relative to old's.
3703 * Specifically, this is the space that was born before old->ds_creation_txg,
3704 * and freed before new (ie. on new's deadlist or a previous deadlist).
3706 * space freed [---------------------]
3707 * snapshots ---O-------O--------O-------O------
3711 dsl_dataset_space_written(dsl_dataset_t
*oldsnap
, dsl_dataset_t
*new,
3712 uint64_t *usedp
, uint64_t *compp
, uint64_t *uncompp
)
3716 dsl_pool_t
*dp
= new->ds_dir
->dd_pool
;
3718 ASSERT(dsl_pool_config_held(dp
));
3721 *usedp
+= dsl_dataset_phys(new)->ds_referenced_bytes
;
3722 *usedp
-= dsl_dataset_phys(oldsnap
)->ds_referenced_bytes
;
3725 *compp
+= dsl_dataset_phys(new)->ds_compressed_bytes
;
3726 *compp
-= dsl_dataset_phys(oldsnap
)->ds_compressed_bytes
;
3729 *uncompp
+= dsl_dataset_phys(new)->ds_uncompressed_bytes
;
3730 *uncompp
-= dsl_dataset_phys(oldsnap
)->ds_uncompressed_bytes
;
3732 snapobj
= new->ds_object
;
3733 while (snapobj
!= oldsnap
->ds_object
) {
3734 dsl_dataset_t
*snap
;
3735 uint64_t used
, comp
, uncomp
;
3737 if (snapobj
== new->ds_object
) {
3740 err
= dsl_dataset_hold_obj(dp
, snapobj
, FTAG
, &snap
);
3745 if (dsl_dataset_phys(snap
)->ds_prev_snap_txg
==
3746 dsl_dataset_phys(oldsnap
)->ds_creation_txg
) {
3748 * The blocks in the deadlist can not be born after
3749 * ds_prev_snap_txg, so get the whole deadlist space,
3750 * which is more efficient (especially for old-format
3751 * deadlists). Unfortunately the deadlist code
3752 * doesn't have enough information to make this
3753 * optimization itself.
3755 dsl_deadlist_space(&snap
->ds_deadlist
,
3756 &used
, &comp
, &uncomp
);
3758 dsl_deadlist_space_range(&snap
->ds_deadlist
,
3759 0, dsl_dataset_phys(oldsnap
)->ds_creation_txg
,
3760 &used
, &comp
, &uncomp
);
3767 * If we get to the beginning of the chain of snapshots
3768 * (ds_prev_snap_obj == 0) before oldsnap, then oldsnap
3769 * was not a snapshot of/before new.
3771 snapobj
= dsl_dataset_phys(snap
)->ds_prev_snap_obj
;
3773 dsl_dataset_rele(snap
, FTAG
);
3775 err
= SET_ERROR(EINVAL
);
3784 * Return (in *usedp) the amount of space that will be reclaimed if firstsnap,
3785 * lastsnap, and all snapshots in between are deleted.
3787 * blocks that would be freed [---------------------------]
3788 * snapshots ---O-------O--------O-------O--------O
3789 * firstsnap lastsnap
3791 * This is the set of blocks that were born after the snap before firstsnap,
3792 * (birth > firstsnap->prev_snap_txg) and died before the snap after the
3793 * last snap (ie, is on lastsnap->ds_next->ds_deadlist or an earlier deadlist).
3794 * We calculate this by iterating over the relevant deadlists (from the snap
3795 * after lastsnap, backward to the snap after firstsnap), summing up the
3796 * space on the deadlist that was born after the snap before firstsnap.
3799 dsl_dataset_space_wouldfree(dsl_dataset_t
*firstsnap
,
3800 dsl_dataset_t
*lastsnap
,
3801 uint64_t *usedp
, uint64_t *compp
, uint64_t *uncompp
)
3805 dsl_pool_t
*dp
= firstsnap
->ds_dir
->dd_pool
;
3807 ASSERT(firstsnap
->ds_is_snapshot
);
3808 ASSERT(lastsnap
->ds_is_snapshot
);
3811 * Check that the snapshots are in the same dsl_dir, and firstsnap
3812 * is before lastsnap.
3814 if (firstsnap
->ds_dir
!= lastsnap
->ds_dir
||
3815 dsl_dataset_phys(firstsnap
)->ds_creation_txg
>
3816 dsl_dataset_phys(lastsnap
)->ds_creation_txg
)
3817 return (SET_ERROR(EINVAL
));
3819 *usedp
= *compp
= *uncompp
= 0;
3821 snapobj
= dsl_dataset_phys(lastsnap
)->ds_next_snap_obj
;
3822 while (snapobj
!= firstsnap
->ds_object
) {
3824 uint64_t used
, comp
, uncomp
;
3826 err
= dsl_dataset_hold_obj(dp
, snapobj
, FTAG
, &ds
);
3830 dsl_deadlist_space_range(&ds
->ds_deadlist
,
3831 dsl_dataset_phys(firstsnap
)->ds_prev_snap_txg
, UINT64_MAX
,
3832 &used
, &comp
, &uncomp
);
3837 snapobj
= dsl_dataset_phys(ds
)->ds_prev_snap_obj
;
3838 ASSERT3U(snapobj
, !=, 0);
3839 dsl_dataset_rele(ds
, FTAG
);
3845 * Return TRUE if 'earlier' is an earlier snapshot in 'later's timeline.
3846 * For example, they could both be snapshots of the same filesystem, and
3847 * 'earlier' is before 'later'. Or 'earlier' could be the origin of
3848 * 'later's filesystem. Or 'earlier' could be an older snapshot in the origin's
3849 * filesystem. Or 'earlier' could be the origin's origin.
3851 * If non-zero, earlier_txg is used instead of earlier's ds_creation_txg.
3854 dsl_dataset_is_before(dsl_dataset_t
*later
, dsl_dataset_t
*earlier
,
3855 uint64_t earlier_txg
)
3857 dsl_pool_t
*dp
= later
->ds_dir
->dd_pool
;
3861 ASSERT(dsl_pool_config_held(dp
));
3862 ASSERT(earlier
->ds_is_snapshot
|| earlier_txg
!= 0);
3864 if (earlier_txg
== 0)
3865 earlier_txg
= dsl_dataset_phys(earlier
)->ds_creation_txg
;
3867 if (later
->ds_is_snapshot
&&
3868 earlier_txg
>= dsl_dataset_phys(later
)->ds_creation_txg
)
3871 if (later
->ds_dir
== earlier
->ds_dir
)
3873 if (!dsl_dir_is_clone(later
->ds_dir
))
3876 if (dsl_dir_phys(later
->ds_dir
)->dd_origin_obj
== earlier
->ds_object
)
3878 dsl_dataset_t
*origin
;
3879 error
= dsl_dataset_hold_obj(dp
,
3880 dsl_dir_phys(later
->ds_dir
)->dd_origin_obj
, FTAG
, &origin
);
3883 ret
= dsl_dataset_is_before(origin
, earlier
, earlier_txg
);
3884 dsl_dataset_rele(origin
, FTAG
);
3889 dsl_dataset_zapify(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
3891 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
3892 dmu_object_zapify(mos
, ds
->ds_object
, DMU_OT_DSL_DATASET
, tx
);
3896 dsl_dataset_is_zapified(dsl_dataset_t
*ds
)
3898 dmu_object_info_t doi
;
3900 dmu_object_info_from_db(ds
->ds_dbuf
, &doi
);
3901 return (doi
.doi_type
== DMU_OTN_ZAP_METADATA
);
3905 dsl_dataset_has_resume_receive_state(dsl_dataset_t
*ds
)
3907 return (dsl_dataset_is_zapified(ds
) &&
3908 zap_contains(ds
->ds_dir
->dd_pool
->dp_meta_objset
,
3909 ds
->ds_object
, DS_FIELD_RESUME_TOGUID
) == 0);