4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or https://opensource.org/licenses/CDDL-1.0.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright (c) 2012, 2018 by Delphix. All rights reserved.
24 * Copyright (c) 2013 Steven Hartland. All rights reserved.
25 * Copyright (c) 2013 by Joyent, Inc. All rights reserved.
26 * Copyright (c) 2016 Actifio, Inc. All rights reserved.
29 #include <sys/zfs_context.h>
30 #include <sys/dsl_userhold.h>
31 #include <sys/dsl_dataset.h>
32 #include <sys/dsl_synctask.h>
33 #include <sys/dsl_destroy.h>
34 #include <sys/dsl_bookmark.h>
35 #include <sys/dmu_tx.h>
36 #include <sys/dsl_pool.h>
37 #include <sys/dsl_dir.h>
38 #include <sys/dmu_traverse.h>
39 #include <sys/dsl_scan.h>
40 #include <sys/dmu_objset.h>
42 #include <sys/zfeature.h>
43 #include <sys/zfs_ioctl.h>
44 #include <sys/dsl_deleg.h>
45 #include <sys/dmu_impl.h>
48 #include <sys/dsl_deadlist.h>
50 #include <sys/spa_impl.h>
52 extern int zfs_snapshot_history_enabled
;
55 dsl_destroy_snapshot_check_impl(dsl_dataset_t
*ds
, boolean_t defer
)
57 if (!ds
->ds_is_snapshot
)
58 return (SET_ERROR(EINVAL
));
60 if (dsl_dataset_long_held(ds
))
61 return (SET_ERROR(EBUSY
));
64 * Only allow deferred destroy on pools that support it.
65 * NOTE: deferred destroy is only supported on snapshots.
68 if (spa_version(ds
->ds_dir
->dd_pool
->dp_spa
) <
70 return (SET_ERROR(ENOTSUP
));
75 * If this snapshot has an elevated user reference count,
76 * we can't destroy it yet.
78 if (ds
->ds_userrefs
> 0)
79 return (SET_ERROR(EBUSY
));
82 * Can't delete a branch point.
84 if (dsl_dataset_phys(ds
)->ds_num_children
> 1)
85 return (SET_ERROR(EEXIST
));
91 dsl_destroy_snapshot_check(void *arg
, dmu_tx_t
*tx
)
93 dsl_destroy_snapshot_arg_t
*ddsa
= arg
;
94 const char *dsname
= ddsa
->ddsa_name
;
95 boolean_t defer
= ddsa
->ddsa_defer
;
97 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
101 error
= dsl_dataset_hold(dp
, dsname
, FTAG
, &ds
);
104 * If the snapshot does not exist, silently ignore it, and
105 * dsl_destroy_snapshot_sync() will be a no-op
106 * (it's "already destroyed").
112 error
= dsl_destroy_snapshot_check_impl(ds
, defer
);
113 dsl_dataset_rele(ds
, FTAG
);
119 struct process_old_arg
{
121 dsl_dataset_t
*ds_prev
;
122 boolean_t after_branch_point
;
124 uint64_t used
, comp
, uncomp
;
128 process_old_cb(void *arg
, const blkptr_t
*bp
, boolean_t bp_freed
, dmu_tx_t
*tx
)
130 struct process_old_arg
*poa
= arg
;
131 dsl_pool_t
*dp
= poa
->ds
->ds_dir
->dd_pool
;
133 ASSERT(!BP_IS_HOLE(bp
));
135 if (BP_GET_LOGICAL_BIRTH(bp
) <=
136 dsl_dataset_phys(poa
->ds
)->ds_prev_snap_txg
) {
137 dsl_deadlist_insert(&poa
->ds
->ds_deadlist
, bp
, bp_freed
, tx
);
138 if (poa
->ds_prev
&& !poa
->after_branch_point
&&
139 BP_GET_LOGICAL_BIRTH(bp
) >
140 dsl_dataset_phys(poa
->ds_prev
)->ds_prev_snap_txg
) {
141 dsl_dataset_phys(poa
->ds_prev
)->ds_unique_bytes
+=
142 bp_get_dsize_sync(dp
->dp_spa
, bp
);
145 poa
->used
+= bp_get_dsize_sync(dp
->dp_spa
, bp
);
146 poa
->comp
+= BP_GET_PSIZE(bp
);
147 poa
->uncomp
+= BP_GET_UCSIZE(bp
);
148 dsl_free_sync(poa
->pio
, dp
, tx
->tx_txg
, bp
);
154 process_old_deadlist(dsl_dataset_t
*ds
, dsl_dataset_t
*ds_prev
,
155 dsl_dataset_t
*ds_next
, boolean_t after_branch_point
, dmu_tx_t
*tx
)
157 struct process_old_arg poa
= { 0 };
158 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
159 objset_t
*mos
= dp
->dp_meta_objset
;
160 uint64_t deadlist_obj
;
162 ASSERT(ds
->ds_deadlist
.dl_oldfmt
);
163 ASSERT(ds_next
->ds_deadlist
.dl_oldfmt
);
166 poa
.ds_prev
= ds_prev
;
167 poa
.after_branch_point
= after_branch_point
;
168 poa
.pio
= zio_root(dp
->dp_spa
, NULL
, NULL
, ZIO_FLAG_MUSTSUCCEED
);
169 VERIFY0(bpobj_iterate(&ds_next
->ds_deadlist
.dl_bpobj
,
170 process_old_cb
, &poa
, tx
));
171 VERIFY0(zio_wait(poa
.pio
));
172 ASSERT3U(poa
.used
, ==, dsl_dataset_phys(ds
)->ds_unique_bytes
);
174 /* change snapused */
175 dsl_dir_diduse_space(ds
->ds_dir
, DD_USED_SNAP
,
176 -poa
.used
, -poa
.comp
, -poa
.uncomp
, tx
);
178 /* swap next's deadlist to our deadlist */
179 dsl_deadlist_close(&ds
->ds_deadlist
);
180 dsl_deadlist_close(&ds_next
->ds_deadlist
);
181 deadlist_obj
= dsl_dataset_phys(ds
)->ds_deadlist_obj
;
182 dsl_dataset_phys(ds
)->ds_deadlist_obj
=
183 dsl_dataset_phys(ds_next
)->ds_deadlist_obj
;
184 dsl_dataset_phys(ds_next
)->ds_deadlist_obj
= deadlist_obj
;
185 VERIFY0(dsl_deadlist_open(&ds
->ds_deadlist
, mos
,
186 dsl_dataset_phys(ds
)->ds_deadlist_obj
));
187 VERIFY0(dsl_deadlist_open(&ds_next
->ds_deadlist
, mos
,
188 dsl_dataset_phys(ds_next
)->ds_deadlist_obj
));
191 typedef struct remaining_clones_key
{
192 dsl_dataset_t
*rck_clone
;
193 list_node_t rck_node
;
194 } remaining_clones_key_t
;
196 static remaining_clones_key_t
*
197 rck_alloc(dsl_dataset_t
*clone
)
199 remaining_clones_key_t
*rck
= kmem_alloc(sizeof (*rck
), KM_SLEEP
);
200 rck
->rck_clone
= clone
;
205 dsl_dir_remove_clones_key_impl(dsl_dir_t
*dd
, uint64_t mintxg
, dmu_tx_t
*tx
,
206 list_t
*stack
, const void *tag
)
208 objset_t
*mos
= dd
->dd_pool
->dp_meta_objset
;
211 * If it is the old version, dd_clones doesn't exist so we can't
212 * find the clones, but dsl_deadlist_remove_key() is a no-op so it
215 if (dsl_dir_phys(dd
)->dd_clones
== 0)
218 zap_cursor_t
*zc
= kmem_alloc(sizeof (zap_cursor_t
), KM_SLEEP
);
219 zap_attribute_t
*za
= zap_attribute_alloc();
221 for (zap_cursor_init(zc
, mos
, dsl_dir_phys(dd
)->dd_clones
);
222 zap_cursor_retrieve(zc
, za
) == 0;
223 zap_cursor_advance(zc
)) {
224 dsl_dataset_t
*clone
;
226 VERIFY0(dsl_dataset_hold_obj(dd
->dd_pool
,
227 za
->za_first_integer
, tag
, &clone
));
229 if (clone
->ds_dir
->dd_origin_txg
> mintxg
) {
230 dsl_deadlist_remove_key(&clone
->ds_deadlist
,
233 if (dsl_dataset_remap_deadlist_exists(clone
)) {
234 dsl_deadlist_remove_key(
235 &clone
->ds_remap_deadlist
, mintxg
, tx
);
238 list_insert_head(stack
, rck_alloc(clone
));
240 dsl_dataset_rele(clone
, tag
);
245 zap_attribute_free(za
);
246 kmem_free(zc
, sizeof (zap_cursor_t
));
250 dsl_dir_remove_clones_key(dsl_dir_t
*top_dd
, uint64_t mintxg
, dmu_tx_t
*tx
)
254 list_create(&stack
, sizeof (remaining_clones_key_t
),
255 offsetof(remaining_clones_key_t
, rck_node
));
257 dsl_dir_remove_clones_key_impl(top_dd
, mintxg
, tx
, &stack
, FTAG
);
258 for (remaining_clones_key_t
*rck
= list_remove_head(&stack
);
259 rck
!= NULL
; rck
= list_remove_head(&stack
)) {
260 dsl_dataset_t
*clone
= rck
->rck_clone
;
261 dsl_dir_t
*clone_dir
= clone
->ds_dir
;
263 kmem_free(rck
, sizeof (*rck
));
265 dsl_dir_remove_clones_key_impl(clone_dir
, mintxg
, tx
,
267 dsl_dataset_rele(clone
, FTAG
);
270 list_destroy(&stack
);
274 dsl_destroy_snapshot_handle_remaps(dsl_dataset_t
*ds
, dsl_dataset_t
*ds_next
,
277 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
279 /* Move blocks to be obsoleted to pool's obsolete list. */
280 if (dsl_dataset_remap_deadlist_exists(ds_next
)) {
281 if (!bpobj_is_open(&dp
->dp_obsolete_bpobj
))
282 dsl_pool_create_obsolete_bpobj(dp
, tx
);
284 dsl_deadlist_move_bpobj(&ds_next
->ds_remap_deadlist
,
285 &dp
->dp_obsolete_bpobj
,
286 dsl_dataset_phys(ds
)->ds_prev_snap_txg
, tx
);
289 /* Merge our deadlist into next's and free it. */
290 if (dsl_dataset_remap_deadlist_exists(ds
)) {
291 uint64_t remap_deadlist_object
=
292 dsl_dataset_get_remap_deadlist_object(ds
);
293 ASSERT(remap_deadlist_object
!= 0);
295 mutex_enter(&ds_next
->ds_remap_deadlist_lock
);
296 if (!dsl_dataset_remap_deadlist_exists(ds_next
))
297 dsl_dataset_create_remap_deadlist(ds_next
, tx
);
298 mutex_exit(&ds_next
->ds_remap_deadlist_lock
);
300 dsl_deadlist_merge(&ds_next
->ds_remap_deadlist
,
301 remap_deadlist_object
, tx
);
302 dsl_dataset_destroy_remap_deadlist(ds
, tx
);
307 dsl_destroy_snapshot_sync_impl(dsl_dataset_t
*ds
, boolean_t defer
, dmu_tx_t
*tx
)
309 int after_branch_point
= FALSE
;
310 dsl_pool_t
*dp
= ds
->ds_dir
->dd_pool
;
311 objset_t
*mos
= dp
->dp_meta_objset
;
312 dsl_dataset_t
*ds_prev
= NULL
;
315 ASSERT(RRW_WRITE_HELD(&dp
->dp_config_rwlock
));
316 rrw_enter(&ds
->ds_bp_rwlock
, RW_READER
, FTAG
);
317 ASSERT3U(BP_GET_LOGICAL_BIRTH(&dsl_dataset_phys(ds
)->ds_bp
), <=,
319 rrw_exit(&ds
->ds_bp_rwlock
, FTAG
);
320 ASSERT(zfs_refcount_is_zero(&ds
->ds_longholds
));
323 (ds
->ds_userrefs
> 0 ||
324 dsl_dataset_phys(ds
)->ds_num_children
> 1)) {
325 ASSERT(spa_version(dp
->dp_spa
) >= SPA_VERSION_USERREFS
);
326 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
327 dsl_dataset_phys(ds
)->ds_flags
|= DS_FLAG_DEFER_DESTROY
;
328 if (zfs_snapshot_history_enabled
) {
329 spa_history_log_internal_ds(ds
, "defer_destroy", tx
,
335 ASSERT3U(dsl_dataset_phys(ds
)->ds_num_children
, <=, 1);
337 if (zfs_snapshot_history_enabled
) {
338 /* We need to log before removing it from the namespace. */
339 spa_history_log_internal_ds(ds
, "destroy", tx
, " ");
342 dsl_scan_ds_destroyed(ds
, tx
);
346 boolean_t book_exists
= dsl_bookmark_ds_destroyed(ds
, tx
);
348 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
349 if (dsl_dataset_feature_is_active(ds
, f
))
350 dsl_dataset_deactivate_feature(ds
, f
, tx
);
352 if (dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0) {
353 ASSERT3P(ds
->ds_prev
, ==, NULL
);
354 VERIFY0(dsl_dataset_hold_obj(dp
,
355 dsl_dataset_phys(ds
)->ds_prev_snap_obj
, FTAG
, &ds_prev
));
357 (dsl_dataset_phys(ds_prev
)->ds_next_snap_obj
!= obj
);
359 dmu_buf_will_dirty(ds_prev
->ds_dbuf
, tx
);
360 if (after_branch_point
&&
361 dsl_dataset_phys(ds_prev
)->ds_next_clones_obj
!= 0) {
362 dsl_dataset_remove_from_next_clones(ds_prev
, obj
, tx
);
363 if (dsl_dataset_phys(ds
)->ds_next_snap_obj
!= 0) {
364 VERIFY0(zap_add_int(mos
,
365 dsl_dataset_phys(ds_prev
)->
367 dsl_dataset_phys(ds
)->ds_next_snap_obj
,
371 if (!after_branch_point
) {
372 dsl_dataset_phys(ds_prev
)->ds_next_snap_obj
=
373 dsl_dataset_phys(ds
)->ds_next_snap_obj
;
377 dsl_dataset_t
*ds_next
;
379 uint64_t used
= 0, comp
= 0, uncomp
= 0;
381 VERIFY0(dsl_dataset_hold_obj(dp
,
382 dsl_dataset_phys(ds
)->ds_next_snap_obj
, FTAG
, &ds_next
));
383 ASSERT3U(dsl_dataset_phys(ds_next
)->ds_prev_snap_obj
, ==, obj
);
385 old_unique
= dsl_dataset_phys(ds_next
)->ds_unique_bytes
;
387 dmu_buf_will_dirty(ds_next
->ds_dbuf
, tx
);
388 dsl_dataset_phys(ds_next
)->ds_prev_snap_obj
=
389 dsl_dataset_phys(ds
)->ds_prev_snap_obj
;
390 dsl_dataset_phys(ds_next
)->ds_prev_snap_txg
=
391 dsl_dataset_phys(ds
)->ds_prev_snap_txg
;
392 ASSERT3U(dsl_dataset_phys(ds
)->ds_prev_snap_txg
, ==,
393 ds_prev
? dsl_dataset_phys(ds_prev
)->ds_creation_txg
: 0);
395 if (ds_next
->ds_deadlist
.dl_oldfmt
) {
396 process_old_deadlist(ds
, ds_prev
, ds_next
,
397 after_branch_point
, tx
);
399 /* Adjust prev's unique space. */
400 if (ds_prev
&& !after_branch_point
) {
401 dsl_deadlist_space_range(&ds_next
->ds_deadlist
,
402 dsl_dataset_phys(ds_prev
)->ds_prev_snap_txg
,
403 dsl_dataset_phys(ds
)->ds_prev_snap_txg
,
404 &used
, &comp
, &uncomp
);
405 dsl_dataset_phys(ds_prev
)->ds_unique_bytes
+= used
;
408 /* Adjust snapused. */
409 dsl_deadlist_space_range(&ds_next
->ds_deadlist
,
410 dsl_dataset_phys(ds
)->ds_prev_snap_txg
, UINT64_MAX
,
411 &used
, &comp
, &uncomp
);
412 dsl_dir_diduse_space(ds
->ds_dir
, DD_USED_SNAP
,
413 -used
, -comp
, -uncomp
, tx
);
415 /* Move blocks to be freed to pool's free list. */
416 dsl_deadlist_move_bpobj(&ds_next
->ds_deadlist
,
417 &dp
->dp_free_bpobj
, dsl_dataset_phys(ds
)->ds_prev_snap_txg
,
419 dsl_dir_diduse_space(tx
->tx_pool
->dp_free_dir
,
420 DD_USED_HEAD
, used
, comp
, uncomp
, tx
);
422 /* Merge our deadlist into next's and free it. */
423 dsl_deadlist_merge(&ds_next
->ds_deadlist
,
424 dsl_dataset_phys(ds
)->ds_deadlist_obj
, tx
);
427 * We are done with the deadlist tree (generated/used
428 * by dsl_deadlist_move_bpobj() and dsl_deadlist_merge()).
429 * Discard it to save memory.
431 dsl_deadlist_discard_tree(&ds_next
->ds_deadlist
);
434 dsl_deadlist_close(&ds
->ds_deadlist
);
435 dsl_deadlist_free(mos
, dsl_dataset_phys(ds
)->ds_deadlist_obj
, tx
);
436 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
437 dsl_dataset_phys(ds
)->ds_deadlist_obj
= 0;
439 dsl_destroy_snapshot_handle_remaps(ds
, ds_next
, tx
);
442 /* Collapse range in clone heads */
443 dsl_dir_remove_clones_key(ds
->ds_dir
,
444 dsl_dataset_phys(ds
)->ds_creation_txg
, tx
);
447 if (ds_next
->ds_is_snapshot
) {
448 dsl_dataset_t
*ds_nextnext
;
451 * Update next's unique to include blocks which
452 * were previously shared by only this snapshot
453 * and it. Those blocks will be born after the
454 * prev snap and before this snap, and will have
455 * died after the next snap and before the one
456 * after that (ie. be on the snap after next's
459 VERIFY0(dsl_dataset_hold_obj(dp
,
460 dsl_dataset_phys(ds_next
)->ds_next_snap_obj
,
461 FTAG
, &ds_nextnext
));
462 dsl_deadlist_space_range(&ds_nextnext
->ds_deadlist
,
463 dsl_dataset_phys(ds
)->ds_prev_snap_txg
,
464 dsl_dataset_phys(ds
)->ds_creation_txg
,
465 &used
, &comp
, &uncomp
);
466 dsl_dataset_phys(ds_next
)->ds_unique_bytes
+= used
;
467 dsl_dataset_rele(ds_nextnext
, FTAG
);
468 ASSERT3P(ds_next
->ds_prev
, ==, NULL
);
470 /* Collapse range in this head. */
472 VERIFY0(dsl_dataset_hold_obj(dp
,
473 dsl_dir_phys(ds
->ds_dir
)->dd_head_dataset_obj
,
476 /* Collapse range in this head. */
477 dsl_deadlist_remove_key(&hds
->ds_deadlist
,
478 dsl_dataset_phys(ds
)->ds_creation_txg
, tx
);
480 if (dsl_dataset_remap_deadlist_exists(hds
)) {
481 dsl_deadlist_remove_key(&hds
->ds_remap_deadlist
,
482 dsl_dataset_phys(ds
)->ds_creation_txg
, tx
);
484 dsl_dataset_rele(hds
, FTAG
);
487 ASSERT3P(ds_next
->ds_prev
, ==, ds
);
488 dsl_dataset_rele(ds_next
->ds_prev
, ds_next
);
489 ds_next
->ds_prev
= NULL
;
491 VERIFY0(dsl_dataset_hold_obj(dp
,
492 dsl_dataset_phys(ds
)->ds_prev_snap_obj
,
493 ds_next
, &ds_next
->ds_prev
));
496 dsl_dataset_recalc_head_uniq(ds_next
);
499 * Reduce the amount of our unconsumed refreservation
500 * being charged to our parent by the amount of
501 * new unique data we have gained.
503 if (old_unique
< ds_next
->ds_reserved
) {
505 uint64_t new_unique
=
506 dsl_dataset_phys(ds_next
)->ds_unique_bytes
;
508 ASSERT(old_unique
<= new_unique
);
509 mrsdelta
= MIN(new_unique
- old_unique
,
510 ds_next
->ds_reserved
- old_unique
);
511 dsl_dir_diduse_space(ds
->ds_dir
,
512 DD_USED_REFRSRV
, -mrsdelta
, 0, 0, tx
);
515 dsl_dataset_rele(ds_next
, FTAG
);
518 * This must be done after the dsl_traverse(), because it will
519 * re-open the objset.
522 dmu_objset_evict(ds
->ds_objset
);
523 ds
->ds_objset
= NULL
;
526 /* remove from snapshot namespace */
527 dsl_dataset_t
*ds_head
;
528 ASSERT(dsl_dataset_phys(ds
)->ds_snapnames_zapobj
== 0);
529 VERIFY0(dsl_dataset_hold_obj(dp
,
530 dsl_dir_phys(ds
->ds_dir
)->dd_head_dataset_obj
, FTAG
, &ds_head
));
531 VERIFY0(dsl_dataset_get_snapname(ds
));
537 err
= dsl_dataset_snap_lookup(ds_head
,
538 ds
->ds_snapname
, &val
);
540 ASSERT3U(val
, ==, obj
);
543 VERIFY0(dsl_dataset_snap_remove(ds_head
, ds
->ds_snapname
, tx
, B_TRUE
));
544 dsl_dataset_rele(ds_head
, FTAG
);
547 dsl_dataset_rele(ds_prev
, FTAG
);
549 spa_prop_clear_bootfs(dp
->dp_spa
, ds
->ds_object
, tx
);
551 if (dsl_dataset_phys(ds
)->ds_next_clones_obj
!= 0) {
552 uint64_t count __maybe_unused
;
553 ASSERT0(zap_count(mos
,
554 dsl_dataset_phys(ds
)->ds_next_clones_obj
, &count
) &&
556 VERIFY0(dmu_object_free(mos
,
557 dsl_dataset_phys(ds
)->ds_next_clones_obj
, tx
));
559 if (dsl_dataset_phys(ds
)->ds_props_obj
!= 0)
560 VERIFY0(zap_destroy(mos
, dsl_dataset_phys(ds
)->ds_props_obj
,
562 if (dsl_dataset_phys(ds
)->ds_userrefs_obj
!= 0)
563 VERIFY0(zap_destroy(mos
, dsl_dataset_phys(ds
)->ds_userrefs_obj
,
565 dsl_dir_rele(ds
->ds_dir
, ds
);
567 dmu_object_free_zapified(mos
, obj
, tx
);
571 dsl_destroy_snapshot_sync(void *arg
, dmu_tx_t
*tx
)
573 dsl_destroy_snapshot_arg_t
*ddsa
= arg
;
574 const char *dsname
= ddsa
->ddsa_name
;
575 boolean_t defer
= ddsa
->ddsa_defer
;
577 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
580 int error
= dsl_dataset_hold(dp
, dsname
, FTAG
, &ds
);
584 dsl_destroy_snapshot_sync_impl(ds
, defer
, tx
);
585 zvol_remove_minors(dp
->dp_spa
, dsname
, B_TRUE
);
586 dsl_dataset_rele(ds
, FTAG
);
590 * The semantics of this function are described in the comment above
591 * lzc_destroy_snaps(). To summarize:
593 * The snapshots must all be in the same pool.
595 * Snapshots that don't exist will be silently ignored (considered to be
596 * "already deleted").
598 * On success, all snaps will be destroyed and this will return 0.
599 * On failure, no snaps will be destroyed, the errlist will be filled in,
600 * and this will return an errno.
603 dsl_destroy_snapshots_nvl(nvlist_t
*snaps
, boolean_t defer
,
606 if (nvlist_next_nvpair(snaps
, NULL
) == NULL
)
610 * lzc_destroy_snaps() is documented to take an nvlist whose
611 * values "don't matter". We need to convert that nvlist to
612 * one that we know can be converted to LUA.
614 nvlist_t
*snaps_normalized
= fnvlist_alloc();
615 for (nvpair_t
*pair
= nvlist_next_nvpair(snaps
, NULL
);
616 pair
!= NULL
; pair
= nvlist_next_nvpair(snaps
, pair
)) {
617 fnvlist_add_boolean_value(snaps_normalized
,
618 nvpair_name(pair
), B_TRUE
);
621 nvlist_t
*arg
= fnvlist_alloc();
622 fnvlist_add_nvlist(arg
, "snaps", snaps_normalized
);
623 fnvlist_free(snaps_normalized
);
624 fnvlist_add_boolean_value(arg
, "defer", defer
);
626 nvlist_t
*wrapper
= fnvlist_alloc();
627 fnvlist_add_nvlist(wrapper
, ZCP_ARG_ARGLIST
, arg
);
630 const char *program
=
632 "snaps = arg['snaps']\n"
633 "defer = arg['defer']\n"
635 "has_errors = false\n"
636 "for snap, v in pairs(snaps) do\n"
637 " errno = zfs.check.destroy{snap, defer=defer}\n"
638 " zfs.debug('snap: ' .. snap .. ' errno: ' .. errno)\n"
639 " if errno == ENOENT then\n"
640 " snaps[snap] = nil\n"
641 " elseif errno ~= 0 then\n"
642 " errors[snap] = errno\n"
643 " has_errors = true\n"
646 "if has_errors then\n"
649 "for snap, v in pairs(snaps) do\n"
650 " errno = zfs.sync.destroy{snap, defer=defer}\n"
651 " assert(errno == 0)\n"
655 nvlist_t
*result
= fnvlist_alloc();
656 int error
= zcp_eval(nvpair_name(nvlist_next_nvpair(snaps
, NULL
)),
660 zfs_lua_max_memlimit
,
661 fnvlist_lookup_nvpair(wrapper
, ZCP_ARG_ARGLIST
), result
);
663 const char *errorstr
= NULL
;
664 (void) nvlist_lookup_string(result
, ZCP_RET_ERROR
, &errorstr
);
665 if (errorstr
!= NULL
) {
666 zfs_dbgmsg("%s", errorstr
);
668 fnvlist_free(wrapper
);
669 fnvlist_free(result
);
672 fnvlist_free(wrapper
);
675 * lzc_destroy_snaps() is documented to fill the errlist with
676 * int32 values, so we need to convert the int64 values that are
680 nvlist_t
*errlist_raw
= fnvlist_lookup_nvlist(result
, ZCP_RET_RETURN
);
681 for (nvpair_t
*pair
= nvlist_next_nvpair(errlist_raw
, NULL
);
682 pair
!= NULL
; pair
= nvlist_next_nvpair(errlist_raw
, pair
)) {
683 int32_t val
= (int32_t)fnvpair_value_int64(pair
);
686 fnvlist_add_int32(errlist
, nvpair_name(pair
), val
);
688 fnvlist_free(result
);
693 dsl_destroy_snapshot(const char *name
, boolean_t defer
)
696 nvlist_t
*nvl
= fnvlist_alloc();
697 nvlist_t
*errlist
= fnvlist_alloc();
699 fnvlist_add_boolean(nvl
, name
);
700 error
= dsl_destroy_snapshots_nvl(nvl
, defer
, errlist
);
701 fnvlist_free(errlist
);
712 kill_blkptr(spa_t
*spa
, zilog_t
*zilog
, const blkptr_t
*bp
,
713 const zbookmark_phys_t
*zb
, const dnode_phys_t
*dnp
, void *arg
)
715 (void) spa
, (void) dnp
;
716 struct killarg
*ka
= arg
;
717 dmu_tx_t
*tx
= ka
->tx
;
719 if (zb
->zb_level
== ZB_DNODE_LEVEL
|| BP_IS_HOLE(bp
) ||
723 if (zb
->zb_level
== ZB_ZIL_LEVEL
) {
724 ASSERT(zilog
!= NULL
);
726 * It's a block in the intent log. It has no
727 * accounting, so just free it.
729 dsl_free(ka
->tx
->tx_pool
, ka
->tx
->tx_txg
, bp
);
731 ASSERT(zilog
== NULL
);
732 ASSERT3U(BP_GET_LOGICAL_BIRTH(bp
), >,
733 dsl_dataset_phys(ka
->ds
)->ds_prev_snap_txg
);
734 (void) dsl_dataset_block_kill(ka
->ds
, bp
, tx
, B_FALSE
);
741 old_synchronous_dataset_destroy(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
745 spa_history_log_internal_ds(ds
, "destroy", tx
,
746 "(synchronous, mintxg=%llu)",
747 (long long)dsl_dataset_phys(ds
)->ds_prev_snap_txg
);
750 * Free everything that we point to (that's born after
751 * the previous snapshot, if we are a clone)
753 * NB: this should be very quick, because we already
754 * freed all the objects in open context.
758 VERIFY0(traverse_dataset(ds
,
759 dsl_dataset_phys(ds
)->ds_prev_snap_txg
, TRAVERSE_POST
|
760 TRAVERSE_NO_DECRYPT
, kill_blkptr
, &ka
));
761 ASSERT(!DS_UNIQUE_IS_ACCURATE(ds
) ||
762 dsl_dataset_phys(ds
)->ds_unique_bytes
== 0);
766 dsl_destroy_head_check_impl(dsl_dataset_t
*ds
, int expected_holds
)
772 ASSERT(!ds
->ds_is_snapshot
);
773 if (ds
->ds_is_snapshot
)
774 return (SET_ERROR(EINVAL
));
776 if (zfs_refcount_count(&ds
->ds_longholds
) != expected_holds
)
777 return (SET_ERROR(EBUSY
));
779 ASSERT0(ds
->ds_dir
->dd_activity_waiters
);
781 mos
= ds
->ds_dir
->dd_pool
->dp_meta_objset
;
784 * Can't delete a head dataset if there are snapshots of it.
785 * (Except if the only snapshots are from the branch we cloned
788 if (ds
->ds_prev
!= NULL
&&
789 dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
== ds
->ds_object
)
790 return (SET_ERROR(EBUSY
));
793 * Can't delete if there are children of this fs.
795 error
= zap_count(mos
,
796 dsl_dir_phys(ds
->ds_dir
)->dd_child_dir_zapobj
, &count
);
800 return (SET_ERROR(EEXIST
));
802 if (dsl_dir_is_clone(ds
->ds_dir
) && DS_IS_DEFER_DESTROY(ds
->ds_prev
) &&
803 dsl_dataset_phys(ds
->ds_prev
)->ds_num_children
== 2 &&
804 ds
->ds_prev
->ds_userrefs
== 0) {
805 /* We need to remove the origin snapshot as well. */
806 if (!zfs_refcount_is_zero(&ds
->ds_prev
->ds_longholds
))
807 return (SET_ERROR(EBUSY
));
813 dsl_destroy_head_check(void *arg
, dmu_tx_t
*tx
)
815 dsl_destroy_head_arg_t
*ddha
= arg
;
816 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
820 error
= dsl_dataset_hold(dp
, ddha
->ddha_name
, FTAG
, &ds
);
824 error
= dsl_destroy_head_check_impl(ds
, 0);
825 dsl_dataset_rele(ds
, FTAG
);
830 dsl_dir_destroy_sync(uint64_t ddobj
, dmu_tx_t
*tx
)
833 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
834 objset_t
*mos
= dp
->dp_meta_objset
;
837 ASSERT(RRW_WRITE_HELD(&dmu_tx_pool(tx
)->dp_config_rwlock
));
839 VERIFY0(dsl_dir_hold_obj(dp
, ddobj
, NULL
, FTAG
, &dd
));
841 ASSERT0(dsl_dir_phys(dd
)->dd_head_dataset_obj
);
843 /* Decrement the filesystem count for all parent filesystems. */
844 if (dd
->dd_parent
!= NULL
)
845 dsl_fs_ss_count_adjust(dd
->dd_parent
, -1,
846 DD_FIELD_FILESYSTEM_COUNT
, tx
);
849 * Remove our reservation. The impl() routine avoids setting the
850 * actual property, which would require the (already destroyed) ds.
852 dsl_dir_set_reservation_sync_impl(dd
, 0, tx
);
854 ASSERT0(dsl_dir_phys(dd
)->dd_used_bytes
);
855 ASSERT0(dsl_dir_phys(dd
)->dd_reserved
);
856 for (t
= 0; t
< DD_USED_NUM
; t
++)
857 ASSERT0(dsl_dir_phys(dd
)->dd_used_breakdown
[t
]);
859 if (dd
->dd_crypto_obj
!= 0) {
860 dsl_crypto_key_destroy_sync(dd
->dd_crypto_obj
, tx
);
861 (void) spa_keystore_unload_wkey_impl(dp
->dp_spa
, dd
->dd_object
);
864 VERIFY0(zap_destroy(mos
, dsl_dir_phys(dd
)->dd_child_dir_zapobj
, tx
));
865 VERIFY0(zap_destroy(mos
, dsl_dir_phys(dd
)->dd_props_zapobj
, tx
));
866 if (dsl_dir_phys(dd
)->dd_clones
!= 0)
867 VERIFY0(zap_destroy(mos
, dsl_dir_phys(dd
)->dd_clones
, tx
));
868 VERIFY0(dsl_deleg_destroy(mos
, dsl_dir_phys(dd
)->dd_deleg_zapobj
, tx
));
869 VERIFY0(zap_remove(mos
,
870 dsl_dir_phys(dd
->dd_parent
)->dd_child_dir_zapobj
,
873 dsl_dir_rele(dd
, FTAG
);
874 dmu_object_free_zapified(mos
, ddobj
, tx
);
878 dsl_clone_destroy_assert(dsl_dir_t
*dd
)
880 uint64_t used
, comp
, uncomp
;
882 ASSERT(dsl_dir_is_clone(dd
));
883 dsl_deadlist_space(&dd
->dd_livelist
, &used
, &comp
, &uncomp
);
885 ASSERT3U(dsl_dir_phys(dd
)->dd_used_bytes
, ==, used
);
886 ASSERT3U(dsl_dir_phys(dd
)->dd_compressed_bytes
, ==, comp
);
888 * Greater than because we do not track embedded block pointers in
891 ASSERT3U(dsl_dir_phys(dd
)->dd_uncompressed_bytes
, >=, uncomp
);
893 ASSERT(list_is_empty(&dd
->dd_pending_allocs
.bpl_list
));
894 ASSERT(list_is_empty(&dd
->dd_pending_frees
.bpl_list
));
898 * Start the delete process for a clone. Free its zil, verify the space usage
899 * and queue the blkptrs for deletion by adding the livelist to the pool-wide
903 dsl_async_clone_destroy(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
905 uint64_t zap_obj
, to_delete
, used
, comp
, uncomp
;
907 dsl_dir_t
*dd
= ds
->ds_dir
;
908 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
909 objset_t
*mos
= dp
->dp_meta_objset
;
910 spa_t
*spa
= dmu_tx_pool(tx
)->dp_spa
;
911 VERIFY0(dmu_objset_from_ds(ds
, &os
));
914 dsl_deadlist_entry_t
*dle
= dsl_deadlist_first(&dd
->dd_livelist
);
916 mintxg
= dle
->dle_mintxg
;
918 spa_history_log_internal_ds(ds
, "destroy", tx
,
919 "(livelist, mintxg=%llu)", (long long)mintxg
);
921 /* Check that the clone is in a correct state to be deleted */
922 dsl_clone_destroy_assert(dd
);
924 /* Destroy the zil */
925 zil_destroy_sync(dmu_objset_zil(os
), tx
);
927 VERIFY0(zap_lookup(mos
, dd
->dd_object
,
928 DD_FIELD_LIVELIST
, sizeof (uint64_t), 1, &to_delete
));
929 /* Initialize deleted_clones entry to track livelists to cleanup */
930 int error
= zap_lookup(mos
, DMU_POOL_DIRECTORY_OBJECT
,
931 DMU_POOL_DELETED_CLONES
, sizeof (uint64_t), 1, &zap_obj
);
932 if (error
== ENOENT
) {
933 zap_obj
= zap_create(mos
, DMU_OTN_ZAP_METADATA
,
935 VERIFY0(zap_add(mos
, DMU_POOL_DIRECTORY_OBJECT
,
936 DMU_POOL_DELETED_CLONES
, sizeof (uint64_t), 1,
938 spa
->spa_livelists_to_delete
= zap_obj
;
939 } else if (error
!= 0) {
940 zfs_panic_recover("zfs: error %d was returned while looking "
941 "up DMU_POOL_DELETED_CLONES in the zap", error
);
944 VERIFY0(zap_add_int(mos
, zap_obj
, to_delete
, tx
));
946 /* Clone is no longer using space, now tracked by dp_free_dir */
947 dsl_deadlist_space(&dd
->dd_livelist
, &used
, &comp
, &uncomp
);
948 dsl_dir_diduse_space(dd
, DD_USED_HEAD
,
949 -used
, -comp
, -dsl_dir_phys(dd
)->dd_uncompressed_bytes
,
951 dsl_dir_diduse_space(dp
->dp_free_dir
, DD_USED_HEAD
,
952 used
, comp
, uncomp
, tx
);
953 dsl_dir_remove_livelist(dd
, tx
, B_FALSE
);
954 zthr_wakeup(spa
->spa_livelist_delete_zthr
);
958 * Move the bptree into the pool's list of trees to clean up, update space
959 * accounting information and destroy the zil.
962 dsl_async_dataset_destroy(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
964 uint64_t used
, comp
, uncomp
;
967 VERIFY0(dmu_objset_from_ds(ds
, &os
));
968 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
969 objset_t
*mos
= dp
->dp_meta_objset
;
971 spa_history_log_internal_ds(ds
, "destroy", tx
,
972 "(bptree, mintxg=%llu)",
973 (long long)dsl_dataset_phys(ds
)->ds_prev_snap_txg
);
975 zil_destroy_sync(dmu_objset_zil(os
), tx
);
977 if (!spa_feature_is_active(dp
->dp_spa
,
978 SPA_FEATURE_ASYNC_DESTROY
)) {
979 dsl_scan_t
*scn
= dp
->dp_scan
;
980 spa_feature_incr(dp
->dp_spa
, SPA_FEATURE_ASYNC_DESTROY
,
982 dp
->dp_bptree_obj
= bptree_alloc(mos
, tx
);
984 DMU_POOL_DIRECTORY_OBJECT
,
985 DMU_POOL_BPTREE_OBJ
, sizeof (uint64_t), 1,
986 &dp
->dp_bptree_obj
, tx
));
987 ASSERT(!scn
->scn_async_destroying
);
988 scn
->scn_async_destroying
= B_TRUE
;
991 used
= dsl_dir_phys(ds
->ds_dir
)->dd_used_bytes
;
992 comp
= dsl_dir_phys(ds
->ds_dir
)->dd_compressed_bytes
;
993 uncomp
= dsl_dir_phys(ds
->ds_dir
)->dd_uncompressed_bytes
;
995 ASSERT(!DS_UNIQUE_IS_ACCURATE(ds
) ||
996 dsl_dataset_phys(ds
)->ds_unique_bytes
== used
);
998 rrw_enter(&ds
->ds_bp_rwlock
, RW_READER
, FTAG
);
999 bptree_add(mos
, dp
->dp_bptree_obj
,
1000 &dsl_dataset_phys(ds
)->ds_bp
,
1001 dsl_dataset_phys(ds
)->ds_prev_snap_txg
,
1002 used
, comp
, uncomp
, tx
);
1003 rrw_exit(&ds
->ds_bp_rwlock
, FTAG
);
1004 dsl_dir_diduse_space(ds
->ds_dir
, DD_USED_HEAD
,
1005 -used
, -comp
, -uncomp
, tx
);
1006 dsl_dir_diduse_space(dp
->dp_free_dir
, DD_USED_HEAD
,
1007 used
, comp
, uncomp
, tx
);
1011 dsl_destroy_head_sync_impl(dsl_dataset_t
*ds
, dmu_tx_t
*tx
)
1013 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
1014 objset_t
*mos
= dp
->dp_meta_objset
;
1015 uint64_t obj
, ddobj
, prevobj
= 0;
1018 ASSERT3U(dsl_dataset_phys(ds
)->ds_num_children
, <=, 1);
1019 ASSERT(ds
->ds_prev
== NULL
||
1020 dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
!= ds
->ds_object
);
1021 rrw_enter(&ds
->ds_bp_rwlock
, RW_READER
, FTAG
);
1022 ASSERT3U(BP_GET_LOGICAL_BIRTH(&dsl_dataset_phys(ds
)->ds_bp
), <=,
1024 rrw_exit(&ds
->ds_bp_rwlock
, FTAG
);
1025 ASSERT(RRW_WRITE_HELD(&dp
->dp_config_rwlock
));
1027 dsl_dir_cancel_waiters(ds
->ds_dir
);
1029 rmorigin
= (dsl_dir_is_clone(ds
->ds_dir
) &&
1030 DS_IS_DEFER_DESTROY(ds
->ds_prev
) &&
1031 dsl_dataset_phys(ds
->ds_prev
)->ds_num_children
== 2 &&
1032 ds
->ds_prev
->ds_userrefs
== 0);
1034 /* Remove our reservation. */
1035 if (ds
->ds_reserved
!= 0) {
1036 dsl_dataset_set_refreservation_sync_impl(ds
,
1037 (ZPROP_SRC_NONE
| ZPROP_SRC_LOCAL
| ZPROP_SRC_RECEIVED
),
1039 ASSERT0(ds
->ds_reserved
);
1042 obj
= ds
->ds_object
;
1044 for (spa_feature_t f
= 0; f
< SPA_FEATURES
; f
++) {
1045 if (dsl_dataset_feature_is_active(ds
, f
))
1046 dsl_dataset_deactivate_feature(ds
, f
, tx
);
1049 dsl_scan_ds_destroyed(ds
, tx
);
1051 if (dsl_dataset_phys(ds
)->ds_prev_snap_obj
!= 0) {
1052 /* This is a clone */
1053 ASSERT(ds
->ds_prev
!= NULL
);
1054 ASSERT3U(dsl_dataset_phys(ds
->ds_prev
)->ds_next_snap_obj
, !=,
1056 ASSERT0(dsl_dataset_phys(ds
)->ds_next_snap_obj
);
1058 dmu_buf_will_dirty(ds
->ds_prev
->ds_dbuf
, tx
);
1059 if (dsl_dataset_phys(ds
->ds_prev
)->ds_next_clones_obj
!= 0) {
1060 dsl_dataset_remove_from_next_clones(ds
->ds_prev
,
1064 ASSERT3U(dsl_dataset_phys(ds
->ds_prev
)->ds_num_children
, >, 1);
1065 dsl_dataset_phys(ds
->ds_prev
)->ds_num_children
--;
1069 * Destroy the deadlist. Unless it's a clone, the
1070 * deadlist should be empty since the dataset has no snapshots.
1071 * (If it's a clone, it's safe to ignore the deadlist contents
1072 * since they are still referenced by the origin snapshot.)
1074 dsl_deadlist_close(&ds
->ds_deadlist
);
1075 dsl_deadlist_free(mos
, dsl_dataset_phys(ds
)->ds_deadlist_obj
, tx
);
1076 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
1077 dsl_dataset_phys(ds
)->ds_deadlist_obj
= 0;
1079 if (dsl_dataset_remap_deadlist_exists(ds
))
1080 dsl_dataset_destroy_remap_deadlist(ds
, tx
);
1083 * Each destroy is responsible for both destroying (enqueuing
1084 * to be destroyed) the blkptrs comprising the dataset as well as
1085 * those belonging to the zil.
1087 if (dsl_deadlist_is_open(&ds
->ds_dir
->dd_livelist
)) {
1088 dsl_async_clone_destroy(ds
, tx
);
1089 } else if (spa_feature_is_enabled(dp
->dp_spa
,
1090 SPA_FEATURE_ASYNC_DESTROY
)) {
1091 dsl_async_dataset_destroy(ds
, tx
);
1093 old_synchronous_dataset_destroy(ds
, tx
);
1096 if (ds
->ds_prev
!= NULL
) {
1097 if (spa_version(dp
->dp_spa
) >= SPA_VERSION_DIR_CLONES
) {
1098 VERIFY0(zap_remove_int(mos
,
1099 dsl_dir_phys(ds
->ds_prev
->ds_dir
)->dd_clones
,
1100 ds
->ds_object
, tx
));
1102 prevobj
= ds
->ds_prev
->ds_object
;
1103 dsl_dataset_rele(ds
->ds_prev
, ds
);
1108 * This must be done after the dsl_traverse(), because it will
1109 * re-open the objset.
1111 if (ds
->ds_objset
) {
1112 dmu_objset_evict(ds
->ds_objset
);
1113 ds
->ds_objset
= NULL
;
1116 /* Erase the link in the dir */
1117 dmu_buf_will_dirty(ds
->ds_dir
->dd_dbuf
, tx
);
1118 dsl_dir_phys(ds
->ds_dir
)->dd_head_dataset_obj
= 0;
1119 ddobj
= ds
->ds_dir
->dd_object
;
1120 ASSERT(dsl_dataset_phys(ds
)->ds_snapnames_zapobj
!= 0);
1121 VERIFY0(zap_destroy(mos
,
1122 dsl_dataset_phys(ds
)->ds_snapnames_zapobj
, tx
));
1124 if (ds
->ds_bookmarks_obj
!= 0) {
1125 void *cookie
= NULL
;
1126 dsl_bookmark_node_t
*dbn
;
1128 while ((dbn
= avl_destroy_nodes(&ds
->ds_bookmarks
, &cookie
)) !=
1130 if (dbn
->dbn_phys
.zbm_redaction_obj
!= 0) {
1132 VERIFY0(dnode_hold(mos
,
1133 dbn
->dbn_phys
.zbm_redaction_obj
, FTAG
,
1135 if (rl
->dn_have_spill
) {
1136 spa_feature_decr(dmu_objset_spa(mos
),
1137 SPA_FEATURE_REDACTION_LIST_SPILL
,
1140 dnode_rele(rl
, FTAG
);
1141 VERIFY0(dmu_object_free(mos
,
1142 dbn
->dbn_phys
.zbm_redaction_obj
, tx
));
1143 spa_feature_decr(dmu_objset_spa(mos
),
1144 SPA_FEATURE_REDACTION_BOOKMARKS
, tx
);
1146 if (dbn
->dbn_phys
.zbm_flags
& ZBM_FLAG_HAS_FBN
) {
1147 spa_feature_decr(dmu_objset_spa(mos
),
1148 SPA_FEATURE_BOOKMARK_WRITTEN
, tx
);
1150 spa_strfree(dbn
->dbn_name
);
1151 mutex_destroy(&dbn
->dbn_lock
);
1152 kmem_free(dbn
, sizeof (*dbn
));
1154 avl_destroy(&ds
->ds_bookmarks
);
1155 VERIFY0(zap_destroy(mos
, ds
->ds_bookmarks_obj
, tx
));
1156 spa_feature_decr(dp
->dp_spa
, SPA_FEATURE_BOOKMARKS
, tx
);
1159 spa_prop_clear_bootfs(dp
->dp_spa
, ds
->ds_object
, tx
);
1161 ASSERT0(dsl_dataset_phys(ds
)->ds_next_clones_obj
);
1162 ASSERT0(dsl_dataset_phys(ds
)->ds_props_obj
);
1163 ASSERT0(dsl_dataset_phys(ds
)->ds_userrefs_obj
);
1164 dsl_dir_rele(ds
->ds_dir
, ds
);
1166 dmu_object_free_zapified(mos
, obj
, tx
);
1168 dsl_dir_destroy_sync(ddobj
, tx
);
1171 dsl_dataset_t
*prev
;
1172 VERIFY0(dsl_dataset_hold_obj(dp
, prevobj
, FTAG
, &prev
));
1173 dsl_destroy_snapshot_sync_impl(prev
, B_FALSE
, tx
);
1174 dsl_dataset_rele(prev
, FTAG
);
1176 /* Delete errlog. */
1177 if (spa_feature_is_enabled(dp
->dp_spa
, SPA_FEATURE_HEAD_ERRLOG
))
1178 spa_delete_dataset_errlog(dp
->dp_spa
, ds
->ds_object
, tx
);
1182 dsl_destroy_head_sync(void *arg
, dmu_tx_t
*tx
)
1184 dsl_destroy_head_arg_t
*ddha
= arg
;
1185 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
1188 VERIFY0(dsl_dataset_hold(dp
, ddha
->ddha_name
, FTAG
, &ds
));
1189 dsl_destroy_head_sync_impl(ds
, tx
);
1190 zvol_remove_minors(dp
->dp_spa
, ddha
->ddha_name
, B_TRUE
);
1191 dsl_dataset_rele(ds
, FTAG
);
1195 dsl_destroy_head_begin_sync(void *arg
, dmu_tx_t
*tx
)
1197 dsl_destroy_head_arg_t
*ddha
= arg
;
1198 dsl_pool_t
*dp
= dmu_tx_pool(tx
);
1201 VERIFY0(dsl_dataset_hold(dp
, ddha
->ddha_name
, FTAG
, &ds
));
1203 /* Mark it as inconsistent on-disk, in case we crash */
1204 dmu_buf_will_dirty(ds
->ds_dbuf
, tx
);
1205 dsl_dataset_phys(ds
)->ds_flags
|= DS_FLAG_INCONSISTENT
;
1207 spa_history_log_internal_ds(ds
, "destroy begin", tx
, " ");
1208 dsl_dataset_rele(ds
, FTAG
);
1212 dsl_destroy_head(const char *name
)
1214 dsl_destroy_head_arg_t ddha
;
1217 boolean_t isenabled
;
1220 zfs_destroy_unmount_origin(name
);
1223 error
= spa_open(name
, &spa
, FTAG
);
1226 isenabled
= spa_feature_is_enabled(spa
, SPA_FEATURE_ASYNC_DESTROY
);
1227 spa_close(spa
, FTAG
);
1229 ddha
.ddha_name
= name
;
1234 error
= dsl_sync_task(name
, dsl_destroy_head_check
,
1235 dsl_destroy_head_begin_sync
, &ddha
,
1236 0, ZFS_SPACE_CHECK_DESTROY
);
1241 * Head deletion is processed in one txg on old pools;
1242 * remove the objects from open context so that the txg sync
1243 * is not too long. This optimization can only work for
1244 * encrypted datasets if the wrapping key is loaded.
1246 error
= dmu_objset_own(name
, DMU_OST_ANY
, B_FALSE
, B_TRUE
,
1249 uint64_t prev_snap_txg
=
1250 dsl_dataset_phys(dmu_objset_ds(os
))->
1252 for (uint64_t obj
= 0; error
== 0;
1253 error
= dmu_object_next(os
, &obj
, FALSE
,
1255 (void) dmu_free_long_object(os
, obj
);
1256 /* sync out all frees */
1257 txg_wait_synced(dmu_objset_pool(os
), 0);
1258 dmu_objset_disown(os
, B_TRUE
, FTAG
);
1262 return (dsl_sync_task(name
, dsl_destroy_head_check
,
1263 dsl_destroy_head_sync
, &ddha
, 0, ZFS_SPACE_CHECK_DESTROY
));
1267 * Note, this function is used as the callback for dmu_objset_find(). We
1268 * always return 0 so that we will continue to find and process
1269 * inconsistent datasets, even if we encounter an error trying to
1270 * process one of them.
1273 dsl_destroy_inconsistent(const char *dsname
, void *arg
)
1278 if (dmu_objset_hold(dsname
, FTAG
, &os
) == 0) {
1279 boolean_t need_destroy
= DS_IS_INCONSISTENT(dmu_objset_ds(os
));
1282 * If the dataset is inconsistent because a resumable receive
1283 * has failed, then do not destroy it.
1285 if (dsl_dataset_has_resume_receive_state(dmu_objset_ds(os
)))
1286 need_destroy
= B_FALSE
;
1288 dmu_objset_rele(os
, FTAG
);
1290 (void) dsl_destroy_head(dsname
);
1296 #if defined(_KERNEL)
1297 EXPORT_SYMBOL(dsl_destroy_head
);
1298 EXPORT_SYMBOL(dsl_destroy_head_sync_impl
);
1299 EXPORT_SYMBOL(dsl_dataset_user_hold_check_one
);
1300 EXPORT_SYMBOL(dsl_destroy_snapshot_sync_impl
);
1301 EXPORT_SYMBOL(dsl_destroy_inconsistent
);
1302 EXPORT_SYMBOL(dsl_dataset_user_release_tmp
);
1303 EXPORT_SYMBOL(dsl_destroy_head_check_impl
);