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, 2018 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) 2016 Actifio, Inc. All rights reserved.
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/spa_impl.h>
51 #include <sys/zfs_znode.h>
52 #include <sys/zfs_onexit.h>
54 #include <sys/dsl_scan.h>
55 #include <sys/dsl_deadlist.h>
56 #include <sys/dsl_destroy.h>
57 #include <sys/dsl_userhold.h>
58 #include <sys/dsl_bookmark.h>
59 #include <sys/policy.h>
60 #include <sys/dmu_recv.h>
61 #include <sys/zio_compress.h>
62 #include <zfs_fletcher.h>
63 #include <sys/zio_checksum.h>
66 * The SPA supports block sizes up to 16MB. However, very large blocks
67 * can have an impact on i/o latency (e.g. tying up a spinning disk for
68 * ~300ms), and also potentially on the memory allocator. Therefore,
69 * we do not allow the recordsize to be set larger than zfs_max_recordsize
70 * (default 1MB). Larger blocks can be created by changing this tunable,
71 * and pools with larger blocks can always be imported and used, regardless
74 int zfs_max_recordsize
= 1 * 1024 * 1024;
76 #define SWITCH64(x, y) \
78 uint64_t __tmp = (x); \
83 #define DS_REF_MAX (1ULL << 62)
85 extern inline dsl_dataset_phys_t
*dsl_dataset_phys(dsl_dataset_t
*ds
);
87 static void dsl_dataset_set_remap_deadlist_object(dsl_dataset_t
*ds
,
88 uint64_t obj
, dmu_tx_t
*tx
);
89 static void dsl_dataset_unset_remap_deadlist_object(dsl_dataset_t
*ds
,
92 static void unload_zfeature(dsl_dataset_t
*ds
, spa_feature_t f
);
94 extern int spa_asize_inflation
;
96 static zil_header_t zero_zil
;
99 * Figure out how much of this delta should be propagated to the dsl_dir
100 * layer. If there's a refreservation, that space has already been
101 * partially accounted for in our ancestors.
104 parent_delta(dsl_dataset_t
*ds
, int64_t delta
)
106 dsl_dataset_phys_t
*ds_phys
;
107 uint64_t old_bytes
, new_bytes
;
109 if (ds
->ds_reserved
== 0)
112 ds_phys
= dsl_dataset_phys(ds
);
113 old_bytes
= MAX(ds_phys
->ds_unique_bytes
, ds
->ds_reserved
);
114 new_bytes
= MAX(ds_phys
->ds_unique_bytes
+ delta
, ds
->ds_reserved
);
116 ASSERT3U(ABS((int64_t)(new_bytes
- old_bytes
)), <=, ABS(delta
));
117 return (new_bytes
- old_bytes
);
121 dsl_dataset_block_born(dsl_dataset_t
*ds
, const blkptr_t
*bp
, dmu_tx_t
*tx
)
123 int used
, compressed
, uncompressed
;
126 used
= bp_get_dsize_sync(tx
->tx_pool
->dp_spa
, bp
);
127 compressed
= BP_GET_PSIZE(bp
);
128 uncompressed
= BP_GET_UCSIZE(bp
);
130 dprintf_bp(bp
, "ds=%p", ds
);
132 ASSERT(dmu_tx_is_syncing(tx
));
133 /* It could have been compressed away to nothing */
136 ASSERT(BP_GET_TYPE(bp
) != DMU_OT_NONE
);
137 ASSERT(DMU_OT_IS_VALID(BP_GET_TYPE(bp
)));
139 dsl_pool_mos_diduse_space(tx
->tx_pool
,
140 used
, compressed
, uncompressed
);
144 ASSERT3U(bp
->blk_birth
, >, dsl_dataset_phys(ds
)->ds_prev_snap_txg
);
145 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
146 mutex_enter(&ds
->ds_lock
);
147 delta
= parent_delta(ds
, used
);
148 dsl_dataset_phys(ds
)->ds_referenced_bytes
+= used
;
149 dsl_dataset_phys(ds
)->ds_compressed_bytes
+= compressed
;
150 dsl_dataset_phys(ds
)->ds_uncompressed_bytes
+= uncompressed
;
151 dsl_dataset_phys(ds
)->ds_unique_bytes
+= used
;
153 if (BP_GET_LSIZE(bp
) > SPA_OLD_MAXBLOCKSIZE
) {
154 ds
->ds_feature_activation
[SPA_FEATURE_LARGE_BLOCKS
] =
158 spa_feature_t f
= zio_checksum_to_feature(BP_GET_CHECKSUM(bp
));
159 if (f
!= SPA_FEATURE_NONE
) {
160 ASSERT3S(spa_feature_table
[f
].fi_type
, ==,
161 ZFEATURE_TYPE_BOOLEAN
);
162 ds
->ds_feature_activation
[f
] = (void *)B_TRUE
;
165 mutex_exit(&ds
->ds_lock
);
166 dsl_dir_diduse_space(ds
->ds_dir
, DD_USED_HEAD
, delta
,
167 compressed
, uncompressed
, tx
);
168 dsl_dir_transfer_space(ds
->ds_dir
, used
- delta
,
169 DD_USED_REFRSRV
, DD_USED_HEAD
, tx
);
173 * Called when the specified segment has been remapped, and is thus no
174 * longer referenced in the head dataset. The vdev must be indirect.
176 * If the segment is referenced by a snapshot, put it on the remap deadlist.
177 * Otherwise, add this segment to the obsolete spacemap.
180 dsl_dataset_block_remapped(dsl_dataset_t
*ds
, uint64_t vdev
, uint64_t offset
,
181 uint64_t size
, uint64_t birth
, dmu_tx_t
*tx
)
183 spa_t
*spa
= ds
->ds_dir
->dd_pool
->dp_spa
;
185 ASSERT(dmu_tx_is_syncing(tx
));
186 ASSERT(birth
<= tx
->tx_txg
);
187 ASSERT(!ds
->ds_is_snapshot
);
189 if (birth
> dsl_dataset_phys(ds
)->ds_prev_snap_txg
) {
190 spa_vdev_indirect_mark_obsolete(spa
, vdev
, offset
, size
, tx
);
193 dva_t
*dva
= &fakebp
.blk_dva
[0];
197 mutex_enter(&ds
->ds_remap_deadlist_lock
);
198 if (!dsl_dataset_remap_deadlist_exists(ds
)) {
199 dsl_dataset_create_remap_deadlist(ds
, tx
);
201 mutex_exit(&ds
->ds_remap_deadlist_lock
);
204 fakebp
.blk_birth
= birth
;
205 DVA_SET_VDEV(dva
, vdev
);
206 DVA_SET_OFFSET(dva
, offset
);
207 DVA_SET_ASIZE(dva
, size
);
209 dsl_deadlist_insert(&ds
->ds_remap_deadlist
, &fakebp
, tx
);
214 dsl_dataset_block_kill(dsl_dataset_t
*ds
, const blkptr_t
*bp
, dmu_tx_t
*tx
,
217 spa_t
*spa
= dmu_tx_pool(tx
)->dp_spa
;
219 int used
= bp_get_dsize_sync(spa
, bp
);
220 int compressed
= BP_GET_PSIZE(bp
);
221 int uncompressed
= BP_GET_UCSIZE(bp
);
226 ASSERT(dmu_tx_is_syncing(tx
));
227 ASSERT(bp
->blk_birth
<= tx
->tx_txg
);
230 dsl_free(tx
->tx_pool
, tx
->tx_txg
, bp
);
231 dsl_pool_mos_diduse_space(tx
->tx_pool
,
232 -used
, -compressed
, -uncompressed
);
235 ASSERT3P(tx
->tx_pool
, ==, ds
->ds_dir
->dd_pool
);
237 ASSERT(!ds
->ds_is_snapshot
);
238 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
240 if (bp
->blk_birth
> dsl_dataset_phys(ds
)->ds_prev_snap_txg
) {
243 dprintf_bp(bp
, "freeing ds=%llu", ds
->ds_object
);
244 dsl_free(tx
->tx_pool
, tx
->tx_txg
, bp
);
246 mutex_enter(&ds
->ds_lock
);
247 ASSERT(dsl_dataset_phys(ds
)->ds_unique_bytes
>= used
||
248 !DS_UNIQUE_IS_ACCURATE(ds
));
249 delta
= parent_delta(ds
, -used
);
250 dsl_dataset_phys(ds
)->ds_unique_bytes
-= used
;
251 mutex_exit(&ds
->ds_lock
);
252 dsl_dir_diduse_space(ds
->ds_dir
, DD_USED_HEAD
,
253 delta
, -compressed
, -uncompressed
, tx
);
254 dsl_dir_transfer_space(ds
->ds_dir
, -used
- delta
,
255 DD_USED_REFRSRV
, DD_USED_HEAD
, tx
);
257 dprintf_bp(bp
, "putting on dead list: %s", "");
260 * We are here as part of zio's write done callback,
261 * which means we're a zio interrupt thread. We can't
262 * call dsl_deadlist_insert() now because it may block
263 * waiting for I/O. Instead, put bp on the deferred
264 * queue and let dsl_pool_sync() finish the job.
266 bplist_append(&ds
->ds_pending_deadlist
, bp
);
268 dsl_deadlist_insert(&ds
->ds_deadlist
, bp
, tx
);
270 ASSERT3U(ds
->ds_prev
->ds_object
, ==,
271 dsl_dataset_phys(ds
)->ds_prev_snap_obj
);
272 ASSERT(dsl_dataset_phys(ds
->ds_prev
)->ds_num_children
> 0);
273 /* if (bp->blk_birth > prev prev snap txg) prev unique += bs */
274 if (dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
==
275 ds
->ds_object
&& bp
->blk_birth
>
276 dsl_dataset_phys(ds
->ds_prev
)->ds_prev_snap_txg
) {
277 dmu_buf_will_dirty(ds
->ds_prev
->ds_dbuf
, tx
);
278 mutex_enter(&ds
->ds_prev
->ds_lock
);
279 dsl_dataset_phys(ds
->ds_prev
)->ds_unique_bytes
+= used
;
280 mutex_exit(&ds
->ds_prev
->ds_lock
);
282 if (bp
->blk_birth
> ds
->ds_dir
->dd_origin_txg
) {
283 dsl_dir_transfer_space(ds
->ds_dir
, used
,
284 DD_USED_HEAD
, DD_USED_SNAP
, tx
);
287 mutex_enter(&ds
->ds_lock
);
288 ASSERT3U(dsl_dataset_phys(ds
)->ds_referenced_bytes
, >=, used
);
289 dsl_dataset_phys(ds
)->ds_referenced_bytes
-= used
;
290 ASSERT3U(dsl_dataset_phys(ds
)->ds_compressed_bytes
, >=, compressed
);
291 dsl_dataset_phys(ds
)->ds_compressed_bytes
-= compressed
;
292 ASSERT3U(dsl_dataset_phys(ds
)->ds_uncompressed_bytes
, >=, uncompressed
);
293 dsl_dataset_phys(ds
)->ds_uncompressed_bytes
-= uncompressed
;
294 mutex_exit(&ds
->ds_lock
);
299 struct feature_type_uint64_array_arg
{
305 unload_zfeature(dsl_dataset_t
*ds
, spa_feature_t f
)
307 switch (spa_feature_table
[f
].fi_type
) {
308 case ZFEATURE_TYPE_BOOLEAN
:
310 case ZFEATURE_TYPE_UINT64_ARRAY
:
312 struct feature_type_uint64_array_arg
*ftuaa
= ds
->ds_feature
[f
];
313 kmem_free(ftuaa
->array
, ftuaa
->length
* sizeof (uint64_t));
314 kmem_free(ftuaa
, sizeof (*ftuaa
));
318 panic("Invalid zfeature type %d", spa_feature_table
[f
].fi_type
);
323 load_zfeature(objset_t
*mos
, dsl_dataset_t
*ds
, spa_feature_t f
)
326 switch (spa_feature_table
[f
].fi_type
) {
327 case ZFEATURE_TYPE_BOOLEAN
:
328 err
= zap_contains(mos
, ds
->ds_object
,
329 spa_feature_table
[f
].fi_guid
);
331 ds
->ds_feature
[f
] = (void *)B_TRUE
;
333 ASSERT3U(err
, ==, ENOENT
);
337 case ZFEATURE_TYPE_UINT64_ARRAY
:
339 uint64_t int_size
, num_int
;
341 err
= zap_length(mos
, ds
->ds_object
,
342 spa_feature_table
[f
].fi_guid
, &int_size
, &num_int
);
344 ASSERT3U(err
, ==, ENOENT
);
348 ASSERT3U(int_size
, ==, sizeof (uint64_t));
349 data
= kmem_alloc(int_size
* num_int
, KM_SLEEP
);
350 VERIFY0(zap_lookup(mos
, ds
->ds_object
,
351 spa_feature_table
[f
].fi_guid
, int_size
, num_int
, data
));
352 struct feature_type_uint64_array_arg
*ftuaa
=
353 kmem_alloc(sizeof (*ftuaa
), KM_SLEEP
);
354 ftuaa
->length
= num_int
;
356 ds
->ds_feature
[f
] = ftuaa
;
360 panic("Invalid zfeature type %d", spa_feature_table
[f
].fi_type
);
366 * We have to release the fsid synchronously or we risk that a subsequent
367 * mount of the same dataset will fail to unique_insert the fsid. This
368 * failure would manifest itself as the fsid of this dataset changing
369 * between mounts which makes NFS clients quite unhappy.
372 dsl_dataset_evict_sync(void *dbu
)
374 dsl_dataset_t
*ds
= dbu
;
376 ASSERT(ds
->ds_owner
== NULL
);
378 unique_remove(ds
->ds_fsid_guid
);
382 dsl_dataset_evict_async(void *dbu
)
384 dsl_dataset_t
*ds
= dbu
;
386 ASSERT(ds
->ds_owner
== NULL
);
390 if (ds
->ds_objset
!= NULL
)
391 dmu_objset_evict(ds
->ds_objset
);
394 dsl_dataset_rele(ds
->ds_prev
, ds
);
398 bplist_destroy(&ds
->ds_pending_deadlist
);
399 if (dsl_deadlist_is_open(&ds
->ds_deadlist
))
400 dsl_deadlist_close(&ds
->ds_deadlist
);
401 if (dsl_deadlist_is_open(&ds
->ds_remap_deadlist
))
402 dsl_deadlist_close(&ds
->ds_remap_deadlist
);
404 dsl_dir_async_rele(ds
->ds_dir
, ds
);
406 ASSERT(!list_link_active(&ds
->ds_synced_link
));
408 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
409 if (dsl_dataset_feature_is_active(ds
, f
))
410 unload_zfeature(ds
, f
);
413 list_destroy(&ds
->ds_prop_cbs
);
414 mutex_destroy(&ds
->ds_lock
);
415 mutex_destroy(&ds
->ds_opening_lock
);
416 mutex_destroy(&ds
->ds_sendstream_lock
);
417 mutex_destroy(&ds
->ds_remap_deadlist_lock
);
418 zfs_refcount_destroy(&ds
->ds_longholds
);
419 rrw_destroy(&ds
->ds_bp_rwlock
);
421 kmem_free(ds
, sizeof (dsl_dataset_t
));
425 dsl_dataset_get_snapname(dsl_dataset_t
*ds
)
427 dsl_dataset_phys_t
*headphys
;
430 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
431 objset_t
*mos
= dp
->dp_meta_objset
;
433 if (ds
->ds_snapname
[0])
435 if (dsl_dataset_phys(ds
)->ds_next_snap_obj
== 0)
438 err
= dmu_bonus_hold(mos
, dsl_dir_phys(ds
->ds_dir
)->dd_head_dataset_obj
,
442 headphys
= headdbuf
->db_data
;
443 err
= zap_value_search(dp
->dp_meta_objset
,
444 headphys
->ds_snapnames_zapobj
, ds
->ds_object
, 0, ds
->ds_snapname
);
445 if (err
!= 0 && zfs_recover
== B_TRUE
) {
447 (void) snprintf(ds
->ds_snapname
, sizeof (ds
->ds_snapname
),
448 "SNAPOBJ=%llu-ERR=%d",
449 (unsigned long long)ds
->ds_object
, err
);
451 dmu_buf_rele(headdbuf
, FTAG
);
456 dsl_dataset_snap_lookup(dsl_dataset_t
*ds
, const char *name
, uint64_t *value
)
458 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
459 uint64_t snapobj
= dsl_dataset_phys(ds
)->ds_snapnames_zapobj
;
463 if (dsl_dataset_phys(ds
)->ds_flags
& DS_FLAG_CI_DATASET
)
466 err
= zap_lookup_norm(mos
, snapobj
, name
, 8, 1,
467 value
, mt
, NULL
, 0, NULL
);
468 if (err
== ENOTSUP
&& (mt
& MT_NORMALIZE
))
469 err
= zap_lookup(mos
, snapobj
, name
, 8, 1, value
);
474 dsl_dataset_snap_remove(dsl_dataset_t
*ds
, const char *name
, dmu_tx_t
*tx
,
477 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
478 uint64_t snapobj
= dsl_dataset_phys(ds
)->ds_snapnames_zapobj
;
482 dsl_dir_snap_cmtime_update(ds
->ds_dir
);
484 if (dsl_dataset_phys(ds
)->ds_flags
& DS_FLAG_CI_DATASET
)
487 err
= zap_remove_norm(mos
, snapobj
, name
, mt
, tx
);
488 if (err
== ENOTSUP
&& (mt
& MT_NORMALIZE
))
489 err
= zap_remove(mos
, snapobj
, name
, tx
);
491 if (err
== 0 && adj_cnt
)
492 dsl_fs_ss_count_adjust(ds
->ds_dir
, -1,
493 DD_FIELD_SNAPSHOT_COUNT
, tx
);
499 dsl_dataset_try_add_ref(dsl_pool_t
*dp
, dsl_dataset_t
*ds
, void *tag
)
501 dmu_buf_t
*dbuf
= ds
->ds_dbuf
;
502 boolean_t result
= B_FALSE
;
504 if (dbuf
!= NULL
&& dmu_buf_try_add_ref(dbuf
, dp
->dp_meta_objset
,
505 ds
->ds_object
, DMU_BONUS_BLKID
, tag
)) {
507 if (ds
== dmu_buf_get_user(dbuf
))
510 dmu_buf_rele(dbuf
, tag
);
517 dsl_dataset_hold_obj(dsl_pool_t
*dp
, uint64_t dsobj
, void *tag
,
520 objset_t
*mos
= dp
->dp_meta_objset
;
524 dmu_object_info_t doi
;
526 ASSERT(dsl_pool_config_held(dp
));
528 err
= dmu_bonus_hold(mos
, dsobj
, tag
, &dbuf
);
532 /* Make sure dsobj has the correct object type. */
533 dmu_object_info_from_db(dbuf
, &doi
);
534 if (doi
.doi_bonus_type
!= DMU_OT_DSL_DATASET
) {
535 dmu_buf_rele(dbuf
, tag
);
536 return (SET_ERROR(EINVAL
));
539 ds
= dmu_buf_get_user(dbuf
);
541 dsl_dataset_t
*winner
= NULL
;
543 ds
= kmem_zalloc(sizeof (dsl_dataset_t
), KM_SLEEP
);
545 ds
->ds_object
= dsobj
;
546 ds
->ds_is_snapshot
= dsl_dataset_phys(ds
)->ds_num_children
!= 0;
547 list_link_init(&ds
->ds_synced_link
);
549 err
= dsl_dir_hold_obj(dp
, dsl_dataset_phys(ds
)->ds_dir_obj
,
550 NULL
, ds
, &ds
->ds_dir
);
552 kmem_free(ds
, sizeof (dsl_dataset_t
));
553 dmu_buf_rele(dbuf
, tag
);
557 mutex_init(&ds
->ds_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
558 mutex_init(&ds
->ds_opening_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
559 mutex_init(&ds
->ds_sendstream_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
560 mutex_init(&ds
->ds_remap_deadlist_lock
,
561 NULL
, MUTEX_DEFAULT
, NULL
);
562 rrw_init(&ds
->ds_bp_rwlock
, B_FALSE
);
563 zfs_refcount_create(&ds
->ds_longholds
);
565 bplist_create(&ds
->ds_pending_deadlist
);
567 list_create(&ds
->ds_sendstreams
, sizeof (dmu_sendarg_t
),
568 offsetof(dmu_sendarg_t
, dsa_link
));
570 list_create(&ds
->ds_prop_cbs
, sizeof (dsl_prop_cb_record_t
),
571 offsetof(dsl_prop_cb_record_t
, cbr_ds_node
));
573 if (doi
.doi_type
== DMU_OTN_ZAP_METADATA
) {
576 for (f
= 0; f
< SPA_FEATURES
; f
++) {
577 if (!(spa_feature_table
[f
].fi_flags
&
578 ZFEATURE_FLAG_PER_DATASET
))
580 err
= load_zfeature(mos
, ds
, f
);
584 if (!ds
->ds_is_snapshot
) {
585 ds
->ds_snapname
[0] = '\0';
586 if (dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0) {
587 err
= dsl_dataset_hold_obj(dp
,
588 dsl_dataset_phys(ds
)->ds_prev_snap_obj
,
591 if (doi
.doi_type
== DMU_OTN_ZAP_METADATA
) {
592 int zaperr
= zap_lookup(mos
, ds
->ds_object
,
593 DS_FIELD_BOOKMARK_NAMES
,
594 sizeof (ds
->ds_bookmarks
), 1,
596 if (zaperr
!= ENOENT
)
600 if (zfs_flags
& ZFS_DEBUG_SNAPNAMES
)
601 err
= dsl_dataset_get_snapname(ds
);
603 dsl_dataset_phys(ds
)->ds_userrefs_obj
!= 0) {
605 ds
->ds_dir
->dd_pool
->dp_meta_objset
,
606 dsl_dataset_phys(ds
)->ds_userrefs_obj
,
611 if (err
== 0 && !ds
->ds_is_snapshot
) {
612 err
= dsl_prop_get_int_ds(ds
,
613 zfs_prop_to_name(ZFS_PROP_REFRESERVATION
),
616 err
= dsl_prop_get_int_ds(ds
,
617 zfs_prop_to_name(ZFS_PROP_REFQUOTA
),
621 ds
->ds_reserved
= ds
->ds_quota
= 0;
624 if (err
== 0 && ds
->ds_dir
->dd_crypto_obj
!= 0 &&
625 ds
->ds_is_snapshot
&&
626 zap_contains(mos
, dsobj
, DS_FIELD_IVSET_GUID
) != 0) {
627 dp
->dp_spa
->spa_errata
=
628 ZPOOL_ERRATA_ZOL_8308_ENCRYPTION
;
631 dsl_deadlist_open(&ds
->ds_deadlist
,
632 mos
, dsl_dataset_phys(ds
)->ds_deadlist_obj
);
633 uint64_t remap_deadlist_obj
=
634 dsl_dataset_get_remap_deadlist_object(ds
);
635 if (remap_deadlist_obj
!= 0) {
636 dsl_deadlist_open(&ds
->ds_remap_deadlist
, mos
,
640 dmu_buf_init_user(&ds
->ds_dbu
, dsl_dataset_evict_sync
,
641 dsl_dataset_evict_async
, &ds
->ds_dbuf
);
643 winner
= dmu_buf_set_user_ie(dbuf
, &ds
->ds_dbu
);
645 if (err
!= 0 || winner
!= NULL
) {
646 bplist_destroy(&ds
->ds_pending_deadlist
);
647 dsl_deadlist_close(&ds
->ds_deadlist
);
648 if (dsl_deadlist_is_open(&ds
->ds_remap_deadlist
))
649 dsl_deadlist_close(&ds
->ds_remap_deadlist
);
651 dsl_dataset_rele(ds
->ds_prev
, ds
);
652 dsl_dir_rele(ds
->ds_dir
, ds
);
653 list_destroy(&ds
->ds_prop_cbs
);
654 list_destroy(&ds
->ds_sendstreams
);
655 mutex_destroy(&ds
->ds_lock
);
656 mutex_destroy(&ds
->ds_opening_lock
);
657 mutex_destroy(&ds
->ds_sendstream_lock
);
658 mutex_destroy(&ds
->ds_remap_deadlist_lock
);
659 zfs_refcount_destroy(&ds
->ds_longholds
);
660 rrw_destroy(&ds
->ds_bp_rwlock
);
661 kmem_free(ds
, sizeof (dsl_dataset_t
));
663 dmu_buf_rele(dbuf
, tag
);
669 unique_insert(dsl_dataset_phys(ds
)->ds_fsid_guid
);
670 if (ds
->ds_fsid_guid
!=
671 dsl_dataset_phys(ds
)->ds_fsid_guid
) {
672 zfs_dbgmsg("ds_fsid_guid changed from "
673 "%llx to %llx for pool %s dataset id %llu",
675 dsl_dataset_phys(ds
)->ds_fsid_guid
,
676 (long long)ds
->ds_fsid_guid
,
677 spa_name(dp
->dp_spa
),
683 ASSERT3P(ds
->ds_dbuf
, ==, dbuf
);
684 ASSERT3P(dsl_dataset_phys(ds
), ==, dbuf
->db_data
);
685 ASSERT(dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0 ||
686 spa_version(dp
->dp_spa
) < SPA_VERSION_ORIGIN
||
687 dp
->dp_origin_snap
== NULL
|| ds
== dp
->dp_origin_snap
);
694 dsl_dataset_create_key_mapping(dsl_dataset_t
*ds
)
696 dsl_dir_t
*dd
= ds
->ds_dir
;
698 if (dd
->dd_crypto_obj
== 0)
701 return (spa_keystore_create_mapping(dd
->dd_pool
->dp_spa
,
702 ds
, ds
, &ds
->ds_key_mapping
));
706 dsl_dataset_hold_obj_flags(dsl_pool_t
*dp
, uint64_t dsobj
,
707 ds_hold_flags_t flags
, void *tag
, dsl_dataset_t
**dsp
)
711 err
= dsl_dataset_hold_obj(dp
, dsobj
, tag
, dsp
);
715 ASSERT3P(*dsp
, !=, NULL
);
717 if (flags
& DS_HOLD_FLAG_DECRYPT
) {
718 err
= dsl_dataset_create_key_mapping(*dsp
);
720 dsl_dataset_rele(*dsp
, tag
);
727 dsl_dataset_hold_flags(dsl_pool_t
*dp
, const char *name
, ds_hold_flags_t flags
,
728 void *tag
, dsl_dataset_t
**dsp
)
731 const char *snapname
;
736 err
= dsl_dir_hold(dp
, name
, FTAG
, &dd
, &snapname
);
740 ASSERT(dsl_pool_config_held(dp
));
741 obj
= dsl_dir_phys(dd
)->dd_head_dataset_obj
;
743 err
= dsl_dataset_hold_obj_flags(dp
, obj
, flags
, tag
, &ds
);
745 err
= SET_ERROR(ENOENT
);
747 /* we may be looking for a snapshot */
748 if (err
== 0 && snapname
!= NULL
) {
749 dsl_dataset_t
*snap_ds
;
751 if (*snapname
++ != '@') {
752 dsl_dataset_rele_flags(ds
, flags
, tag
);
753 dsl_dir_rele(dd
, FTAG
);
754 return (SET_ERROR(ENOENT
));
757 dprintf("looking for snapshot '%s'\n", snapname
);
758 err
= dsl_dataset_snap_lookup(ds
, snapname
, &obj
);
760 err
= dsl_dataset_hold_obj_flags(dp
, obj
, flags
, tag
,
763 dsl_dataset_rele_flags(ds
, flags
, tag
);
766 mutex_enter(&snap_ds
->ds_lock
);
767 if (snap_ds
->ds_snapname
[0] == 0)
768 (void) strlcpy(snap_ds
->ds_snapname
, snapname
,
769 sizeof (snap_ds
->ds_snapname
));
770 mutex_exit(&snap_ds
->ds_lock
);
776 dsl_dir_rele(dd
, FTAG
);
781 dsl_dataset_hold(dsl_pool_t
*dp
, const char *name
, void *tag
,
784 return (dsl_dataset_hold_flags(dp
, name
, 0, tag
, dsp
));
788 dsl_dataset_own_obj(dsl_pool_t
*dp
, uint64_t dsobj
, ds_hold_flags_t flags
,
789 void *tag
, dsl_dataset_t
**dsp
)
791 int err
= dsl_dataset_hold_obj_flags(dp
, dsobj
, flags
, tag
, dsp
);
794 if (!dsl_dataset_tryown(*dsp
, tag
)) {
795 dsl_dataset_rele_flags(*dsp
, flags
, tag
);
797 return (SET_ERROR(EBUSY
));
803 dsl_dataset_own(dsl_pool_t
*dp
, const char *name
, ds_hold_flags_t flags
,
804 void *tag
, dsl_dataset_t
**dsp
)
806 int err
= dsl_dataset_hold_flags(dp
, name
, flags
, tag
, dsp
);
809 if (!dsl_dataset_tryown(*dsp
, tag
)) {
810 dsl_dataset_rele_flags(*dsp
, flags
, tag
);
811 return (SET_ERROR(EBUSY
));
817 * See the comment above dsl_pool_hold() for details. In summary, a long
818 * hold is used to prevent destruction of a dataset while the pool hold
819 * is dropped, allowing other concurrent operations (e.g. spa_sync()).
821 * The dataset and pool must be held when this function is called. After it
822 * is called, the pool hold may be released while the dataset is still held
826 dsl_dataset_long_hold(dsl_dataset_t
*ds
, void *tag
)
828 ASSERT(dsl_pool_config_held(ds
->ds_dir
->dd_pool
));
829 (void) zfs_refcount_add(&ds
->ds_longholds
, tag
);
833 dsl_dataset_long_rele(dsl_dataset_t
*ds
, void *tag
)
835 (void) zfs_refcount_remove(&ds
->ds_longholds
, tag
);
838 /* Return B_TRUE if there are any long holds on this dataset. */
840 dsl_dataset_long_held(dsl_dataset_t
*ds
)
842 return (!zfs_refcount_is_zero(&ds
->ds_longholds
));
846 dsl_dataset_name(dsl_dataset_t
*ds
, char *name
)
849 (void) strcpy(name
, "mos");
851 dsl_dir_name(ds
->ds_dir
, name
);
852 VERIFY0(dsl_dataset_get_snapname(ds
));
853 if (ds
->ds_snapname
[0]) {
854 VERIFY3U(strlcat(name
, "@", ZFS_MAX_DATASET_NAME_LEN
),
855 <, ZFS_MAX_DATASET_NAME_LEN
);
857 * We use a "recursive" mutex so that we
858 * can call dprintf_ds() with ds_lock held.
860 if (!MUTEX_HELD(&ds
->ds_lock
)) {
861 mutex_enter(&ds
->ds_lock
);
862 VERIFY3U(strlcat(name
, ds
->ds_snapname
,
863 ZFS_MAX_DATASET_NAME_LEN
), <,
864 ZFS_MAX_DATASET_NAME_LEN
);
865 mutex_exit(&ds
->ds_lock
);
867 VERIFY3U(strlcat(name
, ds
->ds_snapname
,
868 ZFS_MAX_DATASET_NAME_LEN
), <,
869 ZFS_MAX_DATASET_NAME_LEN
);
876 dsl_dataset_namelen(dsl_dataset_t
*ds
)
878 VERIFY0(dsl_dataset_get_snapname(ds
));
879 mutex_enter(&ds
->ds_lock
);
880 int len
= strlen(ds
->ds_snapname
);
881 mutex_exit(&ds
->ds_lock
);
882 /* add '@' if ds is a snap */
885 len
+= dsl_dir_namelen(ds
->ds_dir
);
890 dsl_dataset_rele(dsl_dataset_t
*ds
, void *tag
)
892 dmu_buf_rele(ds
->ds_dbuf
, tag
);
896 dsl_dataset_remove_key_mapping(dsl_dataset_t
*ds
)
898 dsl_dir_t
*dd
= ds
->ds_dir
;
900 if (dd
== NULL
|| dd
->dd_crypto_obj
== 0)
903 (void) spa_keystore_remove_mapping(dd
->dd_pool
->dp_spa
,
908 dsl_dataset_rele_flags(dsl_dataset_t
*ds
, ds_hold_flags_t flags
, void *tag
)
910 if (flags
& DS_HOLD_FLAG_DECRYPT
)
911 dsl_dataset_remove_key_mapping(ds
);
913 dsl_dataset_rele(ds
, tag
);
917 dsl_dataset_disown(dsl_dataset_t
*ds
, ds_hold_flags_t flags
, void *tag
)
919 ASSERT3P(ds
->ds_owner
, ==, tag
);
920 ASSERT(ds
->ds_dbuf
!= NULL
);
922 mutex_enter(&ds
->ds_lock
);
924 mutex_exit(&ds
->ds_lock
);
925 dsl_dataset_long_rele(ds
, tag
);
926 dsl_dataset_rele_flags(ds
, flags
, tag
);
930 dsl_dataset_tryown(dsl_dataset_t
*ds
, void *tag
)
932 boolean_t gotit
= FALSE
;
934 ASSERT(dsl_pool_config_held(ds
->ds_dir
->dd_pool
));
935 mutex_enter(&ds
->ds_lock
);
936 if (ds
->ds_owner
== NULL
&& !DS_IS_INCONSISTENT(ds
)) {
938 dsl_dataset_long_hold(ds
, tag
);
941 mutex_exit(&ds
->ds_lock
);
946 dsl_dataset_has_owner(dsl_dataset_t
*ds
)
949 mutex_enter(&ds
->ds_lock
);
950 rv
= (ds
->ds_owner
!= NULL
);
951 mutex_exit(&ds
->ds_lock
);
956 zfeature_active(spa_feature_t f
, void *arg
)
958 switch (spa_feature_table
[f
].fi_type
) {
959 case ZFEATURE_TYPE_BOOLEAN
: {
960 boolean_t val
= (boolean_t
)arg
;
961 ASSERT(val
== B_FALSE
|| val
== B_TRUE
);
964 case ZFEATURE_TYPE_UINT64_ARRAY
:
966 * In this case, arg is a uint64_t array. The feature is active
967 * if the array is non-null.
969 return (arg
!= NULL
);
971 panic("Invalid zfeature type %d", spa_feature_table
[f
].fi_type
);
977 dsl_dataset_feature_is_active(dsl_dataset_t
*ds
, spa_feature_t f
)
979 return (zfeature_active(f
, ds
->ds_feature
[f
]));
983 * The buffers passed out by this function are references to internal buffers;
984 * they should not be freed by callers of this function, and they should not be
985 * used after the dataset has been released.
988 dsl_dataset_get_uint64_array_feature(dsl_dataset_t
*ds
, spa_feature_t f
,
989 uint64_t *outlength
, uint64_t **outp
)
991 VERIFY(spa_feature_table
[f
].fi_type
& ZFEATURE_TYPE_UINT64_ARRAY
);
992 if (!dsl_dataset_feature_is_active(ds
, f
)) {
995 struct feature_type_uint64_array_arg
*ftuaa
= ds
->ds_feature
[f
];
996 *outp
= ftuaa
->array
;
997 *outlength
= ftuaa
->length
;
1002 dsl_dataset_activate_feature(uint64_t dsobj
, spa_feature_t f
, void *arg
,
1005 spa_t
*spa
= dmu_tx_pool(tx
)->dp_spa
;
1006 objset_t
*mos
= dmu_tx_pool(tx
)->dp_meta_objset
;
1009 VERIFY(spa_feature_table
[f
].fi_flags
& ZFEATURE_FLAG_PER_DATASET
);
1011 spa_feature_incr(spa
, f
, tx
);
1012 dmu_object_zapify(mos
, dsobj
, DMU_OT_DSL_DATASET
, tx
);
1014 switch (spa_feature_table
[f
].fi_type
) {
1015 case ZFEATURE_TYPE_BOOLEAN
:
1016 ASSERT3S((boolean_t
)arg
, ==, B_TRUE
);
1017 VERIFY0(zap_add(mos
, dsobj
, spa_feature_table
[f
].fi_guid
,
1018 sizeof (zero
), 1, &zero
, tx
));
1020 case ZFEATURE_TYPE_UINT64_ARRAY
:
1022 struct feature_type_uint64_array_arg
*ftuaa
= arg
;
1023 VERIFY0(zap_add(mos
, dsobj
, spa_feature_table
[f
].fi_guid
,
1024 sizeof (uint64_t), ftuaa
->length
, ftuaa
->array
, tx
));
1028 panic("Invalid zfeature type %d", spa_feature_table
[f
].fi_type
);
1033 dsl_dataset_deactivate_feature_impl(dsl_dataset_t
*ds
, spa_feature_t f
,
1036 spa_t
*spa
= dmu_tx_pool(tx
)->dp_spa
;
1037 objset_t
*mos
= dmu_tx_pool(tx
)->dp_meta_objset
;
1038 uint64_t dsobj
= ds
->ds_object
;
1040 VERIFY(spa_feature_table
[f
].fi_flags
& ZFEATURE_FLAG_PER_DATASET
);
1042 VERIFY0(zap_remove(mos
, dsobj
, spa_feature_table
[f
].fi_guid
, tx
));
1043 spa_feature_decr(spa
, f
, tx
);
1044 ds
->ds_feature
[f
] = NULL
;
1048 dsl_dataset_deactivate_feature(dsl_dataset_t
*ds
, spa_feature_t f
, dmu_tx_t
*tx
)
1050 unload_zfeature(ds
, f
);
1051 dsl_dataset_deactivate_feature_impl(ds
, f
, tx
);
1055 dsl_dataset_create_sync_dd(dsl_dir_t
*dd
, dsl_dataset_t
*origin
,
1056 dsl_crypto_params_t
*dcp
, uint64_t flags
, dmu_tx_t
*tx
)
1058 dsl_pool_t
*dp
= dd
->dd_pool
;
1060 dsl_dataset_phys_t
*dsphys
;
1062 objset_t
*mos
= dp
->dp_meta_objset
;
1065 origin
= dp
->dp_origin_snap
;
1067 ASSERT(origin
== NULL
|| origin
->ds_dir
->dd_pool
== dp
);
1068 ASSERT(origin
== NULL
|| dsl_dataset_phys(origin
)->ds_num_children
> 0);
1069 ASSERT(dmu_tx_is_syncing(tx
));
1070 ASSERT(dsl_dir_phys(dd
)->dd_head_dataset_obj
== 0);
1072 dsobj
= dmu_object_alloc(mos
, DMU_OT_DSL_DATASET
, 0,
1073 DMU_OT_DSL_DATASET
, sizeof (dsl_dataset_phys_t
), tx
);
1074 VERIFY0(dmu_bonus_hold(mos
, dsobj
, FTAG
, &dbuf
));
1075 dmu_buf_will_dirty(dbuf
, tx
);
1076 dsphys
= dbuf
->db_data
;
1077 bzero(dsphys
, sizeof (dsl_dataset_phys_t
));
1078 dsphys
->ds_dir_obj
= dd
->dd_object
;
1079 dsphys
->ds_flags
= flags
;
1080 dsphys
->ds_fsid_guid
= unique_create();
1081 (void) random_get_pseudo_bytes((void*)&dsphys
->ds_guid
,
1082 sizeof (dsphys
->ds_guid
));
1083 dsphys
->ds_snapnames_zapobj
=
1084 zap_create_norm(mos
, U8_TEXTPREP_TOUPPER
, DMU_OT_DSL_DS_SNAP_MAP
,
1085 DMU_OT_NONE
, 0, tx
);
1086 dsphys
->ds_creation_time
= gethrestime_sec();
1087 dsphys
->ds_creation_txg
= tx
->tx_txg
== TXG_INITIAL
? 1 : tx
->tx_txg
;
1089 if (origin
== NULL
) {
1090 dsphys
->ds_deadlist_obj
= dsl_deadlist_alloc(mos
, tx
);
1092 dsl_dataset_t
*ohds
; /* head of the origin snapshot */
1094 dsphys
->ds_prev_snap_obj
= origin
->ds_object
;
1095 dsphys
->ds_prev_snap_txg
=
1096 dsl_dataset_phys(origin
)->ds_creation_txg
;
1097 dsphys
->ds_referenced_bytes
=
1098 dsl_dataset_phys(origin
)->ds_referenced_bytes
;
1099 dsphys
->ds_compressed_bytes
=
1100 dsl_dataset_phys(origin
)->ds_compressed_bytes
;
1101 dsphys
->ds_uncompressed_bytes
=
1102 dsl_dataset_phys(origin
)->ds_uncompressed_bytes
;
1103 rrw_enter(&origin
->ds_bp_rwlock
, RW_READER
, FTAG
);
1104 dsphys
->ds_bp
= dsl_dataset_phys(origin
)->ds_bp
;
1105 rrw_exit(&origin
->ds_bp_rwlock
, FTAG
);
1108 * Inherit flags that describe the dataset's contents
1109 * (INCONSISTENT) or properties (Case Insensitive).
1111 dsphys
->ds_flags
|= dsl_dataset_phys(origin
)->ds_flags
&
1112 (DS_FLAG_INCONSISTENT
| DS_FLAG_CI_DATASET
);
1114 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
1115 if (zfeature_active(f
, origin
->ds_feature
[f
])) {
1116 dsl_dataset_activate_feature(dsobj
, f
,
1117 origin
->ds_feature
[f
], tx
);
1121 dmu_buf_will_dirty(origin
->ds_dbuf
, tx
);
1122 dsl_dataset_phys(origin
)->ds_num_children
++;
1124 VERIFY0(dsl_dataset_hold_obj(dp
,
1125 dsl_dir_phys(origin
->ds_dir
)->dd_head_dataset_obj
,
1127 dsphys
->ds_deadlist_obj
= dsl_deadlist_clone(&ohds
->ds_deadlist
,
1128 dsphys
->ds_prev_snap_txg
, dsphys
->ds_prev_snap_obj
, tx
);
1129 dsl_dataset_rele(ohds
, FTAG
);
1131 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_NEXT_CLONES
) {
1132 if (dsl_dataset_phys(origin
)->ds_next_clones_obj
== 0) {
1133 dsl_dataset_phys(origin
)->ds_next_clones_obj
=
1135 DMU_OT_NEXT_CLONES
, DMU_OT_NONE
, 0, tx
);
1137 VERIFY0(zap_add_int(mos
,
1138 dsl_dataset_phys(origin
)->ds_next_clones_obj
,
1142 dmu_buf_will_dirty(dd
->dd_dbuf
, tx
);
1143 dsl_dir_phys(dd
)->dd_origin_obj
= origin
->ds_object
;
1144 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_DIR_CLONES
) {
1145 if (dsl_dir_phys(origin
->ds_dir
)->dd_clones
== 0) {
1146 dmu_buf_will_dirty(origin
->ds_dir
->dd_dbuf
, tx
);
1147 dsl_dir_phys(origin
->ds_dir
)->dd_clones
=
1149 DMU_OT_DSL_CLONES
, DMU_OT_NONE
, 0, tx
);
1151 VERIFY0(zap_add_int(mos
,
1152 dsl_dir_phys(origin
->ds_dir
)->dd_clones
,
1157 /* handle encryption */
1158 dsl_dataset_create_crypt_sync(dsobj
, dd
, origin
, dcp
, tx
);
1160 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_UNIQUE_ACCURATE
)
1161 dsphys
->ds_flags
|= DS_FLAG_UNIQUE_ACCURATE
;
1163 dmu_buf_rele(dbuf
, FTAG
);
1165 dmu_buf_will_dirty(dd
->dd_dbuf
, tx
);
1166 dsl_dir_phys(dd
)->dd_head_dataset_obj
= dsobj
;
1172 dsl_dataset_zero_zil(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
1176 VERIFY0(dmu_objset_from_ds(ds
, &os
));
1177 if (bcmp(&os
->os_zil_header
, &zero_zil
, sizeof (zero_zil
)) != 0) {
1178 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
1181 bzero(&os
->os_zil_header
, sizeof (os
->os_zil_header
));
1182 if (os
->os_encrypted
)
1183 os
->os_next_write_raw
[tx
->tx_txg
& TXG_MASK
] = B_TRUE
;
1185 zio
= zio_root(dp
->dp_spa
, NULL
, NULL
, ZIO_FLAG_MUSTSUCCEED
);
1186 dsl_dataset_sync(ds
, zio
, tx
);
1187 VERIFY0(zio_wait(zio
));
1189 /* dsl_dataset_sync_done will drop this reference. */
1190 dmu_buf_add_ref(ds
->ds_dbuf
, ds
);
1191 dsl_dataset_sync_done(ds
, tx
);
1196 dsl_dataset_create_sync(dsl_dir_t
*pdd
, const char *lastname
,
1197 dsl_dataset_t
*origin
, uint64_t flags
, cred_t
*cr
,
1198 dsl_crypto_params_t
*dcp
, dmu_tx_t
*tx
)
1200 dsl_pool_t
*dp
= pdd
->dd_pool
;
1201 uint64_t dsobj
, ddobj
;
1204 ASSERT(dmu_tx_is_syncing(tx
));
1205 ASSERT(lastname
[0] != '@');
1207 ddobj
= dsl_dir_create_sync(dp
, pdd
, lastname
, tx
);
1208 VERIFY0(dsl_dir_hold_obj(dp
, ddobj
, lastname
, FTAG
, &dd
));
1210 dsobj
= dsl_dataset_create_sync_dd(dd
, origin
, dcp
,
1211 flags
& ~DS_CREATE_FLAG_NODIRTY
, tx
);
1213 dsl_deleg_set_create_perms(dd
, tx
, cr
);
1216 * Since we're creating a new node we know it's a leaf, so we can
1217 * initialize the counts if the limit feature is active.
1219 if (spa_feature_is_active(dp
->dp_spa
, SPA_FEATURE_FS_SS_LIMIT
)) {
1221 objset_t
*os
= dd
->dd_pool
->dp_meta_objset
;
1223 dsl_dir_zapify(dd
, tx
);
1224 VERIFY0(zap_add(os
, dd
->dd_object
, DD_FIELD_FILESYSTEM_COUNT
,
1225 sizeof (cnt
), 1, &cnt
, tx
));
1226 VERIFY0(zap_add(os
, dd
->dd_object
, DD_FIELD_SNAPSHOT_COUNT
,
1227 sizeof (cnt
), 1, &cnt
, tx
));
1230 dsl_dir_rele(dd
, FTAG
);
1233 * If we are creating a clone, make sure we zero out any stale
1234 * data from the origin snapshots zil header.
1236 if (origin
!= NULL
&& !(flags
& DS_CREATE_FLAG_NODIRTY
)) {
1239 VERIFY0(dsl_dataset_hold_obj(dp
, dsobj
, FTAG
, &ds
));
1240 dsl_dataset_zero_zil(ds
, tx
);
1241 dsl_dataset_rele(ds
, FTAG
);
1248 * The unique space in the head dataset can be calculated by subtracting
1249 * the space used in the most recent snapshot, that is still being used
1250 * in this file system, from the space currently in use. To figure out
1251 * the space in the most recent snapshot still in use, we need to take
1252 * the total space used in the snapshot and subtract out the space that
1253 * has been freed up since the snapshot was taken.
1256 dsl_dataset_recalc_head_uniq(dsl_dataset_t
*ds
)
1259 uint64_t dlused
, dlcomp
, dluncomp
;
1261 ASSERT(!ds
->ds_is_snapshot
);
1263 if (dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0)
1264 mrs_used
= dsl_dataset_phys(ds
->ds_prev
)->ds_referenced_bytes
;
1268 dsl_deadlist_space(&ds
->ds_deadlist
, &dlused
, &dlcomp
, &dluncomp
);
1270 ASSERT3U(dlused
, <=, mrs_used
);
1271 dsl_dataset_phys(ds
)->ds_unique_bytes
=
1272 dsl_dataset_phys(ds
)->ds_referenced_bytes
- (mrs_used
- dlused
);
1274 if (spa_version(ds
->ds_dir
->dd_pool
->dp_spa
) >=
1275 SPA_VERSION_UNIQUE_ACCURATE
)
1276 dsl_dataset_phys(ds
)->ds_flags
|= DS_FLAG_UNIQUE_ACCURATE
;
1280 dsl_dataset_remove_from_next_clones(dsl_dataset_t
*ds
, uint64_t obj
,
1283 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
1284 ASSERTV(uint64_t count
);
1287 ASSERT(dsl_dataset_phys(ds
)->ds_num_children
>= 2);
1288 err
= zap_remove_int(mos
, dsl_dataset_phys(ds
)->ds_next_clones_obj
,
1291 * The err should not be ENOENT, but a bug in a previous version
1292 * of the code could cause upgrade_clones_cb() to not set
1293 * ds_next_snap_obj when it should, leading to a missing entry.
1294 * If we knew that the pool was created after
1295 * SPA_VERSION_NEXT_CLONES, we could assert that it isn't
1296 * ENOENT. However, at least we can check that we don't have
1297 * too many entries in the next_clones_obj even after failing to
1302 ASSERT0(zap_count(mos
, dsl_dataset_phys(ds
)->ds_next_clones_obj
,
1304 ASSERT3U(count
, <=, dsl_dataset_phys(ds
)->ds_num_children
- 2);
1309 dsl_dataset_get_blkptr(dsl_dataset_t
*ds
)
1311 return (&dsl_dataset_phys(ds
)->ds_bp
);
1315 dsl_dataset_get_spa(dsl_dataset_t
*ds
)
1317 return (ds
->ds_dir
->dd_pool
->dp_spa
);
1321 dsl_dataset_dirty(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
1325 if (ds
== NULL
) /* this is the meta-objset */
1328 ASSERT(ds
->ds_objset
!= NULL
);
1330 if (dsl_dataset_phys(ds
)->ds_next_snap_obj
!= 0)
1331 panic("dirtying snapshot!");
1333 /* Must not dirty a dataset in the same txg where it got snapshotted. */
1334 ASSERT3U(tx
->tx_txg
, >, dsl_dataset_phys(ds
)->ds_prev_snap_txg
);
1336 dp
= ds
->ds_dir
->dd_pool
;
1337 if (txg_list_add(&dp
->dp_dirty_datasets
, ds
, tx
->tx_txg
)) {
1338 objset_t
*os
= ds
->ds_objset
;
1340 /* up the hold count until we can be written out */
1341 dmu_buf_add_ref(ds
->ds_dbuf
, ds
);
1343 /* if this dataset is encrypted, grab a reference to the DCK */
1344 if (ds
->ds_dir
->dd_crypto_obj
!= 0 &&
1345 !os
->os_raw_receive
&&
1346 !os
->os_next_write_raw
[tx
->tx_txg
& TXG_MASK
]) {
1347 ASSERT3P(ds
->ds_key_mapping
, !=, NULL
);
1348 key_mapping_add_ref(ds
->ds_key_mapping
, ds
);
1354 dsl_dataset_snapshot_reserve_space(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
1358 if (!dmu_tx_is_syncing(tx
))
1362 * If there's an fs-only reservation, any blocks that might become
1363 * owned by the snapshot dataset must be accommodated by space
1364 * outside of the reservation.
1366 ASSERT(ds
->ds_reserved
== 0 || DS_UNIQUE_IS_ACCURATE(ds
));
1367 asize
= MIN(dsl_dataset_phys(ds
)->ds_unique_bytes
, ds
->ds_reserved
);
1368 if (asize
> dsl_dir_space_available(ds
->ds_dir
, NULL
, 0, TRUE
))
1369 return (SET_ERROR(ENOSPC
));
1372 * Propagate any reserved space for this snapshot to other
1373 * snapshot checks in this sync group.
1376 dsl_dir_willuse_space(ds
->ds_dir
, asize
, tx
);
1382 dsl_dataset_snapshot_check_impl(dsl_dataset_t
*ds
, const char *snapname
,
1383 dmu_tx_t
*tx
, boolean_t recv
, uint64_t cnt
, cred_t
*cr
)
1388 ds
->ds_trysnap_txg
= tx
->tx_txg
;
1390 if (!dmu_tx_is_syncing(tx
))
1394 * We don't allow multiple snapshots of the same txg. If there
1395 * is already one, try again.
1397 if (dsl_dataset_phys(ds
)->ds_prev_snap_txg
>= tx
->tx_txg
)
1398 return (SET_ERROR(EAGAIN
));
1401 * Check for conflicting snapshot name.
1403 error
= dsl_dataset_snap_lookup(ds
, snapname
, &value
);
1405 return (SET_ERROR(EEXIST
));
1406 if (error
!= ENOENT
)
1410 * We don't allow taking snapshots of inconsistent datasets, such as
1411 * those into which we are currently receiving. However, if we are
1412 * creating this snapshot as part of a receive, this check will be
1413 * executed atomically with respect to the completion of the receive
1414 * itself but prior to the clearing of DS_FLAG_INCONSISTENT; in this
1415 * case we ignore this, knowing it will be fixed up for us shortly in
1416 * dmu_recv_end_sync().
1418 if (!recv
&& DS_IS_INCONSISTENT(ds
))
1419 return (SET_ERROR(EBUSY
));
1422 * Skip the check for temporary snapshots or if we have already checked
1423 * the counts in dsl_dataset_snapshot_check. This means we really only
1424 * check the count here when we're receiving a stream.
1426 if (cnt
!= 0 && cr
!= NULL
) {
1427 error
= dsl_fs_ss_limit_check(ds
->ds_dir
, cnt
,
1428 ZFS_PROP_SNAPSHOT_LIMIT
, NULL
, cr
);
1433 error
= dsl_dataset_snapshot_reserve_space(ds
, tx
);
1441 dsl_dataset_snapshot_check(void *arg
, dmu_tx_t
*tx
)
1443 dsl_dataset_snapshot_arg_t
*ddsa
= arg
;
1444 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
1449 * Pre-compute how many total new snapshots will be created for each
1450 * level in the tree and below. This is needed for validating the
1451 * snapshot limit when either taking a recursive snapshot or when
1452 * taking multiple snapshots.
1454 * The problem is that the counts are not actually adjusted when
1455 * we are checking, only when we finally sync. For a single snapshot,
1456 * this is easy, the count will increase by 1 at each node up the tree,
1457 * but its more complicated for the recursive/multiple snapshot case.
1459 * The dsl_fs_ss_limit_check function does recursively check the count
1460 * at each level up the tree but since it is validating each snapshot
1461 * independently we need to be sure that we are validating the complete
1462 * count for the entire set of snapshots. We do this by rolling up the
1463 * counts for each component of the name into an nvlist and then
1464 * checking each of those cases with the aggregated count.
1466 * This approach properly handles not only the recursive snapshot
1467 * case (where we get all of those on the ddsa_snaps list) but also
1468 * the sibling case (e.g. snapshot a/b and a/c so that we will also
1469 * validate the limit on 'a' using a count of 2).
1471 * We validate the snapshot names in the third loop and only report
1474 if (dmu_tx_is_syncing(tx
)) {
1476 nvlist_t
*cnt_track
= NULL
;
1477 cnt_track
= fnvlist_alloc();
1479 nm
= kmem_alloc(MAXPATHLEN
, KM_SLEEP
);
1481 /* Rollup aggregated counts into the cnt_track list */
1482 for (pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, NULL
);
1484 pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, pair
)) {
1488 (void) strlcpy(nm
, nvpair_name(pair
), MAXPATHLEN
);
1489 pdelim
= strchr(nm
, '@');
1495 if (nvlist_lookup_uint64(cnt_track
, nm
,
1497 /* update existing entry */
1498 fnvlist_add_uint64(cnt_track
, nm
,
1502 fnvlist_add_uint64(cnt_track
, nm
, 1);
1505 pdelim
= strrchr(nm
, '/');
1508 } while (pdelim
!= NULL
);
1511 kmem_free(nm
, MAXPATHLEN
);
1513 /* Check aggregated counts at each level */
1514 for (pair
= nvlist_next_nvpair(cnt_track
, NULL
);
1515 pair
!= NULL
; pair
= nvlist_next_nvpair(cnt_track
, pair
)) {
1521 name
= nvpair_name(pair
);
1522 cnt
= fnvpair_value_uint64(pair
);
1525 error
= dsl_dataset_hold(dp
, name
, FTAG
, &ds
);
1527 error
= dsl_fs_ss_limit_check(ds
->ds_dir
, cnt
,
1528 ZFS_PROP_SNAPSHOT_LIMIT
, NULL
,
1530 dsl_dataset_rele(ds
, FTAG
);
1534 if (ddsa
->ddsa_errors
!= NULL
)
1535 fnvlist_add_int32(ddsa
->ddsa_errors
,
1538 /* only report one error for this check */
1542 nvlist_free(cnt_track
);
1545 for (pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, NULL
);
1546 pair
!= NULL
; pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, pair
)) {
1549 char *name
, *atp
= NULL
;
1550 char dsname
[ZFS_MAX_DATASET_NAME_LEN
];
1552 name
= nvpair_name(pair
);
1553 if (strlen(name
) >= ZFS_MAX_DATASET_NAME_LEN
)
1554 error
= SET_ERROR(ENAMETOOLONG
);
1556 atp
= strchr(name
, '@');
1558 error
= SET_ERROR(EINVAL
);
1560 (void) strlcpy(dsname
, name
, atp
- name
+ 1);
1563 error
= dsl_dataset_hold(dp
, dsname
, FTAG
, &ds
);
1565 /* passing 0/NULL skips dsl_fs_ss_limit_check */
1566 error
= dsl_dataset_snapshot_check_impl(ds
,
1567 atp
+ 1, tx
, B_FALSE
, 0, NULL
);
1568 dsl_dataset_rele(ds
, FTAG
);
1572 if (ddsa
->ddsa_errors
!= NULL
) {
1573 fnvlist_add_int32(ddsa
->ddsa_errors
,
1584 dsl_dataset_snapshot_sync_impl(dsl_dataset_t
*ds
, const char *snapname
,
1587 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
1589 dsl_dataset_phys_t
*dsphys
;
1590 uint64_t dsobj
, crtxg
;
1591 objset_t
*mos
= dp
->dp_meta_objset
;
1592 ASSERTV(static zil_header_t zero_zil
);
1593 ASSERTV(objset_t
*os
);
1595 ASSERT(RRW_WRITE_HELD(&dp
->dp_config_rwlock
));
1598 * If we are on an old pool, the zil must not be active, in which
1599 * case it will be zeroed. Usually zil_suspend() accomplishes this.
1601 ASSERT(spa_version(dmu_tx_pool(tx
)->dp_spa
) >= SPA_VERSION_FAST_SNAP
||
1602 dmu_objset_from_ds(ds
, &os
) != 0 ||
1603 bcmp(&os
->os_phys
->os_zil_header
, &zero_zil
,
1604 sizeof (zero_zil
)) == 0);
1606 /* Should not snapshot a dirty dataset. */
1607 ASSERT(!txg_list_member(&ds
->ds_dir
->dd_pool
->dp_dirty_datasets
,
1610 dsl_fs_ss_count_adjust(ds
->ds_dir
, 1, DD_FIELD_SNAPSHOT_COUNT
, tx
);
1613 * The origin's ds_creation_txg has to be < TXG_INITIAL
1615 if (strcmp(snapname
, ORIGIN_DIR_NAME
) == 0)
1620 dsobj
= dmu_object_alloc(mos
, DMU_OT_DSL_DATASET
, 0,
1621 DMU_OT_DSL_DATASET
, sizeof (dsl_dataset_phys_t
), tx
);
1622 VERIFY0(dmu_bonus_hold(mos
, dsobj
, FTAG
, &dbuf
));
1623 dmu_buf_will_dirty(dbuf
, tx
);
1624 dsphys
= dbuf
->db_data
;
1625 bzero(dsphys
, sizeof (dsl_dataset_phys_t
));
1626 dsphys
->ds_dir_obj
= ds
->ds_dir
->dd_object
;
1627 dsphys
->ds_fsid_guid
= unique_create();
1628 (void) random_get_pseudo_bytes((void*)&dsphys
->ds_guid
,
1629 sizeof (dsphys
->ds_guid
));
1630 dsphys
->ds_prev_snap_obj
= dsl_dataset_phys(ds
)->ds_prev_snap_obj
;
1631 dsphys
->ds_prev_snap_txg
= dsl_dataset_phys(ds
)->ds_prev_snap_txg
;
1632 dsphys
->ds_next_snap_obj
= ds
->ds_object
;
1633 dsphys
->ds_num_children
= 1;
1634 dsphys
->ds_creation_time
= gethrestime_sec();
1635 dsphys
->ds_creation_txg
= crtxg
;
1636 dsphys
->ds_deadlist_obj
= dsl_dataset_phys(ds
)->ds_deadlist_obj
;
1637 dsphys
->ds_referenced_bytes
= dsl_dataset_phys(ds
)->ds_referenced_bytes
;
1638 dsphys
->ds_compressed_bytes
= dsl_dataset_phys(ds
)->ds_compressed_bytes
;
1639 dsphys
->ds_uncompressed_bytes
=
1640 dsl_dataset_phys(ds
)->ds_uncompressed_bytes
;
1641 dsphys
->ds_flags
= dsl_dataset_phys(ds
)->ds_flags
;
1642 rrw_enter(&ds
->ds_bp_rwlock
, RW_READER
, FTAG
);
1643 dsphys
->ds_bp
= dsl_dataset_phys(ds
)->ds_bp
;
1644 rrw_exit(&ds
->ds_bp_rwlock
, FTAG
);
1645 dmu_buf_rele(dbuf
, FTAG
);
1647 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
1648 if (zfeature_active(f
, ds
->ds_feature
[f
])) {
1649 dsl_dataset_activate_feature(dsobj
, f
,
1650 ds
->ds_feature
[f
], tx
);
1654 ASSERT3U(ds
->ds_prev
!= 0, ==,
1655 dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0);
1657 uint64_t next_clones_obj
=
1658 dsl_dataset_phys(ds
->ds_prev
)->ds_next_clones_obj
;
1659 ASSERT(dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
==
1661 dsl_dataset_phys(ds
->ds_prev
)->ds_num_children
> 1);
1662 if (dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
==
1664 dmu_buf_will_dirty(ds
->ds_prev
->ds_dbuf
, tx
);
1665 ASSERT3U(dsl_dataset_phys(ds
)->ds_prev_snap_txg
, ==,
1666 dsl_dataset_phys(ds
->ds_prev
)->ds_creation_txg
);
1667 dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
= dsobj
;
1668 } else if (next_clones_obj
!= 0) {
1669 dsl_dataset_remove_from_next_clones(ds
->ds_prev
,
1670 dsphys
->ds_next_snap_obj
, tx
);
1671 VERIFY0(zap_add_int(mos
,
1672 next_clones_obj
, dsobj
, tx
));
1677 * If we have a reference-reservation on this dataset, we will
1678 * need to increase the amount of refreservation being charged
1679 * since our unique space is going to zero.
1681 if (ds
->ds_reserved
) {
1683 ASSERT(DS_UNIQUE_IS_ACCURATE(ds
));
1684 delta
= MIN(dsl_dataset_phys(ds
)->ds_unique_bytes
,
1686 dsl_dir_diduse_space(ds
->ds_dir
, DD_USED_REFRSRV
,
1690 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
1691 dsl_dataset_phys(ds
)->ds_deadlist_obj
=
1692 dsl_deadlist_clone(&ds
->ds_deadlist
, UINT64_MAX
,
1693 dsl_dataset_phys(ds
)->ds_prev_snap_obj
, tx
);
1694 dsl_deadlist_close(&ds
->ds_deadlist
);
1695 dsl_deadlist_open(&ds
->ds_deadlist
, mos
,
1696 dsl_dataset_phys(ds
)->ds_deadlist_obj
);
1697 dsl_deadlist_add_key(&ds
->ds_deadlist
,
1698 dsl_dataset_phys(ds
)->ds_prev_snap_txg
, tx
);
1700 if (dsl_dataset_remap_deadlist_exists(ds
)) {
1701 uint64_t remap_deadlist_obj
=
1702 dsl_dataset_get_remap_deadlist_object(ds
);
1704 * Move the remap_deadlist to the snapshot. The head
1705 * will create a new remap deadlist on demand, from
1706 * dsl_dataset_block_remapped().
1708 dsl_dataset_unset_remap_deadlist_object(ds
, tx
);
1709 dsl_deadlist_close(&ds
->ds_remap_deadlist
);
1711 dmu_object_zapify(mos
, dsobj
, DMU_OT_DSL_DATASET
, tx
);
1712 VERIFY0(zap_add(mos
, dsobj
, DS_FIELD_REMAP_DEADLIST
,
1713 sizeof (remap_deadlist_obj
), 1, &remap_deadlist_obj
, tx
));
1717 * Create a ivset guid for this snapshot if the dataset is
1718 * encrypted. This may be overridden by a raw receive. A
1719 * previous implementation of this code did not have this
1720 * field as part of the on-disk format for ZFS encryption
1721 * (see errata #4). As part of the remediation for this
1722 * issue, we ask the user to enable the bookmark_v2 feature
1723 * which is now a dependency of the encryption feature. We
1724 * use this as a heuristic to determine when the user has
1725 * elected to correct any datasets created with the old code.
1726 * As a result, we only do this step if the bookmark_v2
1727 * feature is enabled, which limits the number of states a
1728 * given pool / dataset can be in with regards to terms of
1729 * correcting the issue.
1731 if (ds
->ds_dir
->dd_crypto_obj
!= 0 &&
1732 spa_feature_is_enabled(dp
->dp_spa
, SPA_FEATURE_BOOKMARK_V2
)) {
1733 uint64_t ivset_guid
= unique_create();
1735 dmu_object_zapify(mos
, dsobj
, DMU_OT_DSL_DATASET
, tx
);
1736 VERIFY0(zap_add(mos
, dsobj
, DS_FIELD_IVSET_GUID
,
1737 sizeof (ivset_guid
), 1, &ivset_guid
, tx
));
1740 ASSERT3U(dsl_dataset_phys(ds
)->ds_prev_snap_txg
, <, tx
->tx_txg
);
1741 dsl_dataset_phys(ds
)->ds_prev_snap_obj
= dsobj
;
1742 dsl_dataset_phys(ds
)->ds_prev_snap_txg
= crtxg
;
1743 dsl_dataset_phys(ds
)->ds_unique_bytes
= 0;
1745 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_UNIQUE_ACCURATE
)
1746 dsl_dataset_phys(ds
)->ds_flags
|= DS_FLAG_UNIQUE_ACCURATE
;
1748 VERIFY0(zap_add(mos
, dsl_dataset_phys(ds
)->ds_snapnames_zapobj
,
1749 snapname
, 8, 1, &dsobj
, tx
));
1752 dsl_dataset_rele(ds
->ds_prev
, ds
);
1753 VERIFY0(dsl_dataset_hold_obj(dp
,
1754 dsl_dataset_phys(ds
)->ds_prev_snap_obj
, ds
, &ds
->ds_prev
));
1756 dsl_scan_ds_snapshotted(ds
, tx
);
1758 dsl_dir_snap_cmtime_update(ds
->ds_dir
);
1760 spa_history_log_internal_ds(ds
->ds_prev
, "snapshot", tx
, "");
1764 dsl_dataset_snapshot_sync(void *arg
, dmu_tx_t
*tx
)
1766 dsl_dataset_snapshot_arg_t
*ddsa
= arg
;
1767 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
1770 for (pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, NULL
);
1771 pair
!= NULL
; pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, pair
)) {
1774 char dsname
[ZFS_MAX_DATASET_NAME_LEN
];
1776 name
= nvpair_name(pair
);
1777 atp
= strchr(name
, '@');
1778 (void) strlcpy(dsname
, name
, atp
- name
+ 1);
1779 VERIFY0(dsl_dataset_hold(dp
, dsname
, FTAG
, &ds
));
1781 dsl_dataset_snapshot_sync_impl(ds
, atp
+ 1, tx
);
1782 if (ddsa
->ddsa_props
!= NULL
) {
1783 dsl_props_set_sync_impl(ds
->ds_prev
,
1784 ZPROP_SRC_LOCAL
, ddsa
->ddsa_props
, tx
);
1786 zvol_create_minors(dp
->dp_spa
, nvpair_name(pair
), B_TRUE
);
1787 dsl_dataset_rele(ds
, FTAG
);
1792 * The snapshots must all be in the same pool.
1793 * All-or-nothing: if there are any failures, nothing will be modified.
1796 dsl_dataset_snapshot(nvlist_t
*snaps
, nvlist_t
*props
, nvlist_t
*errors
)
1798 dsl_dataset_snapshot_arg_t ddsa
;
1800 boolean_t needsuspend
;
1804 nvlist_t
*suspended
= NULL
;
1806 pair
= nvlist_next_nvpair(snaps
, NULL
);
1809 firstname
= nvpair_name(pair
);
1811 error
= spa_open(firstname
, &spa
, FTAG
);
1814 needsuspend
= (spa_version(spa
) < SPA_VERSION_FAST_SNAP
);
1815 spa_close(spa
, FTAG
);
1818 suspended
= fnvlist_alloc();
1819 for (pair
= nvlist_next_nvpair(snaps
, NULL
); pair
!= NULL
;
1820 pair
= nvlist_next_nvpair(snaps
, pair
)) {
1821 char fsname
[ZFS_MAX_DATASET_NAME_LEN
];
1822 char *snapname
= nvpair_name(pair
);
1826 atp
= strchr(snapname
, '@');
1828 error
= SET_ERROR(EINVAL
);
1831 (void) strlcpy(fsname
, snapname
, atp
- snapname
+ 1);
1833 error
= zil_suspend(fsname
, &cookie
);
1836 fnvlist_add_uint64(suspended
, fsname
,
1841 ddsa
.ddsa_snaps
= snaps
;
1842 ddsa
.ddsa_props
= props
;
1843 ddsa
.ddsa_errors
= errors
;
1844 ddsa
.ddsa_cr
= CRED();
1847 error
= dsl_sync_task(firstname
, dsl_dataset_snapshot_check
,
1848 dsl_dataset_snapshot_sync
, &ddsa
,
1849 fnvlist_num_pairs(snaps
) * 3, ZFS_SPACE_CHECK_NORMAL
);
1852 if (suspended
!= NULL
) {
1853 for (pair
= nvlist_next_nvpair(suspended
, NULL
); pair
!= NULL
;
1854 pair
= nvlist_next_nvpair(suspended
, pair
)) {
1855 zil_resume((void *)(uintptr_t)
1856 fnvpair_value_uint64(pair
));
1858 fnvlist_free(suspended
);
1864 typedef struct dsl_dataset_snapshot_tmp_arg
{
1865 const char *ddsta_fsname
;
1866 const char *ddsta_snapname
;
1867 minor_t ddsta_cleanup_minor
;
1868 const char *ddsta_htag
;
1869 } dsl_dataset_snapshot_tmp_arg_t
;
1872 dsl_dataset_snapshot_tmp_check(void *arg
, dmu_tx_t
*tx
)
1874 dsl_dataset_snapshot_tmp_arg_t
*ddsta
= arg
;
1875 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
1879 error
= dsl_dataset_hold(dp
, ddsta
->ddsta_fsname
, FTAG
, &ds
);
1883 /* NULL cred means no limit check for tmp snapshot */
1884 error
= dsl_dataset_snapshot_check_impl(ds
, ddsta
->ddsta_snapname
,
1885 tx
, B_FALSE
, 0, NULL
);
1887 dsl_dataset_rele(ds
, FTAG
);
1891 if (spa_version(dp
->dp_spa
) < SPA_VERSION_USERREFS
) {
1892 dsl_dataset_rele(ds
, FTAG
);
1893 return (SET_ERROR(ENOTSUP
));
1895 error
= dsl_dataset_user_hold_check_one(NULL
, ddsta
->ddsta_htag
,
1898 dsl_dataset_rele(ds
, FTAG
);
1902 dsl_dataset_rele(ds
, FTAG
);
1907 dsl_dataset_snapshot_tmp_sync(void *arg
, dmu_tx_t
*tx
)
1909 dsl_dataset_snapshot_tmp_arg_t
*ddsta
= arg
;
1910 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
1911 dsl_dataset_t
*ds
= NULL
;
1913 VERIFY0(dsl_dataset_hold(dp
, ddsta
->ddsta_fsname
, FTAG
, &ds
));
1915 dsl_dataset_snapshot_sync_impl(ds
, ddsta
->ddsta_snapname
, tx
);
1916 dsl_dataset_user_hold_sync_one(ds
->ds_prev
, ddsta
->ddsta_htag
,
1917 ddsta
->ddsta_cleanup_minor
, gethrestime_sec(), tx
);
1918 dsl_destroy_snapshot_sync_impl(ds
->ds_prev
, B_TRUE
, tx
);
1920 dsl_dataset_rele(ds
, FTAG
);
1924 dsl_dataset_snapshot_tmp(const char *fsname
, const char *snapname
,
1925 minor_t cleanup_minor
, const char *htag
)
1927 dsl_dataset_snapshot_tmp_arg_t ddsta
;
1930 boolean_t needsuspend
;
1933 ddsta
.ddsta_fsname
= fsname
;
1934 ddsta
.ddsta_snapname
= snapname
;
1935 ddsta
.ddsta_cleanup_minor
= cleanup_minor
;
1936 ddsta
.ddsta_htag
= htag
;
1938 error
= spa_open(fsname
, &spa
, FTAG
);
1941 needsuspend
= (spa_version(spa
) < SPA_VERSION_FAST_SNAP
);
1942 spa_close(spa
, FTAG
);
1945 error
= zil_suspend(fsname
, &cookie
);
1950 error
= dsl_sync_task(fsname
, dsl_dataset_snapshot_tmp_check
,
1951 dsl_dataset_snapshot_tmp_sync
, &ddsta
, 3, ZFS_SPACE_CHECK_RESERVED
);
1959 dsl_dataset_sync(dsl_dataset_t
*ds
, zio_t
*zio
, dmu_tx_t
*tx
)
1961 ASSERT(dmu_tx_is_syncing(tx
));
1962 ASSERT(ds
->ds_objset
!= NULL
);
1963 ASSERT(dsl_dataset_phys(ds
)->ds_next_snap_obj
== 0);
1966 * in case we had to change ds_fsid_guid when we opened it,
1969 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
1970 dsl_dataset_phys(ds
)->ds_fsid_guid
= ds
->ds_fsid_guid
;
1972 if (ds
->ds_resume_bytes
[tx
->tx_txg
& TXG_MASK
] != 0) {
1973 VERIFY0(zap_update(tx
->tx_pool
->dp_meta_objset
,
1974 ds
->ds_object
, DS_FIELD_RESUME_OBJECT
, 8, 1,
1975 &ds
->ds_resume_object
[tx
->tx_txg
& TXG_MASK
], tx
));
1976 VERIFY0(zap_update(tx
->tx_pool
->dp_meta_objset
,
1977 ds
->ds_object
, DS_FIELD_RESUME_OFFSET
, 8, 1,
1978 &ds
->ds_resume_offset
[tx
->tx_txg
& TXG_MASK
], tx
));
1979 VERIFY0(zap_update(tx
->tx_pool
->dp_meta_objset
,
1980 ds
->ds_object
, DS_FIELD_RESUME_BYTES
, 8, 1,
1981 &ds
->ds_resume_bytes
[tx
->tx_txg
& TXG_MASK
], tx
));
1982 ds
->ds_resume_object
[tx
->tx_txg
& TXG_MASK
] = 0;
1983 ds
->ds_resume_offset
[tx
->tx_txg
& TXG_MASK
] = 0;
1984 ds
->ds_resume_bytes
[tx
->tx_txg
& TXG_MASK
] = 0;
1987 dmu_objset_sync(ds
->ds_objset
, zio
, tx
);
1989 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
1990 if (zfeature_active(f
, ds
->ds_feature_activation
[f
])) {
1991 if (zfeature_active(f
, ds
->ds_feature
[f
]))
1993 dsl_dataset_activate_feature(ds
->ds_object
, f
,
1994 ds
->ds_feature_activation
[f
], tx
);
1995 ds
->ds_feature
[f
] = ds
->ds_feature_activation
[f
];
2001 deadlist_enqueue_cb(void *arg
, const blkptr_t
*bp
, dmu_tx_t
*tx
)
2003 dsl_deadlist_t
*dl
= arg
;
2004 dsl_deadlist_insert(dl
, bp
, tx
);
2009 dsl_dataset_sync_done(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
2011 objset_t
*os
= ds
->ds_objset
;
2013 bplist_iterate(&ds
->ds_pending_deadlist
,
2014 deadlist_enqueue_cb
, &ds
->ds_deadlist
, tx
);
2016 if (os
->os_synced_dnodes
!= NULL
) {
2017 multilist_destroy(os
->os_synced_dnodes
);
2018 os
->os_synced_dnodes
= NULL
;
2021 if (os
->os_encrypted
)
2022 os
->os_next_write_raw
[tx
->tx_txg
& TXG_MASK
] = B_FALSE
;
2024 ASSERT0(os
->os_next_write_raw
[tx
->tx_txg
& TXG_MASK
]);
2026 ASSERT(!dmu_objset_is_dirty(os
, dmu_tx_get_txg(tx
)));
2028 dmu_buf_rele(ds
->ds_dbuf
, ds
);
2032 get_clones_stat_impl(dsl_dataset_t
*ds
, nvlist_t
*val
)
2035 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
2039 ASSERT(dsl_pool_config_held(ds
->ds_dir
->dd_pool
));
2042 * There may be missing entries in ds_next_clones_obj
2043 * due to a bug in a previous version of the code.
2044 * Only trust it if it has the right number of entries.
2046 if (dsl_dataset_phys(ds
)->ds_next_clones_obj
!= 0) {
2047 VERIFY0(zap_count(mos
, dsl_dataset_phys(ds
)->ds_next_clones_obj
,
2050 if (count
!= dsl_dataset_phys(ds
)->ds_num_children
- 1) {
2053 for (zap_cursor_init(&zc
, mos
,
2054 dsl_dataset_phys(ds
)->ds_next_clones_obj
);
2055 zap_cursor_retrieve(&zc
, &za
) == 0;
2056 zap_cursor_advance(&zc
)) {
2057 dsl_dataset_t
*clone
;
2058 char buf
[ZFS_MAX_DATASET_NAME_LEN
];
2059 VERIFY0(dsl_dataset_hold_obj(ds
->ds_dir
->dd_pool
,
2060 za
.za_first_integer
, FTAG
, &clone
));
2061 dsl_dir_name(clone
->ds_dir
, buf
);
2062 fnvlist_add_boolean(val
, buf
);
2063 dsl_dataset_rele(clone
, FTAG
);
2065 zap_cursor_fini(&zc
);
2070 get_clones_stat(dsl_dataset_t
*ds
, nvlist_t
*nv
)
2072 nvlist_t
*propval
= fnvlist_alloc();
2076 * We use nvlist_alloc() instead of fnvlist_alloc() because the
2077 * latter would allocate the list with NV_UNIQUE_NAME flag.
2078 * As a result, every time a clone name is appended to the list
2079 * it would be (linearly) searched for a duplicate name.
2080 * We already know that all clone names must be unique and we
2081 * want avoid the quadratic complexity of double-checking that
2082 * because we can have a large number of clones.
2084 VERIFY0(nvlist_alloc(&val
, 0, KM_SLEEP
));
2086 if (get_clones_stat_impl(ds
, val
) == 0) {
2087 fnvlist_add_nvlist(propval
, ZPROP_VALUE
, val
);
2088 fnvlist_add_nvlist(nv
, zfs_prop_to_name(ZFS_PROP_CLONES
),
2093 nvlist_free(propval
);
2097 * Returns a string that represents the receive resume stats token. It should
2098 * be freed with strfree().
2101 get_receive_resume_stats_impl(dsl_dataset_t
*ds
)
2103 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2105 if (dsl_dataset_has_resume_receive_state(ds
)) {
2108 uint8_t *compressed
;
2110 nvlist_t
*token_nv
= fnvlist_alloc();
2111 size_t packed_size
, compressed_size
;
2113 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
2114 DS_FIELD_RESUME_FROMGUID
, sizeof (val
), 1, &val
) == 0) {
2115 fnvlist_add_uint64(token_nv
, "fromguid", val
);
2117 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
2118 DS_FIELD_RESUME_OBJECT
, sizeof (val
), 1, &val
) == 0) {
2119 fnvlist_add_uint64(token_nv
, "object", val
);
2121 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
2122 DS_FIELD_RESUME_OFFSET
, sizeof (val
), 1, &val
) == 0) {
2123 fnvlist_add_uint64(token_nv
, "offset", val
);
2125 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
2126 DS_FIELD_RESUME_BYTES
, sizeof (val
), 1, &val
) == 0) {
2127 fnvlist_add_uint64(token_nv
, "bytes", val
);
2129 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
2130 DS_FIELD_RESUME_TOGUID
, sizeof (val
), 1, &val
) == 0) {
2131 fnvlist_add_uint64(token_nv
, "toguid", val
);
2133 char buf
[MAXNAMELEN
];
2134 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
2135 DS_FIELD_RESUME_TONAME
, 1, sizeof (buf
), buf
) == 0) {
2136 fnvlist_add_string(token_nv
, "toname", buf
);
2138 if (zap_contains(dp
->dp_meta_objset
, ds
->ds_object
,
2139 DS_FIELD_RESUME_LARGEBLOCK
) == 0) {
2140 fnvlist_add_boolean(token_nv
, "largeblockok");
2142 if (zap_contains(dp
->dp_meta_objset
, ds
->ds_object
,
2143 DS_FIELD_RESUME_EMBEDOK
) == 0) {
2144 fnvlist_add_boolean(token_nv
, "embedok");
2146 if (zap_contains(dp
->dp_meta_objset
, ds
->ds_object
,
2147 DS_FIELD_RESUME_COMPRESSOK
) == 0) {
2148 fnvlist_add_boolean(token_nv
, "compressok");
2150 if (zap_contains(dp
->dp_meta_objset
, ds
->ds_object
,
2151 DS_FIELD_RESUME_RAWOK
) == 0) {
2152 fnvlist_add_boolean(token_nv
, "rawok");
2154 packed
= fnvlist_pack(token_nv
, &packed_size
);
2155 fnvlist_free(token_nv
);
2156 compressed
= kmem_alloc(packed_size
, KM_SLEEP
);
2158 compressed_size
= gzip_compress(packed
, compressed
,
2159 packed_size
, packed_size
, 6);
2162 fletcher_4_native_varsize(compressed
, compressed_size
, &cksum
);
2164 str
= kmem_alloc(compressed_size
* 2 + 1, KM_SLEEP
);
2165 for (int i
= 0; i
< compressed_size
; i
++) {
2166 (void) sprintf(str
+ i
* 2, "%02x", compressed
[i
]);
2168 str
[compressed_size
* 2] = '\0';
2169 char *propval
= kmem_asprintf("%u-%llx-%llx-%s",
2170 ZFS_SEND_RESUME_TOKEN_VERSION
,
2171 (longlong_t
)cksum
.zc_word
[0],
2172 (longlong_t
)packed_size
, str
);
2173 kmem_free(packed
, packed_size
);
2174 kmem_free(str
, compressed_size
* 2 + 1);
2175 kmem_free(compressed
, packed_size
);
2178 return (strdup(""));
2182 * Returns a string that represents the receive resume stats token of the
2183 * dataset's child. It should be freed with strfree().
2186 get_child_receive_stats(dsl_dataset_t
*ds
)
2188 char recvname
[ZFS_MAX_DATASET_NAME_LEN
+ 6];
2189 dsl_dataset_t
*recv_ds
;
2190 dsl_dataset_name(ds
, recvname
);
2191 if (strlcat(recvname
, "/", sizeof (recvname
)) <
2192 sizeof (recvname
) &&
2193 strlcat(recvname
, recv_clone_name
, sizeof (recvname
)) <
2194 sizeof (recvname
) &&
2195 dsl_dataset_hold(ds
->ds_dir
->dd_pool
, recvname
, FTAG
,
2197 char *propval
= get_receive_resume_stats_impl(recv_ds
);
2198 dsl_dataset_rele(recv_ds
, FTAG
);
2201 return (strdup(""));
2205 get_receive_resume_stats(dsl_dataset_t
*ds
, nvlist_t
*nv
)
2207 char *propval
= get_receive_resume_stats_impl(ds
);
2208 if (strcmp(propval
, "") != 0) {
2209 dsl_prop_nvlist_add_string(nv
,
2210 ZFS_PROP_RECEIVE_RESUME_TOKEN
, propval
);
2212 char *childval
= get_child_receive_stats(ds
);
2213 if (strcmp(childval
, "") != 0) {
2214 dsl_prop_nvlist_add_string(nv
,
2215 ZFS_PROP_RECEIVE_RESUME_TOKEN
, childval
);
2223 dsl_get_refratio(dsl_dataset_t
*ds
)
2225 uint64_t ratio
= dsl_dataset_phys(ds
)->ds_compressed_bytes
== 0 ? 100 :
2226 (dsl_dataset_phys(ds
)->ds_uncompressed_bytes
* 100 /
2227 dsl_dataset_phys(ds
)->ds_compressed_bytes
);
2232 dsl_get_logicalreferenced(dsl_dataset_t
*ds
)
2234 return (dsl_dataset_phys(ds
)->ds_uncompressed_bytes
);
2238 dsl_get_compressratio(dsl_dataset_t
*ds
)
2240 if (ds
->ds_is_snapshot
) {
2241 return (dsl_get_refratio(ds
));
2243 dsl_dir_t
*dd
= ds
->ds_dir
;
2244 mutex_enter(&dd
->dd_lock
);
2245 uint64_t val
= dsl_dir_get_compressratio(dd
);
2246 mutex_exit(&dd
->dd_lock
);
2252 dsl_get_used(dsl_dataset_t
*ds
)
2254 if (ds
->ds_is_snapshot
) {
2255 return (dsl_dataset_phys(ds
)->ds_unique_bytes
);
2257 dsl_dir_t
*dd
= ds
->ds_dir
;
2258 mutex_enter(&dd
->dd_lock
);
2259 uint64_t val
= dsl_dir_get_used(dd
);
2260 mutex_exit(&dd
->dd_lock
);
2266 dsl_get_creation(dsl_dataset_t
*ds
)
2268 return (dsl_dataset_phys(ds
)->ds_creation_time
);
2272 dsl_get_creationtxg(dsl_dataset_t
*ds
)
2274 return (dsl_dataset_phys(ds
)->ds_creation_txg
);
2278 dsl_get_refquota(dsl_dataset_t
*ds
)
2280 return (ds
->ds_quota
);
2284 dsl_get_refreservation(dsl_dataset_t
*ds
)
2286 return (ds
->ds_reserved
);
2290 dsl_get_guid(dsl_dataset_t
*ds
)
2292 return (dsl_dataset_phys(ds
)->ds_guid
);
2296 dsl_get_unique(dsl_dataset_t
*ds
)
2298 return (dsl_dataset_phys(ds
)->ds_unique_bytes
);
2302 dsl_get_objsetid(dsl_dataset_t
*ds
)
2304 return (ds
->ds_object
);
2308 dsl_get_userrefs(dsl_dataset_t
*ds
)
2310 return (ds
->ds_userrefs
);
2314 dsl_get_defer_destroy(dsl_dataset_t
*ds
)
2316 return (DS_IS_DEFER_DESTROY(ds
) ? 1 : 0);
2320 dsl_get_referenced(dsl_dataset_t
*ds
)
2322 return (dsl_dataset_phys(ds
)->ds_referenced_bytes
);
2326 dsl_get_numclones(dsl_dataset_t
*ds
)
2328 ASSERT(ds
->ds_is_snapshot
);
2329 return (dsl_dataset_phys(ds
)->ds_num_children
- 1);
2333 dsl_get_inconsistent(dsl_dataset_t
*ds
)
2335 return ((dsl_dataset_phys(ds
)->ds_flags
& DS_FLAG_INCONSISTENT
) ?
2340 dsl_get_available(dsl_dataset_t
*ds
)
2342 uint64_t refdbytes
= dsl_get_referenced(ds
);
2343 uint64_t availbytes
= dsl_dir_space_available(ds
->ds_dir
,
2345 if (ds
->ds_reserved
> dsl_dataset_phys(ds
)->ds_unique_bytes
) {
2347 ds
->ds_reserved
- dsl_dataset_phys(ds
)->ds_unique_bytes
;
2349 if (ds
->ds_quota
!= 0) {
2351 * Adjust available bytes according to refquota
2353 if (refdbytes
< ds
->ds_quota
) {
2354 availbytes
= MIN(availbytes
,
2355 ds
->ds_quota
- refdbytes
);
2360 return (availbytes
);
2364 dsl_get_written(dsl_dataset_t
*ds
, uint64_t *written
)
2366 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2367 dsl_dataset_t
*prev
;
2368 int err
= dsl_dataset_hold_obj(dp
,
2369 dsl_dataset_phys(ds
)->ds_prev_snap_obj
, FTAG
, &prev
);
2371 uint64_t comp
, uncomp
;
2372 err
= dsl_dataset_space_written(prev
, ds
, written
,
2374 dsl_dataset_rele(prev
, FTAG
);
2380 * 'snap' should be a buffer of size ZFS_MAX_DATASET_NAME_LEN.
2383 dsl_get_prev_snap(dsl_dataset_t
*ds
, char *snap
)
2385 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2386 if (ds
->ds_prev
!= NULL
&& ds
->ds_prev
!= dp
->dp_origin_snap
) {
2387 dsl_dataset_name(ds
->ds_prev
, snap
);
2395 * Returns the mountpoint property and source for the given dataset in the value
2396 * and source buffers. The value buffer must be at least as large as MAXPATHLEN
2397 * and the source buffer as least as large a ZFS_MAX_DATASET_NAME_LEN.
2398 * Returns 0 on success and an error on failure.
2401 dsl_get_mountpoint(dsl_dataset_t
*ds
, const char *dsname
, char *value
,
2405 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2407 /* Retrieve the mountpoint value stored in the zap object */
2408 error
= dsl_prop_get_ds(ds
, zfs_prop_to_name(ZFS_PROP_MOUNTPOINT
), 1,
2409 ZAP_MAXVALUELEN
, value
, source
);
2415 * Process the dsname and source to find the full mountpoint string.
2416 * Can be skipped for 'legacy' or 'none'.
2418 if (value
[0] == '/') {
2419 char *buf
= kmem_alloc(ZAP_MAXVALUELEN
, KM_SLEEP
);
2421 const char *relpath
;
2424 * If we inherit the mountpoint, even from a dataset
2425 * with a received value, the source will be the path of
2426 * the dataset we inherit from. If source is
2427 * ZPROP_SOURCE_VAL_RECVD, the received value is not
2430 if (strcmp(source
, ZPROP_SOURCE_VAL_RECVD
) == 0) {
2433 ASSERT0(strncmp(dsname
, source
, strlen(source
)));
2434 relpath
= dsname
+ strlen(source
);
2435 if (relpath
[0] == '/')
2439 spa_altroot(dp
->dp_spa
, root
, ZAP_MAXVALUELEN
);
2442 * Special case an alternate root of '/'. This will
2443 * avoid having multiple leading slashes in the
2446 if (strcmp(root
, "/") == 0)
2450 * If the mountpoint is '/' then skip over this
2451 * if we are obtaining either an alternate root or
2452 * an inherited mountpoint.
2455 if (value
[1] == '\0' && (root
[0] != '\0' ||
2456 relpath
[0] != '\0'))
2459 if (relpath
[0] == '\0') {
2460 (void) snprintf(value
, ZAP_MAXVALUELEN
, "%s%s",
2463 (void) snprintf(value
, ZAP_MAXVALUELEN
, "%s%s%s%s",
2464 root
, mnt
, relpath
[0] == '@' ? "" : "/",
2467 kmem_free(buf
, ZAP_MAXVALUELEN
);
2474 dsl_dataset_stats(dsl_dataset_t
*ds
, nvlist_t
*nv
)
2476 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2478 ASSERT(dsl_pool_config_held(dp
));
2480 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_REFRATIO
,
2481 dsl_get_refratio(ds
));
2482 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_LOGICALREFERENCED
,
2483 dsl_get_logicalreferenced(ds
));
2484 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_COMPRESSRATIO
,
2485 dsl_get_compressratio(ds
));
2486 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_USED
,
2489 if (ds
->ds_is_snapshot
) {
2490 get_clones_stat(ds
, nv
);
2492 char buf
[ZFS_MAX_DATASET_NAME_LEN
];
2493 if (dsl_get_prev_snap(ds
, buf
) == 0)
2494 dsl_prop_nvlist_add_string(nv
, ZFS_PROP_PREV_SNAP
,
2496 dsl_dir_stats(ds
->ds_dir
, nv
);
2499 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_AVAILABLE
,
2500 dsl_get_available(ds
));
2501 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_REFERENCED
,
2502 dsl_get_referenced(ds
));
2503 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_CREATION
,
2504 dsl_get_creation(ds
));
2505 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_CREATETXG
,
2506 dsl_get_creationtxg(ds
));
2507 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_REFQUOTA
,
2508 dsl_get_refquota(ds
));
2509 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_REFRESERVATION
,
2510 dsl_get_refreservation(ds
));
2511 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_GUID
,
2513 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_UNIQUE
,
2514 dsl_get_unique(ds
));
2515 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_OBJSETID
,
2516 dsl_get_objsetid(ds
));
2517 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_USERREFS
,
2518 dsl_get_userrefs(ds
));
2519 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_DEFER_DESTROY
,
2520 dsl_get_defer_destroy(ds
));
2521 dsl_dataset_crypt_stats(ds
, nv
);
2523 if (dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0) {
2525 if (dsl_get_written(ds
, &written
) == 0) {
2526 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_WRITTEN
,
2531 if (!dsl_dataset_is_snapshot(ds
)) {
2533 * A failed "newfs" (e.g. full) resumable receive leaves
2534 * the stats set on this dataset. Check here for the prop.
2536 get_receive_resume_stats(ds
, nv
);
2539 * A failed incremental resumable receive leaves the
2540 * stats set on our child named "%recv". Check the child
2543 /* 6 extra bytes for /%recv */
2544 char recvname
[ZFS_MAX_DATASET_NAME_LEN
+ 6];
2545 dsl_dataset_t
*recv_ds
;
2546 dsl_dataset_name(ds
, recvname
);
2547 if (strlcat(recvname
, "/", sizeof (recvname
)) <
2548 sizeof (recvname
) &&
2549 strlcat(recvname
, recv_clone_name
, sizeof (recvname
)) <
2550 sizeof (recvname
) &&
2551 dsl_dataset_hold(dp
, recvname
, FTAG
, &recv_ds
) == 0) {
2552 get_receive_resume_stats(recv_ds
, nv
);
2553 dsl_dataset_rele(recv_ds
, FTAG
);
2559 dsl_dataset_fast_stat(dsl_dataset_t
*ds
, dmu_objset_stats_t
*stat
)
2561 ASSERTV(dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
);
2562 ASSERT(dsl_pool_config_held(dp
));
2564 stat
->dds_creation_txg
= dsl_get_creationtxg(ds
);
2565 stat
->dds_inconsistent
= dsl_get_inconsistent(ds
);
2566 stat
->dds_guid
= dsl_get_guid(ds
);
2567 stat
->dds_origin
[0] = '\0';
2568 if (ds
->ds_is_snapshot
) {
2569 stat
->dds_is_snapshot
= B_TRUE
;
2570 stat
->dds_num_clones
= dsl_get_numclones(ds
);
2572 stat
->dds_is_snapshot
= B_FALSE
;
2573 stat
->dds_num_clones
= 0;
2575 if (dsl_dir_is_clone(ds
->ds_dir
)) {
2576 dsl_dir_get_origin(ds
->ds_dir
, stat
->dds_origin
);
2582 dsl_dataset_fsid_guid(dsl_dataset_t
*ds
)
2584 return (ds
->ds_fsid_guid
);
2588 dsl_dataset_space(dsl_dataset_t
*ds
,
2589 uint64_t *refdbytesp
, uint64_t *availbytesp
,
2590 uint64_t *usedobjsp
, uint64_t *availobjsp
)
2592 *refdbytesp
= dsl_dataset_phys(ds
)->ds_referenced_bytes
;
2593 *availbytesp
= dsl_dir_space_available(ds
->ds_dir
, NULL
, 0, TRUE
);
2594 if (ds
->ds_reserved
> dsl_dataset_phys(ds
)->ds_unique_bytes
)
2596 ds
->ds_reserved
- dsl_dataset_phys(ds
)->ds_unique_bytes
;
2597 if (ds
->ds_quota
!= 0) {
2599 * Adjust available bytes according to refquota
2601 if (*refdbytesp
< ds
->ds_quota
)
2602 *availbytesp
= MIN(*availbytesp
,
2603 ds
->ds_quota
- *refdbytesp
);
2607 rrw_enter(&ds
->ds_bp_rwlock
, RW_READER
, FTAG
);
2608 *usedobjsp
= BP_GET_FILL(&dsl_dataset_phys(ds
)->ds_bp
);
2609 rrw_exit(&ds
->ds_bp_rwlock
, FTAG
);
2610 *availobjsp
= DN_MAX_OBJECT
- *usedobjsp
;
2614 dsl_dataset_modified_since_snap(dsl_dataset_t
*ds
, dsl_dataset_t
*snap
)
2616 ASSERTV(dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
);
2619 ASSERT(dsl_pool_config_held(dp
));
2622 rrw_enter(&ds
->ds_bp_rwlock
, RW_READER
, FTAG
);
2623 birth
= dsl_dataset_get_blkptr(ds
)->blk_birth
;
2624 rrw_exit(&ds
->ds_bp_rwlock
, FTAG
);
2625 if (birth
> dsl_dataset_phys(snap
)->ds_creation_txg
) {
2626 objset_t
*os
, *os_snap
;
2628 * It may be that only the ZIL differs, because it was
2629 * reset in the head. Don't count that as being
2632 if (dmu_objset_from_ds(ds
, &os
) != 0)
2634 if (dmu_objset_from_ds(snap
, &os_snap
) != 0)
2636 return (bcmp(&os
->os_phys
->os_meta_dnode
,
2637 &os_snap
->os_phys
->os_meta_dnode
,
2638 sizeof (os
->os_phys
->os_meta_dnode
)) != 0);
2643 typedef struct dsl_dataset_rename_snapshot_arg
{
2644 const char *ddrsa_fsname
;
2645 const char *ddrsa_oldsnapname
;
2646 const char *ddrsa_newsnapname
;
2647 boolean_t ddrsa_recursive
;
2649 } dsl_dataset_rename_snapshot_arg_t
;
2653 dsl_dataset_rename_snapshot_check_impl(dsl_pool_t
*dp
,
2654 dsl_dataset_t
*hds
, void *arg
)
2656 dsl_dataset_rename_snapshot_arg_t
*ddrsa
= arg
;
2660 error
= dsl_dataset_snap_lookup(hds
, ddrsa
->ddrsa_oldsnapname
, &val
);
2662 /* ignore nonexistent snapshots */
2663 return (error
== ENOENT
? 0 : error
);
2666 /* new name should not exist */
2667 error
= dsl_dataset_snap_lookup(hds
, ddrsa
->ddrsa_newsnapname
, &val
);
2669 error
= SET_ERROR(EEXIST
);
2670 else if (error
== ENOENT
)
2673 /* dataset name + 1 for the "@" + the new snapshot name must fit */
2674 if (dsl_dir_namelen(hds
->ds_dir
) + 1 +
2675 strlen(ddrsa
->ddrsa_newsnapname
) >= ZFS_MAX_DATASET_NAME_LEN
)
2676 error
= SET_ERROR(ENAMETOOLONG
);
2682 dsl_dataset_rename_snapshot_check(void *arg
, dmu_tx_t
*tx
)
2684 dsl_dataset_rename_snapshot_arg_t
*ddrsa
= arg
;
2685 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
2689 error
= dsl_dataset_hold(dp
, ddrsa
->ddrsa_fsname
, FTAG
, &hds
);
2693 if (ddrsa
->ddrsa_recursive
) {
2694 error
= dmu_objset_find_dp(dp
, hds
->ds_dir
->dd_object
,
2695 dsl_dataset_rename_snapshot_check_impl
, ddrsa
,
2698 error
= dsl_dataset_rename_snapshot_check_impl(dp
, hds
, ddrsa
);
2700 dsl_dataset_rele(hds
, FTAG
);
2705 dsl_dataset_rename_snapshot_sync_impl(dsl_pool_t
*dp
,
2706 dsl_dataset_t
*hds
, void *arg
)
2708 dsl_dataset_rename_snapshot_arg_t
*ddrsa
= arg
;
2711 dmu_tx_t
*tx
= ddrsa
->ddrsa_tx
;
2714 error
= dsl_dataset_snap_lookup(hds
, ddrsa
->ddrsa_oldsnapname
, &val
);
2715 ASSERT(error
== 0 || error
== ENOENT
);
2716 if (error
== ENOENT
) {
2717 /* ignore nonexistent snapshots */
2721 VERIFY0(dsl_dataset_hold_obj(dp
, val
, FTAG
, &ds
));
2723 /* log before we change the name */
2724 spa_history_log_internal_ds(ds
, "rename", tx
,
2725 "-> @%s", ddrsa
->ddrsa_newsnapname
);
2727 VERIFY0(dsl_dataset_snap_remove(hds
, ddrsa
->ddrsa_oldsnapname
, tx
,
2729 mutex_enter(&ds
->ds_lock
);
2730 (void) strlcpy(ds
->ds_snapname
, ddrsa
->ddrsa_newsnapname
,
2731 sizeof (ds
->ds_snapname
));
2732 mutex_exit(&ds
->ds_lock
);
2733 VERIFY0(zap_add(dp
->dp_meta_objset
,
2734 dsl_dataset_phys(hds
)->ds_snapnames_zapobj
,
2735 ds
->ds_snapname
, 8, 1, &ds
->ds_object
, tx
));
2736 zvol_rename_minors(dp
->dp_spa
, ddrsa
->ddrsa_oldsnapname
,
2737 ddrsa
->ddrsa_newsnapname
, B_TRUE
);
2739 dsl_dataset_rele(ds
, FTAG
);
2744 dsl_dataset_rename_snapshot_sync(void *arg
, dmu_tx_t
*tx
)
2746 dsl_dataset_rename_snapshot_arg_t
*ddrsa
= arg
;
2747 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
2748 dsl_dataset_t
*hds
= NULL
;
2750 VERIFY0(dsl_dataset_hold(dp
, ddrsa
->ddrsa_fsname
, FTAG
, &hds
));
2751 ddrsa
->ddrsa_tx
= tx
;
2752 if (ddrsa
->ddrsa_recursive
) {
2753 VERIFY0(dmu_objset_find_dp(dp
, hds
->ds_dir
->dd_object
,
2754 dsl_dataset_rename_snapshot_sync_impl
, ddrsa
,
2757 VERIFY0(dsl_dataset_rename_snapshot_sync_impl(dp
, hds
, ddrsa
));
2759 dsl_dataset_rele(hds
, FTAG
);
2763 dsl_dataset_rename_snapshot(const char *fsname
,
2764 const char *oldsnapname
, const char *newsnapname
, boolean_t recursive
)
2766 dsl_dataset_rename_snapshot_arg_t ddrsa
;
2768 ddrsa
.ddrsa_fsname
= fsname
;
2769 ddrsa
.ddrsa_oldsnapname
= oldsnapname
;
2770 ddrsa
.ddrsa_newsnapname
= newsnapname
;
2771 ddrsa
.ddrsa_recursive
= recursive
;
2773 return (dsl_sync_task(fsname
, dsl_dataset_rename_snapshot_check
,
2774 dsl_dataset_rename_snapshot_sync
, &ddrsa
,
2775 1, ZFS_SPACE_CHECK_RESERVED
));
2779 * If we're doing an ownership handoff, we need to make sure that there is
2780 * only one long hold on the dataset. We're not allowed to change anything here
2781 * so we don't permanently release the long hold or regular hold here. We want
2782 * to do this only when syncing to avoid the dataset unexpectedly going away
2783 * when we release the long hold.
2786 dsl_dataset_handoff_check(dsl_dataset_t
*ds
, void *owner
, dmu_tx_t
*tx
)
2790 if (!dmu_tx_is_syncing(tx
))
2793 if (owner
!= NULL
) {
2794 VERIFY3P(ds
->ds_owner
, ==, owner
);
2795 dsl_dataset_long_rele(ds
, owner
);
2798 held
= dsl_dataset_long_held(ds
);
2801 dsl_dataset_long_hold(ds
, owner
);
2804 return (SET_ERROR(EBUSY
));
2810 dsl_dataset_rollback_check(void *arg
, dmu_tx_t
*tx
)
2812 dsl_dataset_rollback_arg_t
*ddra
= arg
;
2813 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
2815 int64_t unused_refres_delta
;
2818 error
= dsl_dataset_hold(dp
, ddra
->ddra_fsname
, FTAG
, &ds
);
2822 /* must not be a snapshot */
2823 if (ds
->ds_is_snapshot
) {
2824 dsl_dataset_rele(ds
, FTAG
);
2825 return (SET_ERROR(EINVAL
));
2828 /* must have a most recent snapshot */
2829 if (dsl_dataset_phys(ds
)->ds_prev_snap_txg
< TXG_INITIAL
) {
2830 dsl_dataset_rele(ds
, FTAG
);
2831 return (SET_ERROR(ESRCH
));
2835 * No rollback to a snapshot created in the current txg, because
2836 * the rollback may dirty the dataset and create blocks that are
2837 * not reachable from the rootbp while having a birth txg that
2838 * falls into the snapshot's range.
2840 if (dmu_tx_is_syncing(tx
) &&
2841 dsl_dataset_phys(ds
)->ds_prev_snap_txg
>= tx
->tx_txg
) {
2842 dsl_dataset_rele(ds
, FTAG
);
2843 return (SET_ERROR(EAGAIN
));
2847 * If the expected target snapshot is specified, then check that
2848 * the latest snapshot is it.
2850 if (ddra
->ddra_tosnap
!= NULL
) {
2851 dsl_dataset_t
*snapds
;
2853 /* Check if the target snapshot exists at all. */
2854 error
= dsl_dataset_hold(dp
, ddra
->ddra_tosnap
, FTAG
, &snapds
);
2857 * ESRCH is used to signal that the target snapshot does
2858 * not exist, while ENOENT is used to report that
2859 * the rolled back dataset does not exist.
2860 * ESRCH is also used to cover other cases where the
2861 * target snapshot is not related to the dataset being
2862 * rolled back such as being in a different pool.
2864 if (error
== ENOENT
|| error
== EXDEV
)
2865 error
= SET_ERROR(ESRCH
);
2866 dsl_dataset_rele(ds
, FTAG
);
2869 ASSERT(snapds
->ds_is_snapshot
);
2871 /* Check if the snapshot is the latest snapshot indeed. */
2872 if (snapds
!= ds
->ds_prev
) {
2874 * Distinguish between the case where the only problem
2875 * is intervening snapshots (EEXIST) vs the snapshot
2876 * not being a valid target for rollback (ESRCH).
2878 if (snapds
->ds_dir
== ds
->ds_dir
||
2879 (dsl_dir_is_clone(ds
->ds_dir
) &&
2880 dsl_dir_phys(ds
->ds_dir
)->dd_origin_obj
==
2881 snapds
->ds_object
)) {
2882 error
= SET_ERROR(EEXIST
);
2884 error
= SET_ERROR(ESRCH
);
2886 dsl_dataset_rele(snapds
, FTAG
);
2887 dsl_dataset_rele(ds
, FTAG
);
2890 dsl_dataset_rele(snapds
, FTAG
);
2893 /* must not have any bookmarks after the most recent snapshot */
2894 nvlist_t
*proprequest
= fnvlist_alloc();
2895 fnvlist_add_boolean(proprequest
, zfs_prop_to_name(ZFS_PROP_CREATETXG
));
2896 nvlist_t
*bookmarks
= fnvlist_alloc();
2897 error
= dsl_get_bookmarks_impl(ds
, proprequest
, bookmarks
);
2898 fnvlist_free(proprequest
);
2900 dsl_dataset_rele(ds
, FTAG
);
2903 for (nvpair_t
*pair
= nvlist_next_nvpair(bookmarks
, NULL
);
2904 pair
!= NULL
; pair
= nvlist_next_nvpair(bookmarks
, pair
)) {
2906 fnvlist_lookup_nvlist(fnvpair_value_nvlist(pair
),
2907 zfs_prop_to_name(ZFS_PROP_CREATETXG
));
2908 uint64_t createtxg
= fnvlist_lookup_uint64(valuenv
, "value");
2909 if (createtxg
> dsl_dataset_phys(ds
)->ds_prev_snap_txg
) {
2910 fnvlist_free(bookmarks
);
2911 dsl_dataset_rele(ds
, FTAG
);
2912 return (SET_ERROR(EEXIST
));
2915 fnvlist_free(bookmarks
);
2917 error
= dsl_dataset_handoff_check(ds
, ddra
->ddra_owner
, tx
);
2919 dsl_dataset_rele(ds
, FTAG
);
2924 * Check if the snap we are rolling back to uses more than
2927 if (ds
->ds_quota
!= 0 &&
2928 dsl_dataset_phys(ds
->ds_prev
)->ds_referenced_bytes
> ds
->ds_quota
) {
2929 dsl_dataset_rele(ds
, FTAG
);
2930 return (SET_ERROR(EDQUOT
));
2934 * When we do the clone swap, we will temporarily use more space
2935 * due to the refreservation (the head will no longer have any
2936 * unique space, so the entire amount of the refreservation will need
2937 * to be free). We will immediately destroy the clone, freeing
2938 * this space, but the freeing happens over many txg's.
2940 unused_refres_delta
= (int64_t)MIN(ds
->ds_reserved
,
2941 dsl_dataset_phys(ds
)->ds_unique_bytes
);
2943 if (unused_refres_delta
> 0 &&
2944 unused_refres_delta
>
2945 dsl_dir_space_available(ds
->ds_dir
, NULL
, 0, TRUE
)) {
2946 dsl_dataset_rele(ds
, FTAG
);
2947 return (SET_ERROR(ENOSPC
));
2950 dsl_dataset_rele(ds
, FTAG
);
2955 dsl_dataset_rollback_sync(void *arg
, dmu_tx_t
*tx
)
2957 dsl_dataset_rollback_arg_t
*ddra
= arg
;
2958 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
2959 dsl_dataset_t
*ds
, *clone
;
2961 char namebuf
[ZFS_MAX_DATASET_NAME_LEN
];
2963 VERIFY0(dsl_dataset_hold(dp
, ddra
->ddra_fsname
, FTAG
, &ds
));
2965 dsl_dataset_name(ds
->ds_prev
, namebuf
);
2966 fnvlist_add_string(ddra
->ddra_result
, "target", namebuf
);
2968 cloneobj
= dsl_dataset_create_sync(ds
->ds_dir
, "%rollback",
2969 ds
->ds_prev
, DS_CREATE_FLAG_NODIRTY
, kcred
, NULL
, tx
);
2971 VERIFY0(dsl_dataset_hold_obj(dp
, cloneobj
, FTAG
, &clone
));
2973 dsl_dataset_clone_swap_sync_impl(clone
, ds
, tx
);
2974 dsl_dataset_zero_zil(ds
, tx
);
2976 dsl_destroy_head_sync_impl(clone
, tx
);
2978 dsl_dataset_rele(clone
, FTAG
);
2979 dsl_dataset_rele(ds
, FTAG
);
2983 * Rolls back the given filesystem or volume to the most recent snapshot.
2984 * The name of the most recent snapshot will be returned under key "target"
2985 * in the result nvlist.
2988 * - The existing dataset MUST be owned by the specified owner at entry
2989 * - Upon return, dataset will still be held by the same owner, whether we
2992 * This mode is required any time the existing filesystem is mounted. See
2993 * notes above zfs_suspend_fs() for further details.
2996 dsl_dataset_rollback(const char *fsname
, const char *tosnap
, void *owner
,
2999 dsl_dataset_rollback_arg_t ddra
;
3001 ddra
.ddra_fsname
= fsname
;
3002 ddra
.ddra_tosnap
= tosnap
;
3003 ddra
.ddra_owner
= owner
;
3004 ddra
.ddra_result
= result
;
3006 return (dsl_sync_task(fsname
, dsl_dataset_rollback_check
,
3007 dsl_dataset_rollback_sync
, &ddra
,
3008 1, ZFS_SPACE_CHECK_RESERVED
));
3011 struct promotenode
{
3016 static int snaplist_space(list_t
*l
, uint64_t mintxg
, uint64_t *spacep
);
3017 static int promote_hold(dsl_dataset_promote_arg_t
*ddpa
, dsl_pool_t
*dp
,
3019 static void promote_rele(dsl_dataset_promote_arg_t
*ddpa
, void *tag
);
3022 dsl_dataset_promote_check(void *arg
, dmu_tx_t
*tx
)
3024 dsl_dataset_promote_arg_t
*ddpa
= arg
;
3025 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3027 struct promotenode
*snap
;
3028 dsl_dataset_t
*origin_ds
;
3032 size_t max_snap_len
;
3033 boolean_t conflicting_snaps
;
3035 err
= promote_hold(ddpa
, dp
, FTAG
);
3039 hds
= ddpa
->ddpa_clone
;
3040 max_snap_len
= MAXNAMELEN
- strlen(ddpa
->ddpa_clonename
) - 1;
3042 if (dsl_dataset_phys(hds
)->ds_flags
& DS_FLAG_NOPROMOTE
) {
3043 promote_rele(ddpa
, FTAG
);
3044 return (SET_ERROR(EXDEV
));
3047 snap
= list_head(&ddpa
->shared_snaps
);
3049 err
= SET_ERROR(ENOENT
);
3052 origin_ds
= snap
->ds
;
3055 * Encrypted clones share a DSL Crypto Key with their origin's dsl dir.
3056 * When doing a promote we must make sure the encryption root for
3057 * both the target and the target's origin does not change to avoid
3058 * needing to rewrap encryption keys
3060 err
= dsl_dataset_promote_crypt_check(hds
->ds_dir
, origin_ds
->ds_dir
);
3065 * Compute and check the amount of space to transfer. Since this is
3066 * so expensive, don't do the preliminary check.
3068 if (!dmu_tx_is_syncing(tx
)) {
3069 promote_rele(ddpa
, FTAG
);
3073 /* compute origin's new unique space */
3074 snap
= list_tail(&ddpa
->clone_snaps
);
3075 ASSERT(snap
!= NULL
);
3076 ASSERT3U(dsl_dataset_phys(snap
->ds
)->ds_prev_snap_obj
, ==,
3077 origin_ds
->ds_object
);
3078 dsl_deadlist_space_range(&snap
->ds
->ds_deadlist
,
3079 dsl_dataset_phys(origin_ds
)->ds_prev_snap_txg
, UINT64_MAX
,
3080 &ddpa
->unique
, &unused
, &unused
);
3083 * Walk the snapshots that we are moving
3085 * Compute space to transfer. Consider the incremental changes
3086 * to used by each snapshot:
3087 * (my used) = (prev's used) + (blocks born) - (blocks killed)
3088 * So each snapshot gave birth to:
3089 * (blocks born) = (my used) - (prev's used) + (blocks killed)
3090 * So a sequence would look like:
3091 * (uN - u(N-1) + kN) + ... + (u1 - u0 + k1) + (u0 - 0 + k0)
3092 * Which simplifies to:
3093 * uN + kN + kN-1 + ... + k1 + k0
3094 * Note however, if we stop before we reach the ORIGIN we get:
3095 * uN + kN + kN-1 + ... + kM - uM-1
3097 conflicting_snaps
= B_FALSE
;
3099 ddpa
->used
= dsl_dataset_phys(origin_ds
)->ds_referenced_bytes
;
3100 ddpa
->comp
= dsl_dataset_phys(origin_ds
)->ds_compressed_bytes
;
3101 ddpa
->uncomp
= dsl_dataset_phys(origin_ds
)->ds_uncompressed_bytes
;
3102 for (snap
= list_head(&ddpa
->shared_snaps
); snap
;
3103 snap
= list_next(&ddpa
->shared_snaps
, snap
)) {
3104 uint64_t val
, dlused
, dlcomp
, dluncomp
;
3105 dsl_dataset_t
*ds
= snap
->ds
;
3110 * If there are long holds, we won't be able to evict
3113 if (dsl_dataset_long_held(ds
)) {
3114 err
= SET_ERROR(EBUSY
);
3118 /* Check that the snapshot name does not conflict */
3119 VERIFY0(dsl_dataset_get_snapname(ds
));
3120 if (strlen(ds
->ds_snapname
) >= max_snap_len
) {
3121 err
= SET_ERROR(ENAMETOOLONG
);
3124 err
= dsl_dataset_snap_lookup(hds
, ds
->ds_snapname
, &val
);
3126 fnvlist_add_boolean(ddpa
->err_ds
,
3127 snap
->ds
->ds_snapname
);
3128 conflicting_snaps
= B_TRUE
;
3129 } else if (err
!= ENOENT
) {
3133 /* The very first snapshot does not have a deadlist */
3134 if (dsl_dataset_phys(ds
)->ds_prev_snap_obj
== 0)
3137 dsl_deadlist_space(&ds
->ds_deadlist
,
3138 &dlused
, &dlcomp
, &dluncomp
);
3139 ddpa
->used
+= dlused
;
3140 ddpa
->comp
+= dlcomp
;
3141 ddpa
->uncomp
+= dluncomp
;
3145 * In order to return the full list of conflicting snapshots, we check
3146 * whether there was a conflict after traversing all of them.
3148 if (conflicting_snaps
) {
3149 err
= SET_ERROR(EEXIST
);
3154 * If we are a clone of a clone then we never reached ORIGIN,
3155 * so we need to subtract out the clone origin's used space.
3157 if (ddpa
->origin_origin
) {
3159 dsl_dataset_phys(ddpa
->origin_origin
)->ds_referenced_bytes
;
3161 dsl_dataset_phys(ddpa
->origin_origin
)->ds_compressed_bytes
;
3163 dsl_dataset_phys(ddpa
->origin_origin
)->
3164 ds_uncompressed_bytes
;
3167 /* Check that there is enough space and limit headroom here */
3168 err
= dsl_dir_transfer_possible(origin_ds
->ds_dir
, hds
->ds_dir
,
3169 0, ss_mv_cnt
, ddpa
->used
, ddpa
->cr
);
3174 * Compute the amounts of space that will be used by snapshots
3175 * after the promotion (for both origin and clone). For each,
3176 * it is the amount of space that will be on all of their
3177 * deadlists (that was not born before their new origin).
3179 if (dsl_dir_phys(hds
->ds_dir
)->dd_flags
& DD_FLAG_USED_BREAKDOWN
) {
3183 * Note, typically this will not be a clone of a clone,
3184 * so dd_origin_txg will be < TXG_INITIAL, so
3185 * these snaplist_space() -> dsl_deadlist_space_range()
3186 * calls will be fast because they do not have to
3187 * iterate over all bps.
3189 snap
= list_head(&ddpa
->origin_snaps
);
3191 err
= SET_ERROR(ENOENT
);
3194 err
= snaplist_space(&ddpa
->shared_snaps
,
3195 snap
->ds
->ds_dir
->dd_origin_txg
, &ddpa
->cloneusedsnap
);
3199 err
= snaplist_space(&ddpa
->clone_snaps
,
3200 snap
->ds
->ds_dir
->dd_origin_txg
, &space
);
3203 ddpa
->cloneusedsnap
+= space
;
3205 if (dsl_dir_phys(origin_ds
->ds_dir
)->dd_flags
&
3206 DD_FLAG_USED_BREAKDOWN
) {
3207 err
= snaplist_space(&ddpa
->origin_snaps
,
3208 dsl_dataset_phys(origin_ds
)->ds_creation_txg
,
3209 &ddpa
->originusedsnap
);
3215 promote_rele(ddpa
, FTAG
);
3220 dsl_dataset_promote_sync(void *arg
, dmu_tx_t
*tx
)
3222 dsl_dataset_promote_arg_t
*ddpa
= arg
;
3223 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3225 struct promotenode
*snap
;
3226 dsl_dataset_t
*origin_ds
;
3227 dsl_dataset_t
*origin_head
;
3229 dsl_dir_t
*odd
= NULL
;
3230 uint64_t oldnext_obj
;
3233 VERIFY0(promote_hold(ddpa
, dp
, FTAG
));
3234 hds
= ddpa
->ddpa_clone
;
3236 ASSERT0(dsl_dataset_phys(hds
)->ds_flags
& DS_FLAG_NOPROMOTE
);
3238 snap
= list_head(&ddpa
->shared_snaps
);
3239 origin_ds
= snap
->ds
;
3242 snap
= list_head(&ddpa
->origin_snaps
);
3243 origin_head
= snap
->ds
;
3246 * We need to explicitly open odd, since origin_ds's dd will be
3249 VERIFY0(dsl_dir_hold_obj(dp
, origin_ds
->ds_dir
->dd_object
,
3252 dsl_dataset_promote_crypt_sync(hds
->ds_dir
, odd
, tx
);
3254 /* change origin's next snap */
3255 dmu_buf_will_dirty(origin_ds
->ds_dbuf
, tx
);
3256 oldnext_obj
= dsl_dataset_phys(origin_ds
)->ds_next_snap_obj
;
3257 snap
= list_tail(&ddpa
->clone_snaps
);
3258 ASSERT3U(dsl_dataset_phys(snap
->ds
)->ds_prev_snap_obj
, ==,
3259 origin_ds
->ds_object
);
3260 dsl_dataset_phys(origin_ds
)->ds_next_snap_obj
= snap
->ds
->ds_object
;
3262 /* change the origin's next clone */
3263 if (dsl_dataset_phys(origin_ds
)->ds_next_clones_obj
) {
3264 dsl_dataset_remove_from_next_clones(origin_ds
,
3265 snap
->ds
->ds_object
, tx
);
3266 VERIFY0(zap_add_int(dp
->dp_meta_objset
,
3267 dsl_dataset_phys(origin_ds
)->ds_next_clones_obj
,
3272 dmu_buf_will_dirty(dd
->dd_dbuf
, tx
);
3273 ASSERT3U(dsl_dir_phys(dd
)->dd_origin_obj
, ==, origin_ds
->ds_object
);
3274 dsl_dir_phys(dd
)->dd_origin_obj
= dsl_dir_phys(odd
)->dd_origin_obj
;
3275 dd
->dd_origin_txg
= origin_head
->ds_dir
->dd_origin_txg
;
3276 dmu_buf_will_dirty(odd
->dd_dbuf
, tx
);
3277 dsl_dir_phys(odd
)->dd_origin_obj
= origin_ds
->ds_object
;
3278 origin_head
->ds_dir
->dd_origin_txg
=
3279 dsl_dataset_phys(origin_ds
)->ds_creation_txg
;
3281 /* change dd_clone entries */
3282 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_DIR_CLONES
) {
3283 VERIFY0(zap_remove_int(dp
->dp_meta_objset
,
3284 dsl_dir_phys(odd
)->dd_clones
, hds
->ds_object
, tx
));
3285 VERIFY0(zap_add_int(dp
->dp_meta_objset
,
3286 dsl_dir_phys(ddpa
->origin_origin
->ds_dir
)->dd_clones
,
3287 hds
->ds_object
, tx
));
3289 VERIFY0(zap_remove_int(dp
->dp_meta_objset
,
3290 dsl_dir_phys(ddpa
->origin_origin
->ds_dir
)->dd_clones
,
3291 origin_head
->ds_object
, tx
));
3292 if (dsl_dir_phys(dd
)->dd_clones
== 0) {
3293 dsl_dir_phys(dd
)->dd_clones
=
3294 zap_create(dp
->dp_meta_objset
, DMU_OT_DSL_CLONES
,
3295 DMU_OT_NONE
, 0, tx
);
3297 VERIFY0(zap_add_int(dp
->dp_meta_objset
,
3298 dsl_dir_phys(dd
)->dd_clones
, origin_head
->ds_object
, tx
));
3301 /* move snapshots to this dir */
3302 for (snap
= list_head(&ddpa
->shared_snaps
); snap
;
3303 snap
= list_next(&ddpa
->shared_snaps
, snap
)) {
3304 dsl_dataset_t
*ds
= snap
->ds
;
3307 * Property callbacks are registered to a particular
3308 * dsl_dir. Since ours is changing, evict the objset
3309 * so that they will be unregistered from the old dsl_dir.
3311 if (ds
->ds_objset
) {
3312 dmu_objset_evict(ds
->ds_objset
);
3313 ds
->ds_objset
= NULL
;
3316 /* move snap name entry */
3317 VERIFY0(dsl_dataset_get_snapname(ds
));
3318 VERIFY0(dsl_dataset_snap_remove(origin_head
,
3319 ds
->ds_snapname
, tx
, B_TRUE
));
3320 VERIFY0(zap_add(dp
->dp_meta_objset
,
3321 dsl_dataset_phys(hds
)->ds_snapnames_zapobj
, ds
->ds_snapname
,
3322 8, 1, &ds
->ds_object
, tx
));
3323 dsl_fs_ss_count_adjust(hds
->ds_dir
, 1,
3324 DD_FIELD_SNAPSHOT_COUNT
, tx
);
3326 /* change containing dsl_dir */
3327 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
3328 ASSERT3U(dsl_dataset_phys(ds
)->ds_dir_obj
, ==, odd
->dd_object
);
3329 dsl_dataset_phys(ds
)->ds_dir_obj
= dd
->dd_object
;
3330 ASSERT3P(ds
->ds_dir
, ==, odd
);
3331 dsl_dir_rele(ds
->ds_dir
, ds
);
3332 VERIFY0(dsl_dir_hold_obj(dp
, dd
->dd_object
,
3333 NULL
, ds
, &ds
->ds_dir
));
3335 /* move any clone references */
3336 if (dsl_dataset_phys(ds
)->ds_next_clones_obj
&&
3337 spa_version(dp
->dp_spa
) >= SPA_VERSION_DIR_CLONES
) {
3341 for (zap_cursor_init(&zc
, dp
->dp_meta_objset
,
3342 dsl_dataset_phys(ds
)->ds_next_clones_obj
);
3343 zap_cursor_retrieve(&zc
, &za
) == 0;
3344 zap_cursor_advance(&zc
)) {
3345 dsl_dataset_t
*cnds
;
3348 if (za
.za_first_integer
== oldnext_obj
) {
3350 * We've already moved the
3351 * origin's reference.
3356 VERIFY0(dsl_dataset_hold_obj(dp
,
3357 za
.za_first_integer
, FTAG
, &cnds
));
3358 o
= dsl_dir_phys(cnds
->ds_dir
)->
3359 dd_head_dataset_obj
;
3361 VERIFY0(zap_remove_int(dp
->dp_meta_objset
,
3362 dsl_dir_phys(odd
)->dd_clones
, o
, tx
));
3363 VERIFY0(zap_add_int(dp
->dp_meta_objset
,
3364 dsl_dir_phys(dd
)->dd_clones
, o
, tx
));
3365 dsl_dataset_rele(cnds
, FTAG
);
3367 zap_cursor_fini(&zc
);
3370 ASSERT(!dsl_prop_hascb(ds
));
3374 * Change space accounting.
3375 * Note, pa->*usedsnap and dd_used_breakdown[SNAP] will either
3376 * both be valid, or both be 0 (resulting in delta == 0). This
3377 * is true for each of {clone,origin} independently.
3380 delta
= ddpa
->cloneusedsnap
-
3381 dsl_dir_phys(dd
)->dd_used_breakdown
[DD_USED_SNAP
];
3382 ASSERT3S(delta
, >=, 0);
3383 ASSERT3U(ddpa
->used
, >=, delta
);
3384 dsl_dir_diduse_space(dd
, DD_USED_SNAP
, delta
, 0, 0, tx
);
3385 dsl_dir_diduse_space(dd
, DD_USED_HEAD
,
3386 ddpa
->used
- delta
, ddpa
->comp
, ddpa
->uncomp
, tx
);
3388 delta
= ddpa
->originusedsnap
-
3389 dsl_dir_phys(odd
)->dd_used_breakdown
[DD_USED_SNAP
];
3390 ASSERT3S(delta
, <=, 0);
3391 ASSERT3U(ddpa
->used
, >=, -delta
);
3392 dsl_dir_diduse_space(odd
, DD_USED_SNAP
, delta
, 0, 0, tx
);
3393 dsl_dir_diduse_space(odd
, DD_USED_HEAD
,
3394 -ddpa
->used
- delta
, -ddpa
->comp
, -ddpa
->uncomp
, tx
);
3396 dsl_dataset_phys(origin_ds
)->ds_unique_bytes
= ddpa
->unique
;
3398 /* log history record */
3399 spa_history_log_internal_ds(hds
, "promote", tx
, "");
3401 dsl_dir_rele(odd
, FTAG
);
3402 promote_rele(ddpa
, FTAG
);
3406 * Make a list of dsl_dataset_t's for the snapshots between first_obj
3407 * (exclusive) and last_obj (inclusive). The list will be in reverse
3408 * order (last_obj will be the list_head()). If first_obj == 0, do all
3409 * snapshots back to this dataset's origin.
3412 snaplist_make(dsl_pool_t
*dp
,
3413 uint64_t first_obj
, uint64_t last_obj
, list_t
*l
, void *tag
)
3415 uint64_t obj
= last_obj
;
3417 list_create(l
, sizeof (struct promotenode
),
3418 offsetof(struct promotenode
, link
));
3420 while (obj
!= first_obj
) {
3422 struct promotenode
*snap
;
3425 err
= dsl_dataset_hold_obj(dp
, obj
, tag
, &ds
);
3426 ASSERT(err
!= ENOENT
);
3431 first_obj
= dsl_dir_phys(ds
->ds_dir
)->dd_origin_obj
;
3433 snap
= kmem_alloc(sizeof (*snap
), KM_SLEEP
);
3435 list_insert_tail(l
, snap
);
3436 obj
= dsl_dataset_phys(ds
)->ds_prev_snap_obj
;
3443 snaplist_space(list_t
*l
, uint64_t mintxg
, uint64_t *spacep
)
3445 struct promotenode
*snap
;
3448 for (snap
= list_head(l
); snap
; snap
= list_next(l
, snap
)) {
3449 uint64_t used
, comp
, uncomp
;
3450 dsl_deadlist_space_range(&snap
->ds
->ds_deadlist
,
3451 mintxg
, UINT64_MAX
, &used
, &comp
, &uncomp
);
3458 snaplist_destroy(list_t
*l
, void *tag
)
3460 struct promotenode
*snap
;
3462 if (l
== NULL
|| !list_link_active(&l
->list_head
))
3465 while ((snap
= list_tail(l
)) != NULL
) {
3466 list_remove(l
, snap
);
3467 dsl_dataset_rele(snap
->ds
, tag
);
3468 kmem_free(snap
, sizeof (*snap
));
3474 promote_hold(dsl_dataset_promote_arg_t
*ddpa
, dsl_pool_t
*dp
, void *tag
)
3478 struct promotenode
*snap
;
3480 error
= dsl_dataset_hold(dp
, ddpa
->ddpa_clonename
, tag
,
3484 dd
= ddpa
->ddpa_clone
->ds_dir
;
3486 if (ddpa
->ddpa_clone
->ds_is_snapshot
||
3487 !dsl_dir_is_clone(dd
)) {
3488 dsl_dataset_rele(ddpa
->ddpa_clone
, tag
);
3489 return (SET_ERROR(EINVAL
));
3492 error
= snaplist_make(dp
, 0, dsl_dir_phys(dd
)->dd_origin_obj
,
3493 &ddpa
->shared_snaps
, tag
);
3497 error
= snaplist_make(dp
, 0, ddpa
->ddpa_clone
->ds_object
,
3498 &ddpa
->clone_snaps
, tag
);
3502 snap
= list_head(&ddpa
->shared_snaps
);
3503 ASSERT3U(snap
->ds
->ds_object
, ==, dsl_dir_phys(dd
)->dd_origin_obj
);
3504 error
= snaplist_make(dp
, dsl_dir_phys(dd
)->dd_origin_obj
,
3505 dsl_dir_phys(snap
->ds
->ds_dir
)->dd_head_dataset_obj
,
3506 &ddpa
->origin_snaps
, tag
);
3510 if (dsl_dir_phys(snap
->ds
->ds_dir
)->dd_origin_obj
!= 0) {
3511 error
= dsl_dataset_hold_obj(dp
,
3512 dsl_dir_phys(snap
->ds
->ds_dir
)->dd_origin_obj
,
3513 tag
, &ddpa
->origin_origin
);
3519 promote_rele(ddpa
, tag
);
3524 promote_rele(dsl_dataset_promote_arg_t
*ddpa
, void *tag
)
3526 snaplist_destroy(&ddpa
->shared_snaps
, tag
);
3527 snaplist_destroy(&ddpa
->clone_snaps
, tag
);
3528 snaplist_destroy(&ddpa
->origin_snaps
, tag
);
3529 if (ddpa
->origin_origin
!= NULL
)
3530 dsl_dataset_rele(ddpa
->origin_origin
, tag
);
3531 dsl_dataset_rele(ddpa
->ddpa_clone
, tag
);
3537 * If it fails due to a conflicting snapshot name, "conflsnap" will be filled
3538 * in with the name. (It must be at least ZFS_MAX_DATASET_NAME_LEN bytes long.)
3541 dsl_dataset_promote(const char *name
, char *conflsnap
)
3543 dsl_dataset_promote_arg_t ddpa
= { 0 };
3546 nvpair_t
*snap_pair
;
3550 * We will modify space proportional to the number of
3551 * snapshots. Compute numsnaps.
3553 error
= dmu_objset_hold(name
, FTAG
, &os
);
3556 error
= zap_count(dmu_objset_pool(os
)->dp_meta_objset
,
3557 dsl_dataset_phys(dmu_objset_ds(os
))->ds_snapnames_zapobj
,
3559 dmu_objset_rele(os
, FTAG
);
3563 ddpa
.ddpa_clonename
= name
;
3564 ddpa
.err_ds
= fnvlist_alloc();
3567 error
= dsl_sync_task(name
, dsl_dataset_promote_check
,
3568 dsl_dataset_promote_sync
, &ddpa
,
3569 2 + numsnaps
, ZFS_SPACE_CHECK_RESERVED
);
3572 * Return the first conflicting snapshot found.
3574 snap_pair
= nvlist_next_nvpair(ddpa
.err_ds
, NULL
);
3575 if (snap_pair
!= NULL
&& conflsnap
!= NULL
)
3576 (void) strcpy(conflsnap
, nvpair_name(snap_pair
));
3578 fnvlist_free(ddpa
.err_ds
);
3583 dsl_dataset_clone_swap_check_impl(dsl_dataset_t
*clone
,
3584 dsl_dataset_t
*origin_head
, boolean_t force
, void *owner
, dmu_tx_t
*tx
)
3587 * "slack" factor for received datasets with refquota set on them.
3588 * See the bottom of this function for details on its use.
3590 uint64_t refquota_slack
= (uint64_t)DMU_MAX_ACCESS
*
3591 spa_asize_inflation
;
3592 int64_t unused_refres_delta
;
3594 /* they should both be heads */
3595 if (clone
->ds_is_snapshot
||
3596 origin_head
->ds_is_snapshot
)
3597 return (SET_ERROR(EINVAL
));
3599 /* if we are not forcing, the branch point should be just before them */
3600 if (!force
&& clone
->ds_prev
!= origin_head
->ds_prev
)
3601 return (SET_ERROR(EINVAL
));
3603 /* clone should be the clone (unless they are unrelated) */
3604 if (clone
->ds_prev
!= NULL
&&
3605 clone
->ds_prev
!= clone
->ds_dir
->dd_pool
->dp_origin_snap
&&
3606 origin_head
->ds_dir
!= clone
->ds_prev
->ds_dir
)
3607 return (SET_ERROR(EINVAL
));
3609 /* the clone should be a child of the origin */
3610 if (clone
->ds_dir
->dd_parent
!= origin_head
->ds_dir
)
3611 return (SET_ERROR(EINVAL
));
3613 /* origin_head shouldn't be modified unless 'force' */
3615 dsl_dataset_modified_since_snap(origin_head
, origin_head
->ds_prev
))
3616 return (SET_ERROR(ETXTBSY
));
3618 /* origin_head should have no long holds (e.g. is not mounted) */
3619 if (dsl_dataset_handoff_check(origin_head
, owner
, tx
))
3620 return (SET_ERROR(EBUSY
));
3622 /* check amount of any unconsumed refreservation */
3623 unused_refres_delta
=
3624 (int64_t)MIN(origin_head
->ds_reserved
,
3625 dsl_dataset_phys(origin_head
)->ds_unique_bytes
) -
3626 (int64_t)MIN(origin_head
->ds_reserved
,
3627 dsl_dataset_phys(clone
)->ds_unique_bytes
);
3629 if (unused_refres_delta
> 0 &&
3630 unused_refres_delta
>
3631 dsl_dir_space_available(origin_head
->ds_dir
, NULL
, 0, TRUE
))
3632 return (SET_ERROR(ENOSPC
));
3635 * The clone can't be too much over the head's refquota.
3637 * To ensure that the entire refquota can be used, we allow one
3638 * transaction to exceed the refquota. Therefore, this check
3639 * needs to also allow for the space referenced to be more than the
3640 * refquota. The maximum amount of space that one transaction can use
3641 * on disk is DMU_MAX_ACCESS * spa_asize_inflation. Allowing this
3642 * overage ensures that we are able to receive a filesystem that
3643 * exceeds the refquota on the source system.
3645 * So that overage is the refquota_slack we use below.
3647 if (origin_head
->ds_quota
!= 0 &&
3648 dsl_dataset_phys(clone
)->ds_referenced_bytes
>
3649 origin_head
->ds_quota
+ refquota_slack
)
3650 return (SET_ERROR(EDQUOT
));
3656 dsl_dataset_swap_remap_deadlists(dsl_dataset_t
*clone
,
3657 dsl_dataset_t
*origin
, dmu_tx_t
*tx
)
3659 uint64_t clone_remap_dl_obj
, origin_remap_dl_obj
;
3660 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3662 ASSERT(dsl_pool_sync_context(dp
));
3664 clone_remap_dl_obj
= dsl_dataset_get_remap_deadlist_object(clone
);
3665 origin_remap_dl_obj
= dsl_dataset_get_remap_deadlist_object(origin
);
3667 if (clone_remap_dl_obj
!= 0) {
3668 dsl_deadlist_close(&clone
->ds_remap_deadlist
);
3669 dsl_dataset_unset_remap_deadlist_object(clone
, tx
);
3671 if (origin_remap_dl_obj
!= 0) {
3672 dsl_deadlist_close(&origin
->ds_remap_deadlist
);
3673 dsl_dataset_unset_remap_deadlist_object(origin
, tx
);
3676 if (clone_remap_dl_obj
!= 0) {
3677 dsl_dataset_set_remap_deadlist_object(origin
,
3678 clone_remap_dl_obj
, tx
);
3679 dsl_deadlist_open(&origin
->ds_remap_deadlist
,
3680 dp
->dp_meta_objset
, clone_remap_dl_obj
);
3682 if (origin_remap_dl_obj
!= 0) {
3683 dsl_dataset_set_remap_deadlist_object(clone
,
3684 origin_remap_dl_obj
, tx
);
3685 dsl_deadlist_open(&clone
->ds_remap_deadlist
,
3686 dp
->dp_meta_objset
, origin_remap_dl_obj
);
3691 dsl_dataset_clone_swap_sync_impl(dsl_dataset_t
*clone
,
3692 dsl_dataset_t
*origin_head
, dmu_tx_t
*tx
)
3694 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3695 int64_t unused_refres_delta
;
3697 ASSERT(clone
->ds_reserved
== 0);
3699 * NOTE: On DEBUG kernels there could be a race between this and
3700 * the check function if spa_asize_inflation is adjusted...
3702 ASSERT(origin_head
->ds_quota
== 0 ||
3703 dsl_dataset_phys(clone
)->ds_unique_bytes
<= origin_head
->ds_quota
+
3704 DMU_MAX_ACCESS
* spa_asize_inflation
);
3705 ASSERT3P(clone
->ds_prev
, ==, origin_head
->ds_prev
);
3708 * Swap per-dataset feature flags.
3710 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
3711 if (!(spa_feature_table
[f
].fi_flags
&
3712 ZFEATURE_FLAG_PER_DATASET
)) {
3713 ASSERT(!dsl_dataset_feature_is_active(clone
, f
));
3714 ASSERT(!dsl_dataset_feature_is_active(origin_head
, f
));
3718 boolean_t clone_inuse
= dsl_dataset_feature_is_active(clone
, f
);
3719 void *clone_feature
= clone
->ds_feature
[f
];
3720 boolean_t origin_head_inuse
=
3721 dsl_dataset_feature_is_active(origin_head
, f
);
3722 void *origin_head_feature
= origin_head
->ds_feature
[f
];
3725 dsl_dataset_deactivate_feature_impl(clone
, f
, tx
);
3726 if (origin_head_inuse
)
3727 dsl_dataset_deactivate_feature_impl(origin_head
, f
, tx
);
3730 dsl_dataset_activate_feature(origin_head
->ds_object
, f
,
3732 origin_head
->ds_feature
[f
] = clone_feature
;
3734 if (origin_head_inuse
) {
3735 dsl_dataset_activate_feature(clone
->ds_object
, f
,
3736 origin_head_feature
, tx
);
3737 clone
->ds_feature
[f
] = origin_head_feature
;
3741 dmu_buf_will_dirty(clone
->ds_dbuf
, tx
);
3742 dmu_buf_will_dirty(origin_head
->ds_dbuf
, tx
);
3744 if (clone
->ds_objset
!= NULL
) {
3745 dmu_objset_evict(clone
->ds_objset
);
3746 clone
->ds_objset
= NULL
;
3749 if (origin_head
->ds_objset
!= NULL
) {
3750 dmu_objset_evict(origin_head
->ds_objset
);
3751 origin_head
->ds_objset
= NULL
;
3754 unused_refres_delta
=
3755 (int64_t)MIN(origin_head
->ds_reserved
,
3756 dsl_dataset_phys(origin_head
)->ds_unique_bytes
) -
3757 (int64_t)MIN(origin_head
->ds_reserved
,
3758 dsl_dataset_phys(clone
)->ds_unique_bytes
);
3761 * Reset origin's unique bytes, if it exists.
3763 if (clone
->ds_prev
) {
3764 dsl_dataset_t
*origin
= clone
->ds_prev
;
3765 uint64_t comp
, uncomp
;
3767 dmu_buf_will_dirty(origin
->ds_dbuf
, tx
);
3768 dsl_deadlist_space_range(&clone
->ds_deadlist
,
3769 dsl_dataset_phys(origin
)->ds_prev_snap_txg
, UINT64_MAX
,
3770 &dsl_dataset_phys(origin
)->ds_unique_bytes
, &comp
, &uncomp
);
3775 rrw_enter(&clone
->ds_bp_rwlock
, RW_WRITER
, FTAG
);
3776 rrw_enter(&origin_head
->ds_bp_rwlock
, RW_WRITER
, FTAG
);
3778 tmp
= dsl_dataset_phys(origin_head
)->ds_bp
;
3779 dsl_dataset_phys(origin_head
)->ds_bp
=
3780 dsl_dataset_phys(clone
)->ds_bp
;
3781 dsl_dataset_phys(clone
)->ds_bp
= tmp
;
3782 rrw_exit(&origin_head
->ds_bp_rwlock
, FTAG
);
3783 rrw_exit(&clone
->ds_bp_rwlock
, FTAG
);
3786 /* set dd_*_bytes */
3788 int64_t dused
, dcomp
, duncomp
;
3789 uint64_t cdl_used
, cdl_comp
, cdl_uncomp
;
3790 uint64_t odl_used
, odl_comp
, odl_uncomp
;
3792 ASSERT3U(dsl_dir_phys(clone
->ds_dir
)->
3793 dd_used_breakdown
[DD_USED_SNAP
], ==, 0);
3795 dsl_deadlist_space(&clone
->ds_deadlist
,
3796 &cdl_used
, &cdl_comp
, &cdl_uncomp
);
3797 dsl_deadlist_space(&origin_head
->ds_deadlist
,
3798 &odl_used
, &odl_comp
, &odl_uncomp
);
3800 dused
= dsl_dataset_phys(clone
)->ds_referenced_bytes
+
3802 (dsl_dataset_phys(origin_head
)->ds_referenced_bytes
+
3804 dcomp
= dsl_dataset_phys(clone
)->ds_compressed_bytes
+
3806 (dsl_dataset_phys(origin_head
)->ds_compressed_bytes
+
3808 duncomp
= dsl_dataset_phys(clone
)->ds_uncompressed_bytes
+
3810 (dsl_dataset_phys(origin_head
)->ds_uncompressed_bytes
+
3813 dsl_dir_diduse_space(origin_head
->ds_dir
, DD_USED_HEAD
,
3814 dused
, dcomp
, duncomp
, tx
);
3815 dsl_dir_diduse_space(clone
->ds_dir
, DD_USED_HEAD
,
3816 -dused
, -dcomp
, -duncomp
, tx
);
3819 * The difference in the space used by snapshots is the
3820 * difference in snapshot space due to the head's
3821 * deadlist (since that's the only thing that's
3822 * changing that affects the snapused).
3824 dsl_deadlist_space_range(&clone
->ds_deadlist
,
3825 origin_head
->ds_dir
->dd_origin_txg
, UINT64_MAX
,
3826 &cdl_used
, &cdl_comp
, &cdl_uncomp
);
3827 dsl_deadlist_space_range(&origin_head
->ds_deadlist
,
3828 origin_head
->ds_dir
->dd_origin_txg
, UINT64_MAX
,
3829 &odl_used
, &odl_comp
, &odl_uncomp
);
3830 dsl_dir_transfer_space(origin_head
->ds_dir
, cdl_used
- odl_used
,
3831 DD_USED_HEAD
, DD_USED_SNAP
, tx
);
3834 /* swap ds_*_bytes */
3835 SWITCH64(dsl_dataset_phys(origin_head
)->ds_referenced_bytes
,
3836 dsl_dataset_phys(clone
)->ds_referenced_bytes
);
3837 SWITCH64(dsl_dataset_phys(origin_head
)->ds_compressed_bytes
,
3838 dsl_dataset_phys(clone
)->ds_compressed_bytes
);
3839 SWITCH64(dsl_dataset_phys(origin_head
)->ds_uncompressed_bytes
,
3840 dsl_dataset_phys(clone
)->ds_uncompressed_bytes
);
3841 SWITCH64(dsl_dataset_phys(origin_head
)->ds_unique_bytes
,
3842 dsl_dataset_phys(clone
)->ds_unique_bytes
);
3844 /* apply any parent delta for change in unconsumed refreservation */
3845 dsl_dir_diduse_space(origin_head
->ds_dir
, DD_USED_REFRSRV
,
3846 unused_refres_delta
, 0, 0, tx
);
3851 dsl_deadlist_close(&clone
->ds_deadlist
);
3852 dsl_deadlist_close(&origin_head
->ds_deadlist
);
3853 SWITCH64(dsl_dataset_phys(origin_head
)->ds_deadlist_obj
,
3854 dsl_dataset_phys(clone
)->ds_deadlist_obj
);
3855 dsl_deadlist_open(&clone
->ds_deadlist
, dp
->dp_meta_objset
,
3856 dsl_dataset_phys(clone
)->ds_deadlist_obj
);
3857 dsl_deadlist_open(&origin_head
->ds_deadlist
, dp
->dp_meta_objset
,
3858 dsl_dataset_phys(origin_head
)->ds_deadlist_obj
);
3859 dsl_dataset_swap_remap_deadlists(clone
, origin_head
, tx
);
3861 dsl_scan_ds_clone_swapped(origin_head
, clone
, tx
);
3863 spa_history_log_internal_ds(clone
, "clone swap", tx
,
3864 "parent=%s", origin_head
->ds_dir
->dd_myname
);
3868 * Given a pool name and a dataset object number in that pool,
3869 * return the name of that dataset.
3872 dsl_dsobj_to_dsname(char *pname
, uint64_t obj
, char *buf
)
3878 error
= dsl_pool_hold(pname
, FTAG
, &dp
);
3882 error
= dsl_dataset_hold_obj(dp
, obj
, FTAG
, &ds
);
3884 dsl_dataset_name(ds
, buf
);
3885 dsl_dataset_rele(ds
, FTAG
);
3887 dsl_pool_rele(dp
, FTAG
);
3893 dsl_dataset_check_quota(dsl_dataset_t
*ds
, boolean_t check_quota
,
3894 uint64_t asize
, uint64_t inflight
, uint64_t *used
, uint64_t *ref_rsrv
)
3898 ASSERT3S(asize
, >, 0);
3901 * *ref_rsrv is the portion of asize that will come from any
3902 * unconsumed refreservation space.
3906 mutex_enter(&ds
->ds_lock
);
3908 * Make a space adjustment for reserved bytes.
3910 if (ds
->ds_reserved
> dsl_dataset_phys(ds
)->ds_unique_bytes
) {
3912 ds
->ds_reserved
- dsl_dataset_phys(ds
)->ds_unique_bytes
);
3914 (ds
->ds_reserved
- dsl_dataset_phys(ds
)->ds_unique_bytes
);
3916 asize
- MIN(asize
, parent_delta(ds
, asize
+ inflight
));
3919 if (!check_quota
|| ds
->ds_quota
== 0) {
3920 mutex_exit(&ds
->ds_lock
);
3924 * If they are requesting more space, and our current estimate
3925 * is over quota, they get to try again unless the actual
3926 * on-disk is over quota and there are no pending changes (which
3927 * may free up space for us).
3929 if (dsl_dataset_phys(ds
)->ds_referenced_bytes
+ inflight
>=
3932 dsl_dataset_phys(ds
)->ds_referenced_bytes
< ds
->ds_quota
)
3933 error
= SET_ERROR(ERESTART
);
3935 error
= SET_ERROR(EDQUOT
);
3937 mutex_exit(&ds
->ds_lock
);
3942 typedef struct dsl_dataset_set_qr_arg
{
3943 const char *ddsqra_name
;
3944 zprop_source_t ddsqra_source
;
3945 uint64_t ddsqra_value
;
3946 } dsl_dataset_set_qr_arg_t
;
3951 dsl_dataset_set_refquota_check(void *arg
, dmu_tx_t
*tx
)
3953 dsl_dataset_set_qr_arg_t
*ddsqra
= arg
;
3954 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3959 if (spa_version(dp
->dp_spa
) < SPA_VERSION_REFQUOTA
)
3960 return (SET_ERROR(ENOTSUP
));
3962 error
= dsl_dataset_hold(dp
, ddsqra
->ddsqra_name
, FTAG
, &ds
);
3966 if (ds
->ds_is_snapshot
) {
3967 dsl_dataset_rele(ds
, FTAG
);
3968 return (SET_ERROR(EINVAL
));
3971 error
= dsl_prop_predict(ds
->ds_dir
,
3972 zfs_prop_to_name(ZFS_PROP_REFQUOTA
),
3973 ddsqra
->ddsqra_source
, ddsqra
->ddsqra_value
, &newval
);
3975 dsl_dataset_rele(ds
, FTAG
);
3980 dsl_dataset_rele(ds
, FTAG
);
3984 if (newval
< dsl_dataset_phys(ds
)->ds_referenced_bytes
||
3985 newval
< ds
->ds_reserved
) {
3986 dsl_dataset_rele(ds
, FTAG
);
3987 return (SET_ERROR(ENOSPC
));
3990 dsl_dataset_rele(ds
, FTAG
);
3995 dsl_dataset_set_refquota_sync(void *arg
, dmu_tx_t
*tx
)
3997 dsl_dataset_set_qr_arg_t
*ddsqra
= arg
;
3998 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3999 dsl_dataset_t
*ds
= NULL
;
4002 VERIFY0(dsl_dataset_hold(dp
, ddsqra
->ddsqra_name
, FTAG
, &ds
));
4004 dsl_prop_set_sync_impl(ds
,
4005 zfs_prop_to_name(ZFS_PROP_REFQUOTA
),
4006 ddsqra
->ddsqra_source
, sizeof (ddsqra
->ddsqra_value
), 1,
4007 &ddsqra
->ddsqra_value
, tx
);
4009 VERIFY0(dsl_prop_get_int_ds(ds
,
4010 zfs_prop_to_name(ZFS_PROP_REFQUOTA
), &newval
));
4012 if (ds
->ds_quota
!= newval
) {
4013 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
4014 ds
->ds_quota
= newval
;
4016 dsl_dataset_rele(ds
, FTAG
);
4020 dsl_dataset_set_refquota(const char *dsname
, zprop_source_t source
,
4023 dsl_dataset_set_qr_arg_t ddsqra
;
4025 ddsqra
.ddsqra_name
= dsname
;
4026 ddsqra
.ddsqra_source
= source
;
4027 ddsqra
.ddsqra_value
= refquota
;
4029 return (dsl_sync_task(dsname
, dsl_dataset_set_refquota_check
,
4030 dsl_dataset_set_refquota_sync
, &ddsqra
, 0,
4031 ZFS_SPACE_CHECK_EXTRA_RESERVED
));
4035 dsl_dataset_set_refreservation_check(void *arg
, dmu_tx_t
*tx
)
4037 dsl_dataset_set_qr_arg_t
*ddsqra
= arg
;
4038 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
4041 uint64_t newval
, unique
;
4043 if (spa_version(dp
->dp_spa
) < SPA_VERSION_REFRESERVATION
)
4044 return (SET_ERROR(ENOTSUP
));
4046 error
= dsl_dataset_hold(dp
, ddsqra
->ddsqra_name
, FTAG
, &ds
);
4050 if (ds
->ds_is_snapshot
) {
4051 dsl_dataset_rele(ds
, FTAG
);
4052 return (SET_ERROR(EINVAL
));
4055 error
= dsl_prop_predict(ds
->ds_dir
,
4056 zfs_prop_to_name(ZFS_PROP_REFRESERVATION
),
4057 ddsqra
->ddsqra_source
, ddsqra
->ddsqra_value
, &newval
);
4059 dsl_dataset_rele(ds
, FTAG
);
4064 * If we are doing the preliminary check in open context, the
4065 * space estimates may be inaccurate.
4067 if (!dmu_tx_is_syncing(tx
)) {
4068 dsl_dataset_rele(ds
, FTAG
);
4072 mutex_enter(&ds
->ds_lock
);
4073 if (!DS_UNIQUE_IS_ACCURATE(ds
))
4074 dsl_dataset_recalc_head_uniq(ds
);
4075 unique
= dsl_dataset_phys(ds
)->ds_unique_bytes
;
4076 mutex_exit(&ds
->ds_lock
);
4078 if (MAX(unique
, newval
) > MAX(unique
, ds
->ds_reserved
)) {
4079 uint64_t delta
= MAX(unique
, newval
) -
4080 MAX(unique
, ds
->ds_reserved
);
4083 dsl_dir_space_available(ds
->ds_dir
, NULL
, 0, B_TRUE
) ||
4084 (ds
->ds_quota
> 0 && newval
> ds
->ds_quota
)) {
4085 dsl_dataset_rele(ds
, FTAG
);
4086 return (SET_ERROR(ENOSPC
));
4090 dsl_dataset_rele(ds
, FTAG
);
4095 dsl_dataset_set_refreservation_sync_impl(dsl_dataset_t
*ds
,
4096 zprop_source_t source
, uint64_t value
, dmu_tx_t
*tx
)
4102 dsl_prop_set_sync_impl(ds
, zfs_prop_to_name(ZFS_PROP_REFRESERVATION
),
4103 source
, sizeof (value
), 1, &value
, tx
);
4105 VERIFY0(dsl_prop_get_int_ds(ds
,
4106 zfs_prop_to_name(ZFS_PROP_REFRESERVATION
), &newval
));
4108 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
4109 mutex_enter(&ds
->ds_dir
->dd_lock
);
4110 mutex_enter(&ds
->ds_lock
);
4111 ASSERT(DS_UNIQUE_IS_ACCURATE(ds
));
4112 unique
= dsl_dataset_phys(ds
)->ds_unique_bytes
;
4113 delta
= MAX(0, (int64_t)(newval
- unique
)) -
4114 MAX(0, (int64_t)(ds
->ds_reserved
- unique
));
4115 ds
->ds_reserved
= newval
;
4116 mutex_exit(&ds
->ds_lock
);
4118 dsl_dir_diduse_space(ds
->ds_dir
, DD_USED_REFRSRV
, delta
, 0, 0, tx
);
4119 mutex_exit(&ds
->ds_dir
->dd_lock
);
4123 dsl_dataset_set_refreservation_sync(void *arg
, dmu_tx_t
*tx
)
4125 dsl_dataset_set_qr_arg_t
*ddsqra
= arg
;
4126 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
4127 dsl_dataset_t
*ds
= NULL
;
4129 VERIFY0(dsl_dataset_hold(dp
, ddsqra
->ddsqra_name
, FTAG
, &ds
));
4130 dsl_dataset_set_refreservation_sync_impl(ds
,
4131 ddsqra
->ddsqra_source
, ddsqra
->ddsqra_value
, tx
);
4132 dsl_dataset_rele(ds
, FTAG
);
4136 dsl_dataset_set_refreservation(const char *dsname
, zprop_source_t source
,
4137 uint64_t refreservation
)
4139 dsl_dataset_set_qr_arg_t ddsqra
;
4141 ddsqra
.ddsqra_name
= dsname
;
4142 ddsqra
.ddsqra_source
= source
;
4143 ddsqra
.ddsqra_value
= refreservation
;
4145 return (dsl_sync_task(dsname
, dsl_dataset_set_refreservation_check
,
4146 dsl_dataset_set_refreservation_sync
, &ddsqra
, 0,
4147 ZFS_SPACE_CHECK_EXTRA_RESERVED
));
4151 * Return (in *usedp) the amount of space written in new that is not
4152 * present in oldsnap. New may be a snapshot or the head. Old must be
4153 * a snapshot before new, in new's filesystem (or its origin). If not then
4154 * fail and return EINVAL.
4156 * The written space is calculated by considering two components: First, we
4157 * ignore any freed space, and calculate the written as new's used space
4158 * minus old's used space. Next, we add in the amount of space that was freed
4159 * between the two snapshots, thus reducing new's used space relative to old's.
4160 * Specifically, this is the space that was born before old->ds_creation_txg,
4161 * and freed before new (ie. on new's deadlist or a previous deadlist).
4163 * space freed [---------------------]
4164 * snapshots ---O-------O--------O-------O------
4168 dsl_dataset_space_written(dsl_dataset_t
*oldsnap
, dsl_dataset_t
*new,
4169 uint64_t *usedp
, uint64_t *compp
, uint64_t *uncompp
)
4173 dsl_pool_t
*dp
= new->ds_dir
->dd_pool
;
4175 ASSERT(dsl_pool_config_held(dp
));
4178 *usedp
+= dsl_dataset_phys(new)->ds_referenced_bytes
;
4179 *usedp
-= dsl_dataset_phys(oldsnap
)->ds_referenced_bytes
;
4182 *compp
+= dsl_dataset_phys(new)->ds_compressed_bytes
;
4183 *compp
-= dsl_dataset_phys(oldsnap
)->ds_compressed_bytes
;
4186 *uncompp
+= dsl_dataset_phys(new)->ds_uncompressed_bytes
;
4187 *uncompp
-= dsl_dataset_phys(oldsnap
)->ds_uncompressed_bytes
;
4189 snapobj
= new->ds_object
;
4190 while (snapobj
!= oldsnap
->ds_object
) {
4191 dsl_dataset_t
*snap
;
4192 uint64_t used
, comp
, uncomp
;
4194 if (snapobj
== new->ds_object
) {
4197 err
= dsl_dataset_hold_obj(dp
, snapobj
, FTAG
, &snap
);
4202 if (dsl_dataset_phys(snap
)->ds_prev_snap_txg
==
4203 dsl_dataset_phys(oldsnap
)->ds_creation_txg
) {
4205 * The blocks in the deadlist can not be born after
4206 * ds_prev_snap_txg, so get the whole deadlist space,
4207 * which is more efficient (especially for old-format
4208 * deadlists). Unfortunately the deadlist code
4209 * doesn't have enough information to make this
4210 * optimization itself.
4212 dsl_deadlist_space(&snap
->ds_deadlist
,
4213 &used
, &comp
, &uncomp
);
4215 dsl_deadlist_space_range(&snap
->ds_deadlist
,
4216 0, dsl_dataset_phys(oldsnap
)->ds_creation_txg
,
4217 &used
, &comp
, &uncomp
);
4224 * If we get to the beginning of the chain of snapshots
4225 * (ds_prev_snap_obj == 0) before oldsnap, then oldsnap
4226 * was not a snapshot of/before new.
4228 snapobj
= dsl_dataset_phys(snap
)->ds_prev_snap_obj
;
4230 dsl_dataset_rele(snap
, FTAG
);
4232 err
= SET_ERROR(EINVAL
);
4241 * Return (in *usedp) the amount of space that will be reclaimed if firstsnap,
4242 * lastsnap, and all snapshots in between are deleted.
4244 * blocks that would be freed [---------------------------]
4245 * snapshots ---O-------O--------O-------O--------O
4246 * firstsnap lastsnap
4248 * This is the set of blocks that were born after the snap before firstsnap,
4249 * (birth > firstsnap->prev_snap_txg) and died before the snap after the
4250 * last snap (ie, is on lastsnap->ds_next->ds_deadlist or an earlier deadlist).
4251 * We calculate this by iterating over the relevant deadlists (from the snap
4252 * after lastsnap, backward to the snap after firstsnap), summing up the
4253 * space on the deadlist that was born after the snap before firstsnap.
4256 dsl_dataset_space_wouldfree(dsl_dataset_t
*firstsnap
,
4257 dsl_dataset_t
*lastsnap
,
4258 uint64_t *usedp
, uint64_t *compp
, uint64_t *uncompp
)
4262 dsl_pool_t
*dp
= firstsnap
->ds_dir
->dd_pool
;
4264 ASSERT(firstsnap
->ds_is_snapshot
);
4265 ASSERT(lastsnap
->ds_is_snapshot
);
4268 * Check that the snapshots are in the same dsl_dir, and firstsnap
4269 * is before lastsnap.
4271 if (firstsnap
->ds_dir
!= lastsnap
->ds_dir
||
4272 dsl_dataset_phys(firstsnap
)->ds_creation_txg
>
4273 dsl_dataset_phys(lastsnap
)->ds_creation_txg
)
4274 return (SET_ERROR(EINVAL
));
4276 *usedp
= *compp
= *uncompp
= 0;
4278 snapobj
= dsl_dataset_phys(lastsnap
)->ds_next_snap_obj
;
4279 while (snapobj
!= firstsnap
->ds_object
) {
4281 uint64_t used
, comp
, uncomp
;
4283 err
= dsl_dataset_hold_obj(dp
, snapobj
, FTAG
, &ds
);
4287 dsl_deadlist_space_range(&ds
->ds_deadlist
,
4288 dsl_dataset_phys(firstsnap
)->ds_prev_snap_txg
, UINT64_MAX
,
4289 &used
, &comp
, &uncomp
);
4294 snapobj
= dsl_dataset_phys(ds
)->ds_prev_snap_obj
;
4295 ASSERT3U(snapobj
, !=, 0);
4296 dsl_dataset_rele(ds
, FTAG
);
4302 * Return TRUE if 'earlier' is an earlier snapshot in 'later's timeline.
4303 * For example, they could both be snapshots of the same filesystem, and
4304 * 'earlier' is before 'later'. Or 'earlier' could be the origin of
4305 * 'later's filesystem. Or 'earlier' could be an older snapshot in the origin's
4306 * filesystem. Or 'earlier' could be the origin's origin.
4308 * If non-zero, earlier_txg is used instead of earlier's ds_creation_txg.
4311 dsl_dataset_is_before(dsl_dataset_t
*later
, dsl_dataset_t
*earlier
,
4312 uint64_t earlier_txg
)
4314 dsl_pool_t
*dp
= later
->ds_dir
->dd_pool
;
4318 ASSERT(dsl_pool_config_held(dp
));
4319 ASSERT(earlier
->ds_is_snapshot
|| earlier_txg
!= 0);
4321 if (earlier_txg
== 0)
4322 earlier_txg
= dsl_dataset_phys(earlier
)->ds_creation_txg
;
4324 if (later
->ds_is_snapshot
&&
4325 earlier_txg
>= dsl_dataset_phys(later
)->ds_creation_txg
)
4328 if (later
->ds_dir
== earlier
->ds_dir
)
4330 if (!dsl_dir_is_clone(later
->ds_dir
))
4333 if (dsl_dir_phys(later
->ds_dir
)->dd_origin_obj
== earlier
->ds_object
)
4335 dsl_dataset_t
*origin
;
4336 error
= dsl_dataset_hold_obj(dp
,
4337 dsl_dir_phys(later
->ds_dir
)->dd_origin_obj
, FTAG
, &origin
);
4340 ret
= dsl_dataset_is_before(origin
, earlier
, earlier_txg
);
4341 dsl_dataset_rele(origin
, FTAG
);
4346 dsl_dataset_zapify(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
4348 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
4349 dmu_object_zapify(mos
, ds
->ds_object
, DMU_OT_DSL_DATASET
, tx
);
4353 dsl_dataset_is_zapified(dsl_dataset_t
*ds
)
4355 dmu_object_info_t doi
;
4357 dmu_object_info_from_db(ds
->ds_dbuf
, &doi
);
4358 return (doi
.doi_type
== DMU_OTN_ZAP_METADATA
);
4362 dsl_dataset_has_resume_receive_state(dsl_dataset_t
*ds
)
4364 return (dsl_dataset_is_zapified(ds
) &&
4365 zap_contains(ds
->ds_dir
->dd_pool
->dp_meta_objset
,
4366 ds
->ds_object
, DS_FIELD_RESUME_TOGUID
) == 0);
4370 dsl_dataset_get_remap_deadlist_object(dsl_dataset_t
*ds
)
4372 uint64_t remap_deadlist_obj
;
4375 if (!dsl_dataset_is_zapified(ds
))
4378 err
= zap_lookup(ds
->ds_dir
->dd_pool
->dp_meta_objset
, ds
->ds_object
,
4379 DS_FIELD_REMAP_DEADLIST
, sizeof (remap_deadlist_obj
), 1,
4380 &remap_deadlist_obj
);
4383 VERIFY3S(err
, ==, ENOENT
);
4387 ASSERT(remap_deadlist_obj
!= 0);
4388 return (remap_deadlist_obj
);
4392 dsl_dataset_remap_deadlist_exists(dsl_dataset_t
*ds
)
4394 EQUIV(dsl_deadlist_is_open(&ds
->ds_remap_deadlist
),
4395 dsl_dataset_get_remap_deadlist_object(ds
) != 0);
4396 return (dsl_deadlist_is_open(&ds
->ds_remap_deadlist
));
4400 dsl_dataset_set_remap_deadlist_object(dsl_dataset_t
*ds
, uint64_t obj
,
4404 dsl_dataset_zapify(ds
, tx
);
4405 VERIFY0(zap_add(ds
->ds_dir
->dd_pool
->dp_meta_objset
, ds
->ds_object
,
4406 DS_FIELD_REMAP_DEADLIST
, sizeof (obj
), 1, &obj
, tx
));
4410 dsl_dataset_unset_remap_deadlist_object(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
4412 VERIFY0(zap_remove(ds
->ds_dir
->dd_pool
->dp_meta_objset
,
4413 ds
->ds_object
, DS_FIELD_REMAP_DEADLIST
, tx
));
4417 dsl_dataset_destroy_remap_deadlist(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
4419 uint64_t remap_deadlist_object
;
4420 spa_t
*spa
= ds
->ds_dir
->dd_pool
->dp_spa
;
4422 ASSERT(dmu_tx_is_syncing(tx
));
4423 ASSERT(dsl_dataset_remap_deadlist_exists(ds
));
4425 remap_deadlist_object
= ds
->ds_remap_deadlist
.dl_object
;
4426 dsl_deadlist_close(&ds
->ds_remap_deadlist
);
4427 dsl_deadlist_free(spa_meta_objset(spa
), remap_deadlist_object
, tx
);
4428 dsl_dataset_unset_remap_deadlist_object(ds
, tx
);
4429 spa_feature_decr(spa
, SPA_FEATURE_OBSOLETE_COUNTS
, tx
);
4433 dsl_dataset_create_remap_deadlist(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
4435 uint64_t remap_deadlist_obj
;
4436 spa_t
*spa
= ds
->ds_dir
->dd_pool
->dp_spa
;
4438 ASSERT(dmu_tx_is_syncing(tx
));
4439 ASSERT(MUTEX_HELD(&ds
->ds_remap_deadlist_lock
));
4441 * Currently we only create remap deadlists when there are indirect
4442 * vdevs with referenced mappings.
4444 ASSERT(spa_feature_is_active(spa
, SPA_FEATURE_DEVICE_REMOVAL
));
4446 remap_deadlist_obj
= dsl_deadlist_clone(
4447 &ds
->ds_deadlist
, UINT64_MAX
,
4448 dsl_dataset_phys(ds
)->ds_prev_snap_obj
, tx
);
4449 dsl_dataset_set_remap_deadlist_object(ds
,
4450 remap_deadlist_obj
, tx
);
4451 dsl_deadlist_open(&ds
->ds_remap_deadlist
, spa_meta_objset(spa
),
4452 remap_deadlist_obj
);
4453 spa_feature_incr(spa
, SPA_FEATURE_OBSOLETE_COUNTS
, tx
);
4456 #if defined(_KERNEL)
4458 module_param(zfs_max_recordsize
, int, 0644);
4459 MODULE_PARM_DESC(zfs_max_recordsize
, "Max allowed record size");
4461 /* Limited to 1M on 32-bit platforms due to lack of virtual address space */
4462 module_param(zfs_max_recordsize
, int, 0444);
4463 MODULE_PARM_DESC(zfs_max_recordsize
, "Max allowed record size");
4466 EXPORT_SYMBOL(dsl_dataset_hold
);
4467 EXPORT_SYMBOL(dsl_dataset_hold_flags
);
4468 EXPORT_SYMBOL(dsl_dataset_hold_obj
);
4469 EXPORT_SYMBOL(dsl_dataset_hold_obj_flags
);
4470 EXPORT_SYMBOL(dsl_dataset_own
);
4471 EXPORT_SYMBOL(dsl_dataset_own_obj
);
4472 EXPORT_SYMBOL(dsl_dataset_name
);
4473 EXPORT_SYMBOL(dsl_dataset_rele
);
4474 EXPORT_SYMBOL(dsl_dataset_rele_flags
);
4475 EXPORT_SYMBOL(dsl_dataset_disown
);
4476 EXPORT_SYMBOL(dsl_dataset_tryown
);
4477 EXPORT_SYMBOL(dsl_dataset_create_sync
);
4478 EXPORT_SYMBOL(dsl_dataset_create_sync_dd
);
4479 EXPORT_SYMBOL(dsl_dataset_snapshot_check
);
4480 EXPORT_SYMBOL(dsl_dataset_snapshot_sync
);
4481 EXPORT_SYMBOL(dsl_dataset_promote
);
4482 EXPORT_SYMBOL(dsl_dataset_user_hold
);
4483 EXPORT_SYMBOL(dsl_dataset_user_release
);
4484 EXPORT_SYMBOL(dsl_dataset_get_holds
);
4485 EXPORT_SYMBOL(dsl_dataset_get_blkptr
);
4486 EXPORT_SYMBOL(dsl_dataset_get_spa
);
4487 EXPORT_SYMBOL(dsl_dataset_modified_since_snap
);
4488 EXPORT_SYMBOL(dsl_dataset_space_written
);
4489 EXPORT_SYMBOL(dsl_dataset_space_wouldfree
);
4490 EXPORT_SYMBOL(dsl_dataset_sync
);
4491 EXPORT_SYMBOL(dsl_dataset_block_born
);
4492 EXPORT_SYMBOL(dsl_dataset_block_kill
);
4493 EXPORT_SYMBOL(dsl_dataset_dirty
);
4494 EXPORT_SYMBOL(dsl_dataset_stats
);
4495 EXPORT_SYMBOL(dsl_dataset_fast_stat
);
4496 EXPORT_SYMBOL(dsl_dataset_space
);
4497 EXPORT_SYMBOL(dsl_dataset_fsid_guid
);
4498 EXPORT_SYMBOL(dsl_dsobj_to_dsname
);
4499 EXPORT_SYMBOL(dsl_dataset_check_quota
);
4500 EXPORT_SYMBOL(dsl_dataset_clone_swap_check_impl
);
4501 EXPORT_SYMBOL(dsl_dataset_clone_swap_sync_impl
);