Improve zpool status output, list all affected datasets
[zfs.git] / module / zfs / dsl_dataset.c
blob2d98c2f04d129f14e3bde4fa4a0da1e50c6410eb
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
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>
47 #include <sys/arc.h>
48 #include <sys/zio.h>
49 #include <sys/zap.h>
50 #include <sys/zfeature.h>
51 #include <sys/unique.h>
52 #include <sys/zfs_context.h>
53 #include <sys/zfs_ioctl.h>
54 #include <sys/spa.h>
55 #include <sys/spa_impl.h>
56 #include <sys/vdev.h>
57 #include <sys/zfs_znode.h>
58 #include <sys/zfs_onexit.h>
59 #include <sys/zvol.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>
73 * The SPA supports block sizes up to 16MB. However, very large blocks
74 * can have an impact on i/o latency (e.g. tying up a spinning disk for
75 * ~300ms), and also potentially on the memory allocator. Therefore,
76 * we do not allow the recordsize to be set larger than zfs_max_recordsize
77 * (default 1MB). Larger blocks can be created by changing this tunable,
78 * and pools with larger blocks can always be imported and used, regardless
79 * of this setting.
81 int zfs_max_recordsize = 1 * 1024 * 1024;
82 static int zfs_allow_redacted_dataset_mount = 0;
84 #define SWITCH64(x, y) \
85 { \
86 uint64_t __tmp = (x); \
87 (x) = (y); \
88 (y) = __tmp; \
91 #define DS_REF_MAX (1ULL << 62)
93 static void dsl_dataset_set_remap_deadlist_object(dsl_dataset_t *ds,
94 uint64_t obj, dmu_tx_t *tx);
95 static void dsl_dataset_unset_remap_deadlist_object(dsl_dataset_t *ds,
96 dmu_tx_t *tx);
98 static void unload_zfeature(dsl_dataset_t *ds, spa_feature_t f);
100 extern int spa_asize_inflation;
102 static zil_header_t zero_zil;
105 * Figure out how much of this delta should be propagated to the dsl_dir
106 * layer. If there's a refreservation, that space has already been
107 * partially accounted for in our ancestors.
109 static int64_t
110 parent_delta(dsl_dataset_t *ds, int64_t delta)
112 dsl_dataset_phys_t *ds_phys;
113 uint64_t old_bytes, new_bytes;
115 if (ds->ds_reserved == 0)
116 return (delta);
118 ds_phys = dsl_dataset_phys(ds);
119 old_bytes = MAX(ds_phys->ds_unique_bytes, ds->ds_reserved);
120 new_bytes = MAX(ds_phys->ds_unique_bytes + delta, ds->ds_reserved);
122 ASSERT3U(ABS((int64_t)(new_bytes - old_bytes)), <=, ABS(delta));
123 return (new_bytes - old_bytes);
126 void
127 dsl_dataset_block_born(dsl_dataset_t *ds, const blkptr_t *bp, dmu_tx_t *tx)
129 spa_t *spa = dmu_tx_pool(tx)->dp_spa;
130 int used = bp_get_dsize_sync(spa, bp);
131 int compressed = BP_GET_PSIZE(bp);
132 int uncompressed = BP_GET_UCSIZE(bp);
133 int64_t delta;
134 spa_feature_t f;
136 dprintf_bp(bp, "ds=%p", ds);
138 ASSERT(dmu_tx_is_syncing(tx));
139 /* It could have been compressed away to nothing */
140 if (BP_IS_HOLE(bp) || BP_IS_REDACTED(bp))
141 return;
142 ASSERT(BP_GET_TYPE(bp) != DMU_OT_NONE);
143 ASSERT(DMU_OT_IS_VALID(BP_GET_TYPE(bp)));
144 if (ds == NULL) {
145 dsl_pool_mos_diduse_space(tx->tx_pool,
146 used, compressed, uncompressed);
147 return;
150 ASSERT3U(bp->blk_birth, >, dsl_dataset_phys(ds)->ds_prev_snap_txg);
151 dmu_buf_will_dirty(ds->ds_dbuf, tx);
152 mutex_enter(&ds->ds_lock);
153 delta = parent_delta(ds, used);
154 dsl_dataset_phys(ds)->ds_referenced_bytes += used;
155 dsl_dataset_phys(ds)->ds_compressed_bytes += compressed;
156 dsl_dataset_phys(ds)->ds_uncompressed_bytes += uncompressed;
157 dsl_dataset_phys(ds)->ds_unique_bytes += used;
159 if (BP_GET_LSIZE(bp) > SPA_OLD_MAXBLOCKSIZE) {
160 ds->ds_feature_activation[SPA_FEATURE_LARGE_BLOCKS] =
161 (void *)B_TRUE;
165 f = zio_checksum_to_feature(BP_GET_CHECKSUM(bp));
166 if (f != SPA_FEATURE_NONE) {
167 ASSERT3S(spa_feature_table[f].fi_type, ==,
168 ZFEATURE_TYPE_BOOLEAN);
169 ds->ds_feature_activation[f] = (void *)B_TRUE;
172 f = zio_compress_to_feature(BP_GET_COMPRESS(bp));
173 if (f != SPA_FEATURE_NONE) {
174 ASSERT3S(spa_feature_table[f].fi_type, ==,
175 ZFEATURE_TYPE_BOOLEAN);
176 ds->ds_feature_activation[f] = (void *)B_TRUE;
180 * Track block for livelist, but ignore embedded blocks because
181 * they do not need to be freed.
183 if (dsl_deadlist_is_open(&ds->ds_dir->dd_livelist) &&
184 bp->blk_birth > ds->ds_dir->dd_origin_txg &&
185 !(BP_IS_EMBEDDED(bp))) {
186 ASSERT(dsl_dir_is_clone(ds->ds_dir));
187 ASSERT(spa_feature_is_enabled(spa,
188 SPA_FEATURE_LIVELIST));
189 bplist_append(&ds->ds_dir->dd_pending_allocs, bp);
192 mutex_exit(&ds->ds_lock);
193 dsl_dir_diduse_transfer_space(ds->ds_dir, delta,
194 compressed, uncompressed, used,
195 DD_USED_REFRSRV, DD_USED_HEAD, tx);
199 * Called when the specified segment has been remapped, and is thus no
200 * longer referenced in the head dataset. The vdev must be indirect.
202 * If the segment is referenced by a snapshot, put it on the remap deadlist.
203 * Otherwise, add this segment to the obsolete spacemap.
205 void
206 dsl_dataset_block_remapped(dsl_dataset_t *ds, uint64_t vdev, uint64_t offset,
207 uint64_t size, uint64_t birth, dmu_tx_t *tx)
209 spa_t *spa = ds->ds_dir->dd_pool->dp_spa;
211 ASSERT(dmu_tx_is_syncing(tx));
212 ASSERT(birth <= tx->tx_txg);
213 ASSERT(!ds->ds_is_snapshot);
215 if (birth > dsl_dataset_phys(ds)->ds_prev_snap_txg) {
216 spa_vdev_indirect_mark_obsolete(spa, vdev, offset, size, tx);
217 } else {
218 blkptr_t fakebp;
219 dva_t *dva = &fakebp.blk_dva[0];
221 ASSERT(ds != NULL);
223 mutex_enter(&ds->ds_remap_deadlist_lock);
224 if (!dsl_dataset_remap_deadlist_exists(ds)) {
225 dsl_dataset_create_remap_deadlist(ds, tx);
227 mutex_exit(&ds->ds_remap_deadlist_lock);
229 BP_ZERO(&fakebp);
230 fakebp.blk_birth = birth;
231 DVA_SET_VDEV(dva, vdev);
232 DVA_SET_OFFSET(dva, offset);
233 DVA_SET_ASIZE(dva, size);
234 dsl_deadlist_insert(&ds->ds_remap_deadlist, &fakebp, B_FALSE,
235 tx);
240 dsl_dataset_block_kill(dsl_dataset_t *ds, const blkptr_t *bp, dmu_tx_t *tx,
241 boolean_t async)
243 spa_t *spa = dmu_tx_pool(tx)->dp_spa;
245 int used = bp_get_dsize_sync(spa, bp);
246 int compressed = BP_GET_PSIZE(bp);
247 int uncompressed = BP_GET_UCSIZE(bp);
249 if (BP_IS_HOLE(bp) || BP_IS_REDACTED(bp))
250 return (0);
252 ASSERT(dmu_tx_is_syncing(tx));
253 ASSERT(bp->blk_birth <= tx->tx_txg);
255 if (ds == NULL) {
256 dsl_free(tx->tx_pool, tx->tx_txg, bp);
257 dsl_pool_mos_diduse_space(tx->tx_pool,
258 -used, -compressed, -uncompressed);
259 return (used);
261 ASSERT3P(tx->tx_pool, ==, ds->ds_dir->dd_pool);
263 ASSERT(!ds->ds_is_snapshot);
264 dmu_buf_will_dirty(ds->ds_dbuf, tx);
267 * Track block for livelist, but ignore embedded blocks because
268 * they do not need to be freed.
270 if (dsl_deadlist_is_open(&ds->ds_dir->dd_livelist) &&
271 bp->blk_birth > ds->ds_dir->dd_origin_txg &&
272 !(BP_IS_EMBEDDED(bp))) {
273 ASSERT(dsl_dir_is_clone(ds->ds_dir));
274 ASSERT(spa_feature_is_enabled(spa,
275 SPA_FEATURE_LIVELIST));
276 bplist_append(&ds->ds_dir->dd_pending_frees, bp);
279 if (bp->blk_birth > dsl_dataset_phys(ds)->ds_prev_snap_txg) {
280 int64_t delta;
282 dprintf_bp(bp, "freeing ds=%llu", (u_longlong_t)ds->ds_object);
283 dsl_free(tx->tx_pool, tx->tx_txg, bp);
285 mutex_enter(&ds->ds_lock);
286 ASSERT(dsl_dataset_phys(ds)->ds_unique_bytes >= used ||
287 !DS_UNIQUE_IS_ACCURATE(ds));
288 delta = parent_delta(ds, -used);
289 dsl_dataset_phys(ds)->ds_unique_bytes -= used;
290 mutex_exit(&ds->ds_lock);
291 dsl_dir_diduse_transfer_space(ds->ds_dir,
292 delta, -compressed, -uncompressed, -used,
293 DD_USED_REFRSRV, DD_USED_HEAD, tx);
294 } else {
295 dprintf_bp(bp, "putting on dead list: %s", "");
296 if (async) {
298 * We are here as part of zio's write done callback,
299 * which means we're a zio interrupt thread. We can't
300 * call dsl_deadlist_insert() now because it may block
301 * waiting for I/O. Instead, put bp on the deferred
302 * queue and let dsl_pool_sync() finish the job.
304 bplist_append(&ds->ds_pending_deadlist, bp);
305 } else {
306 dsl_deadlist_insert(&ds->ds_deadlist, bp, B_FALSE, tx);
308 ASSERT3U(ds->ds_prev->ds_object, ==,
309 dsl_dataset_phys(ds)->ds_prev_snap_obj);
310 ASSERT(dsl_dataset_phys(ds->ds_prev)->ds_num_children > 0);
311 /* if (bp->blk_birth > prev prev snap txg) prev unique += bs */
312 if (dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj ==
313 ds->ds_object && bp->blk_birth >
314 dsl_dataset_phys(ds->ds_prev)->ds_prev_snap_txg) {
315 dmu_buf_will_dirty(ds->ds_prev->ds_dbuf, tx);
316 mutex_enter(&ds->ds_prev->ds_lock);
317 dsl_dataset_phys(ds->ds_prev)->ds_unique_bytes += used;
318 mutex_exit(&ds->ds_prev->ds_lock);
320 if (bp->blk_birth > ds->ds_dir->dd_origin_txg) {
321 dsl_dir_transfer_space(ds->ds_dir, used,
322 DD_USED_HEAD, DD_USED_SNAP, tx);
326 dsl_bookmark_block_killed(ds, bp, tx);
328 mutex_enter(&ds->ds_lock);
329 ASSERT3U(dsl_dataset_phys(ds)->ds_referenced_bytes, >=, used);
330 dsl_dataset_phys(ds)->ds_referenced_bytes -= used;
331 ASSERT3U(dsl_dataset_phys(ds)->ds_compressed_bytes, >=, compressed);
332 dsl_dataset_phys(ds)->ds_compressed_bytes -= compressed;
333 ASSERT3U(dsl_dataset_phys(ds)->ds_uncompressed_bytes, >=, uncompressed);
334 dsl_dataset_phys(ds)->ds_uncompressed_bytes -= uncompressed;
335 mutex_exit(&ds->ds_lock);
337 return (used);
340 struct feature_type_uint64_array_arg {
341 uint64_t length;
342 uint64_t *array;
345 static void
346 unload_zfeature(dsl_dataset_t *ds, spa_feature_t f)
348 switch (spa_feature_table[f].fi_type) {
349 case ZFEATURE_TYPE_BOOLEAN:
350 break;
351 case ZFEATURE_TYPE_UINT64_ARRAY:
353 struct feature_type_uint64_array_arg *ftuaa = ds->ds_feature[f];
354 kmem_free(ftuaa->array, ftuaa->length * sizeof (uint64_t));
355 kmem_free(ftuaa, sizeof (*ftuaa));
356 break;
358 default:
359 panic("Invalid zfeature type %d", spa_feature_table[f].fi_type);
363 static int
364 load_zfeature(objset_t *mos, dsl_dataset_t *ds, spa_feature_t f)
366 int err = 0;
367 switch (spa_feature_table[f].fi_type) {
368 case ZFEATURE_TYPE_BOOLEAN:
369 err = zap_contains(mos, ds->ds_object,
370 spa_feature_table[f].fi_guid);
371 if (err == 0) {
372 ds->ds_feature[f] = (void *)B_TRUE;
373 } else {
374 ASSERT3U(err, ==, ENOENT);
375 err = 0;
377 break;
378 case ZFEATURE_TYPE_UINT64_ARRAY:
380 uint64_t int_size, num_int;
381 uint64_t *data;
382 err = zap_length(mos, ds->ds_object,
383 spa_feature_table[f].fi_guid, &int_size, &num_int);
384 if (err != 0) {
385 ASSERT3U(err, ==, ENOENT);
386 err = 0;
387 break;
389 ASSERT3U(int_size, ==, sizeof (uint64_t));
390 data = kmem_alloc(int_size * num_int, KM_SLEEP);
391 VERIFY0(zap_lookup(mos, ds->ds_object,
392 spa_feature_table[f].fi_guid, int_size, num_int, data));
393 struct feature_type_uint64_array_arg *ftuaa =
394 kmem_alloc(sizeof (*ftuaa), KM_SLEEP);
395 ftuaa->length = num_int;
396 ftuaa->array = data;
397 ds->ds_feature[f] = ftuaa;
398 break;
400 default:
401 panic("Invalid zfeature type %d", spa_feature_table[f].fi_type);
403 return (err);
407 * We have to release the fsid synchronously or we risk that a subsequent
408 * mount of the same dataset will fail to unique_insert the fsid. This
409 * failure would manifest itself as the fsid of this dataset changing
410 * between mounts which makes NFS clients quite unhappy.
412 static void
413 dsl_dataset_evict_sync(void *dbu)
415 dsl_dataset_t *ds = dbu;
417 ASSERT(ds->ds_owner == NULL);
419 unique_remove(ds->ds_fsid_guid);
422 static void
423 dsl_dataset_evict_async(void *dbu)
425 dsl_dataset_t *ds = dbu;
427 ASSERT(ds->ds_owner == NULL);
429 ds->ds_dbuf = NULL;
431 if (ds->ds_objset != NULL)
432 dmu_objset_evict(ds->ds_objset);
434 if (ds->ds_prev) {
435 dsl_dataset_rele(ds->ds_prev, ds);
436 ds->ds_prev = NULL;
439 dsl_bookmark_fini_ds(ds);
441 bplist_destroy(&ds->ds_pending_deadlist);
442 if (dsl_deadlist_is_open(&ds->ds_deadlist))
443 dsl_deadlist_close(&ds->ds_deadlist);
444 if (dsl_deadlist_is_open(&ds->ds_remap_deadlist))
445 dsl_deadlist_close(&ds->ds_remap_deadlist);
446 if (ds->ds_dir)
447 dsl_dir_async_rele(ds->ds_dir, ds);
449 ASSERT(!list_link_active(&ds->ds_synced_link));
451 for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
452 if (dsl_dataset_feature_is_active(ds, f))
453 unload_zfeature(ds, f);
456 list_destroy(&ds->ds_prop_cbs);
457 mutex_destroy(&ds->ds_lock);
458 mutex_destroy(&ds->ds_opening_lock);
459 mutex_destroy(&ds->ds_sendstream_lock);
460 mutex_destroy(&ds->ds_remap_deadlist_lock);
461 zfs_refcount_destroy(&ds->ds_longholds);
462 rrw_destroy(&ds->ds_bp_rwlock);
464 kmem_free(ds, sizeof (dsl_dataset_t));
468 dsl_dataset_get_snapname(dsl_dataset_t *ds)
470 dsl_dataset_phys_t *headphys;
471 int err;
472 dmu_buf_t *headdbuf;
473 dsl_pool_t *dp = ds->ds_dir->dd_pool;
474 objset_t *mos = dp->dp_meta_objset;
476 if (ds->ds_snapname[0])
477 return (0);
478 if (dsl_dataset_phys(ds)->ds_next_snap_obj == 0)
479 return (0);
481 err = dmu_bonus_hold(mos, dsl_dir_phys(ds->ds_dir)->dd_head_dataset_obj,
482 FTAG, &headdbuf);
483 if (err != 0)
484 return (err);
485 headphys = headdbuf->db_data;
486 err = zap_value_search(dp->dp_meta_objset,
487 headphys->ds_snapnames_zapobj, ds->ds_object, 0, ds->ds_snapname);
488 if (err != 0 && zfs_recover == B_TRUE) {
489 err = 0;
490 (void) snprintf(ds->ds_snapname, sizeof (ds->ds_snapname),
491 "SNAPOBJ=%llu-ERR=%d",
492 (unsigned long long)ds->ds_object, err);
494 dmu_buf_rele(headdbuf, FTAG);
495 return (err);
499 dsl_dataset_snap_lookup(dsl_dataset_t *ds, const char *name, uint64_t *value)
501 objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
502 uint64_t snapobj = dsl_dataset_phys(ds)->ds_snapnames_zapobj;
503 matchtype_t mt = 0;
504 int err;
506 if (dsl_dataset_phys(ds)->ds_flags & DS_FLAG_CI_DATASET)
507 mt = MT_NORMALIZE;
509 err = zap_lookup_norm(mos, snapobj, name, 8, 1,
510 value, mt, NULL, 0, NULL);
511 if (err == ENOTSUP && (mt & MT_NORMALIZE))
512 err = zap_lookup(mos, snapobj, name, 8, 1, value);
513 return (err);
517 dsl_dataset_snap_remove(dsl_dataset_t *ds, const char *name, dmu_tx_t *tx,
518 boolean_t adj_cnt)
520 objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
521 uint64_t snapobj = dsl_dataset_phys(ds)->ds_snapnames_zapobj;
522 matchtype_t mt = 0;
523 int err;
525 dsl_dir_snap_cmtime_update(ds->ds_dir);
527 if (dsl_dataset_phys(ds)->ds_flags & DS_FLAG_CI_DATASET)
528 mt = MT_NORMALIZE;
530 err = zap_remove_norm(mos, snapobj, name, mt, tx);
531 if (err == ENOTSUP && (mt & MT_NORMALIZE))
532 err = zap_remove(mos, snapobj, name, tx);
534 if (err == 0 && adj_cnt)
535 dsl_fs_ss_count_adjust(ds->ds_dir, -1,
536 DD_FIELD_SNAPSHOT_COUNT, tx);
538 return (err);
541 boolean_t
542 dsl_dataset_try_add_ref(dsl_pool_t *dp, dsl_dataset_t *ds, void *tag)
544 dmu_buf_t *dbuf = ds->ds_dbuf;
545 boolean_t result = B_FALSE;
547 if (dbuf != NULL && dmu_buf_try_add_ref(dbuf, dp->dp_meta_objset,
548 ds->ds_object, DMU_BONUS_BLKID, tag)) {
550 if (ds == dmu_buf_get_user(dbuf))
551 result = B_TRUE;
552 else
553 dmu_buf_rele(dbuf, tag);
556 return (result);
560 dsl_dataset_hold_obj(dsl_pool_t *dp, uint64_t dsobj, void *tag,
561 dsl_dataset_t **dsp)
563 objset_t *mos = dp->dp_meta_objset;
564 dmu_buf_t *dbuf;
565 dsl_dataset_t *ds;
566 int err;
567 dmu_object_info_t doi;
569 ASSERT(dsl_pool_config_held(dp));
571 err = dmu_bonus_hold(mos, dsobj, tag, &dbuf);
572 if (err != 0)
573 return (err);
575 /* Make sure dsobj has the correct object type. */
576 dmu_object_info_from_db(dbuf, &doi);
577 if (doi.doi_bonus_type != DMU_OT_DSL_DATASET) {
578 dmu_buf_rele(dbuf, tag);
579 return (SET_ERROR(EINVAL));
582 ds = dmu_buf_get_user(dbuf);
583 if (ds == NULL) {
584 dsl_dataset_t *winner = NULL;
586 ds = kmem_zalloc(sizeof (dsl_dataset_t), KM_SLEEP);
587 ds->ds_dbuf = dbuf;
588 ds->ds_object = dsobj;
589 ds->ds_is_snapshot = dsl_dataset_phys(ds)->ds_num_children != 0;
590 list_link_init(&ds->ds_synced_link);
592 err = dsl_dir_hold_obj(dp, dsl_dataset_phys(ds)->ds_dir_obj,
593 NULL, ds, &ds->ds_dir);
594 if (err != 0) {
595 kmem_free(ds, sizeof (dsl_dataset_t));
596 dmu_buf_rele(dbuf, tag);
597 return (err);
600 mutex_init(&ds->ds_lock, NULL, MUTEX_DEFAULT, NULL);
601 mutex_init(&ds->ds_opening_lock, NULL, MUTEX_DEFAULT, NULL);
602 mutex_init(&ds->ds_sendstream_lock, NULL, MUTEX_DEFAULT, NULL);
603 mutex_init(&ds->ds_remap_deadlist_lock,
604 NULL, MUTEX_DEFAULT, NULL);
605 rrw_init(&ds->ds_bp_rwlock, B_FALSE);
606 zfs_refcount_create(&ds->ds_longholds);
608 bplist_create(&ds->ds_pending_deadlist);
610 list_create(&ds->ds_sendstreams, sizeof (dmu_sendstatus_t),
611 offsetof(dmu_sendstatus_t, dss_link));
613 list_create(&ds->ds_prop_cbs, sizeof (dsl_prop_cb_record_t),
614 offsetof(dsl_prop_cb_record_t, cbr_ds_node));
616 if (doi.doi_type == DMU_OTN_ZAP_METADATA) {
617 spa_feature_t f;
619 for (f = 0; f < SPA_FEATURES; f++) {
620 if (!(spa_feature_table[f].fi_flags &
621 ZFEATURE_FLAG_PER_DATASET))
622 continue;
623 err = load_zfeature(mos, ds, f);
627 if (!ds->ds_is_snapshot) {
628 ds->ds_snapname[0] = '\0';
629 if (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0) {
630 err = dsl_dataset_hold_obj(dp,
631 dsl_dataset_phys(ds)->ds_prev_snap_obj,
632 ds, &ds->ds_prev);
634 err = dsl_bookmark_init_ds(ds);
635 } else {
636 if (zfs_flags & ZFS_DEBUG_SNAPNAMES)
637 err = dsl_dataset_get_snapname(ds);
638 if (err == 0 &&
639 dsl_dataset_phys(ds)->ds_userrefs_obj != 0) {
640 err = zap_count(
641 ds->ds_dir->dd_pool->dp_meta_objset,
642 dsl_dataset_phys(ds)->ds_userrefs_obj,
643 &ds->ds_userrefs);
647 if (err == 0 && !ds->ds_is_snapshot) {
648 err = dsl_prop_get_int_ds(ds,
649 zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
650 &ds->ds_reserved);
651 if (err == 0) {
652 err = dsl_prop_get_int_ds(ds,
653 zfs_prop_to_name(ZFS_PROP_REFQUOTA),
654 &ds->ds_quota);
656 } else {
657 ds->ds_reserved = ds->ds_quota = 0;
660 if (err == 0 && ds->ds_dir->dd_crypto_obj != 0 &&
661 ds->ds_is_snapshot &&
662 zap_contains(mos, dsobj, DS_FIELD_IVSET_GUID) != 0) {
663 dp->dp_spa->spa_errata =
664 ZPOOL_ERRATA_ZOL_8308_ENCRYPTION;
667 dsl_deadlist_open(&ds->ds_deadlist,
668 mos, dsl_dataset_phys(ds)->ds_deadlist_obj);
669 uint64_t remap_deadlist_obj =
670 dsl_dataset_get_remap_deadlist_object(ds);
671 if (remap_deadlist_obj != 0) {
672 dsl_deadlist_open(&ds->ds_remap_deadlist, mos,
673 remap_deadlist_obj);
676 dmu_buf_init_user(&ds->ds_dbu, dsl_dataset_evict_sync,
677 dsl_dataset_evict_async, &ds->ds_dbuf);
678 if (err == 0)
679 winner = dmu_buf_set_user_ie(dbuf, &ds->ds_dbu);
681 if (err != 0 || winner != NULL) {
682 bplist_destroy(&ds->ds_pending_deadlist);
683 dsl_deadlist_close(&ds->ds_deadlist);
684 if (dsl_deadlist_is_open(&ds->ds_remap_deadlist))
685 dsl_deadlist_close(&ds->ds_remap_deadlist);
686 dsl_bookmark_fini_ds(ds);
687 if (ds->ds_prev)
688 dsl_dataset_rele(ds->ds_prev, ds);
689 dsl_dir_rele(ds->ds_dir, ds);
690 for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
691 if (dsl_dataset_feature_is_active(ds, f))
692 unload_zfeature(ds, f);
695 list_destroy(&ds->ds_prop_cbs);
696 list_destroy(&ds->ds_sendstreams);
697 mutex_destroy(&ds->ds_lock);
698 mutex_destroy(&ds->ds_opening_lock);
699 mutex_destroy(&ds->ds_sendstream_lock);
700 mutex_destroy(&ds->ds_remap_deadlist_lock);
701 zfs_refcount_destroy(&ds->ds_longholds);
702 rrw_destroy(&ds->ds_bp_rwlock);
703 kmem_free(ds, sizeof (dsl_dataset_t));
704 if (err != 0) {
705 dmu_buf_rele(dbuf, tag);
706 return (err);
708 ds = winner;
709 } else {
710 ds->ds_fsid_guid =
711 unique_insert(dsl_dataset_phys(ds)->ds_fsid_guid);
712 if (ds->ds_fsid_guid !=
713 dsl_dataset_phys(ds)->ds_fsid_guid) {
714 zfs_dbgmsg("ds_fsid_guid changed from "
715 "%llx to %llx for pool %s dataset id %llu",
716 (long long)
717 dsl_dataset_phys(ds)->ds_fsid_guid,
718 (long long)ds->ds_fsid_guid,
719 spa_name(dp->dp_spa),
720 (u_longlong_t)dsobj);
725 ASSERT3P(ds->ds_dbuf, ==, dbuf);
726 ASSERT3P(dsl_dataset_phys(ds), ==, dbuf->db_data);
727 ASSERT(dsl_dataset_phys(ds)->ds_prev_snap_obj != 0 ||
728 spa_version(dp->dp_spa) < SPA_VERSION_ORIGIN ||
729 dp->dp_origin_snap == NULL || ds == dp->dp_origin_snap);
730 *dsp = ds;
732 return (0);
736 dsl_dataset_create_key_mapping(dsl_dataset_t *ds)
738 dsl_dir_t *dd = ds->ds_dir;
740 if (dd->dd_crypto_obj == 0)
741 return (0);
743 return (spa_keystore_create_mapping(dd->dd_pool->dp_spa,
744 ds, ds, &ds->ds_key_mapping));
748 dsl_dataset_hold_obj_flags(dsl_pool_t *dp, uint64_t dsobj,
749 ds_hold_flags_t flags, void *tag, dsl_dataset_t **dsp)
751 int err;
753 err = dsl_dataset_hold_obj(dp, dsobj, tag, dsp);
754 if (err != 0)
755 return (err);
757 ASSERT3P(*dsp, !=, NULL);
759 if (flags & DS_HOLD_FLAG_DECRYPT) {
760 err = dsl_dataset_create_key_mapping(*dsp);
761 if (err != 0)
762 dsl_dataset_rele(*dsp, tag);
765 return (err);
769 dsl_dataset_hold_flags(dsl_pool_t *dp, const char *name, ds_hold_flags_t flags,
770 void *tag, dsl_dataset_t **dsp)
772 dsl_dir_t *dd;
773 const char *snapname;
774 uint64_t obj;
775 int err = 0;
776 dsl_dataset_t *ds;
778 err = dsl_dir_hold(dp, name, FTAG, &dd, &snapname);
779 if (err != 0)
780 return (err);
782 ASSERT(dsl_pool_config_held(dp));
783 obj = dsl_dir_phys(dd)->dd_head_dataset_obj;
784 if (obj != 0)
785 err = dsl_dataset_hold_obj_flags(dp, obj, flags, tag, &ds);
786 else
787 err = SET_ERROR(ENOENT);
789 /* we may be looking for a snapshot */
790 if (err == 0 && snapname != NULL) {
791 dsl_dataset_t *snap_ds;
793 if (*snapname++ != '@') {
794 dsl_dataset_rele_flags(ds, flags, tag);
795 dsl_dir_rele(dd, FTAG);
796 return (SET_ERROR(ENOENT));
799 dprintf("looking for snapshot '%s'\n", snapname);
800 err = dsl_dataset_snap_lookup(ds, snapname, &obj);
801 if (err == 0) {
802 err = dsl_dataset_hold_obj_flags(dp, obj, flags, tag,
803 &snap_ds);
805 dsl_dataset_rele_flags(ds, flags, tag);
807 if (err == 0) {
808 mutex_enter(&snap_ds->ds_lock);
809 if (snap_ds->ds_snapname[0] == 0)
810 (void) strlcpy(snap_ds->ds_snapname, snapname,
811 sizeof (snap_ds->ds_snapname));
812 mutex_exit(&snap_ds->ds_lock);
813 ds = snap_ds;
816 if (err == 0)
817 *dsp = ds;
818 dsl_dir_rele(dd, FTAG);
819 return (err);
823 dsl_dataset_hold(dsl_pool_t *dp, const char *name, void *tag,
824 dsl_dataset_t **dsp)
826 return (dsl_dataset_hold_flags(dp, name, 0, tag, dsp));
829 static int
830 dsl_dataset_own_obj_impl(dsl_pool_t *dp, uint64_t dsobj, ds_hold_flags_t flags,
831 void *tag, boolean_t override, dsl_dataset_t **dsp)
833 int err = dsl_dataset_hold_obj_flags(dp, dsobj, flags, tag, dsp);
834 if (err != 0)
835 return (err);
836 if (!dsl_dataset_tryown(*dsp, tag, override)) {
837 dsl_dataset_rele_flags(*dsp, flags, tag);
838 *dsp = NULL;
839 return (SET_ERROR(EBUSY));
841 return (0);
846 dsl_dataset_own_obj(dsl_pool_t *dp, uint64_t dsobj, ds_hold_flags_t flags,
847 void *tag, dsl_dataset_t **dsp)
849 return (dsl_dataset_own_obj_impl(dp, dsobj, flags, tag, B_FALSE, dsp));
853 dsl_dataset_own_obj_force(dsl_pool_t *dp, uint64_t dsobj,
854 ds_hold_flags_t flags, void *tag, dsl_dataset_t **dsp)
856 return (dsl_dataset_own_obj_impl(dp, dsobj, flags, tag, B_TRUE, dsp));
859 static int
860 dsl_dataset_own_impl(dsl_pool_t *dp, const char *name, ds_hold_flags_t flags,
861 void *tag, boolean_t override, dsl_dataset_t **dsp)
863 int err = dsl_dataset_hold_flags(dp, name, flags, tag, dsp);
864 if (err != 0)
865 return (err);
866 if (!dsl_dataset_tryown(*dsp, tag, override)) {
867 dsl_dataset_rele_flags(*dsp, flags, tag);
868 return (SET_ERROR(EBUSY));
870 return (0);
874 dsl_dataset_own_force(dsl_pool_t *dp, const char *name, ds_hold_flags_t flags,
875 void *tag, dsl_dataset_t **dsp)
877 return (dsl_dataset_own_impl(dp, name, flags, tag, B_TRUE, dsp));
881 dsl_dataset_own(dsl_pool_t *dp, const char *name, ds_hold_flags_t flags,
882 void *tag, dsl_dataset_t **dsp)
884 return (dsl_dataset_own_impl(dp, name, flags, tag, B_FALSE, dsp));
888 * See the comment above dsl_pool_hold() for details. In summary, a long
889 * hold is used to prevent destruction of a dataset while the pool hold
890 * is dropped, allowing other concurrent operations (e.g. spa_sync()).
892 * The dataset and pool must be held when this function is called. After it
893 * is called, the pool hold may be released while the dataset is still held
894 * and accessed.
896 void
897 dsl_dataset_long_hold(dsl_dataset_t *ds, const void *tag)
899 ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool));
900 (void) zfs_refcount_add(&ds->ds_longholds, tag);
903 void
904 dsl_dataset_long_rele(dsl_dataset_t *ds, const void *tag)
906 (void) zfs_refcount_remove(&ds->ds_longholds, tag);
909 /* Return B_TRUE if there are any long holds on this dataset. */
910 boolean_t
911 dsl_dataset_long_held(dsl_dataset_t *ds)
913 return (!zfs_refcount_is_zero(&ds->ds_longholds));
916 void
917 dsl_dataset_name(dsl_dataset_t *ds, char *name)
919 if (ds == NULL) {
920 (void) strlcpy(name, "mos", ZFS_MAX_DATASET_NAME_LEN);
921 } else {
922 dsl_dir_name(ds->ds_dir, name);
923 VERIFY0(dsl_dataset_get_snapname(ds));
924 if (ds->ds_snapname[0]) {
925 VERIFY3U(strlcat(name, "@", ZFS_MAX_DATASET_NAME_LEN),
926 <, ZFS_MAX_DATASET_NAME_LEN);
928 * We use a "recursive" mutex so that we
929 * can call dprintf_ds() with ds_lock held.
931 if (!MUTEX_HELD(&ds->ds_lock)) {
932 mutex_enter(&ds->ds_lock);
933 VERIFY3U(strlcat(name, ds->ds_snapname,
934 ZFS_MAX_DATASET_NAME_LEN), <,
935 ZFS_MAX_DATASET_NAME_LEN);
936 mutex_exit(&ds->ds_lock);
937 } else {
938 VERIFY3U(strlcat(name, ds->ds_snapname,
939 ZFS_MAX_DATASET_NAME_LEN), <,
940 ZFS_MAX_DATASET_NAME_LEN);
947 dsl_dataset_namelen(dsl_dataset_t *ds)
949 VERIFY0(dsl_dataset_get_snapname(ds));
950 mutex_enter(&ds->ds_lock);
951 int len = strlen(ds->ds_snapname);
952 mutex_exit(&ds->ds_lock);
953 /* add '@' if ds is a snap */
954 if (len > 0)
955 len++;
956 len += dsl_dir_namelen(ds->ds_dir);
957 return (len);
960 void
961 dsl_dataset_rele(dsl_dataset_t *ds, void *tag)
963 dmu_buf_rele(ds->ds_dbuf, tag);
966 void
967 dsl_dataset_remove_key_mapping(dsl_dataset_t *ds)
969 dsl_dir_t *dd = ds->ds_dir;
971 if (dd == NULL || dd->dd_crypto_obj == 0)
972 return;
974 (void) spa_keystore_remove_mapping(dd->dd_pool->dp_spa,
975 ds->ds_object, ds);
978 void
979 dsl_dataset_rele_flags(dsl_dataset_t *ds, ds_hold_flags_t flags, void *tag)
981 if (flags & DS_HOLD_FLAG_DECRYPT)
982 dsl_dataset_remove_key_mapping(ds);
984 dsl_dataset_rele(ds, tag);
987 void
988 dsl_dataset_disown(dsl_dataset_t *ds, ds_hold_flags_t flags, void *tag)
990 ASSERT3P(ds->ds_owner, ==, tag);
991 ASSERT(ds->ds_dbuf != NULL);
993 mutex_enter(&ds->ds_lock);
994 ds->ds_owner = NULL;
995 mutex_exit(&ds->ds_lock);
996 dsl_dataset_long_rele(ds, tag);
997 dsl_dataset_rele_flags(ds, flags, tag);
1000 boolean_t
1001 dsl_dataset_tryown(dsl_dataset_t *ds, void *tag, boolean_t override)
1003 boolean_t gotit = FALSE;
1005 ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool));
1006 mutex_enter(&ds->ds_lock);
1007 if (ds->ds_owner == NULL && (override || !(DS_IS_INCONSISTENT(ds) ||
1008 (dsl_dataset_feature_is_active(ds,
1009 SPA_FEATURE_REDACTED_DATASETS) &&
1010 !zfs_allow_redacted_dataset_mount)))) {
1011 ds->ds_owner = tag;
1012 dsl_dataset_long_hold(ds, tag);
1013 gotit = TRUE;
1015 mutex_exit(&ds->ds_lock);
1016 return (gotit);
1019 boolean_t
1020 dsl_dataset_has_owner(dsl_dataset_t *ds)
1022 boolean_t rv;
1023 mutex_enter(&ds->ds_lock);
1024 rv = (ds->ds_owner != NULL);
1025 mutex_exit(&ds->ds_lock);
1026 return (rv);
1029 static boolean_t
1030 zfeature_active(spa_feature_t f, void *arg)
1032 switch (spa_feature_table[f].fi_type) {
1033 case ZFEATURE_TYPE_BOOLEAN: {
1034 boolean_t val = (boolean_t)(uintptr_t)arg;
1035 ASSERT(val == B_FALSE || val == B_TRUE);
1036 return (val);
1038 case ZFEATURE_TYPE_UINT64_ARRAY:
1040 * In this case, arg is a uint64_t array. The feature is active
1041 * if the array is non-null.
1043 return (arg != NULL);
1044 default:
1045 panic("Invalid zfeature type %d", spa_feature_table[f].fi_type);
1046 return (B_FALSE);
1050 boolean_t
1051 dsl_dataset_feature_is_active(dsl_dataset_t *ds, spa_feature_t f)
1053 return (zfeature_active(f, ds->ds_feature[f]));
1057 * The buffers passed out by this function are references to internal buffers;
1058 * they should not be freed by callers of this function, and they should not be
1059 * used after the dataset has been released.
1061 boolean_t
1062 dsl_dataset_get_uint64_array_feature(dsl_dataset_t *ds, spa_feature_t f,
1063 uint64_t *outlength, uint64_t **outp)
1065 VERIFY(spa_feature_table[f].fi_type & ZFEATURE_TYPE_UINT64_ARRAY);
1066 if (!dsl_dataset_feature_is_active(ds, f)) {
1067 return (B_FALSE);
1069 struct feature_type_uint64_array_arg *ftuaa = ds->ds_feature[f];
1070 *outp = ftuaa->array;
1071 *outlength = ftuaa->length;
1072 return (B_TRUE);
1075 void
1076 dsl_dataset_activate_feature(uint64_t dsobj, spa_feature_t f, void *arg,
1077 dmu_tx_t *tx)
1079 spa_t *spa = dmu_tx_pool(tx)->dp_spa;
1080 objset_t *mos = dmu_tx_pool(tx)->dp_meta_objset;
1081 uint64_t zero = 0;
1083 VERIFY(spa_feature_table[f].fi_flags & ZFEATURE_FLAG_PER_DATASET);
1085 spa_feature_incr(spa, f, tx);
1086 dmu_object_zapify(mos, dsobj, DMU_OT_DSL_DATASET, tx);
1088 switch (spa_feature_table[f].fi_type) {
1089 case ZFEATURE_TYPE_BOOLEAN:
1090 ASSERT3S((boolean_t)(uintptr_t)arg, ==, B_TRUE);
1091 VERIFY0(zap_add(mos, dsobj, spa_feature_table[f].fi_guid,
1092 sizeof (zero), 1, &zero, tx));
1093 break;
1094 case ZFEATURE_TYPE_UINT64_ARRAY:
1096 struct feature_type_uint64_array_arg *ftuaa = arg;
1097 VERIFY0(zap_add(mos, dsobj, spa_feature_table[f].fi_guid,
1098 sizeof (uint64_t), ftuaa->length, ftuaa->array, tx));
1099 break;
1101 default:
1102 panic("Invalid zfeature type %d", spa_feature_table[f].fi_type);
1106 static void
1107 dsl_dataset_deactivate_feature_impl(dsl_dataset_t *ds, spa_feature_t f,
1108 dmu_tx_t *tx)
1110 spa_t *spa = dmu_tx_pool(tx)->dp_spa;
1111 objset_t *mos = dmu_tx_pool(tx)->dp_meta_objset;
1112 uint64_t dsobj = ds->ds_object;
1114 VERIFY(spa_feature_table[f].fi_flags & ZFEATURE_FLAG_PER_DATASET);
1116 VERIFY0(zap_remove(mos, dsobj, spa_feature_table[f].fi_guid, tx));
1117 spa_feature_decr(spa, f, tx);
1118 ds->ds_feature[f] = NULL;
1121 void
1122 dsl_dataset_deactivate_feature(dsl_dataset_t *ds, spa_feature_t f, dmu_tx_t *tx)
1124 unload_zfeature(ds, f);
1125 dsl_dataset_deactivate_feature_impl(ds, f, tx);
1128 uint64_t
1129 dsl_dataset_create_sync_dd(dsl_dir_t *dd, dsl_dataset_t *origin,
1130 dsl_crypto_params_t *dcp, uint64_t flags, dmu_tx_t *tx)
1132 dsl_pool_t *dp = dd->dd_pool;
1133 dmu_buf_t *dbuf;
1134 dsl_dataset_phys_t *dsphys;
1135 uint64_t dsobj;
1136 objset_t *mos = dp->dp_meta_objset;
1138 if (origin == NULL)
1139 origin = dp->dp_origin_snap;
1141 ASSERT(origin == NULL || origin->ds_dir->dd_pool == dp);
1142 ASSERT(origin == NULL || dsl_dataset_phys(origin)->ds_num_children > 0);
1143 ASSERT(dmu_tx_is_syncing(tx));
1144 ASSERT(dsl_dir_phys(dd)->dd_head_dataset_obj == 0);
1146 dsobj = dmu_object_alloc(mos, DMU_OT_DSL_DATASET, 0,
1147 DMU_OT_DSL_DATASET, sizeof (dsl_dataset_phys_t), tx);
1148 VERIFY0(dmu_bonus_hold(mos, dsobj, FTAG, &dbuf));
1149 dmu_buf_will_dirty(dbuf, tx);
1150 dsphys = dbuf->db_data;
1151 memset(dsphys, 0, sizeof (dsl_dataset_phys_t));
1152 dsphys->ds_dir_obj = dd->dd_object;
1153 dsphys->ds_flags = flags;
1154 dsphys->ds_fsid_guid = unique_create();
1155 (void) random_get_pseudo_bytes((void*)&dsphys->ds_guid,
1156 sizeof (dsphys->ds_guid));
1157 dsphys->ds_snapnames_zapobj =
1158 zap_create_norm(mos, U8_TEXTPREP_TOUPPER, DMU_OT_DSL_DS_SNAP_MAP,
1159 DMU_OT_NONE, 0, tx);
1160 dsphys->ds_creation_time = gethrestime_sec();
1161 dsphys->ds_creation_txg = tx->tx_txg == TXG_INITIAL ? 1 : tx->tx_txg;
1163 if (origin == NULL) {
1164 dsphys->ds_deadlist_obj = dsl_deadlist_alloc(mos, tx);
1165 } else {
1166 dsl_dataset_t *ohds; /* head of the origin snapshot */
1168 dsphys->ds_prev_snap_obj = origin->ds_object;
1169 dsphys->ds_prev_snap_txg =
1170 dsl_dataset_phys(origin)->ds_creation_txg;
1171 dsphys->ds_referenced_bytes =
1172 dsl_dataset_phys(origin)->ds_referenced_bytes;
1173 dsphys->ds_compressed_bytes =
1174 dsl_dataset_phys(origin)->ds_compressed_bytes;
1175 dsphys->ds_uncompressed_bytes =
1176 dsl_dataset_phys(origin)->ds_uncompressed_bytes;
1177 rrw_enter(&origin->ds_bp_rwlock, RW_READER, FTAG);
1178 dsphys->ds_bp = dsl_dataset_phys(origin)->ds_bp;
1179 rrw_exit(&origin->ds_bp_rwlock, FTAG);
1182 * Inherit flags that describe the dataset's contents
1183 * (INCONSISTENT) or properties (Case Insensitive).
1185 dsphys->ds_flags |= dsl_dataset_phys(origin)->ds_flags &
1186 (DS_FLAG_INCONSISTENT | DS_FLAG_CI_DATASET);
1188 for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
1189 if (zfeature_active(f, origin->ds_feature[f])) {
1190 dsl_dataset_activate_feature(dsobj, f,
1191 origin->ds_feature[f], tx);
1195 dmu_buf_will_dirty(origin->ds_dbuf, tx);
1196 dsl_dataset_phys(origin)->ds_num_children++;
1198 VERIFY0(dsl_dataset_hold_obj(dp,
1199 dsl_dir_phys(origin->ds_dir)->dd_head_dataset_obj,
1200 FTAG, &ohds));
1201 dsphys->ds_deadlist_obj = dsl_deadlist_clone(&ohds->ds_deadlist,
1202 dsphys->ds_prev_snap_txg, dsphys->ds_prev_snap_obj, tx);
1203 dsl_dataset_rele(ohds, FTAG);
1205 if (spa_version(dp->dp_spa) >= SPA_VERSION_NEXT_CLONES) {
1206 if (dsl_dataset_phys(origin)->ds_next_clones_obj == 0) {
1207 dsl_dataset_phys(origin)->ds_next_clones_obj =
1208 zap_create(mos,
1209 DMU_OT_NEXT_CLONES, DMU_OT_NONE, 0, tx);
1211 VERIFY0(zap_add_int(mos,
1212 dsl_dataset_phys(origin)->ds_next_clones_obj,
1213 dsobj, tx));
1216 dmu_buf_will_dirty(dd->dd_dbuf, tx);
1217 dsl_dir_phys(dd)->dd_origin_obj = origin->ds_object;
1218 if (spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
1219 if (dsl_dir_phys(origin->ds_dir)->dd_clones == 0) {
1220 dmu_buf_will_dirty(origin->ds_dir->dd_dbuf, tx);
1221 dsl_dir_phys(origin->ds_dir)->dd_clones =
1222 zap_create(mos,
1223 DMU_OT_DSL_CLONES, DMU_OT_NONE, 0, tx);
1225 VERIFY0(zap_add_int(mos,
1226 dsl_dir_phys(origin->ds_dir)->dd_clones,
1227 dsobj, tx));
1231 /* handle encryption */
1232 dsl_dataset_create_crypt_sync(dsobj, dd, origin, dcp, tx);
1234 if (spa_version(dp->dp_spa) >= SPA_VERSION_UNIQUE_ACCURATE)
1235 dsphys->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
1237 dmu_buf_rele(dbuf, FTAG);
1239 dmu_buf_will_dirty(dd->dd_dbuf, tx);
1240 dsl_dir_phys(dd)->dd_head_dataset_obj = dsobj;
1242 return (dsobj);
1245 static void
1246 dsl_dataset_zero_zil(dsl_dataset_t *ds, dmu_tx_t *tx)
1248 objset_t *os;
1250 VERIFY0(dmu_objset_from_ds(ds, &os));
1251 if (memcmp(&os->os_zil_header, &zero_zil, sizeof (zero_zil)) != 0) {
1252 dsl_pool_t *dp = ds->ds_dir->dd_pool;
1253 zio_t *zio;
1255 memset(&os->os_zil_header, 0, sizeof (os->os_zil_header));
1256 if (os->os_encrypted)
1257 os->os_next_write_raw[tx->tx_txg & TXG_MASK] = B_TRUE;
1259 zio = zio_root(dp->dp_spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
1260 dsl_dataset_sync(ds, zio, tx);
1261 VERIFY0(zio_wait(zio));
1263 /* dsl_dataset_sync_done will drop this reference. */
1264 dmu_buf_add_ref(ds->ds_dbuf, ds);
1265 dsl_dataset_sync_done(ds, tx);
1269 uint64_t
1270 dsl_dataset_create_sync(dsl_dir_t *pdd, const char *lastname,
1271 dsl_dataset_t *origin, uint64_t flags, cred_t *cr,
1272 dsl_crypto_params_t *dcp, dmu_tx_t *tx)
1274 dsl_pool_t *dp = pdd->dd_pool;
1275 uint64_t dsobj, ddobj;
1276 dsl_dir_t *dd;
1278 ASSERT(dmu_tx_is_syncing(tx));
1279 ASSERT(lastname[0] != '@');
1281 * Filesystems will eventually have their origin set to dp_origin_snap,
1282 * but that's taken care of in dsl_dataset_create_sync_dd. When
1283 * creating a filesystem, this function is called with origin equal to
1284 * NULL.
1286 if (origin != NULL)
1287 ASSERT3P(origin, !=, dp->dp_origin_snap);
1289 ddobj = dsl_dir_create_sync(dp, pdd, lastname, tx);
1290 VERIFY0(dsl_dir_hold_obj(dp, ddobj, lastname, FTAG, &dd));
1292 dsobj = dsl_dataset_create_sync_dd(dd, origin, dcp,
1293 flags & ~DS_CREATE_FLAG_NODIRTY, tx);
1295 dsl_deleg_set_create_perms(dd, tx, cr);
1298 * If we are creating a clone and the livelist feature is enabled,
1299 * add the entry DD_FIELD_LIVELIST to ZAP.
1301 if (origin != NULL &&
1302 spa_feature_is_enabled(dp->dp_spa, SPA_FEATURE_LIVELIST)) {
1303 objset_t *mos = dd->dd_pool->dp_meta_objset;
1304 dsl_dir_zapify(dd, tx);
1305 uint64_t obj = dsl_deadlist_alloc(mos, tx);
1306 VERIFY0(zap_add(mos, dd->dd_object, DD_FIELD_LIVELIST,
1307 sizeof (uint64_t), 1, &obj, tx));
1308 spa_feature_incr(dp->dp_spa, SPA_FEATURE_LIVELIST, tx);
1312 * Since we're creating a new node we know it's a leaf, so we can
1313 * initialize the counts if the limit feature is active.
1315 if (spa_feature_is_active(dp->dp_spa, SPA_FEATURE_FS_SS_LIMIT)) {
1316 uint64_t cnt = 0;
1317 objset_t *os = dd->dd_pool->dp_meta_objset;
1319 dsl_dir_zapify(dd, tx);
1320 VERIFY0(zap_add(os, dd->dd_object, DD_FIELD_FILESYSTEM_COUNT,
1321 sizeof (cnt), 1, &cnt, tx));
1322 VERIFY0(zap_add(os, dd->dd_object, DD_FIELD_SNAPSHOT_COUNT,
1323 sizeof (cnt), 1, &cnt, tx));
1326 dsl_dir_rele(dd, FTAG);
1329 * If we are creating a clone, make sure we zero out any stale
1330 * data from the origin snapshots zil header.
1332 if (origin != NULL && !(flags & DS_CREATE_FLAG_NODIRTY)) {
1333 dsl_dataset_t *ds;
1335 VERIFY0(dsl_dataset_hold_obj(dp, dsobj, FTAG, &ds));
1336 dsl_dataset_zero_zil(ds, tx);
1337 dsl_dataset_rele(ds, FTAG);
1340 return (dsobj);
1344 * The unique space in the head dataset can be calculated by subtracting
1345 * the space used in the most recent snapshot, that is still being used
1346 * in this file system, from the space currently in use. To figure out
1347 * the space in the most recent snapshot still in use, we need to take
1348 * the total space used in the snapshot and subtract out the space that
1349 * has been freed up since the snapshot was taken.
1351 void
1352 dsl_dataset_recalc_head_uniq(dsl_dataset_t *ds)
1354 uint64_t mrs_used;
1355 uint64_t dlused, dlcomp, dluncomp;
1357 ASSERT(!ds->ds_is_snapshot);
1359 if (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0)
1360 mrs_used = dsl_dataset_phys(ds->ds_prev)->ds_referenced_bytes;
1361 else
1362 mrs_used = 0;
1364 dsl_deadlist_space(&ds->ds_deadlist, &dlused, &dlcomp, &dluncomp);
1366 ASSERT3U(dlused, <=, mrs_used);
1367 dsl_dataset_phys(ds)->ds_unique_bytes =
1368 dsl_dataset_phys(ds)->ds_referenced_bytes - (mrs_used - dlused);
1370 if (spa_version(ds->ds_dir->dd_pool->dp_spa) >=
1371 SPA_VERSION_UNIQUE_ACCURATE)
1372 dsl_dataset_phys(ds)->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
1375 void
1376 dsl_dataset_remove_from_next_clones(dsl_dataset_t *ds, uint64_t obj,
1377 dmu_tx_t *tx)
1379 objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
1380 uint64_t count __maybe_unused;
1381 int err;
1383 ASSERT(dsl_dataset_phys(ds)->ds_num_children >= 2);
1384 err = zap_remove_int(mos, dsl_dataset_phys(ds)->ds_next_clones_obj,
1385 obj, tx);
1387 * The err should not be ENOENT, but a bug in a previous version
1388 * of the code could cause upgrade_clones_cb() to not set
1389 * ds_next_snap_obj when it should, leading to a missing entry.
1390 * If we knew that the pool was created after
1391 * SPA_VERSION_NEXT_CLONES, we could assert that it isn't
1392 * ENOENT. However, at least we can check that we don't have
1393 * too many entries in the next_clones_obj even after failing to
1394 * remove this one.
1396 if (err != ENOENT)
1397 VERIFY0(err);
1398 ASSERT0(zap_count(mos, dsl_dataset_phys(ds)->ds_next_clones_obj,
1399 &count));
1400 ASSERT3U(count, <=, dsl_dataset_phys(ds)->ds_num_children - 2);
1404 blkptr_t *
1405 dsl_dataset_get_blkptr(dsl_dataset_t *ds)
1407 return (&dsl_dataset_phys(ds)->ds_bp);
1410 spa_t *
1411 dsl_dataset_get_spa(dsl_dataset_t *ds)
1413 return (ds->ds_dir->dd_pool->dp_spa);
1416 void
1417 dsl_dataset_dirty(dsl_dataset_t *ds, dmu_tx_t *tx)
1419 dsl_pool_t *dp;
1421 if (ds == NULL) /* this is the meta-objset */
1422 return;
1424 ASSERT(ds->ds_objset != NULL);
1426 if (dsl_dataset_phys(ds)->ds_next_snap_obj != 0)
1427 panic("dirtying snapshot!");
1429 /* Must not dirty a dataset in the same txg where it got snapshotted. */
1430 ASSERT3U(tx->tx_txg, >, dsl_dataset_phys(ds)->ds_prev_snap_txg);
1432 dp = ds->ds_dir->dd_pool;
1433 if (txg_list_add(&dp->dp_dirty_datasets, ds, tx->tx_txg)) {
1434 objset_t *os = ds->ds_objset;
1436 /* up the hold count until we can be written out */
1437 dmu_buf_add_ref(ds->ds_dbuf, ds);
1439 /* if this dataset is encrypted, grab a reference to the DCK */
1440 if (ds->ds_dir->dd_crypto_obj != 0 &&
1441 !os->os_raw_receive &&
1442 !os->os_next_write_raw[tx->tx_txg & TXG_MASK]) {
1443 ASSERT3P(ds->ds_key_mapping, !=, NULL);
1444 key_mapping_add_ref(ds->ds_key_mapping, ds);
1449 static int
1450 dsl_dataset_snapshot_reserve_space(dsl_dataset_t *ds, dmu_tx_t *tx)
1452 uint64_t asize;
1454 if (!dmu_tx_is_syncing(tx))
1455 return (0);
1458 * If there's an fs-only reservation, any blocks that might become
1459 * owned by the snapshot dataset must be accommodated by space
1460 * outside of the reservation.
1462 ASSERT(ds->ds_reserved == 0 || DS_UNIQUE_IS_ACCURATE(ds));
1463 asize = MIN(dsl_dataset_phys(ds)->ds_unique_bytes, ds->ds_reserved);
1464 if (asize > dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE))
1465 return (SET_ERROR(ENOSPC));
1468 * Propagate any reserved space for this snapshot to other
1469 * snapshot checks in this sync group.
1471 if (asize > 0)
1472 dsl_dir_willuse_space(ds->ds_dir, asize, tx);
1474 return (0);
1478 dsl_dataset_snapshot_check_impl(dsl_dataset_t *ds, const char *snapname,
1479 dmu_tx_t *tx, boolean_t recv, uint64_t cnt, cred_t *cr, proc_t *proc)
1481 int error;
1482 uint64_t value;
1484 ds->ds_trysnap_txg = tx->tx_txg;
1486 if (!dmu_tx_is_syncing(tx))
1487 return (0);
1490 * We don't allow multiple snapshots of the same txg. If there
1491 * is already one, try again.
1493 if (dsl_dataset_phys(ds)->ds_prev_snap_txg >= tx->tx_txg)
1494 return (SET_ERROR(EAGAIN));
1497 * Check for conflicting snapshot name.
1499 error = dsl_dataset_snap_lookup(ds, snapname, &value);
1500 if (error == 0)
1501 return (SET_ERROR(EEXIST));
1502 if (error != ENOENT)
1503 return (error);
1506 * We don't allow taking snapshots of inconsistent datasets, such as
1507 * those into which we are currently receiving. However, if we are
1508 * creating this snapshot as part of a receive, this check will be
1509 * executed atomically with respect to the completion of the receive
1510 * itself but prior to the clearing of DS_FLAG_INCONSISTENT; in this
1511 * case we ignore this, knowing it will be fixed up for us shortly in
1512 * dmu_recv_end_sync().
1514 if (!recv && DS_IS_INCONSISTENT(ds))
1515 return (SET_ERROR(EBUSY));
1518 * Skip the check for temporary snapshots or if we have already checked
1519 * the counts in dsl_dataset_snapshot_check. This means we really only
1520 * check the count here when we're receiving a stream.
1522 if (cnt != 0 && cr != NULL) {
1523 error = dsl_fs_ss_limit_check(ds->ds_dir, cnt,
1524 ZFS_PROP_SNAPSHOT_LIMIT, NULL, cr, proc);
1525 if (error != 0)
1526 return (error);
1529 error = dsl_dataset_snapshot_reserve_space(ds, tx);
1530 if (error != 0)
1531 return (error);
1533 return (0);
1537 dsl_dataset_snapshot_check(void *arg, dmu_tx_t *tx)
1539 dsl_dataset_snapshot_arg_t *ddsa = arg;
1540 dsl_pool_t *dp = dmu_tx_pool(tx);
1541 nvpair_t *pair;
1542 int rv = 0;
1545 * Pre-compute how many total new snapshots will be created for each
1546 * level in the tree and below. This is needed for validating the
1547 * snapshot limit when either taking a recursive snapshot or when
1548 * taking multiple snapshots.
1550 * The problem is that the counts are not actually adjusted when
1551 * we are checking, only when we finally sync. For a single snapshot,
1552 * this is easy, the count will increase by 1 at each node up the tree,
1553 * but its more complicated for the recursive/multiple snapshot case.
1555 * The dsl_fs_ss_limit_check function does recursively check the count
1556 * at each level up the tree but since it is validating each snapshot
1557 * independently we need to be sure that we are validating the complete
1558 * count for the entire set of snapshots. We do this by rolling up the
1559 * counts for each component of the name into an nvlist and then
1560 * checking each of those cases with the aggregated count.
1562 * This approach properly handles not only the recursive snapshot
1563 * case (where we get all of those on the ddsa_snaps list) but also
1564 * the sibling case (e.g. snapshot a/b and a/c so that we will also
1565 * validate the limit on 'a' using a count of 2).
1567 * We validate the snapshot names in the third loop and only report
1568 * name errors once.
1570 if (dmu_tx_is_syncing(tx)) {
1571 char *nm;
1572 nvlist_t *cnt_track = NULL;
1573 cnt_track = fnvlist_alloc();
1575 nm = kmem_alloc(MAXPATHLEN, KM_SLEEP);
1577 /* Rollup aggregated counts into the cnt_track list */
1578 for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
1579 pair != NULL;
1580 pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
1581 char *pdelim;
1582 uint64_t val;
1584 (void) strlcpy(nm, nvpair_name(pair), MAXPATHLEN);
1585 pdelim = strchr(nm, '@');
1586 if (pdelim == NULL)
1587 continue;
1588 *pdelim = '\0';
1590 do {
1591 if (nvlist_lookup_uint64(cnt_track, nm,
1592 &val) == 0) {
1593 /* update existing entry */
1594 fnvlist_add_uint64(cnt_track, nm,
1595 val + 1);
1596 } else {
1597 /* add to list */
1598 fnvlist_add_uint64(cnt_track, nm, 1);
1601 pdelim = strrchr(nm, '/');
1602 if (pdelim != NULL)
1603 *pdelim = '\0';
1604 } while (pdelim != NULL);
1607 kmem_free(nm, MAXPATHLEN);
1609 /* Check aggregated counts at each level */
1610 for (pair = nvlist_next_nvpair(cnt_track, NULL);
1611 pair != NULL; pair = nvlist_next_nvpair(cnt_track, pair)) {
1612 int error = 0;
1613 char *name;
1614 uint64_t cnt = 0;
1615 dsl_dataset_t *ds;
1617 name = nvpair_name(pair);
1618 cnt = fnvpair_value_uint64(pair);
1619 ASSERT(cnt > 0);
1621 error = dsl_dataset_hold(dp, name, FTAG, &ds);
1622 if (error == 0) {
1623 error = dsl_fs_ss_limit_check(ds->ds_dir, cnt,
1624 ZFS_PROP_SNAPSHOT_LIMIT, NULL,
1625 ddsa->ddsa_cr, ddsa->ddsa_proc);
1626 dsl_dataset_rele(ds, FTAG);
1629 if (error != 0) {
1630 if (ddsa->ddsa_errors != NULL)
1631 fnvlist_add_int32(ddsa->ddsa_errors,
1632 name, error);
1633 rv = error;
1634 /* only report one error for this check */
1635 break;
1638 nvlist_free(cnt_track);
1641 for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
1642 pair != NULL; pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
1643 int error = 0;
1644 dsl_dataset_t *ds;
1645 char *name, *atp = NULL;
1646 char dsname[ZFS_MAX_DATASET_NAME_LEN];
1648 name = nvpair_name(pair);
1649 if (strlen(name) >= ZFS_MAX_DATASET_NAME_LEN)
1650 error = SET_ERROR(ENAMETOOLONG);
1651 if (error == 0) {
1652 atp = strchr(name, '@');
1653 if (atp == NULL)
1654 error = SET_ERROR(EINVAL);
1655 if (error == 0)
1656 (void) strlcpy(dsname, name, atp - name + 1);
1658 if (error == 0)
1659 error = dsl_dataset_hold(dp, dsname, FTAG, &ds);
1660 if (error == 0) {
1661 /* passing 0/NULL skips dsl_fs_ss_limit_check */
1662 error = dsl_dataset_snapshot_check_impl(ds,
1663 atp + 1, tx, B_FALSE, 0, NULL, NULL);
1664 dsl_dataset_rele(ds, FTAG);
1667 if (error != 0) {
1668 if (ddsa->ddsa_errors != NULL) {
1669 fnvlist_add_int32(ddsa->ddsa_errors,
1670 name, error);
1672 rv = error;
1676 return (rv);
1679 void
1680 dsl_dataset_snapshot_sync_impl(dsl_dataset_t *ds, const char *snapname,
1681 dmu_tx_t *tx)
1683 dsl_pool_t *dp = ds->ds_dir->dd_pool;
1684 dmu_buf_t *dbuf;
1685 dsl_dataset_phys_t *dsphys;
1686 uint64_t dsobj, crtxg;
1687 objset_t *mos = dp->dp_meta_objset;
1688 static zil_header_t zero_zil __maybe_unused;
1689 objset_t *os __maybe_unused;
1691 ASSERT(RRW_WRITE_HELD(&dp->dp_config_rwlock));
1694 * If we are on an old pool, the zil must not be active, in which
1695 * case it will be zeroed. Usually zil_suspend() accomplishes this.
1697 ASSERT(spa_version(dmu_tx_pool(tx)->dp_spa) >= SPA_VERSION_FAST_SNAP ||
1698 dmu_objset_from_ds(ds, &os) != 0 ||
1699 memcmp(&os->os_phys->os_zil_header, &zero_zil,
1700 sizeof (zero_zil)) == 0);
1702 /* Should not snapshot a dirty dataset. */
1703 ASSERT(!txg_list_member(&ds->ds_dir->dd_pool->dp_dirty_datasets,
1704 ds, tx->tx_txg));
1706 dsl_fs_ss_count_adjust(ds->ds_dir, 1, DD_FIELD_SNAPSHOT_COUNT, tx);
1709 * The origin's ds_creation_txg has to be < TXG_INITIAL
1711 if (strcmp(snapname, ORIGIN_DIR_NAME) == 0)
1712 crtxg = 1;
1713 else
1714 crtxg = tx->tx_txg;
1716 dsobj = dmu_object_alloc(mos, DMU_OT_DSL_DATASET, 0,
1717 DMU_OT_DSL_DATASET, sizeof (dsl_dataset_phys_t), tx);
1718 VERIFY0(dmu_bonus_hold(mos, dsobj, FTAG, &dbuf));
1719 dmu_buf_will_dirty(dbuf, tx);
1720 dsphys = dbuf->db_data;
1721 memset(dsphys, 0, sizeof (dsl_dataset_phys_t));
1722 dsphys->ds_dir_obj = ds->ds_dir->dd_object;
1723 dsphys->ds_fsid_guid = unique_create();
1724 (void) random_get_pseudo_bytes((void*)&dsphys->ds_guid,
1725 sizeof (dsphys->ds_guid));
1726 dsphys->ds_prev_snap_obj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
1727 dsphys->ds_prev_snap_txg = dsl_dataset_phys(ds)->ds_prev_snap_txg;
1728 dsphys->ds_next_snap_obj = ds->ds_object;
1729 dsphys->ds_num_children = 1;
1730 dsphys->ds_creation_time = gethrestime_sec();
1731 dsphys->ds_creation_txg = crtxg;
1732 dsphys->ds_deadlist_obj = dsl_dataset_phys(ds)->ds_deadlist_obj;
1733 dsphys->ds_referenced_bytes = dsl_dataset_phys(ds)->ds_referenced_bytes;
1734 dsphys->ds_compressed_bytes = dsl_dataset_phys(ds)->ds_compressed_bytes;
1735 dsphys->ds_uncompressed_bytes =
1736 dsl_dataset_phys(ds)->ds_uncompressed_bytes;
1737 dsphys->ds_flags = dsl_dataset_phys(ds)->ds_flags;
1738 rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
1739 dsphys->ds_bp = dsl_dataset_phys(ds)->ds_bp;
1740 rrw_exit(&ds->ds_bp_rwlock, FTAG);
1741 dmu_buf_rele(dbuf, FTAG);
1743 for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
1744 if (zfeature_active(f, ds->ds_feature[f])) {
1745 dsl_dataset_activate_feature(dsobj, f,
1746 ds->ds_feature[f], tx);
1750 ASSERT3U(ds->ds_prev != 0, ==,
1751 dsl_dataset_phys(ds)->ds_prev_snap_obj != 0);
1752 if (ds->ds_prev) {
1753 uint64_t next_clones_obj =
1754 dsl_dataset_phys(ds->ds_prev)->ds_next_clones_obj;
1755 ASSERT(dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj ==
1756 ds->ds_object ||
1757 dsl_dataset_phys(ds->ds_prev)->ds_num_children > 1);
1758 if (dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj ==
1759 ds->ds_object) {
1760 dmu_buf_will_dirty(ds->ds_prev->ds_dbuf, tx);
1761 ASSERT3U(dsl_dataset_phys(ds)->ds_prev_snap_txg, ==,
1762 dsl_dataset_phys(ds->ds_prev)->ds_creation_txg);
1763 dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj = dsobj;
1764 } else if (next_clones_obj != 0) {
1765 dsl_dataset_remove_from_next_clones(ds->ds_prev,
1766 dsphys->ds_next_snap_obj, tx);
1767 VERIFY0(zap_add_int(mos,
1768 next_clones_obj, dsobj, tx));
1773 * If we have a reference-reservation on this dataset, we will
1774 * need to increase the amount of refreservation being charged
1775 * since our unique space is going to zero.
1777 if (ds->ds_reserved) {
1778 int64_t delta;
1779 ASSERT(DS_UNIQUE_IS_ACCURATE(ds));
1780 delta = MIN(dsl_dataset_phys(ds)->ds_unique_bytes,
1781 ds->ds_reserved);
1782 dsl_dir_diduse_space(ds->ds_dir, DD_USED_REFRSRV,
1783 delta, 0, 0, tx);
1786 dmu_buf_will_dirty(ds->ds_dbuf, tx);
1787 dsl_dataset_phys(ds)->ds_deadlist_obj =
1788 dsl_deadlist_clone(&ds->ds_deadlist, UINT64_MAX,
1789 dsl_dataset_phys(ds)->ds_prev_snap_obj, tx);
1790 dsl_deadlist_close(&ds->ds_deadlist);
1791 dsl_deadlist_open(&ds->ds_deadlist, mos,
1792 dsl_dataset_phys(ds)->ds_deadlist_obj);
1793 dsl_deadlist_add_key(&ds->ds_deadlist,
1794 dsl_dataset_phys(ds)->ds_prev_snap_txg, tx);
1795 dsl_bookmark_snapshotted(ds, tx);
1797 if (dsl_dataset_remap_deadlist_exists(ds)) {
1798 uint64_t remap_deadlist_obj =
1799 dsl_dataset_get_remap_deadlist_object(ds);
1801 * Move the remap_deadlist to the snapshot. The head
1802 * will create a new remap deadlist on demand, from
1803 * dsl_dataset_block_remapped().
1805 dsl_dataset_unset_remap_deadlist_object(ds, tx);
1806 dsl_deadlist_close(&ds->ds_remap_deadlist);
1808 dmu_object_zapify(mos, dsobj, DMU_OT_DSL_DATASET, tx);
1809 VERIFY0(zap_add(mos, dsobj, DS_FIELD_REMAP_DEADLIST,
1810 sizeof (remap_deadlist_obj), 1, &remap_deadlist_obj, tx));
1814 * Create a ivset guid for this snapshot if the dataset is
1815 * encrypted. This may be overridden by a raw receive. A
1816 * previous implementation of this code did not have this
1817 * field as part of the on-disk format for ZFS encryption
1818 * (see errata #4). As part of the remediation for this
1819 * issue, we ask the user to enable the bookmark_v2 feature
1820 * which is now a dependency of the encryption feature. We
1821 * use this as a heuristic to determine when the user has
1822 * elected to correct any datasets created with the old code.
1823 * As a result, we only do this step if the bookmark_v2
1824 * feature is enabled, which limits the number of states a
1825 * given pool / dataset can be in with regards to terms of
1826 * correcting the issue.
1828 if (ds->ds_dir->dd_crypto_obj != 0 &&
1829 spa_feature_is_enabled(dp->dp_spa, SPA_FEATURE_BOOKMARK_V2)) {
1830 uint64_t ivset_guid = unique_create();
1832 dmu_object_zapify(mos, dsobj, DMU_OT_DSL_DATASET, tx);
1833 VERIFY0(zap_add(mos, dsobj, DS_FIELD_IVSET_GUID,
1834 sizeof (ivset_guid), 1, &ivset_guid, tx));
1837 ASSERT3U(dsl_dataset_phys(ds)->ds_prev_snap_txg, <, tx->tx_txg);
1838 dsl_dataset_phys(ds)->ds_prev_snap_obj = dsobj;
1839 dsl_dataset_phys(ds)->ds_prev_snap_txg = crtxg;
1840 dsl_dataset_phys(ds)->ds_unique_bytes = 0;
1842 if (spa_version(dp->dp_spa) >= SPA_VERSION_UNIQUE_ACCURATE)
1843 dsl_dataset_phys(ds)->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
1845 VERIFY0(zap_add(mos, dsl_dataset_phys(ds)->ds_snapnames_zapobj,
1846 snapname, 8, 1, &dsobj, tx));
1848 if (ds->ds_prev)
1849 dsl_dataset_rele(ds->ds_prev, ds);
1850 VERIFY0(dsl_dataset_hold_obj(dp,
1851 dsl_dataset_phys(ds)->ds_prev_snap_obj, ds, &ds->ds_prev));
1853 dsl_scan_ds_snapshotted(ds, tx);
1855 dsl_dir_snap_cmtime_update(ds->ds_dir);
1857 spa_history_log_internal_ds(ds->ds_prev, "snapshot", tx, " ");
1860 void
1861 dsl_dataset_snapshot_sync(void *arg, dmu_tx_t *tx)
1863 dsl_dataset_snapshot_arg_t *ddsa = arg;
1864 dsl_pool_t *dp = dmu_tx_pool(tx);
1865 nvpair_t *pair;
1867 for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
1868 pair != NULL; pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
1869 dsl_dataset_t *ds;
1870 char *name, *atp;
1871 char dsname[ZFS_MAX_DATASET_NAME_LEN];
1873 name = nvpair_name(pair);
1874 atp = strchr(name, '@');
1875 (void) strlcpy(dsname, name, atp - name + 1);
1876 VERIFY0(dsl_dataset_hold(dp, dsname, FTAG, &ds));
1878 dsl_dataset_snapshot_sync_impl(ds, atp + 1, tx);
1879 if (ddsa->ddsa_props != NULL) {
1880 dsl_props_set_sync_impl(ds->ds_prev,
1881 ZPROP_SRC_LOCAL, ddsa->ddsa_props, tx);
1883 dsl_dataset_rele(ds, FTAG);
1888 * The snapshots must all be in the same pool.
1889 * All-or-nothing: if there are any failures, nothing will be modified.
1892 dsl_dataset_snapshot(nvlist_t *snaps, nvlist_t *props, nvlist_t *errors)
1894 dsl_dataset_snapshot_arg_t ddsa;
1895 nvpair_t *pair;
1896 boolean_t needsuspend;
1897 int error;
1898 spa_t *spa;
1899 char *firstname;
1900 nvlist_t *suspended = NULL;
1902 pair = nvlist_next_nvpair(snaps, NULL);
1903 if (pair == NULL)
1904 return (0);
1905 firstname = nvpair_name(pair);
1907 error = spa_open(firstname, &spa, FTAG);
1908 if (error != 0)
1909 return (error);
1910 needsuspend = (spa_version(spa) < SPA_VERSION_FAST_SNAP);
1911 spa_close(spa, FTAG);
1913 if (needsuspend) {
1914 suspended = fnvlist_alloc();
1915 for (pair = nvlist_next_nvpair(snaps, NULL); pair != NULL;
1916 pair = nvlist_next_nvpair(snaps, pair)) {
1917 char fsname[ZFS_MAX_DATASET_NAME_LEN];
1918 char *snapname = nvpair_name(pair);
1919 char *atp;
1920 void *cookie;
1922 atp = strchr(snapname, '@');
1923 if (atp == NULL) {
1924 error = SET_ERROR(EINVAL);
1925 break;
1927 (void) strlcpy(fsname, snapname, atp - snapname + 1);
1929 error = zil_suspend(fsname, &cookie);
1930 if (error != 0)
1931 break;
1932 fnvlist_add_uint64(suspended, fsname,
1933 (uintptr_t)cookie);
1937 ddsa.ddsa_snaps = snaps;
1938 ddsa.ddsa_props = props;
1939 ddsa.ddsa_errors = errors;
1940 ddsa.ddsa_cr = CRED();
1941 ddsa.ddsa_proc = curproc;
1943 if (error == 0) {
1944 error = dsl_sync_task(firstname, dsl_dataset_snapshot_check,
1945 dsl_dataset_snapshot_sync, &ddsa,
1946 fnvlist_num_pairs(snaps) * 3, ZFS_SPACE_CHECK_NORMAL);
1949 if (suspended != NULL) {
1950 for (pair = nvlist_next_nvpair(suspended, NULL); pair != NULL;
1951 pair = nvlist_next_nvpair(suspended, pair)) {
1952 zil_resume((void *)(uintptr_t)
1953 fnvpair_value_uint64(pair));
1955 fnvlist_free(suspended);
1958 if (error == 0) {
1959 for (pair = nvlist_next_nvpair(snaps, NULL); pair != NULL;
1960 pair = nvlist_next_nvpair(snaps, pair)) {
1961 zvol_create_minor(nvpair_name(pair));
1965 return (error);
1968 typedef struct dsl_dataset_snapshot_tmp_arg {
1969 const char *ddsta_fsname;
1970 const char *ddsta_snapname;
1971 minor_t ddsta_cleanup_minor;
1972 const char *ddsta_htag;
1973 } dsl_dataset_snapshot_tmp_arg_t;
1975 static int
1976 dsl_dataset_snapshot_tmp_check(void *arg, dmu_tx_t *tx)
1978 dsl_dataset_snapshot_tmp_arg_t *ddsta = arg;
1979 dsl_pool_t *dp = dmu_tx_pool(tx);
1980 dsl_dataset_t *ds;
1981 int error;
1983 error = dsl_dataset_hold(dp, ddsta->ddsta_fsname, FTAG, &ds);
1984 if (error != 0)
1985 return (error);
1987 /* NULL cred means no limit check for tmp snapshot */
1988 error = dsl_dataset_snapshot_check_impl(ds, ddsta->ddsta_snapname,
1989 tx, B_FALSE, 0, NULL, NULL);
1990 if (error != 0) {
1991 dsl_dataset_rele(ds, FTAG);
1992 return (error);
1995 if (spa_version(dp->dp_spa) < SPA_VERSION_USERREFS) {
1996 dsl_dataset_rele(ds, FTAG);
1997 return (SET_ERROR(ENOTSUP));
1999 error = dsl_dataset_user_hold_check_one(NULL, ddsta->ddsta_htag,
2000 B_TRUE, tx);
2001 if (error != 0) {
2002 dsl_dataset_rele(ds, FTAG);
2003 return (error);
2006 dsl_dataset_rele(ds, FTAG);
2007 return (0);
2010 static void
2011 dsl_dataset_snapshot_tmp_sync(void *arg, dmu_tx_t *tx)
2013 dsl_dataset_snapshot_tmp_arg_t *ddsta = arg;
2014 dsl_pool_t *dp = dmu_tx_pool(tx);
2015 dsl_dataset_t *ds = NULL;
2017 VERIFY0(dsl_dataset_hold(dp, ddsta->ddsta_fsname, FTAG, &ds));
2019 dsl_dataset_snapshot_sync_impl(ds, ddsta->ddsta_snapname, tx);
2020 dsl_dataset_user_hold_sync_one(ds->ds_prev, ddsta->ddsta_htag,
2021 ddsta->ddsta_cleanup_minor, gethrestime_sec(), tx);
2022 dsl_destroy_snapshot_sync_impl(ds->ds_prev, B_TRUE, tx);
2024 dsl_dataset_rele(ds, FTAG);
2028 dsl_dataset_snapshot_tmp(const char *fsname, const char *snapname,
2029 minor_t cleanup_minor, const char *htag)
2031 dsl_dataset_snapshot_tmp_arg_t ddsta;
2032 int error;
2033 spa_t *spa;
2034 boolean_t needsuspend;
2035 void *cookie;
2037 ddsta.ddsta_fsname = fsname;
2038 ddsta.ddsta_snapname = snapname;
2039 ddsta.ddsta_cleanup_minor = cleanup_minor;
2040 ddsta.ddsta_htag = htag;
2042 error = spa_open(fsname, &spa, FTAG);
2043 if (error != 0)
2044 return (error);
2045 needsuspend = (spa_version(spa) < SPA_VERSION_FAST_SNAP);
2046 spa_close(spa, FTAG);
2048 if (needsuspend) {
2049 error = zil_suspend(fsname, &cookie);
2050 if (error != 0)
2051 return (error);
2054 error = dsl_sync_task(fsname, dsl_dataset_snapshot_tmp_check,
2055 dsl_dataset_snapshot_tmp_sync, &ddsta, 3, ZFS_SPACE_CHECK_RESERVED);
2057 if (needsuspend)
2058 zil_resume(cookie);
2059 return (error);
2062 void
2063 dsl_dataset_sync(dsl_dataset_t *ds, zio_t *zio, dmu_tx_t *tx)
2065 ASSERT(dmu_tx_is_syncing(tx));
2066 ASSERT(ds->ds_objset != NULL);
2067 ASSERT(dsl_dataset_phys(ds)->ds_next_snap_obj == 0);
2070 * in case we had to change ds_fsid_guid when we opened it,
2071 * sync it out now.
2073 dmu_buf_will_dirty(ds->ds_dbuf, tx);
2074 dsl_dataset_phys(ds)->ds_fsid_guid = ds->ds_fsid_guid;
2076 if (ds->ds_resume_bytes[tx->tx_txg & TXG_MASK] != 0) {
2077 VERIFY0(zap_update(tx->tx_pool->dp_meta_objset,
2078 ds->ds_object, DS_FIELD_RESUME_OBJECT, 8, 1,
2079 &ds->ds_resume_object[tx->tx_txg & TXG_MASK], tx));
2080 VERIFY0(zap_update(tx->tx_pool->dp_meta_objset,
2081 ds->ds_object, DS_FIELD_RESUME_OFFSET, 8, 1,
2082 &ds->ds_resume_offset[tx->tx_txg & TXG_MASK], tx));
2083 VERIFY0(zap_update(tx->tx_pool->dp_meta_objset,
2084 ds->ds_object, DS_FIELD_RESUME_BYTES, 8, 1,
2085 &ds->ds_resume_bytes[tx->tx_txg & TXG_MASK], tx));
2086 ds->ds_resume_object[tx->tx_txg & TXG_MASK] = 0;
2087 ds->ds_resume_offset[tx->tx_txg & TXG_MASK] = 0;
2088 ds->ds_resume_bytes[tx->tx_txg & TXG_MASK] = 0;
2091 dmu_objset_sync(ds->ds_objset, zio, tx);
2093 for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
2094 if (zfeature_active(f, ds->ds_feature_activation[f])) {
2095 if (zfeature_active(f, ds->ds_feature[f]))
2096 continue;
2097 dsl_dataset_activate_feature(ds->ds_object, f,
2098 ds->ds_feature_activation[f], tx);
2099 ds->ds_feature[f] = ds->ds_feature_activation[f];
2105 * Check if the percentage of blocks shared between the clone and the
2106 * snapshot (as opposed to those that are clone only) is below a certain
2107 * threshold
2109 static boolean_t
2110 dsl_livelist_should_disable(dsl_dataset_t *ds)
2112 uint64_t used, referenced;
2113 int percent_shared;
2115 used = dsl_dir_get_usedds(ds->ds_dir);
2116 referenced = dsl_get_referenced(ds);
2117 ASSERT3U(referenced, >=, 0);
2118 ASSERT3U(used, >=, 0);
2119 if (referenced == 0)
2120 return (B_FALSE);
2121 percent_shared = (100 * (referenced - used)) / referenced;
2122 if (percent_shared <= zfs_livelist_min_percent_shared)
2123 return (B_TRUE);
2124 return (B_FALSE);
2128 * Check if it is possible to combine two livelist entries into one.
2129 * This is the case if the combined number of 'live' blkptrs (ALLOCs that
2130 * don't have a matching FREE) is under the maximum sublist size.
2131 * We check this by subtracting twice the total number of frees from the total
2132 * number of blkptrs. FREEs are counted twice because each FREE blkptr
2133 * will cancel out an ALLOC blkptr when the livelist is processed.
2135 static boolean_t
2136 dsl_livelist_should_condense(dsl_deadlist_entry_t *first,
2137 dsl_deadlist_entry_t *next)
2139 uint64_t total_free = first->dle_bpobj.bpo_phys->bpo_num_freed +
2140 next->dle_bpobj.bpo_phys->bpo_num_freed;
2141 uint64_t total_entries = first->dle_bpobj.bpo_phys->bpo_num_blkptrs +
2142 next->dle_bpobj.bpo_phys->bpo_num_blkptrs;
2143 if ((total_entries - (2 * total_free)) < zfs_livelist_max_entries)
2144 return (B_TRUE);
2145 return (B_FALSE);
2148 typedef struct try_condense_arg {
2149 spa_t *spa;
2150 dsl_dataset_t *ds;
2151 } try_condense_arg_t;
2154 * Iterate over the livelist entries, searching for a pair to condense.
2155 * A nonzero return value means stop, 0 means keep looking.
2157 static int
2158 dsl_livelist_try_condense(void *arg, dsl_deadlist_entry_t *first)
2160 try_condense_arg_t *tca = arg;
2161 spa_t *spa = tca->spa;
2162 dsl_dataset_t *ds = tca->ds;
2163 dsl_deadlist_t *ll = &ds->ds_dir->dd_livelist;
2164 dsl_deadlist_entry_t *next;
2166 /* The condense thread has not yet been created at import */
2167 if (spa->spa_livelist_condense_zthr == NULL)
2168 return (1);
2170 /* A condense is already in progress */
2171 if (spa->spa_to_condense.ds != NULL)
2172 return (1);
2174 next = AVL_NEXT(&ll->dl_tree, &first->dle_node);
2175 /* The livelist has only one entry - don't condense it */
2176 if (next == NULL)
2177 return (1);
2179 /* Next is the newest entry - don't condense it */
2180 if (AVL_NEXT(&ll->dl_tree, &next->dle_node) == NULL)
2181 return (1);
2183 /* This pair is not ready to condense but keep looking */
2184 if (!dsl_livelist_should_condense(first, next))
2185 return (0);
2188 * Add a ref to prevent the dataset from being evicted while
2189 * the condense zthr or synctask are running. Ref will be
2190 * released at the end of the condense synctask
2192 dmu_buf_add_ref(ds->ds_dbuf, spa);
2194 spa->spa_to_condense.ds = ds;
2195 spa->spa_to_condense.first = first;
2196 spa->spa_to_condense.next = next;
2197 spa->spa_to_condense.syncing = B_FALSE;
2198 spa->spa_to_condense.cancelled = B_FALSE;
2200 zthr_wakeup(spa->spa_livelist_condense_zthr);
2201 return (1);
2204 static void
2205 dsl_flush_pending_livelist(dsl_dataset_t *ds, dmu_tx_t *tx)
2207 dsl_dir_t *dd = ds->ds_dir;
2208 spa_t *spa = ds->ds_dir->dd_pool->dp_spa;
2209 dsl_deadlist_entry_t *last = dsl_deadlist_last(&dd->dd_livelist);
2211 /* Check if we need to add a new sub-livelist */
2212 if (last == NULL) {
2213 /* The livelist is empty */
2214 dsl_deadlist_add_key(&dd->dd_livelist,
2215 tx->tx_txg - 1, tx);
2216 } else if (spa_sync_pass(spa) == 1) {
2218 * Check if the newest entry is full. If it is, make a new one.
2219 * We only do this once per sync because we could overfill a
2220 * sublist in one sync pass and don't want to add another entry
2221 * for a txg that is already represented. This ensures that
2222 * blkptrs born in the same txg are stored in the same sublist.
2224 bpobj_t bpobj = last->dle_bpobj;
2225 uint64_t all = bpobj.bpo_phys->bpo_num_blkptrs;
2226 uint64_t free = bpobj.bpo_phys->bpo_num_freed;
2227 uint64_t alloc = all - free;
2228 if (alloc > zfs_livelist_max_entries) {
2229 dsl_deadlist_add_key(&dd->dd_livelist,
2230 tx->tx_txg - 1, tx);
2234 /* Insert each entry into the on-disk livelist */
2235 bplist_iterate(&dd->dd_pending_allocs,
2236 dsl_deadlist_insert_alloc_cb, &dd->dd_livelist, tx);
2237 bplist_iterate(&dd->dd_pending_frees,
2238 dsl_deadlist_insert_free_cb, &dd->dd_livelist, tx);
2240 /* Attempt to condense every pair of adjacent entries */
2241 try_condense_arg_t arg = {
2242 .spa = spa,
2243 .ds = ds
2245 dsl_deadlist_iterate(&dd->dd_livelist, dsl_livelist_try_condense,
2246 &arg);
2249 void
2250 dsl_dataset_sync_done(dsl_dataset_t *ds, dmu_tx_t *tx)
2252 objset_t *os = ds->ds_objset;
2254 bplist_iterate(&ds->ds_pending_deadlist,
2255 dsl_deadlist_insert_alloc_cb, &ds->ds_deadlist, tx);
2257 if (dsl_deadlist_is_open(&ds->ds_dir->dd_livelist)) {
2258 dsl_flush_pending_livelist(ds, tx);
2259 if (dsl_livelist_should_disable(ds)) {
2260 dsl_dir_remove_livelist(ds->ds_dir, tx, B_TRUE);
2264 dsl_bookmark_sync_done(ds, tx);
2266 multilist_destroy(&os->os_synced_dnodes);
2268 if (os->os_encrypted)
2269 os->os_next_write_raw[tx->tx_txg & TXG_MASK] = B_FALSE;
2270 else
2271 ASSERT0(os->os_next_write_raw[tx->tx_txg & TXG_MASK]);
2273 ASSERT(!dmu_objset_is_dirty(os, dmu_tx_get_txg(tx)));
2275 dmu_buf_rele(ds->ds_dbuf, ds);
2279 get_clones_stat_impl(dsl_dataset_t *ds, nvlist_t *val)
2281 uint64_t count = 0;
2282 objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
2283 zap_cursor_t zc;
2284 zap_attribute_t za;
2286 ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool));
2289 * There may be missing entries in ds_next_clones_obj
2290 * due to a bug in a previous version of the code.
2291 * Only trust it if it has the right number of entries.
2293 if (dsl_dataset_phys(ds)->ds_next_clones_obj != 0) {
2294 VERIFY0(zap_count(mos, dsl_dataset_phys(ds)->ds_next_clones_obj,
2295 &count));
2297 if (count != dsl_dataset_phys(ds)->ds_num_children - 1) {
2298 return (SET_ERROR(ENOENT));
2300 for (zap_cursor_init(&zc, mos,
2301 dsl_dataset_phys(ds)->ds_next_clones_obj);
2302 zap_cursor_retrieve(&zc, &za) == 0;
2303 zap_cursor_advance(&zc)) {
2304 dsl_dataset_t *clone;
2305 char buf[ZFS_MAX_DATASET_NAME_LEN];
2306 VERIFY0(dsl_dataset_hold_obj(ds->ds_dir->dd_pool,
2307 za.za_first_integer, FTAG, &clone));
2308 dsl_dir_name(clone->ds_dir, buf);
2309 fnvlist_add_boolean(val, buf);
2310 dsl_dataset_rele(clone, FTAG);
2312 zap_cursor_fini(&zc);
2313 return (0);
2316 void
2317 get_clones_stat(dsl_dataset_t *ds, nvlist_t *nv)
2319 nvlist_t *propval = fnvlist_alloc();
2320 nvlist_t *val = fnvlist_alloc();
2322 if (get_clones_stat_impl(ds, val) == 0) {
2323 fnvlist_add_nvlist(propval, ZPROP_VALUE, val);
2324 fnvlist_add_nvlist(nv, zfs_prop_to_name(ZFS_PROP_CLONES),
2325 propval);
2328 nvlist_free(val);
2329 nvlist_free(propval);
2332 static char *
2333 get_receive_resume_token_impl(dsl_dataset_t *ds)
2335 if (!dsl_dataset_has_resume_receive_state(ds))
2336 return (NULL);
2338 dsl_pool_t *dp = ds->ds_dir->dd_pool;
2339 char *str;
2340 void *packed;
2341 uint8_t *compressed;
2342 uint64_t val;
2343 nvlist_t *token_nv = fnvlist_alloc();
2344 size_t packed_size, compressed_size;
2346 if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
2347 DS_FIELD_RESUME_FROMGUID, sizeof (val), 1, &val) == 0) {
2348 fnvlist_add_uint64(token_nv, "fromguid", val);
2350 if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
2351 DS_FIELD_RESUME_OBJECT, sizeof (val), 1, &val) == 0) {
2352 fnvlist_add_uint64(token_nv, "object", val);
2354 if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
2355 DS_FIELD_RESUME_OFFSET, sizeof (val), 1, &val) == 0) {
2356 fnvlist_add_uint64(token_nv, "offset", val);
2358 if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
2359 DS_FIELD_RESUME_BYTES, sizeof (val), 1, &val) == 0) {
2360 fnvlist_add_uint64(token_nv, "bytes", val);
2362 if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
2363 DS_FIELD_RESUME_TOGUID, sizeof (val), 1, &val) == 0) {
2364 fnvlist_add_uint64(token_nv, "toguid", val);
2366 char buf[MAXNAMELEN];
2367 if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
2368 DS_FIELD_RESUME_TONAME, 1, sizeof (buf), buf) == 0) {
2369 fnvlist_add_string(token_nv, "toname", buf);
2371 if (zap_contains(dp->dp_meta_objset, ds->ds_object,
2372 DS_FIELD_RESUME_LARGEBLOCK) == 0) {
2373 fnvlist_add_boolean(token_nv, "largeblockok");
2375 if (zap_contains(dp->dp_meta_objset, ds->ds_object,
2376 DS_FIELD_RESUME_EMBEDOK) == 0) {
2377 fnvlist_add_boolean(token_nv, "embedok");
2379 if (zap_contains(dp->dp_meta_objset, ds->ds_object,
2380 DS_FIELD_RESUME_COMPRESSOK) == 0) {
2381 fnvlist_add_boolean(token_nv, "compressok");
2383 if (zap_contains(dp->dp_meta_objset, ds->ds_object,
2384 DS_FIELD_RESUME_RAWOK) == 0) {
2385 fnvlist_add_boolean(token_nv, "rawok");
2387 if (dsl_dataset_feature_is_active(ds,
2388 SPA_FEATURE_REDACTED_DATASETS)) {
2389 uint64_t num_redact_snaps = 0;
2390 uint64_t *redact_snaps = NULL;
2391 VERIFY3B(dsl_dataset_get_uint64_array_feature(ds,
2392 SPA_FEATURE_REDACTED_DATASETS, &num_redact_snaps,
2393 &redact_snaps), ==, B_TRUE);
2394 fnvlist_add_uint64_array(token_nv, "redact_snaps",
2395 redact_snaps, num_redact_snaps);
2397 if (zap_contains(dp->dp_meta_objset, ds->ds_object,
2398 DS_FIELD_RESUME_REDACT_BOOKMARK_SNAPS) == 0) {
2399 uint64_t num_redact_snaps = 0, int_size = 0;
2400 uint64_t *redact_snaps = NULL;
2401 VERIFY0(zap_length(dp->dp_meta_objset, ds->ds_object,
2402 DS_FIELD_RESUME_REDACT_BOOKMARK_SNAPS, &int_size,
2403 &num_redact_snaps));
2404 ASSERT3U(int_size, ==, sizeof (uint64_t));
2406 redact_snaps = kmem_alloc(int_size * num_redact_snaps,
2407 KM_SLEEP);
2408 VERIFY0(zap_lookup(dp->dp_meta_objset, ds->ds_object,
2409 DS_FIELD_RESUME_REDACT_BOOKMARK_SNAPS, int_size,
2410 num_redact_snaps, redact_snaps));
2411 fnvlist_add_uint64_array(token_nv, "book_redact_snaps",
2412 redact_snaps, num_redact_snaps);
2413 kmem_free(redact_snaps, int_size * num_redact_snaps);
2415 packed = fnvlist_pack(token_nv, &packed_size);
2416 fnvlist_free(token_nv);
2417 compressed = kmem_alloc(packed_size, KM_SLEEP);
2419 compressed_size = gzip_compress(packed, compressed,
2420 packed_size, packed_size, 6);
2422 zio_cksum_t cksum;
2423 fletcher_4_native_varsize(compressed, compressed_size, &cksum);
2425 size_t alloc_size = compressed_size * 2 + 1;
2426 str = kmem_alloc(alloc_size, KM_SLEEP);
2427 for (int i = 0; i < compressed_size; i++) {
2428 size_t offset = i * 2;
2429 (void) snprintf(str + offset, alloc_size - offset,
2430 "%02x", compressed[i]);
2432 str[compressed_size * 2] = '\0';
2433 char *propval = kmem_asprintf("%u-%llx-%llx-%s",
2434 ZFS_SEND_RESUME_TOKEN_VERSION,
2435 (longlong_t)cksum.zc_word[0],
2436 (longlong_t)packed_size, str);
2437 kmem_free(packed, packed_size);
2438 kmem_free(str, alloc_size);
2439 kmem_free(compressed, packed_size);
2440 return (propval);
2444 * Returns a string that represents the receive resume state token. It should
2445 * be freed with strfree(). NULL is returned if no resume state is present.
2447 char *
2448 get_receive_resume_token(dsl_dataset_t *ds)
2451 * A failed "newfs" (e.g. full) resumable receive leaves
2452 * the stats set on this dataset. Check here for the prop.
2454 char *token = get_receive_resume_token_impl(ds);
2455 if (token != NULL)
2456 return (token);
2458 * A failed incremental resumable receive leaves the
2459 * stats set on our child named "%recv". Check the child
2460 * for the prop.
2462 /* 6 extra bytes for /%recv */
2463 char name[ZFS_MAX_DATASET_NAME_LEN + 6];
2464 dsl_dataset_t *recv_ds;
2465 dsl_dataset_name(ds, name);
2466 if (strlcat(name, "/", sizeof (name)) < sizeof (name) &&
2467 strlcat(name, recv_clone_name, sizeof (name)) < sizeof (name) &&
2468 dsl_dataset_hold(ds->ds_dir->dd_pool, name, FTAG, &recv_ds) == 0) {
2469 token = get_receive_resume_token_impl(recv_ds);
2470 dsl_dataset_rele(recv_ds, FTAG);
2472 return (token);
2475 uint64_t
2476 dsl_get_refratio(dsl_dataset_t *ds)
2478 uint64_t ratio = dsl_dataset_phys(ds)->ds_compressed_bytes == 0 ? 100 :
2479 (dsl_dataset_phys(ds)->ds_uncompressed_bytes * 100 /
2480 dsl_dataset_phys(ds)->ds_compressed_bytes);
2481 return (ratio);
2484 uint64_t
2485 dsl_get_logicalreferenced(dsl_dataset_t *ds)
2487 return (dsl_dataset_phys(ds)->ds_uncompressed_bytes);
2490 uint64_t
2491 dsl_get_compressratio(dsl_dataset_t *ds)
2493 if (ds->ds_is_snapshot) {
2494 return (dsl_get_refratio(ds));
2495 } else {
2496 dsl_dir_t *dd = ds->ds_dir;
2497 mutex_enter(&dd->dd_lock);
2498 uint64_t val = dsl_dir_get_compressratio(dd);
2499 mutex_exit(&dd->dd_lock);
2500 return (val);
2504 uint64_t
2505 dsl_get_used(dsl_dataset_t *ds)
2507 if (ds->ds_is_snapshot) {
2508 return (dsl_dataset_phys(ds)->ds_unique_bytes);
2509 } else {
2510 dsl_dir_t *dd = ds->ds_dir;
2511 mutex_enter(&dd->dd_lock);
2512 uint64_t val = dsl_dir_get_used(dd);
2513 mutex_exit(&dd->dd_lock);
2514 return (val);
2518 uint64_t
2519 dsl_get_creation(dsl_dataset_t *ds)
2521 return (dsl_dataset_phys(ds)->ds_creation_time);
2524 uint64_t
2525 dsl_get_creationtxg(dsl_dataset_t *ds)
2527 return (dsl_dataset_phys(ds)->ds_creation_txg);
2530 uint64_t
2531 dsl_get_refquota(dsl_dataset_t *ds)
2533 return (ds->ds_quota);
2536 uint64_t
2537 dsl_get_refreservation(dsl_dataset_t *ds)
2539 return (ds->ds_reserved);
2542 uint64_t
2543 dsl_get_guid(dsl_dataset_t *ds)
2545 return (dsl_dataset_phys(ds)->ds_guid);
2548 uint64_t
2549 dsl_get_unique(dsl_dataset_t *ds)
2551 return (dsl_dataset_phys(ds)->ds_unique_bytes);
2554 uint64_t
2555 dsl_get_objsetid(dsl_dataset_t *ds)
2557 return (ds->ds_object);
2560 uint64_t
2561 dsl_get_userrefs(dsl_dataset_t *ds)
2563 return (ds->ds_userrefs);
2566 uint64_t
2567 dsl_get_defer_destroy(dsl_dataset_t *ds)
2569 return (DS_IS_DEFER_DESTROY(ds) ? 1 : 0);
2572 uint64_t
2573 dsl_get_referenced(dsl_dataset_t *ds)
2575 return (dsl_dataset_phys(ds)->ds_referenced_bytes);
2578 uint64_t
2579 dsl_get_numclones(dsl_dataset_t *ds)
2581 ASSERT(ds->ds_is_snapshot);
2582 return (dsl_dataset_phys(ds)->ds_num_children - 1);
2585 uint64_t
2586 dsl_get_inconsistent(dsl_dataset_t *ds)
2588 return ((dsl_dataset_phys(ds)->ds_flags & DS_FLAG_INCONSISTENT) ?
2589 1 : 0);
2592 uint64_t
2593 dsl_get_redacted(dsl_dataset_t *ds)
2595 return (dsl_dataset_feature_is_active(ds,
2596 SPA_FEATURE_REDACTED_DATASETS));
2599 uint64_t
2600 dsl_get_available(dsl_dataset_t *ds)
2602 uint64_t refdbytes = dsl_get_referenced(ds);
2603 uint64_t availbytes = dsl_dir_space_available(ds->ds_dir,
2604 NULL, 0, TRUE);
2605 if (ds->ds_reserved > dsl_dataset_phys(ds)->ds_unique_bytes) {
2606 availbytes +=
2607 ds->ds_reserved - dsl_dataset_phys(ds)->ds_unique_bytes;
2609 if (ds->ds_quota != 0) {
2611 * Adjust available bytes according to refquota
2613 if (refdbytes < ds->ds_quota) {
2614 availbytes = MIN(availbytes,
2615 ds->ds_quota - refdbytes);
2616 } else {
2617 availbytes = 0;
2620 return (availbytes);
2624 dsl_get_written(dsl_dataset_t *ds, uint64_t *written)
2626 dsl_pool_t *dp = ds->ds_dir->dd_pool;
2627 dsl_dataset_t *prev;
2628 int err = dsl_dataset_hold_obj(dp,
2629 dsl_dataset_phys(ds)->ds_prev_snap_obj, FTAG, &prev);
2630 if (err == 0) {
2631 uint64_t comp, uncomp;
2632 err = dsl_dataset_space_written(prev, ds, written,
2633 &comp, &uncomp);
2634 dsl_dataset_rele(prev, FTAG);
2636 return (err);
2640 * 'snap' should be a buffer of size ZFS_MAX_DATASET_NAME_LEN.
2643 dsl_get_prev_snap(dsl_dataset_t *ds, char *snap)
2645 dsl_pool_t *dp = ds->ds_dir->dd_pool;
2646 if (ds->ds_prev != NULL && ds->ds_prev != dp->dp_origin_snap) {
2647 dsl_dataset_name(ds->ds_prev, snap);
2648 return (0);
2649 } else {
2650 return (SET_ERROR(ENOENT));
2654 void
2655 dsl_get_redact_snaps(dsl_dataset_t *ds, nvlist_t *propval)
2657 uint64_t nsnaps;
2658 uint64_t *snaps;
2659 if (dsl_dataset_get_uint64_array_feature(ds,
2660 SPA_FEATURE_REDACTED_DATASETS, &nsnaps, &snaps)) {
2661 fnvlist_add_uint64_array(propval, ZPROP_VALUE, snaps,
2662 nsnaps);
2667 * Returns the mountpoint property and source for the given dataset in the value
2668 * and source buffers. The value buffer must be at least as large as MAXPATHLEN
2669 * and the source buffer as least as large a ZFS_MAX_DATASET_NAME_LEN.
2670 * Returns 0 on success and an error on failure.
2673 dsl_get_mountpoint(dsl_dataset_t *ds, const char *dsname, char *value,
2674 char *source)
2676 int error;
2677 dsl_pool_t *dp = ds->ds_dir->dd_pool;
2679 /* Retrieve the mountpoint value stored in the zap object */
2680 error = dsl_prop_get_ds(ds, zfs_prop_to_name(ZFS_PROP_MOUNTPOINT), 1,
2681 ZAP_MAXVALUELEN, value, source);
2682 if (error != 0) {
2683 return (error);
2687 * Process the dsname and source to find the full mountpoint string.
2688 * Can be skipped for 'legacy' or 'none'.
2690 if (value[0] == '/') {
2691 char *buf = kmem_alloc(ZAP_MAXVALUELEN, KM_SLEEP);
2692 char *root = buf;
2693 const char *relpath;
2696 * If we inherit the mountpoint, even from a dataset
2697 * with a received value, the source will be the path of
2698 * the dataset we inherit from. If source is
2699 * ZPROP_SOURCE_VAL_RECVD, the received value is not
2700 * inherited.
2702 if (strcmp(source, ZPROP_SOURCE_VAL_RECVD) == 0) {
2703 relpath = "";
2704 } else {
2705 ASSERT0(strncmp(dsname, source, strlen(source)));
2706 relpath = dsname + strlen(source);
2707 if (relpath[0] == '/')
2708 relpath++;
2711 spa_altroot(dp->dp_spa, root, ZAP_MAXVALUELEN);
2714 * Special case an alternate root of '/'. This will
2715 * avoid having multiple leading slashes in the
2716 * mountpoint path.
2718 if (strcmp(root, "/") == 0)
2719 root++;
2722 * If the mountpoint is '/' then skip over this
2723 * if we are obtaining either an alternate root or
2724 * an inherited mountpoint.
2726 char *mnt = value;
2727 if (value[1] == '\0' && (root[0] != '\0' ||
2728 relpath[0] != '\0'))
2729 mnt = value + 1;
2731 if (relpath[0] == '\0') {
2732 (void) snprintf(value, ZAP_MAXVALUELEN, "%s%s",
2733 root, mnt);
2734 } else {
2735 (void) snprintf(value, ZAP_MAXVALUELEN, "%s%s%s%s",
2736 root, mnt, relpath[0] == '@' ? "" : "/",
2737 relpath);
2739 kmem_free(buf, ZAP_MAXVALUELEN);
2742 return (0);
2745 void
2746 dsl_dataset_stats(dsl_dataset_t *ds, nvlist_t *nv)
2748 dsl_pool_t *dp __maybe_unused = ds->ds_dir->dd_pool;
2750 ASSERT(dsl_pool_config_held(dp));
2752 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFRATIO,
2753 dsl_get_refratio(ds));
2754 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_LOGICALREFERENCED,
2755 dsl_get_logicalreferenced(ds));
2756 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_COMPRESSRATIO,
2757 dsl_get_compressratio(ds));
2758 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_USED,
2759 dsl_get_used(ds));
2761 if (ds->ds_is_snapshot) {
2762 get_clones_stat(ds, nv);
2763 } else {
2764 char buf[ZFS_MAX_DATASET_NAME_LEN];
2765 if (dsl_get_prev_snap(ds, buf) == 0)
2766 dsl_prop_nvlist_add_string(nv, ZFS_PROP_PREV_SNAP,
2767 buf);
2768 dsl_dir_stats(ds->ds_dir, nv);
2771 nvlist_t *propval = fnvlist_alloc();
2772 dsl_get_redact_snaps(ds, propval);
2773 fnvlist_add_nvlist(nv, zfs_prop_to_name(ZFS_PROP_REDACT_SNAPS),
2774 propval);
2775 nvlist_free(propval);
2777 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_AVAILABLE,
2778 dsl_get_available(ds));
2779 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFERENCED,
2780 dsl_get_referenced(ds));
2781 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_CREATION,
2782 dsl_get_creation(ds));
2783 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_CREATETXG,
2784 dsl_get_creationtxg(ds));
2785 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFQUOTA,
2786 dsl_get_refquota(ds));
2787 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFRESERVATION,
2788 dsl_get_refreservation(ds));
2789 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_GUID,
2790 dsl_get_guid(ds));
2791 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_UNIQUE,
2792 dsl_get_unique(ds));
2793 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_OBJSETID,
2794 dsl_get_objsetid(ds));
2795 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_USERREFS,
2796 dsl_get_userrefs(ds));
2797 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_DEFER_DESTROY,
2798 dsl_get_defer_destroy(ds));
2799 dsl_dataset_crypt_stats(ds, nv);
2801 if (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0) {
2802 uint64_t written;
2803 if (dsl_get_written(ds, &written) == 0) {
2804 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_WRITTEN,
2805 written);
2809 if (!dsl_dataset_is_snapshot(ds)) {
2810 char *token = get_receive_resume_token(ds);
2811 if (token != NULL) {
2812 dsl_prop_nvlist_add_string(nv,
2813 ZFS_PROP_RECEIVE_RESUME_TOKEN, token);
2814 kmem_strfree(token);
2819 void
2820 dsl_dataset_fast_stat(dsl_dataset_t *ds, dmu_objset_stats_t *stat)
2822 dsl_pool_t *dp __maybe_unused = ds->ds_dir->dd_pool;
2823 ASSERT(dsl_pool_config_held(dp));
2825 stat->dds_creation_txg = dsl_get_creationtxg(ds);
2826 stat->dds_inconsistent = dsl_get_inconsistent(ds);
2827 stat->dds_guid = dsl_get_guid(ds);
2828 stat->dds_redacted = dsl_get_redacted(ds);
2829 stat->dds_origin[0] = '\0';
2830 if (ds->ds_is_snapshot) {
2831 stat->dds_is_snapshot = B_TRUE;
2832 stat->dds_num_clones = dsl_get_numclones(ds);
2833 } else {
2834 stat->dds_is_snapshot = B_FALSE;
2835 stat->dds_num_clones = 0;
2837 if (dsl_dir_is_clone(ds->ds_dir)) {
2838 dsl_dir_get_origin(ds->ds_dir, stat->dds_origin);
2843 uint64_t
2844 dsl_dataset_fsid_guid(dsl_dataset_t *ds)
2846 return (ds->ds_fsid_guid);
2849 void
2850 dsl_dataset_space(dsl_dataset_t *ds,
2851 uint64_t *refdbytesp, uint64_t *availbytesp,
2852 uint64_t *usedobjsp, uint64_t *availobjsp)
2854 *refdbytesp = dsl_dataset_phys(ds)->ds_referenced_bytes;
2855 *availbytesp = dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE);
2856 if (ds->ds_reserved > dsl_dataset_phys(ds)->ds_unique_bytes)
2857 *availbytesp +=
2858 ds->ds_reserved - dsl_dataset_phys(ds)->ds_unique_bytes;
2859 if (ds->ds_quota != 0) {
2861 * Adjust available bytes according to refquota
2863 if (*refdbytesp < ds->ds_quota)
2864 *availbytesp = MIN(*availbytesp,
2865 ds->ds_quota - *refdbytesp);
2866 else
2867 *availbytesp = 0;
2869 rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
2870 *usedobjsp = BP_GET_FILL(&dsl_dataset_phys(ds)->ds_bp);
2871 rrw_exit(&ds->ds_bp_rwlock, FTAG);
2872 *availobjsp = DN_MAX_OBJECT - *usedobjsp;
2875 boolean_t
2876 dsl_dataset_modified_since_snap(dsl_dataset_t *ds, dsl_dataset_t *snap)
2878 dsl_pool_t *dp __maybe_unused = ds->ds_dir->dd_pool;
2879 uint64_t birth;
2881 ASSERT(dsl_pool_config_held(dp));
2882 if (snap == NULL)
2883 return (B_FALSE);
2884 rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
2885 birth = dsl_dataset_get_blkptr(ds)->blk_birth;
2886 rrw_exit(&ds->ds_bp_rwlock, FTAG);
2887 if (birth > dsl_dataset_phys(snap)->ds_creation_txg) {
2888 objset_t *os, *os_snap;
2890 * It may be that only the ZIL differs, because it was
2891 * reset in the head. Don't count that as being
2892 * modified.
2894 if (dmu_objset_from_ds(ds, &os) != 0)
2895 return (B_TRUE);
2896 if (dmu_objset_from_ds(snap, &os_snap) != 0)
2897 return (B_TRUE);
2898 return (memcmp(&os->os_phys->os_meta_dnode,
2899 &os_snap->os_phys->os_meta_dnode,
2900 sizeof (os->os_phys->os_meta_dnode)) != 0);
2902 return (B_FALSE);
2905 typedef struct dsl_dataset_rename_snapshot_arg {
2906 const char *ddrsa_fsname;
2907 const char *ddrsa_oldsnapname;
2908 const char *ddrsa_newsnapname;
2909 boolean_t ddrsa_recursive;
2910 dmu_tx_t *ddrsa_tx;
2911 } dsl_dataset_rename_snapshot_arg_t;
2913 static int
2914 dsl_dataset_rename_snapshot_check_impl(dsl_pool_t *dp,
2915 dsl_dataset_t *hds, void *arg)
2917 (void) dp;
2918 dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
2919 int error;
2920 uint64_t val;
2922 error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_oldsnapname, &val);
2923 if (error != 0) {
2924 /* ignore nonexistent snapshots */
2925 return (error == ENOENT ? 0 : error);
2928 /* new name should not exist */
2929 error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_newsnapname, &val);
2930 if (error == 0)
2931 error = SET_ERROR(EEXIST);
2932 else if (error == ENOENT)
2933 error = 0;
2935 /* dataset name + 1 for the "@" + the new snapshot name must fit */
2936 if (dsl_dir_namelen(hds->ds_dir) + 1 +
2937 strlen(ddrsa->ddrsa_newsnapname) >= ZFS_MAX_DATASET_NAME_LEN)
2938 error = SET_ERROR(ENAMETOOLONG);
2940 return (error);
2943 static int
2944 dsl_dataset_rename_snapshot_check(void *arg, dmu_tx_t *tx)
2946 dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
2947 dsl_pool_t *dp = dmu_tx_pool(tx);
2948 dsl_dataset_t *hds;
2949 int error;
2951 error = dsl_dataset_hold(dp, ddrsa->ddrsa_fsname, FTAG, &hds);
2952 if (error != 0)
2953 return (error);
2955 if (ddrsa->ddrsa_recursive) {
2956 error = dmu_objset_find_dp(dp, hds->ds_dir->dd_object,
2957 dsl_dataset_rename_snapshot_check_impl, ddrsa,
2958 DS_FIND_CHILDREN);
2959 } else {
2960 error = dsl_dataset_rename_snapshot_check_impl(dp, hds, ddrsa);
2962 dsl_dataset_rele(hds, FTAG);
2963 return (error);
2966 static int
2967 dsl_dataset_rename_snapshot_sync_impl(dsl_pool_t *dp,
2968 dsl_dataset_t *hds, void *arg)
2970 dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
2971 dsl_dataset_t *ds;
2972 uint64_t val;
2973 dmu_tx_t *tx = ddrsa->ddrsa_tx;
2974 int error;
2976 error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_oldsnapname, &val);
2977 ASSERT(error == 0 || error == ENOENT);
2978 if (error == ENOENT) {
2979 /* ignore nonexistent snapshots */
2980 return (0);
2983 VERIFY0(dsl_dataset_hold_obj(dp, val, FTAG, &ds));
2985 /* log before we change the name */
2986 spa_history_log_internal_ds(ds, "rename", tx,
2987 "-> @%s", ddrsa->ddrsa_newsnapname);
2989 VERIFY0(dsl_dataset_snap_remove(hds, ddrsa->ddrsa_oldsnapname, tx,
2990 B_FALSE));
2991 mutex_enter(&ds->ds_lock);
2992 (void) strlcpy(ds->ds_snapname, ddrsa->ddrsa_newsnapname,
2993 sizeof (ds->ds_snapname));
2994 mutex_exit(&ds->ds_lock);
2995 VERIFY0(zap_add(dp->dp_meta_objset,
2996 dsl_dataset_phys(hds)->ds_snapnames_zapobj,
2997 ds->ds_snapname, 8, 1, &ds->ds_object, tx));
2998 zvol_rename_minors(dp->dp_spa, ddrsa->ddrsa_oldsnapname,
2999 ddrsa->ddrsa_newsnapname, B_TRUE);
3001 dsl_dataset_rele(ds, FTAG);
3002 return (0);
3005 static void
3006 dsl_dataset_rename_snapshot_sync(void *arg, dmu_tx_t *tx)
3008 dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
3009 dsl_pool_t *dp = dmu_tx_pool(tx);
3010 dsl_dataset_t *hds = NULL;
3012 VERIFY0(dsl_dataset_hold(dp, ddrsa->ddrsa_fsname, FTAG, &hds));
3013 ddrsa->ddrsa_tx = tx;
3014 if (ddrsa->ddrsa_recursive) {
3015 VERIFY0(dmu_objset_find_dp(dp, hds->ds_dir->dd_object,
3016 dsl_dataset_rename_snapshot_sync_impl, ddrsa,
3017 DS_FIND_CHILDREN));
3018 } else {
3019 VERIFY0(dsl_dataset_rename_snapshot_sync_impl(dp, hds, ddrsa));
3021 dsl_dataset_rele(hds, FTAG);
3025 dsl_dataset_rename_snapshot(const char *fsname,
3026 const char *oldsnapname, const char *newsnapname, boolean_t recursive)
3028 dsl_dataset_rename_snapshot_arg_t ddrsa;
3030 ddrsa.ddrsa_fsname = fsname;
3031 ddrsa.ddrsa_oldsnapname = oldsnapname;
3032 ddrsa.ddrsa_newsnapname = newsnapname;
3033 ddrsa.ddrsa_recursive = recursive;
3035 return (dsl_sync_task(fsname, dsl_dataset_rename_snapshot_check,
3036 dsl_dataset_rename_snapshot_sync, &ddrsa,
3037 1, ZFS_SPACE_CHECK_RESERVED));
3041 * If we're doing an ownership handoff, we need to make sure that there is
3042 * only one long hold on the dataset. We're not allowed to change anything here
3043 * so we don't permanently release the long hold or regular hold here. We want
3044 * to do this only when syncing to avoid the dataset unexpectedly going away
3045 * when we release the long hold.
3047 static int
3048 dsl_dataset_handoff_check(dsl_dataset_t *ds, void *owner, dmu_tx_t *tx)
3050 boolean_t held = B_FALSE;
3052 if (!dmu_tx_is_syncing(tx))
3053 return (0);
3055 dsl_dir_t *dd = ds->ds_dir;
3056 mutex_enter(&dd->dd_activity_lock);
3057 uint64_t holds = zfs_refcount_count(&ds->ds_longholds) -
3058 (owner != NULL ? 1 : 0);
3060 * The value of dd_activity_waiters can chance as soon as we drop the
3061 * lock, but we're fine with that; new waiters coming in or old
3062 * waiters leaving doesn't cause problems, since we're going to cancel
3063 * waiters later anyway. The goal of this check is to verify that no
3064 * non-waiters have long-holds, and all new long-holds will be
3065 * prevented because we're holding the pool config as writer.
3067 if (holds != dd->dd_activity_waiters)
3068 held = B_TRUE;
3069 mutex_exit(&dd->dd_activity_lock);
3071 if (held)
3072 return (SET_ERROR(EBUSY));
3074 return (0);
3078 dsl_dataset_rollback_check(void *arg, dmu_tx_t *tx)
3080 dsl_dataset_rollback_arg_t *ddra = arg;
3081 dsl_pool_t *dp = dmu_tx_pool(tx);
3082 dsl_dataset_t *ds;
3083 int64_t unused_refres_delta;
3084 int error;
3086 error = dsl_dataset_hold(dp, ddra->ddra_fsname, FTAG, &ds);
3087 if (error != 0)
3088 return (error);
3090 /* must not be a snapshot */
3091 if (ds->ds_is_snapshot) {
3092 dsl_dataset_rele(ds, FTAG);
3093 return (SET_ERROR(EINVAL));
3096 /* must have a most recent snapshot */
3097 if (dsl_dataset_phys(ds)->ds_prev_snap_txg < TXG_INITIAL) {
3098 dsl_dataset_rele(ds, FTAG);
3099 return (SET_ERROR(ESRCH));
3103 * No rollback to a snapshot created in the current txg, because
3104 * the rollback may dirty the dataset and create blocks that are
3105 * not reachable from the rootbp while having a birth txg that
3106 * falls into the snapshot's range.
3108 if (dmu_tx_is_syncing(tx) &&
3109 dsl_dataset_phys(ds)->ds_prev_snap_txg >= tx->tx_txg) {
3110 dsl_dataset_rele(ds, FTAG);
3111 return (SET_ERROR(EAGAIN));
3115 * If the expected target snapshot is specified, then check that
3116 * the latest snapshot is it.
3118 if (ddra->ddra_tosnap != NULL) {
3119 dsl_dataset_t *snapds;
3121 /* Check if the target snapshot exists at all. */
3122 error = dsl_dataset_hold(dp, ddra->ddra_tosnap, FTAG, &snapds);
3123 if (error != 0) {
3125 * ESRCH is used to signal that the target snapshot does
3126 * not exist, while ENOENT is used to report that
3127 * the rolled back dataset does not exist.
3128 * ESRCH is also used to cover other cases where the
3129 * target snapshot is not related to the dataset being
3130 * rolled back such as being in a different pool.
3132 if (error == ENOENT || error == EXDEV)
3133 error = SET_ERROR(ESRCH);
3134 dsl_dataset_rele(ds, FTAG);
3135 return (error);
3137 ASSERT(snapds->ds_is_snapshot);
3139 /* Check if the snapshot is the latest snapshot indeed. */
3140 if (snapds != ds->ds_prev) {
3142 * Distinguish between the case where the only problem
3143 * is intervening snapshots (EEXIST) vs the snapshot
3144 * not being a valid target for rollback (ESRCH).
3146 if (snapds->ds_dir == ds->ds_dir ||
3147 (dsl_dir_is_clone(ds->ds_dir) &&
3148 dsl_dir_phys(ds->ds_dir)->dd_origin_obj ==
3149 snapds->ds_object)) {
3150 error = SET_ERROR(EEXIST);
3151 } else {
3152 error = SET_ERROR(ESRCH);
3154 dsl_dataset_rele(snapds, FTAG);
3155 dsl_dataset_rele(ds, FTAG);
3156 return (error);
3158 dsl_dataset_rele(snapds, FTAG);
3161 /* must not have any bookmarks after the most recent snapshot */
3162 if (dsl_bookmark_latest_txg(ds) >
3163 dsl_dataset_phys(ds)->ds_prev_snap_txg) {
3164 dsl_dataset_rele(ds, FTAG);
3165 return (SET_ERROR(EEXIST));
3168 error = dsl_dataset_handoff_check(ds, ddra->ddra_owner, tx);
3169 if (error != 0) {
3170 dsl_dataset_rele(ds, FTAG);
3171 return (error);
3175 * Check if the snap we are rolling back to uses more than
3176 * the refquota.
3178 if (ds->ds_quota != 0 &&
3179 dsl_dataset_phys(ds->ds_prev)->ds_referenced_bytes > ds->ds_quota) {
3180 dsl_dataset_rele(ds, FTAG);
3181 return (SET_ERROR(EDQUOT));
3185 * When we do the clone swap, we will temporarily use more space
3186 * due to the refreservation (the head will no longer have any
3187 * unique space, so the entire amount of the refreservation will need
3188 * to be free). We will immediately destroy the clone, freeing
3189 * this space, but the freeing happens over many txg's.
3191 unused_refres_delta = (int64_t)MIN(ds->ds_reserved,
3192 dsl_dataset_phys(ds)->ds_unique_bytes);
3194 if (unused_refres_delta > 0 &&
3195 unused_refres_delta >
3196 dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE)) {
3197 dsl_dataset_rele(ds, FTAG);
3198 return (SET_ERROR(ENOSPC));
3201 dsl_dataset_rele(ds, FTAG);
3202 return (0);
3205 void
3206 dsl_dataset_rollback_sync(void *arg, dmu_tx_t *tx)
3208 dsl_dataset_rollback_arg_t *ddra = arg;
3209 dsl_pool_t *dp = dmu_tx_pool(tx);
3210 dsl_dataset_t *ds, *clone;
3211 uint64_t cloneobj;
3212 char namebuf[ZFS_MAX_DATASET_NAME_LEN];
3214 VERIFY0(dsl_dataset_hold(dp, ddra->ddra_fsname, FTAG, &ds));
3216 dsl_dataset_name(ds->ds_prev, namebuf);
3217 fnvlist_add_string(ddra->ddra_result, "target", namebuf);
3219 cloneobj = dsl_dataset_create_sync(ds->ds_dir, "%rollback",
3220 ds->ds_prev, DS_CREATE_FLAG_NODIRTY, kcred, NULL, tx);
3222 VERIFY0(dsl_dataset_hold_obj(dp, cloneobj, FTAG, &clone));
3224 dsl_dataset_clone_swap_sync_impl(clone, ds, tx);
3225 dsl_dataset_zero_zil(ds, tx);
3227 dsl_destroy_head_sync_impl(clone, tx);
3229 dsl_dataset_rele(clone, FTAG);
3230 dsl_dataset_rele(ds, FTAG);
3234 * Rolls back the given filesystem or volume to the most recent snapshot.
3235 * The name of the most recent snapshot will be returned under key "target"
3236 * in the result nvlist.
3238 * If owner != NULL:
3239 * - The existing dataset MUST be owned by the specified owner at entry
3240 * - Upon return, dataset will still be held by the same owner, whether we
3241 * succeed or not.
3243 * This mode is required any time the existing filesystem is mounted. See
3244 * notes above zfs_suspend_fs() for further details.
3247 dsl_dataset_rollback(const char *fsname, const char *tosnap, void *owner,
3248 nvlist_t *result)
3250 dsl_dataset_rollback_arg_t ddra;
3252 ddra.ddra_fsname = fsname;
3253 ddra.ddra_tosnap = tosnap;
3254 ddra.ddra_owner = owner;
3255 ddra.ddra_result = result;
3257 return (dsl_sync_task(fsname, dsl_dataset_rollback_check,
3258 dsl_dataset_rollback_sync, &ddra,
3259 1, ZFS_SPACE_CHECK_RESERVED));
3262 struct promotenode {
3263 list_node_t link;
3264 dsl_dataset_t *ds;
3267 static int snaplist_space(list_t *l, uint64_t mintxg, uint64_t *spacep);
3268 static int promote_hold(dsl_dataset_promote_arg_t *ddpa, dsl_pool_t *dp,
3269 void *tag);
3270 static void promote_rele(dsl_dataset_promote_arg_t *ddpa, void *tag);
3273 dsl_dataset_promote_check(void *arg, dmu_tx_t *tx)
3275 dsl_dataset_promote_arg_t *ddpa = arg;
3276 dsl_pool_t *dp = dmu_tx_pool(tx);
3277 dsl_dataset_t *hds;
3278 struct promotenode *snap;
3279 dsl_dataset_t *origin_ds, *origin_head;
3280 int err;
3281 uint64_t unused;
3282 uint64_t ss_mv_cnt;
3283 size_t max_snap_len;
3284 boolean_t conflicting_snaps;
3286 err = promote_hold(ddpa, dp, FTAG);
3287 if (err != 0)
3288 return (err);
3290 hds = ddpa->ddpa_clone;
3291 max_snap_len = MAXNAMELEN - strlen(ddpa->ddpa_clonename) - 1;
3293 if (dsl_dataset_phys(hds)->ds_flags & DS_FLAG_NOPROMOTE) {
3294 promote_rele(ddpa, FTAG);
3295 return (SET_ERROR(EXDEV));
3298 snap = list_head(&ddpa->shared_snaps);
3299 origin_head = snap->ds;
3300 if (snap == NULL) {
3301 err = SET_ERROR(ENOENT);
3302 goto out;
3304 origin_ds = snap->ds;
3307 * Encrypted clones share a DSL Crypto Key with their origin's dsl dir.
3308 * When doing a promote we must make sure the encryption root for
3309 * both the target and the target's origin does not change to avoid
3310 * needing to rewrap encryption keys
3312 err = dsl_dataset_promote_crypt_check(hds->ds_dir, origin_ds->ds_dir);
3313 if (err != 0)
3314 goto out;
3317 * Compute and check the amount of space to transfer. Since this is
3318 * so expensive, don't do the preliminary check.
3320 if (!dmu_tx_is_syncing(tx)) {
3321 promote_rele(ddpa, FTAG);
3322 return (0);
3325 /* compute origin's new unique space */
3326 snap = list_tail(&ddpa->clone_snaps);
3327 ASSERT(snap != NULL);
3328 ASSERT3U(dsl_dataset_phys(snap->ds)->ds_prev_snap_obj, ==,
3329 origin_ds->ds_object);
3330 dsl_deadlist_space_range(&snap->ds->ds_deadlist,
3331 dsl_dataset_phys(origin_ds)->ds_prev_snap_txg, UINT64_MAX,
3332 &ddpa->unique, &unused, &unused);
3335 * Walk the snapshots that we are moving
3337 * Compute space to transfer. Consider the incremental changes
3338 * to used by each snapshot:
3339 * (my used) = (prev's used) + (blocks born) - (blocks killed)
3340 * So each snapshot gave birth to:
3341 * (blocks born) = (my used) - (prev's used) + (blocks killed)
3342 * So a sequence would look like:
3343 * (uN - u(N-1) + kN) + ... + (u1 - u0 + k1) + (u0 - 0 + k0)
3344 * Which simplifies to:
3345 * uN + kN + kN-1 + ... + k1 + k0
3346 * Note however, if we stop before we reach the ORIGIN we get:
3347 * uN + kN + kN-1 + ... + kM - uM-1
3349 conflicting_snaps = B_FALSE;
3350 ss_mv_cnt = 0;
3351 ddpa->used = dsl_dataset_phys(origin_ds)->ds_referenced_bytes;
3352 ddpa->comp = dsl_dataset_phys(origin_ds)->ds_compressed_bytes;
3353 ddpa->uncomp = dsl_dataset_phys(origin_ds)->ds_uncompressed_bytes;
3354 for (snap = list_head(&ddpa->shared_snaps); snap;
3355 snap = list_next(&ddpa->shared_snaps, snap)) {
3356 uint64_t val, dlused, dlcomp, dluncomp;
3357 dsl_dataset_t *ds = snap->ds;
3359 ss_mv_cnt++;
3362 * If there are long holds, we won't be able to evict
3363 * the objset.
3365 if (dsl_dataset_long_held(ds)) {
3366 err = SET_ERROR(EBUSY);
3367 goto out;
3370 /* Check that the snapshot name does not conflict */
3371 VERIFY0(dsl_dataset_get_snapname(ds));
3372 if (strlen(ds->ds_snapname) >= max_snap_len) {
3373 err = SET_ERROR(ENAMETOOLONG);
3374 goto out;
3376 err = dsl_dataset_snap_lookup(hds, ds->ds_snapname, &val);
3377 if (err == 0) {
3378 fnvlist_add_boolean(ddpa->err_ds,
3379 snap->ds->ds_snapname);
3380 conflicting_snaps = B_TRUE;
3381 } else if (err != ENOENT) {
3382 goto out;
3385 /* The very first snapshot does not have a deadlist */
3386 if (dsl_dataset_phys(ds)->ds_prev_snap_obj == 0)
3387 continue;
3389 dsl_deadlist_space(&ds->ds_deadlist,
3390 &dlused, &dlcomp, &dluncomp);
3391 ddpa->used += dlused;
3392 ddpa->comp += dlcomp;
3393 ddpa->uncomp += dluncomp;
3397 * Check that bookmarks that are being transferred don't have
3398 * name conflicts.
3400 for (dsl_bookmark_node_t *dbn = avl_first(&origin_head->ds_bookmarks);
3401 dbn != NULL && dbn->dbn_phys.zbm_creation_txg <=
3402 dsl_dataset_phys(origin_ds)->ds_creation_txg;
3403 dbn = AVL_NEXT(&origin_head->ds_bookmarks, dbn)) {
3404 if (strlen(dbn->dbn_name) >= max_snap_len) {
3405 err = SET_ERROR(ENAMETOOLONG);
3406 goto out;
3408 zfs_bookmark_phys_t bm;
3409 err = dsl_bookmark_lookup_impl(ddpa->ddpa_clone,
3410 dbn->dbn_name, &bm);
3412 if (err == 0) {
3413 fnvlist_add_boolean(ddpa->err_ds, dbn->dbn_name);
3414 conflicting_snaps = B_TRUE;
3415 } else if (err == ESRCH) {
3416 err = 0;
3417 } else if (err != 0) {
3418 goto out;
3423 * In order to return the full list of conflicting snapshots, we check
3424 * whether there was a conflict after traversing all of them.
3426 if (conflicting_snaps) {
3427 err = SET_ERROR(EEXIST);
3428 goto out;
3432 * If we are a clone of a clone then we never reached ORIGIN,
3433 * so we need to subtract out the clone origin's used space.
3435 if (ddpa->origin_origin) {
3436 ddpa->used -=
3437 dsl_dataset_phys(ddpa->origin_origin)->ds_referenced_bytes;
3438 ddpa->comp -=
3439 dsl_dataset_phys(ddpa->origin_origin)->ds_compressed_bytes;
3440 ddpa->uncomp -=
3441 dsl_dataset_phys(ddpa->origin_origin)->
3442 ds_uncompressed_bytes;
3445 /* Check that there is enough space and limit headroom here */
3446 err = dsl_dir_transfer_possible(origin_ds->ds_dir, hds->ds_dir,
3447 0, ss_mv_cnt, ddpa->used, ddpa->cr, ddpa->proc);
3448 if (err != 0)
3449 goto out;
3452 * Compute the amounts of space that will be used by snapshots
3453 * after the promotion (for both origin and clone). For each,
3454 * it is the amount of space that will be on all of their
3455 * deadlists (that was not born before their new origin).
3457 if (dsl_dir_phys(hds->ds_dir)->dd_flags & DD_FLAG_USED_BREAKDOWN) {
3458 uint64_t space;
3461 * Note, typically this will not be a clone of a clone,
3462 * so dd_origin_txg will be < TXG_INITIAL, so
3463 * these snaplist_space() -> dsl_deadlist_space_range()
3464 * calls will be fast because they do not have to
3465 * iterate over all bps.
3467 snap = list_head(&ddpa->origin_snaps);
3468 if (snap == NULL) {
3469 err = SET_ERROR(ENOENT);
3470 goto out;
3472 err = snaplist_space(&ddpa->shared_snaps,
3473 snap->ds->ds_dir->dd_origin_txg, &ddpa->cloneusedsnap);
3474 if (err != 0)
3475 goto out;
3477 err = snaplist_space(&ddpa->clone_snaps,
3478 snap->ds->ds_dir->dd_origin_txg, &space);
3479 if (err != 0)
3480 goto out;
3481 ddpa->cloneusedsnap += space;
3483 if (dsl_dir_phys(origin_ds->ds_dir)->dd_flags &
3484 DD_FLAG_USED_BREAKDOWN) {
3485 err = snaplist_space(&ddpa->origin_snaps,
3486 dsl_dataset_phys(origin_ds)->ds_creation_txg,
3487 &ddpa->originusedsnap);
3488 if (err != 0)
3489 goto out;
3492 out:
3493 promote_rele(ddpa, FTAG);
3494 return (err);
3497 void
3498 dsl_dataset_promote_sync(void *arg, dmu_tx_t *tx)
3500 dsl_dataset_promote_arg_t *ddpa = arg;
3501 dsl_pool_t *dp = dmu_tx_pool(tx);
3502 dsl_dataset_t *hds;
3503 struct promotenode *snap;
3504 dsl_dataset_t *origin_ds;
3505 dsl_dataset_t *origin_head;
3506 dsl_dir_t *dd;
3507 dsl_dir_t *odd = NULL;
3508 uint64_t oldnext_obj;
3509 int64_t delta;
3511 ASSERT(nvlist_empty(ddpa->err_ds));
3513 VERIFY0(promote_hold(ddpa, dp, FTAG));
3514 hds = ddpa->ddpa_clone;
3516 ASSERT0(dsl_dataset_phys(hds)->ds_flags & DS_FLAG_NOPROMOTE);
3518 snap = list_head(&ddpa->shared_snaps);
3519 origin_ds = snap->ds;
3520 dd = hds->ds_dir;
3522 snap = list_head(&ddpa->origin_snaps);
3523 origin_head = snap->ds;
3526 * We need to explicitly open odd, since origin_ds's dd will be
3527 * changing.
3529 VERIFY0(dsl_dir_hold_obj(dp, origin_ds->ds_dir->dd_object,
3530 NULL, FTAG, &odd));
3532 dsl_dataset_promote_crypt_sync(hds->ds_dir, odd, tx);
3534 /* change origin's next snap */
3535 dmu_buf_will_dirty(origin_ds->ds_dbuf, tx);
3536 oldnext_obj = dsl_dataset_phys(origin_ds)->ds_next_snap_obj;
3537 snap = list_tail(&ddpa->clone_snaps);
3538 ASSERT3U(dsl_dataset_phys(snap->ds)->ds_prev_snap_obj, ==,
3539 origin_ds->ds_object);
3540 dsl_dataset_phys(origin_ds)->ds_next_snap_obj = snap->ds->ds_object;
3542 /* change the origin's next clone */
3543 if (dsl_dataset_phys(origin_ds)->ds_next_clones_obj) {
3544 dsl_dataset_remove_from_next_clones(origin_ds,
3545 snap->ds->ds_object, tx);
3546 VERIFY0(zap_add_int(dp->dp_meta_objset,
3547 dsl_dataset_phys(origin_ds)->ds_next_clones_obj,
3548 oldnext_obj, tx));
3551 /* change origin */
3552 dmu_buf_will_dirty(dd->dd_dbuf, tx);
3553 ASSERT3U(dsl_dir_phys(dd)->dd_origin_obj, ==, origin_ds->ds_object);
3554 dsl_dir_phys(dd)->dd_origin_obj = dsl_dir_phys(odd)->dd_origin_obj;
3555 dd->dd_origin_txg = origin_head->ds_dir->dd_origin_txg;
3556 dmu_buf_will_dirty(odd->dd_dbuf, tx);
3557 dsl_dir_phys(odd)->dd_origin_obj = origin_ds->ds_object;
3558 origin_head->ds_dir->dd_origin_txg =
3559 dsl_dataset_phys(origin_ds)->ds_creation_txg;
3561 /* change dd_clone entries */
3562 if (spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
3563 VERIFY0(zap_remove_int(dp->dp_meta_objset,
3564 dsl_dir_phys(odd)->dd_clones, hds->ds_object, tx));
3565 VERIFY0(zap_add_int(dp->dp_meta_objset,
3566 dsl_dir_phys(ddpa->origin_origin->ds_dir)->dd_clones,
3567 hds->ds_object, tx));
3569 VERIFY0(zap_remove_int(dp->dp_meta_objset,
3570 dsl_dir_phys(ddpa->origin_origin->ds_dir)->dd_clones,
3571 origin_head->ds_object, tx));
3572 if (dsl_dir_phys(dd)->dd_clones == 0) {
3573 dsl_dir_phys(dd)->dd_clones =
3574 zap_create(dp->dp_meta_objset, DMU_OT_DSL_CLONES,
3575 DMU_OT_NONE, 0, tx);
3577 VERIFY0(zap_add_int(dp->dp_meta_objset,
3578 dsl_dir_phys(dd)->dd_clones, origin_head->ds_object, tx));
3582 * Move bookmarks to this dir.
3584 dsl_bookmark_node_t *dbn_next;
3585 for (dsl_bookmark_node_t *dbn = avl_first(&origin_head->ds_bookmarks);
3586 dbn != NULL && dbn->dbn_phys.zbm_creation_txg <=
3587 dsl_dataset_phys(origin_ds)->ds_creation_txg;
3588 dbn = dbn_next) {
3589 dbn_next = AVL_NEXT(&origin_head->ds_bookmarks, dbn);
3591 avl_remove(&origin_head->ds_bookmarks, dbn);
3592 VERIFY0(zap_remove(dp->dp_meta_objset,
3593 origin_head->ds_bookmarks_obj, dbn->dbn_name, tx));
3595 dsl_bookmark_node_add(hds, dbn, tx);
3598 dsl_bookmark_next_changed(hds, origin_ds, tx);
3600 /* move snapshots to this dir */
3601 for (snap = list_head(&ddpa->shared_snaps); snap;
3602 snap = list_next(&ddpa->shared_snaps, snap)) {
3603 dsl_dataset_t *ds = snap->ds;
3606 * Property callbacks are registered to a particular
3607 * dsl_dir. Since ours is changing, evict the objset
3608 * so that they will be unregistered from the old dsl_dir.
3610 if (ds->ds_objset) {
3611 dmu_objset_evict(ds->ds_objset);
3612 ds->ds_objset = NULL;
3615 /* move snap name entry */
3616 VERIFY0(dsl_dataset_get_snapname(ds));
3617 VERIFY0(dsl_dataset_snap_remove(origin_head,
3618 ds->ds_snapname, tx, B_TRUE));
3619 VERIFY0(zap_add(dp->dp_meta_objset,
3620 dsl_dataset_phys(hds)->ds_snapnames_zapobj, ds->ds_snapname,
3621 8, 1, &ds->ds_object, tx));
3622 dsl_fs_ss_count_adjust(hds->ds_dir, 1,
3623 DD_FIELD_SNAPSHOT_COUNT, tx);
3625 /* change containing dsl_dir */
3626 dmu_buf_will_dirty(ds->ds_dbuf, tx);
3627 ASSERT3U(dsl_dataset_phys(ds)->ds_dir_obj, ==, odd->dd_object);
3628 dsl_dataset_phys(ds)->ds_dir_obj = dd->dd_object;
3629 ASSERT3P(ds->ds_dir, ==, odd);
3630 dsl_dir_rele(ds->ds_dir, ds);
3631 VERIFY0(dsl_dir_hold_obj(dp, dd->dd_object,
3632 NULL, ds, &ds->ds_dir));
3634 /* move any clone references */
3635 if (dsl_dataset_phys(ds)->ds_next_clones_obj &&
3636 spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
3637 zap_cursor_t zc;
3638 zap_attribute_t za;
3640 for (zap_cursor_init(&zc, dp->dp_meta_objset,
3641 dsl_dataset_phys(ds)->ds_next_clones_obj);
3642 zap_cursor_retrieve(&zc, &za) == 0;
3643 zap_cursor_advance(&zc)) {
3644 dsl_dataset_t *cnds;
3645 uint64_t o;
3647 if (za.za_first_integer == oldnext_obj) {
3649 * We've already moved the
3650 * origin's reference.
3652 continue;
3655 VERIFY0(dsl_dataset_hold_obj(dp,
3656 za.za_first_integer, FTAG, &cnds));
3657 o = dsl_dir_phys(cnds->ds_dir)->
3658 dd_head_dataset_obj;
3660 VERIFY0(zap_remove_int(dp->dp_meta_objset,
3661 dsl_dir_phys(odd)->dd_clones, o, tx));
3662 VERIFY0(zap_add_int(dp->dp_meta_objset,
3663 dsl_dir_phys(dd)->dd_clones, o, tx));
3664 dsl_dataset_rele(cnds, FTAG);
3666 zap_cursor_fini(&zc);
3669 ASSERT(!dsl_prop_hascb(ds));
3673 * Change space accounting.
3674 * Note, pa->*usedsnap and dd_used_breakdown[SNAP] will either
3675 * both be valid, or both be 0 (resulting in delta == 0). This
3676 * is true for each of {clone,origin} independently.
3679 delta = ddpa->cloneusedsnap -
3680 dsl_dir_phys(dd)->dd_used_breakdown[DD_USED_SNAP];
3681 ASSERT3S(delta, >=, 0);
3682 ASSERT3U(ddpa->used, >=, delta);
3683 dsl_dir_diduse_space(dd, DD_USED_SNAP, delta, 0, 0, tx);
3684 dsl_dir_diduse_space(dd, DD_USED_HEAD,
3685 ddpa->used - delta, ddpa->comp, ddpa->uncomp, tx);
3687 delta = ddpa->originusedsnap -
3688 dsl_dir_phys(odd)->dd_used_breakdown[DD_USED_SNAP];
3689 ASSERT3S(delta, <=, 0);
3690 ASSERT3U(ddpa->used, >=, -delta);
3691 dsl_dir_diduse_space(odd, DD_USED_SNAP, delta, 0, 0, tx);
3692 dsl_dir_diduse_space(odd, DD_USED_HEAD,
3693 -ddpa->used - delta, -ddpa->comp, -ddpa->uncomp, tx);
3695 dsl_dataset_phys(origin_ds)->ds_unique_bytes = ddpa->unique;
3698 * Since livelists are specific to a clone's origin txg, they
3699 * are no longer accurate. Destroy the livelist from the clone being
3700 * promoted. If the origin dataset is a clone, destroy its livelist
3701 * as well.
3703 dsl_dir_remove_livelist(dd, tx, B_TRUE);
3704 dsl_dir_remove_livelist(odd, tx, B_TRUE);
3706 /* log history record */
3707 spa_history_log_internal_ds(hds, "promote", tx, " ");
3709 dsl_dir_rele(odd, FTAG);
3710 promote_rele(ddpa, FTAG);
3713 * Transfer common error blocks from old head to new head.
3715 if (spa_feature_is_enabled(dp->dp_spa, SPA_FEATURE_HEAD_ERRLOG)) {
3716 uint64_t old_head = origin_head->ds_object;
3717 uint64_t new_head = hds->ds_object;
3718 spa_swap_errlog(dp->dp_spa, new_head, old_head, tx);
3723 * Make a list of dsl_dataset_t's for the snapshots between first_obj
3724 * (exclusive) and last_obj (inclusive). The list will be in reverse
3725 * order (last_obj will be the list_head()). If first_obj == 0, do all
3726 * snapshots back to this dataset's origin.
3728 static int
3729 snaplist_make(dsl_pool_t *dp,
3730 uint64_t first_obj, uint64_t last_obj, list_t *l, void *tag)
3732 uint64_t obj = last_obj;
3734 list_create(l, sizeof (struct promotenode),
3735 offsetof(struct promotenode, link));
3737 while (obj != first_obj) {
3738 dsl_dataset_t *ds;
3739 struct promotenode *snap;
3740 int err;
3742 err = dsl_dataset_hold_obj(dp, obj, tag, &ds);
3743 ASSERT(err != ENOENT);
3744 if (err != 0)
3745 return (err);
3747 if (first_obj == 0)
3748 first_obj = dsl_dir_phys(ds->ds_dir)->dd_origin_obj;
3750 snap = kmem_alloc(sizeof (*snap), KM_SLEEP);
3751 snap->ds = ds;
3752 list_insert_tail(l, snap);
3753 obj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
3756 return (0);
3759 static int
3760 snaplist_space(list_t *l, uint64_t mintxg, uint64_t *spacep)
3762 struct promotenode *snap;
3764 *spacep = 0;
3765 for (snap = list_head(l); snap; snap = list_next(l, snap)) {
3766 uint64_t used, comp, uncomp;
3767 dsl_deadlist_space_range(&snap->ds->ds_deadlist,
3768 mintxg, UINT64_MAX, &used, &comp, &uncomp);
3769 *spacep += used;
3771 return (0);
3774 static void
3775 snaplist_destroy(list_t *l, void *tag)
3777 struct promotenode *snap;
3779 if (l == NULL || !list_link_active(&l->list_head))
3780 return;
3782 while ((snap = list_tail(l)) != NULL) {
3783 list_remove(l, snap);
3784 dsl_dataset_rele(snap->ds, tag);
3785 kmem_free(snap, sizeof (*snap));
3787 list_destroy(l);
3790 static int
3791 promote_hold(dsl_dataset_promote_arg_t *ddpa, dsl_pool_t *dp, void *tag)
3793 int error;
3794 dsl_dir_t *dd;
3795 struct promotenode *snap;
3797 error = dsl_dataset_hold(dp, ddpa->ddpa_clonename, tag,
3798 &ddpa->ddpa_clone);
3799 if (error != 0)
3800 return (error);
3801 dd = ddpa->ddpa_clone->ds_dir;
3803 if (ddpa->ddpa_clone->ds_is_snapshot ||
3804 !dsl_dir_is_clone(dd)) {
3805 dsl_dataset_rele(ddpa->ddpa_clone, tag);
3806 return (SET_ERROR(EINVAL));
3809 error = snaplist_make(dp, 0, dsl_dir_phys(dd)->dd_origin_obj,
3810 &ddpa->shared_snaps, tag);
3811 if (error != 0)
3812 goto out;
3814 error = snaplist_make(dp, 0, ddpa->ddpa_clone->ds_object,
3815 &ddpa->clone_snaps, tag);
3816 if (error != 0)
3817 goto out;
3819 snap = list_head(&ddpa->shared_snaps);
3820 ASSERT3U(snap->ds->ds_object, ==, dsl_dir_phys(dd)->dd_origin_obj);
3821 error = snaplist_make(dp, dsl_dir_phys(dd)->dd_origin_obj,
3822 dsl_dir_phys(snap->ds->ds_dir)->dd_head_dataset_obj,
3823 &ddpa->origin_snaps, tag);
3824 if (error != 0)
3825 goto out;
3827 if (dsl_dir_phys(snap->ds->ds_dir)->dd_origin_obj != 0) {
3828 error = dsl_dataset_hold_obj(dp,
3829 dsl_dir_phys(snap->ds->ds_dir)->dd_origin_obj,
3830 tag, &ddpa->origin_origin);
3831 if (error != 0)
3832 goto out;
3834 out:
3835 if (error != 0)
3836 promote_rele(ddpa, tag);
3837 return (error);
3840 static void
3841 promote_rele(dsl_dataset_promote_arg_t *ddpa, void *tag)
3843 snaplist_destroy(&ddpa->shared_snaps, tag);
3844 snaplist_destroy(&ddpa->clone_snaps, tag);
3845 snaplist_destroy(&ddpa->origin_snaps, tag);
3846 if (ddpa->origin_origin != NULL)
3847 dsl_dataset_rele(ddpa->origin_origin, tag);
3848 dsl_dataset_rele(ddpa->ddpa_clone, tag);
3852 * Promote a clone.
3854 * If it fails due to a conflicting snapshot name, "conflsnap" will be filled
3855 * in with the name. (It must be at least ZFS_MAX_DATASET_NAME_LEN bytes long.)
3858 dsl_dataset_promote(const char *name, char *conflsnap)
3860 dsl_dataset_promote_arg_t ddpa = { 0 };
3861 uint64_t numsnaps;
3862 int error;
3863 nvpair_t *snap_pair;
3864 objset_t *os;
3867 * We will modify space proportional to the number of
3868 * snapshots. Compute numsnaps.
3870 error = dmu_objset_hold(name, FTAG, &os);
3871 if (error != 0)
3872 return (error);
3873 error = zap_count(dmu_objset_pool(os)->dp_meta_objset,
3874 dsl_dataset_phys(dmu_objset_ds(os))->ds_snapnames_zapobj,
3875 &numsnaps);
3876 dmu_objset_rele(os, FTAG);
3877 if (error != 0)
3878 return (error);
3880 ddpa.ddpa_clonename = name;
3881 ddpa.err_ds = fnvlist_alloc();
3882 ddpa.cr = CRED();
3883 ddpa.proc = curproc;
3885 error = dsl_sync_task(name, dsl_dataset_promote_check,
3886 dsl_dataset_promote_sync, &ddpa,
3887 2 + numsnaps, ZFS_SPACE_CHECK_RESERVED);
3890 * Return the first conflicting snapshot found.
3892 snap_pair = nvlist_next_nvpair(ddpa.err_ds, NULL);
3893 if (snap_pair != NULL && conflsnap != NULL)
3894 (void) strlcpy(conflsnap, nvpair_name(snap_pair),
3895 ZFS_MAX_DATASET_NAME_LEN);
3897 fnvlist_free(ddpa.err_ds);
3898 return (error);
3902 dsl_dataset_clone_swap_check_impl(dsl_dataset_t *clone,
3903 dsl_dataset_t *origin_head, boolean_t force, void *owner, dmu_tx_t *tx)
3906 * "slack" factor for received datasets with refquota set on them.
3907 * See the bottom of this function for details on its use.
3909 uint64_t refquota_slack = (uint64_t)DMU_MAX_ACCESS *
3910 spa_asize_inflation;
3911 int64_t unused_refres_delta;
3913 /* they should both be heads */
3914 if (clone->ds_is_snapshot ||
3915 origin_head->ds_is_snapshot)
3916 return (SET_ERROR(EINVAL));
3918 /* if we are not forcing, the branch point should be just before them */
3919 if (!force && clone->ds_prev != origin_head->ds_prev)
3920 return (SET_ERROR(EINVAL));
3922 /* clone should be the clone (unless they are unrelated) */
3923 if (clone->ds_prev != NULL &&
3924 clone->ds_prev != clone->ds_dir->dd_pool->dp_origin_snap &&
3925 origin_head->ds_dir != clone->ds_prev->ds_dir)
3926 return (SET_ERROR(EINVAL));
3928 /* the clone should be a child of the origin */
3929 if (clone->ds_dir->dd_parent != origin_head->ds_dir)
3930 return (SET_ERROR(EINVAL));
3932 /* origin_head shouldn't be modified unless 'force' */
3933 if (!force &&
3934 dsl_dataset_modified_since_snap(origin_head, origin_head->ds_prev))
3935 return (SET_ERROR(ETXTBSY));
3937 /* origin_head should have no long holds (e.g. is not mounted) */
3938 if (dsl_dataset_handoff_check(origin_head, owner, tx))
3939 return (SET_ERROR(EBUSY));
3941 /* check amount of any unconsumed refreservation */
3942 unused_refres_delta =
3943 (int64_t)MIN(origin_head->ds_reserved,
3944 dsl_dataset_phys(origin_head)->ds_unique_bytes) -
3945 (int64_t)MIN(origin_head->ds_reserved,
3946 dsl_dataset_phys(clone)->ds_unique_bytes);
3948 if (unused_refres_delta > 0 &&
3949 unused_refres_delta >
3950 dsl_dir_space_available(origin_head->ds_dir, NULL, 0, TRUE))
3951 return (SET_ERROR(ENOSPC));
3954 * The clone can't be too much over the head's refquota.
3956 * To ensure that the entire refquota can be used, we allow one
3957 * transaction to exceed the refquota. Therefore, this check
3958 * needs to also allow for the space referenced to be more than the
3959 * refquota. The maximum amount of space that one transaction can use
3960 * on disk is DMU_MAX_ACCESS * spa_asize_inflation. Allowing this
3961 * overage ensures that we are able to receive a filesystem that
3962 * exceeds the refquota on the source system.
3964 * So that overage is the refquota_slack we use below.
3966 if (origin_head->ds_quota != 0 &&
3967 dsl_dataset_phys(clone)->ds_referenced_bytes >
3968 origin_head->ds_quota + refquota_slack)
3969 return (SET_ERROR(EDQUOT));
3971 return (0);
3974 static void
3975 dsl_dataset_swap_remap_deadlists(dsl_dataset_t *clone,
3976 dsl_dataset_t *origin, dmu_tx_t *tx)
3978 uint64_t clone_remap_dl_obj, origin_remap_dl_obj;
3979 dsl_pool_t *dp = dmu_tx_pool(tx);
3981 ASSERT(dsl_pool_sync_context(dp));
3983 clone_remap_dl_obj = dsl_dataset_get_remap_deadlist_object(clone);
3984 origin_remap_dl_obj = dsl_dataset_get_remap_deadlist_object(origin);
3986 if (clone_remap_dl_obj != 0) {
3987 dsl_deadlist_close(&clone->ds_remap_deadlist);
3988 dsl_dataset_unset_remap_deadlist_object(clone, tx);
3990 if (origin_remap_dl_obj != 0) {
3991 dsl_deadlist_close(&origin->ds_remap_deadlist);
3992 dsl_dataset_unset_remap_deadlist_object(origin, tx);
3995 if (clone_remap_dl_obj != 0) {
3996 dsl_dataset_set_remap_deadlist_object(origin,
3997 clone_remap_dl_obj, tx);
3998 dsl_deadlist_open(&origin->ds_remap_deadlist,
3999 dp->dp_meta_objset, clone_remap_dl_obj);
4001 if (origin_remap_dl_obj != 0) {
4002 dsl_dataset_set_remap_deadlist_object(clone,
4003 origin_remap_dl_obj, tx);
4004 dsl_deadlist_open(&clone->ds_remap_deadlist,
4005 dp->dp_meta_objset, origin_remap_dl_obj);
4009 void
4010 dsl_dataset_clone_swap_sync_impl(dsl_dataset_t *clone,
4011 dsl_dataset_t *origin_head, dmu_tx_t *tx)
4013 dsl_pool_t *dp = dmu_tx_pool(tx);
4014 int64_t unused_refres_delta;
4016 ASSERT(clone->ds_reserved == 0);
4018 * NOTE: On DEBUG kernels there could be a race between this and
4019 * the check function if spa_asize_inflation is adjusted...
4021 ASSERT(origin_head->ds_quota == 0 ||
4022 dsl_dataset_phys(clone)->ds_unique_bytes <= origin_head->ds_quota +
4023 DMU_MAX_ACCESS * spa_asize_inflation);
4024 ASSERT3P(clone->ds_prev, ==, origin_head->ds_prev);
4026 dsl_dir_cancel_waiters(origin_head->ds_dir);
4029 * Swap per-dataset feature flags.
4031 for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
4032 if (!(spa_feature_table[f].fi_flags &
4033 ZFEATURE_FLAG_PER_DATASET)) {
4034 ASSERT(!dsl_dataset_feature_is_active(clone, f));
4035 ASSERT(!dsl_dataset_feature_is_active(origin_head, f));
4036 continue;
4039 boolean_t clone_inuse = dsl_dataset_feature_is_active(clone, f);
4040 void *clone_feature = clone->ds_feature[f];
4041 boolean_t origin_head_inuse =
4042 dsl_dataset_feature_is_active(origin_head, f);
4043 void *origin_head_feature = origin_head->ds_feature[f];
4045 if (clone_inuse)
4046 dsl_dataset_deactivate_feature_impl(clone, f, tx);
4047 if (origin_head_inuse)
4048 dsl_dataset_deactivate_feature_impl(origin_head, f, tx);
4050 if (clone_inuse) {
4051 dsl_dataset_activate_feature(origin_head->ds_object, f,
4052 clone_feature, tx);
4053 origin_head->ds_feature[f] = clone_feature;
4055 if (origin_head_inuse) {
4056 dsl_dataset_activate_feature(clone->ds_object, f,
4057 origin_head_feature, tx);
4058 clone->ds_feature[f] = origin_head_feature;
4062 dmu_buf_will_dirty(clone->ds_dbuf, tx);
4063 dmu_buf_will_dirty(origin_head->ds_dbuf, tx);
4065 if (clone->ds_objset != NULL) {
4066 dmu_objset_evict(clone->ds_objset);
4067 clone->ds_objset = NULL;
4070 if (origin_head->ds_objset != NULL) {
4071 dmu_objset_evict(origin_head->ds_objset);
4072 origin_head->ds_objset = NULL;
4075 unused_refres_delta =
4076 (int64_t)MIN(origin_head->ds_reserved,
4077 dsl_dataset_phys(origin_head)->ds_unique_bytes) -
4078 (int64_t)MIN(origin_head->ds_reserved,
4079 dsl_dataset_phys(clone)->ds_unique_bytes);
4082 * Reset origin's unique bytes.
4085 dsl_dataset_t *origin = clone->ds_prev;
4086 uint64_t comp, uncomp;
4088 dmu_buf_will_dirty(origin->ds_dbuf, tx);
4089 dsl_deadlist_space_range(&clone->ds_deadlist,
4090 dsl_dataset_phys(origin)->ds_prev_snap_txg, UINT64_MAX,
4091 &dsl_dataset_phys(origin)->ds_unique_bytes, &comp, &uncomp);
4094 /* swap blkptrs */
4096 rrw_enter(&clone->ds_bp_rwlock, RW_WRITER, FTAG);
4097 rrw_enter(&origin_head->ds_bp_rwlock, RW_WRITER, FTAG);
4098 blkptr_t tmp;
4099 tmp = dsl_dataset_phys(origin_head)->ds_bp;
4100 dsl_dataset_phys(origin_head)->ds_bp =
4101 dsl_dataset_phys(clone)->ds_bp;
4102 dsl_dataset_phys(clone)->ds_bp = tmp;
4103 rrw_exit(&origin_head->ds_bp_rwlock, FTAG);
4104 rrw_exit(&clone->ds_bp_rwlock, FTAG);
4107 /* set dd_*_bytes */
4109 int64_t dused, dcomp, duncomp;
4110 uint64_t cdl_used, cdl_comp, cdl_uncomp;
4111 uint64_t odl_used, odl_comp, odl_uncomp;
4113 ASSERT3U(dsl_dir_phys(clone->ds_dir)->
4114 dd_used_breakdown[DD_USED_SNAP], ==, 0);
4116 dsl_deadlist_space(&clone->ds_deadlist,
4117 &cdl_used, &cdl_comp, &cdl_uncomp);
4118 dsl_deadlist_space(&origin_head->ds_deadlist,
4119 &odl_used, &odl_comp, &odl_uncomp);
4121 dused = dsl_dataset_phys(clone)->ds_referenced_bytes +
4122 cdl_used -
4123 (dsl_dataset_phys(origin_head)->ds_referenced_bytes +
4124 odl_used);
4125 dcomp = dsl_dataset_phys(clone)->ds_compressed_bytes +
4126 cdl_comp -
4127 (dsl_dataset_phys(origin_head)->ds_compressed_bytes +
4128 odl_comp);
4129 duncomp = dsl_dataset_phys(clone)->ds_uncompressed_bytes +
4130 cdl_uncomp -
4131 (dsl_dataset_phys(origin_head)->ds_uncompressed_bytes +
4132 odl_uncomp);
4134 dsl_dir_diduse_space(origin_head->ds_dir, DD_USED_HEAD,
4135 dused, dcomp, duncomp, tx);
4136 dsl_dir_diduse_space(clone->ds_dir, DD_USED_HEAD,
4137 -dused, -dcomp, -duncomp, tx);
4140 * The difference in the space used by snapshots is the
4141 * difference in snapshot space due to the head's
4142 * deadlist (since that's the only thing that's
4143 * changing that affects the snapused).
4145 dsl_deadlist_space_range(&clone->ds_deadlist,
4146 origin_head->ds_dir->dd_origin_txg, UINT64_MAX,
4147 &cdl_used, &cdl_comp, &cdl_uncomp);
4148 dsl_deadlist_space_range(&origin_head->ds_deadlist,
4149 origin_head->ds_dir->dd_origin_txg, UINT64_MAX,
4150 &odl_used, &odl_comp, &odl_uncomp);
4151 dsl_dir_transfer_space(origin_head->ds_dir, cdl_used - odl_used,
4152 DD_USED_HEAD, DD_USED_SNAP, tx);
4155 /* swap ds_*_bytes */
4156 SWITCH64(dsl_dataset_phys(origin_head)->ds_referenced_bytes,
4157 dsl_dataset_phys(clone)->ds_referenced_bytes);
4158 SWITCH64(dsl_dataset_phys(origin_head)->ds_compressed_bytes,
4159 dsl_dataset_phys(clone)->ds_compressed_bytes);
4160 SWITCH64(dsl_dataset_phys(origin_head)->ds_uncompressed_bytes,
4161 dsl_dataset_phys(clone)->ds_uncompressed_bytes);
4162 SWITCH64(dsl_dataset_phys(origin_head)->ds_unique_bytes,
4163 dsl_dataset_phys(clone)->ds_unique_bytes);
4165 /* apply any parent delta for change in unconsumed refreservation */
4166 dsl_dir_diduse_space(origin_head->ds_dir, DD_USED_REFRSRV,
4167 unused_refres_delta, 0, 0, tx);
4170 * Swap deadlists.
4172 dsl_deadlist_close(&clone->ds_deadlist);
4173 dsl_deadlist_close(&origin_head->ds_deadlist);
4174 SWITCH64(dsl_dataset_phys(origin_head)->ds_deadlist_obj,
4175 dsl_dataset_phys(clone)->ds_deadlist_obj);
4176 dsl_deadlist_open(&clone->ds_deadlist, dp->dp_meta_objset,
4177 dsl_dataset_phys(clone)->ds_deadlist_obj);
4178 dsl_deadlist_open(&origin_head->ds_deadlist, dp->dp_meta_objset,
4179 dsl_dataset_phys(origin_head)->ds_deadlist_obj);
4180 dsl_dataset_swap_remap_deadlists(clone, origin_head, tx);
4183 * If there is a bookmark at the origin, its "next dataset" is
4184 * changing, so we need to reset its FBN.
4186 dsl_bookmark_next_changed(origin_head, origin_head->ds_prev, tx);
4188 dsl_scan_ds_clone_swapped(origin_head, clone, tx);
4191 * Destroy any livelists associated with the clone or the origin,
4192 * since after the swap the corresponding livelists are no longer
4193 * valid.
4195 dsl_dir_remove_livelist(clone->ds_dir, tx, B_TRUE);
4196 dsl_dir_remove_livelist(origin_head->ds_dir, tx, B_TRUE);
4198 spa_history_log_internal_ds(clone, "clone swap", tx,
4199 "parent=%s", origin_head->ds_dir->dd_myname);
4203 * Given a pool name and a dataset object number in that pool,
4204 * return the name of that dataset.
4207 dsl_dsobj_to_dsname(char *pname, uint64_t obj, char *buf)
4209 dsl_pool_t *dp;
4210 dsl_dataset_t *ds;
4211 int error;
4213 error = dsl_pool_hold(pname, FTAG, &dp);
4214 if (error != 0)
4215 return (error);
4217 error = dsl_dataset_hold_obj(dp, obj, FTAG, &ds);
4218 if (error == 0) {
4219 dsl_dataset_name(ds, buf);
4220 dsl_dataset_rele(ds, FTAG);
4222 dsl_pool_rele(dp, FTAG);
4224 return (error);
4228 dsl_dataset_check_quota(dsl_dataset_t *ds, boolean_t check_quota,
4229 uint64_t asize, uint64_t inflight, uint64_t *used, uint64_t *ref_rsrv)
4231 int error = 0;
4233 ASSERT3S(asize, >, 0);
4236 * *ref_rsrv is the portion of asize that will come from any
4237 * unconsumed refreservation space.
4239 *ref_rsrv = 0;
4241 mutex_enter(&ds->ds_lock);
4243 * Make a space adjustment for reserved bytes.
4245 if (ds->ds_reserved > dsl_dataset_phys(ds)->ds_unique_bytes) {
4246 ASSERT3U(*used, >=,
4247 ds->ds_reserved - dsl_dataset_phys(ds)->ds_unique_bytes);
4248 *used -=
4249 (ds->ds_reserved - dsl_dataset_phys(ds)->ds_unique_bytes);
4250 *ref_rsrv =
4251 asize - MIN(asize, parent_delta(ds, asize + inflight));
4254 if (!check_quota || ds->ds_quota == 0) {
4255 mutex_exit(&ds->ds_lock);
4256 return (0);
4259 * If they are requesting more space, and our current estimate
4260 * is over quota, they get to try again unless the actual
4261 * on-disk is over quota and there are no pending changes (which
4262 * may free up space for us).
4264 if (dsl_dataset_phys(ds)->ds_referenced_bytes + inflight >=
4265 ds->ds_quota) {
4266 if (inflight > 0 ||
4267 dsl_dataset_phys(ds)->ds_referenced_bytes < ds->ds_quota)
4268 error = SET_ERROR(ERESTART);
4269 else
4270 error = SET_ERROR(EDQUOT);
4272 mutex_exit(&ds->ds_lock);
4274 return (error);
4277 typedef struct dsl_dataset_set_qr_arg {
4278 const char *ddsqra_name;
4279 zprop_source_t ddsqra_source;
4280 uint64_t ddsqra_value;
4281 } dsl_dataset_set_qr_arg_t;
4284 static int
4285 dsl_dataset_set_refquota_check(void *arg, dmu_tx_t *tx)
4287 dsl_dataset_set_qr_arg_t *ddsqra = arg;
4288 dsl_pool_t *dp = dmu_tx_pool(tx);
4289 dsl_dataset_t *ds;
4290 int error;
4291 uint64_t newval;
4293 if (spa_version(dp->dp_spa) < SPA_VERSION_REFQUOTA)
4294 return (SET_ERROR(ENOTSUP));
4296 error = dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds);
4297 if (error != 0)
4298 return (error);
4300 if (ds->ds_is_snapshot) {
4301 dsl_dataset_rele(ds, FTAG);
4302 return (SET_ERROR(EINVAL));
4305 error = dsl_prop_predict(ds->ds_dir,
4306 zfs_prop_to_name(ZFS_PROP_REFQUOTA),
4307 ddsqra->ddsqra_source, ddsqra->ddsqra_value, &newval);
4308 if (error != 0) {
4309 dsl_dataset_rele(ds, FTAG);
4310 return (error);
4313 if (newval == 0) {
4314 dsl_dataset_rele(ds, FTAG);
4315 return (0);
4318 if (newval < dsl_dataset_phys(ds)->ds_referenced_bytes ||
4319 newval < ds->ds_reserved) {
4320 dsl_dataset_rele(ds, FTAG);
4321 return (SET_ERROR(ENOSPC));
4324 dsl_dataset_rele(ds, FTAG);
4325 return (0);
4328 static void
4329 dsl_dataset_set_refquota_sync(void *arg, dmu_tx_t *tx)
4331 dsl_dataset_set_qr_arg_t *ddsqra = arg;
4332 dsl_pool_t *dp = dmu_tx_pool(tx);
4333 dsl_dataset_t *ds = NULL;
4334 uint64_t newval;
4336 VERIFY0(dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds));
4338 dsl_prop_set_sync_impl(ds,
4339 zfs_prop_to_name(ZFS_PROP_REFQUOTA),
4340 ddsqra->ddsqra_source, sizeof (ddsqra->ddsqra_value), 1,
4341 &ddsqra->ddsqra_value, tx);
4343 VERIFY0(dsl_prop_get_int_ds(ds,
4344 zfs_prop_to_name(ZFS_PROP_REFQUOTA), &newval));
4346 if (ds->ds_quota != newval) {
4347 dmu_buf_will_dirty(ds->ds_dbuf, tx);
4348 ds->ds_quota = newval;
4350 dsl_dataset_rele(ds, FTAG);
4354 dsl_dataset_set_refquota(const char *dsname, zprop_source_t source,
4355 uint64_t refquota)
4357 dsl_dataset_set_qr_arg_t ddsqra;
4359 ddsqra.ddsqra_name = dsname;
4360 ddsqra.ddsqra_source = source;
4361 ddsqra.ddsqra_value = refquota;
4363 return (dsl_sync_task(dsname, dsl_dataset_set_refquota_check,
4364 dsl_dataset_set_refquota_sync, &ddsqra, 0,
4365 ZFS_SPACE_CHECK_EXTRA_RESERVED));
4368 static int
4369 dsl_dataset_set_refreservation_check(void *arg, dmu_tx_t *tx)
4371 dsl_dataset_set_qr_arg_t *ddsqra = arg;
4372 dsl_pool_t *dp = dmu_tx_pool(tx);
4373 dsl_dataset_t *ds;
4374 int error;
4375 uint64_t newval, unique;
4377 if (spa_version(dp->dp_spa) < SPA_VERSION_REFRESERVATION)
4378 return (SET_ERROR(ENOTSUP));
4380 error = dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds);
4381 if (error != 0)
4382 return (error);
4384 if (ds->ds_is_snapshot) {
4385 dsl_dataset_rele(ds, FTAG);
4386 return (SET_ERROR(EINVAL));
4389 error = dsl_prop_predict(ds->ds_dir,
4390 zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
4391 ddsqra->ddsqra_source, ddsqra->ddsqra_value, &newval);
4392 if (error != 0) {
4393 dsl_dataset_rele(ds, FTAG);
4394 return (error);
4398 * If we are doing the preliminary check in open context, the
4399 * space estimates may be inaccurate.
4401 if (!dmu_tx_is_syncing(tx)) {
4402 dsl_dataset_rele(ds, FTAG);
4403 return (0);
4406 mutex_enter(&ds->ds_lock);
4407 if (!DS_UNIQUE_IS_ACCURATE(ds))
4408 dsl_dataset_recalc_head_uniq(ds);
4409 unique = dsl_dataset_phys(ds)->ds_unique_bytes;
4410 mutex_exit(&ds->ds_lock);
4412 if (MAX(unique, newval) > MAX(unique, ds->ds_reserved)) {
4413 uint64_t delta = MAX(unique, newval) -
4414 MAX(unique, ds->ds_reserved);
4416 if (delta >
4417 dsl_dir_space_available(ds->ds_dir, NULL, 0, B_TRUE) ||
4418 (ds->ds_quota > 0 && newval > ds->ds_quota)) {
4419 dsl_dataset_rele(ds, FTAG);
4420 return (SET_ERROR(ENOSPC));
4424 dsl_dataset_rele(ds, FTAG);
4425 return (0);
4428 void
4429 dsl_dataset_set_refreservation_sync_impl(dsl_dataset_t *ds,
4430 zprop_source_t source, uint64_t value, dmu_tx_t *tx)
4432 uint64_t newval;
4433 uint64_t unique;
4434 int64_t delta;
4436 dsl_prop_set_sync_impl(ds, zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
4437 source, sizeof (value), 1, &value, tx);
4439 VERIFY0(dsl_prop_get_int_ds(ds,
4440 zfs_prop_to_name(ZFS_PROP_REFRESERVATION), &newval));
4442 dmu_buf_will_dirty(ds->ds_dbuf, tx);
4443 mutex_enter(&ds->ds_dir->dd_lock);
4444 mutex_enter(&ds->ds_lock);
4445 ASSERT(DS_UNIQUE_IS_ACCURATE(ds));
4446 unique = dsl_dataset_phys(ds)->ds_unique_bytes;
4447 delta = MAX(0, (int64_t)(newval - unique)) -
4448 MAX(0, (int64_t)(ds->ds_reserved - unique));
4449 ds->ds_reserved = newval;
4450 mutex_exit(&ds->ds_lock);
4452 dsl_dir_diduse_space(ds->ds_dir, DD_USED_REFRSRV, delta, 0, 0, tx);
4453 mutex_exit(&ds->ds_dir->dd_lock);
4456 static void
4457 dsl_dataset_set_refreservation_sync(void *arg, dmu_tx_t *tx)
4459 dsl_dataset_set_qr_arg_t *ddsqra = arg;
4460 dsl_pool_t *dp = dmu_tx_pool(tx);
4461 dsl_dataset_t *ds = NULL;
4463 VERIFY0(dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds));
4464 dsl_dataset_set_refreservation_sync_impl(ds,
4465 ddsqra->ddsqra_source, ddsqra->ddsqra_value, tx);
4466 dsl_dataset_rele(ds, FTAG);
4470 dsl_dataset_set_refreservation(const char *dsname, zprop_source_t source,
4471 uint64_t refreservation)
4473 dsl_dataset_set_qr_arg_t ddsqra;
4475 ddsqra.ddsqra_name = dsname;
4476 ddsqra.ddsqra_source = source;
4477 ddsqra.ddsqra_value = refreservation;
4479 return (dsl_sync_task(dsname, dsl_dataset_set_refreservation_check,
4480 dsl_dataset_set_refreservation_sync, &ddsqra, 0,
4481 ZFS_SPACE_CHECK_EXTRA_RESERVED));
4484 typedef struct dsl_dataset_set_compression_arg {
4485 const char *ddsca_name;
4486 zprop_source_t ddsca_source;
4487 uint64_t ddsca_value;
4488 } dsl_dataset_set_compression_arg_t;
4490 static int
4491 dsl_dataset_set_compression_check(void *arg, dmu_tx_t *tx)
4493 dsl_dataset_set_compression_arg_t *ddsca = arg;
4494 dsl_pool_t *dp = dmu_tx_pool(tx);
4496 uint64_t compval = ZIO_COMPRESS_ALGO(ddsca->ddsca_value);
4497 spa_feature_t f = zio_compress_to_feature(compval);
4499 if (f == SPA_FEATURE_NONE)
4500 return (SET_ERROR(EINVAL));
4502 if (!spa_feature_is_enabled(dp->dp_spa, f))
4503 return (SET_ERROR(ENOTSUP));
4505 return (0);
4508 static void
4509 dsl_dataset_set_compression_sync(void *arg, dmu_tx_t *tx)
4511 dsl_dataset_set_compression_arg_t *ddsca = arg;
4512 dsl_pool_t *dp = dmu_tx_pool(tx);
4513 dsl_dataset_t *ds = NULL;
4515 uint64_t compval = ZIO_COMPRESS_ALGO(ddsca->ddsca_value);
4516 spa_feature_t f = zio_compress_to_feature(compval);
4517 ASSERT3S(spa_feature_table[f].fi_type, ==, ZFEATURE_TYPE_BOOLEAN);
4519 VERIFY0(dsl_dataset_hold(dp, ddsca->ddsca_name, FTAG, &ds));
4520 if (zfeature_active(f, ds->ds_feature[f]) != B_TRUE) {
4521 ds->ds_feature_activation[f] = (void *)B_TRUE;
4522 dsl_dataset_activate_feature(ds->ds_object, f,
4523 ds->ds_feature_activation[f], tx);
4524 ds->ds_feature[f] = ds->ds_feature_activation[f];
4526 dsl_dataset_rele(ds, FTAG);
4530 dsl_dataset_set_compression(const char *dsname, zprop_source_t source,
4531 uint64_t compression)
4533 dsl_dataset_set_compression_arg_t ddsca;
4536 * The sync task is only required for zstd in order to activate
4537 * the feature flag when the property is first set.
4539 if (ZIO_COMPRESS_ALGO(compression) != ZIO_COMPRESS_ZSTD)
4540 return (0);
4542 ddsca.ddsca_name = dsname;
4543 ddsca.ddsca_source = source;
4544 ddsca.ddsca_value = compression;
4546 return (dsl_sync_task(dsname, dsl_dataset_set_compression_check,
4547 dsl_dataset_set_compression_sync, &ddsca, 0,
4548 ZFS_SPACE_CHECK_EXTRA_RESERVED));
4552 * Return (in *usedp) the amount of space referenced by "new" that was not
4553 * referenced at the time the bookmark corresponds to. "New" may be a
4554 * snapshot or a head. The bookmark must be before new, in
4555 * new's filesystem (or its origin) -- caller verifies this.
4557 * The written space is calculated by considering two components: First, we
4558 * ignore any freed space, and calculate the written as new's used space
4559 * minus old's used space. Next, we add in the amount of space that was freed
4560 * between the two time points, thus reducing new's used space relative to
4561 * old's. Specifically, this is the space that was born before
4562 * zbm_creation_txg, and freed before new (ie. on new's deadlist or a
4563 * previous deadlist).
4565 * space freed [---------------------]
4566 * snapshots ---O-------O--------O-------O------
4567 * bookmark new
4569 * Note, the bookmark's zbm_*_bytes_refd must be valid, but if the HAS_FBN
4570 * flag is not set, we will calculate the freed_before_next based on the
4571 * next snapshot's deadlist, rather than using zbm_*_freed_before_next_snap.
4573 static int
4574 dsl_dataset_space_written_impl(zfs_bookmark_phys_t *bmp,
4575 dsl_dataset_t *new, uint64_t *usedp, uint64_t *compp, uint64_t *uncompp)
4577 int err = 0;
4578 dsl_pool_t *dp = new->ds_dir->dd_pool;
4580 ASSERT(dsl_pool_config_held(dp));
4581 if (dsl_dataset_is_snapshot(new)) {
4582 ASSERT3U(bmp->zbm_creation_txg, <,
4583 dsl_dataset_phys(new)->ds_creation_txg);
4586 *usedp = 0;
4587 *usedp += dsl_dataset_phys(new)->ds_referenced_bytes;
4588 *usedp -= bmp->zbm_referenced_bytes_refd;
4590 *compp = 0;
4591 *compp += dsl_dataset_phys(new)->ds_compressed_bytes;
4592 *compp -= bmp->zbm_compressed_bytes_refd;
4594 *uncompp = 0;
4595 *uncompp += dsl_dataset_phys(new)->ds_uncompressed_bytes;
4596 *uncompp -= bmp->zbm_uncompressed_bytes_refd;
4598 dsl_dataset_t *snap = new;
4600 while (dsl_dataset_phys(snap)->ds_prev_snap_txg >
4601 bmp->zbm_creation_txg) {
4602 uint64_t used, comp, uncomp;
4604 dsl_deadlist_space_range(&snap->ds_deadlist,
4605 0, bmp->zbm_creation_txg,
4606 &used, &comp, &uncomp);
4607 *usedp += used;
4608 *compp += comp;
4609 *uncompp += uncomp;
4611 uint64_t snapobj = dsl_dataset_phys(snap)->ds_prev_snap_obj;
4612 if (snap != new)
4613 dsl_dataset_rele(snap, FTAG);
4614 err = dsl_dataset_hold_obj(dp, snapobj, FTAG, &snap);
4615 if (err != 0)
4616 break;
4620 * We might not have the FBN if we are calculating written from
4621 * a snapshot (because we didn't know the correct "next" snapshot
4622 * until now).
4624 if (bmp->zbm_flags & ZBM_FLAG_HAS_FBN) {
4625 *usedp += bmp->zbm_referenced_freed_before_next_snap;
4626 *compp += bmp->zbm_compressed_freed_before_next_snap;
4627 *uncompp += bmp->zbm_uncompressed_freed_before_next_snap;
4628 } else {
4629 ASSERT3U(dsl_dataset_phys(snap)->ds_prev_snap_txg, ==,
4630 bmp->zbm_creation_txg);
4631 uint64_t used, comp, uncomp;
4632 dsl_deadlist_space(&snap->ds_deadlist, &used, &comp, &uncomp);
4633 *usedp += used;
4634 *compp += comp;
4635 *uncompp += uncomp;
4637 if (snap != new)
4638 dsl_dataset_rele(snap, FTAG);
4639 return (err);
4643 * Return (in *usedp) the amount of space written in new that was not
4644 * present at the time the bookmark corresponds to. New may be a
4645 * snapshot or the head. Old must be a bookmark before new, in
4646 * new's filesystem (or its origin) -- caller verifies this.
4649 dsl_dataset_space_written_bookmark(zfs_bookmark_phys_t *bmp,
4650 dsl_dataset_t *new, uint64_t *usedp, uint64_t *compp, uint64_t *uncompp)
4652 if (!(bmp->zbm_flags & ZBM_FLAG_HAS_FBN))
4653 return (SET_ERROR(ENOTSUP));
4654 return (dsl_dataset_space_written_impl(bmp, new,
4655 usedp, compp, uncompp));
4659 * Return (in *usedp) the amount of space written in new that is not
4660 * present in oldsnap. New may be a snapshot or the head. Old must be
4661 * a snapshot before new, in new's filesystem (or its origin). If not then
4662 * fail and return EINVAL.
4665 dsl_dataset_space_written(dsl_dataset_t *oldsnap, dsl_dataset_t *new,
4666 uint64_t *usedp, uint64_t *compp, uint64_t *uncompp)
4668 if (!dsl_dataset_is_before(new, oldsnap, 0))
4669 return (SET_ERROR(EINVAL));
4671 zfs_bookmark_phys_t zbm = { 0 };
4672 dsl_dataset_phys_t *dsp = dsl_dataset_phys(oldsnap);
4673 zbm.zbm_guid = dsp->ds_guid;
4674 zbm.zbm_creation_txg = dsp->ds_creation_txg;
4675 zbm.zbm_creation_time = dsp->ds_creation_time;
4676 zbm.zbm_referenced_bytes_refd = dsp->ds_referenced_bytes;
4677 zbm.zbm_compressed_bytes_refd = dsp->ds_compressed_bytes;
4678 zbm.zbm_uncompressed_bytes_refd = dsp->ds_uncompressed_bytes;
4681 * If oldsnap is the origin (or origin's origin, ...) of new,
4682 * we can't easily calculate the effective FBN. Therefore,
4683 * we do not set ZBM_FLAG_HAS_FBN, so that the _impl will calculate
4684 * it relative to the correct "next": the next snapshot towards "new",
4685 * rather than the next snapshot in oldsnap's dsl_dir.
4687 return (dsl_dataset_space_written_impl(&zbm, new,
4688 usedp, compp, uncompp));
4692 * Return (in *usedp) the amount of space that will be reclaimed if firstsnap,
4693 * lastsnap, and all snapshots in between are deleted.
4695 * blocks that would be freed [---------------------------]
4696 * snapshots ---O-------O--------O-------O--------O
4697 * firstsnap lastsnap
4699 * This is the set of blocks that were born after the snap before firstsnap,
4700 * (birth > firstsnap->prev_snap_txg) and died before the snap after the
4701 * last snap (ie, is on lastsnap->ds_next->ds_deadlist or an earlier deadlist).
4702 * We calculate this by iterating over the relevant deadlists (from the snap
4703 * after lastsnap, backward to the snap after firstsnap), summing up the
4704 * space on the deadlist that was born after the snap before firstsnap.
4707 dsl_dataset_space_wouldfree(dsl_dataset_t *firstsnap,
4708 dsl_dataset_t *lastsnap,
4709 uint64_t *usedp, uint64_t *compp, uint64_t *uncompp)
4711 int err = 0;
4712 uint64_t snapobj;
4713 dsl_pool_t *dp = firstsnap->ds_dir->dd_pool;
4715 ASSERT(firstsnap->ds_is_snapshot);
4716 ASSERT(lastsnap->ds_is_snapshot);
4719 * Check that the snapshots are in the same dsl_dir, and firstsnap
4720 * is before lastsnap.
4722 if (firstsnap->ds_dir != lastsnap->ds_dir ||
4723 dsl_dataset_phys(firstsnap)->ds_creation_txg >
4724 dsl_dataset_phys(lastsnap)->ds_creation_txg)
4725 return (SET_ERROR(EINVAL));
4727 *usedp = *compp = *uncompp = 0;
4729 snapobj = dsl_dataset_phys(lastsnap)->ds_next_snap_obj;
4730 while (snapobj != firstsnap->ds_object) {
4731 dsl_dataset_t *ds;
4732 uint64_t used, comp, uncomp;
4734 err = dsl_dataset_hold_obj(dp, snapobj, FTAG, &ds);
4735 if (err != 0)
4736 break;
4738 dsl_deadlist_space_range(&ds->ds_deadlist,
4739 dsl_dataset_phys(firstsnap)->ds_prev_snap_txg, UINT64_MAX,
4740 &used, &comp, &uncomp);
4741 *usedp += used;
4742 *compp += comp;
4743 *uncompp += uncomp;
4745 snapobj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
4746 ASSERT3U(snapobj, !=, 0);
4747 dsl_dataset_rele(ds, FTAG);
4749 return (err);
4753 * Return TRUE if 'earlier' is an earlier snapshot in 'later's timeline.
4754 * For example, they could both be snapshots of the same filesystem, and
4755 * 'earlier' is before 'later'. Or 'earlier' could be the origin of
4756 * 'later's filesystem. Or 'earlier' could be an older snapshot in the origin's
4757 * filesystem. Or 'earlier' could be the origin's origin.
4759 * If non-zero, earlier_txg is used instead of earlier's ds_creation_txg.
4761 boolean_t
4762 dsl_dataset_is_before(dsl_dataset_t *later, dsl_dataset_t *earlier,
4763 uint64_t earlier_txg)
4765 dsl_pool_t *dp = later->ds_dir->dd_pool;
4766 int error;
4767 boolean_t ret;
4769 ASSERT(dsl_pool_config_held(dp));
4770 ASSERT(earlier->ds_is_snapshot || earlier_txg != 0);
4772 if (earlier_txg == 0)
4773 earlier_txg = dsl_dataset_phys(earlier)->ds_creation_txg;
4775 if (later->ds_is_snapshot &&
4776 earlier_txg >= dsl_dataset_phys(later)->ds_creation_txg)
4777 return (B_FALSE);
4779 if (later->ds_dir == earlier->ds_dir)
4780 return (B_TRUE);
4783 * We check dd_origin_obj explicitly here rather than using
4784 * dsl_dir_is_clone() so that we will return TRUE if "earlier"
4785 * is $ORIGIN@$ORIGIN. dsl_dataset_space_written() depends on
4786 * this behavior.
4788 if (dsl_dir_phys(later->ds_dir)->dd_origin_obj == 0)
4789 return (B_FALSE);
4791 dsl_dataset_t *origin;
4792 error = dsl_dataset_hold_obj(dp,
4793 dsl_dir_phys(later->ds_dir)->dd_origin_obj, FTAG, &origin);
4794 if (error != 0)
4795 return (B_FALSE);
4796 if (dsl_dataset_phys(origin)->ds_creation_txg == earlier_txg &&
4797 origin->ds_dir == earlier->ds_dir) {
4798 dsl_dataset_rele(origin, FTAG);
4799 return (B_TRUE);
4801 ret = dsl_dataset_is_before(origin, earlier, earlier_txg);
4802 dsl_dataset_rele(origin, FTAG);
4803 return (ret);
4806 void
4807 dsl_dataset_zapify(dsl_dataset_t *ds, dmu_tx_t *tx)
4809 objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
4810 dmu_object_zapify(mos, ds->ds_object, DMU_OT_DSL_DATASET, tx);
4813 boolean_t
4814 dsl_dataset_is_zapified(dsl_dataset_t *ds)
4816 dmu_object_info_t doi;
4818 dmu_object_info_from_db(ds->ds_dbuf, &doi);
4819 return (doi.doi_type == DMU_OTN_ZAP_METADATA);
4822 boolean_t
4823 dsl_dataset_has_resume_receive_state(dsl_dataset_t *ds)
4825 return (dsl_dataset_is_zapified(ds) &&
4826 zap_contains(ds->ds_dir->dd_pool->dp_meta_objset,
4827 ds->ds_object, DS_FIELD_RESUME_TOGUID) == 0);
4830 uint64_t
4831 dsl_dataset_get_remap_deadlist_object(dsl_dataset_t *ds)
4833 uint64_t remap_deadlist_obj;
4834 int err;
4836 if (!dsl_dataset_is_zapified(ds))
4837 return (0);
4839 err = zap_lookup(ds->ds_dir->dd_pool->dp_meta_objset, ds->ds_object,
4840 DS_FIELD_REMAP_DEADLIST, sizeof (remap_deadlist_obj), 1,
4841 &remap_deadlist_obj);
4843 if (err != 0) {
4844 VERIFY3S(err, ==, ENOENT);
4845 return (0);
4848 ASSERT(remap_deadlist_obj != 0);
4849 return (remap_deadlist_obj);
4852 boolean_t
4853 dsl_dataset_remap_deadlist_exists(dsl_dataset_t *ds)
4855 EQUIV(dsl_deadlist_is_open(&ds->ds_remap_deadlist),
4856 dsl_dataset_get_remap_deadlist_object(ds) != 0);
4857 return (dsl_deadlist_is_open(&ds->ds_remap_deadlist));
4860 static void
4861 dsl_dataset_set_remap_deadlist_object(dsl_dataset_t *ds, uint64_t obj,
4862 dmu_tx_t *tx)
4864 ASSERT(obj != 0);
4865 dsl_dataset_zapify(ds, tx);
4866 VERIFY0(zap_add(ds->ds_dir->dd_pool->dp_meta_objset, ds->ds_object,
4867 DS_FIELD_REMAP_DEADLIST, sizeof (obj), 1, &obj, tx));
4870 static void
4871 dsl_dataset_unset_remap_deadlist_object(dsl_dataset_t *ds, dmu_tx_t *tx)
4873 VERIFY0(zap_remove(ds->ds_dir->dd_pool->dp_meta_objset,
4874 ds->ds_object, DS_FIELD_REMAP_DEADLIST, tx));
4877 void
4878 dsl_dataset_destroy_remap_deadlist(dsl_dataset_t *ds, dmu_tx_t *tx)
4880 uint64_t remap_deadlist_object;
4881 spa_t *spa = ds->ds_dir->dd_pool->dp_spa;
4883 ASSERT(dmu_tx_is_syncing(tx));
4884 ASSERT(dsl_dataset_remap_deadlist_exists(ds));
4886 remap_deadlist_object = ds->ds_remap_deadlist.dl_object;
4887 dsl_deadlist_close(&ds->ds_remap_deadlist);
4888 dsl_deadlist_free(spa_meta_objset(spa), remap_deadlist_object, tx);
4889 dsl_dataset_unset_remap_deadlist_object(ds, tx);
4890 spa_feature_decr(spa, SPA_FEATURE_OBSOLETE_COUNTS, tx);
4893 void
4894 dsl_dataset_create_remap_deadlist(dsl_dataset_t *ds, dmu_tx_t *tx)
4896 uint64_t remap_deadlist_obj;
4897 spa_t *spa = ds->ds_dir->dd_pool->dp_spa;
4899 ASSERT(dmu_tx_is_syncing(tx));
4900 ASSERT(MUTEX_HELD(&ds->ds_remap_deadlist_lock));
4902 * Currently we only create remap deadlists when there are indirect
4903 * vdevs with referenced mappings.
4905 ASSERT(spa_feature_is_active(spa, SPA_FEATURE_DEVICE_REMOVAL));
4907 remap_deadlist_obj = dsl_deadlist_clone(
4908 &ds->ds_deadlist, UINT64_MAX,
4909 dsl_dataset_phys(ds)->ds_prev_snap_obj, tx);
4910 dsl_dataset_set_remap_deadlist_object(ds,
4911 remap_deadlist_obj, tx);
4912 dsl_deadlist_open(&ds->ds_remap_deadlist, spa_meta_objset(spa),
4913 remap_deadlist_obj);
4914 spa_feature_incr(spa, SPA_FEATURE_OBSOLETE_COUNTS, tx);
4917 void
4918 dsl_dataset_activate_redaction(dsl_dataset_t *ds, uint64_t *redact_snaps,
4919 uint64_t num_redact_snaps, dmu_tx_t *tx)
4921 uint64_t dsobj = ds->ds_object;
4922 struct feature_type_uint64_array_arg *ftuaa =
4923 kmem_zalloc(sizeof (*ftuaa), KM_SLEEP);
4924 ftuaa->length = (int64_t)num_redact_snaps;
4925 if (num_redact_snaps > 0) {
4926 ftuaa->array = kmem_alloc(num_redact_snaps * sizeof (uint64_t),
4927 KM_SLEEP);
4928 memcpy(ftuaa->array, redact_snaps, num_redact_snaps *
4929 sizeof (uint64_t));
4931 dsl_dataset_activate_feature(dsobj, SPA_FEATURE_REDACTED_DATASETS,
4932 ftuaa, tx);
4933 ds->ds_feature[SPA_FEATURE_REDACTED_DATASETS] = ftuaa;
4937 * Find and return (in *oldest_dsobj) the oldest snapshot of the dsobj
4938 * dataset whose birth time is >= min_txg.
4941 dsl_dataset_oldest_snapshot(spa_t *spa, uint64_t head_ds, uint64_t min_txg,
4942 uint64_t *oldest_dsobj)
4944 dsl_dataset_t *ds;
4945 dsl_pool_t *dp = spa->spa_dsl_pool;
4947 int error = dsl_dataset_hold_obj(dp, head_ds, FTAG, &ds);
4948 if (error != 0)
4949 return (error);
4951 uint64_t prev_obj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
4952 uint64_t prev_obj_txg = dsl_dataset_phys(ds)->ds_prev_snap_txg;
4954 while (prev_obj != 0 && min_txg < prev_obj_txg) {
4955 dsl_dataset_rele(ds, FTAG);
4956 if ((error = dsl_dataset_hold_obj(dp, prev_obj,
4957 FTAG, &ds)) != 0)
4958 return (error);
4959 prev_obj_txg = dsl_dataset_phys(ds)->ds_prev_snap_txg;
4960 prev_obj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
4962 *oldest_dsobj = ds->ds_object;
4963 dsl_dataset_rele(ds, FTAG);
4964 return (0);
4967 #if defined(_LP64)
4968 #define RECORDSIZE_PERM ZMOD_RW
4969 #else
4970 /* Limited to 1M on 32-bit platforms due to lack of virtual address space */
4971 #define RECORDSIZE_PERM ZMOD_RD
4972 #endif
4973 ZFS_MODULE_PARAM(zfs, zfs_, max_recordsize, INT, RECORDSIZE_PERM,
4974 "Max allowed record size");
4976 ZFS_MODULE_PARAM(zfs, zfs_, allow_redacted_dataset_mount, INT, ZMOD_RW,
4977 "Allow mounting of redacted datasets");
4979 EXPORT_SYMBOL(dsl_dataset_hold);
4980 EXPORT_SYMBOL(dsl_dataset_hold_flags);
4981 EXPORT_SYMBOL(dsl_dataset_hold_obj);
4982 EXPORT_SYMBOL(dsl_dataset_hold_obj_flags);
4983 EXPORT_SYMBOL(dsl_dataset_own);
4984 EXPORT_SYMBOL(dsl_dataset_own_obj);
4985 EXPORT_SYMBOL(dsl_dataset_name);
4986 EXPORT_SYMBOL(dsl_dataset_rele);
4987 EXPORT_SYMBOL(dsl_dataset_rele_flags);
4988 EXPORT_SYMBOL(dsl_dataset_disown);
4989 EXPORT_SYMBOL(dsl_dataset_tryown);
4990 EXPORT_SYMBOL(dsl_dataset_create_sync);
4991 EXPORT_SYMBOL(dsl_dataset_create_sync_dd);
4992 EXPORT_SYMBOL(dsl_dataset_snapshot_check);
4993 EXPORT_SYMBOL(dsl_dataset_snapshot_sync);
4994 EXPORT_SYMBOL(dsl_dataset_promote);
4995 EXPORT_SYMBOL(dsl_dataset_user_hold);
4996 EXPORT_SYMBOL(dsl_dataset_user_release);
4997 EXPORT_SYMBOL(dsl_dataset_get_holds);
4998 EXPORT_SYMBOL(dsl_dataset_get_blkptr);
4999 EXPORT_SYMBOL(dsl_dataset_get_spa);
5000 EXPORT_SYMBOL(dsl_dataset_modified_since_snap);
5001 EXPORT_SYMBOL(dsl_dataset_space_written);
5002 EXPORT_SYMBOL(dsl_dataset_space_wouldfree);
5003 EXPORT_SYMBOL(dsl_dataset_sync);
5004 EXPORT_SYMBOL(dsl_dataset_block_born);
5005 EXPORT_SYMBOL(dsl_dataset_block_kill);
5006 EXPORT_SYMBOL(dsl_dataset_dirty);
5007 EXPORT_SYMBOL(dsl_dataset_stats);
5008 EXPORT_SYMBOL(dsl_dataset_fast_stat);
5009 EXPORT_SYMBOL(dsl_dataset_space);
5010 EXPORT_SYMBOL(dsl_dataset_fsid_guid);
5011 EXPORT_SYMBOL(dsl_dsobj_to_dsname);
5012 EXPORT_SYMBOL(dsl_dataset_check_quota);
5013 EXPORT_SYMBOL(dsl_dataset_clone_swap_check_impl);
5014 EXPORT_SYMBOL(dsl_dataset_clone_swap_sync_impl);