xref: /illumos-gate/usr/src/uts/common/fs/zfs/dsl_destroy.c (revision 7d46dc6ca63a6f3f0d51aa655bfcf10cf2405a9e)
13b2aab18SMatthew Ahrens /*
23b2aab18SMatthew Ahrens  * CDDL HEADER START
33b2aab18SMatthew Ahrens  *
43b2aab18SMatthew Ahrens  * The contents of this file are subject to the terms of the
53b2aab18SMatthew Ahrens  * Common Development and Distribution License (the "License").
63b2aab18SMatthew Ahrens  * You may not use this file except in compliance with the License.
73b2aab18SMatthew Ahrens  *
83b2aab18SMatthew Ahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
93b2aab18SMatthew Ahrens  * or http://www.opensolaris.org/os/licensing.
103b2aab18SMatthew Ahrens  * See the License for the specific language governing permissions
113b2aab18SMatthew Ahrens  * and limitations under the License.
123b2aab18SMatthew Ahrens  *
133b2aab18SMatthew Ahrens  * When distributing Covered Code, include this CDDL HEADER in each
143b2aab18SMatthew Ahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
153b2aab18SMatthew Ahrens  * If applicable, add the following below this CDDL HEADER, with the
163b2aab18SMatthew Ahrens  * fields enclosed by brackets "[]" replaced with your own identifying
173b2aab18SMatthew Ahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
183b2aab18SMatthew Ahrens  *
193b2aab18SMatthew Ahrens  * CDDL HEADER END
203b2aab18SMatthew Ahrens  */
213b2aab18SMatthew Ahrens /*
223b2aab18SMatthew Ahrens  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
237802d7bfSMatthew Ahrens  * Copyright (c) 2012, 2014 by Delphix. All rights reserved.
24a7a845e4SSteven Hartland  * Copyright (c) 2013 Steven Hartland. All rights reserved.
25a2afb611SJerry Jelinek  * Copyright (c) 2013 by Joyent, Inc. All rights reserved.
263b2aab18SMatthew Ahrens  */
273b2aab18SMatthew Ahrens 
283b2aab18SMatthew Ahrens #include <sys/zfs_context.h>
293b2aab18SMatthew Ahrens #include <sys/dsl_userhold.h>
303b2aab18SMatthew Ahrens #include <sys/dsl_dataset.h>
313b2aab18SMatthew Ahrens #include <sys/dsl_synctask.h>
323b2aab18SMatthew Ahrens #include <sys/dmu_tx.h>
333b2aab18SMatthew Ahrens #include <sys/dsl_pool.h>
343b2aab18SMatthew Ahrens #include <sys/dsl_dir.h>
353b2aab18SMatthew Ahrens #include <sys/dmu_traverse.h>
363b2aab18SMatthew Ahrens #include <sys/dsl_scan.h>
373b2aab18SMatthew Ahrens #include <sys/dmu_objset.h>
383b2aab18SMatthew Ahrens #include <sys/zap.h>
393b2aab18SMatthew Ahrens #include <sys/zfeature.h>
403b2aab18SMatthew Ahrens #include <sys/zfs_ioctl.h>
413b2aab18SMatthew Ahrens #include <sys/dsl_deleg.h>
422acef22dSMatthew Ahrens #include <sys/dmu_impl.h>
433b2aab18SMatthew Ahrens 
443b2aab18SMatthew Ahrens typedef struct dmu_snapshots_destroy_arg {
453b2aab18SMatthew Ahrens 	nvlist_t *dsda_snaps;
463b2aab18SMatthew Ahrens 	nvlist_t *dsda_successful_snaps;
473b2aab18SMatthew Ahrens 	boolean_t dsda_defer;
483b2aab18SMatthew Ahrens 	nvlist_t *dsda_errlist;
493b2aab18SMatthew Ahrens } dmu_snapshots_destroy_arg_t;
503b2aab18SMatthew Ahrens 
5134f2f8cfSMatthew Ahrens int
523b2aab18SMatthew Ahrens dsl_destroy_snapshot_check_impl(dsl_dataset_t *ds, boolean_t defer)
533b2aab18SMatthew Ahrens {
543b2aab18SMatthew Ahrens 	if (!dsl_dataset_is_snapshot(ds))
55be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
563b2aab18SMatthew Ahrens 
573b2aab18SMatthew Ahrens 	if (dsl_dataset_long_held(ds))
58be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
593b2aab18SMatthew Ahrens 
603b2aab18SMatthew Ahrens 	/*
613b2aab18SMatthew Ahrens 	 * Only allow deferred destroy on pools that support it.
623b2aab18SMatthew Ahrens 	 * NOTE: deferred destroy is only supported on snapshots.
633b2aab18SMatthew Ahrens 	 */
643b2aab18SMatthew Ahrens 	if (defer) {
653b2aab18SMatthew Ahrens 		if (spa_version(ds->ds_dir->dd_pool->dp_spa) <
663b2aab18SMatthew Ahrens 		    SPA_VERSION_USERREFS)
67be6fd75aSMatthew Ahrens 			return (SET_ERROR(ENOTSUP));
683b2aab18SMatthew Ahrens 		return (0);
693b2aab18SMatthew Ahrens 	}
703b2aab18SMatthew Ahrens 
713b2aab18SMatthew Ahrens 	/*
723b2aab18SMatthew Ahrens 	 * If this snapshot has an elevated user reference count,
733b2aab18SMatthew Ahrens 	 * we can't destroy it yet.
743b2aab18SMatthew Ahrens 	 */
753b2aab18SMatthew Ahrens 	if (ds->ds_userrefs > 0)
76be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
773b2aab18SMatthew Ahrens 
783b2aab18SMatthew Ahrens 	/*
793b2aab18SMatthew Ahrens 	 * Can't delete a branch point.
803b2aab18SMatthew Ahrens 	 */
813b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_num_children > 1)
82be6fd75aSMatthew Ahrens 		return (SET_ERROR(EEXIST));
833b2aab18SMatthew Ahrens 
843b2aab18SMatthew Ahrens 	return (0);
853b2aab18SMatthew Ahrens }
863b2aab18SMatthew Ahrens 
873b2aab18SMatthew Ahrens static int
883b2aab18SMatthew Ahrens dsl_destroy_snapshot_check(void *arg, dmu_tx_t *tx)
893b2aab18SMatthew Ahrens {
903b2aab18SMatthew Ahrens 	dmu_snapshots_destroy_arg_t *dsda = arg;
913b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
923b2aab18SMatthew Ahrens 	nvpair_t *pair;
933b2aab18SMatthew Ahrens 	int error = 0;
943b2aab18SMatthew Ahrens 
953b2aab18SMatthew Ahrens 	if (!dmu_tx_is_syncing(tx))
963b2aab18SMatthew Ahrens 		return (0);
973b2aab18SMatthew Ahrens 
983b2aab18SMatthew Ahrens 	for (pair = nvlist_next_nvpair(dsda->dsda_snaps, NULL);
993b2aab18SMatthew Ahrens 	    pair != NULL; pair = nvlist_next_nvpair(dsda->dsda_snaps, pair)) {
1003b2aab18SMatthew Ahrens 		dsl_dataset_t *ds;
1013b2aab18SMatthew Ahrens 
1023b2aab18SMatthew Ahrens 		error = dsl_dataset_hold(dp, nvpair_name(pair),
1033b2aab18SMatthew Ahrens 		    FTAG, &ds);
1043b2aab18SMatthew Ahrens 
1053b2aab18SMatthew Ahrens 		/*
1063b2aab18SMatthew Ahrens 		 * If the snapshot does not exist, silently ignore it
1073b2aab18SMatthew Ahrens 		 * (it's "already destroyed").
1083b2aab18SMatthew Ahrens 		 */
1093b2aab18SMatthew Ahrens 		if (error == ENOENT)
1103b2aab18SMatthew Ahrens 			continue;
1113b2aab18SMatthew Ahrens 
1123b2aab18SMatthew Ahrens 		if (error == 0) {
1133b2aab18SMatthew Ahrens 			error = dsl_destroy_snapshot_check_impl(ds,
1143b2aab18SMatthew Ahrens 			    dsda->dsda_defer);
1153b2aab18SMatthew Ahrens 			dsl_dataset_rele(ds, FTAG);
1163b2aab18SMatthew Ahrens 		}
1173b2aab18SMatthew Ahrens 
1183b2aab18SMatthew Ahrens 		if (error == 0) {
1193b2aab18SMatthew Ahrens 			fnvlist_add_boolean(dsda->dsda_successful_snaps,
1203b2aab18SMatthew Ahrens 			    nvpair_name(pair));
1213b2aab18SMatthew Ahrens 		} else {
1223b2aab18SMatthew Ahrens 			fnvlist_add_int32(dsda->dsda_errlist,
1233b2aab18SMatthew Ahrens 			    nvpair_name(pair), error);
1243b2aab18SMatthew Ahrens 		}
1253b2aab18SMatthew Ahrens 	}
1263b2aab18SMatthew Ahrens 
1273b2aab18SMatthew Ahrens 	pair = nvlist_next_nvpair(dsda->dsda_errlist, NULL);
1283b2aab18SMatthew Ahrens 	if (pair != NULL)
1293b2aab18SMatthew Ahrens 		return (fnvpair_value_int32(pair));
130a7a845e4SSteven Hartland 
1313b2aab18SMatthew Ahrens 	return (0);
1323b2aab18SMatthew Ahrens }
1333b2aab18SMatthew Ahrens 
1343b2aab18SMatthew Ahrens struct process_old_arg {
1353b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
1363b2aab18SMatthew Ahrens 	dsl_dataset_t *ds_prev;
1373b2aab18SMatthew Ahrens 	boolean_t after_branch_point;
1383b2aab18SMatthew Ahrens 	zio_t *pio;
1393b2aab18SMatthew Ahrens 	uint64_t used, comp, uncomp;
1403b2aab18SMatthew Ahrens };
1413b2aab18SMatthew Ahrens 
1423b2aab18SMatthew Ahrens static int
1433b2aab18SMatthew Ahrens process_old_cb(void *arg, const blkptr_t *bp, dmu_tx_t *tx)
1443b2aab18SMatthew Ahrens {
1453b2aab18SMatthew Ahrens 	struct process_old_arg *poa = arg;
1463b2aab18SMatthew Ahrens 	dsl_pool_t *dp = poa->ds->ds_dir->dd_pool;
1473b2aab18SMatthew Ahrens 
14843466aaeSMax Grossman 	ASSERT(!BP_IS_HOLE(bp));
14943466aaeSMax Grossman 
1503b2aab18SMatthew Ahrens 	if (bp->blk_birth <= poa->ds->ds_phys->ds_prev_snap_txg) {
1513b2aab18SMatthew Ahrens 		dsl_deadlist_insert(&poa->ds->ds_deadlist, bp, tx);
1523b2aab18SMatthew Ahrens 		if (poa->ds_prev && !poa->after_branch_point &&
1533b2aab18SMatthew Ahrens 		    bp->blk_birth >
1543b2aab18SMatthew Ahrens 		    poa->ds_prev->ds_phys->ds_prev_snap_txg) {
1553b2aab18SMatthew Ahrens 			poa->ds_prev->ds_phys->ds_unique_bytes +=
1563b2aab18SMatthew Ahrens 			    bp_get_dsize_sync(dp->dp_spa, bp);
1573b2aab18SMatthew Ahrens 		}
1583b2aab18SMatthew Ahrens 	} else {
1593b2aab18SMatthew Ahrens 		poa->used += bp_get_dsize_sync(dp->dp_spa, bp);
1603b2aab18SMatthew Ahrens 		poa->comp += BP_GET_PSIZE(bp);
1613b2aab18SMatthew Ahrens 		poa->uncomp += BP_GET_UCSIZE(bp);
1623b2aab18SMatthew Ahrens 		dsl_free_sync(poa->pio, dp, tx->tx_txg, bp);
1633b2aab18SMatthew Ahrens 	}
1643b2aab18SMatthew Ahrens 	return (0);
1653b2aab18SMatthew Ahrens }
1663b2aab18SMatthew Ahrens 
1673b2aab18SMatthew Ahrens static void
1683b2aab18SMatthew Ahrens process_old_deadlist(dsl_dataset_t *ds, dsl_dataset_t *ds_prev,
1693b2aab18SMatthew Ahrens     dsl_dataset_t *ds_next, boolean_t after_branch_point, dmu_tx_t *tx)
1703b2aab18SMatthew Ahrens {
1713b2aab18SMatthew Ahrens 	struct process_old_arg poa = { 0 };
1723b2aab18SMatthew Ahrens 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
1733b2aab18SMatthew Ahrens 	objset_t *mos = dp->dp_meta_objset;
1743b2aab18SMatthew Ahrens 	uint64_t deadlist_obj;
1753b2aab18SMatthew Ahrens 
1763b2aab18SMatthew Ahrens 	ASSERT(ds->ds_deadlist.dl_oldfmt);
1773b2aab18SMatthew Ahrens 	ASSERT(ds_next->ds_deadlist.dl_oldfmt);
1783b2aab18SMatthew Ahrens 
1793b2aab18SMatthew Ahrens 	poa.ds = ds;
1803b2aab18SMatthew Ahrens 	poa.ds_prev = ds_prev;
1813b2aab18SMatthew Ahrens 	poa.after_branch_point = after_branch_point;
1823b2aab18SMatthew Ahrens 	poa.pio = zio_root(dp->dp_spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
1833b2aab18SMatthew Ahrens 	VERIFY0(bpobj_iterate(&ds_next->ds_deadlist.dl_bpobj,
1843b2aab18SMatthew Ahrens 	    process_old_cb, &poa, tx));
1853b2aab18SMatthew Ahrens 	VERIFY0(zio_wait(poa.pio));
1863b2aab18SMatthew Ahrens 	ASSERT3U(poa.used, ==, ds->ds_phys->ds_unique_bytes);
1873b2aab18SMatthew Ahrens 
1883b2aab18SMatthew Ahrens 	/* change snapused */
1893b2aab18SMatthew Ahrens 	dsl_dir_diduse_space(ds->ds_dir, DD_USED_SNAP,
1903b2aab18SMatthew Ahrens 	    -poa.used, -poa.comp, -poa.uncomp, tx);
1913b2aab18SMatthew Ahrens 
1923b2aab18SMatthew Ahrens 	/* swap next's deadlist to our deadlist */
1933b2aab18SMatthew Ahrens 	dsl_deadlist_close(&ds->ds_deadlist);
1943b2aab18SMatthew Ahrens 	dsl_deadlist_close(&ds_next->ds_deadlist);
1953b2aab18SMatthew Ahrens 	deadlist_obj = ds->ds_phys->ds_deadlist_obj;
1963b2aab18SMatthew Ahrens 	ds->ds_phys->ds_deadlist_obj = ds_next->ds_phys->ds_deadlist_obj;
1973b2aab18SMatthew Ahrens 	ds_next->ds_phys->ds_deadlist_obj = deadlist_obj;
1983b2aab18SMatthew Ahrens 	dsl_deadlist_open(&ds->ds_deadlist, mos, ds->ds_phys->ds_deadlist_obj);
1993b2aab18SMatthew Ahrens 	dsl_deadlist_open(&ds_next->ds_deadlist, mos,
2003b2aab18SMatthew Ahrens 	    ds_next->ds_phys->ds_deadlist_obj);
2013b2aab18SMatthew Ahrens }
2023b2aab18SMatthew Ahrens 
2033b2aab18SMatthew Ahrens static void
2043b2aab18SMatthew Ahrens dsl_dataset_remove_clones_key(dsl_dataset_t *ds, uint64_t mintxg, dmu_tx_t *tx)
2053b2aab18SMatthew Ahrens {
2063b2aab18SMatthew Ahrens 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
2073b2aab18SMatthew Ahrens 	zap_cursor_t zc;
2083b2aab18SMatthew Ahrens 	zap_attribute_t za;
2093b2aab18SMatthew Ahrens 
2103b2aab18SMatthew Ahrens 	/*
2113b2aab18SMatthew Ahrens 	 * If it is the old version, dd_clones doesn't exist so we can't
2123b2aab18SMatthew Ahrens 	 * find the clones, but dsl_deadlist_remove_key() is a no-op so it
2133b2aab18SMatthew Ahrens 	 * doesn't matter.
2143b2aab18SMatthew Ahrens 	 */
2153b2aab18SMatthew Ahrens 	if (ds->ds_dir->dd_phys->dd_clones == 0)
2163b2aab18SMatthew Ahrens 		return;
2173b2aab18SMatthew Ahrens 
2183b2aab18SMatthew Ahrens 	for (zap_cursor_init(&zc, mos, ds->ds_dir->dd_phys->dd_clones);
2193b2aab18SMatthew Ahrens 	    zap_cursor_retrieve(&zc, &za) == 0;
2203b2aab18SMatthew Ahrens 	    zap_cursor_advance(&zc)) {
2213b2aab18SMatthew Ahrens 		dsl_dataset_t *clone;
2223b2aab18SMatthew Ahrens 
2233b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(ds->ds_dir->dd_pool,
2243b2aab18SMatthew Ahrens 		    za.za_first_integer, FTAG, &clone));
2253b2aab18SMatthew Ahrens 		if (clone->ds_dir->dd_origin_txg > mintxg) {
2263b2aab18SMatthew Ahrens 			dsl_deadlist_remove_key(&clone->ds_deadlist,
2273b2aab18SMatthew Ahrens 			    mintxg, tx);
2283b2aab18SMatthew Ahrens 			dsl_dataset_remove_clones_key(clone, mintxg, tx);
2293b2aab18SMatthew Ahrens 		}
2303b2aab18SMatthew Ahrens 		dsl_dataset_rele(clone, FTAG);
2313b2aab18SMatthew Ahrens 	}
2323b2aab18SMatthew Ahrens 	zap_cursor_fini(&zc);
2333b2aab18SMatthew Ahrens }
2343b2aab18SMatthew Ahrens 
2353b2aab18SMatthew Ahrens void
2363b2aab18SMatthew Ahrens dsl_destroy_snapshot_sync_impl(dsl_dataset_t *ds, boolean_t defer, dmu_tx_t *tx)
2373b2aab18SMatthew Ahrens {
2383b2aab18SMatthew Ahrens 	int err;
2393b2aab18SMatthew Ahrens 	int after_branch_point = FALSE;
2403b2aab18SMatthew Ahrens 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
2413b2aab18SMatthew Ahrens 	objset_t *mos = dp->dp_meta_objset;
2423b2aab18SMatthew Ahrens 	dsl_dataset_t *ds_prev = NULL;
2433b2aab18SMatthew Ahrens 	uint64_t obj;
2443b2aab18SMatthew Ahrens 
2453b2aab18SMatthew Ahrens 	ASSERT(RRW_WRITE_HELD(&dp->dp_config_rwlock));
2463b2aab18SMatthew Ahrens 	ASSERT3U(ds->ds_phys->ds_bp.blk_birth, <=, tx->tx_txg);
2473b2aab18SMatthew Ahrens 	ASSERT(refcount_is_zero(&ds->ds_longholds));
2483b2aab18SMatthew Ahrens 
2493b2aab18SMatthew Ahrens 	if (defer &&
2503b2aab18SMatthew Ahrens 	    (ds->ds_userrefs > 0 || ds->ds_phys->ds_num_children > 1)) {
2513b2aab18SMatthew Ahrens 		ASSERT(spa_version(dp->dp_spa) >= SPA_VERSION_USERREFS);
2523b2aab18SMatthew Ahrens 		dmu_buf_will_dirty(ds->ds_dbuf, tx);
2533b2aab18SMatthew Ahrens 		ds->ds_phys->ds_flags |= DS_FLAG_DEFER_DESTROY;
2543b2aab18SMatthew Ahrens 		spa_history_log_internal_ds(ds, "defer_destroy", tx, "");
2553b2aab18SMatthew Ahrens 		return;
2563b2aab18SMatthew Ahrens 	}
2573b2aab18SMatthew Ahrens 
2583b2aab18SMatthew Ahrens 	ASSERT3U(ds->ds_phys->ds_num_children, <=, 1);
2593b2aab18SMatthew Ahrens 
2603b2aab18SMatthew Ahrens 	/* We need to log before removing it from the namespace. */
2613b2aab18SMatthew Ahrens 	spa_history_log_internal_ds(ds, "destroy", tx, "");
2623b2aab18SMatthew Ahrens 
2633b2aab18SMatthew Ahrens 	dsl_scan_ds_destroyed(ds, tx);
2643b2aab18SMatthew Ahrens 
2653b2aab18SMatthew Ahrens 	obj = ds->ds_object;
2663b2aab18SMatthew Ahrens 
2673b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_prev_snap_obj != 0) {
2683b2aab18SMatthew Ahrens 		ASSERT3P(ds->ds_prev, ==, NULL);
2693b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(dp,
2703b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_prev_snap_obj, FTAG, &ds_prev));
2713b2aab18SMatthew Ahrens 		after_branch_point =
2723b2aab18SMatthew Ahrens 		    (ds_prev->ds_phys->ds_next_snap_obj != obj);
2733b2aab18SMatthew Ahrens 
2743b2aab18SMatthew Ahrens 		dmu_buf_will_dirty(ds_prev->ds_dbuf, tx);
2753b2aab18SMatthew Ahrens 		if (after_branch_point &&
2763b2aab18SMatthew Ahrens 		    ds_prev->ds_phys->ds_next_clones_obj != 0) {
2773b2aab18SMatthew Ahrens 			dsl_dataset_remove_from_next_clones(ds_prev, obj, tx);
2783b2aab18SMatthew Ahrens 			if (ds->ds_phys->ds_next_snap_obj != 0) {
2793b2aab18SMatthew Ahrens 				VERIFY0(zap_add_int(mos,
2803b2aab18SMatthew Ahrens 				    ds_prev->ds_phys->ds_next_clones_obj,
2813b2aab18SMatthew Ahrens 				    ds->ds_phys->ds_next_snap_obj, tx));
2823b2aab18SMatthew Ahrens 			}
2833b2aab18SMatthew Ahrens 		}
2843b2aab18SMatthew Ahrens 		if (!after_branch_point) {
2853b2aab18SMatthew Ahrens 			ds_prev->ds_phys->ds_next_snap_obj =
2863b2aab18SMatthew Ahrens 			    ds->ds_phys->ds_next_snap_obj;
2873b2aab18SMatthew Ahrens 		}
2883b2aab18SMatthew Ahrens 	}
2893b2aab18SMatthew Ahrens 
2903b2aab18SMatthew Ahrens 	dsl_dataset_t *ds_next;
2913b2aab18SMatthew Ahrens 	uint64_t old_unique;
2923b2aab18SMatthew Ahrens 	uint64_t used = 0, comp = 0, uncomp = 0;
2933b2aab18SMatthew Ahrens 
2943b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold_obj(dp,
2953b2aab18SMatthew Ahrens 	    ds->ds_phys->ds_next_snap_obj, FTAG, &ds_next));
2963b2aab18SMatthew Ahrens 	ASSERT3U(ds_next->ds_phys->ds_prev_snap_obj, ==, obj);
2973b2aab18SMatthew Ahrens 
2983b2aab18SMatthew Ahrens 	old_unique = ds_next->ds_phys->ds_unique_bytes;
2993b2aab18SMatthew Ahrens 
3003b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(ds_next->ds_dbuf, tx);
3013b2aab18SMatthew Ahrens 	ds_next->ds_phys->ds_prev_snap_obj =
3023b2aab18SMatthew Ahrens 	    ds->ds_phys->ds_prev_snap_obj;
3033b2aab18SMatthew Ahrens 	ds_next->ds_phys->ds_prev_snap_txg =
3043b2aab18SMatthew Ahrens 	    ds->ds_phys->ds_prev_snap_txg;
3053b2aab18SMatthew Ahrens 	ASSERT3U(ds->ds_phys->ds_prev_snap_txg, ==,
3063b2aab18SMatthew Ahrens 	    ds_prev ? ds_prev->ds_phys->ds_creation_txg : 0);
3073b2aab18SMatthew Ahrens 
3083b2aab18SMatthew Ahrens 	if (ds_next->ds_deadlist.dl_oldfmt) {
3093b2aab18SMatthew Ahrens 		process_old_deadlist(ds, ds_prev, ds_next,
3103b2aab18SMatthew Ahrens 		    after_branch_point, tx);
3113b2aab18SMatthew Ahrens 	} else {
3123b2aab18SMatthew Ahrens 		/* Adjust prev's unique space. */
3133b2aab18SMatthew Ahrens 		if (ds_prev && !after_branch_point) {
3143b2aab18SMatthew Ahrens 			dsl_deadlist_space_range(&ds_next->ds_deadlist,
3153b2aab18SMatthew Ahrens 			    ds_prev->ds_phys->ds_prev_snap_txg,
3163b2aab18SMatthew Ahrens 			    ds->ds_phys->ds_prev_snap_txg,
3173b2aab18SMatthew Ahrens 			    &used, &comp, &uncomp);
3183b2aab18SMatthew Ahrens 			ds_prev->ds_phys->ds_unique_bytes += used;
3193b2aab18SMatthew Ahrens 		}
3203b2aab18SMatthew Ahrens 
3213b2aab18SMatthew Ahrens 		/* Adjust snapused. */
3223b2aab18SMatthew Ahrens 		dsl_deadlist_space_range(&ds_next->ds_deadlist,
3233b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_prev_snap_txg, UINT64_MAX,
3243b2aab18SMatthew Ahrens 		    &used, &comp, &uncomp);
3253b2aab18SMatthew Ahrens 		dsl_dir_diduse_space(ds->ds_dir, DD_USED_SNAP,
3263b2aab18SMatthew Ahrens 		    -used, -comp, -uncomp, tx);
3273b2aab18SMatthew Ahrens 
3283b2aab18SMatthew Ahrens 		/* Move blocks to be freed to pool's free list. */
3293b2aab18SMatthew Ahrens 		dsl_deadlist_move_bpobj(&ds_next->ds_deadlist,
3303b2aab18SMatthew Ahrens 		    &dp->dp_free_bpobj, ds->ds_phys->ds_prev_snap_txg,
3313b2aab18SMatthew Ahrens 		    tx);
3323b2aab18SMatthew Ahrens 		dsl_dir_diduse_space(tx->tx_pool->dp_free_dir,
3333b2aab18SMatthew Ahrens 		    DD_USED_HEAD, used, comp, uncomp, tx);
3343b2aab18SMatthew Ahrens 
3353b2aab18SMatthew Ahrens 		/* Merge our deadlist into next's and free it. */
3363b2aab18SMatthew Ahrens 		dsl_deadlist_merge(&ds_next->ds_deadlist,
3373b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_deadlist_obj, tx);
3383b2aab18SMatthew Ahrens 	}
3393b2aab18SMatthew Ahrens 	dsl_deadlist_close(&ds->ds_deadlist);
3403b2aab18SMatthew Ahrens 	dsl_deadlist_free(mos, ds->ds_phys->ds_deadlist_obj, tx);
3413b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
3423b2aab18SMatthew Ahrens 	ds->ds_phys->ds_deadlist_obj = 0;
3433b2aab18SMatthew Ahrens 
3443b2aab18SMatthew Ahrens 	/* Collapse range in clone heads */
3453b2aab18SMatthew Ahrens 	dsl_dataset_remove_clones_key(ds,
3463b2aab18SMatthew Ahrens 	    ds->ds_phys->ds_creation_txg, tx);
3473b2aab18SMatthew Ahrens 
3483b2aab18SMatthew Ahrens 	if (dsl_dataset_is_snapshot(ds_next)) {
3493b2aab18SMatthew Ahrens 		dsl_dataset_t *ds_nextnext;
3503b2aab18SMatthew Ahrens 
3513b2aab18SMatthew Ahrens 		/*
3523b2aab18SMatthew Ahrens 		 * Update next's unique to include blocks which
3533b2aab18SMatthew Ahrens 		 * were previously shared by only this snapshot
3543b2aab18SMatthew Ahrens 		 * and it.  Those blocks will be born after the
3553b2aab18SMatthew Ahrens 		 * prev snap and before this snap, and will have
3563b2aab18SMatthew Ahrens 		 * died after the next snap and before the one
3573b2aab18SMatthew Ahrens 		 * after that (ie. be on the snap after next's
3583b2aab18SMatthew Ahrens 		 * deadlist).
3593b2aab18SMatthew Ahrens 		 */
3603b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(dp,
3613b2aab18SMatthew Ahrens 		    ds_next->ds_phys->ds_next_snap_obj, FTAG, &ds_nextnext));
3623b2aab18SMatthew Ahrens 		dsl_deadlist_space_range(&ds_nextnext->ds_deadlist,
3633b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_prev_snap_txg,
3643b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_creation_txg,
3653b2aab18SMatthew Ahrens 		    &used, &comp, &uncomp);
3663b2aab18SMatthew Ahrens 		ds_next->ds_phys->ds_unique_bytes += used;
3673b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds_nextnext, FTAG);
3683b2aab18SMatthew Ahrens 		ASSERT3P(ds_next->ds_prev, ==, NULL);
3693b2aab18SMatthew Ahrens 
3703b2aab18SMatthew Ahrens 		/* Collapse range in this head. */
3713b2aab18SMatthew Ahrens 		dsl_dataset_t *hds;
3723b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(dp,
3733b2aab18SMatthew Ahrens 		    ds->ds_dir->dd_phys->dd_head_dataset_obj, FTAG, &hds));
3743b2aab18SMatthew Ahrens 		dsl_deadlist_remove_key(&hds->ds_deadlist,
3753b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_creation_txg, tx);
3763b2aab18SMatthew Ahrens 		dsl_dataset_rele(hds, FTAG);
3773b2aab18SMatthew Ahrens 
3783b2aab18SMatthew Ahrens 	} else {
3793b2aab18SMatthew Ahrens 		ASSERT3P(ds_next->ds_prev, ==, ds);
3803b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds_next->ds_prev, ds_next);
3813b2aab18SMatthew Ahrens 		ds_next->ds_prev = NULL;
3823b2aab18SMatthew Ahrens 		if (ds_prev) {
3833b2aab18SMatthew Ahrens 			VERIFY0(dsl_dataset_hold_obj(dp,
3843b2aab18SMatthew Ahrens 			    ds->ds_phys->ds_prev_snap_obj,
3853b2aab18SMatthew Ahrens 			    ds_next, &ds_next->ds_prev));
3863b2aab18SMatthew Ahrens 		}
3873b2aab18SMatthew Ahrens 
3883b2aab18SMatthew Ahrens 		dsl_dataset_recalc_head_uniq(ds_next);
3893b2aab18SMatthew Ahrens 
3903b2aab18SMatthew Ahrens 		/*
3913b2aab18SMatthew Ahrens 		 * Reduce the amount of our unconsumed refreservation
3923b2aab18SMatthew Ahrens 		 * being charged to our parent by the amount of
3933b2aab18SMatthew Ahrens 		 * new unique data we have gained.
3943b2aab18SMatthew Ahrens 		 */
3953b2aab18SMatthew Ahrens 		if (old_unique < ds_next->ds_reserved) {
3963b2aab18SMatthew Ahrens 			int64_t mrsdelta;
3973b2aab18SMatthew Ahrens 			uint64_t new_unique =
3983b2aab18SMatthew Ahrens 			    ds_next->ds_phys->ds_unique_bytes;
3993b2aab18SMatthew Ahrens 
4003b2aab18SMatthew Ahrens 			ASSERT(old_unique <= new_unique);
4013b2aab18SMatthew Ahrens 			mrsdelta = MIN(new_unique - old_unique,
4023b2aab18SMatthew Ahrens 			    ds_next->ds_reserved - old_unique);
4033b2aab18SMatthew Ahrens 			dsl_dir_diduse_space(ds->ds_dir,
4043b2aab18SMatthew Ahrens 			    DD_USED_REFRSRV, -mrsdelta, 0, 0, tx);
4053b2aab18SMatthew Ahrens 		}
4063b2aab18SMatthew Ahrens 	}
4073b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds_next, FTAG);
4083b2aab18SMatthew Ahrens 
4093b2aab18SMatthew Ahrens 	/*
4103b2aab18SMatthew Ahrens 	 * This must be done after the dsl_traverse(), because it will
4113b2aab18SMatthew Ahrens 	 * re-open the objset.
4123b2aab18SMatthew Ahrens 	 */
4133b2aab18SMatthew Ahrens 	if (ds->ds_objset) {
4143b2aab18SMatthew Ahrens 		dmu_objset_evict(ds->ds_objset);
4153b2aab18SMatthew Ahrens 		ds->ds_objset = NULL;
4163b2aab18SMatthew Ahrens 	}
4173b2aab18SMatthew Ahrens 
4183b2aab18SMatthew Ahrens 	/* remove from snapshot namespace */
4193b2aab18SMatthew Ahrens 	dsl_dataset_t *ds_head;
4203b2aab18SMatthew Ahrens 	ASSERT(ds->ds_phys->ds_snapnames_zapobj == 0);
4213b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold_obj(dp,
4223b2aab18SMatthew Ahrens 	    ds->ds_dir->dd_phys->dd_head_dataset_obj, FTAG, &ds_head));
4233b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_get_snapname(ds));
4243b2aab18SMatthew Ahrens #ifdef ZFS_DEBUG
4253b2aab18SMatthew Ahrens 	{
4263b2aab18SMatthew Ahrens 		uint64_t val;
4273b2aab18SMatthew Ahrens 
4283b2aab18SMatthew Ahrens 		err = dsl_dataset_snap_lookup(ds_head,
4293b2aab18SMatthew Ahrens 		    ds->ds_snapname, &val);
4303b2aab18SMatthew Ahrens 		ASSERT0(err);
4313b2aab18SMatthew Ahrens 		ASSERT3U(val, ==, obj);
4323b2aab18SMatthew Ahrens 	}
4333b2aab18SMatthew Ahrens #endif
434a2afb611SJerry Jelinek 	VERIFY0(dsl_dataset_snap_remove(ds_head, ds->ds_snapname, tx, B_TRUE));
4353b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds_head, FTAG);
4363b2aab18SMatthew Ahrens 
4373b2aab18SMatthew Ahrens 	if (ds_prev != NULL)
4383b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds_prev, FTAG);
4393b2aab18SMatthew Ahrens 
4403b2aab18SMatthew Ahrens 	spa_prop_clear_bootfs(dp->dp_spa, ds->ds_object, tx);
4413b2aab18SMatthew Ahrens 
4423b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_next_clones_obj != 0) {
4433b2aab18SMatthew Ahrens 		uint64_t count;
4443b2aab18SMatthew Ahrens 		ASSERT0(zap_count(mos,
4453b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_next_clones_obj, &count) && count == 0);
4463b2aab18SMatthew Ahrens 		VERIFY0(dmu_object_free(mos,
4473b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_next_clones_obj, tx));
4483b2aab18SMatthew Ahrens 	}
4493b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_props_obj != 0)
4503b2aab18SMatthew Ahrens 		VERIFY0(zap_destroy(mos, ds->ds_phys->ds_props_obj, tx));
4513b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_userrefs_obj != 0)
4523b2aab18SMatthew Ahrens 		VERIFY0(zap_destroy(mos, ds->ds_phys->ds_userrefs_obj, tx));
4533b2aab18SMatthew Ahrens 	dsl_dir_rele(ds->ds_dir, ds);
4543b2aab18SMatthew Ahrens 	ds->ds_dir = NULL;
4552acef22dSMatthew Ahrens 	dmu_object_free_zapified(mos, obj, tx);
4563b2aab18SMatthew Ahrens }
4573b2aab18SMatthew Ahrens 
4583b2aab18SMatthew Ahrens static void
4593b2aab18SMatthew Ahrens dsl_destroy_snapshot_sync(void *arg, dmu_tx_t *tx)
4603b2aab18SMatthew Ahrens {
4613b2aab18SMatthew Ahrens 	dmu_snapshots_destroy_arg_t *dsda = arg;
4623b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
4633b2aab18SMatthew Ahrens 	nvpair_t *pair;
4643b2aab18SMatthew Ahrens 
4653b2aab18SMatthew Ahrens 	for (pair = nvlist_next_nvpair(dsda->dsda_successful_snaps, NULL);
4663b2aab18SMatthew Ahrens 	    pair != NULL;
4673b2aab18SMatthew Ahrens 	    pair = nvlist_next_nvpair(dsda->dsda_successful_snaps, pair)) {
4683b2aab18SMatthew Ahrens 		dsl_dataset_t *ds;
4693b2aab18SMatthew Ahrens 
4703b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold(dp, nvpair_name(pair), FTAG, &ds));
4713b2aab18SMatthew Ahrens 
4723b2aab18SMatthew Ahrens 		dsl_destroy_snapshot_sync_impl(ds, dsda->dsda_defer, tx);
4733b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
4743b2aab18SMatthew Ahrens 	}
4753b2aab18SMatthew Ahrens }
4763b2aab18SMatthew Ahrens 
4773b2aab18SMatthew Ahrens /*
4783b2aab18SMatthew Ahrens  * The semantics of this function are described in the comment above
4793b2aab18SMatthew Ahrens  * lzc_destroy_snaps().  To summarize:
4803b2aab18SMatthew Ahrens  *
4813b2aab18SMatthew Ahrens  * The snapshots must all be in the same pool.
4823b2aab18SMatthew Ahrens  *
4833b2aab18SMatthew Ahrens  * Snapshots that don't exist will be silently ignored (considered to be
4843b2aab18SMatthew Ahrens  * "already deleted").
4853b2aab18SMatthew Ahrens  *
4863b2aab18SMatthew Ahrens  * On success, all snaps will be destroyed and this will return 0.
4873b2aab18SMatthew Ahrens  * On failure, no snaps will be destroyed, the errlist will be filled in,
4883b2aab18SMatthew Ahrens  * and this will return an errno.
4893b2aab18SMatthew Ahrens  */
4903b2aab18SMatthew Ahrens int
4913b2aab18SMatthew Ahrens dsl_destroy_snapshots_nvl(nvlist_t *snaps, boolean_t defer,
4923b2aab18SMatthew Ahrens     nvlist_t *errlist)
4933b2aab18SMatthew Ahrens {
4943b2aab18SMatthew Ahrens 	dmu_snapshots_destroy_arg_t dsda;
4953b2aab18SMatthew Ahrens 	int error;
4963b2aab18SMatthew Ahrens 	nvpair_t *pair;
4973b2aab18SMatthew Ahrens 
4983b2aab18SMatthew Ahrens 	pair = nvlist_next_nvpair(snaps, NULL);
4993b2aab18SMatthew Ahrens 	if (pair == NULL)
5003b2aab18SMatthew Ahrens 		return (0);
5013b2aab18SMatthew Ahrens 
5023b2aab18SMatthew Ahrens 	dsda.dsda_snaps = snaps;
5033b2aab18SMatthew Ahrens 	dsda.dsda_successful_snaps = fnvlist_alloc();
5043b2aab18SMatthew Ahrens 	dsda.dsda_defer = defer;
5053b2aab18SMatthew Ahrens 	dsda.dsda_errlist = errlist;
5063b2aab18SMatthew Ahrens 
5073b2aab18SMatthew Ahrens 	error = dsl_sync_task(nvpair_name(pair),
5083b2aab18SMatthew Ahrens 	    dsl_destroy_snapshot_check, dsl_destroy_snapshot_sync,
509*7d46dc6cSMatthew Ahrens 	    &dsda, 0, ZFS_SPACE_CHECK_NONE);
5103b2aab18SMatthew Ahrens 	fnvlist_free(dsda.dsda_successful_snaps);
5113b2aab18SMatthew Ahrens 
5123b2aab18SMatthew Ahrens 	return (error);
5133b2aab18SMatthew Ahrens }
5143b2aab18SMatthew Ahrens 
5153b2aab18SMatthew Ahrens int
5163b2aab18SMatthew Ahrens dsl_destroy_snapshot(const char *name, boolean_t defer)
5173b2aab18SMatthew Ahrens {
5183b2aab18SMatthew Ahrens 	int error;
5193b2aab18SMatthew Ahrens 	nvlist_t *nvl = fnvlist_alloc();
5203b2aab18SMatthew Ahrens 	nvlist_t *errlist = fnvlist_alloc();
5213b2aab18SMatthew Ahrens 
5223b2aab18SMatthew Ahrens 	fnvlist_add_boolean(nvl, name);
5233b2aab18SMatthew Ahrens 	error = dsl_destroy_snapshots_nvl(nvl, defer, errlist);
5243b2aab18SMatthew Ahrens 	fnvlist_free(errlist);
5253b2aab18SMatthew Ahrens 	fnvlist_free(nvl);
5263b2aab18SMatthew Ahrens 	return (error);
5273b2aab18SMatthew Ahrens }
5283b2aab18SMatthew Ahrens 
5293b2aab18SMatthew Ahrens struct killarg {
5303b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
5313b2aab18SMatthew Ahrens 	dmu_tx_t *tx;
5323b2aab18SMatthew Ahrens };
5333b2aab18SMatthew Ahrens 
5343b2aab18SMatthew Ahrens /* ARGSUSED */
5353b2aab18SMatthew Ahrens static int
5363b2aab18SMatthew Ahrens kill_blkptr(spa_t *spa, zilog_t *zilog, const blkptr_t *bp,
5377802d7bfSMatthew Ahrens     const zbookmark_phys_t *zb, const dnode_phys_t *dnp, void *arg)
5383b2aab18SMatthew Ahrens {
5393b2aab18SMatthew Ahrens 	struct killarg *ka = arg;
5403b2aab18SMatthew Ahrens 	dmu_tx_t *tx = ka->tx;
5413b2aab18SMatthew Ahrens 
5425d7b4d43SMatthew Ahrens 	if (BP_IS_HOLE(bp) || BP_IS_EMBEDDED(bp))
5433b2aab18SMatthew Ahrens 		return (0);
5443b2aab18SMatthew Ahrens 
5453b2aab18SMatthew Ahrens 	if (zb->zb_level == ZB_ZIL_LEVEL) {
5463b2aab18SMatthew Ahrens 		ASSERT(zilog != NULL);
5473b2aab18SMatthew Ahrens 		/*
5483b2aab18SMatthew Ahrens 		 * It's a block in the intent log.  It has no
5493b2aab18SMatthew Ahrens 		 * accounting, so just free it.
5503b2aab18SMatthew Ahrens 		 */
5513b2aab18SMatthew Ahrens 		dsl_free(ka->tx->tx_pool, ka->tx->tx_txg, bp);
5523b2aab18SMatthew Ahrens 	} else {
5533b2aab18SMatthew Ahrens 		ASSERT(zilog == NULL);
5543b2aab18SMatthew Ahrens 		ASSERT3U(bp->blk_birth, >, ka->ds->ds_phys->ds_prev_snap_txg);
5553b2aab18SMatthew Ahrens 		(void) dsl_dataset_block_kill(ka->ds, bp, tx, B_FALSE);
5563b2aab18SMatthew Ahrens 	}
5573b2aab18SMatthew Ahrens 
5583b2aab18SMatthew Ahrens 	return (0);
5593b2aab18SMatthew Ahrens }
5603b2aab18SMatthew Ahrens 
5613b2aab18SMatthew Ahrens static void
5623b2aab18SMatthew Ahrens old_synchronous_dataset_destroy(dsl_dataset_t *ds, dmu_tx_t *tx)
5633b2aab18SMatthew Ahrens {
5643b2aab18SMatthew Ahrens 	struct killarg ka;
5653b2aab18SMatthew Ahrens 
5663b2aab18SMatthew Ahrens 	/*
5673b2aab18SMatthew Ahrens 	 * Free everything that we point to (that's born after
5683b2aab18SMatthew Ahrens 	 * the previous snapshot, if we are a clone)
5693b2aab18SMatthew Ahrens 	 *
5703b2aab18SMatthew Ahrens 	 * NB: this should be very quick, because we already
5713b2aab18SMatthew Ahrens 	 * freed all the objects in open context.
5723b2aab18SMatthew Ahrens 	 */
5733b2aab18SMatthew Ahrens 	ka.ds = ds;
5743b2aab18SMatthew Ahrens 	ka.tx = tx;
5753b2aab18SMatthew Ahrens 	VERIFY0(traverse_dataset(ds,
5763b2aab18SMatthew Ahrens 	    ds->ds_phys->ds_prev_snap_txg, TRAVERSE_POST,
5773b2aab18SMatthew Ahrens 	    kill_blkptr, &ka));
5783b2aab18SMatthew Ahrens 	ASSERT(!DS_UNIQUE_IS_ACCURATE(ds) || ds->ds_phys->ds_unique_bytes == 0);
5793b2aab18SMatthew Ahrens }
5803b2aab18SMatthew Ahrens 
5813b2aab18SMatthew Ahrens typedef struct dsl_destroy_head_arg {
5823b2aab18SMatthew Ahrens 	const char *ddha_name;
5833b2aab18SMatthew Ahrens } dsl_destroy_head_arg_t;
5843b2aab18SMatthew Ahrens 
5853b2aab18SMatthew Ahrens int
5863b2aab18SMatthew Ahrens dsl_destroy_head_check_impl(dsl_dataset_t *ds, int expected_holds)
5873b2aab18SMatthew Ahrens {
5883b2aab18SMatthew Ahrens 	int error;
5893b2aab18SMatthew Ahrens 	uint64_t count;
5903b2aab18SMatthew Ahrens 	objset_t *mos;
5913b2aab18SMatthew Ahrens 
5925d7b4d43SMatthew Ahrens 	ASSERT(!dsl_dataset_is_snapshot(ds));
5933b2aab18SMatthew Ahrens 	if (dsl_dataset_is_snapshot(ds))
594be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
5953b2aab18SMatthew Ahrens 
5963b2aab18SMatthew Ahrens 	if (refcount_count(&ds->ds_longholds) != expected_holds)
597be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
5983b2aab18SMatthew Ahrens 
5993b2aab18SMatthew Ahrens 	mos = ds->ds_dir->dd_pool->dp_meta_objset;
6003b2aab18SMatthew Ahrens 
6013b2aab18SMatthew Ahrens 	/*
6023b2aab18SMatthew Ahrens 	 * Can't delete a head dataset if there are snapshots of it.
6033b2aab18SMatthew Ahrens 	 * (Except if the only snapshots are from the branch we cloned
6043b2aab18SMatthew Ahrens 	 * from.)
6053b2aab18SMatthew Ahrens 	 */
6063b2aab18SMatthew Ahrens 	if (ds->ds_prev != NULL &&
6073b2aab18SMatthew Ahrens 	    ds->ds_prev->ds_phys->ds_next_snap_obj == ds->ds_object)
608be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
6093b2aab18SMatthew Ahrens 
6103b2aab18SMatthew Ahrens 	/*
6113b2aab18SMatthew Ahrens 	 * Can't delete if there are children of this fs.
6123b2aab18SMatthew Ahrens 	 */
6133b2aab18SMatthew Ahrens 	error = zap_count(mos,
6143b2aab18SMatthew Ahrens 	    ds->ds_dir->dd_phys->dd_child_dir_zapobj, &count);
6153b2aab18SMatthew Ahrens 	if (error != 0)
6163b2aab18SMatthew Ahrens 		return (error);
6173b2aab18SMatthew Ahrens 	if (count != 0)
618be6fd75aSMatthew Ahrens 		return (SET_ERROR(EEXIST));
6193b2aab18SMatthew Ahrens 
6203b2aab18SMatthew Ahrens 	if (dsl_dir_is_clone(ds->ds_dir) && DS_IS_DEFER_DESTROY(ds->ds_prev) &&
6213b2aab18SMatthew Ahrens 	    ds->ds_prev->ds_phys->ds_num_children == 2 &&
6223b2aab18SMatthew Ahrens 	    ds->ds_prev->ds_userrefs == 0) {
6233b2aab18SMatthew Ahrens 		/* We need to remove the origin snapshot as well. */
6243b2aab18SMatthew Ahrens 		if (!refcount_is_zero(&ds->ds_prev->ds_longholds))
625be6fd75aSMatthew Ahrens 			return (SET_ERROR(EBUSY));
6263b2aab18SMatthew Ahrens 	}
6273b2aab18SMatthew Ahrens 	return (0);
6283b2aab18SMatthew Ahrens }
6293b2aab18SMatthew Ahrens 
6303b2aab18SMatthew Ahrens static int
6313b2aab18SMatthew Ahrens dsl_destroy_head_check(void *arg, dmu_tx_t *tx)
6323b2aab18SMatthew Ahrens {
6333b2aab18SMatthew Ahrens 	dsl_destroy_head_arg_t *ddha = arg;
6343b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
6353b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
6363b2aab18SMatthew Ahrens 	int error;
6373b2aab18SMatthew Ahrens 
6383b2aab18SMatthew Ahrens 	error = dsl_dataset_hold(dp, ddha->ddha_name, FTAG, &ds);
6393b2aab18SMatthew Ahrens 	if (error != 0)
6403b2aab18SMatthew Ahrens 		return (error);
6413b2aab18SMatthew Ahrens 
6423b2aab18SMatthew Ahrens 	error = dsl_destroy_head_check_impl(ds, 0);
6433b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
6443b2aab18SMatthew Ahrens 	return (error);
6453b2aab18SMatthew Ahrens }
6463b2aab18SMatthew Ahrens 
6473b2aab18SMatthew Ahrens static void
6483b2aab18SMatthew Ahrens dsl_dir_destroy_sync(uint64_t ddobj, dmu_tx_t *tx)
6493b2aab18SMatthew Ahrens {
6503b2aab18SMatthew Ahrens 	dsl_dir_t *dd;
6513b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
6523b2aab18SMatthew Ahrens 	objset_t *mos = dp->dp_meta_objset;
6533b2aab18SMatthew Ahrens 	dd_used_t t;
6543b2aab18SMatthew Ahrens 
6553b2aab18SMatthew Ahrens 	ASSERT(RRW_WRITE_HELD(&dmu_tx_pool(tx)->dp_config_rwlock));
6563b2aab18SMatthew Ahrens 
6573b2aab18SMatthew Ahrens 	VERIFY0(dsl_dir_hold_obj(dp, ddobj, NULL, FTAG, &dd));
6583b2aab18SMatthew Ahrens 
6593b2aab18SMatthew Ahrens 	ASSERT0(dd->dd_phys->dd_head_dataset_obj);
6603b2aab18SMatthew Ahrens 
661a2afb611SJerry Jelinek 	/*
662a2afb611SJerry Jelinek 	 * Decrement the filesystem count for all parent filesystems.
663a2afb611SJerry Jelinek 	 *
664a2afb611SJerry Jelinek 	 * When we receive an incremental stream into a filesystem that already
665a2afb611SJerry Jelinek 	 * exists, a temporary clone is created.  We never count this temporary
666a2afb611SJerry Jelinek 	 * clone, whose name begins with a '%'.
667a2afb611SJerry Jelinek 	 */
668a2afb611SJerry Jelinek 	if (dd->dd_myname[0] != '%' && dd->dd_parent != NULL)
669a2afb611SJerry Jelinek 		dsl_fs_ss_count_adjust(dd->dd_parent, -1,
670a2afb611SJerry Jelinek 		    DD_FIELD_FILESYSTEM_COUNT, tx);
671a2afb611SJerry Jelinek 
6723b2aab18SMatthew Ahrens 	/*
6733b2aab18SMatthew Ahrens 	 * Remove our reservation. The impl() routine avoids setting the
6743b2aab18SMatthew Ahrens 	 * actual property, which would require the (already destroyed) ds.
6753b2aab18SMatthew Ahrens 	 */
6763b2aab18SMatthew Ahrens 	dsl_dir_set_reservation_sync_impl(dd, 0, tx);
6773b2aab18SMatthew Ahrens 
6783b2aab18SMatthew Ahrens 	ASSERT0(dd->dd_phys->dd_used_bytes);
6793b2aab18SMatthew Ahrens 	ASSERT0(dd->dd_phys->dd_reserved);
6803b2aab18SMatthew Ahrens 	for (t = 0; t < DD_USED_NUM; t++)
6813b2aab18SMatthew Ahrens 		ASSERT0(dd->dd_phys->dd_used_breakdown[t]);
6823b2aab18SMatthew Ahrens 
6833b2aab18SMatthew Ahrens 	VERIFY0(zap_destroy(mos, dd->dd_phys->dd_child_dir_zapobj, tx));
6843b2aab18SMatthew Ahrens 	VERIFY0(zap_destroy(mos, dd->dd_phys->dd_props_zapobj, tx));
6853b2aab18SMatthew Ahrens 	VERIFY0(dsl_deleg_destroy(mos, dd->dd_phys->dd_deleg_zapobj, tx));
6863b2aab18SMatthew Ahrens 	VERIFY0(zap_remove(mos,
6873b2aab18SMatthew Ahrens 	    dd->dd_parent->dd_phys->dd_child_dir_zapobj, dd->dd_myname, tx));
6883b2aab18SMatthew Ahrens 
6893b2aab18SMatthew Ahrens 	dsl_dir_rele(dd, FTAG);
6902acef22dSMatthew Ahrens 	dmu_object_free_zapified(mos, ddobj, tx);
6913b2aab18SMatthew Ahrens }
6923b2aab18SMatthew Ahrens 
6933b2aab18SMatthew Ahrens void
6943b2aab18SMatthew Ahrens dsl_destroy_head_sync_impl(dsl_dataset_t *ds, dmu_tx_t *tx)
6953b2aab18SMatthew Ahrens {
6963b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
6973b2aab18SMatthew Ahrens 	objset_t *mos = dp->dp_meta_objset;
6983b2aab18SMatthew Ahrens 	uint64_t obj, ddobj, prevobj = 0;
6993b2aab18SMatthew Ahrens 	boolean_t rmorigin;
7003b2aab18SMatthew Ahrens 
7013b2aab18SMatthew Ahrens 	ASSERT3U(ds->ds_phys->ds_num_children, <=, 1);
7023b2aab18SMatthew Ahrens 	ASSERT(ds->ds_prev == NULL ||
7033b2aab18SMatthew Ahrens 	    ds->ds_prev->ds_phys->ds_next_snap_obj != ds->ds_object);
7043b2aab18SMatthew Ahrens 	ASSERT3U(ds->ds_phys->ds_bp.blk_birth, <=, tx->tx_txg);
7053b2aab18SMatthew Ahrens 	ASSERT(RRW_WRITE_HELD(&dp->dp_config_rwlock));
7063b2aab18SMatthew Ahrens 
7073b2aab18SMatthew Ahrens 	/* We need to log before removing it from the namespace. */
7083b2aab18SMatthew Ahrens 	spa_history_log_internal_ds(ds, "destroy", tx, "");
7093b2aab18SMatthew Ahrens 
7103b2aab18SMatthew Ahrens 	rmorigin = (dsl_dir_is_clone(ds->ds_dir) &&
7113b2aab18SMatthew Ahrens 	    DS_IS_DEFER_DESTROY(ds->ds_prev) &&
7123b2aab18SMatthew Ahrens 	    ds->ds_prev->ds_phys->ds_num_children == 2 &&
7133b2aab18SMatthew Ahrens 	    ds->ds_prev->ds_userrefs == 0);
7143b2aab18SMatthew Ahrens 
7155d7b4d43SMatthew Ahrens 	/* Remove our reservation. */
7163b2aab18SMatthew Ahrens 	if (ds->ds_reserved != 0) {
7173b2aab18SMatthew Ahrens 		dsl_dataset_set_refreservation_sync_impl(ds,
7183b2aab18SMatthew Ahrens 		    (ZPROP_SRC_NONE | ZPROP_SRC_LOCAL | ZPROP_SRC_RECEIVED),
7193b2aab18SMatthew Ahrens 		    0, tx);
7203b2aab18SMatthew Ahrens 		ASSERT0(ds->ds_reserved);
7213b2aab18SMatthew Ahrens 	}
7223b2aab18SMatthew Ahrens 
7233b2aab18SMatthew Ahrens 	dsl_scan_ds_destroyed(ds, tx);
7243b2aab18SMatthew Ahrens 
7253b2aab18SMatthew Ahrens 	obj = ds->ds_object;
7263b2aab18SMatthew Ahrens 
7273b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_prev_snap_obj != 0) {
7283b2aab18SMatthew Ahrens 		/* This is a clone */
7293b2aab18SMatthew Ahrens 		ASSERT(ds->ds_prev != NULL);
7303b2aab18SMatthew Ahrens 		ASSERT3U(ds->ds_prev->ds_phys->ds_next_snap_obj, !=, obj);
7313b2aab18SMatthew Ahrens 		ASSERT0(ds->ds_phys->ds_next_snap_obj);
7323b2aab18SMatthew Ahrens 
7333b2aab18SMatthew Ahrens 		dmu_buf_will_dirty(ds->ds_prev->ds_dbuf, tx);
7343b2aab18SMatthew Ahrens 		if (ds->ds_prev->ds_phys->ds_next_clones_obj != 0) {
7353b2aab18SMatthew Ahrens 			dsl_dataset_remove_from_next_clones(ds->ds_prev,
7363b2aab18SMatthew Ahrens 			    obj, tx);
7373b2aab18SMatthew Ahrens 		}
7383b2aab18SMatthew Ahrens 
7393b2aab18SMatthew Ahrens 		ASSERT3U(ds->ds_prev->ds_phys->ds_num_children, >, 1);
7403b2aab18SMatthew Ahrens 		ds->ds_prev->ds_phys->ds_num_children--;
7413b2aab18SMatthew Ahrens 	}
7423b2aab18SMatthew Ahrens 
7433b2aab18SMatthew Ahrens 	/*
7443b2aab18SMatthew Ahrens 	 * Destroy the deadlist.  Unless it's a clone, the
7453b2aab18SMatthew Ahrens 	 * deadlist should be empty.  (If it's a clone, it's
7463b2aab18SMatthew Ahrens 	 * safe to ignore the deadlist contents.)
7473b2aab18SMatthew Ahrens 	 */
7483b2aab18SMatthew Ahrens 	dsl_deadlist_close(&ds->ds_deadlist);
7493b2aab18SMatthew Ahrens 	dsl_deadlist_free(mos, ds->ds_phys->ds_deadlist_obj, tx);
7503b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
7513b2aab18SMatthew Ahrens 	ds->ds_phys->ds_deadlist_obj = 0;
7523b2aab18SMatthew Ahrens 
7532acef22dSMatthew Ahrens 	objset_t *os;
7543b2aab18SMatthew Ahrens 	VERIFY0(dmu_objset_from_ds(ds, &os));
7553b2aab18SMatthew Ahrens 
7562acef22dSMatthew Ahrens 	if (!spa_feature_is_enabled(dp->dp_spa, SPA_FEATURE_ASYNC_DESTROY)) {
7573b2aab18SMatthew Ahrens 		old_synchronous_dataset_destroy(ds, tx);
7583b2aab18SMatthew Ahrens 	} else {
7593b2aab18SMatthew Ahrens 		/*
7603b2aab18SMatthew Ahrens 		 * Move the bptree into the pool's list of trees to
7613b2aab18SMatthew Ahrens 		 * clean up and update space accounting information.
7623b2aab18SMatthew Ahrens 		 */
7633b2aab18SMatthew Ahrens 		uint64_t used, comp, uncomp;
7643b2aab18SMatthew Ahrens 
7653b2aab18SMatthew Ahrens 		zil_destroy_sync(dmu_objset_zil(os), tx);
7663b2aab18SMatthew Ahrens 
7672acef22dSMatthew Ahrens 		if (!spa_feature_is_active(dp->dp_spa,
7682acef22dSMatthew Ahrens 		    SPA_FEATURE_ASYNC_DESTROY)) {
7694a923759SGeorge Wilson 			dsl_scan_t *scn = dp->dp_scan;
7702acef22dSMatthew Ahrens 			spa_feature_incr(dp->dp_spa, SPA_FEATURE_ASYNC_DESTROY,
7712acef22dSMatthew Ahrens 			    tx);
7723b2aab18SMatthew Ahrens 			dp->dp_bptree_obj = bptree_alloc(mos, tx);
7733b2aab18SMatthew Ahrens 			VERIFY0(zap_add(mos,
7743b2aab18SMatthew Ahrens 			    DMU_POOL_DIRECTORY_OBJECT,
7753b2aab18SMatthew Ahrens 			    DMU_POOL_BPTREE_OBJ, sizeof (uint64_t), 1,
7763b2aab18SMatthew Ahrens 			    &dp->dp_bptree_obj, tx));
7774a923759SGeorge Wilson 			ASSERT(!scn->scn_async_destroying);
7784a923759SGeorge Wilson 			scn->scn_async_destroying = B_TRUE;
7793b2aab18SMatthew Ahrens 		}
7803b2aab18SMatthew Ahrens 
7813b2aab18SMatthew Ahrens 		used = ds->ds_dir->dd_phys->dd_used_bytes;
7823b2aab18SMatthew Ahrens 		comp = ds->ds_dir->dd_phys->dd_compressed_bytes;
7833b2aab18SMatthew Ahrens 		uncomp = ds->ds_dir->dd_phys->dd_uncompressed_bytes;
7843b2aab18SMatthew Ahrens 
7853b2aab18SMatthew Ahrens 		ASSERT(!DS_UNIQUE_IS_ACCURATE(ds) ||
7863b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_unique_bytes == used);
7873b2aab18SMatthew Ahrens 
7883b2aab18SMatthew Ahrens 		bptree_add(mos, dp->dp_bptree_obj,
7893b2aab18SMatthew Ahrens 		    &ds->ds_phys->ds_bp, ds->ds_phys->ds_prev_snap_txg,
7903b2aab18SMatthew Ahrens 		    used, comp, uncomp, tx);
7913b2aab18SMatthew Ahrens 		dsl_dir_diduse_space(ds->ds_dir, DD_USED_HEAD,
7923b2aab18SMatthew Ahrens 		    -used, -comp, -uncomp, tx);
7933b2aab18SMatthew Ahrens 		dsl_dir_diduse_space(dp->dp_free_dir, DD_USED_HEAD,
7943b2aab18SMatthew Ahrens 		    used, comp, uncomp, tx);
7953b2aab18SMatthew Ahrens 	}
7963b2aab18SMatthew Ahrens 
7973b2aab18SMatthew Ahrens 	if (ds->ds_prev != NULL) {
7983b2aab18SMatthew Ahrens 		if (spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
7993b2aab18SMatthew Ahrens 			VERIFY0(zap_remove_int(mos,
8003b2aab18SMatthew Ahrens 			    ds->ds_prev->ds_dir->dd_phys->dd_clones,
8013b2aab18SMatthew Ahrens 			    ds->ds_object, tx));
8023b2aab18SMatthew Ahrens 		}
8033b2aab18SMatthew Ahrens 		prevobj = ds->ds_prev->ds_object;
8043b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds->ds_prev, ds);
8053b2aab18SMatthew Ahrens 		ds->ds_prev = NULL;
8063b2aab18SMatthew Ahrens 	}
8073b2aab18SMatthew Ahrens 
8083b2aab18SMatthew Ahrens 	/*
8093b2aab18SMatthew Ahrens 	 * This must be done after the dsl_traverse(), because it will
8103b2aab18SMatthew Ahrens 	 * re-open the objset.
8113b2aab18SMatthew Ahrens 	 */
8123b2aab18SMatthew Ahrens 	if (ds->ds_objset) {
8133b2aab18SMatthew Ahrens 		dmu_objset_evict(ds->ds_objset);
8143b2aab18SMatthew Ahrens 		ds->ds_objset = NULL;
8153b2aab18SMatthew Ahrens 	}
8163b2aab18SMatthew Ahrens 
8173b2aab18SMatthew Ahrens 	/* Erase the link in the dir */
8183b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(ds->ds_dir->dd_dbuf, tx);
8193b2aab18SMatthew Ahrens 	ds->ds_dir->dd_phys->dd_head_dataset_obj = 0;
8203b2aab18SMatthew Ahrens 	ddobj = ds->ds_dir->dd_object;
8213b2aab18SMatthew Ahrens 	ASSERT(ds->ds_phys->ds_snapnames_zapobj != 0);
8223b2aab18SMatthew Ahrens 	VERIFY0(zap_destroy(mos, ds->ds_phys->ds_snapnames_zapobj, tx));
8233b2aab18SMatthew Ahrens 
82478f17100SMatthew Ahrens 	if (ds->ds_bookmarks != 0) {
82578f17100SMatthew Ahrens 		VERIFY0(zap_destroy(mos,
82678f17100SMatthew Ahrens 		    ds->ds_bookmarks, tx));
82778f17100SMatthew Ahrens 		spa_feature_decr(dp->dp_spa, SPA_FEATURE_BOOKMARKS, tx);
82878f17100SMatthew Ahrens 	}
82978f17100SMatthew Ahrens 
8303b2aab18SMatthew Ahrens 	spa_prop_clear_bootfs(dp->dp_spa, ds->ds_object, tx);
8313b2aab18SMatthew Ahrens 
8323b2aab18SMatthew Ahrens 	ASSERT0(ds->ds_phys->ds_next_clones_obj);
8333b2aab18SMatthew Ahrens 	ASSERT0(ds->ds_phys->ds_props_obj);
8343b2aab18SMatthew Ahrens 	ASSERT0(ds->ds_phys->ds_userrefs_obj);
8353b2aab18SMatthew Ahrens 	dsl_dir_rele(ds->ds_dir, ds);
8363b2aab18SMatthew Ahrens 	ds->ds_dir = NULL;
8372acef22dSMatthew Ahrens 	dmu_object_free_zapified(mos, obj, tx);
8383b2aab18SMatthew Ahrens 
8393b2aab18SMatthew Ahrens 	dsl_dir_destroy_sync(ddobj, tx);
8403b2aab18SMatthew Ahrens 
8413b2aab18SMatthew Ahrens 	if (rmorigin) {
8423b2aab18SMatthew Ahrens 		dsl_dataset_t *prev;
8433b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(dp, prevobj, FTAG, &prev));
8443b2aab18SMatthew Ahrens 		dsl_destroy_snapshot_sync_impl(prev, B_FALSE, tx);
8453b2aab18SMatthew Ahrens 		dsl_dataset_rele(prev, FTAG);
8463b2aab18SMatthew Ahrens 	}
8473b2aab18SMatthew Ahrens }
8483b2aab18SMatthew Ahrens 
8493b2aab18SMatthew Ahrens static void
8503b2aab18SMatthew Ahrens dsl_destroy_head_sync(void *arg, dmu_tx_t *tx)
8513b2aab18SMatthew Ahrens {
8523b2aab18SMatthew Ahrens 	dsl_destroy_head_arg_t *ddha = arg;
8533b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
8543b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
8553b2aab18SMatthew Ahrens 
8563b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold(dp, ddha->ddha_name, FTAG, &ds));
8573b2aab18SMatthew Ahrens 	dsl_destroy_head_sync_impl(ds, tx);
8583b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
8593b2aab18SMatthew Ahrens }
8603b2aab18SMatthew Ahrens 
8613b2aab18SMatthew Ahrens static void
8623b2aab18SMatthew Ahrens dsl_destroy_head_begin_sync(void *arg, dmu_tx_t *tx)
8633b2aab18SMatthew Ahrens {
8643b2aab18SMatthew Ahrens 	dsl_destroy_head_arg_t *ddha = arg;
8653b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
8663b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
8673b2aab18SMatthew Ahrens 
8683b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold(dp, ddha->ddha_name, FTAG, &ds));
8693b2aab18SMatthew Ahrens 
8703b2aab18SMatthew Ahrens 	/* Mark it as inconsistent on-disk, in case we crash */
8713b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
8723b2aab18SMatthew Ahrens 	ds->ds_phys->ds_flags |= DS_FLAG_INCONSISTENT;
8733b2aab18SMatthew Ahrens 
8743b2aab18SMatthew Ahrens 	spa_history_log_internal_ds(ds, "destroy begin", tx, "");
8753b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
8763b2aab18SMatthew Ahrens }
8773b2aab18SMatthew Ahrens 
8783b2aab18SMatthew Ahrens int
8793b2aab18SMatthew Ahrens dsl_destroy_head(const char *name)
8803b2aab18SMatthew Ahrens {
8813b2aab18SMatthew Ahrens 	dsl_destroy_head_arg_t ddha;
8823b2aab18SMatthew Ahrens 	int error;
8833b2aab18SMatthew Ahrens 	spa_t *spa;
8843b2aab18SMatthew Ahrens 	boolean_t isenabled;
8853b2aab18SMatthew Ahrens 
8863b2aab18SMatthew Ahrens #ifdef _KERNEL
8873b2aab18SMatthew Ahrens 	zfs_destroy_unmount_origin(name);
8883b2aab18SMatthew Ahrens #endif
8893b2aab18SMatthew Ahrens 
8903b2aab18SMatthew Ahrens 	error = spa_open(name, &spa, FTAG);
8913b2aab18SMatthew Ahrens 	if (error != 0)
8923b2aab18SMatthew Ahrens 		return (error);
8932acef22dSMatthew Ahrens 	isenabled = spa_feature_is_enabled(spa, SPA_FEATURE_ASYNC_DESTROY);
8943b2aab18SMatthew Ahrens 	spa_close(spa, FTAG);
8953b2aab18SMatthew Ahrens 
8963b2aab18SMatthew Ahrens 	ddha.ddha_name = name;
8973b2aab18SMatthew Ahrens 
8983b2aab18SMatthew Ahrens 	if (!isenabled) {
8993b2aab18SMatthew Ahrens 		objset_t *os;
9003b2aab18SMatthew Ahrens 
9013b2aab18SMatthew Ahrens 		error = dsl_sync_task(name, dsl_destroy_head_check,
902*7d46dc6cSMatthew Ahrens 		    dsl_destroy_head_begin_sync, &ddha,
903*7d46dc6cSMatthew Ahrens 		    0, ZFS_SPACE_CHECK_NONE);
9043b2aab18SMatthew Ahrens 		if (error != 0)
9053b2aab18SMatthew Ahrens 			return (error);
9063b2aab18SMatthew Ahrens 
9073b2aab18SMatthew Ahrens 		/*
9083b2aab18SMatthew Ahrens 		 * Head deletion is processed in one txg on old pools;
9093b2aab18SMatthew Ahrens 		 * remove the objects from open context so that the txg sync
9103b2aab18SMatthew Ahrens 		 * is not too long.
9113b2aab18SMatthew Ahrens 		 */
9123b2aab18SMatthew Ahrens 		error = dmu_objset_own(name, DMU_OST_ANY, B_FALSE, FTAG, &os);
9133b2aab18SMatthew Ahrens 		if (error == 0) {
9143b2aab18SMatthew Ahrens 			uint64_t prev_snap_txg =
9153b2aab18SMatthew Ahrens 			    dmu_objset_ds(os)->ds_phys->ds_prev_snap_txg;
9163b2aab18SMatthew Ahrens 			for (uint64_t obj = 0; error == 0;
9173b2aab18SMatthew Ahrens 			    error = dmu_object_next(os, &obj, FALSE,
9183b2aab18SMatthew Ahrens 			    prev_snap_txg))
919713d6c20SMatthew Ahrens 				(void) dmu_free_long_object(os, obj);
9203b2aab18SMatthew Ahrens 			/* sync out all frees */
9213b2aab18SMatthew Ahrens 			txg_wait_synced(dmu_objset_pool(os), 0);
9223b2aab18SMatthew Ahrens 			dmu_objset_disown(os, FTAG);
9233b2aab18SMatthew Ahrens 		}
9243b2aab18SMatthew Ahrens 	}
9253b2aab18SMatthew Ahrens 
9263b2aab18SMatthew Ahrens 	return (dsl_sync_task(name, dsl_destroy_head_check,
927*7d46dc6cSMatthew Ahrens 	    dsl_destroy_head_sync, &ddha, 0, ZFS_SPACE_CHECK_NONE));
9283b2aab18SMatthew Ahrens }
9293b2aab18SMatthew Ahrens 
9303b2aab18SMatthew Ahrens /*
9313b2aab18SMatthew Ahrens  * Note, this function is used as the callback for dmu_objset_find().  We
9323b2aab18SMatthew Ahrens  * always return 0 so that we will continue to find and process
9333b2aab18SMatthew Ahrens  * inconsistent datasets, even if we encounter an error trying to
9343b2aab18SMatthew Ahrens  * process one of them.
9353b2aab18SMatthew Ahrens  */
9363b2aab18SMatthew Ahrens /* ARGSUSED */
9373b2aab18SMatthew Ahrens int
9383b2aab18SMatthew Ahrens dsl_destroy_inconsistent(const char *dsname, void *arg)
9393b2aab18SMatthew Ahrens {
9403b2aab18SMatthew Ahrens 	objset_t *os;
9413b2aab18SMatthew Ahrens 
9423b2aab18SMatthew Ahrens 	if (dmu_objset_hold(dsname, FTAG, &os) == 0) {
9433b2aab18SMatthew Ahrens 		boolean_t inconsistent = DS_IS_INCONSISTENT(dmu_objset_ds(os));
9443b2aab18SMatthew Ahrens 		dmu_objset_rele(os, FTAG);
9453b2aab18SMatthew Ahrens 		if (inconsistent)
9463b2aab18SMatthew Ahrens 			(void) dsl_destroy_head(dsname);
9473b2aab18SMatthew Ahrens 	}
9483b2aab18SMatthew Ahrens 	return (0);
9493b2aab18SMatthew Ahrens }
950