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 https://opensource.org/licenses/CDDL-1.0.
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, 2020 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.
31 * Copyright (c) 2019, Klara Inc.
32 * Copyright (c) 2019, Allan Jude
33 * Copyright (c) 2020 The FreeBSD Foundation [1]
35 * [1] Portions of this software were developed by Allan Jude
36 * under sponsorship from the FreeBSD Foundation.
39 #include <sys/dmu_objset.h>
40 #include <sys/dsl_dataset.h>
41 #include <sys/dsl_dir.h>
42 #include <sys/dsl_prop.h>
43 #include <sys/dsl_synctask.h>
44 #include <sys/dmu_traverse.h>
45 #include <sys/dmu_impl.h>
46 #include <sys/dmu_tx.h>
50 #include <sys/zfeature.h>
51 #include <sys/unique.h>
52 #include <sys/zfs_context.h>
53 #include <sys/zfs_ioctl.h>
55 #include <sys/spa_impl.h>
57 #include <sys/zfs_znode.h>
58 #include <sys/zfs_onexit.h>
60 #include <sys/dsl_scan.h>
61 #include <sys/dsl_deadlist.h>
62 #include <sys/dsl_destroy.h>
63 #include <sys/dsl_userhold.h>
64 #include <sys/dsl_bookmark.h>
65 #include <sys/policy.h>
66 #include <sys/dmu_send.h>
67 #include <sys/dmu_recv.h>
68 #include <sys/zio_compress.h>
69 #include <zfs_fletcher.h>
70 #include <sys/zio_checksum.h>
74 * The SPA supports block sizes up to 16MB. However, very large blocks
75 * can have an impact on i/o latency (e.g. tying up a spinning disk for
76 * ~300ms), and also potentially on the memory allocator. Therefore,
77 * we did not allow the recordsize to be set larger than zfs_max_recordsize
78 * (former default: 1MB). Larger blocks could be created by changing this
79 * tunable, and pools with larger blocks could always be imported and used,
80 * regardless of this setting.
82 * We do, however, still limit it by default to 1M on x86_32, because Linux's
83 * 3/1 memory split doesn't leave much room for 16M chunks.
86 uint_t zfs_max_recordsize
= 1 * 1024 * 1024;
88 uint_t zfs_max_recordsize
= 16 * 1024 * 1024;
90 static int zfs_allow_redacted_dataset_mount
= 0;
92 int zfs_snapshot_history_enabled
= 1;
94 #define SWITCH64(x, y) \
96 uint64_t __tmp = (x); \
101 #define DS_REF_MAX (1ULL << 62)
103 static void dsl_dataset_set_remap_deadlist_object(dsl_dataset_t
*ds
,
104 uint64_t obj
, dmu_tx_t
*tx
);
105 static void dsl_dataset_unset_remap_deadlist_object(dsl_dataset_t
*ds
,
108 static void unload_zfeature(dsl_dataset_t
*ds
, spa_feature_t f
);
110 extern uint_t spa_asize_inflation
;
112 static zil_header_t zero_zil
;
115 * Figure out how much of this delta should be propagated to the dsl_dir
116 * layer. If there's a refreservation, that space has already been
117 * partially accounted for in our ancestors.
120 parent_delta(dsl_dataset_t
*ds
, int64_t delta
)
122 dsl_dataset_phys_t
*ds_phys
;
123 uint64_t old_bytes
, new_bytes
;
125 if (ds
->ds_reserved
== 0)
128 ds_phys
= dsl_dataset_phys(ds
);
129 old_bytes
= MAX(ds_phys
->ds_unique_bytes
, ds
->ds_reserved
);
130 new_bytes
= MAX(ds_phys
->ds_unique_bytes
+ delta
, ds
->ds_reserved
);
132 ASSERT3U(ABS((int64_t)(new_bytes
- old_bytes
)), <=, ABS(delta
));
133 return (new_bytes
- old_bytes
);
137 dsl_dataset_block_born(dsl_dataset_t
*ds
, const blkptr_t
*bp
, dmu_tx_t
*tx
)
139 spa_t
*spa
= dmu_tx_pool(tx
)->dp_spa
;
140 int used
= bp_get_dsize_sync(spa
, bp
);
141 int compressed
= BP_GET_PSIZE(bp
);
142 int uncompressed
= BP_GET_UCSIZE(bp
);
146 dprintf_bp(bp
, "ds=%p", ds
);
148 ASSERT(dmu_tx_is_syncing(tx
));
149 /* It could have been compressed away to nothing */
150 if (BP_IS_HOLE(bp
) || BP_IS_REDACTED(bp
))
152 ASSERT(BP_GET_TYPE(bp
) != DMU_OT_NONE
);
153 ASSERT(DMU_OT_IS_VALID(BP_GET_TYPE(bp
)));
155 dsl_pool_mos_diduse_space(tx
->tx_pool
,
156 used
, compressed
, uncompressed
);
160 ASSERT3U(BP_GET_LOGICAL_BIRTH(bp
), >,
161 dsl_dataset_phys(ds
)->ds_prev_snap_txg
);
162 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
163 mutex_enter(&ds
->ds_lock
);
164 delta
= parent_delta(ds
, used
);
165 dsl_dataset_phys(ds
)->ds_referenced_bytes
+= used
;
166 dsl_dataset_phys(ds
)->ds_compressed_bytes
+= compressed
;
167 dsl_dataset_phys(ds
)->ds_uncompressed_bytes
+= uncompressed
;
168 dsl_dataset_phys(ds
)->ds_unique_bytes
+= used
;
170 if (BP_GET_LSIZE(bp
) > SPA_OLD_MAXBLOCKSIZE
) {
171 ds
->ds_feature_activation
[SPA_FEATURE_LARGE_BLOCKS
] =
176 f
= zio_checksum_to_feature(BP_GET_CHECKSUM(bp
));
177 if (f
!= SPA_FEATURE_NONE
) {
178 ASSERT3S(spa_feature_table
[f
].fi_type
, ==,
179 ZFEATURE_TYPE_BOOLEAN
);
180 ds
->ds_feature_activation
[f
] = (void *)B_TRUE
;
183 f
= zio_compress_to_feature(BP_GET_COMPRESS(bp
));
184 if (f
!= SPA_FEATURE_NONE
) {
185 ASSERT3S(spa_feature_table
[f
].fi_type
, ==,
186 ZFEATURE_TYPE_BOOLEAN
);
187 ds
->ds_feature_activation
[f
] = (void *)B_TRUE
;
191 * Track block for livelist, but ignore embedded blocks because
192 * they do not need to be freed.
194 if (dsl_deadlist_is_open(&ds
->ds_dir
->dd_livelist
) &&
195 BP_GET_LOGICAL_BIRTH(bp
) > ds
->ds_dir
->dd_origin_txg
&&
196 !(BP_IS_EMBEDDED(bp
))) {
197 ASSERT(dsl_dir_is_clone(ds
->ds_dir
));
198 ASSERT(spa_feature_is_enabled(spa
,
199 SPA_FEATURE_LIVELIST
));
200 bplist_append(&ds
->ds_dir
->dd_pending_allocs
, bp
);
203 mutex_exit(&ds
->ds_lock
);
204 dsl_dir_diduse_transfer_space(ds
->ds_dir
, delta
,
205 compressed
, uncompressed
, used
,
206 DD_USED_REFRSRV
, DD_USED_HEAD
, tx
);
210 * Called when the specified segment has been remapped, and is thus no
211 * longer referenced in the head dataset. The vdev must be indirect.
213 * If the segment is referenced by a snapshot, put it on the remap deadlist.
214 * Otherwise, add this segment to the obsolete spacemap.
217 dsl_dataset_block_remapped(dsl_dataset_t
*ds
, uint64_t vdev
, uint64_t offset
,
218 uint64_t size
, uint64_t birth
, dmu_tx_t
*tx
)
220 spa_t
*spa
= ds
->ds_dir
->dd_pool
->dp_spa
;
222 ASSERT(dmu_tx_is_syncing(tx
));
223 ASSERT(birth
<= tx
->tx_txg
);
224 ASSERT(!ds
->ds_is_snapshot
);
226 if (birth
> dsl_dataset_phys(ds
)->ds_prev_snap_txg
) {
227 spa_vdev_indirect_mark_obsolete(spa
, vdev
, offset
, size
, tx
);
230 dva_t
*dva
= &fakebp
.blk_dva
[0];
234 mutex_enter(&ds
->ds_remap_deadlist_lock
);
235 if (!dsl_dataset_remap_deadlist_exists(ds
)) {
236 dsl_dataset_create_remap_deadlist(ds
, tx
);
238 mutex_exit(&ds
->ds_remap_deadlist_lock
);
241 BP_SET_LOGICAL_BIRTH(&fakebp
, birth
);
242 DVA_SET_VDEV(dva
, vdev
);
243 DVA_SET_OFFSET(dva
, offset
);
244 DVA_SET_ASIZE(dva
, size
);
245 dsl_deadlist_insert(&ds
->ds_remap_deadlist
, &fakebp
, B_FALSE
,
251 dsl_dataset_block_kill(dsl_dataset_t
*ds
, const blkptr_t
*bp
, dmu_tx_t
*tx
,
254 spa_t
*spa
= dmu_tx_pool(tx
)->dp_spa
;
256 int used
= bp_get_dsize_sync(spa
, bp
);
257 int compressed
= BP_GET_PSIZE(bp
);
258 int uncompressed
= BP_GET_UCSIZE(bp
);
260 if (BP_IS_HOLE(bp
) || BP_IS_REDACTED(bp
))
263 ASSERT(dmu_tx_is_syncing(tx
));
264 ASSERT(BP_GET_LOGICAL_BIRTH(bp
) <= tx
->tx_txg
);
267 dsl_free(tx
->tx_pool
, tx
->tx_txg
, bp
);
268 dsl_pool_mos_diduse_space(tx
->tx_pool
,
269 -used
, -compressed
, -uncompressed
);
272 ASSERT3P(tx
->tx_pool
, ==, ds
->ds_dir
->dd_pool
);
274 ASSERT(!ds
->ds_is_snapshot
);
275 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
278 * Track block for livelist, but ignore embedded blocks because
279 * they do not need to be freed.
281 if (dsl_deadlist_is_open(&ds
->ds_dir
->dd_livelist
) &&
282 BP_GET_LOGICAL_BIRTH(bp
) > ds
->ds_dir
->dd_origin_txg
&&
283 !(BP_IS_EMBEDDED(bp
))) {
284 ASSERT(dsl_dir_is_clone(ds
->ds_dir
));
285 ASSERT(spa_feature_is_enabled(spa
,
286 SPA_FEATURE_LIVELIST
));
287 bplist_append(&ds
->ds_dir
->dd_pending_frees
, bp
);
290 if (BP_GET_LOGICAL_BIRTH(bp
) > dsl_dataset_phys(ds
)->ds_prev_snap_txg
) {
294 * Put blocks that would create IO on the pool's deadlist for
295 * dsl_process_async_destroys() to find. This is to prevent
296 * zio_free() from creating a ZIO_TYPE_FREE IO for them, which
297 * are very heavy and can lead to out-of-memory conditions if
298 * something tries to free millions of blocks on the same txg.
300 boolean_t defer
= spa_version(spa
) >= SPA_VERSION_DEADLISTS
&&
301 (BP_IS_GANG(bp
) || BP_GET_DEDUP(bp
) ||
302 brt_maybe_exists(spa
, bp
));
305 dprintf_bp(bp
, "putting on free list: %s", "");
306 bpobj_enqueue(&ds
->ds_dir
->dd_pool
->dp_free_bpobj
,
309 dprintf_bp(bp
, "freeing ds=%llu",
310 (u_longlong_t
)ds
->ds_object
);
311 dsl_free(tx
->tx_pool
, tx
->tx_txg
, bp
);
314 mutex_enter(&ds
->ds_lock
);
315 ASSERT(dsl_dataset_phys(ds
)->ds_unique_bytes
>= used
||
316 !DS_UNIQUE_IS_ACCURATE(ds
));
317 delta
= parent_delta(ds
, -used
);
318 dsl_dataset_phys(ds
)->ds_unique_bytes
-= used
;
319 mutex_exit(&ds
->ds_lock
);
321 dsl_dir_diduse_transfer_space(ds
->ds_dir
,
322 delta
, -compressed
, -uncompressed
, -used
,
323 DD_USED_REFRSRV
, DD_USED_HEAD
, tx
);
326 dsl_dir_diduse_space(tx
->tx_pool
->dp_free_dir
,
327 DD_USED_HEAD
, used
, compressed
, uncompressed
, tx
);
329 dprintf_bp(bp
, "putting on dead list: %s", "");
332 * We are here as part of zio's write done callback,
333 * which means we're a zio interrupt thread. We can't
334 * call dsl_deadlist_insert() now because it may block
335 * waiting for I/O. Instead, put bp on the deferred
336 * queue and let dsl_pool_sync() finish the job.
338 bplist_append(&ds
->ds_pending_deadlist
, bp
);
340 dsl_deadlist_insert(&ds
->ds_deadlist
, bp
, B_FALSE
, tx
);
342 ASSERT3U(ds
->ds_prev
->ds_object
, ==,
343 dsl_dataset_phys(ds
)->ds_prev_snap_obj
);
344 ASSERT(dsl_dataset_phys(ds
->ds_prev
)->ds_num_children
> 0);
345 /* if (logical birth > prev prev snap txg) prev unique += bs */
346 if (dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
==
347 ds
->ds_object
&& BP_GET_LOGICAL_BIRTH(bp
) >
348 dsl_dataset_phys(ds
->ds_prev
)->ds_prev_snap_txg
) {
349 dmu_buf_will_dirty(ds
->ds_prev
->ds_dbuf
, tx
);
350 mutex_enter(&ds
->ds_prev
->ds_lock
);
351 dsl_dataset_phys(ds
->ds_prev
)->ds_unique_bytes
+= used
;
352 mutex_exit(&ds
->ds_prev
->ds_lock
);
354 if (BP_GET_LOGICAL_BIRTH(bp
) > ds
->ds_dir
->dd_origin_txg
) {
355 dsl_dir_transfer_space(ds
->ds_dir
, used
,
356 DD_USED_HEAD
, DD_USED_SNAP
, tx
);
360 dsl_bookmark_block_killed(ds
, bp
, tx
);
362 mutex_enter(&ds
->ds_lock
);
363 ASSERT3U(dsl_dataset_phys(ds
)->ds_referenced_bytes
, >=, used
);
364 dsl_dataset_phys(ds
)->ds_referenced_bytes
-= used
;
365 ASSERT3U(dsl_dataset_phys(ds
)->ds_compressed_bytes
, >=, compressed
);
366 dsl_dataset_phys(ds
)->ds_compressed_bytes
-= compressed
;
367 ASSERT3U(dsl_dataset_phys(ds
)->ds_uncompressed_bytes
, >=, uncompressed
);
368 dsl_dataset_phys(ds
)->ds_uncompressed_bytes
-= uncompressed
;
369 mutex_exit(&ds
->ds_lock
);
374 struct feature_type_uint64_array_arg
{
380 unload_zfeature(dsl_dataset_t
*ds
, spa_feature_t f
)
382 switch (spa_feature_table
[f
].fi_type
) {
383 case ZFEATURE_TYPE_BOOLEAN
:
385 case ZFEATURE_TYPE_UINT64_ARRAY
:
387 struct feature_type_uint64_array_arg
*ftuaa
= ds
->ds_feature
[f
];
388 kmem_free(ftuaa
->array
, ftuaa
->length
* sizeof (uint64_t));
389 kmem_free(ftuaa
, sizeof (*ftuaa
));
393 panic("Invalid zfeature type %d", spa_feature_table
[f
].fi_type
);
398 load_zfeature(objset_t
*mos
, dsl_dataset_t
*ds
, spa_feature_t f
)
401 switch (spa_feature_table
[f
].fi_type
) {
402 case ZFEATURE_TYPE_BOOLEAN
:
403 err
= zap_contains(mos
, ds
->ds_object
,
404 spa_feature_table
[f
].fi_guid
);
406 ds
->ds_feature
[f
] = (void *)B_TRUE
;
408 ASSERT3U(err
, ==, ENOENT
);
412 case ZFEATURE_TYPE_UINT64_ARRAY
:
414 uint64_t int_size
, num_int
;
416 err
= zap_length(mos
, ds
->ds_object
,
417 spa_feature_table
[f
].fi_guid
, &int_size
, &num_int
);
419 ASSERT3U(err
, ==, ENOENT
);
423 ASSERT3U(int_size
, ==, sizeof (uint64_t));
424 data
= kmem_alloc(int_size
* num_int
, KM_SLEEP
);
425 VERIFY0(zap_lookup(mos
, ds
->ds_object
,
426 spa_feature_table
[f
].fi_guid
, int_size
, num_int
, data
));
427 struct feature_type_uint64_array_arg
*ftuaa
=
428 kmem_alloc(sizeof (*ftuaa
), KM_SLEEP
);
429 ftuaa
->length
= num_int
;
431 ds
->ds_feature
[f
] = ftuaa
;
435 panic("Invalid zfeature type %d", spa_feature_table
[f
].fi_type
);
441 * We have to release the fsid synchronously or we risk that a subsequent
442 * mount of the same dataset will fail to unique_insert the fsid. This
443 * failure would manifest itself as the fsid of this dataset changing
444 * between mounts which makes NFS clients quite unhappy.
447 dsl_dataset_evict_sync(void *dbu
)
449 dsl_dataset_t
*ds
= dbu
;
451 ASSERT(ds
->ds_owner
== NULL
);
453 unique_remove(ds
->ds_fsid_guid
);
457 dsl_dataset_evict_async(void *dbu
)
459 dsl_dataset_t
*ds
= dbu
;
461 ASSERT(ds
->ds_owner
== NULL
);
465 if (ds
->ds_objset
!= NULL
)
466 dmu_objset_evict(ds
->ds_objset
);
469 dsl_dataset_rele(ds
->ds_prev
, ds
);
473 dsl_bookmark_fini_ds(ds
);
475 bplist_destroy(&ds
->ds_pending_deadlist
);
476 if (dsl_deadlist_is_open(&ds
->ds_deadlist
))
477 dsl_deadlist_close(&ds
->ds_deadlist
);
478 if (dsl_deadlist_is_open(&ds
->ds_remap_deadlist
))
479 dsl_deadlist_close(&ds
->ds_remap_deadlist
);
481 dsl_dir_async_rele(ds
->ds_dir
, ds
);
483 ASSERT(!list_link_active(&ds
->ds_synced_link
));
485 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
486 if (dsl_dataset_feature_is_active(ds
, f
))
487 unload_zfeature(ds
, f
);
490 list_destroy(&ds
->ds_prop_cbs
);
491 mutex_destroy(&ds
->ds_lock
);
492 mutex_destroy(&ds
->ds_opening_lock
);
493 mutex_destroy(&ds
->ds_sendstream_lock
);
494 mutex_destroy(&ds
->ds_remap_deadlist_lock
);
495 zfs_refcount_destroy(&ds
->ds_longholds
);
496 rrw_destroy(&ds
->ds_bp_rwlock
);
498 kmem_free(ds
, sizeof (dsl_dataset_t
));
502 dsl_dataset_get_snapname(dsl_dataset_t
*ds
)
504 dsl_dataset_phys_t
*headphys
;
507 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
508 objset_t
*mos
= dp
->dp_meta_objset
;
510 if (ds
->ds_snapname
[0])
512 if (dsl_dataset_phys(ds
)->ds_next_snap_obj
== 0)
515 err
= dmu_bonus_hold(mos
, dsl_dir_phys(ds
->ds_dir
)->dd_head_dataset_obj
,
519 headphys
= headdbuf
->db_data
;
520 err
= zap_value_search(dp
->dp_meta_objset
,
521 headphys
->ds_snapnames_zapobj
, ds
->ds_object
, 0, ds
->ds_snapname
,
522 sizeof (ds
->ds_snapname
));
523 if (err
!= 0 && zfs_recover
== B_TRUE
) {
525 (void) snprintf(ds
->ds_snapname
, sizeof (ds
->ds_snapname
),
526 "SNAPOBJ=%llu-ERR=%d",
527 (unsigned long long)ds
->ds_object
, err
);
529 dmu_buf_rele(headdbuf
, FTAG
);
534 dsl_dataset_snap_lookup(dsl_dataset_t
*ds
, const char *name
, uint64_t *value
)
536 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
537 uint64_t snapobj
= dsl_dataset_phys(ds
)->ds_snapnames_zapobj
;
541 if (dsl_dataset_phys(ds
)->ds_flags
& DS_FLAG_CI_DATASET
)
544 err
= zap_lookup_norm(mos
, snapobj
, name
, 8, 1,
545 value
, mt
, NULL
, 0, NULL
);
546 if (err
== ENOTSUP
&& (mt
& MT_NORMALIZE
))
547 err
= zap_lookup(mos
, snapobj
, name
, 8, 1, value
);
552 dsl_dataset_snap_remove(dsl_dataset_t
*ds
, const char *name
, dmu_tx_t
*tx
,
555 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
556 uint64_t snapobj
= dsl_dataset_phys(ds
)->ds_snapnames_zapobj
;
560 dsl_dir_snap_cmtime_update(ds
->ds_dir
, tx
);
562 if (dsl_dataset_phys(ds
)->ds_flags
& DS_FLAG_CI_DATASET
)
565 err
= zap_remove_norm(mos
, snapobj
, name
, mt
, tx
);
566 if (err
== ENOTSUP
&& (mt
& MT_NORMALIZE
))
567 err
= zap_remove(mos
, snapobj
, name
, tx
);
569 if (err
== 0 && adj_cnt
)
570 dsl_fs_ss_count_adjust(ds
->ds_dir
, -1,
571 DD_FIELD_SNAPSHOT_COUNT
, tx
);
577 dsl_dataset_try_add_ref(dsl_pool_t
*dp
, dsl_dataset_t
*ds
, const void *tag
)
579 dmu_buf_t
*dbuf
= ds
->ds_dbuf
;
580 boolean_t result
= B_FALSE
;
582 if (dbuf
!= NULL
&& dmu_buf_try_add_ref(dbuf
, dp
->dp_meta_objset
,
583 ds
->ds_object
, DMU_BONUS_BLKID
, tag
)) {
585 if (ds
== dmu_buf_get_user(dbuf
))
588 dmu_buf_rele(dbuf
, tag
);
595 dsl_dataset_hold_obj(dsl_pool_t
*dp
, uint64_t dsobj
, const void *tag
,
598 objset_t
*mos
= dp
->dp_meta_objset
;
602 dmu_object_info_t doi
;
604 ASSERT(dsl_pool_config_held(dp
));
606 err
= dmu_bonus_hold(mos
, dsobj
, tag
, &dbuf
);
610 /* Make sure dsobj has the correct object type. */
611 dmu_object_info_from_db(dbuf
, &doi
);
612 if (doi
.doi_bonus_type
!= DMU_OT_DSL_DATASET
) {
613 dmu_buf_rele(dbuf
, tag
);
614 return (SET_ERROR(EINVAL
));
617 ds
= dmu_buf_get_user(dbuf
);
619 dsl_dataset_t
*winner
= NULL
;
621 ds
= kmem_zalloc(sizeof (dsl_dataset_t
), KM_SLEEP
);
623 ds
->ds_object
= dsobj
;
624 ds
->ds_is_snapshot
= dsl_dataset_phys(ds
)->ds_num_children
!= 0;
625 list_link_init(&ds
->ds_synced_link
);
627 err
= dsl_dir_hold_obj(dp
, dsl_dataset_phys(ds
)->ds_dir_obj
,
628 NULL
, ds
, &ds
->ds_dir
);
630 kmem_free(ds
, sizeof (dsl_dataset_t
));
631 dmu_buf_rele(dbuf
, tag
);
635 mutex_init(&ds
->ds_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
636 mutex_init(&ds
->ds_opening_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
637 mutex_init(&ds
->ds_sendstream_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
638 mutex_init(&ds
->ds_remap_deadlist_lock
,
639 NULL
, MUTEX_DEFAULT
, NULL
);
640 rrw_init(&ds
->ds_bp_rwlock
, B_FALSE
);
641 zfs_refcount_create(&ds
->ds_longholds
);
643 bplist_create(&ds
->ds_pending_deadlist
);
645 list_create(&ds
->ds_sendstreams
, sizeof (dmu_sendstatus_t
),
646 offsetof(dmu_sendstatus_t
, dss_link
));
648 list_create(&ds
->ds_prop_cbs
, sizeof (dsl_prop_cb_record_t
),
649 offsetof(dsl_prop_cb_record_t
, cbr_ds_node
));
651 if (doi
.doi_type
== DMU_OTN_ZAP_METADATA
) {
654 for (f
= 0; f
< SPA_FEATURES
; f
++) {
655 if (!(spa_feature_table
[f
].fi_flags
&
656 ZFEATURE_FLAG_PER_DATASET
))
658 err
= load_zfeature(mos
, ds
, f
);
662 if (!ds
->ds_is_snapshot
) {
663 ds
->ds_snapname
[0] = '\0';
664 if (dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0) {
665 err
= dsl_dataset_hold_obj(dp
,
666 dsl_dataset_phys(ds
)->ds_prev_snap_obj
,
670 goto after_dsl_bookmark_fini
;
671 err
= dsl_bookmark_init_ds(ds
);
673 if (zfs_flags
& ZFS_DEBUG_SNAPNAMES
)
674 err
= dsl_dataset_get_snapname(ds
);
676 dsl_dataset_phys(ds
)->ds_userrefs_obj
!= 0) {
678 ds
->ds_dir
->dd_pool
->dp_meta_objset
,
679 dsl_dataset_phys(ds
)->ds_userrefs_obj
,
684 if (err
== 0 && !ds
->ds_is_snapshot
) {
685 err
= dsl_prop_get_int_ds(ds
,
686 zfs_prop_to_name(ZFS_PROP_REFRESERVATION
),
689 err
= dsl_prop_get_int_ds(ds
,
690 zfs_prop_to_name(ZFS_PROP_REFQUOTA
),
694 ds
->ds_reserved
= ds
->ds_quota
= 0;
697 if (err
== 0 && ds
->ds_dir
->dd_crypto_obj
!= 0 &&
698 ds
->ds_is_snapshot
&&
699 zap_contains(mos
, dsobj
, DS_FIELD_IVSET_GUID
) != 0) {
700 dp
->dp_spa
->spa_errata
=
701 ZPOOL_ERRATA_ZOL_8308_ENCRYPTION
;
704 dsl_deadlist_open(&ds
->ds_deadlist
,
705 mos
, dsl_dataset_phys(ds
)->ds_deadlist_obj
);
706 uint64_t remap_deadlist_obj
=
707 dsl_dataset_get_remap_deadlist_object(ds
);
708 if (remap_deadlist_obj
!= 0) {
709 dsl_deadlist_open(&ds
->ds_remap_deadlist
, mos
,
713 dmu_buf_init_user(&ds
->ds_dbu
, dsl_dataset_evict_sync
,
714 dsl_dataset_evict_async
, &ds
->ds_dbuf
);
716 winner
= dmu_buf_set_user_ie(dbuf
, &ds
->ds_dbu
);
718 if (err
!= 0 || winner
!= NULL
) {
719 dsl_deadlist_close(&ds
->ds_deadlist
);
720 if (dsl_deadlist_is_open(&ds
->ds_remap_deadlist
))
721 dsl_deadlist_close(&ds
->ds_remap_deadlist
);
722 dsl_bookmark_fini_ds(ds
);
723 after_dsl_bookmark_fini
:
725 dsl_dataset_rele(ds
->ds_prev
, ds
);
726 dsl_dir_rele(ds
->ds_dir
, ds
);
727 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
728 if (dsl_dataset_feature_is_active(ds
, f
))
729 unload_zfeature(ds
, f
);
732 list_destroy(&ds
->ds_prop_cbs
);
733 list_destroy(&ds
->ds_sendstreams
);
734 bplist_destroy(&ds
->ds_pending_deadlist
);
735 mutex_destroy(&ds
->ds_lock
);
736 mutex_destroy(&ds
->ds_opening_lock
);
737 mutex_destroy(&ds
->ds_sendstream_lock
);
738 mutex_destroy(&ds
->ds_remap_deadlist_lock
);
739 zfs_refcount_destroy(&ds
->ds_longholds
);
740 rrw_destroy(&ds
->ds_bp_rwlock
);
741 kmem_free(ds
, sizeof (dsl_dataset_t
));
743 dmu_buf_rele(dbuf
, tag
);
749 unique_insert(dsl_dataset_phys(ds
)->ds_fsid_guid
);
750 if (ds
->ds_fsid_guid
!=
751 dsl_dataset_phys(ds
)->ds_fsid_guid
) {
752 zfs_dbgmsg("ds_fsid_guid changed from "
753 "%llx to %llx for pool %s dataset id %llu",
755 dsl_dataset_phys(ds
)->ds_fsid_guid
,
756 (long long)ds
->ds_fsid_guid
,
757 spa_name(dp
->dp_spa
),
758 (u_longlong_t
)dsobj
);
763 ASSERT3P(ds
->ds_dbuf
, ==, dbuf
);
764 ASSERT3P(dsl_dataset_phys(ds
), ==, dbuf
->db_data
);
765 ASSERT(dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0 ||
766 spa_version(dp
->dp_spa
) < SPA_VERSION_ORIGIN
||
767 dp
->dp_origin_snap
== NULL
|| ds
== dp
->dp_origin_snap
);
774 dsl_dataset_create_key_mapping(dsl_dataset_t
*ds
)
776 dsl_dir_t
*dd
= ds
->ds_dir
;
778 if (dd
->dd_crypto_obj
== 0)
781 return (spa_keystore_create_mapping(dd
->dd_pool
->dp_spa
,
782 ds
, ds
, &ds
->ds_key_mapping
));
786 dsl_dataset_hold_obj_flags(dsl_pool_t
*dp
, uint64_t dsobj
,
787 ds_hold_flags_t flags
, const void *tag
, dsl_dataset_t
**dsp
)
791 err
= dsl_dataset_hold_obj(dp
, dsobj
, tag
, dsp
);
795 ASSERT3P(*dsp
, !=, NULL
);
797 if (flags
& DS_HOLD_FLAG_DECRYPT
) {
798 err
= dsl_dataset_create_key_mapping(*dsp
);
800 dsl_dataset_rele(*dsp
, tag
);
807 dsl_dataset_hold_flags(dsl_pool_t
*dp
, const char *name
, ds_hold_flags_t flags
,
808 const void *tag
, dsl_dataset_t
**dsp
)
811 const char *snapname
;
816 err
= dsl_dir_hold(dp
, name
, FTAG
, &dd
, &snapname
);
820 ASSERT(dsl_pool_config_held(dp
));
821 obj
= dsl_dir_phys(dd
)->dd_head_dataset_obj
;
823 err
= dsl_dataset_hold_obj_flags(dp
, obj
, flags
, tag
, &ds
);
825 err
= SET_ERROR(ENOENT
);
827 /* we may be looking for a snapshot */
828 if (err
== 0 && snapname
!= NULL
) {
829 dsl_dataset_t
*snap_ds
;
831 if (*snapname
++ != '@') {
832 dsl_dataset_rele_flags(ds
, flags
, tag
);
833 dsl_dir_rele(dd
, FTAG
);
834 return (SET_ERROR(ENOENT
));
837 dprintf("looking for snapshot '%s'\n", snapname
);
838 err
= dsl_dataset_snap_lookup(ds
, snapname
, &obj
);
840 err
= dsl_dataset_hold_obj_flags(dp
, obj
, flags
, tag
,
843 dsl_dataset_rele_flags(ds
, flags
, tag
);
846 mutex_enter(&snap_ds
->ds_lock
);
847 if (snap_ds
->ds_snapname
[0] == 0)
848 (void) strlcpy(snap_ds
->ds_snapname
, snapname
,
849 sizeof (snap_ds
->ds_snapname
));
850 mutex_exit(&snap_ds
->ds_lock
);
856 dsl_dir_rele(dd
, FTAG
);
861 dsl_dataset_hold(dsl_pool_t
*dp
, const char *name
, const void *tag
,
864 return (dsl_dataset_hold_flags(dp
, name
, 0, tag
, dsp
));
868 dsl_dataset_own_obj_impl(dsl_pool_t
*dp
, uint64_t dsobj
, ds_hold_flags_t flags
,
869 const void *tag
, boolean_t override
, dsl_dataset_t
**dsp
)
871 int err
= dsl_dataset_hold_obj_flags(dp
, dsobj
, flags
, tag
, dsp
);
874 if (!dsl_dataset_tryown(*dsp
, tag
, override
)) {
875 dsl_dataset_rele_flags(*dsp
, flags
, tag
);
877 return (SET_ERROR(EBUSY
));
884 dsl_dataset_own_obj(dsl_pool_t
*dp
, uint64_t dsobj
, ds_hold_flags_t flags
,
885 const void *tag
, dsl_dataset_t
**dsp
)
887 return (dsl_dataset_own_obj_impl(dp
, dsobj
, flags
, tag
, B_FALSE
, dsp
));
891 dsl_dataset_own_obj_force(dsl_pool_t
*dp
, uint64_t dsobj
,
892 ds_hold_flags_t flags
, const void *tag
, dsl_dataset_t
**dsp
)
894 return (dsl_dataset_own_obj_impl(dp
, dsobj
, flags
, tag
, B_TRUE
, dsp
));
898 dsl_dataset_own_impl(dsl_pool_t
*dp
, const char *name
, ds_hold_flags_t flags
,
899 const void *tag
, boolean_t override
, dsl_dataset_t
**dsp
)
901 int err
= dsl_dataset_hold_flags(dp
, name
, flags
, tag
, dsp
);
904 if (!dsl_dataset_tryown(*dsp
, tag
, override
)) {
905 dsl_dataset_rele_flags(*dsp
, flags
, tag
);
906 return (SET_ERROR(EBUSY
));
912 dsl_dataset_own_force(dsl_pool_t
*dp
, const char *name
, ds_hold_flags_t flags
,
913 const void *tag
, dsl_dataset_t
**dsp
)
915 return (dsl_dataset_own_impl(dp
, name
, flags
, tag
, B_TRUE
, dsp
));
919 dsl_dataset_own(dsl_pool_t
*dp
, const char *name
, ds_hold_flags_t flags
,
920 const void *tag
, dsl_dataset_t
**dsp
)
922 return (dsl_dataset_own_impl(dp
, name
, flags
, tag
, B_FALSE
, dsp
));
926 * See the comment above dsl_pool_hold() for details. In summary, a long
927 * hold is used to prevent destruction of a dataset while the pool hold
928 * is dropped, allowing other concurrent operations (e.g. spa_sync()).
930 * The dataset and pool must be held when this function is called. After it
931 * is called, the pool hold may be released while the dataset is still held
935 dsl_dataset_long_hold(dsl_dataset_t
*ds
, const void *tag
)
937 ASSERT(dsl_pool_config_held(ds
->ds_dir
->dd_pool
));
938 (void) zfs_refcount_add(&ds
->ds_longholds
, tag
);
942 dsl_dataset_long_rele(dsl_dataset_t
*ds
, const void *tag
)
944 (void) zfs_refcount_remove(&ds
->ds_longholds
, tag
);
947 /* Return B_TRUE if there are any long holds on this dataset. */
949 dsl_dataset_long_held(dsl_dataset_t
*ds
)
951 return (!zfs_refcount_is_zero(&ds
->ds_longholds
));
955 dsl_dataset_name(dsl_dataset_t
*ds
, char *name
)
958 (void) strlcpy(name
, "mos", ZFS_MAX_DATASET_NAME_LEN
);
960 dsl_dir_name(ds
->ds_dir
, name
);
961 VERIFY0(dsl_dataset_get_snapname(ds
));
962 if (ds
->ds_snapname
[0]) {
963 VERIFY3U(strlcat(name
, "@", ZFS_MAX_DATASET_NAME_LEN
),
964 <, ZFS_MAX_DATASET_NAME_LEN
);
966 * We use a "recursive" mutex so that we
967 * can call dprintf_ds() with ds_lock held.
969 if (!MUTEX_HELD(&ds
->ds_lock
)) {
970 mutex_enter(&ds
->ds_lock
);
971 VERIFY3U(strlcat(name
, ds
->ds_snapname
,
972 ZFS_MAX_DATASET_NAME_LEN
), <,
973 ZFS_MAX_DATASET_NAME_LEN
);
974 mutex_exit(&ds
->ds_lock
);
976 VERIFY3U(strlcat(name
, ds
->ds_snapname
,
977 ZFS_MAX_DATASET_NAME_LEN
), <,
978 ZFS_MAX_DATASET_NAME_LEN
);
985 dsl_dataset_namelen(dsl_dataset_t
*ds
)
987 VERIFY0(dsl_dataset_get_snapname(ds
));
988 mutex_enter(&ds
->ds_lock
);
989 int len
= strlen(ds
->ds_snapname
);
990 mutex_exit(&ds
->ds_lock
);
991 /* add '@' if ds is a snap */
994 len
+= dsl_dir_namelen(ds
->ds_dir
);
999 dsl_dataset_rele(dsl_dataset_t
*ds
, const void *tag
)
1001 dmu_buf_rele(ds
->ds_dbuf
, tag
);
1005 dsl_dataset_remove_key_mapping(dsl_dataset_t
*ds
)
1007 dsl_dir_t
*dd
= ds
->ds_dir
;
1009 if (dd
== NULL
|| dd
->dd_crypto_obj
== 0)
1012 (void) spa_keystore_remove_mapping(dd
->dd_pool
->dp_spa
,
1017 dsl_dataset_rele_flags(dsl_dataset_t
*ds
, ds_hold_flags_t flags
,
1020 if (flags
& DS_HOLD_FLAG_DECRYPT
)
1021 dsl_dataset_remove_key_mapping(ds
);
1023 dsl_dataset_rele(ds
, tag
);
1027 dsl_dataset_disown(dsl_dataset_t
*ds
, ds_hold_flags_t flags
, const void *tag
)
1029 ASSERT3P(ds
->ds_owner
, ==, tag
);
1030 ASSERT(ds
->ds_dbuf
!= NULL
);
1032 mutex_enter(&ds
->ds_lock
);
1033 ds
->ds_owner
= NULL
;
1034 mutex_exit(&ds
->ds_lock
);
1035 dsl_dataset_long_rele(ds
, tag
);
1036 dsl_dataset_rele_flags(ds
, flags
, tag
);
1040 dsl_dataset_tryown(dsl_dataset_t
*ds
, const void *tag
, boolean_t override
)
1042 boolean_t gotit
= FALSE
;
1044 ASSERT(dsl_pool_config_held(ds
->ds_dir
->dd_pool
));
1045 mutex_enter(&ds
->ds_lock
);
1046 if (ds
->ds_owner
== NULL
&& (override
|| !(DS_IS_INCONSISTENT(ds
) ||
1047 (dsl_dataset_feature_is_active(ds
,
1048 SPA_FEATURE_REDACTED_DATASETS
) &&
1049 !zfs_allow_redacted_dataset_mount
)))) {
1051 dsl_dataset_long_hold(ds
, tag
);
1054 mutex_exit(&ds
->ds_lock
);
1059 dsl_dataset_has_owner(dsl_dataset_t
*ds
)
1062 mutex_enter(&ds
->ds_lock
);
1063 rv
= (ds
->ds_owner
!= NULL
);
1064 mutex_exit(&ds
->ds_lock
);
1069 zfeature_active(spa_feature_t f
, void *arg
)
1071 switch (spa_feature_table
[f
].fi_type
) {
1072 case ZFEATURE_TYPE_BOOLEAN
: {
1073 boolean_t val
= (boolean_t
)(uintptr_t)arg
;
1074 ASSERT(val
== B_FALSE
|| val
== B_TRUE
);
1077 case ZFEATURE_TYPE_UINT64_ARRAY
:
1079 * In this case, arg is a uint64_t array. The feature is active
1080 * if the array is non-null.
1082 return (arg
!= NULL
);
1084 panic("Invalid zfeature type %d", spa_feature_table
[f
].fi_type
);
1090 dsl_dataset_feature_is_active(dsl_dataset_t
*ds
, spa_feature_t f
)
1092 return (zfeature_active(f
, ds
->ds_feature
[f
]));
1096 * The buffers passed out by this function are references to internal buffers;
1097 * they should not be freed by callers of this function, and they should not be
1098 * used after the dataset has been released.
1101 dsl_dataset_get_uint64_array_feature(dsl_dataset_t
*ds
, spa_feature_t f
,
1102 uint64_t *outlength
, uint64_t **outp
)
1104 VERIFY(spa_feature_table
[f
].fi_type
& ZFEATURE_TYPE_UINT64_ARRAY
);
1105 if (!dsl_dataset_feature_is_active(ds
, f
)) {
1108 struct feature_type_uint64_array_arg
*ftuaa
= ds
->ds_feature
[f
];
1109 *outp
= ftuaa
->array
;
1110 *outlength
= ftuaa
->length
;
1115 dsl_dataset_activate_feature(uint64_t dsobj
, spa_feature_t f
, void *arg
,
1118 spa_t
*spa
= dmu_tx_pool(tx
)->dp_spa
;
1119 objset_t
*mos
= dmu_tx_pool(tx
)->dp_meta_objset
;
1122 VERIFY(spa_feature_table
[f
].fi_flags
& ZFEATURE_FLAG_PER_DATASET
);
1124 spa_feature_incr(spa
, f
, tx
);
1125 dmu_object_zapify(mos
, dsobj
, DMU_OT_DSL_DATASET
, tx
);
1127 switch (spa_feature_table
[f
].fi_type
) {
1128 case ZFEATURE_TYPE_BOOLEAN
:
1129 ASSERT3S((boolean_t
)(uintptr_t)arg
, ==, B_TRUE
);
1130 VERIFY0(zap_add(mos
, dsobj
, spa_feature_table
[f
].fi_guid
,
1131 sizeof (zero
), 1, &zero
, tx
));
1133 case ZFEATURE_TYPE_UINT64_ARRAY
:
1135 struct feature_type_uint64_array_arg
*ftuaa
= arg
;
1136 VERIFY0(zap_add(mos
, dsobj
, spa_feature_table
[f
].fi_guid
,
1137 sizeof (uint64_t), ftuaa
->length
, ftuaa
->array
, tx
));
1141 panic("Invalid zfeature type %d", spa_feature_table
[f
].fi_type
);
1146 dsl_dataset_deactivate_feature_impl(dsl_dataset_t
*ds
, spa_feature_t f
,
1149 spa_t
*spa
= dmu_tx_pool(tx
)->dp_spa
;
1150 objset_t
*mos
= dmu_tx_pool(tx
)->dp_meta_objset
;
1151 uint64_t dsobj
= ds
->ds_object
;
1153 VERIFY(spa_feature_table
[f
].fi_flags
& ZFEATURE_FLAG_PER_DATASET
);
1155 VERIFY0(zap_remove(mos
, dsobj
, spa_feature_table
[f
].fi_guid
, tx
));
1156 spa_feature_decr(spa
, f
, tx
);
1157 ds
->ds_feature
[f
] = NULL
;
1161 dsl_dataset_deactivate_feature(dsl_dataset_t
*ds
, spa_feature_t f
, dmu_tx_t
*tx
)
1163 unload_zfeature(ds
, f
);
1164 dsl_dataset_deactivate_feature_impl(ds
, f
, tx
);
1168 dsl_dataset_create_sync_dd(dsl_dir_t
*dd
, dsl_dataset_t
*origin
,
1169 dsl_crypto_params_t
*dcp
, uint64_t flags
, dmu_tx_t
*tx
)
1171 dsl_pool_t
*dp
= dd
->dd_pool
;
1173 dsl_dataset_phys_t
*dsphys
;
1175 objset_t
*mos
= dp
->dp_meta_objset
;
1178 origin
= dp
->dp_origin_snap
;
1180 ASSERT(origin
== NULL
|| origin
->ds_dir
->dd_pool
== dp
);
1181 ASSERT(origin
== NULL
|| dsl_dataset_phys(origin
)->ds_num_children
> 0);
1182 ASSERT(dmu_tx_is_syncing(tx
));
1183 ASSERT(dsl_dir_phys(dd
)->dd_head_dataset_obj
== 0);
1185 dsobj
= dmu_object_alloc(mos
, DMU_OT_DSL_DATASET
, 0,
1186 DMU_OT_DSL_DATASET
, sizeof (dsl_dataset_phys_t
), tx
);
1187 VERIFY0(dmu_bonus_hold(mos
, dsobj
, FTAG
, &dbuf
));
1188 dmu_buf_will_dirty(dbuf
, tx
);
1189 dsphys
= dbuf
->db_data
;
1190 memset(dsphys
, 0, sizeof (dsl_dataset_phys_t
));
1191 dsphys
->ds_dir_obj
= dd
->dd_object
;
1192 dsphys
->ds_flags
= flags
;
1193 dsphys
->ds_fsid_guid
= unique_create();
1194 (void) random_get_pseudo_bytes((void*)&dsphys
->ds_guid
,
1195 sizeof (dsphys
->ds_guid
));
1196 dsphys
->ds_snapnames_zapobj
=
1197 zap_create_norm(mos
, U8_TEXTPREP_TOUPPER
, DMU_OT_DSL_DS_SNAP_MAP
,
1198 DMU_OT_NONE
, 0, tx
);
1199 dsphys
->ds_creation_time
= gethrestime_sec();
1200 dsphys
->ds_creation_txg
= tx
->tx_txg
== TXG_INITIAL
? 1 : tx
->tx_txg
;
1202 if (origin
== NULL
) {
1203 dsphys
->ds_deadlist_obj
= dsl_deadlist_alloc(mos
, tx
);
1205 dsl_dataset_t
*ohds
; /* head of the origin snapshot */
1207 dsphys
->ds_prev_snap_obj
= origin
->ds_object
;
1208 dsphys
->ds_prev_snap_txg
=
1209 dsl_dataset_phys(origin
)->ds_creation_txg
;
1210 dsphys
->ds_referenced_bytes
=
1211 dsl_dataset_phys(origin
)->ds_referenced_bytes
;
1212 dsphys
->ds_compressed_bytes
=
1213 dsl_dataset_phys(origin
)->ds_compressed_bytes
;
1214 dsphys
->ds_uncompressed_bytes
=
1215 dsl_dataset_phys(origin
)->ds_uncompressed_bytes
;
1216 rrw_enter(&origin
->ds_bp_rwlock
, RW_READER
, FTAG
);
1217 dsphys
->ds_bp
= dsl_dataset_phys(origin
)->ds_bp
;
1218 rrw_exit(&origin
->ds_bp_rwlock
, FTAG
);
1221 * Inherit flags that describe the dataset's contents
1222 * (INCONSISTENT) or properties (Case Insensitive).
1224 dsphys
->ds_flags
|= dsl_dataset_phys(origin
)->ds_flags
&
1225 (DS_FLAG_INCONSISTENT
| DS_FLAG_CI_DATASET
);
1227 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
1228 if (zfeature_active(f
, origin
->ds_feature
[f
])) {
1229 dsl_dataset_activate_feature(dsobj
, f
,
1230 origin
->ds_feature
[f
], tx
);
1234 dmu_buf_will_dirty(origin
->ds_dbuf
, tx
);
1235 dsl_dataset_phys(origin
)->ds_num_children
++;
1237 VERIFY0(dsl_dataset_hold_obj(dp
,
1238 dsl_dir_phys(origin
->ds_dir
)->dd_head_dataset_obj
,
1240 dsphys
->ds_deadlist_obj
= dsl_deadlist_clone(&ohds
->ds_deadlist
,
1241 dsphys
->ds_prev_snap_txg
, dsphys
->ds_prev_snap_obj
, tx
);
1242 dsl_dataset_rele(ohds
, FTAG
);
1244 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_NEXT_CLONES
) {
1245 if (dsl_dataset_phys(origin
)->ds_next_clones_obj
== 0) {
1246 dsl_dataset_phys(origin
)->ds_next_clones_obj
=
1248 DMU_OT_NEXT_CLONES
, DMU_OT_NONE
, 0, tx
);
1250 VERIFY0(zap_add_int(mos
,
1251 dsl_dataset_phys(origin
)->ds_next_clones_obj
,
1255 dmu_buf_will_dirty(dd
->dd_dbuf
, tx
);
1256 dsl_dir_phys(dd
)->dd_origin_obj
= origin
->ds_object
;
1257 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_DIR_CLONES
) {
1258 if (dsl_dir_phys(origin
->ds_dir
)->dd_clones
== 0) {
1259 dmu_buf_will_dirty(origin
->ds_dir
->dd_dbuf
, tx
);
1260 dsl_dir_phys(origin
->ds_dir
)->dd_clones
=
1262 DMU_OT_DSL_CLONES
, DMU_OT_NONE
, 0, tx
);
1264 VERIFY0(zap_add_int(mos
,
1265 dsl_dir_phys(origin
->ds_dir
)->dd_clones
,
1270 /* handle encryption */
1271 dsl_dataset_create_crypt_sync(dsobj
, dd
, origin
, dcp
, tx
);
1273 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_UNIQUE_ACCURATE
)
1274 dsphys
->ds_flags
|= DS_FLAG_UNIQUE_ACCURATE
;
1276 dmu_buf_rele(dbuf
, FTAG
);
1278 dmu_buf_will_dirty(dd
->dd_dbuf
, tx
);
1279 dsl_dir_phys(dd
)->dd_head_dataset_obj
= dsobj
;
1285 dsl_dataset_zero_zil(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
1289 VERIFY0(dmu_objset_from_ds(ds
, &os
));
1290 if (memcmp(&os
->os_zil_header
, &zero_zil
, sizeof (zero_zil
)) != 0) {
1291 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
1294 memset(&os
->os_zil_header
, 0, sizeof (os
->os_zil_header
));
1295 if (os
->os_encrypted
)
1296 os
->os_next_write_raw
[tx
->tx_txg
& TXG_MASK
] = B_TRUE
;
1298 zio
= zio_root(dp
->dp_spa
, NULL
, NULL
, ZIO_FLAG_MUSTSUCCEED
);
1299 dsl_dataset_sync(ds
, zio
, tx
);
1300 VERIFY0(zio_wait(zio
));
1301 dsl_dataset_sync_done(ds
, tx
);
1306 dsl_dataset_create_sync(dsl_dir_t
*pdd
, const char *lastname
,
1307 dsl_dataset_t
*origin
, uint64_t flags
, cred_t
*cr
,
1308 dsl_crypto_params_t
*dcp
, dmu_tx_t
*tx
)
1310 dsl_pool_t
*dp
= pdd
->dd_pool
;
1311 uint64_t dsobj
, ddobj
;
1314 ASSERT(dmu_tx_is_syncing(tx
));
1315 ASSERT(lastname
[0] != '@');
1317 * Filesystems will eventually have their origin set to dp_origin_snap,
1318 * but that's taken care of in dsl_dataset_create_sync_dd. When
1319 * creating a filesystem, this function is called with origin equal to
1323 ASSERT3P(origin
, !=, dp
->dp_origin_snap
);
1325 ddobj
= dsl_dir_create_sync(dp
, pdd
, lastname
, tx
);
1326 VERIFY0(dsl_dir_hold_obj(dp
, ddobj
, lastname
, FTAG
, &dd
));
1328 dsobj
= dsl_dataset_create_sync_dd(dd
, origin
, dcp
,
1329 flags
& ~DS_CREATE_FLAG_NODIRTY
, tx
);
1331 dsl_deleg_set_create_perms(dd
, tx
, cr
);
1334 * If we are creating a clone and the livelist feature is enabled,
1335 * add the entry DD_FIELD_LIVELIST to ZAP.
1337 if (origin
!= NULL
&&
1338 spa_feature_is_enabled(dp
->dp_spa
, SPA_FEATURE_LIVELIST
)) {
1339 objset_t
*mos
= dd
->dd_pool
->dp_meta_objset
;
1340 dsl_dir_zapify(dd
, tx
);
1341 uint64_t obj
= dsl_deadlist_alloc(mos
, tx
);
1342 VERIFY0(zap_add(mos
, dd
->dd_object
, DD_FIELD_LIVELIST
,
1343 sizeof (uint64_t), 1, &obj
, tx
));
1344 spa_feature_incr(dp
->dp_spa
, SPA_FEATURE_LIVELIST
, tx
);
1348 * Since we're creating a new node we know it's a leaf, so we can
1349 * initialize the counts if the limit feature is active.
1351 if (spa_feature_is_active(dp
->dp_spa
, SPA_FEATURE_FS_SS_LIMIT
)) {
1353 objset_t
*os
= dd
->dd_pool
->dp_meta_objset
;
1355 dsl_dir_zapify(dd
, tx
);
1356 VERIFY0(zap_add(os
, dd
->dd_object
, DD_FIELD_FILESYSTEM_COUNT
,
1357 sizeof (cnt
), 1, &cnt
, tx
));
1358 VERIFY0(zap_add(os
, dd
->dd_object
, DD_FIELD_SNAPSHOT_COUNT
,
1359 sizeof (cnt
), 1, &cnt
, tx
));
1362 dsl_dir_rele(dd
, FTAG
);
1365 * If we are creating a clone, make sure we zero out any stale
1366 * data from the origin snapshots zil header.
1368 if (origin
!= NULL
&& !(flags
& DS_CREATE_FLAG_NODIRTY
)) {
1371 VERIFY0(dsl_dataset_hold_obj(dp
, dsobj
, FTAG
, &ds
));
1372 dsl_dataset_zero_zil(ds
, tx
);
1373 dsl_dataset_rele(ds
, FTAG
);
1380 * The unique space in the head dataset can be calculated by subtracting
1381 * the space used in the most recent snapshot, that is still being used
1382 * in this file system, from the space currently in use. To figure out
1383 * the space in the most recent snapshot still in use, we need to take
1384 * the total space used in the snapshot and subtract out the space that
1385 * has been freed up since the snapshot was taken.
1388 dsl_dataset_recalc_head_uniq(dsl_dataset_t
*ds
)
1391 uint64_t dlused
, dlcomp
, dluncomp
;
1393 ASSERT(!ds
->ds_is_snapshot
);
1395 if (dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0)
1396 mrs_used
= dsl_dataset_phys(ds
->ds_prev
)->ds_referenced_bytes
;
1400 dsl_deadlist_space(&ds
->ds_deadlist
, &dlused
, &dlcomp
, &dluncomp
);
1402 ASSERT3U(dlused
, <=, mrs_used
);
1403 dsl_dataset_phys(ds
)->ds_unique_bytes
=
1404 dsl_dataset_phys(ds
)->ds_referenced_bytes
- (mrs_used
- dlused
);
1406 if (spa_version(ds
->ds_dir
->dd_pool
->dp_spa
) >=
1407 SPA_VERSION_UNIQUE_ACCURATE
)
1408 dsl_dataset_phys(ds
)->ds_flags
|= DS_FLAG_UNIQUE_ACCURATE
;
1412 dsl_dataset_remove_from_next_clones(dsl_dataset_t
*ds
, uint64_t obj
,
1415 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
1416 uint64_t count __maybe_unused
;
1419 ASSERT(dsl_dataset_phys(ds
)->ds_num_children
>= 2);
1420 err
= zap_remove_int(mos
, dsl_dataset_phys(ds
)->ds_next_clones_obj
,
1423 * The err should not be ENOENT, but a bug in a previous version
1424 * of the code could cause upgrade_clones_cb() to not set
1425 * ds_next_snap_obj when it should, leading to a missing entry.
1426 * If we knew that the pool was created after
1427 * SPA_VERSION_NEXT_CLONES, we could assert that it isn't
1428 * ENOENT. However, at least we can check that we don't have
1429 * too many entries in the next_clones_obj even after failing to
1434 ASSERT0(zap_count(mos
, dsl_dataset_phys(ds
)->ds_next_clones_obj
,
1436 ASSERT3U(count
, <=, dsl_dataset_phys(ds
)->ds_num_children
- 2);
1441 dsl_dataset_get_blkptr(dsl_dataset_t
*ds
)
1443 return (&dsl_dataset_phys(ds
)->ds_bp
);
1447 dsl_dataset_get_spa(dsl_dataset_t
*ds
)
1449 return (ds
->ds_dir
->dd_pool
->dp_spa
);
1453 dsl_dataset_dirty(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
1457 if (ds
== NULL
) /* this is the meta-objset */
1460 ASSERT(ds
->ds_objset
!= NULL
);
1462 if (dsl_dataset_phys(ds
)->ds_next_snap_obj
!= 0)
1463 panic("dirtying snapshot!");
1465 /* Must not dirty a dataset in the same txg where it got snapshotted. */
1466 ASSERT3U(tx
->tx_txg
, >, dsl_dataset_phys(ds
)->ds_prev_snap_txg
);
1468 dp
= ds
->ds_dir
->dd_pool
;
1469 if (txg_list_add(&dp
->dp_dirty_datasets
, ds
, tx
->tx_txg
)) {
1470 objset_t
*os
= ds
->ds_objset
;
1472 /* up the hold count until we can be written out */
1473 dmu_buf_add_ref(ds
->ds_dbuf
, ds
);
1475 /* if this dataset is encrypted, grab a reference to the DCK */
1476 if (ds
->ds_dir
->dd_crypto_obj
!= 0 &&
1477 !os
->os_raw_receive
&&
1478 !os
->os_next_write_raw
[tx
->tx_txg
& TXG_MASK
]) {
1479 ASSERT3P(ds
->ds_key_mapping
, !=, NULL
);
1480 key_mapping_add_ref(ds
->ds_key_mapping
, ds
);
1486 dsl_dataset_snapshot_reserve_space(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
1490 if (!dmu_tx_is_syncing(tx
))
1494 * If there's an fs-only reservation, any blocks that might become
1495 * owned by the snapshot dataset must be accommodated by space
1496 * outside of the reservation.
1498 ASSERT(ds
->ds_reserved
== 0 || DS_UNIQUE_IS_ACCURATE(ds
));
1499 asize
= MIN(dsl_dataset_phys(ds
)->ds_unique_bytes
, ds
->ds_reserved
);
1500 if (asize
> dsl_dir_space_available(ds
->ds_dir
, NULL
, 0, TRUE
))
1501 return (SET_ERROR(ENOSPC
));
1504 * Propagate any reserved space for this snapshot to other
1505 * snapshot checks in this sync group.
1508 dsl_dir_willuse_space(ds
->ds_dir
, asize
, tx
);
1514 dsl_dataset_snapshot_check_impl(dsl_dataset_t
*ds
, const char *snapname
,
1515 dmu_tx_t
*tx
, boolean_t recv
, uint64_t cnt
, cred_t
*cr
, proc_t
*proc
)
1520 ds
->ds_trysnap_txg
= tx
->tx_txg
;
1522 if (!dmu_tx_is_syncing(tx
))
1526 * We don't allow multiple snapshots of the same txg. If there
1527 * is already one, try again.
1529 if (dsl_dataset_phys(ds
)->ds_prev_snap_txg
>= tx
->tx_txg
)
1530 return (SET_ERROR(EAGAIN
));
1533 * Check for conflicting snapshot name.
1535 error
= dsl_dataset_snap_lookup(ds
, snapname
, &value
);
1537 return (SET_ERROR(EEXIST
));
1538 if (error
!= ENOENT
)
1542 * We don't allow taking snapshots of inconsistent datasets, such as
1543 * those into which we are currently receiving. However, if we are
1544 * creating this snapshot as part of a receive, this check will be
1545 * executed atomically with respect to the completion of the receive
1546 * itself but prior to the clearing of DS_FLAG_INCONSISTENT; in this
1547 * case we ignore this, knowing it will be fixed up for us shortly in
1548 * dmu_recv_end_sync().
1550 if (!recv
&& DS_IS_INCONSISTENT(ds
))
1551 return (SET_ERROR(EBUSY
));
1554 * Skip the check for temporary snapshots or if we have already checked
1555 * the counts in dsl_dataset_snapshot_check. This means we really only
1556 * check the count here when we're receiving a stream.
1558 if (cnt
!= 0 && cr
!= NULL
) {
1559 error
= dsl_fs_ss_limit_check(ds
->ds_dir
, cnt
,
1560 ZFS_PROP_SNAPSHOT_LIMIT
, NULL
, cr
, proc
);
1565 error
= dsl_dataset_snapshot_reserve_space(ds
, tx
);
1573 dsl_dataset_snapshot_check(void *arg
, dmu_tx_t
*tx
)
1575 dsl_dataset_snapshot_arg_t
*ddsa
= arg
;
1576 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
1581 * Pre-compute how many total new snapshots will be created for each
1582 * level in the tree and below. This is needed for validating the
1583 * snapshot limit when either taking a recursive snapshot or when
1584 * taking multiple snapshots.
1586 * The problem is that the counts are not actually adjusted when
1587 * we are checking, only when we finally sync. For a single snapshot,
1588 * this is easy, the count will increase by 1 at each node up the tree,
1589 * but its more complicated for the recursive/multiple snapshot case.
1591 * The dsl_fs_ss_limit_check function does recursively check the count
1592 * at each level up the tree but since it is validating each snapshot
1593 * independently we need to be sure that we are validating the complete
1594 * count for the entire set of snapshots. We do this by rolling up the
1595 * counts for each component of the name into an nvlist and then
1596 * checking each of those cases with the aggregated count.
1598 * This approach properly handles not only the recursive snapshot
1599 * case (where we get all of those on the ddsa_snaps list) but also
1600 * the sibling case (e.g. snapshot a/b and a/c so that we will also
1601 * validate the limit on 'a' using a count of 2).
1603 * We validate the snapshot names in the third loop and only report
1606 if (dmu_tx_is_syncing(tx
)) {
1608 nvlist_t
*cnt_track
= NULL
;
1609 cnt_track
= fnvlist_alloc();
1611 nm
= kmem_alloc(MAXPATHLEN
, KM_SLEEP
);
1613 /* Rollup aggregated counts into the cnt_track list */
1614 for (pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, NULL
);
1616 pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, pair
)) {
1620 (void) strlcpy(nm
, nvpair_name(pair
), MAXPATHLEN
);
1621 pdelim
= strchr(nm
, '@');
1627 if (nvlist_lookup_uint64(cnt_track
, nm
,
1629 /* update existing entry */
1630 fnvlist_add_uint64(cnt_track
, nm
,
1634 fnvlist_add_uint64(cnt_track
, nm
, 1);
1637 pdelim
= strrchr(nm
, '/');
1640 } while (pdelim
!= NULL
);
1643 kmem_free(nm
, MAXPATHLEN
);
1645 /* Check aggregated counts at each level */
1646 for (pair
= nvlist_next_nvpair(cnt_track
, NULL
);
1647 pair
!= NULL
; pair
= nvlist_next_nvpair(cnt_track
, pair
)) {
1653 name
= nvpair_name(pair
);
1654 cnt
= fnvpair_value_uint64(pair
);
1657 error
= dsl_dataset_hold(dp
, name
, FTAG
, &ds
);
1659 error
= dsl_fs_ss_limit_check(ds
->ds_dir
, cnt
,
1660 ZFS_PROP_SNAPSHOT_LIMIT
, NULL
,
1661 ddsa
->ddsa_cr
, ddsa
->ddsa_proc
);
1662 dsl_dataset_rele(ds
, FTAG
);
1666 if (ddsa
->ddsa_errors
!= NULL
)
1667 fnvlist_add_int32(ddsa
->ddsa_errors
,
1670 /* only report one error for this check */
1674 nvlist_free(cnt_track
);
1677 for (pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, NULL
);
1678 pair
!= NULL
; pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, pair
)) {
1681 const char *name
, *atp
= NULL
;
1682 char dsname
[ZFS_MAX_DATASET_NAME_LEN
];
1684 name
= nvpair_name(pair
);
1685 if (strlen(name
) >= ZFS_MAX_DATASET_NAME_LEN
)
1686 error
= SET_ERROR(ENAMETOOLONG
);
1688 atp
= strchr(name
, '@');
1690 error
= SET_ERROR(EINVAL
);
1692 (void) strlcpy(dsname
, name
, atp
- name
+ 1);
1695 error
= dsl_dataset_hold(dp
, dsname
, FTAG
, &ds
);
1697 /* passing 0/NULL skips dsl_fs_ss_limit_check */
1698 error
= dsl_dataset_snapshot_check_impl(ds
,
1699 atp
+ 1, tx
, B_FALSE
, 0, NULL
, NULL
);
1700 dsl_dataset_rele(ds
, FTAG
);
1704 if (ddsa
->ddsa_errors
!= NULL
) {
1705 fnvlist_add_int32(ddsa
->ddsa_errors
,
1716 dsl_dataset_snapshot_sync_impl(dsl_dataset_t
*ds
, const char *snapname
,
1719 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
1721 dsl_dataset_phys_t
*dsphys
;
1722 uint64_t dsobj
, crtxg
;
1723 objset_t
*mos
= dp
->dp_meta_objset
;
1724 objset_t
*os __maybe_unused
;
1726 ASSERT(RRW_WRITE_HELD(&dp
->dp_config_rwlock
));
1729 * If we are on an old pool, the zil must not be active, in which
1730 * case it will be zeroed. Usually zil_suspend() accomplishes this.
1732 ASSERT(spa_version(dmu_tx_pool(tx
)->dp_spa
) >= SPA_VERSION_FAST_SNAP
||
1733 dmu_objset_from_ds(ds
, &os
) != 0 ||
1734 memcmp(&os
->os_phys
->os_zil_header
, &zero_zil
,
1735 sizeof (zero_zil
)) == 0);
1737 /* Should not snapshot a dirty dataset. */
1738 ASSERT(!txg_list_member(&ds
->ds_dir
->dd_pool
->dp_dirty_datasets
,
1741 dsl_fs_ss_count_adjust(ds
->ds_dir
, 1, DD_FIELD_SNAPSHOT_COUNT
, tx
);
1744 * The origin's ds_creation_txg has to be < TXG_INITIAL
1746 if (strcmp(snapname
, ORIGIN_DIR_NAME
) == 0)
1751 dsobj
= dmu_object_alloc(mos
, DMU_OT_DSL_DATASET
, 0,
1752 DMU_OT_DSL_DATASET
, sizeof (dsl_dataset_phys_t
), tx
);
1753 VERIFY0(dmu_bonus_hold(mos
, dsobj
, FTAG
, &dbuf
));
1754 dmu_buf_will_dirty(dbuf
, tx
);
1755 dsphys
= dbuf
->db_data
;
1756 memset(dsphys
, 0, sizeof (dsl_dataset_phys_t
));
1757 dsphys
->ds_dir_obj
= ds
->ds_dir
->dd_object
;
1758 dsphys
->ds_fsid_guid
= unique_create();
1759 (void) random_get_pseudo_bytes((void*)&dsphys
->ds_guid
,
1760 sizeof (dsphys
->ds_guid
));
1761 dsphys
->ds_prev_snap_obj
= dsl_dataset_phys(ds
)->ds_prev_snap_obj
;
1762 dsphys
->ds_prev_snap_txg
= dsl_dataset_phys(ds
)->ds_prev_snap_txg
;
1763 dsphys
->ds_next_snap_obj
= ds
->ds_object
;
1764 dsphys
->ds_num_children
= 1;
1765 dsphys
->ds_creation_time
= gethrestime_sec();
1766 dsphys
->ds_creation_txg
= crtxg
;
1767 dsphys
->ds_deadlist_obj
= dsl_dataset_phys(ds
)->ds_deadlist_obj
;
1768 dsphys
->ds_referenced_bytes
= dsl_dataset_phys(ds
)->ds_referenced_bytes
;
1769 dsphys
->ds_compressed_bytes
= dsl_dataset_phys(ds
)->ds_compressed_bytes
;
1770 dsphys
->ds_uncompressed_bytes
=
1771 dsl_dataset_phys(ds
)->ds_uncompressed_bytes
;
1772 dsphys
->ds_flags
= dsl_dataset_phys(ds
)->ds_flags
;
1773 rrw_enter(&ds
->ds_bp_rwlock
, RW_READER
, FTAG
);
1774 dsphys
->ds_bp
= dsl_dataset_phys(ds
)->ds_bp
;
1775 rrw_exit(&ds
->ds_bp_rwlock
, FTAG
);
1776 dmu_buf_rele(dbuf
, FTAG
);
1778 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
1779 if (zfeature_active(f
, ds
->ds_feature
[f
])) {
1780 dsl_dataset_activate_feature(dsobj
, f
,
1781 ds
->ds_feature
[f
], tx
);
1785 ASSERT3U(ds
->ds_prev
!= 0, ==,
1786 dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0);
1788 uint64_t next_clones_obj
=
1789 dsl_dataset_phys(ds
->ds_prev
)->ds_next_clones_obj
;
1790 ASSERT(dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
==
1792 dsl_dataset_phys(ds
->ds_prev
)->ds_num_children
> 1);
1793 if (dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
==
1795 dmu_buf_will_dirty(ds
->ds_prev
->ds_dbuf
, tx
);
1796 ASSERT3U(dsl_dataset_phys(ds
)->ds_prev_snap_txg
, ==,
1797 dsl_dataset_phys(ds
->ds_prev
)->ds_creation_txg
);
1798 dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
= dsobj
;
1799 } else if (next_clones_obj
!= 0) {
1800 dsl_dataset_remove_from_next_clones(ds
->ds_prev
,
1801 dsphys
->ds_next_snap_obj
, tx
);
1802 VERIFY0(zap_add_int(mos
,
1803 next_clones_obj
, dsobj
, tx
));
1808 * If we have a reference-reservation on this dataset, we will
1809 * need to increase the amount of refreservation being charged
1810 * since our unique space is going to zero.
1812 if (ds
->ds_reserved
) {
1814 ASSERT(DS_UNIQUE_IS_ACCURATE(ds
));
1815 delta
= MIN(dsl_dataset_phys(ds
)->ds_unique_bytes
,
1817 dsl_dir_diduse_space(ds
->ds_dir
, DD_USED_REFRSRV
,
1821 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
1822 dsl_dataset_phys(ds
)->ds_deadlist_obj
=
1823 dsl_deadlist_clone(&ds
->ds_deadlist
, UINT64_MAX
,
1824 dsl_dataset_phys(ds
)->ds_prev_snap_obj
, tx
);
1825 dsl_deadlist_close(&ds
->ds_deadlist
);
1826 dsl_deadlist_open(&ds
->ds_deadlist
, mos
,
1827 dsl_dataset_phys(ds
)->ds_deadlist_obj
);
1828 dsl_deadlist_add_key(&ds
->ds_deadlist
,
1829 dsl_dataset_phys(ds
)->ds_prev_snap_txg
, tx
);
1830 dsl_bookmark_snapshotted(ds
, tx
);
1832 if (dsl_dataset_remap_deadlist_exists(ds
)) {
1833 uint64_t remap_deadlist_obj
=
1834 dsl_dataset_get_remap_deadlist_object(ds
);
1836 * Move the remap_deadlist to the snapshot. The head
1837 * will create a new remap deadlist on demand, from
1838 * dsl_dataset_block_remapped().
1840 dsl_dataset_unset_remap_deadlist_object(ds
, tx
);
1841 dsl_deadlist_close(&ds
->ds_remap_deadlist
);
1843 dmu_object_zapify(mos
, dsobj
, DMU_OT_DSL_DATASET
, tx
);
1844 VERIFY0(zap_add(mos
, dsobj
, DS_FIELD_REMAP_DEADLIST
,
1845 sizeof (remap_deadlist_obj
), 1, &remap_deadlist_obj
, tx
));
1849 * Create a ivset guid for this snapshot if the dataset is
1850 * encrypted. This may be overridden by a raw receive. A
1851 * previous implementation of this code did not have this
1852 * field as part of the on-disk format for ZFS encryption
1853 * (see errata #4). As part of the remediation for this
1854 * issue, we ask the user to enable the bookmark_v2 feature
1855 * which is now a dependency of the encryption feature. We
1856 * use this as a heuristic to determine when the user has
1857 * elected to correct any datasets created with the old code.
1858 * As a result, we only do this step if the bookmark_v2
1859 * feature is enabled, which limits the number of states a
1860 * given pool / dataset can be in with regards to terms of
1861 * correcting the issue.
1863 if (ds
->ds_dir
->dd_crypto_obj
!= 0 &&
1864 spa_feature_is_enabled(dp
->dp_spa
, SPA_FEATURE_BOOKMARK_V2
)) {
1865 uint64_t ivset_guid
= unique_create();
1867 dmu_object_zapify(mos
, dsobj
, DMU_OT_DSL_DATASET
, tx
);
1868 VERIFY0(zap_add(mos
, dsobj
, DS_FIELD_IVSET_GUID
,
1869 sizeof (ivset_guid
), 1, &ivset_guid
, tx
));
1872 ASSERT3U(dsl_dataset_phys(ds
)->ds_prev_snap_txg
, <, tx
->tx_txg
);
1873 dsl_dataset_phys(ds
)->ds_prev_snap_obj
= dsobj
;
1874 dsl_dataset_phys(ds
)->ds_prev_snap_txg
= crtxg
;
1875 dsl_dataset_phys(ds
)->ds_unique_bytes
= 0;
1877 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_UNIQUE_ACCURATE
)
1878 dsl_dataset_phys(ds
)->ds_flags
|= DS_FLAG_UNIQUE_ACCURATE
;
1880 VERIFY0(zap_add(mos
, dsl_dataset_phys(ds
)->ds_snapnames_zapobj
,
1881 snapname
, 8, 1, &dsobj
, tx
));
1884 dsl_dataset_rele(ds
->ds_prev
, ds
);
1885 VERIFY0(dsl_dataset_hold_obj(dp
,
1886 dsl_dataset_phys(ds
)->ds_prev_snap_obj
, ds
, &ds
->ds_prev
));
1888 dsl_scan_ds_snapshotted(ds
, tx
);
1890 dsl_dir_snap_cmtime_update(ds
->ds_dir
, tx
);
1892 if (zfs_snapshot_history_enabled
)
1893 spa_history_log_internal_ds(ds
->ds_prev
, "snapshot", tx
, " ");
1897 dsl_dataset_snapshot_sync(void *arg
, dmu_tx_t
*tx
)
1899 dsl_dataset_snapshot_arg_t
*ddsa
= arg
;
1900 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
1903 for (pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, NULL
);
1904 pair
!= NULL
; pair
= nvlist_next_nvpair(ddsa
->ddsa_snaps
, pair
)) {
1906 const char *name
, *atp
;
1907 char dsname
[ZFS_MAX_DATASET_NAME_LEN
];
1909 name
= nvpair_name(pair
);
1910 atp
= strchr(name
, '@');
1911 (void) strlcpy(dsname
, name
, atp
- name
+ 1);
1912 VERIFY0(dsl_dataset_hold(dp
, dsname
, FTAG
, &ds
));
1914 dsl_dataset_snapshot_sync_impl(ds
, atp
+ 1, tx
);
1915 if (ddsa
->ddsa_props
!= NULL
) {
1916 dsl_props_set_sync_impl(ds
->ds_prev
,
1917 ZPROP_SRC_LOCAL
, ddsa
->ddsa_props
, tx
);
1919 dsl_dataset_rele(ds
, FTAG
);
1924 * The snapshots must all be in the same pool.
1925 * All-or-nothing: if there are any failures, nothing will be modified.
1928 dsl_dataset_snapshot(nvlist_t
*snaps
, nvlist_t
*props
, nvlist_t
*errors
)
1930 dsl_dataset_snapshot_arg_t ddsa
;
1932 boolean_t needsuspend
;
1935 const char *firstname
;
1936 nvlist_t
*suspended
= NULL
;
1938 pair
= nvlist_next_nvpair(snaps
, NULL
);
1941 firstname
= nvpair_name(pair
);
1943 error
= spa_open(firstname
, &spa
, FTAG
);
1946 needsuspend
= (spa_version(spa
) < SPA_VERSION_FAST_SNAP
);
1947 spa_close(spa
, FTAG
);
1950 suspended
= fnvlist_alloc();
1951 for (pair
= nvlist_next_nvpair(snaps
, NULL
); pair
!= NULL
;
1952 pair
= nvlist_next_nvpair(snaps
, pair
)) {
1953 char fsname
[ZFS_MAX_DATASET_NAME_LEN
];
1954 const char *snapname
= nvpair_name(pair
);
1958 atp
= strchr(snapname
, '@');
1960 error
= SET_ERROR(EINVAL
);
1963 (void) strlcpy(fsname
, snapname
, atp
- snapname
+ 1);
1965 error
= zil_suspend(fsname
, &cookie
);
1968 fnvlist_add_uint64(suspended
, fsname
,
1973 ddsa
.ddsa_snaps
= snaps
;
1974 ddsa
.ddsa_props
= props
;
1975 ddsa
.ddsa_errors
= errors
;
1976 ddsa
.ddsa_cr
= CRED();
1977 ddsa
.ddsa_proc
= curproc
;
1980 error
= dsl_sync_task(firstname
, dsl_dataset_snapshot_check
,
1981 dsl_dataset_snapshot_sync
, &ddsa
,
1982 fnvlist_num_pairs(snaps
) * 3, ZFS_SPACE_CHECK_NORMAL
);
1985 if (suspended
!= NULL
) {
1986 for (pair
= nvlist_next_nvpair(suspended
, NULL
); pair
!= NULL
;
1987 pair
= nvlist_next_nvpair(suspended
, pair
)) {
1988 zil_resume((void *)(uintptr_t)
1989 fnvpair_value_uint64(pair
));
1991 fnvlist_free(suspended
);
1995 for (pair
= nvlist_next_nvpair(snaps
, NULL
); pair
!= NULL
;
1996 pair
= nvlist_next_nvpair(snaps
, pair
)) {
1997 zvol_create_minor(nvpair_name(pair
));
2004 typedef struct dsl_dataset_snapshot_tmp_arg
{
2005 const char *ddsta_fsname
;
2006 const char *ddsta_snapname
;
2007 minor_t ddsta_cleanup_minor
;
2008 const char *ddsta_htag
;
2009 } dsl_dataset_snapshot_tmp_arg_t
;
2012 dsl_dataset_snapshot_tmp_check(void *arg
, dmu_tx_t
*tx
)
2014 dsl_dataset_snapshot_tmp_arg_t
*ddsta
= arg
;
2015 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
2019 error
= dsl_dataset_hold(dp
, ddsta
->ddsta_fsname
, FTAG
, &ds
);
2023 /* NULL cred means no limit check for tmp snapshot */
2024 error
= dsl_dataset_snapshot_check_impl(ds
, ddsta
->ddsta_snapname
,
2025 tx
, B_FALSE
, 0, NULL
, NULL
);
2027 dsl_dataset_rele(ds
, FTAG
);
2031 if (spa_version(dp
->dp_spa
) < SPA_VERSION_USERREFS
) {
2032 dsl_dataset_rele(ds
, FTAG
);
2033 return (SET_ERROR(ENOTSUP
));
2035 error
= dsl_dataset_user_hold_check_one(NULL
, ddsta
->ddsta_htag
,
2038 dsl_dataset_rele(ds
, FTAG
);
2042 dsl_dataset_rele(ds
, FTAG
);
2047 dsl_dataset_snapshot_tmp_sync(void *arg
, dmu_tx_t
*tx
)
2049 dsl_dataset_snapshot_tmp_arg_t
*ddsta
= arg
;
2050 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
2051 dsl_dataset_t
*ds
= NULL
;
2053 VERIFY0(dsl_dataset_hold(dp
, ddsta
->ddsta_fsname
, FTAG
, &ds
));
2055 dsl_dataset_snapshot_sync_impl(ds
, ddsta
->ddsta_snapname
, tx
);
2056 dsl_dataset_user_hold_sync_one(ds
->ds_prev
, ddsta
->ddsta_htag
,
2057 ddsta
->ddsta_cleanup_minor
, gethrestime_sec(), tx
);
2058 dsl_destroy_snapshot_sync_impl(ds
->ds_prev
, B_TRUE
, tx
);
2060 dsl_dataset_rele(ds
, FTAG
);
2064 dsl_dataset_snapshot_tmp(const char *fsname
, const char *snapname
,
2065 minor_t cleanup_minor
, const char *htag
)
2067 dsl_dataset_snapshot_tmp_arg_t ddsta
;
2070 boolean_t needsuspend
;
2073 ddsta
.ddsta_fsname
= fsname
;
2074 ddsta
.ddsta_snapname
= snapname
;
2075 ddsta
.ddsta_cleanup_minor
= cleanup_minor
;
2076 ddsta
.ddsta_htag
= htag
;
2078 error
= spa_open(fsname
, &spa
, FTAG
);
2081 needsuspend
= (spa_version(spa
) < SPA_VERSION_FAST_SNAP
);
2082 spa_close(spa
, FTAG
);
2085 error
= zil_suspend(fsname
, &cookie
);
2090 error
= dsl_sync_task(fsname
, dsl_dataset_snapshot_tmp_check
,
2091 dsl_dataset_snapshot_tmp_sync
, &ddsta
, 3, ZFS_SPACE_CHECK_RESERVED
);
2098 /* Nonblocking dataset sync. Assumes dataset:objset is always 1:1 */
2100 dsl_dataset_sync(dsl_dataset_t
*ds
, zio_t
*rio
, dmu_tx_t
*tx
)
2102 ASSERT(dmu_tx_is_syncing(tx
));
2103 ASSERT(ds
->ds_objset
!= NULL
);
2104 ASSERT(dsl_dataset_phys(ds
)->ds_next_snap_obj
== 0);
2107 * in case we had to change ds_fsid_guid when we opened it,
2110 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
2111 dsl_dataset_phys(ds
)->ds_fsid_guid
= ds
->ds_fsid_guid
;
2113 if (ds
->ds_resume_bytes
[tx
->tx_txg
& TXG_MASK
] != 0) {
2114 VERIFY0(zap_update(tx
->tx_pool
->dp_meta_objset
,
2115 ds
->ds_object
, DS_FIELD_RESUME_OBJECT
, 8, 1,
2116 &ds
->ds_resume_object
[tx
->tx_txg
& TXG_MASK
], tx
));
2117 VERIFY0(zap_update(tx
->tx_pool
->dp_meta_objset
,
2118 ds
->ds_object
, DS_FIELD_RESUME_OFFSET
, 8, 1,
2119 &ds
->ds_resume_offset
[tx
->tx_txg
& TXG_MASK
], tx
));
2120 VERIFY0(zap_update(tx
->tx_pool
->dp_meta_objset
,
2121 ds
->ds_object
, DS_FIELD_RESUME_BYTES
, 8, 1,
2122 &ds
->ds_resume_bytes
[tx
->tx_txg
& TXG_MASK
], tx
));
2123 ds
->ds_resume_object
[tx
->tx_txg
& TXG_MASK
] = 0;
2124 ds
->ds_resume_offset
[tx
->tx_txg
& TXG_MASK
] = 0;
2125 ds
->ds_resume_bytes
[tx
->tx_txg
& TXG_MASK
] = 0;
2128 dmu_objset_sync(ds
->ds_objset
, rio
, tx
);
2132 * Check if the percentage of blocks shared between the clone and the
2133 * snapshot (as opposed to those that are clone only) is below a certain
2137 dsl_livelist_should_disable(dsl_dataset_t
*ds
)
2139 uint64_t used
, referenced
;
2142 used
= dsl_dir_get_usedds(ds
->ds_dir
);
2143 referenced
= dsl_get_referenced(ds
);
2144 if (referenced
== 0)
2146 percent_shared
= (100 * (referenced
- used
)) / referenced
;
2147 if (percent_shared
<= zfs_livelist_min_percent_shared
)
2153 * Check if it is possible to combine two livelist entries into one.
2154 * This is the case if the combined number of 'live' blkptrs (ALLOCs that
2155 * don't have a matching FREE) is under the maximum sublist size.
2156 * We check this by subtracting twice the total number of frees from the total
2157 * number of blkptrs. FREEs are counted twice because each FREE blkptr
2158 * will cancel out an ALLOC blkptr when the livelist is processed.
2161 dsl_livelist_should_condense(dsl_deadlist_entry_t
*first
,
2162 dsl_deadlist_entry_t
*next
)
2164 uint64_t total_free
= first
->dle_bpobj
.bpo_phys
->bpo_num_freed
+
2165 next
->dle_bpobj
.bpo_phys
->bpo_num_freed
;
2166 uint64_t total_entries
= first
->dle_bpobj
.bpo_phys
->bpo_num_blkptrs
+
2167 next
->dle_bpobj
.bpo_phys
->bpo_num_blkptrs
;
2168 if ((total_entries
- (2 * total_free
)) < zfs_livelist_max_entries
)
2173 typedef struct try_condense_arg
{
2176 } try_condense_arg_t
;
2179 * Iterate over the livelist entries, searching for a pair to condense.
2180 * A nonzero return value means stop, 0 means keep looking.
2183 dsl_livelist_try_condense(void *arg
, dsl_deadlist_entry_t
*first
)
2185 try_condense_arg_t
*tca
= arg
;
2186 spa_t
*spa
= tca
->spa
;
2187 dsl_dataset_t
*ds
= tca
->ds
;
2188 dsl_deadlist_t
*ll
= &ds
->ds_dir
->dd_livelist
;
2189 dsl_deadlist_entry_t
*next
;
2191 /* The condense thread has not yet been created at import */
2192 if (spa
->spa_livelist_condense_zthr
== NULL
)
2195 /* A condense is already in progress */
2196 if (spa
->spa_to_condense
.ds
!= NULL
)
2199 next
= AVL_NEXT(&ll
->dl_tree
, &first
->dle_node
);
2200 /* The livelist has only one entry - don't condense it */
2204 /* Next is the newest entry - don't condense it */
2205 if (AVL_NEXT(&ll
->dl_tree
, &next
->dle_node
) == NULL
)
2208 /* This pair is not ready to condense but keep looking */
2209 if (!dsl_livelist_should_condense(first
, next
))
2213 * Add a ref to prevent the dataset from being evicted while
2214 * the condense zthr or synctask are running. Ref will be
2215 * released at the end of the condense synctask
2217 dmu_buf_add_ref(ds
->ds_dbuf
, spa
);
2219 spa
->spa_to_condense
.ds
= ds
;
2220 spa
->spa_to_condense
.first
= first
;
2221 spa
->spa_to_condense
.next
= next
;
2222 spa
->spa_to_condense
.syncing
= B_FALSE
;
2223 spa
->spa_to_condense
.cancelled
= B_FALSE
;
2225 zthr_wakeup(spa
->spa_livelist_condense_zthr
);
2230 dsl_flush_pending_livelist(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
2232 dsl_dir_t
*dd
= ds
->ds_dir
;
2233 spa_t
*spa
= ds
->ds_dir
->dd_pool
->dp_spa
;
2234 dsl_deadlist_entry_t
*last
= dsl_deadlist_last(&dd
->dd_livelist
);
2236 /* Check if we need to add a new sub-livelist */
2238 /* The livelist is empty */
2239 dsl_deadlist_add_key(&dd
->dd_livelist
,
2240 tx
->tx_txg
- 1, tx
);
2241 } else if (spa_sync_pass(spa
) == 1) {
2243 * Check if the newest entry is full. If it is, make a new one.
2244 * We only do this once per sync because we could overfill a
2245 * sublist in one sync pass and don't want to add another entry
2246 * for a txg that is already represented. This ensures that
2247 * blkptrs born in the same txg are stored in the same sublist.
2249 bpobj_t bpobj
= last
->dle_bpobj
;
2250 uint64_t all
= bpobj
.bpo_phys
->bpo_num_blkptrs
;
2251 uint64_t free
= bpobj
.bpo_phys
->bpo_num_freed
;
2252 uint64_t alloc
= all
- free
;
2253 if (alloc
> zfs_livelist_max_entries
) {
2254 dsl_deadlist_add_key(&dd
->dd_livelist
,
2255 tx
->tx_txg
- 1, tx
);
2259 /* Insert each entry into the on-disk livelist */
2260 bplist_iterate(&dd
->dd_pending_allocs
,
2261 dsl_deadlist_insert_alloc_cb
, &dd
->dd_livelist
, tx
);
2262 bplist_iterate(&dd
->dd_pending_frees
,
2263 dsl_deadlist_insert_free_cb
, &dd
->dd_livelist
, tx
);
2265 /* Attempt to condense every pair of adjacent entries */
2266 try_condense_arg_t arg
= {
2270 dsl_deadlist_iterate(&dd
->dd_livelist
, dsl_livelist_try_condense
,
2275 dsl_dataset_sync_done(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
2277 objset_t
*os
= ds
->ds_objset
;
2279 bplist_iterate(&ds
->ds_pending_deadlist
,
2280 dsl_deadlist_insert_alloc_cb
, &ds
->ds_deadlist
, tx
);
2282 if (dsl_deadlist_is_open(&ds
->ds_dir
->dd_livelist
)) {
2283 dsl_flush_pending_livelist(ds
, tx
);
2284 if (dsl_livelist_should_disable(ds
)) {
2285 dsl_dir_remove_livelist(ds
->ds_dir
, tx
, B_TRUE
);
2289 dsl_bookmark_sync_done(ds
, tx
);
2291 multilist_destroy(&os
->os_synced_dnodes
);
2293 if (os
->os_encrypted
)
2294 os
->os_next_write_raw
[tx
->tx_txg
& TXG_MASK
] = B_FALSE
;
2296 ASSERT0(os
->os_next_write_raw
[tx
->tx_txg
& TXG_MASK
]);
2298 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
2299 if (zfeature_active(f
,
2300 ds
->ds_feature_activation
[f
])) {
2301 if (zfeature_active(f
, ds
->ds_feature
[f
]))
2303 dsl_dataset_activate_feature(ds
->ds_object
, f
,
2304 ds
->ds_feature_activation
[f
], tx
);
2305 ds
->ds_feature
[f
] = ds
->ds_feature_activation
[f
];
2309 ASSERT(!dmu_objset_is_dirty(os
, dmu_tx_get_txg(tx
)));
2313 get_clones_stat_impl(dsl_dataset_t
*ds
, nvlist_t
*val
)
2316 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
2318 zap_attribute_t
*za
;
2320 ASSERT(dsl_pool_config_held(ds
->ds_dir
->dd_pool
));
2323 * There may be missing entries in ds_next_clones_obj
2324 * due to a bug in a previous version of the code.
2325 * Only trust it if it has the right number of entries.
2327 if (dsl_dataset_phys(ds
)->ds_next_clones_obj
!= 0) {
2328 VERIFY0(zap_count(mos
, dsl_dataset_phys(ds
)->ds_next_clones_obj
,
2331 if (count
!= dsl_dataset_phys(ds
)->ds_num_children
- 1) {
2332 return (SET_ERROR(ENOENT
));
2335 za
= zap_attribute_alloc();
2336 for (zap_cursor_init(&zc
, mos
,
2337 dsl_dataset_phys(ds
)->ds_next_clones_obj
);
2338 zap_cursor_retrieve(&zc
, za
) == 0;
2339 zap_cursor_advance(&zc
)) {
2340 dsl_dataset_t
*clone
;
2341 char buf
[ZFS_MAX_DATASET_NAME_LEN
];
2342 VERIFY0(dsl_dataset_hold_obj(ds
->ds_dir
->dd_pool
,
2343 za
->za_first_integer
, FTAG
, &clone
));
2344 dsl_dir_name(clone
->ds_dir
, buf
);
2345 fnvlist_add_boolean(val
, buf
);
2346 dsl_dataset_rele(clone
, FTAG
);
2348 zap_cursor_fini(&zc
);
2349 zap_attribute_free(za
);
2354 get_clones_stat(dsl_dataset_t
*ds
, nvlist_t
*nv
)
2356 nvlist_t
*propval
= fnvlist_alloc();
2357 nvlist_t
*val
= fnvlist_alloc();
2359 if (get_clones_stat_impl(ds
, val
) == 0) {
2360 fnvlist_add_nvlist(propval
, ZPROP_VALUE
, val
);
2361 fnvlist_add_nvlist(nv
, zfs_prop_to_name(ZFS_PROP_CLONES
),
2366 nvlist_free(propval
);
2370 get_receive_resume_token_impl(dsl_dataset_t
*ds
)
2372 if (!dsl_dataset_has_resume_receive_state(ds
))
2375 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2378 uint8_t *compressed
;
2380 nvlist_t
*token_nv
= fnvlist_alloc();
2381 size_t packed_size
, compressed_size
;
2383 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
2384 DS_FIELD_RESUME_FROMGUID
, sizeof (val
), 1, &val
) == 0) {
2385 fnvlist_add_uint64(token_nv
, "fromguid", val
);
2387 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
2388 DS_FIELD_RESUME_OBJECT
, sizeof (val
), 1, &val
) == 0) {
2389 fnvlist_add_uint64(token_nv
, "object", val
);
2391 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
2392 DS_FIELD_RESUME_OFFSET
, sizeof (val
), 1, &val
) == 0) {
2393 fnvlist_add_uint64(token_nv
, "offset", val
);
2395 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
2396 DS_FIELD_RESUME_BYTES
, sizeof (val
), 1, &val
) == 0) {
2397 fnvlist_add_uint64(token_nv
, "bytes", val
);
2399 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
2400 DS_FIELD_RESUME_TOGUID
, sizeof (val
), 1, &val
) == 0) {
2401 fnvlist_add_uint64(token_nv
, "toguid", val
);
2403 char buf
[MAXNAMELEN
];
2404 if (zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
2405 DS_FIELD_RESUME_TONAME
, 1, sizeof (buf
), buf
) == 0) {
2406 fnvlist_add_string(token_nv
, "toname", buf
);
2408 if (zap_contains(dp
->dp_meta_objset
, ds
->ds_object
,
2409 DS_FIELD_RESUME_LARGEBLOCK
) == 0) {
2410 fnvlist_add_boolean(token_nv
, "largeblockok");
2412 if (zap_contains(dp
->dp_meta_objset
, ds
->ds_object
,
2413 DS_FIELD_RESUME_EMBEDOK
) == 0) {
2414 fnvlist_add_boolean(token_nv
, "embedok");
2416 if (zap_contains(dp
->dp_meta_objset
, ds
->ds_object
,
2417 DS_FIELD_RESUME_COMPRESSOK
) == 0) {
2418 fnvlist_add_boolean(token_nv
, "compressok");
2420 if (zap_contains(dp
->dp_meta_objset
, ds
->ds_object
,
2421 DS_FIELD_RESUME_RAWOK
) == 0) {
2422 fnvlist_add_boolean(token_nv
, "rawok");
2424 if (dsl_dataset_feature_is_active(ds
,
2425 SPA_FEATURE_REDACTED_DATASETS
)) {
2426 uint64_t num_redact_snaps
= 0;
2427 uint64_t *redact_snaps
= NULL
;
2428 VERIFY3B(dsl_dataset_get_uint64_array_feature(ds
,
2429 SPA_FEATURE_REDACTED_DATASETS
, &num_redact_snaps
,
2430 &redact_snaps
), ==, B_TRUE
);
2431 fnvlist_add_uint64_array(token_nv
, "redact_snaps",
2432 redact_snaps
, num_redact_snaps
);
2434 if (zap_contains(dp
->dp_meta_objset
, ds
->ds_object
,
2435 DS_FIELD_RESUME_REDACT_BOOKMARK_SNAPS
) == 0) {
2436 uint64_t num_redact_snaps
= 0, int_size
= 0;
2437 uint64_t *redact_snaps
= NULL
;
2438 VERIFY0(zap_length(dp
->dp_meta_objset
, ds
->ds_object
,
2439 DS_FIELD_RESUME_REDACT_BOOKMARK_SNAPS
, &int_size
,
2440 &num_redact_snaps
));
2441 ASSERT3U(int_size
, ==, sizeof (uint64_t));
2443 redact_snaps
= kmem_alloc(int_size
* num_redact_snaps
,
2445 VERIFY0(zap_lookup(dp
->dp_meta_objset
, ds
->ds_object
,
2446 DS_FIELD_RESUME_REDACT_BOOKMARK_SNAPS
, int_size
,
2447 num_redact_snaps
, redact_snaps
));
2448 fnvlist_add_uint64_array(token_nv
, "book_redact_snaps",
2449 redact_snaps
, num_redact_snaps
);
2450 kmem_free(redact_snaps
, int_size
* num_redact_snaps
);
2452 packed
= fnvlist_pack(token_nv
, &packed_size
);
2453 fnvlist_free(token_nv
);
2454 compressed
= kmem_alloc(packed_size
, KM_SLEEP
);
2456 /* Call compress function directly to avoid hole detection. */
2458 abd_get_from_buf_struct(&pabd
, packed
, packed_size
);
2459 abd_get_from_buf_struct(&cabd
, compressed
, packed_size
);
2460 compressed_size
= zfs_gzip_compress(&pabd
, &cabd
,
2461 packed_size
, packed_size
, 6);
2466 fletcher_4_native_varsize(compressed
, compressed_size
, &cksum
);
2468 size_t alloc_size
= compressed_size
* 2 + 1;
2469 str
= kmem_alloc(alloc_size
, KM_SLEEP
);
2470 for (int i
= 0; i
< compressed_size
; i
++) {
2471 size_t offset
= i
* 2;
2472 (void) snprintf(str
+ offset
, alloc_size
- offset
,
2473 "%02x", compressed
[i
]);
2475 str
[compressed_size
* 2] = '\0';
2476 char *propval
= kmem_asprintf("%u-%llx-%llx-%s",
2477 ZFS_SEND_RESUME_TOKEN_VERSION
,
2478 (longlong_t
)cksum
.zc_word
[0],
2479 (longlong_t
)packed_size
, str
);
2480 kmem_free(packed
, packed_size
);
2481 kmem_free(str
, alloc_size
);
2482 kmem_free(compressed
, packed_size
);
2487 * Returns a string that represents the receive resume state token. It should
2488 * be freed with strfree(). NULL is returned if no resume state is present.
2491 get_receive_resume_token(dsl_dataset_t
*ds
)
2494 * A failed "newfs" (e.g. full) resumable receive leaves
2495 * the stats set on this dataset. Check here for the prop.
2497 char *token
= get_receive_resume_token_impl(ds
);
2501 * A failed incremental resumable receive leaves the
2502 * stats set on our child named "%recv". Check the child
2505 /* 6 extra bytes for /%recv */
2506 char name
[ZFS_MAX_DATASET_NAME_LEN
+ 6];
2507 dsl_dataset_t
*recv_ds
;
2508 dsl_dataset_name(ds
, name
);
2509 if (strlcat(name
, "/", sizeof (name
)) < sizeof (name
) &&
2510 strlcat(name
, recv_clone_name
, sizeof (name
)) < sizeof (name
) &&
2511 dsl_dataset_hold(ds
->ds_dir
->dd_pool
, name
, FTAG
, &recv_ds
) == 0) {
2512 token
= get_receive_resume_token_impl(recv_ds
);
2513 dsl_dataset_rele(recv_ds
, FTAG
);
2519 dsl_get_refratio(dsl_dataset_t
*ds
)
2521 uint64_t ratio
= dsl_dataset_phys(ds
)->ds_compressed_bytes
== 0 ? 100 :
2522 (dsl_dataset_phys(ds
)->ds_uncompressed_bytes
* 100 /
2523 dsl_dataset_phys(ds
)->ds_compressed_bytes
);
2528 dsl_get_logicalreferenced(dsl_dataset_t
*ds
)
2530 return (dsl_dataset_phys(ds
)->ds_uncompressed_bytes
);
2534 dsl_get_compressratio(dsl_dataset_t
*ds
)
2536 if (ds
->ds_is_snapshot
) {
2537 return (dsl_get_refratio(ds
));
2539 dsl_dir_t
*dd
= ds
->ds_dir
;
2540 mutex_enter(&dd
->dd_lock
);
2541 uint64_t val
= dsl_dir_get_compressratio(dd
);
2542 mutex_exit(&dd
->dd_lock
);
2548 dsl_get_used(dsl_dataset_t
*ds
)
2550 if (ds
->ds_is_snapshot
) {
2551 return (dsl_dataset_phys(ds
)->ds_unique_bytes
);
2553 dsl_dir_t
*dd
= ds
->ds_dir
;
2554 mutex_enter(&dd
->dd_lock
);
2555 uint64_t val
= dsl_dir_get_used(dd
);
2556 mutex_exit(&dd
->dd_lock
);
2562 dsl_get_creation(dsl_dataset_t
*ds
)
2564 return (dsl_dataset_phys(ds
)->ds_creation_time
);
2568 dsl_get_creationtxg(dsl_dataset_t
*ds
)
2570 return (dsl_dataset_phys(ds
)->ds_creation_txg
);
2574 dsl_get_refquota(dsl_dataset_t
*ds
)
2576 return (ds
->ds_quota
);
2580 dsl_get_refreservation(dsl_dataset_t
*ds
)
2582 return (ds
->ds_reserved
);
2586 dsl_get_guid(dsl_dataset_t
*ds
)
2588 return (dsl_dataset_phys(ds
)->ds_guid
);
2592 dsl_get_unique(dsl_dataset_t
*ds
)
2594 return (dsl_dataset_phys(ds
)->ds_unique_bytes
);
2598 dsl_get_objsetid(dsl_dataset_t
*ds
)
2600 return (ds
->ds_object
);
2604 dsl_get_userrefs(dsl_dataset_t
*ds
)
2606 return (ds
->ds_userrefs
);
2610 dsl_get_defer_destroy(dsl_dataset_t
*ds
)
2612 return (DS_IS_DEFER_DESTROY(ds
) ? 1 : 0);
2616 dsl_get_referenced(dsl_dataset_t
*ds
)
2618 return (dsl_dataset_phys(ds
)->ds_referenced_bytes
);
2622 dsl_get_numclones(dsl_dataset_t
*ds
)
2624 ASSERT(ds
->ds_is_snapshot
);
2625 return (dsl_dataset_phys(ds
)->ds_num_children
- 1);
2629 dsl_get_inconsistent(dsl_dataset_t
*ds
)
2631 return ((dsl_dataset_phys(ds
)->ds_flags
& DS_FLAG_INCONSISTENT
) ?
2636 dsl_get_redacted(dsl_dataset_t
*ds
)
2638 return (dsl_dataset_feature_is_active(ds
,
2639 SPA_FEATURE_REDACTED_DATASETS
));
2643 dsl_get_available(dsl_dataset_t
*ds
)
2645 uint64_t refdbytes
= dsl_get_referenced(ds
);
2646 uint64_t availbytes
= dsl_dir_space_available(ds
->ds_dir
,
2648 if (ds
->ds_reserved
> dsl_dataset_phys(ds
)->ds_unique_bytes
) {
2650 ds
->ds_reserved
- dsl_dataset_phys(ds
)->ds_unique_bytes
;
2652 if (ds
->ds_quota
!= 0) {
2654 * Adjust available bytes according to refquota
2656 if (refdbytes
< ds
->ds_quota
) {
2657 availbytes
= MIN(availbytes
,
2658 ds
->ds_quota
- refdbytes
);
2663 return (availbytes
);
2667 dsl_get_written(dsl_dataset_t
*ds
, uint64_t *written
)
2669 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2670 dsl_dataset_t
*prev
;
2671 int err
= dsl_dataset_hold_obj(dp
,
2672 dsl_dataset_phys(ds
)->ds_prev_snap_obj
, FTAG
, &prev
);
2674 uint64_t comp
, uncomp
;
2675 err
= dsl_dataset_space_written(prev
, ds
, written
,
2677 dsl_dataset_rele(prev
, FTAG
);
2683 * 'snap' should be a buffer of size ZFS_MAX_DATASET_NAME_LEN.
2686 dsl_get_prev_snap(dsl_dataset_t
*ds
, char *snap
)
2688 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2689 if (ds
->ds_prev
!= NULL
&& ds
->ds_prev
!= dp
->dp_origin_snap
) {
2690 dsl_dataset_name(ds
->ds_prev
, snap
);
2693 return (SET_ERROR(ENOENT
));
2698 dsl_get_redact_snaps(dsl_dataset_t
*ds
, nvlist_t
*propval
)
2702 if (dsl_dataset_get_uint64_array_feature(ds
,
2703 SPA_FEATURE_REDACTED_DATASETS
, &nsnaps
, &snaps
)) {
2704 fnvlist_add_uint64_array(propval
, ZPROP_VALUE
, snaps
,
2710 * Returns the mountpoint property and source for the given dataset in the value
2711 * and source buffers. The value buffer must be at least as large as MAXPATHLEN
2712 * and the source buffer as least as large a ZFS_MAX_DATASET_NAME_LEN.
2713 * Returns 0 on success and an error on failure.
2716 dsl_get_mountpoint(dsl_dataset_t
*ds
, const char *dsname
, char *value
,
2720 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
2722 /* Retrieve the mountpoint value stored in the zap object */
2723 error
= dsl_prop_get_ds(ds
, zfs_prop_to_name(ZFS_PROP_MOUNTPOINT
), 1,
2724 ZAP_MAXVALUELEN
, value
, source
);
2730 * Process the dsname and source to find the full mountpoint string.
2731 * Can be skipped for 'legacy' or 'none'.
2733 if (value
[0] == '/') {
2734 char *buf
= kmem_alloc(ZAP_MAXVALUELEN
, KM_SLEEP
);
2736 const char *relpath
;
2739 * If we inherit the mountpoint, even from a dataset
2740 * with a received value, the source will be the path of
2741 * the dataset we inherit from. If source is
2742 * ZPROP_SOURCE_VAL_RECVD, the received value is not
2745 if (strcmp(source
, ZPROP_SOURCE_VAL_RECVD
) == 0) {
2748 ASSERT0(strncmp(dsname
, source
, strlen(source
)));
2749 relpath
= dsname
+ strlen(source
);
2750 if (relpath
[0] == '/')
2754 spa_altroot(dp
->dp_spa
, root
, ZAP_MAXVALUELEN
);
2757 * Special case an alternate root of '/'. This will
2758 * avoid having multiple leading slashes in the
2761 if (strcmp(root
, "/") == 0)
2765 * If the mountpoint is '/' then skip over this
2766 * if we are obtaining either an alternate root or
2767 * an inherited mountpoint.
2770 if (value
[1] == '\0' && (root
[0] != '\0' ||
2771 relpath
[0] != '\0'))
2774 mnt
= kmem_strdup(mnt
);
2776 if (relpath
[0] == '\0') {
2777 (void) snprintf(value
, ZAP_MAXVALUELEN
, "%s%s",
2780 (void) snprintf(value
, ZAP_MAXVALUELEN
, "%s%s%s%s",
2781 root
, mnt
, relpath
[0] == '@' ? "" : "/",
2784 kmem_free(buf
, ZAP_MAXVALUELEN
);
2792 dsl_dataset_stats(dsl_dataset_t
*ds
, nvlist_t
*nv
)
2794 dsl_pool_t
*dp __maybe_unused
= ds
->ds_dir
->dd_pool
;
2796 ASSERT(dsl_pool_config_held(dp
));
2798 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_REFRATIO
,
2799 dsl_get_refratio(ds
));
2800 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_LOGICALREFERENCED
,
2801 dsl_get_logicalreferenced(ds
));
2802 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_COMPRESSRATIO
,
2803 dsl_get_compressratio(ds
));
2804 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_USED
,
2807 if (ds
->ds_is_snapshot
) {
2808 get_clones_stat(ds
, nv
);
2810 char buf
[ZFS_MAX_DATASET_NAME_LEN
];
2811 if (dsl_get_prev_snap(ds
, buf
) == 0)
2812 dsl_prop_nvlist_add_string(nv
, ZFS_PROP_PREV_SNAP
,
2814 dsl_dir_stats(ds
->ds_dir
, nv
);
2817 nvlist_t
*propval
= fnvlist_alloc();
2818 dsl_get_redact_snaps(ds
, propval
);
2819 fnvlist_add_nvlist(nv
, zfs_prop_to_name(ZFS_PROP_REDACT_SNAPS
),
2821 nvlist_free(propval
);
2823 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_AVAILABLE
,
2824 dsl_get_available(ds
));
2825 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_REFERENCED
,
2826 dsl_get_referenced(ds
));
2827 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_CREATION
,
2828 dsl_get_creation(ds
));
2829 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_CREATETXG
,
2830 dsl_get_creationtxg(ds
));
2831 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_REFQUOTA
,
2832 dsl_get_refquota(ds
));
2833 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_REFRESERVATION
,
2834 dsl_get_refreservation(ds
));
2835 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_GUID
,
2837 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_UNIQUE
,
2838 dsl_get_unique(ds
));
2839 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_OBJSETID
,
2840 dsl_get_objsetid(ds
));
2841 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_USERREFS
,
2842 dsl_get_userrefs(ds
));
2843 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_DEFER_DESTROY
,
2844 dsl_get_defer_destroy(ds
));
2845 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_SNAPSHOTS_CHANGED
,
2846 dsl_dir_snap_cmtime(ds
->ds_dir
).tv_sec
);
2847 dsl_dataset_crypt_stats(ds
, nv
);
2849 if (dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0) {
2851 if (dsl_get_written(ds
, &written
) == 0) {
2852 dsl_prop_nvlist_add_uint64(nv
, ZFS_PROP_WRITTEN
,
2857 if (!dsl_dataset_is_snapshot(ds
)) {
2858 char *token
= get_receive_resume_token(ds
);
2859 if (token
!= NULL
) {
2860 dsl_prop_nvlist_add_string(nv
,
2861 ZFS_PROP_RECEIVE_RESUME_TOKEN
, token
);
2862 kmem_strfree(token
);
2868 dsl_dataset_fast_stat(dsl_dataset_t
*ds
, dmu_objset_stats_t
*stat
)
2870 dsl_pool_t
*dp __maybe_unused
= ds
->ds_dir
->dd_pool
;
2871 ASSERT(dsl_pool_config_held(dp
));
2873 stat
->dds_creation_txg
= dsl_get_creationtxg(ds
);
2874 stat
->dds_inconsistent
= dsl_get_inconsistent(ds
);
2875 stat
->dds_guid
= dsl_get_guid(ds
);
2876 stat
->dds_redacted
= dsl_get_redacted(ds
);
2877 stat
->dds_origin
[0] = '\0';
2878 if (ds
->ds_is_snapshot
) {
2879 stat
->dds_is_snapshot
= B_TRUE
;
2880 stat
->dds_num_clones
= dsl_get_numclones(ds
);
2882 stat
->dds_is_snapshot
= B_FALSE
;
2883 stat
->dds_num_clones
= 0;
2885 if (dsl_dir_is_clone(ds
->ds_dir
)) {
2886 dsl_dir_get_origin(ds
->ds_dir
, stat
->dds_origin
);
2892 dsl_dataset_fsid_guid(dsl_dataset_t
*ds
)
2894 return (ds
->ds_fsid_guid
);
2898 dsl_dataset_space(dsl_dataset_t
*ds
,
2899 uint64_t *refdbytesp
, uint64_t *availbytesp
,
2900 uint64_t *usedobjsp
, uint64_t *availobjsp
)
2902 *refdbytesp
= dsl_dataset_phys(ds
)->ds_referenced_bytes
;
2903 *availbytesp
= dsl_dir_space_available(ds
->ds_dir
, NULL
, 0, TRUE
);
2904 if (ds
->ds_reserved
> dsl_dataset_phys(ds
)->ds_unique_bytes
)
2906 ds
->ds_reserved
- dsl_dataset_phys(ds
)->ds_unique_bytes
;
2907 if (ds
->ds_quota
!= 0) {
2909 * Adjust available bytes according to refquota
2911 if (*refdbytesp
< ds
->ds_quota
)
2912 *availbytesp
= MIN(*availbytesp
,
2913 ds
->ds_quota
- *refdbytesp
);
2917 rrw_enter(&ds
->ds_bp_rwlock
, RW_READER
, FTAG
);
2918 *usedobjsp
= BP_GET_FILL(&dsl_dataset_phys(ds
)->ds_bp
);
2919 rrw_exit(&ds
->ds_bp_rwlock
, FTAG
);
2920 *availobjsp
= DN_MAX_OBJECT
- *usedobjsp
;
2924 dsl_dataset_modified_since_snap(dsl_dataset_t
*ds
, dsl_dataset_t
*snap
)
2926 dsl_pool_t
*dp __maybe_unused
= ds
->ds_dir
->dd_pool
;
2929 ASSERT(dsl_pool_config_held(dp
));
2932 rrw_enter(&ds
->ds_bp_rwlock
, RW_READER
, FTAG
);
2933 birth
= BP_GET_LOGICAL_BIRTH(dsl_dataset_get_blkptr(ds
));
2934 rrw_exit(&ds
->ds_bp_rwlock
, FTAG
);
2935 if (birth
> dsl_dataset_phys(snap
)->ds_creation_txg
) {
2936 objset_t
*os
, *os_snap
;
2938 * It may be that only the ZIL differs, because it was
2939 * reset in the head. Don't count that as being
2942 if (dmu_objset_from_ds(ds
, &os
) != 0)
2944 if (dmu_objset_from_ds(snap
, &os_snap
) != 0)
2946 return (memcmp(&os
->os_phys
->os_meta_dnode
,
2947 &os_snap
->os_phys
->os_meta_dnode
,
2948 sizeof (os
->os_phys
->os_meta_dnode
)) != 0);
2954 dsl_dataset_rename_snapshot_check_impl(dsl_pool_t
*dp
,
2955 dsl_dataset_t
*hds
, void *arg
)
2958 dsl_dataset_rename_snapshot_arg_t
*ddrsa
= arg
;
2962 error
= dsl_dataset_snap_lookup(hds
, ddrsa
->ddrsa_oldsnapname
, &val
);
2964 /* ignore nonexistent snapshots */
2965 return (error
== ENOENT
? 0 : error
);
2968 /* new name should not exist */
2969 error
= dsl_dataset_snap_lookup(hds
, ddrsa
->ddrsa_newsnapname
, &val
);
2971 error
= SET_ERROR(EEXIST
);
2972 else if (error
== ENOENT
)
2975 /* dataset name + 1 for the "@" + the new snapshot name must fit */
2976 if (dsl_dir_namelen(hds
->ds_dir
) + 1 +
2977 strlen(ddrsa
->ddrsa_newsnapname
) >= ZFS_MAX_DATASET_NAME_LEN
)
2978 error
= SET_ERROR(ENAMETOOLONG
);
2984 dsl_dataset_rename_snapshot_check(void *arg
, dmu_tx_t
*tx
)
2986 dsl_dataset_rename_snapshot_arg_t
*ddrsa
= arg
;
2987 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
2991 error
= dsl_dataset_hold(dp
, ddrsa
->ddrsa_fsname
, FTAG
, &hds
);
2995 if (ddrsa
->ddrsa_recursive
) {
2996 error
= dmu_objset_find_dp(dp
, hds
->ds_dir
->dd_object
,
2997 dsl_dataset_rename_snapshot_check_impl
, ddrsa
,
3000 error
= dsl_dataset_rename_snapshot_check_impl(dp
, hds
, ddrsa
);
3002 dsl_dataset_rele(hds
, FTAG
);
3007 dsl_dataset_rename_snapshot_sync_impl(dsl_pool_t
*dp
,
3008 dsl_dataset_t
*hds
, void *arg
)
3010 dsl_dataset_rename_snapshot_arg_t
*ddrsa
= arg
;
3013 dmu_tx_t
*tx
= ddrsa
->ddrsa_tx
;
3014 char *oldname
, *newname
;
3017 error
= dsl_dataset_snap_lookup(hds
, ddrsa
->ddrsa_oldsnapname
, &val
);
3018 ASSERT(error
== 0 || error
== ENOENT
);
3019 if (error
== ENOENT
) {
3020 /* ignore nonexistent snapshots */
3024 VERIFY0(dsl_dataset_hold_obj(dp
, val
, FTAG
, &ds
));
3026 /* log before we change the name */
3027 spa_history_log_internal_ds(ds
, "rename", tx
,
3028 "-> @%s", ddrsa
->ddrsa_newsnapname
);
3030 VERIFY0(dsl_dataset_snap_remove(hds
, ddrsa
->ddrsa_oldsnapname
, tx
,
3032 mutex_enter(&ds
->ds_lock
);
3033 (void) strlcpy(ds
->ds_snapname
, ddrsa
->ddrsa_newsnapname
,
3034 sizeof (ds
->ds_snapname
));
3035 mutex_exit(&ds
->ds_lock
);
3036 VERIFY0(zap_add(dp
->dp_meta_objset
,
3037 dsl_dataset_phys(hds
)->ds_snapnames_zapobj
,
3038 ds
->ds_snapname
, 8, 1, &ds
->ds_object
, tx
));
3040 oldname
= kmem_asprintf("%s@%s", ddrsa
->ddrsa_fsname
,
3041 ddrsa
->ddrsa_oldsnapname
);
3042 newname
= kmem_asprintf("%s@%s", ddrsa
->ddrsa_fsname
,
3043 ddrsa
->ddrsa_newsnapname
);
3044 zvol_rename_minors(dp
->dp_spa
, oldname
, newname
, B_TRUE
);
3045 kmem_strfree(oldname
);
3046 kmem_strfree(newname
);
3048 dsl_dataset_rele(ds
, FTAG
);
3053 dsl_dataset_rename_snapshot_sync(void *arg
, dmu_tx_t
*tx
)
3055 dsl_dataset_rename_snapshot_arg_t
*ddrsa
= arg
;
3056 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3057 dsl_dataset_t
*hds
= NULL
;
3059 VERIFY0(dsl_dataset_hold(dp
, ddrsa
->ddrsa_fsname
, FTAG
, &hds
));
3060 ddrsa
->ddrsa_tx
= tx
;
3061 if (ddrsa
->ddrsa_recursive
) {
3062 VERIFY0(dmu_objset_find_dp(dp
, hds
->ds_dir
->dd_object
,
3063 dsl_dataset_rename_snapshot_sync_impl
, ddrsa
,
3066 VERIFY0(dsl_dataset_rename_snapshot_sync_impl(dp
, hds
, ddrsa
));
3068 dsl_dataset_rele(hds
, FTAG
);
3072 dsl_dataset_rename_snapshot(const char *fsname
,
3073 const char *oldsnapname
, const char *newsnapname
, boolean_t recursive
)
3075 dsl_dataset_rename_snapshot_arg_t ddrsa
;
3077 ddrsa
.ddrsa_fsname
= fsname
;
3078 ddrsa
.ddrsa_oldsnapname
= oldsnapname
;
3079 ddrsa
.ddrsa_newsnapname
= newsnapname
;
3080 ddrsa
.ddrsa_recursive
= recursive
;
3082 return (dsl_sync_task(fsname
, dsl_dataset_rename_snapshot_check
,
3083 dsl_dataset_rename_snapshot_sync
, &ddrsa
,
3084 1, ZFS_SPACE_CHECK_RESERVED
));
3088 * If we're doing an ownership handoff, we need to make sure that there is
3089 * only one long hold on the dataset. We're not allowed to change anything here
3090 * so we don't permanently release the long hold or regular hold here. We want
3091 * to do this only when syncing to avoid the dataset unexpectedly going away
3092 * when we release the long hold.
3095 dsl_dataset_handoff_check(dsl_dataset_t
*ds
, void *owner
, dmu_tx_t
*tx
)
3097 boolean_t held
= B_FALSE
;
3099 if (!dmu_tx_is_syncing(tx
))
3102 dsl_dir_t
*dd
= ds
->ds_dir
;
3103 mutex_enter(&dd
->dd_activity_lock
);
3104 uint64_t holds
= zfs_refcount_count(&ds
->ds_longholds
) -
3105 (owner
!= NULL
? 1 : 0);
3107 * The value of dd_activity_waiters can chance as soon as we drop the
3108 * lock, but we're fine with that; new waiters coming in or old
3109 * waiters leaving doesn't cause problems, since we're going to cancel
3110 * waiters later anyway. The goal of this check is to verify that no
3111 * non-waiters have long-holds, and all new long-holds will be
3112 * prevented because we're holding the pool config as writer.
3114 if (holds
!= dd
->dd_activity_waiters
)
3116 mutex_exit(&dd
->dd_activity_lock
);
3119 return (SET_ERROR(EBUSY
));
3125 dsl_dataset_rollback_check(void *arg
, dmu_tx_t
*tx
)
3127 dsl_dataset_rollback_arg_t
*ddra
= arg
;
3128 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3130 int64_t unused_refres_delta
;
3133 error
= dsl_dataset_hold(dp
, ddra
->ddra_fsname
, FTAG
, &ds
);
3137 /* must not be a snapshot */
3138 if (ds
->ds_is_snapshot
) {
3139 dsl_dataset_rele(ds
, FTAG
);
3140 return (SET_ERROR(EINVAL
));
3143 /* must have a most recent snapshot */
3144 if (dsl_dataset_phys(ds
)->ds_prev_snap_txg
< TXG_INITIAL
) {
3145 dsl_dataset_rele(ds
, FTAG
);
3146 return (SET_ERROR(ESRCH
));
3150 * No rollback to a snapshot created in the current txg, because
3151 * the rollback may dirty the dataset and create blocks that are
3152 * not reachable from the rootbp while having a birth txg that
3153 * falls into the snapshot's range.
3155 if (dmu_tx_is_syncing(tx
) &&
3156 dsl_dataset_phys(ds
)->ds_prev_snap_txg
>= tx
->tx_txg
) {
3157 dsl_dataset_rele(ds
, FTAG
);
3158 return (SET_ERROR(EAGAIN
));
3162 * If the expected target snapshot is specified, then check that
3163 * the latest snapshot is it.
3165 if (ddra
->ddra_tosnap
!= NULL
) {
3166 dsl_dataset_t
*snapds
;
3168 /* Check if the target snapshot exists at all. */
3169 error
= dsl_dataset_hold(dp
, ddra
->ddra_tosnap
, FTAG
, &snapds
);
3172 * ESRCH is used to signal that the target snapshot does
3173 * not exist, while ENOENT is used to report that
3174 * the rolled back dataset does not exist.
3175 * ESRCH is also used to cover other cases where the
3176 * target snapshot is not related to the dataset being
3177 * rolled back such as being in a different pool.
3179 if (error
== ENOENT
|| error
== EXDEV
)
3180 error
= SET_ERROR(ESRCH
);
3181 dsl_dataset_rele(ds
, FTAG
);
3184 ASSERT(snapds
->ds_is_snapshot
);
3186 /* Check if the snapshot is the latest snapshot indeed. */
3187 if (snapds
!= ds
->ds_prev
) {
3189 * Distinguish between the case where the only problem
3190 * is intervening snapshots (EEXIST) vs the snapshot
3191 * not being a valid target for rollback (ESRCH).
3193 if (snapds
->ds_dir
== ds
->ds_dir
||
3194 (dsl_dir_is_clone(ds
->ds_dir
) &&
3195 dsl_dir_phys(ds
->ds_dir
)->dd_origin_obj
==
3196 snapds
->ds_object
)) {
3197 error
= SET_ERROR(EEXIST
);
3199 error
= SET_ERROR(ESRCH
);
3201 dsl_dataset_rele(snapds
, FTAG
);
3202 dsl_dataset_rele(ds
, FTAG
);
3205 dsl_dataset_rele(snapds
, FTAG
);
3208 /* must not have any bookmarks after the most recent snapshot */
3209 if (dsl_bookmark_latest_txg(ds
) >
3210 dsl_dataset_phys(ds
)->ds_prev_snap_txg
) {
3211 dsl_dataset_rele(ds
, FTAG
);
3212 return (SET_ERROR(EEXIST
));
3215 error
= dsl_dataset_handoff_check(ds
, ddra
->ddra_owner
, tx
);
3217 dsl_dataset_rele(ds
, FTAG
);
3222 * Check if the snap we are rolling back to uses more than
3225 if (ds
->ds_quota
!= 0 &&
3226 dsl_dataset_phys(ds
->ds_prev
)->ds_referenced_bytes
> ds
->ds_quota
) {
3227 dsl_dataset_rele(ds
, FTAG
);
3228 return (SET_ERROR(EDQUOT
));
3232 * When we do the clone swap, we will temporarily use more space
3233 * due to the refreservation (the head will no longer have any
3234 * unique space, so the entire amount of the refreservation will need
3235 * to be free). We will immediately destroy the clone, freeing
3236 * this space, but the freeing happens over many txg's.
3238 unused_refres_delta
= (int64_t)MIN(ds
->ds_reserved
,
3239 dsl_dataset_phys(ds
)->ds_unique_bytes
);
3241 if (unused_refres_delta
> 0 &&
3242 unused_refres_delta
>
3243 dsl_dir_space_available(ds
->ds_dir
, NULL
, 0, TRUE
)) {
3244 dsl_dataset_rele(ds
, FTAG
);
3245 return (SET_ERROR(ENOSPC
));
3248 dsl_dataset_rele(ds
, FTAG
);
3253 dsl_dataset_rollback_sync(void *arg
, dmu_tx_t
*tx
)
3255 dsl_dataset_rollback_arg_t
*ddra
= arg
;
3256 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3257 dsl_dataset_t
*ds
, *clone
;
3259 char namebuf
[ZFS_MAX_DATASET_NAME_LEN
];
3261 VERIFY0(dsl_dataset_hold(dp
, ddra
->ddra_fsname
, FTAG
, &ds
));
3263 dsl_dataset_name(ds
->ds_prev
, namebuf
);
3264 fnvlist_add_string(ddra
->ddra_result
, "target", namebuf
);
3266 cloneobj
= dsl_dataset_create_sync(ds
->ds_dir
, "%rollback",
3267 ds
->ds_prev
, DS_CREATE_FLAG_NODIRTY
, kcred
, NULL
, tx
);
3269 VERIFY0(dsl_dataset_hold_obj(dp
, cloneobj
, FTAG
, &clone
));
3271 dsl_dataset_clone_swap_sync_impl(clone
, ds
, tx
);
3272 dsl_dataset_zero_zil(ds
, tx
);
3274 dsl_destroy_head_sync_impl(clone
, tx
);
3276 dsl_dataset_rele(clone
, FTAG
);
3277 dsl_dataset_rele(ds
, FTAG
);
3281 * Rolls back the given filesystem or volume to the most recent snapshot.
3282 * The name of the most recent snapshot will be returned under key "target"
3283 * in the result nvlist.
3286 * - The existing dataset MUST be owned by the specified owner at entry
3287 * - Upon return, dataset will still be held by the same owner, whether we
3290 * This mode is required any time the existing filesystem is mounted. See
3291 * notes above zfs_suspend_fs() for further details.
3294 dsl_dataset_rollback(const char *fsname
, const char *tosnap
, void *owner
,
3297 dsl_dataset_rollback_arg_t ddra
;
3299 ddra
.ddra_fsname
= fsname
;
3300 ddra
.ddra_tosnap
= tosnap
;
3301 ddra
.ddra_owner
= owner
;
3302 ddra
.ddra_result
= result
;
3304 return (dsl_sync_task(fsname
, dsl_dataset_rollback_check
,
3305 dsl_dataset_rollback_sync
, &ddra
,
3306 1, ZFS_SPACE_CHECK_RESERVED
));
3309 struct promotenode
{
3314 static int snaplist_space(list_t
*l
, uint64_t mintxg
, uint64_t *spacep
);
3315 static int promote_hold(dsl_dataset_promote_arg_t
*ddpa
, dsl_pool_t
*dp
,
3317 static void promote_rele(dsl_dataset_promote_arg_t
*ddpa
, const void *tag
);
3320 dsl_dataset_promote_check(void *arg
, dmu_tx_t
*tx
)
3322 dsl_dataset_promote_arg_t
*ddpa
= arg
;
3323 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3325 struct promotenode
*snap
;
3329 size_t max_snap_len
;
3330 boolean_t conflicting_snaps
;
3332 err
= promote_hold(ddpa
, dp
, FTAG
);
3336 hds
= ddpa
->ddpa_clone
;
3337 max_snap_len
= MAXNAMELEN
- strlen(ddpa
->ddpa_clonename
) - 1;
3339 if (dsl_dataset_phys(hds
)->ds_flags
& DS_FLAG_NOPROMOTE
) {
3340 promote_rele(ddpa
, FTAG
);
3341 return (SET_ERROR(EXDEV
));
3344 snap
= list_head(&ddpa
->shared_snaps
);
3346 err
= SET_ERROR(ENOENT
);
3349 dsl_dataset_t
*const origin_ds
= snap
->ds
;
3352 * Encrypted clones share a DSL Crypto Key with their origin's dsl dir.
3353 * When doing a promote we must make sure the encryption root for
3354 * both the target and the target's origin does not change to avoid
3355 * needing to rewrap encryption keys
3357 err
= dsl_dataset_promote_crypt_check(hds
->ds_dir
, origin_ds
->ds_dir
);
3362 * Compute and check the amount of space to transfer. Since this is
3363 * so expensive, don't do the preliminary check.
3365 if (!dmu_tx_is_syncing(tx
)) {
3366 promote_rele(ddpa
, FTAG
);
3370 /* compute origin's new unique space */
3371 snap
= list_tail(&ddpa
->clone_snaps
);
3372 ASSERT(snap
!= NULL
);
3373 ASSERT3U(dsl_dataset_phys(snap
->ds
)->ds_prev_snap_obj
, ==,
3374 origin_ds
->ds_object
);
3375 dsl_deadlist_space_range(&snap
->ds
->ds_deadlist
,
3376 dsl_dataset_phys(origin_ds
)->ds_prev_snap_txg
, UINT64_MAX
,
3377 &ddpa
->unique
, &unused
, &unused
);
3380 * Walk the snapshots that we are moving
3382 * Compute space to transfer. Consider the incremental changes
3383 * to used by each snapshot:
3384 * (my used) = (prev's used) + (blocks born) - (blocks killed)
3385 * So each snapshot gave birth to:
3386 * (blocks born) = (my used) - (prev's used) + (blocks killed)
3387 * So a sequence would look like:
3388 * (uN - u(N-1) + kN) + ... + (u1 - u0 + k1) + (u0 - 0 + k0)
3389 * Which simplifies to:
3390 * uN + kN + kN-1 + ... + k1 + k0
3391 * Note however, if we stop before we reach the ORIGIN we get:
3392 * uN + kN + kN-1 + ... + kM - uM-1
3394 conflicting_snaps
= B_FALSE
;
3396 ddpa
->used
= dsl_dataset_phys(origin_ds
)->ds_referenced_bytes
;
3397 ddpa
->comp
= dsl_dataset_phys(origin_ds
)->ds_compressed_bytes
;
3398 ddpa
->uncomp
= dsl_dataset_phys(origin_ds
)->ds_uncompressed_bytes
;
3399 for (snap
= list_head(&ddpa
->shared_snaps
); snap
;
3400 snap
= list_next(&ddpa
->shared_snaps
, snap
)) {
3401 uint64_t val
, dlused
, dlcomp
, dluncomp
;
3402 dsl_dataset_t
*ds
= snap
->ds
;
3407 * If there are long holds, we won't be able to evict
3410 if (dsl_dataset_long_held(ds
)) {
3411 err
= SET_ERROR(EBUSY
);
3415 /* Check that the snapshot name does not conflict */
3416 VERIFY0(dsl_dataset_get_snapname(ds
));
3417 if (strlen(ds
->ds_snapname
) >= max_snap_len
) {
3418 err
= SET_ERROR(ENAMETOOLONG
);
3421 err
= dsl_dataset_snap_lookup(hds
, ds
->ds_snapname
, &val
);
3423 fnvlist_add_boolean(ddpa
->err_ds
,
3424 snap
->ds
->ds_snapname
);
3425 conflicting_snaps
= B_TRUE
;
3426 } else if (err
!= ENOENT
) {
3430 /* The very first snapshot does not have a deadlist */
3431 if (dsl_dataset_phys(ds
)->ds_prev_snap_obj
== 0)
3434 dsl_deadlist_space(&ds
->ds_deadlist
,
3435 &dlused
, &dlcomp
, &dluncomp
);
3436 ddpa
->used
+= dlused
;
3437 ddpa
->comp
+= dlcomp
;
3438 ddpa
->uncomp
+= dluncomp
;
3442 * Check that bookmarks that are being transferred don't have
3445 for (dsl_bookmark_node_t
*dbn
= avl_first(&origin_ds
->ds_bookmarks
);
3446 dbn
!= NULL
&& dbn
->dbn_phys
.zbm_creation_txg
<=
3447 dsl_dataset_phys(origin_ds
)->ds_creation_txg
;
3448 dbn
= AVL_NEXT(&origin_ds
->ds_bookmarks
, dbn
)) {
3449 if (strlen(dbn
->dbn_name
) >= max_snap_len
) {
3450 err
= SET_ERROR(ENAMETOOLONG
);
3453 zfs_bookmark_phys_t bm
;
3454 err
= dsl_bookmark_lookup_impl(ddpa
->ddpa_clone
,
3455 dbn
->dbn_name
, &bm
);
3458 fnvlist_add_boolean(ddpa
->err_ds
, dbn
->dbn_name
);
3459 conflicting_snaps
= B_TRUE
;
3460 } else if (err
== ESRCH
) {
3469 * In order to return the full list of conflicting snapshots, we check
3470 * whether there was a conflict after traversing all of them.
3472 if (conflicting_snaps
) {
3473 err
= SET_ERROR(EEXIST
);
3478 * If we are a clone of a clone then we never reached ORIGIN,
3479 * so we need to subtract out the clone origin's used space.
3481 if (ddpa
->origin_origin
) {
3483 dsl_dataset_phys(ddpa
->origin_origin
)->ds_referenced_bytes
;
3485 dsl_dataset_phys(ddpa
->origin_origin
)->ds_compressed_bytes
;
3487 dsl_dataset_phys(ddpa
->origin_origin
)->
3488 ds_uncompressed_bytes
;
3491 /* Check that there is enough space and limit headroom here */
3492 err
= dsl_dir_transfer_possible(origin_ds
->ds_dir
, hds
->ds_dir
,
3493 0, ss_mv_cnt
, ddpa
->used
, ddpa
->cr
, ddpa
->proc
);
3498 * Compute the amounts of space that will be used by snapshots
3499 * after the promotion (for both origin and clone). For each,
3500 * it is the amount of space that will be on all of their
3501 * deadlists (that was not born before their new origin).
3503 if (dsl_dir_phys(hds
->ds_dir
)->dd_flags
& DD_FLAG_USED_BREAKDOWN
) {
3507 * Note, typically this will not be a clone of a clone,
3508 * so dd_origin_txg will be < TXG_INITIAL, so
3509 * these snaplist_space() -> dsl_deadlist_space_range()
3510 * calls will be fast because they do not have to
3511 * iterate over all bps.
3513 snap
= list_head(&ddpa
->origin_snaps
);
3515 err
= SET_ERROR(ENOENT
);
3518 err
= snaplist_space(&ddpa
->shared_snaps
,
3519 snap
->ds
->ds_dir
->dd_origin_txg
, &ddpa
->cloneusedsnap
);
3523 err
= snaplist_space(&ddpa
->clone_snaps
,
3524 snap
->ds
->ds_dir
->dd_origin_txg
, &space
);
3527 ddpa
->cloneusedsnap
+= space
;
3529 if (dsl_dir_phys(origin_ds
->ds_dir
)->dd_flags
&
3530 DD_FLAG_USED_BREAKDOWN
) {
3531 err
= snaplist_space(&ddpa
->origin_snaps
,
3532 dsl_dataset_phys(origin_ds
)->ds_creation_txg
,
3533 &ddpa
->originusedsnap
);
3539 promote_rele(ddpa
, FTAG
);
3544 dsl_dataset_promote_sync(void *arg
, dmu_tx_t
*tx
)
3546 dsl_dataset_promote_arg_t
*ddpa
= arg
;
3547 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
3549 struct promotenode
*snap
;
3550 dsl_dataset_t
*origin_ds
;
3551 dsl_dataset_t
*origin_head
;
3553 dsl_dir_t
*odd
= NULL
;
3554 uint64_t oldnext_obj
;
3557 ASSERT(nvlist_empty(ddpa
->err_ds
));
3559 VERIFY0(promote_hold(ddpa
, dp
, FTAG
));
3560 hds
= ddpa
->ddpa_clone
;
3562 ASSERT0(dsl_dataset_phys(hds
)->ds_flags
& DS_FLAG_NOPROMOTE
);
3564 snap
= list_head(&ddpa
->shared_snaps
);
3565 origin_ds
= snap
->ds
;
3568 snap
= list_head(&ddpa
->origin_snaps
);
3569 origin_head
= snap
->ds
;
3572 * We need to explicitly open odd, since origin_ds's dd will be
3575 VERIFY0(dsl_dir_hold_obj(dp
, origin_ds
->ds_dir
->dd_object
,
3578 dsl_dataset_promote_crypt_sync(hds
->ds_dir
, odd
, tx
);
3580 /* change origin's next snap */
3581 dmu_buf_will_dirty(origin_ds
->ds_dbuf
, tx
);
3582 oldnext_obj
= dsl_dataset_phys(origin_ds
)->ds_next_snap_obj
;
3583 snap
= list_tail(&ddpa
->clone_snaps
);
3584 ASSERT3U(dsl_dataset_phys(snap
->ds
)->ds_prev_snap_obj
, ==,
3585 origin_ds
->ds_object
);
3586 dsl_dataset_phys(origin_ds
)->ds_next_snap_obj
= snap
->ds
->ds_object
;
3588 /* change the origin's next clone */
3589 if (dsl_dataset_phys(origin_ds
)->ds_next_clones_obj
) {
3590 dsl_dataset_remove_from_next_clones(origin_ds
,
3591 snap
->ds
->ds_object
, tx
);
3592 VERIFY0(zap_add_int(dp
->dp_meta_objset
,
3593 dsl_dataset_phys(origin_ds
)->ds_next_clones_obj
,
3598 dmu_buf_will_dirty(dd
->dd_dbuf
, tx
);
3599 ASSERT3U(dsl_dir_phys(dd
)->dd_origin_obj
, ==, origin_ds
->ds_object
);
3600 dsl_dir_phys(dd
)->dd_origin_obj
= dsl_dir_phys(odd
)->dd_origin_obj
;
3601 dd
->dd_origin_txg
= origin_head
->ds_dir
->dd_origin_txg
;
3602 dmu_buf_will_dirty(odd
->dd_dbuf
, tx
);
3603 dsl_dir_phys(odd
)->dd_origin_obj
= origin_ds
->ds_object
;
3604 origin_head
->ds_dir
->dd_origin_txg
=
3605 dsl_dataset_phys(origin_ds
)->ds_creation_txg
;
3607 /* change dd_clone entries */
3608 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_DIR_CLONES
) {
3609 VERIFY0(zap_remove_int(dp
->dp_meta_objset
,
3610 dsl_dir_phys(odd
)->dd_clones
, hds
->ds_object
, tx
));
3611 VERIFY0(zap_add_int(dp
->dp_meta_objset
,
3612 dsl_dir_phys(ddpa
->origin_origin
->ds_dir
)->dd_clones
,
3613 hds
->ds_object
, tx
));
3615 VERIFY0(zap_remove_int(dp
->dp_meta_objset
,
3616 dsl_dir_phys(ddpa
->origin_origin
->ds_dir
)->dd_clones
,
3617 origin_head
->ds_object
, tx
));
3618 if (dsl_dir_phys(dd
)->dd_clones
== 0) {
3619 dsl_dir_phys(dd
)->dd_clones
=
3620 zap_create(dp
->dp_meta_objset
, DMU_OT_DSL_CLONES
,
3621 DMU_OT_NONE
, 0, tx
);
3623 VERIFY0(zap_add_int(dp
->dp_meta_objset
,
3624 dsl_dir_phys(dd
)->dd_clones
, origin_head
->ds_object
, tx
));
3628 * Move bookmarks to this dir.
3630 dsl_bookmark_node_t
*dbn_next
;
3631 for (dsl_bookmark_node_t
*dbn
= avl_first(&origin_head
->ds_bookmarks
);
3632 dbn
!= NULL
&& dbn
->dbn_phys
.zbm_creation_txg
<=
3633 dsl_dataset_phys(origin_ds
)->ds_creation_txg
;
3635 dbn_next
= AVL_NEXT(&origin_head
->ds_bookmarks
, dbn
);
3637 avl_remove(&origin_head
->ds_bookmarks
, dbn
);
3638 VERIFY0(zap_remove(dp
->dp_meta_objset
,
3639 origin_head
->ds_bookmarks_obj
, dbn
->dbn_name
, tx
));
3641 dsl_bookmark_node_add(hds
, dbn
, tx
);
3644 dsl_bookmark_next_changed(hds
, origin_ds
, tx
);
3646 /* move snapshots to this dir */
3647 for (snap
= list_head(&ddpa
->shared_snaps
); snap
;
3648 snap
= list_next(&ddpa
->shared_snaps
, snap
)) {
3649 dsl_dataset_t
*ds
= snap
->ds
;
3652 * Property callbacks are registered to a particular
3653 * dsl_dir. Since ours is changing, evict the objset
3654 * so that they will be unregistered from the old dsl_dir.
3656 if (ds
->ds_objset
) {
3657 dmu_objset_evict(ds
->ds_objset
);
3658 ds
->ds_objset
= NULL
;
3661 /* move snap name entry */
3662 VERIFY0(dsl_dataset_get_snapname(ds
));
3663 VERIFY0(dsl_dataset_snap_remove(origin_head
,
3664 ds
->ds_snapname
, tx
, B_TRUE
));
3665 VERIFY0(zap_add(dp
->dp_meta_objset
,
3666 dsl_dataset_phys(hds
)->ds_snapnames_zapobj
, ds
->ds_snapname
,
3667 8, 1, &ds
->ds_object
, tx
));
3668 dsl_fs_ss_count_adjust(hds
->ds_dir
, 1,
3669 DD_FIELD_SNAPSHOT_COUNT
, tx
);
3671 /* change containing dsl_dir */
3672 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
3673 ASSERT3U(dsl_dataset_phys(ds
)->ds_dir_obj
, ==, odd
->dd_object
);
3674 dsl_dataset_phys(ds
)->ds_dir_obj
= dd
->dd_object
;
3675 ASSERT3P(ds
->ds_dir
, ==, odd
);
3676 dsl_dir_rele(ds
->ds_dir
, ds
);
3677 VERIFY0(dsl_dir_hold_obj(dp
, dd
->dd_object
,
3678 NULL
, ds
, &ds
->ds_dir
));
3680 /* move any clone references */
3681 if (dsl_dataset_phys(ds
)->ds_next_clones_obj
&&
3682 spa_version(dp
->dp_spa
) >= SPA_VERSION_DIR_CLONES
) {
3684 zap_attribute_t
*za
= zap_attribute_alloc();
3686 for (zap_cursor_init(&zc
, dp
->dp_meta_objset
,
3687 dsl_dataset_phys(ds
)->ds_next_clones_obj
);
3688 zap_cursor_retrieve(&zc
, za
) == 0;
3689 zap_cursor_advance(&zc
)) {
3690 dsl_dataset_t
*cnds
;
3693 if (za
->za_first_integer
== oldnext_obj
) {
3695 * We've already moved the
3696 * origin's reference.
3701 VERIFY0(dsl_dataset_hold_obj(dp
,
3702 za
->za_first_integer
, FTAG
, &cnds
));
3703 o
= dsl_dir_phys(cnds
->ds_dir
)->
3704 dd_head_dataset_obj
;
3706 VERIFY0(zap_remove_int(dp
->dp_meta_objset
,
3707 dsl_dir_phys(odd
)->dd_clones
, o
, tx
));
3708 VERIFY0(zap_add_int(dp
->dp_meta_objset
,
3709 dsl_dir_phys(dd
)->dd_clones
, o
, tx
));
3710 dsl_dataset_rele(cnds
, FTAG
);
3712 zap_cursor_fini(&zc
);
3713 zap_attribute_free(za
);
3716 ASSERT(!dsl_prop_hascb(ds
));
3720 * Change space accounting.
3721 * Note, pa->*usedsnap and dd_used_breakdown[SNAP] will either
3722 * both be valid, or both be 0 (resulting in delta == 0). This
3723 * is true for each of {clone,origin} independently.
3726 delta
= ddpa
->cloneusedsnap
-
3727 dsl_dir_phys(dd
)->dd_used_breakdown
[DD_USED_SNAP
];
3728 ASSERT3S(delta
, >=, 0);
3729 ASSERT3U(ddpa
->used
, >=, delta
);
3730 dsl_dir_diduse_space(dd
, DD_USED_SNAP
, delta
, 0, 0, tx
);
3731 dsl_dir_diduse_space(dd
, DD_USED_HEAD
,
3732 ddpa
->used
- delta
, ddpa
->comp
, ddpa
->uncomp
, tx
);
3734 delta
= ddpa
->originusedsnap
-
3735 dsl_dir_phys(odd
)->dd_used_breakdown
[DD_USED_SNAP
];
3736 ASSERT3S(delta
, <=, 0);
3737 ASSERT3U(ddpa
->used
, >=, -delta
);
3738 dsl_dir_diduse_space(odd
, DD_USED_SNAP
, delta
, 0, 0, tx
);
3739 dsl_dir_diduse_space(odd
, DD_USED_HEAD
,
3740 -ddpa
->used
- delta
, -ddpa
->comp
, -ddpa
->uncomp
, tx
);
3742 dsl_dataset_phys(origin_ds
)->ds_unique_bytes
= ddpa
->unique
;
3745 * Since livelists are specific to a clone's origin txg, they
3746 * are no longer accurate. Destroy the livelist from the clone being
3747 * promoted. If the origin dataset is a clone, destroy its livelist
3750 dsl_dir_remove_livelist(dd
, tx
, B_TRUE
);
3751 dsl_dir_remove_livelist(odd
, tx
, B_TRUE
);
3753 /* log history record */
3754 spa_history_log_internal_ds(hds
, "promote", tx
, " ");
3756 dsl_dir_rele(odd
, FTAG
);
3759 * Transfer common error blocks from old head to new head, before
3760 * calling promote_rele() on ddpa since we need to dereference
3761 * origin_head and hds.
3763 if (spa_feature_is_enabled(dp
->dp_spa
, SPA_FEATURE_HEAD_ERRLOG
)) {
3764 uint64_t old_head
= origin_head
->ds_object
;
3765 uint64_t new_head
= hds
->ds_object
;
3766 spa_swap_errlog(dp
->dp_spa
, new_head
, old_head
, tx
);
3769 promote_rele(ddpa
, FTAG
);
3773 * Make a list of dsl_dataset_t's for the snapshots between first_obj
3774 * (exclusive) and last_obj (inclusive). The list will be in reverse
3775 * order (last_obj will be the list_head()). If first_obj == 0, do all
3776 * snapshots back to this dataset's origin.
3779 snaplist_make(dsl_pool_t
*dp
,
3780 uint64_t first_obj
, uint64_t last_obj
, list_t
*l
, const void *tag
)
3782 uint64_t obj
= last_obj
;
3784 list_create(l
, sizeof (struct promotenode
),
3785 offsetof(struct promotenode
, link
));
3787 while (obj
!= first_obj
) {
3789 struct promotenode
*snap
;
3792 err
= dsl_dataset_hold_obj(dp
, obj
, tag
, &ds
);
3793 ASSERT(err
!= ENOENT
);
3798 first_obj
= dsl_dir_phys(ds
->ds_dir
)->dd_origin_obj
;
3800 snap
= kmem_alloc(sizeof (*snap
), KM_SLEEP
);
3802 list_insert_tail(l
, snap
);
3803 obj
= dsl_dataset_phys(ds
)->ds_prev_snap_obj
;
3810 snaplist_space(list_t
*l
, uint64_t mintxg
, uint64_t *spacep
)
3812 struct promotenode
*snap
;
3815 for (snap
= list_head(l
); snap
; snap
= list_next(l
, snap
)) {
3816 uint64_t used
, comp
, uncomp
;
3817 dsl_deadlist_space_range(&snap
->ds
->ds_deadlist
,
3818 mintxg
, UINT64_MAX
, &used
, &comp
, &uncomp
);
3825 snaplist_destroy(list_t
*l
, const void *tag
)
3827 struct promotenode
*snap
;
3829 if (l
== NULL
|| !list_link_active(&l
->list_head
))
3832 while ((snap
= list_remove_tail(l
)) != NULL
) {
3833 dsl_dataset_rele(snap
->ds
, tag
);
3834 kmem_free(snap
, sizeof (*snap
));
3840 promote_hold(dsl_dataset_promote_arg_t
*ddpa
, dsl_pool_t
*dp
, const void *tag
)
3844 struct promotenode
*snap
;
3846 error
= dsl_dataset_hold(dp
, ddpa
->ddpa_clonename
, tag
,
3850 dd
= ddpa
->ddpa_clone
->ds_dir
;
3852 if (ddpa
->ddpa_clone
->ds_is_snapshot
||
3853 !dsl_dir_is_clone(dd
)) {
3854 dsl_dataset_rele(ddpa
->ddpa_clone
, tag
);
3855 return (SET_ERROR(EINVAL
));
3858 error
= snaplist_make(dp
, 0, dsl_dir_phys(dd
)->dd_origin_obj
,
3859 &ddpa
->shared_snaps
, tag
);
3863 error
= snaplist_make(dp
, 0, ddpa
->ddpa_clone
->ds_object
,
3864 &ddpa
->clone_snaps
, tag
);
3868 snap
= list_head(&ddpa
->shared_snaps
);
3869 ASSERT3U(snap
->ds
->ds_object
, ==, dsl_dir_phys(dd
)->dd_origin_obj
);
3870 error
= snaplist_make(dp
, dsl_dir_phys(dd
)->dd_origin_obj
,
3871 dsl_dir_phys(snap
->ds
->ds_dir
)->dd_head_dataset_obj
,
3872 &ddpa
->origin_snaps
, tag
);
3876 if (dsl_dir_phys(snap
->ds
->ds_dir
)->dd_origin_obj
!= 0) {
3877 error
= dsl_dataset_hold_obj(dp
,
3878 dsl_dir_phys(snap
->ds
->ds_dir
)->dd_origin_obj
,
3879 tag
, &ddpa
->origin_origin
);
3885 promote_rele(ddpa
, tag
);
3890 promote_rele(dsl_dataset_promote_arg_t
*ddpa
, const void *tag
)
3892 snaplist_destroy(&ddpa
->shared_snaps
, tag
);
3893 snaplist_destroy(&ddpa
->clone_snaps
, tag
);
3894 snaplist_destroy(&ddpa
->origin_snaps
, tag
);
3895 if (ddpa
->origin_origin
!= NULL
)
3896 dsl_dataset_rele(ddpa
->origin_origin
, tag
);
3897 dsl_dataset_rele(ddpa
->ddpa_clone
, tag
);
3903 * If it fails due to a conflicting snapshot name, "conflsnap" will be filled
3904 * in with the name. (It must be at least ZFS_MAX_DATASET_NAME_LEN bytes long.)
3907 dsl_dataset_promote(const char *name
, char *conflsnap
)
3909 dsl_dataset_promote_arg_t ddpa
= { 0 };
3912 nvpair_t
*snap_pair
;
3916 * We will modify space proportional to the number of
3917 * snapshots. Compute numsnaps.
3919 error
= dmu_objset_hold(name
, FTAG
, &os
);
3922 error
= zap_count(dmu_objset_pool(os
)->dp_meta_objset
,
3923 dsl_dataset_phys(dmu_objset_ds(os
))->ds_snapnames_zapobj
,
3925 dmu_objset_rele(os
, FTAG
);
3929 ddpa
.ddpa_clonename
= name
;
3930 ddpa
.err_ds
= fnvlist_alloc();
3932 ddpa
.proc
= curproc
;
3934 error
= dsl_sync_task(name
, dsl_dataset_promote_check
,
3935 dsl_dataset_promote_sync
, &ddpa
,
3936 2 + numsnaps
, ZFS_SPACE_CHECK_RESERVED
);
3939 * Return the first conflicting snapshot found.
3941 snap_pair
= nvlist_next_nvpair(ddpa
.err_ds
, NULL
);
3942 if (snap_pair
!= NULL
&& conflsnap
!= NULL
)
3943 (void) strlcpy(conflsnap
, nvpair_name(snap_pair
),
3944 ZFS_MAX_DATASET_NAME_LEN
);
3946 fnvlist_free(ddpa
.err_ds
);
3951 dsl_dataset_clone_swap_check_impl(dsl_dataset_t
*clone
,
3952 dsl_dataset_t
*origin_head
, boolean_t force
, void *owner
, dmu_tx_t
*tx
)
3955 * "slack" factor for received datasets with refquota set on them.
3956 * See the bottom of this function for details on its use.
3958 uint64_t refquota_slack
= (uint64_t)DMU_MAX_ACCESS
*
3959 spa_asize_inflation
;
3960 int64_t unused_refres_delta
;
3962 /* they should both be heads */
3963 if (clone
->ds_is_snapshot
||
3964 origin_head
->ds_is_snapshot
)
3965 return (SET_ERROR(EINVAL
));
3967 /* if we are not forcing, the branch point should be just before them */
3968 if (!force
&& clone
->ds_prev
!= origin_head
->ds_prev
)
3969 return (SET_ERROR(EINVAL
));
3971 /* clone should be the clone (unless they are unrelated) */
3972 if (clone
->ds_prev
!= NULL
&&
3973 clone
->ds_prev
!= clone
->ds_dir
->dd_pool
->dp_origin_snap
&&
3974 origin_head
->ds_dir
!= clone
->ds_prev
->ds_dir
)
3975 return (SET_ERROR(EINVAL
));
3977 /* the clone should be a child of the origin */
3978 if (clone
->ds_dir
->dd_parent
!= origin_head
->ds_dir
)
3979 return (SET_ERROR(EINVAL
));
3981 /* origin_head shouldn't be modified unless 'force' */
3983 dsl_dataset_modified_since_snap(origin_head
, origin_head
->ds_prev
))
3984 return (SET_ERROR(ETXTBSY
));
3986 /* origin_head should have no long holds (e.g. is not mounted) */
3987 if (dsl_dataset_handoff_check(origin_head
, owner
, tx
))
3988 return (SET_ERROR(EBUSY
));
3990 /* check amount of any unconsumed refreservation */
3991 unused_refres_delta
=
3992 (int64_t)MIN(origin_head
->ds_reserved
,
3993 dsl_dataset_phys(origin_head
)->ds_unique_bytes
) -
3994 (int64_t)MIN(origin_head
->ds_reserved
,
3995 dsl_dataset_phys(clone
)->ds_unique_bytes
);
3997 if (unused_refres_delta
> 0 &&
3998 unused_refres_delta
>
3999 dsl_dir_space_available(origin_head
->ds_dir
, NULL
, 0, TRUE
))
4000 return (SET_ERROR(ENOSPC
));
4003 * The clone can't be too much over the head's refquota.
4005 * To ensure that the entire refquota can be used, we allow one
4006 * transaction to exceed the refquota. Therefore, this check
4007 * needs to also allow for the space referenced to be more than the
4008 * refquota. The maximum amount of space that one transaction can use
4009 * on disk is DMU_MAX_ACCESS * spa_asize_inflation. Allowing this
4010 * overage ensures that we are able to receive a filesystem that
4011 * exceeds the refquota on the source system.
4013 * So that overage is the refquota_slack we use below.
4015 if (origin_head
->ds_quota
!= 0 &&
4016 dsl_dataset_phys(clone
)->ds_referenced_bytes
>
4017 origin_head
->ds_quota
+ refquota_slack
)
4018 return (SET_ERROR(EDQUOT
));
4024 dsl_dataset_swap_remap_deadlists(dsl_dataset_t
*clone
,
4025 dsl_dataset_t
*origin
, dmu_tx_t
*tx
)
4027 uint64_t clone_remap_dl_obj
, origin_remap_dl_obj
;
4028 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
4030 ASSERT(dsl_pool_sync_context(dp
));
4032 clone_remap_dl_obj
= dsl_dataset_get_remap_deadlist_object(clone
);
4033 origin_remap_dl_obj
= dsl_dataset_get_remap_deadlist_object(origin
);
4035 if (clone_remap_dl_obj
!= 0) {
4036 dsl_deadlist_close(&clone
->ds_remap_deadlist
);
4037 dsl_dataset_unset_remap_deadlist_object(clone
, tx
);
4039 if (origin_remap_dl_obj
!= 0) {
4040 dsl_deadlist_close(&origin
->ds_remap_deadlist
);
4041 dsl_dataset_unset_remap_deadlist_object(origin
, tx
);
4044 if (clone_remap_dl_obj
!= 0) {
4045 dsl_dataset_set_remap_deadlist_object(origin
,
4046 clone_remap_dl_obj
, tx
);
4047 dsl_deadlist_open(&origin
->ds_remap_deadlist
,
4048 dp
->dp_meta_objset
, clone_remap_dl_obj
);
4050 if (origin_remap_dl_obj
!= 0) {
4051 dsl_dataset_set_remap_deadlist_object(clone
,
4052 origin_remap_dl_obj
, tx
);
4053 dsl_deadlist_open(&clone
->ds_remap_deadlist
,
4054 dp
->dp_meta_objset
, origin_remap_dl_obj
);
4059 dsl_dataset_clone_swap_sync_impl(dsl_dataset_t
*clone
,
4060 dsl_dataset_t
*origin_head
, dmu_tx_t
*tx
)
4062 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
4063 int64_t unused_refres_delta
;
4065 ASSERT(clone
->ds_reserved
== 0);
4067 * NOTE: On DEBUG kernels there could be a race between this and
4068 * the check function if spa_asize_inflation is adjusted...
4070 ASSERT(origin_head
->ds_quota
== 0 ||
4071 dsl_dataset_phys(clone
)->ds_unique_bytes
<= origin_head
->ds_quota
+
4072 DMU_MAX_ACCESS
* spa_asize_inflation
);
4073 ASSERT3P(clone
->ds_prev
, ==, origin_head
->ds_prev
);
4075 dsl_dir_cancel_waiters(origin_head
->ds_dir
);
4078 * Swap per-dataset feature flags.
4080 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
4081 if (!(spa_feature_table
[f
].fi_flags
&
4082 ZFEATURE_FLAG_PER_DATASET
)) {
4083 ASSERT(!dsl_dataset_feature_is_active(clone
, f
));
4084 ASSERT(!dsl_dataset_feature_is_active(origin_head
, f
));
4088 boolean_t clone_inuse
= dsl_dataset_feature_is_active(clone
, f
);
4089 void *clone_feature
= clone
->ds_feature
[f
];
4090 boolean_t origin_head_inuse
=
4091 dsl_dataset_feature_is_active(origin_head
, f
);
4092 void *origin_head_feature
= origin_head
->ds_feature
[f
];
4095 dsl_dataset_deactivate_feature_impl(clone
, f
, tx
);
4096 if (origin_head_inuse
)
4097 dsl_dataset_deactivate_feature_impl(origin_head
, f
, tx
);
4100 dsl_dataset_activate_feature(origin_head
->ds_object
, f
,
4102 origin_head
->ds_feature
[f
] = clone_feature
;
4104 if (origin_head_inuse
) {
4105 dsl_dataset_activate_feature(clone
->ds_object
, f
,
4106 origin_head_feature
, tx
);
4107 clone
->ds_feature
[f
] = origin_head_feature
;
4111 dmu_buf_will_dirty(clone
->ds_dbuf
, tx
);
4112 dmu_buf_will_dirty(origin_head
->ds_dbuf
, tx
);
4114 if (clone
->ds_objset
!= NULL
) {
4115 dmu_objset_evict(clone
->ds_objset
);
4116 clone
->ds_objset
= NULL
;
4119 if (origin_head
->ds_objset
!= NULL
) {
4120 dmu_objset_evict(origin_head
->ds_objset
);
4121 origin_head
->ds_objset
= NULL
;
4124 unused_refres_delta
=
4125 (int64_t)MIN(origin_head
->ds_reserved
,
4126 dsl_dataset_phys(origin_head
)->ds_unique_bytes
) -
4127 (int64_t)MIN(origin_head
->ds_reserved
,
4128 dsl_dataset_phys(clone
)->ds_unique_bytes
);
4131 * Reset origin's unique bytes.
4134 dsl_dataset_t
*origin
= clone
->ds_prev
;
4135 uint64_t comp
, uncomp
;
4137 dmu_buf_will_dirty(origin
->ds_dbuf
, tx
);
4138 dsl_deadlist_space_range(&clone
->ds_deadlist
,
4139 dsl_dataset_phys(origin
)->ds_prev_snap_txg
, UINT64_MAX
,
4140 &dsl_dataset_phys(origin
)->ds_unique_bytes
, &comp
, &uncomp
);
4145 rrw_enter(&clone
->ds_bp_rwlock
, RW_WRITER
, FTAG
);
4146 rrw_enter(&origin_head
->ds_bp_rwlock
, RW_WRITER
, FTAG
);
4148 tmp
= dsl_dataset_phys(origin_head
)->ds_bp
;
4149 dsl_dataset_phys(origin_head
)->ds_bp
=
4150 dsl_dataset_phys(clone
)->ds_bp
;
4151 dsl_dataset_phys(clone
)->ds_bp
= tmp
;
4152 rrw_exit(&origin_head
->ds_bp_rwlock
, FTAG
);
4153 rrw_exit(&clone
->ds_bp_rwlock
, FTAG
);
4156 /* set dd_*_bytes */
4158 int64_t dused
, dcomp
, duncomp
;
4159 uint64_t cdl_used
, cdl_comp
, cdl_uncomp
;
4160 uint64_t odl_used
, odl_comp
, odl_uncomp
;
4162 ASSERT3U(dsl_dir_phys(clone
->ds_dir
)->
4163 dd_used_breakdown
[DD_USED_SNAP
], ==, 0);
4165 dsl_deadlist_space(&clone
->ds_deadlist
,
4166 &cdl_used
, &cdl_comp
, &cdl_uncomp
);
4167 dsl_deadlist_space(&origin_head
->ds_deadlist
,
4168 &odl_used
, &odl_comp
, &odl_uncomp
);
4170 dused
= dsl_dataset_phys(clone
)->ds_referenced_bytes
+
4172 (dsl_dataset_phys(origin_head
)->ds_referenced_bytes
+
4174 dcomp
= dsl_dataset_phys(clone
)->ds_compressed_bytes
+
4176 (dsl_dataset_phys(origin_head
)->ds_compressed_bytes
+
4178 duncomp
= dsl_dataset_phys(clone
)->ds_uncompressed_bytes
+
4180 (dsl_dataset_phys(origin_head
)->ds_uncompressed_bytes
+
4183 dsl_dir_diduse_space(origin_head
->ds_dir
, DD_USED_HEAD
,
4184 dused
, dcomp
, duncomp
, tx
);
4185 dsl_dir_diduse_space(clone
->ds_dir
, DD_USED_HEAD
,
4186 -dused
, -dcomp
, -duncomp
, tx
);
4189 * The difference in the space used by snapshots is the
4190 * difference in snapshot space due to the head's
4191 * deadlist (since that's the only thing that's
4192 * changing that affects the snapused).
4194 dsl_deadlist_space_range(&clone
->ds_deadlist
,
4195 origin_head
->ds_dir
->dd_origin_txg
, UINT64_MAX
,
4196 &cdl_used
, &cdl_comp
, &cdl_uncomp
);
4197 dsl_deadlist_space_range(&origin_head
->ds_deadlist
,
4198 origin_head
->ds_dir
->dd_origin_txg
, UINT64_MAX
,
4199 &odl_used
, &odl_comp
, &odl_uncomp
);
4200 dsl_dir_transfer_space(origin_head
->ds_dir
, cdl_used
- odl_used
,
4201 DD_USED_HEAD
, DD_USED_SNAP
, tx
);
4204 /* swap ds_*_bytes */
4205 SWITCH64(dsl_dataset_phys(origin_head
)->ds_referenced_bytes
,
4206 dsl_dataset_phys(clone
)->ds_referenced_bytes
);
4207 SWITCH64(dsl_dataset_phys(origin_head
)->ds_compressed_bytes
,
4208 dsl_dataset_phys(clone
)->ds_compressed_bytes
);
4209 SWITCH64(dsl_dataset_phys(origin_head
)->ds_uncompressed_bytes
,
4210 dsl_dataset_phys(clone
)->ds_uncompressed_bytes
);
4211 SWITCH64(dsl_dataset_phys(origin_head
)->ds_unique_bytes
,
4212 dsl_dataset_phys(clone
)->ds_unique_bytes
);
4214 /* apply any parent delta for change in unconsumed refreservation */
4215 dsl_dir_diduse_space(origin_head
->ds_dir
, DD_USED_REFRSRV
,
4216 unused_refres_delta
, 0, 0, tx
);
4221 dsl_deadlist_close(&clone
->ds_deadlist
);
4222 dsl_deadlist_close(&origin_head
->ds_deadlist
);
4223 SWITCH64(dsl_dataset_phys(origin_head
)->ds_deadlist_obj
,
4224 dsl_dataset_phys(clone
)->ds_deadlist_obj
);
4225 dsl_deadlist_open(&clone
->ds_deadlist
, dp
->dp_meta_objset
,
4226 dsl_dataset_phys(clone
)->ds_deadlist_obj
);
4227 dsl_deadlist_open(&origin_head
->ds_deadlist
, dp
->dp_meta_objset
,
4228 dsl_dataset_phys(origin_head
)->ds_deadlist_obj
);
4229 dsl_dataset_swap_remap_deadlists(clone
, origin_head
, tx
);
4232 * If there is a bookmark at the origin, its "next dataset" is
4233 * changing, so we need to reset its FBN.
4235 dsl_bookmark_next_changed(origin_head
, origin_head
->ds_prev
, tx
);
4237 dsl_scan_ds_clone_swapped(origin_head
, clone
, tx
);
4240 * Destroy any livelists associated with the clone or the origin,
4241 * since after the swap the corresponding livelists are no longer
4244 dsl_dir_remove_livelist(clone
->ds_dir
, tx
, B_TRUE
);
4245 dsl_dir_remove_livelist(origin_head
->ds_dir
, tx
, B_TRUE
);
4247 spa_history_log_internal_ds(clone
, "clone swap", tx
,
4248 "parent=%s", origin_head
->ds_dir
->dd_myname
);
4252 * Given a pool name and a dataset object number in that pool,
4253 * return the name of that dataset.
4256 dsl_dsobj_to_dsname(char *pname
, uint64_t obj
, char *buf
)
4262 error
= dsl_pool_hold(pname
, FTAG
, &dp
);
4266 error
= dsl_dataset_hold_obj(dp
, obj
, FTAG
, &ds
);
4268 dsl_dataset_name(ds
, buf
);
4269 dsl_dataset_rele(ds
, FTAG
);
4271 dsl_pool_rele(dp
, FTAG
);
4277 dsl_dataset_check_quota(dsl_dataset_t
*ds
, boolean_t check_quota
,
4278 uint64_t asize
, uint64_t inflight
, uint64_t *used
, uint64_t *ref_rsrv
)
4282 ASSERT3S(asize
, >, 0);
4285 * *ref_rsrv is the portion of asize that will come from any
4286 * unconsumed refreservation space.
4290 mutex_enter(&ds
->ds_lock
);
4292 * Make a space adjustment for reserved bytes.
4294 if (ds
->ds_reserved
> dsl_dataset_phys(ds
)->ds_unique_bytes
) {
4296 ds
->ds_reserved
- dsl_dataset_phys(ds
)->ds_unique_bytes
);
4298 (ds
->ds_reserved
- dsl_dataset_phys(ds
)->ds_unique_bytes
);
4300 asize
- MIN(asize
, parent_delta(ds
, asize
+ inflight
));
4303 if (!check_quota
|| ds
->ds_quota
== 0) {
4304 mutex_exit(&ds
->ds_lock
);
4308 * If they are requesting more space, and our current estimate
4309 * is over quota, they get to try again unless the actual
4310 * on-disk is over quota and there are no pending changes (which
4311 * may free up space for us).
4313 if (dsl_dataset_phys(ds
)->ds_referenced_bytes
+ inflight
>=
4316 dsl_dataset_phys(ds
)->ds_referenced_bytes
< ds
->ds_quota
)
4317 error
= SET_ERROR(ERESTART
);
4319 error
= SET_ERROR(EDQUOT
);
4321 mutex_exit(&ds
->ds_lock
);
4326 typedef struct dsl_dataset_set_qr_arg
{
4327 const char *ddsqra_name
;
4328 zprop_source_t ddsqra_source
;
4329 uint64_t ddsqra_value
;
4330 } dsl_dataset_set_qr_arg_t
;
4334 dsl_dataset_set_refquota_check(void *arg
, dmu_tx_t
*tx
)
4336 dsl_dataset_set_qr_arg_t
*ddsqra
= arg
;
4337 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
4342 if (spa_version(dp
->dp_spa
) < SPA_VERSION_REFQUOTA
)
4343 return (SET_ERROR(ENOTSUP
));
4345 error
= dsl_dataset_hold(dp
, ddsqra
->ddsqra_name
, FTAG
, &ds
);
4349 if (ds
->ds_is_snapshot
) {
4350 dsl_dataset_rele(ds
, FTAG
);
4351 return (SET_ERROR(EINVAL
));
4354 error
= dsl_prop_predict(ds
->ds_dir
,
4355 zfs_prop_to_name(ZFS_PROP_REFQUOTA
),
4356 ddsqra
->ddsqra_source
, ddsqra
->ddsqra_value
, &newval
);
4358 dsl_dataset_rele(ds
, FTAG
);
4363 dsl_dataset_rele(ds
, FTAG
);
4367 if (newval
< dsl_dataset_phys(ds
)->ds_referenced_bytes
||
4368 newval
< ds
->ds_reserved
) {
4369 dsl_dataset_rele(ds
, FTAG
);
4370 return (SET_ERROR(ENOSPC
));
4373 dsl_dataset_rele(ds
, FTAG
);
4378 dsl_dataset_set_refquota_sync(void *arg
, dmu_tx_t
*tx
)
4380 dsl_dataset_set_qr_arg_t
*ddsqra
= arg
;
4381 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
4382 dsl_dataset_t
*ds
= NULL
;
4385 VERIFY0(dsl_dataset_hold(dp
, ddsqra
->ddsqra_name
, FTAG
, &ds
));
4387 dsl_prop_set_sync_impl(ds
,
4388 zfs_prop_to_name(ZFS_PROP_REFQUOTA
),
4389 ddsqra
->ddsqra_source
, sizeof (ddsqra
->ddsqra_value
), 1,
4390 &ddsqra
->ddsqra_value
, tx
);
4392 VERIFY0(dsl_prop_get_int_ds(ds
,
4393 zfs_prop_to_name(ZFS_PROP_REFQUOTA
), &newval
));
4395 if (ds
->ds_quota
!= newval
) {
4396 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
4397 ds
->ds_quota
= newval
;
4399 dsl_dataset_rele(ds
, FTAG
);
4403 dsl_dataset_set_refquota(const char *dsname
, zprop_source_t source
,
4406 dsl_dataset_set_qr_arg_t ddsqra
;
4408 ddsqra
.ddsqra_name
= dsname
;
4409 ddsqra
.ddsqra_source
= source
;
4410 ddsqra
.ddsqra_value
= refquota
;
4412 return (dsl_sync_task(dsname
, dsl_dataset_set_refquota_check
,
4413 dsl_dataset_set_refquota_sync
, &ddsqra
, 0,
4414 ZFS_SPACE_CHECK_EXTRA_RESERVED
));
4418 dsl_dataset_set_refreservation_check(void *arg
, dmu_tx_t
*tx
)
4420 dsl_dataset_set_qr_arg_t
*ddsqra
= arg
;
4421 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
4424 uint64_t newval
, unique
;
4426 if (spa_version(dp
->dp_spa
) < SPA_VERSION_REFRESERVATION
)
4427 return (SET_ERROR(ENOTSUP
));
4429 error
= dsl_dataset_hold(dp
, ddsqra
->ddsqra_name
, FTAG
, &ds
);
4433 if (ds
->ds_is_snapshot
) {
4434 dsl_dataset_rele(ds
, FTAG
);
4435 return (SET_ERROR(EINVAL
));
4438 error
= dsl_prop_predict(ds
->ds_dir
,
4439 zfs_prop_to_name(ZFS_PROP_REFRESERVATION
),
4440 ddsqra
->ddsqra_source
, ddsqra
->ddsqra_value
, &newval
);
4442 dsl_dataset_rele(ds
, FTAG
);
4447 * If we are doing the preliminary check in open context, the
4448 * space estimates may be inaccurate.
4450 if (!dmu_tx_is_syncing(tx
)) {
4451 dsl_dataset_rele(ds
, FTAG
);
4455 mutex_enter(&ds
->ds_lock
);
4456 if (!DS_UNIQUE_IS_ACCURATE(ds
))
4457 dsl_dataset_recalc_head_uniq(ds
);
4458 unique
= dsl_dataset_phys(ds
)->ds_unique_bytes
;
4459 mutex_exit(&ds
->ds_lock
);
4461 if (MAX(unique
, newval
) > MAX(unique
, ds
->ds_reserved
)) {
4462 uint64_t delta
= MAX(unique
, newval
) -
4463 MAX(unique
, ds
->ds_reserved
);
4466 dsl_dir_space_available(ds
->ds_dir
, NULL
, 0, B_TRUE
) ||
4467 (ds
->ds_quota
> 0 && newval
> ds
->ds_quota
)) {
4468 dsl_dataset_rele(ds
, FTAG
);
4469 return (SET_ERROR(ENOSPC
));
4473 dsl_dataset_rele(ds
, FTAG
);
4478 dsl_dataset_set_refreservation_sync_impl(dsl_dataset_t
*ds
,
4479 zprop_source_t source
, uint64_t value
, dmu_tx_t
*tx
)
4485 dsl_prop_set_sync_impl(ds
, zfs_prop_to_name(ZFS_PROP_REFRESERVATION
),
4486 source
, sizeof (value
), 1, &value
, tx
);
4488 VERIFY0(dsl_prop_get_int_ds(ds
,
4489 zfs_prop_to_name(ZFS_PROP_REFRESERVATION
), &newval
));
4491 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
4492 mutex_enter(&ds
->ds_dir
->dd_lock
);
4493 mutex_enter(&ds
->ds_lock
);
4494 ASSERT(DS_UNIQUE_IS_ACCURATE(ds
));
4495 unique
= dsl_dataset_phys(ds
)->ds_unique_bytes
;
4496 delta
= MAX(0, (int64_t)(newval
- unique
)) -
4497 MAX(0, (int64_t)(ds
->ds_reserved
- unique
));
4498 ds
->ds_reserved
= newval
;
4499 mutex_exit(&ds
->ds_lock
);
4501 dsl_dir_diduse_space(ds
->ds_dir
, DD_USED_REFRSRV
, delta
, 0, 0, tx
);
4502 mutex_exit(&ds
->ds_dir
->dd_lock
);
4506 dsl_dataset_set_refreservation_sync(void *arg
, dmu_tx_t
*tx
)
4508 dsl_dataset_set_qr_arg_t
*ddsqra
= arg
;
4509 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
4510 dsl_dataset_t
*ds
= NULL
;
4512 VERIFY0(dsl_dataset_hold(dp
, ddsqra
->ddsqra_name
, FTAG
, &ds
));
4513 dsl_dataset_set_refreservation_sync_impl(ds
,
4514 ddsqra
->ddsqra_source
, ddsqra
->ddsqra_value
, tx
);
4515 dsl_dataset_rele(ds
, FTAG
);
4519 dsl_dataset_set_refreservation(const char *dsname
, zprop_source_t source
,
4520 uint64_t refreservation
)
4522 dsl_dataset_set_qr_arg_t ddsqra
;
4524 ddsqra
.ddsqra_name
= dsname
;
4525 ddsqra
.ddsqra_source
= source
;
4526 ddsqra
.ddsqra_value
= refreservation
;
4528 return (dsl_sync_task(dsname
, dsl_dataset_set_refreservation_check
,
4529 dsl_dataset_set_refreservation_sync
, &ddsqra
, 0,
4530 ZFS_SPACE_CHECK_EXTRA_RESERVED
));
4533 typedef struct dsl_dataset_set_compression_arg
{
4534 const char *ddsca_name
;
4535 zprop_source_t ddsca_source
;
4536 uint64_t ddsca_value
;
4537 } dsl_dataset_set_compression_arg_t
;
4540 dsl_dataset_set_compression_check(void *arg
, dmu_tx_t
*tx
)
4542 dsl_dataset_set_compression_arg_t
*ddsca
= arg
;
4543 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
4545 uint64_t compval
= ZIO_COMPRESS_ALGO(ddsca
->ddsca_value
);
4546 spa_feature_t f
= zio_compress_to_feature(compval
);
4548 if (f
== SPA_FEATURE_NONE
)
4549 return (SET_ERROR(EINVAL
));
4551 if (!spa_feature_is_enabled(dp
->dp_spa
, f
))
4552 return (SET_ERROR(ENOTSUP
));
4558 dsl_dataset_set_compression_sync(void *arg
, dmu_tx_t
*tx
)
4560 dsl_dataset_set_compression_arg_t
*ddsca
= arg
;
4561 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
4562 dsl_dataset_t
*ds
= NULL
;
4564 uint64_t compval
= ZIO_COMPRESS_ALGO(ddsca
->ddsca_value
);
4565 spa_feature_t f
= zio_compress_to_feature(compval
);
4566 ASSERT3S(f
, !=, SPA_FEATURE_NONE
);
4567 ASSERT3S(spa_feature_table
[f
].fi_type
, ==, ZFEATURE_TYPE_BOOLEAN
);
4569 VERIFY0(dsl_dataset_hold(dp
, ddsca
->ddsca_name
, FTAG
, &ds
));
4570 if (zfeature_active(f
, ds
->ds_feature
[f
]) != B_TRUE
) {
4571 ds
->ds_feature_activation
[f
] = (void *)B_TRUE
;
4572 dsl_dataset_activate_feature(ds
->ds_object
, f
,
4573 ds
->ds_feature_activation
[f
], tx
);
4574 ds
->ds_feature
[f
] = ds
->ds_feature_activation
[f
];
4576 dsl_dataset_rele(ds
, FTAG
);
4580 dsl_dataset_set_compression(const char *dsname
, zprop_source_t source
,
4581 uint64_t compression
)
4583 dsl_dataset_set_compression_arg_t ddsca
;
4586 * The sync task is only required for zstd in order to activate
4587 * the feature flag when the property is first set.
4589 if (ZIO_COMPRESS_ALGO(compression
) != ZIO_COMPRESS_ZSTD
)
4592 ddsca
.ddsca_name
= dsname
;
4593 ddsca
.ddsca_source
= source
;
4594 ddsca
.ddsca_value
= compression
;
4596 return (dsl_sync_task(dsname
, dsl_dataset_set_compression_check
,
4597 dsl_dataset_set_compression_sync
, &ddsca
, 0,
4598 ZFS_SPACE_CHECK_EXTRA_RESERVED
));
4602 * Return (in *usedp) the amount of space referenced by "new" that was not
4603 * referenced at the time the bookmark corresponds to. "New" may be a
4604 * snapshot or a head. The bookmark must be before new, in
4605 * new's filesystem (or its origin) -- caller verifies this.
4607 * The written space is calculated by considering two components: First, we
4608 * ignore any freed space, and calculate the written as new's used space
4609 * minus old's used space. Next, we add in the amount of space that was freed
4610 * between the two time points, thus reducing new's used space relative to
4611 * old's. Specifically, this is the space that was born before
4612 * zbm_creation_txg, and freed before new (ie. on new's deadlist or a
4613 * previous deadlist).
4615 * space freed [---------------------]
4616 * snapshots ---O-------O--------O-------O------
4619 * Note, the bookmark's zbm_*_bytes_refd must be valid, but if the HAS_FBN
4620 * flag is not set, we will calculate the freed_before_next based on the
4621 * next snapshot's deadlist, rather than using zbm_*_freed_before_next_snap.
4624 dsl_dataset_space_written_impl(zfs_bookmark_phys_t
*bmp
,
4625 dsl_dataset_t
*new, uint64_t *usedp
, uint64_t *compp
, uint64_t *uncompp
)
4628 dsl_pool_t
*dp
= new->ds_dir
->dd_pool
;
4630 ASSERT(dsl_pool_config_held(dp
));
4631 if (dsl_dataset_is_snapshot(new)) {
4632 ASSERT3U(bmp
->zbm_creation_txg
, <,
4633 dsl_dataset_phys(new)->ds_creation_txg
);
4637 *usedp
+= dsl_dataset_phys(new)->ds_referenced_bytes
;
4638 *usedp
-= bmp
->zbm_referenced_bytes_refd
;
4641 *compp
+= dsl_dataset_phys(new)->ds_compressed_bytes
;
4642 *compp
-= bmp
->zbm_compressed_bytes_refd
;
4645 *uncompp
+= dsl_dataset_phys(new)->ds_uncompressed_bytes
;
4646 *uncompp
-= bmp
->zbm_uncompressed_bytes_refd
;
4648 dsl_dataset_t
*snap
= new;
4650 while (dsl_dataset_phys(snap
)->ds_prev_snap_txg
>
4651 bmp
->zbm_creation_txg
) {
4652 uint64_t used
, comp
, uncomp
;
4654 dsl_deadlist_space_range(&snap
->ds_deadlist
,
4655 0, bmp
->zbm_creation_txg
,
4656 &used
, &comp
, &uncomp
);
4661 uint64_t snapobj
= dsl_dataset_phys(snap
)->ds_prev_snap_obj
;
4663 dsl_dataset_rele(snap
, FTAG
);
4664 err
= dsl_dataset_hold_obj(dp
, snapobj
, FTAG
, &snap
);
4670 * We might not have the FBN if we are calculating written from
4671 * a snapshot (because we didn't know the correct "next" snapshot
4674 if (bmp
->zbm_flags
& ZBM_FLAG_HAS_FBN
) {
4675 *usedp
+= bmp
->zbm_referenced_freed_before_next_snap
;
4676 *compp
+= bmp
->zbm_compressed_freed_before_next_snap
;
4677 *uncompp
+= bmp
->zbm_uncompressed_freed_before_next_snap
;
4679 ASSERT3U(dsl_dataset_phys(snap
)->ds_prev_snap_txg
, ==,
4680 bmp
->zbm_creation_txg
);
4681 uint64_t used
, comp
, uncomp
;
4682 dsl_deadlist_space(&snap
->ds_deadlist
, &used
, &comp
, &uncomp
);
4688 dsl_dataset_rele(snap
, FTAG
);
4693 * Return (in *usedp) the amount of space written in new that was not
4694 * present at the time the bookmark corresponds to. New may be a
4695 * snapshot or the head. Old must be a bookmark before new, in
4696 * new's filesystem (or its origin) -- caller verifies this.
4699 dsl_dataset_space_written_bookmark(zfs_bookmark_phys_t
*bmp
,
4700 dsl_dataset_t
*new, uint64_t *usedp
, uint64_t *compp
, uint64_t *uncompp
)
4702 if (!(bmp
->zbm_flags
& ZBM_FLAG_HAS_FBN
))
4703 return (SET_ERROR(ENOTSUP
));
4704 return (dsl_dataset_space_written_impl(bmp
, new,
4705 usedp
, compp
, uncompp
));
4709 * Return (in *usedp) the amount of space written in new that is not
4710 * present in oldsnap. New may be a snapshot or the head. Old must be
4711 * a snapshot before new, in new's filesystem (or its origin). If not then
4712 * fail and return EINVAL.
4715 dsl_dataset_space_written(dsl_dataset_t
*oldsnap
, dsl_dataset_t
*new,
4716 uint64_t *usedp
, uint64_t *compp
, uint64_t *uncompp
)
4718 if (!dsl_dataset_is_before(new, oldsnap
, 0))
4719 return (SET_ERROR(EINVAL
));
4721 zfs_bookmark_phys_t zbm
= { 0 };
4722 dsl_dataset_phys_t
*dsp
= dsl_dataset_phys(oldsnap
);
4723 zbm
.zbm_guid
= dsp
->ds_guid
;
4724 zbm
.zbm_creation_txg
= dsp
->ds_creation_txg
;
4725 zbm
.zbm_creation_time
= dsp
->ds_creation_time
;
4726 zbm
.zbm_referenced_bytes_refd
= dsp
->ds_referenced_bytes
;
4727 zbm
.zbm_compressed_bytes_refd
= dsp
->ds_compressed_bytes
;
4728 zbm
.zbm_uncompressed_bytes_refd
= dsp
->ds_uncompressed_bytes
;
4731 * If oldsnap is the origin (or origin's origin, ...) of new,
4732 * we can't easily calculate the effective FBN. Therefore,
4733 * we do not set ZBM_FLAG_HAS_FBN, so that the _impl will calculate
4734 * it relative to the correct "next": the next snapshot towards "new",
4735 * rather than the next snapshot in oldsnap's dsl_dir.
4737 return (dsl_dataset_space_written_impl(&zbm
, new,
4738 usedp
, compp
, uncompp
));
4742 * Return (in *usedp) the amount of space that will be reclaimed if firstsnap,
4743 * lastsnap, and all snapshots in between are deleted.
4745 * blocks that would be freed [---------------------------]
4746 * snapshots ---O-------O--------O-------O--------O
4747 * firstsnap lastsnap
4749 * This is the set of blocks that were born after the snap before firstsnap,
4750 * (birth > firstsnap->prev_snap_txg) and died before the snap after the
4751 * last snap (ie, is on lastsnap->ds_next->ds_deadlist or an earlier deadlist).
4752 * We calculate this by iterating over the relevant deadlists (from the snap
4753 * after lastsnap, backward to the snap after firstsnap), summing up the
4754 * space on the deadlist that was born after the snap before firstsnap.
4757 dsl_dataset_space_wouldfree(dsl_dataset_t
*firstsnap
,
4758 dsl_dataset_t
*lastsnap
,
4759 uint64_t *usedp
, uint64_t *compp
, uint64_t *uncompp
)
4763 dsl_pool_t
*dp
= firstsnap
->ds_dir
->dd_pool
;
4765 ASSERT(firstsnap
->ds_is_snapshot
);
4766 ASSERT(lastsnap
->ds_is_snapshot
);
4769 * Check that the snapshots are in the same dsl_dir, and firstsnap
4770 * is before lastsnap.
4772 if (firstsnap
->ds_dir
!= lastsnap
->ds_dir
||
4773 dsl_dataset_phys(firstsnap
)->ds_creation_txg
>
4774 dsl_dataset_phys(lastsnap
)->ds_creation_txg
)
4775 return (SET_ERROR(EINVAL
));
4777 *usedp
= *compp
= *uncompp
= 0;
4779 snapobj
= dsl_dataset_phys(lastsnap
)->ds_next_snap_obj
;
4780 while (snapobj
!= firstsnap
->ds_object
) {
4782 uint64_t used
, comp
, uncomp
;
4784 err
= dsl_dataset_hold_obj(dp
, snapobj
, FTAG
, &ds
);
4788 dsl_deadlist_space_range(&ds
->ds_deadlist
,
4789 dsl_dataset_phys(firstsnap
)->ds_prev_snap_txg
, UINT64_MAX
,
4790 &used
, &comp
, &uncomp
);
4795 snapobj
= dsl_dataset_phys(ds
)->ds_prev_snap_obj
;
4796 ASSERT3U(snapobj
, !=, 0);
4797 dsl_dataset_rele(ds
, FTAG
);
4803 * Return TRUE if 'earlier' is an earlier snapshot in 'later's timeline.
4804 * For example, they could both be snapshots of the same filesystem, and
4805 * 'earlier' is before 'later'. Or 'earlier' could be the origin of
4806 * 'later's filesystem. Or 'earlier' could be an older snapshot in the origin's
4807 * filesystem. Or 'earlier' could be the origin's origin.
4809 * If non-zero, earlier_txg is used instead of earlier's ds_creation_txg.
4812 dsl_dataset_is_before(dsl_dataset_t
*later
, dsl_dataset_t
*earlier
,
4813 uint64_t earlier_txg
)
4815 dsl_pool_t
*dp
= later
->ds_dir
->dd_pool
;
4819 ASSERT(dsl_pool_config_held(dp
));
4820 ASSERT(earlier
->ds_is_snapshot
|| earlier_txg
!= 0);
4822 if (earlier_txg
== 0)
4823 earlier_txg
= dsl_dataset_phys(earlier
)->ds_creation_txg
;
4825 if (later
->ds_is_snapshot
&&
4826 earlier_txg
>= dsl_dataset_phys(later
)->ds_creation_txg
)
4829 if (later
->ds_dir
== earlier
->ds_dir
)
4833 * We check dd_origin_obj explicitly here rather than using
4834 * dsl_dir_is_clone() so that we will return TRUE if "earlier"
4835 * is $ORIGIN@$ORIGIN. dsl_dataset_space_written() depends on
4838 if (dsl_dir_phys(later
->ds_dir
)->dd_origin_obj
== 0)
4841 dsl_dataset_t
*origin
;
4842 error
= dsl_dataset_hold_obj(dp
,
4843 dsl_dir_phys(later
->ds_dir
)->dd_origin_obj
, FTAG
, &origin
);
4846 if (dsl_dataset_phys(origin
)->ds_creation_txg
== earlier_txg
&&
4847 origin
->ds_dir
== earlier
->ds_dir
) {
4848 dsl_dataset_rele(origin
, FTAG
);
4851 ret
= dsl_dataset_is_before(origin
, earlier
, earlier_txg
);
4852 dsl_dataset_rele(origin
, FTAG
);
4857 dsl_dataset_zapify(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
4859 objset_t
*mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
4860 dmu_object_zapify(mos
, ds
->ds_object
, DMU_OT_DSL_DATASET
, tx
);
4864 dsl_dataset_is_zapified(dsl_dataset_t
*ds
)
4866 dmu_object_info_t doi
;
4868 dmu_object_info_from_db(ds
->ds_dbuf
, &doi
);
4869 return (doi
.doi_type
== DMU_OTN_ZAP_METADATA
);
4873 dsl_dataset_has_resume_receive_state(dsl_dataset_t
*ds
)
4875 return (dsl_dataset_is_zapified(ds
) &&
4876 zap_contains(ds
->ds_dir
->dd_pool
->dp_meta_objset
,
4877 ds
->ds_object
, DS_FIELD_RESUME_TOGUID
) == 0);
4881 dsl_dataset_get_remap_deadlist_object(dsl_dataset_t
*ds
)
4883 uint64_t remap_deadlist_obj
;
4886 if (!dsl_dataset_is_zapified(ds
))
4889 err
= zap_lookup(ds
->ds_dir
->dd_pool
->dp_meta_objset
, ds
->ds_object
,
4890 DS_FIELD_REMAP_DEADLIST
, sizeof (remap_deadlist_obj
), 1,
4891 &remap_deadlist_obj
);
4894 VERIFY3S(err
, ==, ENOENT
);
4898 ASSERT(remap_deadlist_obj
!= 0);
4899 return (remap_deadlist_obj
);
4903 dsl_dataset_remap_deadlist_exists(dsl_dataset_t
*ds
)
4905 EQUIV(dsl_deadlist_is_open(&ds
->ds_remap_deadlist
),
4906 dsl_dataset_get_remap_deadlist_object(ds
) != 0);
4907 return (dsl_deadlist_is_open(&ds
->ds_remap_deadlist
));
4911 dsl_dataset_set_remap_deadlist_object(dsl_dataset_t
*ds
, uint64_t obj
,
4915 dsl_dataset_zapify(ds
, tx
);
4916 VERIFY0(zap_add(ds
->ds_dir
->dd_pool
->dp_meta_objset
, ds
->ds_object
,
4917 DS_FIELD_REMAP_DEADLIST
, sizeof (obj
), 1, &obj
, tx
));
4921 dsl_dataset_unset_remap_deadlist_object(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
4923 VERIFY0(zap_remove(ds
->ds_dir
->dd_pool
->dp_meta_objset
,
4924 ds
->ds_object
, DS_FIELD_REMAP_DEADLIST
, tx
));
4928 dsl_dataset_destroy_remap_deadlist(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
4930 uint64_t remap_deadlist_object
;
4931 spa_t
*spa
= ds
->ds_dir
->dd_pool
->dp_spa
;
4933 ASSERT(dmu_tx_is_syncing(tx
));
4934 ASSERT(dsl_dataset_remap_deadlist_exists(ds
));
4936 remap_deadlist_object
= ds
->ds_remap_deadlist
.dl_object
;
4937 dsl_deadlist_close(&ds
->ds_remap_deadlist
);
4938 dsl_deadlist_free(spa_meta_objset(spa
), remap_deadlist_object
, tx
);
4939 dsl_dataset_unset_remap_deadlist_object(ds
, tx
);
4940 spa_feature_decr(spa
, SPA_FEATURE_OBSOLETE_COUNTS
, tx
);
4944 dsl_dataset_create_remap_deadlist(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
4946 uint64_t remap_deadlist_obj
;
4947 spa_t
*spa
= ds
->ds_dir
->dd_pool
->dp_spa
;
4949 ASSERT(dmu_tx_is_syncing(tx
));
4950 ASSERT(MUTEX_HELD(&ds
->ds_remap_deadlist_lock
));
4952 * Currently we only create remap deadlists when there are indirect
4953 * vdevs with referenced mappings.
4955 ASSERT(spa_feature_is_active(spa
, SPA_FEATURE_DEVICE_REMOVAL
));
4957 remap_deadlist_obj
= dsl_deadlist_clone(
4958 &ds
->ds_deadlist
, UINT64_MAX
,
4959 dsl_dataset_phys(ds
)->ds_prev_snap_obj
, tx
);
4960 dsl_dataset_set_remap_deadlist_object(ds
,
4961 remap_deadlist_obj
, tx
);
4962 dsl_deadlist_open(&ds
->ds_remap_deadlist
, spa_meta_objset(spa
),
4963 remap_deadlist_obj
);
4964 spa_feature_incr(spa
, SPA_FEATURE_OBSOLETE_COUNTS
, tx
);
4968 dsl_dataset_activate_redaction(dsl_dataset_t
*ds
, uint64_t *redact_snaps
,
4969 uint64_t num_redact_snaps
, dmu_tx_t
*tx
)
4971 uint64_t dsobj
= ds
->ds_object
;
4972 struct feature_type_uint64_array_arg
*ftuaa
=
4973 kmem_zalloc(sizeof (*ftuaa
), KM_SLEEP
);
4974 ftuaa
->length
= (int64_t)num_redact_snaps
;
4975 if (num_redact_snaps
> 0) {
4976 ftuaa
->array
= kmem_alloc(num_redact_snaps
* sizeof (uint64_t),
4978 memcpy(ftuaa
->array
, redact_snaps
, num_redact_snaps
*
4981 dsl_dataset_activate_feature(dsobj
, SPA_FEATURE_REDACTED_DATASETS
,
4983 ds
->ds_feature
[SPA_FEATURE_REDACTED_DATASETS
] = ftuaa
;
4987 * Find and return (in *oldest_dsobj) the oldest snapshot of the dsobj
4988 * dataset whose birth time is >= min_txg.
4991 dsl_dataset_oldest_snapshot(spa_t
*spa
, uint64_t head_ds
, uint64_t min_txg
,
4992 uint64_t *oldest_dsobj
)
4995 dsl_pool_t
*dp
= spa
->spa_dsl_pool
;
4997 int error
= dsl_dataset_hold_obj(dp
, head_ds
, FTAG
, &ds
);
5001 uint64_t prev_obj
= dsl_dataset_phys(ds
)->ds_prev_snap_obj
;
5002 uint64_t prev_obj_txg
= dsl_dataset_phys(ds
)->ds_prev_snap_txg
;
5004 while (prev_obj
!= 0 && min_txg
< prev_obj_txg
) {
5005 dsl_dataset_rele(ds
, FTAG
);
5006 if ((error
= dsl_dataset_hold_obj(dp
, prev_obj
,
5009 prev_obj_txg
= dsl_dataset_phys(ds
)->ds_prev_snap_txg
;
5010 prev_obj
= dsl_dataset_phys(ds
)->ds_prev_snap_obj
;
5012 *oldest_dsobj
= ds
->ds_object
;
5013 dsl_dataset_rele(ds
, FTAG
);
5017 ZFS_MODULE_PARAM(zfs
, zfs_
, max_recordsize
, UINT
, ZMOD_RW
,
5018 "Max allowed record size");
5020 ZFS_MODULE_PARAM(zfs
, zfs_
, allow_redacted_dataset_mount
, INT
, ZMOD_RW
,
5021 "Allow mounting of redacted datasets");
5023 ZFS_MODULE_PARAM(zfs
, zfs_
, snapshot_history_enabled
, INT
, ZMOD_RW
,
5024 "Include snapshot events in pool history/events");
5026 EXPORT_SYMBOL(dsl_dataset_hold
);
5027 EXPORT_SYMBOL(dsl_dataset_hold_flags
);
5028 EXPORT_SYMBOL(dsl_dataset_hold_obj
);
5029 EXPORT_SYMBOL(dsl_dataset_hold_obj_flags
);
5030 EXPORT_SYMBOL(dsl_dataset_own
);
5031 EXPORT_SYMBOL(dsl_dataset_own_obj
);
5032 EXPORT_SYMBOL(dsl_dataset_name
);
5033 EXPORT_SYMBOL(dsl_dataset_rele
);
5034 EXPORT_SYMBOL(dsl_dataset_rele_flags
);
5035 EXPORT_SYMBOL(dsl_dataset_disown
);
5036 EXPORT_SYMBOL(dsl_dataset_tryown
);
5037 EXPORT_SYMBOL(dsl_dataset_create_sync
);
5038 EXPORT_SYMBOL(dsl_dataset_create_sync_dd
);
5039 EXPORT_SYMBOL(dsl_dataset_snapshot_check
);
5040 EXPORT_SYMBOL(dsl_dataset_snapshot_sync
);
5041 EXPORT_SYMBOL(dsl_dataset_promote
);
5042 EXPORT_SYMBOL(dsl_dataset_user_hold
);
5043 EXPORT_SYMBOL(dsl_dataset_user_release
);
5044 EXPORT_SYMBOL(dsl_dataset_get_holds
);
5045 EXPORT_SYMBOL(dsl_dataset_get_blkptr
);
5046 EXPORT_SYMBOL(dsl_dataset_get_spa
);
5047 EXPORT_SYMBOL(dsl_dataset_modified_since_snap
);
5048 EXPORT_SYMBOL(dsl_dataset_space_written
);
5049 EXPORT_SYMBOL(dsl_dataset_space_wouldfree
);
5050 EXPORT_SYMBOL(dsl_dataset_sync
);
5051 EXPORT_SYMBOL(dsl_dataset_block_born
);
5052 EXPORT_SYMBOL(dsl_dataset_block_kill
);
5053 EXPORT_SYMBOL(dsl_dataset_dirty
);
5054 EXPORT_SYMBOL(dsl_dataset_stats
);
5055 EXPORT_SYMBOL(dsl_dataset_fast_stat
);
5056 EXPORT_SYMBOL(dsl_dataset_space
);
5057 EXPORT_SYMBOL(dsl_dataset_fsid_guid
);
5058 EXPORT_SYMBOL(dsl_dsobj_to_dsname
);
5059 EXPORT_SYMBOL(dsl_dataset_check_quota
);
5060 EXPORT_SYMBOL(dsl_dataset_clone_swap_check_impl
);
5061 EXPORT_SYMBOL(dsl_dataset_clone_swap_sync_impl
);