1fa9e4066Sahrens /*
2fa9e4066Sahrens  * CDDL HEADER START
3fa9e4066Sahrens  *
4fa9e4066Sahrens  * The contents of this file are subject to the terms of the
5ea8dc4b6Seschrock  * Common Development and Distribution License (the "License").
6ea8dc4b6Seschrock  * You may not use this file except in compliance with the License.
7fa9e4066Sahrens  *
8fa9e4066Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9fa9e4066Sahrens  * or http://www.opensolaris.org/os/licensing.
10fa9e4066Sahrens  * See the License for the specific language governing permissions
11fa9e4066Sahrens  * and limitations under the License.
12fa9e4066Sahrens  *
13fa9e4066Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
14fa9e4066Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15fa9e4066Sahrens  * If applicable, add the following below this CDDL HEADER, with the
16fa9e4066Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
17fa9e4066Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
18fa9e4066Sahrens  *
19fa9e4066Sahrens  * CDDL HEADER END
20fa9e4066Sahrens  */
21fa9e4066Sahrens /*
225afc78aaSChris Kirby  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
2342fcb65eSMatthew Ahrens  * Copyright (c) 2011, 2014 by Delphix. All rights reserved.
24a2afb611SJerry Jelinek  * Copyright (c) 2014, Joyent, Inc. All rights reserved.
2503d1795fSAlexander Stetsenko  * Copyright (c) 2014 RackTop Systems.
26bc9014e6SJustin Gibbs  * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
27fa9e4066Sahrens  */
28fa9e4066Sahrens 
29fa9e4066Sahrens #include <sys/dmu_objset.h>
30fa9e4066Sahrens #include <sys/dsl_dataset.h>
31fa9e4066Sahrens #include <sys/dsl_dir.h>
3299653d4eSeschrock #include <sys/dsl_prop.h>
331d452cf5Sahrens #include <sys/dsl_synctask.h>
34fa9e4066Sahrens #include <sys/dmu_traverse.h>
354e3c9f44SBill Pijewski #include <sys/dmu_impl.h>
36fa9e4066Sahrens #include <sys/dmu_tx.h>
37fa9e4066Sahrens #include <sys/arc.h>
38fa9e4066Sahrens #include <sys/zio.h>
39fa9e4066Sahrens #include <sys/zap.h>
40ad135b5dSChristopher Siden #include <sys/zfeature.h>
41fa9e4066Sahrens #include <sys/unique.h>
42fa9e4066Sahrens #include <sys/zfs_context.h>
43cdf5b4caSmmusante #include <sys/zfs_ioctl.h>
44ecd6cf80Smarks #include <sys/spa.h>
45088f3894Sahrens #include <sys/zfs_znode.h>
46c99e4bdcSChris Kirby #include <sys/zfs_onexit.h>
47842727c2SChris Kirby #include <sys/zvol.h>
483f9d6ad7SLin Ling #include <sys/dsl_scan.h>
49cde58dbcSMatthew Ahrens #include <sys/dsl_deadlist.h>
503b2aab18SMatthew Ahrens #include <sys/dsl_destroy.h>
513b2aab18SMatthew Ahrens #include <sys/dsl_userhold.h>
5278f17100SMatthew Ahrens #include <sys/dsl_bookmark.h>
53e1930233Sbonwick 
54b5152584SMatthew Ahrens /*
55b5152584SMatthew Ahrens  * The SPA supports block sizes up to 16MB.  However, very large blocks
56b5152584SMatthew Ahrens  * can have an impact on i/o latency (e.g. tying up a spinning disk for
57b5152584SMatthew Ahrens  * ~300ms), and also potentially on the memory allocator.  Therefore,
58b5152584SMatthew Ahrens  * we do not allow the recordsize to be set larger than zfs_max_recordsize
59b5152584SMatthew Ahrens  * (default 1MB).  Larger blocks can be created by changing this tunable,
60b5152584SMatthew Ahrens  * and pools with larger blocks can always be imported and used, regardless
61b5152584SMatthew Ahrens  * of this setting.
62b5152584SMatthew Ahrens  */
63b5152584SMatthew Ahrens int zfs_max_recordsize = 1 * 1024 * 1024;
64b5152584SMatthew Ahrens 
65cde58dbcSMatthew Ahrens #define	SWITCH64(x, y) \
66cde58dbcSMatthew Ahrens 	{ \
67cde58dbcSMatthew Ahrens 		uint64_t __tmp = (x); \
68cde58dbcSMatthew Ahrens 		(x) = (y); \
69cde58dbcSMatthew Ahrens 		(y) = __tmp; \
70cde58dbcSMatthew Ahrens 	}
71cde58dbcSMatthew Ahrens 
7255434c77Sek #define	DS_REF_MAX	(1ULL << 62)
73fa9e4066Sahrens 
74c1379625SJustin T. Gibbs extern inline dsl_dataset_phys_t *dsl_dataset_phys(dsl_dataset_t *ds);
75c1379625SJustin T. Gibbs 
76a9799022Sck /*
77a9799022Sck  * Figure out how much of this delta should be propogated to the dsl_dir
78a9799022Sck  * layer.  If there's a refreservation, that space has already been
79a9799022Sck  * partially accounted for in our ancestors.
80a9799022Sck  */
81a9799022Sck static int64_t
82a9799022Sck parent_delta(dsl_dataset_t *ds, int64_t delta)
83a9799022Sck {
84c1379625SJustin T. Gibbs 	dsl_dataset_phys_t *ds_phys;
85a9799022Sck 	uint64_t old_bytes, new_bytes;
86a9799022Sck 
87a9799022Sck 	if (ds->ds_reserved == 0)
88a9799022Sck 		return (delta);
89a9799022Sck 
90c1379625SJustin T. Gibbs 	ds_phys = dsl_dataset_phys(ds);
91c1379625SJustin T. Gibbs 	old_bytes = MAX(ds_phys->ds_unique_bytes, ds->ds_reserved);
92c1379625SJustin T. Gibbs 	new_bytes = MAX(ds_phys->ds_unique_bytes + delta, ds->ds_reserved);
93a9799022Sck 
94a9799022Sck 	ASSERT3U(ABS((int64_t)(new_bytes - old_bytes)), <=, ABS(delta));
95a9799022Sck 	return (new_bytes - old_bytes);
96a9799022Sck }
97fa9e4066Sahrens 
98fa9e4066Sahrens void
99b24ab676SJeff Bonwick dsl_dataset_block_born(dsl_dataset_t *ds, const blkptr_t *bp, dmu_tx_t *tx)
100fa9e4066Sahrens {
101b24ab676SJeff Bonwick 	int used = bp_get_dsize_sync(tx->tx_pool->dp_spa, bp);
102fa9e4066Sahrens 	int compressed = BP_GET_PSIZE(bp);
103fa9e4066Sahrens 	int uncompressed = BP_GET_UCSIZE(bp);
104a9799022Sck 	int64_t delta;
105fa9e4066Sahrens 
1063f9d6ad7SLin Ling 	dprintf_bp(bp, "ds=%p", ds);
107fa9e4066Sahrens 
108fa9e4066Sahrens 	ASSERT(dmu_tx_is_syncing(tx));
109fa9e4066Sahrens 	/* It could have been compressed away to nothing */
110fa9e4066Sahrens 	if (BP_IS_HOLE(bp))
111fa9e4066Sahrens 		return;
112fa9e4066Sahrens 	ASSERT(BP_GET_TYPE(bp) != DMU_OT_NONE);
113ad135b5dSChristopher Siden 	ASSERT(DMU_OT_IS_VALID(BP_GET_TYPE(bp)));
114fa9e4066Sahrens 	if (ds == NULL) {
115ce636f8bSMatthew Ahrens 		dsl_pool_mos_diduse_space(tx->tx_pool,
116ce636f8bSMatthew Ahrens 		    used, compressed, uncompressed);
117fa9e4066Sahrens 		return;
118fa9e4066Sahrens 	}
1193f9d6ad7SLin Ling 
120b62969f8SMatthew Ahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
121fa9e4066Sahrens 	mutex_enter(&ds->ds_lock);
122a9799022Sck 	delta = parent_delta(ds, used);
123c1379625SJustin T. Gibbs 	dsl_dataset_phys(ds)->ds_referenced_bytes += used;
124c1379625SJustin T. Gibbs 	dsl_dataset_phys(ds)->ds_compressed_bytes += compressed;
125c1379625SJustin T. Gibbs 	dsl_dataset_phys(ds)->ds_uncompressed_bytes += uncompressed;
126c1379625SJustin T. Gibbs 	dsl_dataset_phys(ds)->ds_unique_bytes += used;
127b5152584SMatthew Ahrens 	if (BP_GET_LSIZE(bp) > SPA_OLD_MAXBLOCKSIZE)
128b5152584SMatthew Ahrens 		ds->ds_need_large_blocks = B_TRUE;
129fa9e4066Sahrens 	mutex_exit(&ds->ds_lock);
13074e7dc98SMatthew Ahrens 	dsl_dir_diduse_space(ds->ds_dir, DD_USED_HEAD, delta,
13174e7dc98SMatthew Ahrens 	    compressed, uncompressed, tx);
13274e7dc98SMatthew Ahrens 	dsl_dir_transfer_space(ds->ds_dir, used - delta,
13374e7dc98SMatthew Ahrens 	    DD_USED_REFRSRV, DD_USED_HEAD, tx);
134fa9e4066Sahrens }
135fa9e4066Sahrens 
136cdb0ab79Smaybee int
137b24ab676SJeff Bonwick dsl_dataset_block_kill(dsl_dataset_t *ds, const blkptr_t *bp, dmu_tx_t *tx,
138b24ab676SJeff Bonwick     boolean_t async)
139fa9e4066Sahrens {
14043466aaeSMax Grossman 	int used = bp_get_dsize_sync(tx->tx_pool->dp_spa, bp);
14143466aaeSMax Grossman 	int compressed = BP_GET_PSIZE(bp);
14243466aaeSMax Grossman 	int uncompressed = BP_GET_UCSIZE(bp);
14343466aaeSMax Grossman 
144fa9e4066Sahrens 	if (BP_IS_HOLE(bp))
145cdb0ab79Smaybee 		return (0);
146fa9e4066Sahrens 
147b24ab676SJeff Bonwick 	ASSERT(dmu_tx_is_syncing(tx));
148b24ab676SJeff Bonwick 	ASSERT(bp->blk_birth <= tx->tx_txg);
149b24ab676SJeff Bonwick 
150fa9e4066Sahrens 	if (ds == NULL) {
151b24ab676SJeff Bonwick 		dsl_free(tx->tx_pool, tx->tx_txg, bp);
152ce636f8bSMatthew Ahrens 		dsl_pool_mos_diduse_space(tx->tx_pool,
153ce636f8bSMatthew Ahrens 		    -used, -compressed, -uncompressed);
154cdb0ab79Smaybee 		return (used);
155fa9e4066Sahrens 	}
156fa9e4066Sahrens 	ASSERT3P(tx->tx_pool, ==, ds->ds_dir->dd_pool);
157fa9e4066Sahrens 
158bc9014e6SJustin Gibbs 	ASSERT(!ds->ds_is_snapshot);
159fa9e4066Sahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
160fa9e4066Sahrens 
161c1379625SJustin T. Gibbs 	if (bp->blk_birth > dsl_dataset_phys(ds)->ds_prev_snap_txg) {
162a9799022Sck 		int64_t delta;
163c717a561Smaybee 
1643f9d6ad7SLin Ling 		dprintf_bp(bp, "freeing ds=%llu", ds->ds_object);
165b24ab676SJeff Bonwick 		dsl_free(tx->tx_pool, tx->tx_txg, bp);
166fa9e4066Sahrens 
167fa9e4066Sahrens 		mutex_enter(&ds->ds_lock);
168c1379625SJustin T. Gibbs 		ASSERT(dsl_dataset_phys(ds)->ds_unique_bytes >= used ||
169a9799022Sck 		    !DS_UNIQUE_IS_ACCURATE(ds));
170a9799022Sck 		delta = parent_delta(ds, -used);
171c1379625SJustin T. Gibbs 		dsl_dataset_phys(ds)->ds_unique_bytes -= used;
172fa9e4066Sahrens 		mutex_exit(&ds->ds_lock);
17374e7dc98SMatthew Ahrens 		dsl_dir_diduse_space(ds->ds_dir, DD_USED_HEAD,
174a9799022Sck 		    delta, -compressed, -uncompressed, tx);
17574e7dc98SMatthew Ahrens 		dsl_dir_transfer_space(ds->ds_dir, -used - delta,
17674e7dc98SMatthew Ahrens 		    DD_USED_REFRSRV, DD_USED_HEAD, tx);
177fa9e4066Sahrens 	} else {
178fa9e4066Sahrens 		dprintf_bp(bp, "putting on dead list: %s", "");
179b24ab676SJeff Bonwick 		if (async) {
180b24ab676SJeff Bonwick 			/*
181b24ab676SJeff Bonwick 			 * We are here as part of zio's write done callback,
182b24ab676SJeff Bonwick 			 * which means we're a zio interrupt thread.  We can't
183cde58dbcSMatthew Ahrens 			 * call dsl_deadlist_insert() now because it may block
184b24ab676SJeff Bonwick 			 * waiting for I/O.  Instead, put bp on the deferred
185b24ab676SJeff Bonwick 			 * queue and let dsl_pool_sync() finish the job.
186b24ab676SJeff Bonwick 			 */
187cde58dbcSMatthew Ahrens 			bplist_append(&ds->ds_pending_deadlist, bp);
188b24ab676SJeff Bonwick 		} else {
189cde58dbcSMatthew Ahrens 			dsl_deadlist_insert(&ds->ds_deadlist, bp, tx);
190b24ab676SJeff Bonwick 		}
191a4611edeSahrens 		ASSERT3U(ds->ds_prev->ds_object, ==,
192c1379625SJustin T. Gibbs 		    dsl_dataset_phys(ds)->ds_prev_snap_obj);
193c1379625SJustin T. Gibbs 		ASSERT(dsl_dataset_phys(ds->ds_prev)->ds_num_children > 0);
194fa9e4066Sahrens 		/* if (bp->blk_birth > prev prev snap txg) prev unique += bs */
195c1379625SJustin T. Gibbs 		if (dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj ==
196a4611edeSahrens 		    ds->ds_object && bp->blk_birth >
197c1379625SJustin T. Gibbs 		    dsl_dataset_phys(ds->ds_prev)->ds_prev_snap_txg) {
198a4611edeSahrens 			dmu_buf_will_dirty(ds->ds_prev->ds_dbuf, tx);
199a4611edeSahrens 			mutex_enter(&ds->ds_prev->ds_lock);
200c1379625SJustin T. Gibbs 			dsl_dataset_phys(ds->ds_prev)->ds_unique_bytes += used;
201a4611edeSahrens 			mutex_exit(&ds->ds_prev->ds_lock);
202fa9e4066Sahrens 		}
2033f9d6ad7SLin Ling 		if (bp->blk_birth > ds->ds_dir->dd_origin_txg) {
20474e7dc98SMatthew Ahrens 			dsl_dir_transfer_space(ds->ds_dir, used,
20574e7dc98SMatthew Ahrens 			    DD_USED_HEAD, DD_USED_SNAP, tx);
20674e7dc98SMatthew Ahrens 		}
207fa9e4066Sahrens 	}
208fa9e4066Sahrens 	mutex_enter(&ds->ds_lock);
209c1379625SJustin T. Gibbs 	ASSERT3U(dsl_dataset_phys(ds)->ds_referenced_bytes, >=, used);
210c1379625SJustin T. Gibbs 	dsl_dataset_phys(ds)->ds_referenced_bytes -= used;
211c1379625SJustin T. Gibbs 	ASSERT3U(dsl_dataset_phys(ds)->ds_compressed_bytes, >=, compressed);
212c1379625SJustin T. Gibbs 	dsl_dataset_phys(ds)->ds_compressed_bytes -= compressed;
213c1379625SJustin T. Gibbs 	ASSERT3U(dsl_dataset_phys(ds)->ds_uncompressed_bytes, >=, uncompressed);
214c1379625SJustin T. Gibbs 	dsl_dataset_phys(ds)->ds_uncompressed_bytes -= uncompressed;
215fa9e4066Sahrens 	mutex_exit(&ds->ds_lock);
216cdb0ab79Smaybee 
217cdb0ab79Smaybee 	return (used);
218fa9e4066Sahrens }
219fa9e4066Sahrens 
220ea8dc4b6Seschrock uint64_t
221ea8dc4b6Seschrock dsl_dataset_prev_snap_txg(dsl_dataset_t *ds)
222fa9e4066Sahrens {
223a2eea2e1Sahrens 	uint64_t trysnap = 0;
224a2eea2e1Sahrens 
225fa9e4066Sahrens 	if (ds == NULL)
226ea8dc4b6Seschrock 		return (0);
227fa9e4066Sahrens 	/*
228fa9e4066Sahrens 	 * The snapshot creation could fail, but that would cause an
229fa9e4066Sahrens 	 * incorrect FALSE return, which would only result in an
230fa9e4066Sahrens 	 * overestimation of the amount of space that an operation would
231fa9e4066Sahrens 	 * consume, which is OK.
232fa9e4066Sahrens 	 *
233fa9e4066Sahrens 	 * There's also a small window where we could miss a pending
234fa9e4066Sahrens 	 * snapshot, because we could set the sync task in the quiescing
235fa9e4066Sahrens 	 * phase.  So this should only be used as a guess.
236fa9e4066Sahrens 	 */
237a2eea2e1Sahrens 	if (ds->ds_trysnap_txg >
238a2eea2e1Sahrens 	    spa_last_synced_txg(ds->ds_dir->dd_pool->dp_spa))
239a2eea2e1Sahrens 		trysnap = ds->ds_trysnap_txg;
240c1379625SJustin T. Gibbs 	return (MAX(dsl_dataset_phys(ds)->ds_prev_snap_txg, trysnap));
241ea8dc4b6Seschrock }
242ea8dc4b6Seschrock 
2433d692628SSanjeev Bagewadi boolean_t
244c7cd2421SGeorge Wilson dsl_dataset_block_freeable(dsl_dataset_t *ds, const blkptr_t *bp,
245c7cd2421SGeorge Wilson     uint64_t blk_birth)
246ea8dc4b6Seschrock {
24743466aaeSMax Grossman 	if (blk_birth <= dsl_dataset_prev_snap_txg(ds) ||
24843466aaeSMax Grossman 	    (bp != NULL && BP_IS_HOLE(bp)))
249c7cd2421SGeorge Wilson 		return (B_FALSE);
250c7cd2421SGeorge Wilson 
251837b568bSGeorge Wilson 	ddt_prefetch(dsl_dataset_get_spa(ds), bp);
252c7cd2421SGeorge Wilson 
253c7cd2421SGeorge Wilson 	return (B_TRUE);
254fa9e4066Sahrens }
255fa9e4066Sahrens 
256fa9e4066Sahrens static void
257bc9014e6SJustin Gibbs dsl_dataset_evict(void *dbu)
258fa9e4066Sahrens {
259bc9014e6SJustin Gibbs 	dsl_dataset_t *ds = dbu;
260fa9e4066Sahrens 
2613b2aab18SMatthew Ahrens 	ASSERT(ds->ds_owner == NULL);
262fa9e4066Sahrens 
263bc9014e6SJustin Gibbs 	ds->ds_dbuf = NULL;
264bc9014e6SJustin Gibbs 
26591ebeef5Sahrens 	unique_remove(ds->ds_fsid_guid);
266fa9e4066Sahrens 
267503ad85cSMatthew Ahrens 	if (ds->ds_objset != NULL)
268503ad85cSMatthew Ahrens 		dmu_objset_evict(ds->ds_objset);
269fa9e4066Sahrens 
270fa9e4066Sahrens 	if (ds->ds_prev) {
2713b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds->ds_prev, ds);
272fa9e4066Sahrens 		ds->ds_prev = NULL;
273fa9e4066Sahrens 	}
274fa9e4066Sahrens 
275cde58dbcSMatthew Ahrens 	bplist_destroy(&ds->ds_pending_deadlist);
276bc9014e6SJustin Gibbs 	if (ds->ds_deadlist.dl_os != NULL)
277cde58dbcSMatthew Ahrens 		dsl_deadlist_close(&ds->ds_deadlist);
278745cd3c5Smaybee 	if (ds->ds_dir)
279bc9014e6SJustin Gibbs 		dsl_dir_async_rele(ds->ds_dir, ds);
280fa9e4066Sahrens 
28191ebeef5Sahrens 	ASSERT(!list_link_active(&ds->ds_synced_link));
282fa9e4066Sahrens 
2835ad82045Snd 	mutex_destroy(&ds->ds_lock);
28491ebeef5Sahrens 	mutex_destroy(&ds->ds_opening_lock);
285d2b3cbbdSJorgen Lundman 	mutex_destroy(&ds->ds_sendstream_lock);
2863b2aab18SMatthew Ahrens 	refcount_destroy(&ds->ds_longholds);
2875ad82045Snd 
288fa9e4066Sahrens 	kmem_free(ds, sizeof (dsl_dataset_t));
289fa9e4066Sahrens }
290fa9e4066Sahrens 
2913b2aab18SMatthew Ahrens int
292fa9e4066Sahrens dsl_dataset_get_snapname(dsl_dataset_t *ds)
293fa9e4066Sahrens {
294fa9e4066Sahrens 	dsl_dataset_phys_t *headphys;
295fa9e4066Sahrens 	int err;
296fa9e4066Sahrens 	dmu_buf_t *headdbuf;
297fa9e4066Sahrens 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
298fa9e4066Sahrens 	objset_t *mos = dp->dp_meta_objset;
299fa9e4066Sahrens 
300fa9e4066Sahrens 	if (ds->ds_snapname[0])
301ea8dc4b6Seschrock 		return (0);
302c1379625SJustin T. Gibbs 	if (dsl_dataset_phys(ds)->ds_next_snap_obj == 0)
303ea8dc4b6Seschrock 		return (0);
304fa9e4066Sahrens 
305c1379625SJustin T. Gibbs 	err = dmu_bonus_hold(mos, dsl_dir_phys(ds->ds_dir)->dd_head_dataset_obj,
306ea8dc4b6Seschrock 	    FTAG, &headdbuf);
3073b2aab18SMatthew Ahrens 	if (err != 0)
308ea8dc4b6Seschrock 		return (err);
309fa9e4066Sahrens 	headphys = headdbuf->db_data;
310fa9e4066Sahrens 	err = zap_value_search(dp->dp_meta_objset,
311e7437265Sahrens 	    headphys->ds_snapnames_zapobj, ds->ds_object, 0, ds->ds_snapname);
312ea8dc4b6Seschrock 	dmu_buf_rele(headdbuf, FTAG);
313ea8dc4b6Seschrock 	return (err);
314fa9e4066Sahrens }
315fa9e4066Sahrens 
3163b2aab18SMatthew Ahrens int
317745cd3c5Smaybee dsl_dataset_snap_lookup(dsl_dataset_t *ds, const char *name, uint64_t *value)
318ab04eb8eStimh {
319745cd3c5Smaybee 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
320c1379625SJustin T. Gibbs 	uint64_t snapobj = dsl_dataset_phys(ds)->ds_snapnames_zapobj;
321ab04eb8eStimh 	matchtype_t mt;
322ab04eb8eStimh 	int err;
323ab04eb8eStimh 
324c1379625SJustin T. Gibbs 	if (dsl_dataset_phys(ds)->ds_flags & DS_FLAG_CI_DATASET)
325ab04eb8eStimh 		mt = MT_FIRST;
326ab04eb8eStimh 	else
327ab04eb8eStimh 		mt = MT_EXACT;
328ab04eb8eStimh 
329745cd3c5Smaybee 	err = zap_lookup_norm(mos, snapobj, name, 8, 1,
330ab04eb8eStimh 	    value, mt, NULL, 0, NULL);
331ab04eb8eStimh 	if (err == ENOTSUP && mt == MT_FIRST)
332745cd3c5Smaybee 		err = zap_lookup(mos, snapobj, name, 8, 1, value);
333ab04eb8eStimh 	return (err);
334ab04eb8eStimh }
335ab04eb8eStimh 
3363b2aab18SMatthew Ahrens int
337a2afb611SJerry Jelinek dsl_dataset_snap_remove(dsl_dataset_t *ds, const char *name, dmu_tx_t *tx,
338a2afb611SJerry Jelinek     boolean_t adj_cnt)
339ab04eb8eStimh {
340745cd3c5Smaybee 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
341c1379625SJustin T. Gibbs 	uint64_t snapobj = dsl_dataset_phys(ds)->ds_snapnames_zapobj;
342ab04eb8eStimh 	matchtype_t mt;
343ab04eb8eStimh 	int err;
344ab04eb8eStimh 
34571eb0538SChris Kirby 	dsl_dir_snap_cmtime_update(ds->ds_dir);
34671eb0538SChris Kirby 
347c1379625SJustin T. Gibbs 	if (dsl_dataset_phys(ds)->ds_flags & DS_FLAG_CI_DATASET)
348ab04eb8eStimh 		mt = MT_FIRST;
349ab04eb8eStimh 	else
350ab04eb8eStimh 		mt = MT_EXACT;
351ab04eb8eStimh 
352745cd3c5Smaybee 	err = zap_remove_norm(mos, snapobj, name, mt, tx);
353ab04eb8eStimh 	if (err == ENOTSUP && mt == MT_FIRST)
354745cd3c5Smaybee 		err = zap_remove(mos, snapobj, name, tx);
355a2afb611SJerry Jelinek 
356a2afb611SJerry Jelinek 	if (err == 0 && adj_cnt)
357a2afb611SJerry Jelinek 		dsl_fs_ss_count_adjust(ds->ds_dir, -1,
358a2afb611SJerry Jelinek 		    DD_FIELD_SNAPSHOT_COUNT, tx);
359a2afb611SJerry Jelinek 
360ab04eb8eStimh 	return (err);
361ab04eb8eStimh }
362ab04eb8eStimh 
363e57a022bSJustin T. Gibbs boolean_t
364e57a022bSJustin T. Gibbs dsl_dataset_try_add_ref(dsl_pool_t *dp, dsl_dataset_t *ds, void *tag)
365e57a022bSJustin T. Gibbs {
3669d47dec0SJustin T. Gibbs 	dmu_buf_t *dbuf = ds->ds_dbuf;
3679d47dec0SJustin T. Gibbs 	boolean_t result = B_FALSE;
3689d47dec0SJustin T. Gibbs 
3699d47dec0SJustin T. Gibbs 	if (dbuf != NULL && dmu_buf_try_add_ref(dbuf, dp->dp_meta_objset,
3709d47dec0SJustin T. Gibbs 	    ds->ds_object, DMU_BONUS_BLKID, tag)) {
3719d47dec0SJustin T. Gibbs 
3729d47dec0SJustin T. Gibbs 		if (ds == dmu_buf_get_user(dbuf))
3739d47dec0SJustin T. Gibbs 			result = B_TRUE;
3749d47dec0SJustin T. Gibbs 		else
3759d47dec0SJustin T. Gibbs 			dmu_buf_rele(dbuf, tag);
3769d47dec0SJustin T. Gibbs 	}
3779d47dec0SJustin T. Gibbs 
3789d47dec0SJustin T. Gibbs 	return (result);
379e57a022bSJustin T. Gibbs }
380e57a022bSJustin T. Gibbs 
3813b2aab18SMatthew Ahrens int
3823b2aab18SMatthew Ahrens dsl_dataset_hold_obj(dsl_pool_t *dp, uint64_t dsobj, void *tag,
383745cd3c5Smaybee     dsl_dataset_t **dsp)
384fa9e4066Sahrens {
385fa9e4066Sahrens 	objset_t *mos = dp->dp_meta_objset;
386fa9e4066Sahrens 	dmu_buf_t *dbuf;
387fa9e4066Sahrens 	dsl_dataset_t *ds;
388ea8dc4b6Seschrock 	int err;
389a7f53a56SChris Kirby 	dmu_object_info_t doi;
390fa9e4066Sahrens 
3913b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(dp));
392fa9e4066Sahrens 
393ea8dc4b6Seschrock 	err = dmu_bonus_hold(mos, dsobj, tag, &dbuf);
3943b2aab18SMatthew Ahrens 	if (err != 0)
395ea8dc4b6Seschrock 		return (err);
396a7f53a56SChris Kirby 
397a7f53a56SChris Kirby 	/* Make sure dsobj has the correct object type. */
398a7f53a56SChris Kirby 	dmu_object_info_from_db(dbuf, &doi);
3992acef22dSMatthew Ahrens 	if (doi.doi_bonus_type != DMU_OT_DSL_DATASET) {
400b287be1bSWill Andrews 		dmu_buf_rele(dbuf, tag);
401be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
402b287be1bSWill Andrews 	}
403a7f53a56SChris Kirby 
404fa9e4066Sahrens 	ds = dmu_buf_get_user(dbuf);
405fa9e4066Sahrens 	if (ds == NULL) {
406d5285caeSGeorge Wilson 		dsl_dataset_t *winner = NULL;
407fa9e4066Sahrens 
408fa9e4066Sahrens 		ds = kmem_zalloc(sizeof (dsl_dataset_t), KM_SLEEP);
409fa9e4066Sahrens 		ds->ds_dbuf = dbuf;
410fa9e4066Sahrens 		ds->ds_object = dsobj;
411bc9014e6SJustin Gibbs 		ds->ds_is_snapshot = dsl_dataset_phys(ds)->ds_num_children != 0;
412fa9e4066Sahrens 
4135ad82045Snd 		mutex_init(&ds->ds_lock, NULL, MUTEX_DEFAULT, NULL);
41491ebeef5Sahrens 		mutex_init(&ds->ds_opening_lock, NULL, MUTEX_DEFAULT, NULL);
4154e3c9f44SBill Pijewski 		mutex_init(&ds->ds_sendstream_lock, NULL, MUTEX_DEFAULT, NULL);
4163b2aab18SMatthew Ahrens 		refcount_create(&ds->ds_longholds);
4175ad82045Snd 
418cde58dbcSMatthew Ahrens 		bplist_create(&ds->ds_pending_deadlist);
419cde58dbcSMatthew Ahrens 		dsl_deadlist_open(&ds->ds_deadlist,
420c1379625SJustin T. Gibbs 		    mos, dsl_dataset_phys(ds)->ds_deadlist_obj);
421cde58dbcSMatthew Ahrens 
4224e3c9f44SBill Pijewski 		list_create(&ds->ds_sendstreams, sizeof (dmu_sendarg_t),
4234e3c9f44SBill Pijewski 		    offsetof(dmu_sendarg_t, dsa_link));
4244e3c9f44SBill Pijewski 
425b5152584SMatthew Ahrens 		if (doi.doi_type == DMU_OTN_ZAP_METADATA) {
426*e1f3c208SJustin T. Gibbs 			int zaperr = zap_contains(mos, dsobj,
427*e1f3c208SJustin T. Gibbs 			    DS_FIELD_LARGE_BLOCKS);
428*e1f3c208SJustin T. Gibbs 			if (zaperr != ENOENT) {
429*e1f3c208SJustin T. Gibbs 				VERIFY0(zaperr);
430b5152584SMatthew Ahrens 				ds->ds_large_blocks = B_TRUE;
431*e1f3c208SJustin T. Gibbs 			}
432b5152584SMatthew Ahrens 		}
433b5152584SMatthew Ahrens 
434ea8dc4b6Seschrock 		if (err == 0) {
4353b2aab18SMatthew Ahrens 			err = dsl_dir_hold_obj(dp,
436c1379625SJustin T. Gibbs 			    dsl_dataset_phys(ds)->ds_dir_obj, NULL, ds,
437c1379625SJustin T. Gibbs 			    &ds->ds_dir);
438ea8dc4b6Seschrock 		}
4393b2aab18SMatthew Ahrens 		if (err != 0) {
4405ad82045Snd 			mutex_destroy(&ds->ds_lock);
44191ebeef5Sahrens 			mutex_destroy(&ds->ds_opening_lock);
442d2b3cbbdSJorgen Lundman 			mutex_destroy(&ds->ds_sendstream_lock);
4433b2aab18SMatthew Ahrens 			refcount_destroy(&ds->ds_longholds);
444cde58dbcSMatthew Ahrens 			bplist_destroy(&ds->ds_pending_deadlist);
445cde58dbcSMatthew Ahrens 			dsl_deadlist_close(&ds->ds_deadlist);
446ea8dc4b6Seschrock 			kmem_free(ds, sizeof (dsl_dataset_t));
447ea8dc4b6Seschrock 			dmu_buf_rele(dbuf, tag);
448ea8dc4b6Seschrock 			return (err);
449ea8dc4b6Seschrock 		}
450fa9e4066Sahrens 
451bc9014e6SJustin Gibbs 		if (!ds->ds_is_snapshot) {
452fa9e4066Sahrens 			ds->ds_snapname[0] = '\0';
453c1379625SJustin T. Gibbs 			if (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0) {
4543b2aab18SMatthew Ahrens 				err = dsl_dataset_hold_obj(dp,
455c1379625SJustin T. Gibbs 				    dsl_dataset_phys(ds)->ds_prev_snap_obj,
456745cd3c5Smaybee 				    ds, &ds->ds_prev);
457fa9e4066Sahrens 			}
45878f17100SMatthew Ahrens 			if (doi.doi_type == DMU_OTN_ZAP_METADATA) {
45978f17100SMatthew Ahrens 				int zaperr = zap_lookup(mos, ds->ds_object,
46078f17100SMatthew Ahrens 				    DS_FIELD_BOOKMARK_NAMES,
46178f17100SMatthew Ahrens 				    sizeof (ds->ds_bookmarks), 1,
46278f17100SMatthew Ahrens 				    &ds->ds_bookmarks);
46378f17100SMatthew Ahrens 				if (zaperr != ENOENT)
46478f17100SMatthew Ahrens 					VERIFY0(zaperr);
46578f17100SMatthew Ahrens 			}
466842727c2SChris Kirby 		} else {
467842727c2SChris Kirby 			if (zfs_flags & ZFS_DEBUG_SNAPNAMES)
468842727c2SChris Kirby 				err = dsl_dataset_get_snapname(ds);
469c1379625SJustin T. Gibbs 			if (err == 0 &&
470c1379625SJustin T. Gibbs 			    dsl_dataset_phys(ds)->ds_userrefs_obj != 0) {
471842727c2SChris Kirby 				err = zap_count(
472842727c2SChris Kirby 				    ds->ds_dir->dd_pool->dp_meta_objset,
473c1379625SJustin T. Gibbs 				    dsl_dataset_phys(ds)->ds_userrefs_obj,
474842727c2SChris Kirby 				    &ds->ds_userrefs);
475842727c2SChris Kirby 			}
476fa9e4066Sahrens 		}
477fa9e4066Sahrens 
478bc9014e6SJustin Gibbs 		if (err == 0 && !ds->ds_is_snapshot) {
4793b2aab18SMatthew Ahrens 			err = dsl_prop_get_int_ds(ds,
4803b2aab18SMatthew Ahrens 			    zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
4813b2aab18SMatthew Ahrens 			    &ds->ds_reserved);
482cb625fb5Sck 			if (err == 0) {
4833b2aab18SMatthew Ahrens 				err = dsl_prop_get_int_ds(ds,
4843b2aab18SMatthew Ahrens 				    zfs_prop_to_name(ZFS_PROP_REFQUOTA),
4853b2aab18SMatthew Ahrens 				    &ds->ds_quota);
486cb625fb5Sck 			}
487cb625fb5Sck 		} else {
488cb625fb5Sck 			ds->ds_reserved = ds->ds_quota = 0;
489cb625fb5Sck 		}
490cb625fb5Sck 
491bc9014e6SJustin Gibbs 		dmu_buf_init_user(&ds->ds_dbu, dsl_dataset_evict, &ds->ds_dbuf);
492bc9014e6SJustin Gibbs 		if (err == 0)
493bc9014e6SJustin Gibbs 			winner = dmu_buf_set_user_ie(dbuf, &ds->ds_dbu);
494bc9014e6SJustin Gibbs 
495bc9014e6SJustin Gibbs 		if (err != 0 || winner != NULL) {
496cde58dbcSMatthew Ahrens 			bplist_destroy(&ds->ds_pending_deadlist);
497cde58dbcSMatthew Ahrens 			dsl_deadlist_close(&ds->ds_deadlist);
498745cd3c5Smaybee 			if (ds->ds_prev)
4993b2aab18SMatthew Ahrens 				dsl_dataset_rele(ds->ds_prev, ds);
5003b2aab18SMatthew Ahrens 			dsl_dir_rele(ds->ds_dir, ds);
5015ad82045Snd 			mutex_destroy(&ds->ds_lock);
50291ebeef5Sahrens 			mutex_destroy(&ds->ds_opening_lock);
503d2b3cbbdSJorgen Lundman 			mutex_destroy(&ds->ds_sendstream_lock);
5043b2aab18SMatthew Ahrens 			refcount_destroy(&ds->ds_longholds);
505fa9e4066Sahrens 			kmem_free(ds, sizeof (dsl_dataset_t));
5063b2aab18SMatthew Ahrens 			if (err != 0) {
507ea8dc4b6Seschrock 				dmu_buf_rele(dbuf, tag);
508ea8dc4b6Seschrock 				return (err);
509ea8dc4b6Seschrock 			}
510fa9e4066Sahrens 			ds = winner;
511fa9e4066Sahrens 		} else {
51291ebeef5Sahrens 			ds->ds_fsid_guid =
513c1379625SJustin T. Gibbs 			    unique_insert(dsl_dataset_phys(ds)->ds_fsid_guid);
514fa9e4066Sahrens 		}
515fa9e4066Sahrens 	}
516fa9e4066Sahrens 	ASSERT3P(ds->ds_dbuf, ==, dbuf);
517c1379625SJustin T. Gibbs 	ASSERT3P(dsl_dataset_phys(ds), ==, dbuf->db_data);
518c1379625SJustin T. Gibbs 	ASSERT(dsl_dataset_phys(ds)->ds_prev_snap_obj != 0 ||
519afc6333aSahrens 	    spa_version(dp->dp_spa) < SPA_VERSION_ORIGIN ||
52084db2a68Sahrens 	    dp->dp_origin_snap == NULL || ds == dp->dp_origin_snap);
521ea8dc4b6Seschrock 	*dsp = ds;
522ea8dc4b6Seschrock 	return (0);
523fa9e4066Sahrens }
524fa9e4066Sahrens 
525745cd3c5Smaybee int
5263b2aab18SMatthew Ahrens dsl_dataset_hold(dsl_pool_t *dp, const char *name,
527503ad85cSMatthew Ahrens     void *tag, dsl_dataset_t **dsp)
528fa9e4066Sahrens {
529fa9e4066Sahrens 	dsl_dir_t *dd;
530745cd3c5Smaybee 	const char *snapname;
531fa9e4066Sahrens 	uint64_t obj;
532fa9e4066Sahrens 	int err = 0;
533fa9e4066Sahrens 
5343b2aab18SMatthew Ahrens 	err = dsl_dir_hold(dp, name, FTAG, &dd, &snapname);
5353b2aab18SMatthew Ahrens 	if (err != 0)
536ea8dc4b6Seschrock 		return (err);
537fa9e4066Sahrens 
5383b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(dp));
539c1379625SJustin T. Gibbs 	obj = dsl_dir_phys(dd)->dd_head_dataset_obj;
5403b2aab18SMatthew Ahrens 	if (obj != 0)
5413b2aab18SMatthew Ahrens 		err = dsl_dataset_hold_obj(dp, obj, tag, dsp);
542745cd3c5Smaybee 	else
543be6fd75aSMatthew Ahrens 		err = SET_ERROR(ENOENT);
544fa9e4066Sahrens 
545745cd3c5Smaybee 	/* we may be looking for a snapshot */
546745cd3c5Smaybee 	if (err == 0 && snapname != NULL) {
5473b2aab18SMatthew Ahrens 		dsl_dataset_t *ds;
548fa9e4066Sahrens 
549745cd3c5Smaybee 		if (*snapname++ != '@') {
550745cd3c5Smaybee 			dsl_dataset_rele(*dsp, tag);
5513b2aab18SMatthew Ahrens 			dsl_dir_rele(dd, FTAG);
552be6fd75aSMatthew Ahrens 			return (SET_ERROR(ENOENT));
553fa9e4066Sahrens 		}
554fa9e4066Sahrens 
555745cd3c5Smaybee 		dprintf("looking for snapshot '%s'\n", snapname);
556745cd3c5Smaybee 		err = dsl_dataset_snap_lookup(*dsp, snapname, &obj);
557745cd3c5Smaybee 		if (err == 0)
5583b2aab18SMatthew Ahrens 			err = dsl_dataset_hold_obj(dp, obj, tag, &ds);
559745cd3c5Smaybee 		dsl_dataset_rele(*dsp, tag);
560745cd3c5Smaybee 
5613b2aab18SMatthew Ahrens 		if (err == 0) {
562745cd3c5Smaybee 			mutex_enter(&ds->ds_lock);
563745cd3c5Smaybee 			if (ds->ds_snapname[0] == 0)
564745cd3c5Smaybee 				(void) strlcpy(ds->ds_snapname, snapname,
565745cd3c5Smaybee 				    sizeof (ds->ds_snapname));
566745cd3c5Smaybee 			mutex_exit(&ds->ds_lock);
5673b2aab18SMatthew Ahrens 			*dsp = ds;
568fa9e4066Sahrens 		}
569fa9e4066Sahrens 	}
5703b2aab18SMatthew Ahrens 
5713b2aab18SMatthew Ahrens 	dsl_dir_rele(dd, FTAG);
572fa9e4066Sahrens 	return (err);
573fa9e4066Sahrens }
574fa9e4066Sahrens 
575fa9e4066Sahrens int
5763b2aab18SMatthew Ahrens dsl_dataset_own_obj(dsl_pool_t *dp, uint64_t dsobj,
5773b2aab18SMatthew Ahrens     void *tag, dsl_dataset_t **dsp)
5783b2aab18SMatthew Ahrens {
5793b2aab18SMatthew Ahrens 	int err = dsl_dataset_hold_obj(dp, dsobj, tag, dsp);
5803b2aab18SMatthew Ahrens 	if (err != 0)
5813b2aab18SMatthew Ahrens 		return (err);
5823b2aab18SMatthew Ahrens 	if (!dsl_dataset_tryown(*dsp, tag)) {
5833b2aab18SMatthew Ahrens 		dsl_dataset_rele(*dsp, tag);
5843b2aab18SMatthew Ahrens 		*dsp = NULL;
585be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
5863b2aab18SMatthew Ahrens 	}
5873b2aab18SMatthew Ahrens 	return (0);
5883b2aab18SMatthew Ahrens }
5893b2aab18SMatthew Ahrens 
5903b2aab18SMatthew Ahrens int
5913b2aab18SMatthew Ahrens dsl_dataset_own(dsl_pool_t *dp, const char *name,
592503ad85cSMatthew Ahrens     void *tag, dsl_dataset_t **dsp)
593fa9e4066Sahrens {
5943b2aab18SMatthew Ahrens 	int err = dsl_dataset_hold(dp, name, tag, dsp);
5953b2aab18SMatthew Ahrens 	if (err != 0)
596745cd3c5Smaybee 		return (err);
5973b2aab18SMatthew Ahrens 	if (!dsl_dataset_tryown(*dsp, tag)) {
598503ad85cSMatthew Ahrens 		dsl_dataset_rele(*dsp, tag);
599be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
600745cd3c5Smaybee 	}
601745cd3c5Smaybee 	return (0);
602fa9e4066Sahrens }
603fa9e4066Sahrens 
6043b2aab18SMatthew Ahrens /*
6053b2aab18SMatthew Ahrens  * See the comment above dsl_pool_hold() for details.  In summary, a long
6063b2aab18SMatthew Ahrens  * hold is used to prevent destruction of a dataset while the pool hold
6073b2aab18SMatthew Ahrens  * is dropped, allowing other concurrent operations (e.g. spa_sync()).
6083b2aab18SMatthew Ahrens  *
6093b2aab18SMatthew Ahrens  * The dataset and pool must be held when this function is called.  After it
6103b2aab18SMatthew Ahrens  * is called, the pool hold may be released while the dataset is still held
6113b2aab18SMatthew Ahrens  * and accessed.
6123b2aab18SMatthew Ahrens  */
6133b2aab18SMatthew Ahrens void
6143b2aab18SMatthew Ahrens dsl_dataset_long_hold(dsl_dataset_t *ds, void *tag)
6153b2aab18SMatthew Ahrens {
6163b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool));
6173b2aab18SMatthew Ahrens 	(void) refcount_add(&ds->ds_longholds, tag);
6183b2aab18SMatthew Ahrens }
6193b2aab18SMatthew Ahrens 
6203b2aab18SMatthew Ahrens void
6213b2aab18SMatthew Ahrens dsl_dataset_long_rele(dsl_dataset_t *ds, void *tag)
6223b2aab18SMatthew Ahrens {
6233b2aab18SMatthew Ahrens 	(void) refcount_remove(&ds->ds_longholds, tag);
6243b2aab18SMatthew Ahrens }
6253b2aab18SMatthew Ahrens 
6263b2aab18SMatthew Ahrens /* Return B_TRUE if there are any long holds on this dataset. */
6273b2aab18SMatthew Ahrens boolean_t
6283b2aab18SMatthew Ahrens dsl_dataset_long_held(dsl_dataset_t *ds)
6293b2aab18SMatthew Ahrens {
6303b2aab18SMatthew Ahrens 	return (!refcount_is_zero(&ds->ds_longholds));
6313b2aab18SMatthew Ahrens }
6323b2aab18SMatthew Ahrens 
633fa9e4066Sahrens void
634fa9e4066Sahrens dsl_dataset_name(dsl_dataset_t *ds, char *name)
635fa9e4066Sahrens {
636fa9e4066Sahrens 	if (ds == NULL) {
637fa9e4066Sahrens 		(void) strcpy(name, "mos");
638fa9e4066Sahrens 	} else {
639fa9e4066Sahrens 		dsl_dir_name(ds->ds_dir, name);
6403b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_get_snapname(ds));
641fa9e4066Sahrens 		if (ds->ds_snapname[0]) {
642fa9e4066Sahrens 			(void) strcat(name, "@");
643745cd3c5Smaybee 			/*
644745cd3c5Smaybee 			 * We use a "recursive" mutex so that we
645745cd3c5Smaybee 			 * can call dprintf_ds() with ds_lock held.
646745cd3c5Smaybee 			 */
647fa9e4066Sahrens 			if (!MUTEX_HELD(&ds->ds_lock)) {
648fa9e4066Sahrens 				mutex_enter(&ds->ds_lock);
649fa9e4066Sahrens 				(void) strcat(name, ds->ds_snapname);
650fa9e4066Sahrens 				mutex_exit(&ds->ds_lock);
651fa9e4066Sahrens 			} else {
652fa9e4066Sahrens 				(void) strcat(name, ds->ds_snapname);
653fa9e4066Sahrens 			}
654fa9e4066Sahrens 		}
655fa9e4066Sahrens 	}
656fa9e4066Sahrens }
657fa9e4066Sahrens 
6583cb34c60Sahrens void
659745cd3c5Smaybee dsl_dataset_rele(dsl_dataset_t *ds, void *tag)
6603cb34c60Sahrens {
6613b2aab18SMatthew Ahrens 	dmu_buf_rele(ds->ds_dbuf, tag);
662745cd3c5Smaybee }
663745cd3c5Smaybee 
664745cd3c5Smaybee void
665503ad85cSMatthew Ahrens dsl_dataset_disown(dsl_dataset_t *ds, void *tag)
666745cd3c5Smaybee {
667d808a4fcSJustin T. Gibbs 	ASSERT3P(ds->ds_owner, ==, tag);
668d808a4fcSJustin T. Gibbs 	ASSERT(ds->ds_dbuf != NULL);
669745cd3c5Smaybee 
6703cb34c60Sahrens 	mutex_enter(&ds->ds_lock);
671745cd3c5Smaybee 	ds->ds_owner = NULL;
6723cb34c60Sahrens 	mutex_exit(&ds->ds_lock);
6733b2aab18SMatthew Ahrens 	dsl_dataset_long_rele(ds, tag);
674d808a4fcSJustin T. Gibbs 	dsl_dataset_rele(ds, tag);
6753cb34c60Sahrens }
6763cb34c60Sahrens 
6773cb34c60Sahrens boolean_t
6783b2aab18SMatthew Ahrens dsl_dataset_tryown(dsl_dataset_t *ds, void *tag)
6793cb34c60Sahrens {
680745cd3c5Smaybee 	boolean_t gotit = FALSE;
681745cd3c5Smaybee 
6823cb34c60Sahrens 	mutex_enter(&ds->ds_lock);
6833b2aab18SMatthew Ahrens 	if (ds->ds_owner == NULL && !DS_IS_INCONSISTENT(ds)) {
684503ad85cSMatthew Ahrens 		ds->ds_owner = tag;
6853b2aab18SMatthew Ahrens 		dsl_dataset_long_hold(ds, tag);
686745cd3c5Smaybee 		gotit = TRUE;
6873cb34c60Sahrens 	}
6883cb34c60Sahrens 	mutex_exit(&ds->ds_lock);
689745cd3c5Smaybee 	return (gotit);
690745cd3c5Smaybee }
691745cd3c5Smaybee 
6921d452cf5Sahrens uint64_t
693088f3894Sahrens dsl_dataset_create_sync_dd(dsl_dir_t *dd, dsl_dataset_t *origin,
694ab04eb8eStimh     uint64_t flags, dmu_tx_t *tx)
695fa9e4066Sahrens {
6963cb34c60Sahrens 	dsl_pool_t *dp = dd->dd_pool;
697fa9e4066Sahrens 	dmu_buf_t *dbuf;
698fa9e4066Sahrens 	dsl_dataset_phys_t *dsphys;
6993cb34c60Sahrens 	uint64_t dsobj;
700fa9e4066Sahrens 	objset_t *mos = dp->dp_meta_objset;
701fa9e4066Sahrens 
702088f3894Sahrens 	if (origin == NULL)
703088f3894Sahrens 		origin = dp->dp_origin_snap;
704088f3894Sahrens 
7053cb34c60Sahrens 	ASSERT(origin == NULL || origin->ds_dir->dd_pool == dp);
706c1379625SJustin T. Gibbs 	ASSERT(origin == NULL || dsl_dataset_phys(origin)->ds_num_children > 0);
707fa9e4066Sahrens 	ASSERT(dmu_tx_is_syncing(tx));
708c1379625SJustin T. Gibbs 	ASSERT(dsl_dir_phys(dd)->dd_head_dataset_obj == 0);
709fa9e4066Sahrens 
7101649cd4bStabriz 	dsobj = dmu_object_alloc(mos, DMU_OT_DSL_DATASET, 0,
7111649cd4bStabriz 	    DMU_OT_DSL_DATASET, sizeof (dsl_dataset_phys_t), tx);
7123b2aab18SMatthew Ahrens 	VERIFY0(dmu_bonus_hold(mos, dsobj, FTAG, &dbuf));
713fa9e4066Sahrens 	dmu_buf_will_dirty(dbuf, tx);
714fa9e4066Sahrens 	dsphys = dbuf->db_data;
715745cd3c5Smaybee 	bzero(dsphys, sizeof (dsl_dataset_phys_t));
716fa9e4066Sahrens 	dsphys->ds_dir_obj = dd->dd_object;
717ab04eb8eStimh 	dsphys->ds_flags = flags;
718fa9e4066Sahrens 	dsphys->ds_fsid_guid = unique_create();
719fa9e4066Sahrens 	(void) random_get_pseudo_bytes((void*)&dsphys->ds_guid,
720fa9e4066Sahrens 	    sizeof (dsphys->ds_guid));
721fa9e4066Sahrens 	dsphys->ds_snapnames_zapobj =
722ab04eb8eStimh 	    zap_create_norm(mos, U8_TEXTPREP_TOUPPER, DMU_OT_DSL_DS_SNAP_MAP,
723ab04eb8eStimh 	    DMU_OT_NONE, 0, tx);
724fa9e4066Sahrens 	dsphys->ds_creation_time = gethrestime_sec();
725088f3894Sahrens 	dsphys->ds_creation_txg = tx->tx_txg == TXG_INITIAL ? 1 : tx->tx_txg;
726a9799022Sck 
727cde58dbcSMatthew Ahrens 	if (origin == NULL) {
728cde58dbcSMatthew Ahrens 		dsphys->ds_deadlist_obj = dsl_deadlist_alloc(mos, tx);
729cde58dbcSMatthew Ahrens 	} else {
7303b2aab18SMatthew Ahrens 		dsl_dataset_t *ohds; /* head of the origin snapshot */
731cde58dbcSMatthew Ahrens 
7323cb34c60Sahrens 		dsphys->ds_prev_snap_obj = origin->ds_object;
733fa9e4066Sahrens 		dsphys->ds_prev_snap_txg =
734c1379625SJustin T. Gibbs 		    dsl_dataset_phys(origin)->ds_creation_txg;
735ad135b5dSChristopher Siden 		dsphys->ds_referenced_bytes =
736c1379625SJustin T. Gibbs 		    dsl_dataset_phys(origin)->ds_referenced_bytes;
737fa9e4066Sahrens 		dsphys->ds_compressed_bytes =
738c1379625SJustin T. Gibbs 		    dsl_dataset_phys(origin)->ds_compressed_bytes;
739fa9e4066Sahrens 		dsphys->ds_uncompressed_bytes =
740c1379625SJustin T. Gibbs 		    dsl_dataset_phys(origin)->ds_uncompressed_bytes;
741c1379625SJustin T. Gibbs 		dsphys->ds_bp = dsl_dataset_phys(origin)->ds_bp;
74242fcb65eSMatthew Ahrens 
74342fcb65eSMatthew Ahrens 		/*
74442fcb65eSMatthew Ahrens 		 * Inherit flags that describe the dataset's contents
74542fcb65eSMatthew Ahrens 		 * (INCONSISTENT) or properties (Case Insensitive).
74642fcb65eSMatthew Ahrens 		 */
747c1379625SJustin T. Gibbs 		dsphys->ds_flags |= dsl_dataset_phys(origin)->ds_flags &
74842fcb65eSMatthew Ahrens 		    (DS_FLAG_INCONSISTENT | DS_FLAG_CI_DATASET);
749fa9e4066Sahrens 
750b5152584SMatthew Ahrens 		if (origin->ds_large_blocks)
751b5152584SMatthew Ahrens 			dsl_dataset_activate_large_blocks_sync_impl(dsobj, tx);
752b5152584SMatthew Ahrens 
7533cb34c60Sahrens 		dmu_buf_will_dirty(origin->ds_dbuf, tx);
754c1379625SJustin T. Gibbs 		dsl_dataset_phys(origin)->ds_num_children++;
755fa9e4066Sahrens 
7563b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(dp,
757c1379625SJustin T. Gibbs 		    dsl_dir_phys(origin->ds_dir)->dd_head_dataset_obj,
758c1379625SJustin T. Gibbs 		    FTAG, &ohds));
759cde58dbcSMatthew Ahrens 		dsphys->ds_deadlist_obj = dsl_deadlist_clone(&ohds->ds_deadlist,
760cde58dbcSMatthew Ahrens 		    dsphys->ds_prev_snap_txg, dsphys->ds_prev_snap_obj, tx);
761cde58dbcSMatthew Ahrens 		dsl_dataset_rele(ohds, FTAG);
762cde58dbcSMatthew Ahrens 
763088f3894Sahrens 		if (spa_version(dp->dp_spa) >= SPA_VERSION_NEXT_CLONES) {
764c1379625SJustin T. Gibbs 			if (dsl_dataset_phys(origin)->ds_next_clones_obj == 0) {
765c1379625SJustin T. Gibbs 				dsl_dataset_phys(origin)->ds_next_clones_obj =
766088f3894Sahrens 				    zap_create(mos,
767088f3894Sahrens 				    DMU_OT_NEXT_CLONES, DMU_OT_NONE, 0, tx);
768088f3894Sahrens 			}
7693b2aab18SMatthew Ahrens 			VERIFY0(zap_add_int(mos,
770c1379625SJustin T. Gibbs 			    dsl_dataset_phys(origin)->ds_next_clones_obj,
771c1379625SJustin T. Gibbs 			    dsobj, tx));
772088f3894Sahrens 		}
773088f3894Sahrens 
774fa9e4066Sahrens 		dmu_buf_will_dirty(dd->dd_dbuf, tx);
775c1379625SJustin T. Gibbs 		dsl_dir_phys(dd)->dd_origin_obj = origin->ds_object;
776cde58dbcSMatthew Ahrens 		if (spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
777c1379625SJustin T. Gibbs 			if (dsl_dir_phys(origin->ds_dir)->dd_clones == 0) {
778cde58dbcSMatthew Ahrens 				dmu_buf_will_dirty(origin->ds_dir->dd_dbuf, tx);
779c1379625SJustin T. Gibbs 				dsl_dir_phys(origin->ds_dir)->dd_clones =
780cde58dbcSMatthew Ahrens 				    zap_create(mos,
781cde58dbcSMatthew Ahrens 				    DMU_OT_DSL_CLONES, DMU_OT_NONE, 0, tx);
782cde58dbcSMatthew Ahrens 			}
7833b2aab18SMatthew Ahrens 			VERIFY0(zap_add_int(mos,
784c1379625SJustin T. Gibbs 			    dsl_dir_phys(origin->ds_dir)->dd_clones,
785c1379625SJustin T. Gibbs 			    dsobj, tx));
786cde58dbcSMatthew Ahrens 		}
787fa9e4066Sahrens 	}
788ab04eb8eStimh 
789ab04eb8eStimh 	if (spa_version(dp->dp_spa) >= SPA_VERSION_UNIQUE_ACCURATE)
790ab04eb8eStimh 		dsphys->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
791ab04eb8eStimh 
792ea8dc4b6Seschrock 	dmu_buf_rele(dbuf, FTAG);
793fa9e4066Sahrens 
794fa9e4066Sahrens 	dmu_buf_will_dirty(dd->dd_dbuf, tx);
795c1379625SJustin T. Gibbs 	dsl_dir_phys(dd)->dd_head_dataset_obj = dsobj;
7963cb34c60Sahrens 
7973cb34c60Sahrens 	return (dsobj);
7983cb34c60Sahrens }
7993cb34c60Sahrens 
8003b2aab18SMatthew Ahrens static void
8013b2aab18SMatthew Ahrens dsl_dataset_zero_zil(dsl_dataset_t *ds, dmu_tx_t *tx)
8023b2aab18SMatthew Ahrens {
8033b2aab18SMatthew Ahrens 	objset_t *os;
8043b2aab18SMatthew Ahrens 
8053b2aab18SMatthew Ahrens 	VERIFY0(dmu_objset_from_ds(ds, &os));
8063b2aab18SMatthew Ahrens 	bzero(&os->os_zil_header, sizeof (os->os_zil_header));
8073b2aab18SMatthew Ahrens 	dsl_dataset_dirty(ds, tx);
8083b2aab18SMatthew Ahrens }
8093b2aab18SMatthew Ahrens 
8103cb34c60Sahrens uint64_t
811ab04eb8eStimh dsl_dataset_create_sync(dsl_dir_t *pdd, const char *lastname,
812ab04eb8eStimh     dsl_dataset_t *origin, uint64_t flags, cred_t *cr, dmu_tx_t *tx)
8133cb34c60Sahrens {
8143cb34c60Sahrens 	dsl_pool_t *dp = pdd->dd_pool;
8153cb34c60Sahrens 	uint64_t dsobj, ddobj;
8163cb34c60Sahrens 	dsl_dir_t *dd;
8173cb34c60Sahrens 
8183b2aab18SMatthew Ahrens 	ASSERT(dmu_tx_is_syncing(tx));
8193cb34c60Sahrens 	ASSERT(lastname[0] != '@');
8203cb34c60Sahrens 
821088f3894Sahrens 	ddobj = dsl_dir_create_sync(dp, pdd, lastname, tx);
8223b2aab18SMatthew Ahrens 	VERIFY0(dsl_dir_hold_obj(dp, ddobj, lastname, FTAG, &dd));
8233cb34c60Sahrens 
8243b2aab18SMatthew Ahrens 	dsobj = dsl_dataset_create_sync_dd(dd, origin,
8253b2aab18SMatthew Ahrens 	    flags & ~DS_CREATE_FLAG_NODIRTY, tx);
8263cb34c60Sahrens 
8273cb34c60Sahrens 	dsl_deleg_set_create_perms(dd, tx, cr);
8283cb34c60Sahrens 
829a2afb611SJerry Jelinek 	/*
830a2afb611SJerry Jelinek 	 * Since we're creating a new node we know it's a leaf, so we can
831a2afb611SJerry Jelinek 	 * initialize the counts if the limit feature is active.
832a2afb611SJerry Jelinek 	 */
833a2afb611SJerry Jelinek 	if (spa_feature_is_active(dp->dp_spa, SPA_FEATURE_FS_SS_LIMIT)) {
834a2afb611SJerry Jelinek 		uint64_t cnt = 0;
835a2afb611SJerry Jelinek 		objset_t *os = dd->dd_pool->dp_meta_objset;
836a2afb611SJerry Jelinek 
837a2afb611SJerry Jelinek 		dsl_dir_zapify(dd, tx);
838a2afb611SJerry Jelinek 		VERIFY0(zap_add(os, dd->dd_object, DD_FIELD_FILESYSTEM_COUNT,
839a2afb611SJerry Jelinek 		    sizeof (cnt), 1, &cnt, tx));
840a2afb611SJerry Jelinek 		VERIFY0(zap_add(os, dd->dd_object, DD_FIELD_SNAPSHOT_COUNT,
841a2afb611SJerry Jelinek 		    sizeof (cnt), 1, &cnt, tx));
842a2afb611SJerry Jelinek 	}
843a2afb611SJerry Jelinek 
8443b2aab18SMatthew Ahrens 	dsl_dir_rele(dd, FTAG);
845fa9e4066Sahrens 
846feaa74e4SMark Maybee 	/*
847feaa74e4SMark Maybee 	 * If we are creating a clone, make sure we zero out any stale
848feaa74e4SMark Maybee 	 * data from the origin snapshots zil header.
849feaa74e4SMark Maybee 	 */
8503b2aab18SMatthew Ahrens 	if (origin != NULL && !(flags & DS_CREATE_FLAG_NODIRTY)) {
851feaa74e4SMark Maybee 		dsl_dataset_t *ds;
852feaa74e4SMark Maybee 
8533b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(dp, dsobj, FTAG, &ds));
8543b2aab18SMatthew Ahrens 		dsl_dataset_zero_zil(ds, tx);
855feaa74e4SMark Maybee 		dsl_dataset_rele(ds, FTAG);
856feaa74e4SMark Maybee 	}
857feaa74e4SMark Maybee 
8581d452cf5Sahrens 	return (dsobj);
859fa9e4066Sahrens }
860fa9e4066Sahrens 
8611d452cf5Sahrens /*
8623b2aab18SMatthew Ahrens  * The unique space in the head dataset can be calculated by subtracting
8633b2aab18SMatthew Ahrens  * the space used in the most recent snapshot, that is still being used
8643b2aab18SMatthew Ahrens  * in this file system, from the space currently in use.  To figure out
8653b2aab18SMatthew Ahrens  * the space in the most recent snapshot still in use, we need to take
8663b2aab18SMatthew Ahrens  * the total space used in the snapshot and subtract out the space that
8673b2aab18SMatthew Ahrens  * has been freed up since the snapshot was taken.
8681d452cf5Sahrens  */
8693b2aab18SMatthew Ahrens void
8703b2aab18SMatthew Ahrens dsl_dataset_recalc_head_uniq(dsl_dataset_t *ds)
8711d452cf5Sahrens {
8723b2aab18SMatthew Ahrens 	uint64_t mrs_used;
8733b2aab18SMatthew Ahrens 	uint64_t dlused, dlcomp, dluncomp;
8741d452cf5Sahrens 
875bc9014e6SJustin Gibbs 	ASSERT(!ds->ds_is_snapshot);
8761d452cf5Sahrens 
877c1379625SJustin T. Gibbs 	if (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0)
878c1379625SJustin T. Gibbs 		mrs_used = dsl_dataset_phys(ds->ds_prev)->ds_referenced_bytes;
8793b2aab18SMatthew Ahrens 	else
8803b2aab18SMatthew Ahrens 		mrs_used = 0;
881842727c2SChris Kirby 
8823b2aab18SMatthew Ahrens 	dsl_deadlist_space(&ds->ds_deadlist, &dlused, &dlcomp, &dluncomp);
883fa9e4066Sahrens 
8843b2aab18SMatthew Ahrens 	ASSERT3U(dlused, <=, mrs_used);
885c1379625SJustin T. Gibbs 	dsl_dataset_phys(ds)->ds_unique_bytes =
886c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_referenced_bytes - (mrs_used - dlused);
88719b94df9SMatthew Ahrens 
8883b2aab18SMatthew Ahrens 	if (spa_version(ds->ds_dir->dd_pool->dp_spa) >=
8893b2aab18SMatthew Ahrens 	    SPA_VERSION_UNIQUE_ACCURATE)
890c1379625SJustin T. Gibbs 		dsl_dataset_phys(ds)->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
891fa9e4066Sahrens }
892fa9e4066Sahrens 
8933b2aab18SMatthew Ahrens void
8943b2aab18SMatthew Ahrens dsl_dataset_remove_from_next_clones(dsl_dataset_t *ds, uint64_t obj,
8953b2aab18SMatthew Ahrens     dmu_tx_t *tx)
896842727c2SChris Kirby {
8973b2aab18SMatthew Ahrens 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
8983b2aab18SMatthew Ahrens 	uint64_t count;
8993b2aab18SMatthew Ahrens 	int err;
9003b2aab18SMatthew Ahrens 
901c1379625SJustin T. Gibbs 	ASSERT(dsl_dataset_phys(ds)->ds_num_children >= 2);
902c1379625SJustin T. Gibbs 	err = zap_remove_int(mos, dsl_dataset_phys(ds)->ds_next_clones_obj,
903c1379625SJustin T. Gibbs 	    obj, tx);
9043b2aab18SMatthew Ahrens 	/*
9053b2aab18SMatthew Ahrens 	 * The err should not be ENOENT, but a bug in a previous version
9063b2aab18SMatthew Ahrens 	 * of the code could cause upgrade_clones_cb() to not set
9073b2aab18SMatthew Ahrens 	 * ds_next_snap_obj when it should, leading to a missing entry.
9083b2aab18SMatthew Ahrens 	 * If we knew that the pool was created after
9093b2aab18SMatthew Ahrens 	 * SPA_VERSION_NEXT_CLONES, we could assert that it isn't
9103b2aab18SMatthew Ahrens 	 * ENOENT.  However, at least we can check that we don't have
9113b2aab18SMatthew Ahrens 	 * too many entries in the next_clones_obj even after failing to
9123b2aab18SMatthew Ahrens 	 * remove this one.
9133b2aab18SMatthew Ahrens 	 */
9143b2aab18SMatthew Ahrens 	if (err != ENOENT)
9153b2aab18SMatthew Ahrens 		VERIFY0(err);
916c1379625SJustin T. Gibbs 	ASSERT0(zap_count(mos, dsl_dataset_phys(ds)->ds_next_clones_obj,
9173b2aab18SMatthew Ahrens 	    &count));
918c1379625SJustin T. Gibbs 	ASSERT3U(count, <=, dsl_dataset_phys(ds)->ds_num_children - 2);
9193b2aab18SMatthew Ahrens }
920842727c2SChris Kirby 
921842727c2SChris Kirby 
9223b2aab18SMatthew Ahrens blkptr_t *
9233b2aab18SMatthew Ahrens dsl_dataset_get_blkptr(dsl_dataset_t *ds)
9243b2aab18SMatthew Ahrens {
925c1379625SJustin T. Gibbs 	return (&dsl_dataset_phys(ds)->ds_bp);
926842727c2SChris Kirby }
927842727c2SChris Kirby 
9283b2aab18SMatthew Ahrens void
9293b2aab18SMatthew Ahrens dsl_dataset_set_blkptr(dsl_dataset_t *ds, blkptr_t *bp, dmu_tx_t *tx)
930842727c2SChris Kirby {
9313b2aab18SMatthew Ahrens 	ASSERT(dmu_tx_is_syncing(tx));
9323b2aab18SMatthew Ahrens 	/* If it's the meta-objset, set dp_meta_rootbp */
9333b2aab18SMatthew Ahrens 	if (ds == NULL) {
9343b2aab18SMatthew Ahrens 		tx->tx_pool->dp_meta_rootbp = *bp;
9353b2aab18SMatthew Ahrens 	} else {
9363b2aab18SMatthew Ahrens 		dmu_buf_will_dirty(ds->ds_dbuf, tx);
937c1379625SJustin T. Gibbs 		dsl_dataset_phys(ds)->ds_bp = *bp;
938842727c2SChris Kirby 	}
9393b2aab18SMatthew Ahrens }
940842727c2SChris Kirby 
9413b2aab18SMatthew Ahrens spa_t *
9423b2aab18SMatthew Ahrens dsl_dataset_get_spa(dsl_dataset_t *ds)
9433b2aab18SMatthew Ahrens {
9443b2aab18SMatthew Ahrens 	return (ds->ds_dir->dd_pool->dp_spa);
945842727c2SChris Kirby }
946842727c2SChris Kirby 
9473b2aab18SMatthew Ahrens void
9483b2aab18SMatthew Ahrens dsl_dataset_dirty(dsl_dataset_t *ds, dmu_tx_t *tx)
949fa9e4066Sahrens {
9503b2aab18SMatthew Ahrens 	dsl_pool_t *dp;
951842727c2SChris Kirby 
9523b2aab18SMatthew Ahrens 	if (ds == NULL) /* this is the meta-objset */
9533b2aab18SMatthew Ahrens 		return;
9541d452cf5Sahrens 
9553b2aab18SMatthew Ahrens 	ASSERT(ds->ds_objset != NULL);
956fa9e4066Sahrens 
957c1379625SJustin T. Gibbs 	if (dsl_dataset_phys(ds)->ds_next_snap_obj != 0)
9583b2aab18SMatthew Ahrens 		panic("dirtying snapshot!");
959fa9e4066Sahrens 
9603b2aab18SMatthew Ahrens 	dp = ds->ds_dir->dd_pool;
961ce636f8bSMatthew Ahrens 
9623b2aab18SMatthew Ahrens 	if (txg_list_add(&dp->dp_dirty_datasets, ds, tx->tx_txg)) {
9633b2aab18SMatthew Ahrens 		/* up the hold count until we can be written out */
9643b2aab18SMatthew Ahrens 		dmu_buf_add_ref(ds->ds_dbuf, ds);
9653b2aab18SMatthew Ahrens 	}
9663b2aab18SMatthew Ahrens }
967fa9e4066Sahrens 
9682e2c1355SMatthew Ahrens boolean_t
9692e2c1355SMatthew Ahrens dsl_dataset_is_dirty(dsl_dataset_t *ds)
9702e2c1355SMatthew Ahrens {
9712e2c1355SMatthew Ahrens 	for (int t = 0; t < TXG_SIZE; t++) {
9722e2c1355SMatthew Ahrens 		if (txg_list_member(&ds->ds_dir->dd_pool->dp_dirty_datasets,
9732e2c1355SMatthew Ahrens 		    ds, t))
9742e2c1355SMatthew Ahrens 			return (B_TRUE);
9752e2c1355SMatthew Ahrens 	}
9762e2c1355SMatthew Ahrens 	return (B_FALSE);
9772e2c1355SMatthew Ahrens }
9782e2c1355SMatthew Ahrens 
979fa9e4066Sahrens static int
9803b2aab18SMatthew Ahrens dsl_dataset_snapshot_reserve_space(dsl_dataset_t *ds, dmu_tx_t *tx)
981fa9e4066Sahrens {
9823b2aab18SMatthew Ahrens 	uint64_t asize;
983fa9e4066Sahrens 
9843b2aab18SMatthew Ahrens 	if (!dmu_tx_is_syncing(tx))
98588b7b0f2SMatthew Ahrens 		return (0);
986fa9e4066Sahrens 
987e1930233Sbonwick 	/*
9883b2aab18SMatthew Ahrens 	 * If there's an fs-only reservation, any blocks that might become
9893b2aab18SMatthew Ahrens 	 * owned by the snapshot dataset must be accommodated by space
9903b2aab18SMatthew Ahrens 	 * outside of the reservation.
991e1930233Sbonwick 	 */
9923b2aab18SMatthew Ahrens 	ASSERT(ds->ds_reserved == 0 || DS_UNIQUE_IS_ACCURATE(ds));
993c1379625SJustin T. Gibbs 	asize = MIN(dsl_dataset_phys(ds)->ds_unique_bytes, ds->ds_reserved);
9943b2aab18SMatthew Ahrens 	if (asize > dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE))
995be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOSPC));
996e1930233Sbonwick 
9973cb34c60Sahrens 	/*
9983b2aab18SMatthew Ahrens 	 * Propagate any reserved space for this snapshot to other
9993b2aab18SMatthew Ahrens 	 * snapshot checks in this sync group.
10003cb34c60Sahrens 	 */
10013b2aab18SMatthew Ahrens 	if (asize > 0)
10023b2aab18SMatthew Ahrens 		dsl_dir_willuse_space(ds->ds_dir, asize, tx);
10033cb34c60Sahrens 
1004e1930233Sbonwick 	return (0);
1005e1930233Sbonwick }
1006e1930233Sbonwick 
10073b2aab18SMatthew Ahrens typedef struct dsl_dataset_snapshot_arg {
10083b2aab18SMatthew Ahrens 	nvlist_t *ddsa_snaps;
10093b2aab18SMatthew Ahrens 	nvlist_t *ddsa_props;
10103b2aab18SMatthew Ahrens 	nvlist_t *ddsa_errors;
1011a2afb611SJerry Jelinek 	cred_t *ddsa_cr;
10123b2aab18SMatthew Ahrens } dsl_dataset_snapshot_arg_t;
1013842727c2SChris Kirby 
10143cb34c60Sahrens int
10153b2aab18SMatthew Ahrens dsl_dataset_snapshot_check_impl(dsl_dataset_t *ds, const char *snapname,
1016a2afb611SJerry Jelinek     dmu_tx_t *tx, boolean_t recv, uint64_t cnt, cred_t *cr)
10171d452cf5Sahrens {
10183b2aab18SMatthew Ahrens 	int error;
10193b2aab18SMatthew Ahrens 	uint64_t value;
1020fa9e4066Sahrens 
10213b2aab18SMatthew Ahrens 	ds->ds_trysnap_txg = tx->tx_txg;
1022745cd3c5Smaybee 
10233b2aab18SMatthew Ahrens 	if (!dmu_tx_is_syncing(tx))
1024842727c2SChris Kirby 		return (0);
1025fa9e4066Sahrens 
1026fa9e4066Sahrens 	/*
10273b2aab18SMatthew Ahrens 	 * We don't allow multiple snapshots of the same txg.  If there
10283b2aab18SMatthew Ahrens 	 * is already one, try again.
1029fa9e4066Sahrens 	 */
1030c1379625SJustin T. Gibbs 	if (dsl_dataset_phys(ds)->ds_prev_snap_txg >= tx->tx_txg)
1031be6fd75aSMatthew Ahrens 		return (SET_ERROR(EAGAIN));
1032fa9e4066Sahrens 
1033fa9e4066Sahrens 	/*
10343b2aab18SMatthew Ahrens 	 * Check for conflicting snapshot name.
1035fa9e4066Sahrens 	 */
10363b2aab18SMatthew Ahrens 	error = dsl_dataset_snap_lookup(ds, snapname, &value);
10373b2aab18SMatthew Ahrens 	if (error == 0)
1038be6fd75aSMatthew Ahrens 		return (SET_ERROR(EEXIST));
10393b2aab18SMatthew Ahrens 	if (error != ENOENT)
10403b2aab18SMatthew Ahrens 		return (error);
1041842727c2SChris Kirby 
1042ca48f36fSKeith M Wesolowski 	/*
1043ca48f36fSKeith M Wesolowski 	 * We don't allow taking snapshots of inconsistent datasets, such as
1044ca48f36fSKeith M Wesolowski 	 * those into which we are currently receiving.  However, if we are
1045ca48f36fSKeith M Wesolowski 	 * creating this snapshot as part of a receive, this check will be
1046ca48f36fSKeith M Wesolowski 	 * executed atomically with respect to the completion of the receive
1047ca48f36fSKeith M Wesolowski 	 * itself but prior to the clearing of DS_FLAG_INCONSISTENT; in this
1048ca48f36fSKeith M Wesolowski 	 * case we ignore this, knowing it will be fixed up for us shortly in
1049ca48f36fSKeith M Wesolowski 	 * dmu_recv_end_sync().
1050ca48f36fSKeith M Wesolowski 	 */
1051ca48f36fSKeith M Wesolowski 	if (!recv && DS_IS_INCONSISTENT(ds))
1052ca48f36fSKeith M Wesolowski 		return (SET_ERROR(EBUSY));
1053ca48f36fSKeith M Wesolowski 
1054a2afb611SJerry Jelinek 	/*
1055a2afb611SJerry Jelinek 	 * Skip the check for temporary snapshots or if we have already checked
1056a2afb611SJerry Jelinek 	 * the counts in dsl_dataset_snapshot_check. This means we really only
1057a2afb611SJerry Jelinek 	 * check the count here when we're receiving a stream.
1058a2afb611SJerry Jelinek 	 */
1059a2afb611SJerry Jelinek 	if (cnt != 0 && cr != NULL) {
1060a2afb611SJerry Jelinek 		error = dsl_fs_ss_limit_check(ds->ds_dir, cnt,
1061a2afb611SJerry Jelinek 		    ZFS_PROP_SNAPSHOT_LIMIT, NULL, cr);
1062a2afb611SJerry Jelinek 		if (error != 0)
1063a2afb611SJerry Jelinek 			return (error);
1064a2afb611SJerry Jelinek 	}
1065a2afb611SJerry Jelinek 
10663b2aab18SMatthew Ahrens 	error = dsl_dataset_snapshot_reserve_space(ds, tx);
10673b2aab18SMatthew Ahrens 	if (error != 0)
10683b2aab18SMatthew Ahrens 		return (error);
1069842727c2SChris Kirby 
10701d452cf5Sahrens 	return (0);
10711d452cf5Sahrens }
10721d452cf5Sahrens 
10733b2aab18SMatthew Ahrens static int
10743b2aab18SMatthew Ahrens dsl_dataset_snapshot_check(void *arg, dmu_tx_t *tx)
1075745cd3c5Smaybee {
10763b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_arg_t *ddsa = arg;
10773b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
10783b2aab18SMatthew Ahrens 	nvpair_t *pair;
10793b2aab18SMatthew Ahrens 	int rv = 0;
10803b2aab18SMatthew Ahrens 
1081a2afb611SJerry Jelinek 	/*
1082a2afb611SJerry Jelinek 	 * Pre-compute how many total new snapshots will be created for each
1083a2afb611SJerry Jelinek 	 * level in the tree and below. This is needed for validating the
1084a2afb611SJerry Jelinek 	 * snapshot limit when either taking a recursive snapshot or when
1085a2afb611SJerry Jelinek 	 * taking multiple snapshots.
1086a2afb611SJerry Jelinek 	 *
1087a2afb611SJerry Jelinek 	 * The problem is that the counts are not actually adjusted when
1088a2afb611SJerry Jelinek 	 * we are checking, only when we finally sync. For a single snapshot,
1089a2afb611SJerry Jelinek 	 * this is easy, the count will increase by 1 at each node up the tree,
1090a2afb611SJerry Jelinek 	 * but its more complicated for the recursive/multiple snapshot case.
1091a2afb611SJerry Jelinek 	 *
1092a2afb611SJerry Jelinek 	 * The dsl_fs_ss_limit_check function does recursively check the count
1093a2afb611SJerry Jelinek 	 * at each level up the tree but since it is validating each snapshot
1094a2afb611SJerry Jelinek 	 * independently we need to be sure that we are validating the complete
1095a2afb611SJerry Jelinek 	 * count for the entire set of snapshots. We do this by rolling up the
1096a2afb611SJerry Jelinek 	 * counts for each component of the name into an nvlist and then
1097a2afb611SJerry Jelinek 	 * checking each of those cases with the aggregated count.
1098a2afb611SJerry Jelinek 	 *
1099a2afb611SJerry Jelinek 	 * This approach properly handles not only the recursive snapshot
1100a2afb611SJerry Jelinek 	 * case (where we get all of those on the ddsa_snaps list) but also
1101a2afb611SJerry Jelinek 	 * the sibling case (e.g. snapshot a/b and a/c so that we will also
1102a2afb611SJerry Jelinek 	 * validate the limit on 'a' using a count of 2).
1103a2afb611SJerry Jelinek 	 *
1104a2afb611SJerry Jelinek 	 * We validate the snapshot names in the third loop and only report
1105a2afb611SJerry Jelinek 	 * name errors once.
1106a2afb611SJerry Jelinek 	 */
1107a2afb611SJerry Jelinek 	if (dmu_tx_is_syncing(tx)) {
1108a2afb611SJerry Jelinek 		nvlist_t *cnt_track = NULL;
1109a2afb611SJerry Jelinek 		cnt_track = fnvlist_alloc();
1110a2afb611SJerry Jelinek 
1111a2afb611SJerry Jelinek 		/* Rollup aggregated counts into the cnt_track list */
1112a2afb611SJerry Jelinek 		for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
1113a2afb611SJerry Jelinek 		    pair != NULL;
1114a2afb611SJerry Jelinek 		    pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
1115a2afb611SJerry Jelinek 			char *pdelim;
1116a2afb611SJerry Jelinek 			uint64_t val;
1117a2afb611SJerry Jelinek 			char nm[MAXPATHLEN];
1118a2afb611SJerry Jelinek 
1119a2afb611SJerry Jelinek 			(void) strlcpy(nm, nvpair_name(pair), sizeof (nm));
1120a2afb611SJerry Jelinek 			pdelim = strchr(nm, '@');
1121a2afb611SJerry Jelinek 			if (pdelim == NULL)
1122a2afb611SJerry Jelinek 				continue;
1123a2afb611SJerry Jelinek 			*pdelim = '\0';
1124a2afb611SJerry Jelinek 
1125a2afb611SJerry Jelinek 			do {
1126a2afb611SJerry Jelinek 				if (nvlist_lookup_uint64(cnt_track, nm,
1127a2afb611SJerry Jelinek 				    &val) == 0) {
1128a2afb611SJerry Jelinek 					/* update existing entry */
1129a2afb611SJerry Jelinek 					fnvlist_add_uint64(cnt_track, nm,
1130a2afb611SJerry Jelinek 					    val + 1);
1131a2afb611SJerry Jelinek 				} else {
1132a2afb611SJerry Jelinek 					/* add to list */
1133a2afb611SJerry Jelinek 					fnvlist_add_uint64(cnt_track, nm, 1);
1134a2afb611SJerry Jelinek 				}
1135a2afb611SJerry Jelinek 
1136a2afb611SJerry Jelinek 				pdelim = strrchr(nm, '/');
1137a2afb611SJerry Jelinek 				if (pdelim != NULL)
1138a2afb611SJerry Jelinek 					*pdelim = '\0';
1139a2afb611SJerry Jelinek 			} while (pdelim != NULL);
1140a2afb611SJerry Jelinek 		}
1141a2afb611SJerry Jelinek 
1142a2afb611SJerry Jelinek 		/* Check aggregated counts at each level */
1143a2afb611SJerry Jelinek 		for (pair = nvlist_next_nvpair(cnt_track, NULL);
1144a2afb611SJerry Jelinek 		    pair != NULL; pair = nvlist_next_nvpair(cnt_track, pair)) {
1145a2afb611SJerry Jelinek 			int error = 0;
1146a2afb611SJerry Jelinek 			char *name;
1147a2afb611SJerry Jelinek 			uint64_t cnt = 0;
1148a2afb611SJerry Jelinek 			dsl_dataset_t *ds;
1149a2afb611SJerry Jelinek 
1150a2afb611SJerry Jelinek 			name = nvpair_name(pair);
1151a2afb611SJerry Jelinek 			cnt = fnvpair_value_uint64(pair);
1152a2afb611SJerry Jelinek 			ASSERT(cnt > 0);
1153a2afb611SJerry Jelinek 
1154a2afb611SJerry Jelinek 			error = dsl_dataset_hold(dp, name, FTAG, &ds);
1155a2afb611SJerry Jelinek 			if (error == 0) {
1156a2afb611SJerry Jelinek 				error = dsl_fs_ss_limit_check(ds->ds_dir, cnt,
1157a2afb611SJerry Jelinek 				    ZFS_PROP_SNAPSHOT_LIMIT, NULL,
1158a2afb611SJerry Jelinek 				    ddsa->ddsa_cr);
1159a2afb611SJerry Jelinek 				dsl_dataset_rele(ds, FTAG);
1160a2afb611SJerry Jelinek 			}
1161a2afb611SJerry Jelinek 
1162a2afb611SJerry Jelinek 			if (error != 0) {
1163a2afb611SJerry Jelinek 				if (ddsa->ddsa_errors != NULL)
1164a2afb611SJerry Jelinek 					fnvlist_add_int32(ddsa->ddsa_errors,
1165a2afb611SJerry Jelinek 					    name, error);
1166a2afb611SJerry Jelinek 				rv = error;
1167a2afb611SJerry Jelinek 				/* only report one error for this check */
1168a2afb611SJerry Jelinek 				break;
1169a2afb611SJerry Jelinek 			}
1170a2afb611SJerry Jelinek 		}
1171a2afb611SJerry Jelinek 		nvlist_free(cnt_track);
1172a2afb611SJerry Jelinek 	}
1173a2afb611SJerry Jelinek 
11743b2aab18SMatthew Ahrens 	for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
11753b2aab18SMatthew Ahrens 	    pair != NULL; pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
11763b2aab18SMatthew Ahrens 		int error = 0;
11773b2aab18SMatthew Ahrens 		dsl_dataset_t *ds;
11783b2aab18SMatthew Ahrens 		char *name, *atp;
11793b2aab18SMatthew Ahrens 		char dsname[MAXNAMELEN];
11803b2aab18SMatthew Ahrens 
11813b2aab18SMatthew Ahrens 		name = nvpair_name(pair);
11823b2aab18SMatthew Ahrens 		if (strlen(name) >= MAXNAMELEN)
1183be6fd75aSMatthew Ahrens 			error = SET_ERROR(ENAMETOOLONG);
11843b2aab18SMatthew Ahrens 		if (error == 0) {
11853b2aab18SMatthew Ahrens 			atp = strchr(name, '@');
11863b2aab18SMatthew Ahrens 			if (atp == NULL)
1187be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
11883b2aab18SMatthew Ahrens 			if (error == 0)
11893b2aab18SMatthew Ahrens 				(void) strlcpy(dsname, name, atp - name + 1);
11903b2aab18SMatthew Ahrens 		}
11913b2aab18SMatthew Ahrens 		if (error == 0)
11923b2aab18SMatthew Ahrens 			error = dsl_dataset_hold(dp, dsname, FTAG, &ds);
11933b2aab18SMatthew Ahrens 		if (error == 0) {
1194a2afb611SJerry Jelinek 			/* passing 0/NULL skips dsl_fs_ss_limit_check */
11953b2aab18SMatthew Ahrens 			error = dsl_dataset_snapshot_check_impl(ds,
1196a2afb611SJerry Jelinek 			    atp + 1, tx, B_FALSE, 0, NULL);
11973b2aab18SMatthew Ahrens 			dsl_dataset_rele(ds, FTAG);
11983b2aab18SMatthew Ahrens 		}
1199745cd3c5Smaybee 
12003b2aab18SMatthew Ahrens 		if (error != 0) {
12013b2aab18SMatthew Ahrens 			if (ddsa->ddsa_errors != NULL) {
12023b2aab18SMatthew Ahrens 				fnvlist_add_int32(ddsa->ddsa_errors,
12033b2aab18SMatthew Ahrens 				    name, error);
12043b2aab18SMatthew Ahrens 			}
12053b2aab18SMatthew Ahrens 			rv = error;
12063b2aab18SMatthew Ahrens 		}
12073b2aab18SMatthew Ahrens 	}
1208a2afb611SJerry Jelinek 
12093b2aab18SMatthew Ahrens 	return (rv);
1210745cd3c5Smaybee }
1211745cd3c5Smaybee 
12123b2aab18SMatthew Ahrens void
12133b2aab18SMatthew Ahrens dsl_dataset_snapshot_sync_impl(dsl_dataset_t *ds, const char *snapname,
12143b2aab18SMatthew Ahrens     dmu_tx_t *tx)
1215745cd3c5Smaybee {
12163b2aab18SMatthew Ahrens 	static zil_header_t zero_zil;
1217745cd3c5Smaybee 
12183b2aab18SMatthew Ahrens 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
12193b2aab18SMatthew Ahrens 	dmu_buf_t *dbuf;
12203b2aab18SMatthew Ahrens 	dsl_dataset_phys_t *dsphys;
12213b2aab18SMatthew Ahrens 	uint64_t dsobj, crtxg;
12223b2aab18SMatthew Ahrens 	objset_t *mos = dp->dp_meta_objset;
12233b2aab18SMatthew Ahrens 	objset_t *os;
1224745cd3c5Smaybee 
12253b2aab18SMatthew Ahrens 	ASSERT(RRW_WRITE_HELD(&dp->dp_config_rwlock));
1226c33e334fSMatthew Ahrens 
1227c33e334fSMatthew Ahrens 	/*
12283b2aab18SMatthew Ahrens 	 * If we are on an old pool, the zil must not be active, in which
12293b2aab18SMatthew Ahrens 	 * case it will be zeroed.  Usually zil_suspend() accomplishes this.
1230c33e334fSMatthew Ahrens 	 */
12313b2aab18SMatthew Ahrens 	ASSERT(spa_version(dmu_tx_pool(tx)->dp_spa) >= SPA_VERSION_FAST_SNAP ||
12323b2aab18SMatthew Ahrens 	    dmu_objset_from_ds(ds, &os) != 0 ||
12333b2aab18SMatthew Ahrens 	    bcmp(&os->os_phys->os_zil_header, &zero_zil,
12343b2aab18SMatthew Ahrens 	    sizeof (zero_zil)) == 0);
1235c33e334fSMatthew Ahrens 
1236a2afb611SJerry Jelinek 	dsl_fs_ss_count_adjust(ds->ds_dir, 1, DD_FIELD_SNAPSHOT_COUNT, tx);
1237cde58dbcSMatthew Ahrens 
1238cde58dbcSMatthew Ahrens 	/*
12393b2aab18SMatthew Ahrens 	 * The origin's ds_creation_txg has to be < TXG_INITIAL
1240088f3894Sahrens 	 */
1241088f3894Sahrens 	if (strcmp(snapname, ORIGIN_DIR_NAME) == 0)
1242088f3894Sahrens 		crtxg = 1;
1243088f3894Sahrens 	else
1244088f3894Sahrens 		crtxg = tx->tx_txg;
1245088f3894Sahrens 
12461649cd4bStabriz 	dsobj = dmu_object_alloc(mos, DMU_OT_DSL_DATASET, 0,
12471649cd4bStabriz 	    DMU_OT_DSL_DATASET, sizeof (dsl_dataset_phys_t), tx);
12483b2aab18SMatthew Ahrens 	VERIFY0(dmu_bonus_hold(mos, dsobj, FTAG, &dbuf));
1249fa9e4066Sahrens 	dmu_buf_will_dirty(dbuf, tx);
1250fa9e4066Sahrens 	dsphys = dbuf->db_data;
1251745cd3c5Smaybee 	bzero(dsphys, sizeof (dsl_dataset_phys_t));
12521d452cf5Sahrens 	dsphys->ds_dir_obj = ds->ds_dir->dd_object;
1253fa9e4066Sahrens 	dsphys->ds_fsid_guid = unique_create();
1254fa9e4066Sahrens 	(void) random_get_pseudo_bytes((void*)&dsphys->ds_guid,
1255fa9e4066Sahrens 	    sizeof (dsphys->ds_guid));
1256c1379625SJustin T. Gibbs 	dsphys->ds_prev_snap_obj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
1257c1379625SJustin T. Gibbs 	dsphys->ds_prev_snap_txg = dsl_dataset_phys(ds)->ds_prev_snap_txg;
1258fa9e4066Sahrens 	dsphys->ds_next_snap_obj = ds->ds_object;
1259fa9e4066Sahrens 	dsphys->ds_num_children = 1;
1260fa9e4066Sahrens 	dsphys->ds_creation_time = gethrestime_sec();
1261088f3894Sahrens 	dsphys->ds_creation_txg = crtxg;
1262c1379625SJustin T. Gibbs 	dsphys->ds_deadlist_obj = dsl_dataset_phys(ds)->ds_deadlist_obj;
1263c1379625SJustin T. Gibbs 	dsphys->ds_referenced_bytes = dsl_dataset_phys(ds)->ds_referenced_bytes;
1264c1379625SJustin T. Gibbs 	dsphys->ds_compressed_bytes = dsl_dataset_phys(ds)->ds_compressed_bytes;
1265c1379625SJustin T. Gibbs 	dsphys->ds_uncompressed_bytes =
1266c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_uncompressed_bytes;
1267c1379625SJustin T. Gibbs 	dsphys->ds_flags = dsl_dataset_phys(ds)->ds_flags;
1268c1379625SJustin T. Gibbs 	dsphys->ds_bp = dsl_dataset_phys(ds)->ds_bp;
1269ea8dc4b6Seschrock 	dmu_buf_rele(dbuf, FTAG);
1270fa9e4066Sahrens 
1271b5152584SMatthew Ahrens 	if (ds->ds_large_blocks)
1272b5152584SMatthew Ahrens 		dsl_dataset_activate_large_blocks_sync_impl(dsobj, tx);
1273b5152584SMatthew Ahrens 
1274c1379625SJustin T. Gibbs 	ASSERT3U(ds->ds_prev != 0, ==,
1275c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_prev_snap_obj != 0);
12761d452cf5Sahrens 	if (ds->ds_prev) {
1277088f3894Sahrens 		uint64_t next_clones_obj =
1278c1379625SJustin T. Gibbs 		    dsl_dataset_phys(ds->ds_prev)->ds_next_clones_obj;
1279c1379625SJustin T. Gibbs 		ASSERT(dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj ==
1280fa9e4066Sahrens 		    ds->ds_object ||
1281c1379625SJustin T. Gibbs 		    dsl_dataset_phys(ds->ds_prev)->ds_num_children > 1);
1282c1379625SJustin T. Gibbs 		if (dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj ==
1283c1379625SJustin T. Gibbs 		    ds->ds_object) {
12841d452cf5Sahrens 			dmu_buf_will_dirty(ds->ds_prev->ds_dbuf, tx);
1285c1379625SJustin T. Gibbs 			ASSERT3U(dsl_dataset_phys(ds)->ds_prev_snap_txg, ==,
1286c1379625SJustin T. Gibbs 			    dsl_dataset_phys(ds->ds_prev)->ds_creation_txg);
1287c1379625SJustin T. Gibbs 			dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj = dsobj;
1288088f3894Sahrens 		} else if (next_clones_obj != 0) {
12893b2aab18SMatthew Ahrens 			dsl_dataset_remove_from_next_clones(ds->ds_prev,
1290c33e334fSMatthew Ahrens 			    dsphys->ds_next_snap_obj, tx);
12913b2aab18SMatthew Ahrens 			VERIFY0(zap_add_int(mos,
1292088f3894Sahrens 			    next_clones_obj, dsobj, tx));
1293fa9e4066Sahrens 		}
1294fa9e4066Sahrens 	}
1295fa9e4066Sahrens 
1296a9799022Sck 	/*
1297a9799022Sck 	 * If we have a reference-reservation on this dataset, we will
1298a9799022Sck 	 * need to increase the amount of refreservation being charged
1299a9799022Sck 	 * since our unique space is going to zero.
1300a9799022Sck 	 */
1301a9799022Sck 	if (ds->ds_reserved) {
13023f9d6ad7SLin Ling 		int64_t delta;
13033f9d6ad7SLin Ling 		ASSERT(DS_UNIQUE_IS_ACCURATE(ds));
1304c1379625SJustin T. Gibbs 		delta = MIN(dsl_dataset_phys(ds)->ds_unique_bytes,
1305c1379625SJustin T. Gibbs 		    ds->ds_reserved);
130674e7dc98SMatthew Ahrens 		dsl_dir_diduse_space(ds->ds_dir, DD_USED_REFRSRV,
13073f9d6ad7SLin Ling 		    delta, 0, 0, tx);
1308a9799022Sck 	}
1309a9799022Sck 
1310fa9e4066Sahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
1311c1379625SJustin T. Gibbs 	dsl_dataset_phys(ds)->ds_deadlist_obj =
1312c1379625SJustin T. Gibbs 	    dsl_deadlist_clone(&ds->ds_deadlist, UINT64_MAX,
1313c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_prev_snap_obj, tx);
1314cde58dbcSMatthew Ahrens 	dsl_deadlist_close(&ds->ds_deadlist);
1315c1379625SJustin T. Gibbs 	dsl_deadlist_open(&ds->ds_deadlist, mos,
1316c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_deadlist_obj);
1317cde58dbcSMatthew Ahrens 	dsl_deadlist_add_key(&ds->ds_deadlist,
1318c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_prev_snap_txg, tx);
1319cde58dbcSMatthew Ahrens 
1320c1379625SJustin T. Gibbs 	ASSERT3U(dsl_dataset_phys(ds)->ds_prev_snap_txg, <, tx->tx_txg);
1321c1379625SJustin T. Gibbs 	dsl_dataset_phys(ds)->ds_prev_snap_obj = dsobj;
1322c1379625SJustin T. Gibbs 	dsl_dataset_phys(ds)->ds_prev_snap_txg = crtxg;
1323c1379625SJustin T. Gibbs 	dsl_dataset_phys(ds)->ds_unique_bytes = 0;
1324a9799022Sck 	if (spa_version(dp->dp_spa) >= SPA_VERSION_UNIQUE_ACCURATE)
1325c1379625SJustin T. Gibbs 		dsl_dataset_phys(ds)->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
1326fa9e4066Sahrens 
1327c1379625SJustin T. Gibbs 	VERIFY0(zap_add(mos, dsl_dataset_phys(ds)->ds_snapnames_zapobj,
13283b2aab18SMatthew Ahrens 	    snapname, 8, 1, &dsobj, tx));
1329fa9e4066Sahrens 
1330fa9e4066Sahrens 	if (ds->ds_prev)
13313b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds->ds_prev, ds);
13323b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold_obj(dp,
1333c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_prev_snap_obj, ds, &ds->ds_prev));
1334ecd6cf80Smarks 
13353f9d6ad7SLin Ling 	dsl_scan_ds_snapshotted(ds, tx);
1336088f3894Sahrens 
133771eb0538SChris Kirby 	dsl_dir_snap_cmtime_update(ds->ds_dir);
133871eb0538SChris Kirby 
13394445fffbSMatthew Ahrens 	spa_history_log_internal_ds(ds->ds_prev, "snapshot", tx, "");
1340fa9e4066Sahrens }
1341fa9e4066Sahrens 
13423b2aab18SMatthew Ahrens static void
13433b2aab18SMatthew Ahrens dsl_dataset_snapshot_sync(void *arg, dmu_tx_t *tx)
1344fa9e4066Sahrens {
13453b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_arg_t *ddsa = arg;
13463b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
13473b2aab18SMatthew Ahrens 	nvpair_t *pair;
134891ebeef5Sahrens 
13493b2aab18SMatthew Ahrens 	for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
13503b2aab18SMatthew Ahrens 	    pair != NULL; pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
13513b2aab18SMatthew Ahrens 		dsl_dataset_t *ds;
13523b2aab18SMatthew Ahrens 		char *name, *atp;
13533b2aab18SMatthew Ahrens 		char dsname[MAXNAMELEN];
13543b2aab18SMatthew Ahrens 
13553b2aab18SMatthew Ahrens 		name = nvpair_name(pair);
13563b2aab18SMatthew Ahrens 		atp = strchr(name, '@');
13573b2aab18SMatthew Ahrens 		(void) strlcpy(dsname, name, atp - name + 1);
13583b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold(dp, dsname, FTAG, &ds));
13593b2aab18SMatthew Ahrens 
13603b2aab18SMatthew Ahrens 		dsl_dataset_snapshot_sync_impl(ds, atp + 1, tx);
13613b2aab18SMatthew Ahrens 		if (ddsa->ddsa_props != NULL) {
13623b2aab18SMatthew Ahrens 			dsl_props_set_sync_impl(ds->ds_prev,
13633b2aab18SMatthew Ahrens 			    ZPROP_SRC_LOCAL, ddsa->ddsa_props, tx);
13643b2aab18SMatthew Ahrens 		}
13653b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
13663b2aab18SMatthew Ahrens 	}
1367fa9e4066Sahrens }
1368fa9e4066Sahrens 
13693b2aab18SMatthew Ahrens /*
13703b2aab18SMatthew Ahrens  * The snapshots must all be in the same pool.
13713b2aab18SMatthew Ahrens  * All-or-nothing: if there are any failures, nothing will be modified.
13723b2aab18SMatthew Ahrens  */
13733b2aab18SMatthew Ahrens int
13743b2aab18SMatthew Ahrens dsl_dataset_snapshot(nvlist_t *snaps, nvlist_t *props, nvlist_t *errors)
137519b94df9SMatthew Ahrens {
13763b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_arg_t ddsa;
13773b2aab18SMatthew Ahrens 	nvpair_t *pair;
13783b2aab18SMatthew Ahrens 	boolean_t needsuspend;
13793b2aab18SMatthew Ahrens 	int error;
13803b2aab18SMatthew Ahrens 	spa_t *spa;
13813b2aab18SMatthew Ahrens 	char *firstname;
13823b2aab18SMatthew Ahrens 	nvlist_t *suspended = NULL;
138319b94df9SMatthew Ahrens 
13843b2aab18SMatthew Ahrens 	pair = nvlist_next_nvpair(snaps, NULL);
13853b2aab18SMatthew Ahrens 	if (pair == NULL)
13863b2aab18SMatthew Ahrens 		return (0);
13873b2aab18SMatthew Ahrens 	firstname = nvpair_name(pair);
13883b2aab18SMatthew Ahrens 
13893b2aab18SMatthew Ahrens 	error = spa_open(firstname, &spa, FTAG);
13903b2aab18SMatthew Ahrens 	if (error != 0)
13913b2aab18SMatthew Ahrens 		return (error);
13923b2aab18SMatthew Ahrens 	needsuspend = (spa_version(spa) < SPA_VERSION_FAST_SNAP);
13933b2aab18SMatthew Ahrens 	spa_close(spa, FTAG);
13943b2aab18SMatthew Ahrens 
13953b2aab18SMatthew Ahrens 	if (needsuspend) {
13963b2aab18SMatthew Ahrens 		suspended = fnvlist_alloc();
13973b2aab18SMatthew Ahrens 		for (pair = nvlist_next_nvpair(snaps, NULL); pair != NULL;
13983b2aab18SMatthew Ahrens 		    pair = nvlist_next_nvpair(snaps, pair)) {
13993b2aab18SMatthew Ahrens 			char fsname[MAXNAMELEN];
14003b2aab18SMatthew Ahrens 			char *snapname = nvpair_name(pair);
14013b2aab18SMatthew Ahrens 			char *atp;
14023b2aab18SMatthew Ahrens 			void *cookie;
14033b2aab18SMatthew Ahrens 
14043b2aab18SMatthew Ahrens 			atp = strchr(snapname, '@');
14053b2aab18SMatthew Ahrens 			if (atp == NULL) {
1406be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
14073b2aab18SMatthew Ahrens 				break;
14083b2aab18SMatthew Ahrens 			}
14093b2aab18SMatthew Ahrens 			(void) strlcpy(fsname, snapname, atp - snapname + 1);
14103b2aab18SMatthew Ahrens 
14113b2aab18SMatthew Ahrens 			error = zil_suspend(fsname, &cookie);
14123b2aab18SMatthew Ahrens 			if (error != 0)
14133b2aab18SMatthew Ahrens 				break;
14143b2aab18SMatthew Ahrens 			fnvlist_add_uint64(suspended, fsname,
14153b2aab18SMatthew Ahrens 			    (uintptr_t)cookie);
14163b2aab18SMatthew Ahrens 		}
14173b2aab18SMatthew Ahrens 	}
14183b2aab18SMatthew Ahrens 
14193b2aab18SMatthew Ahrens 	ddsa.ddsa_snaps = snaps;
14203b2aab18SMatthew Ahrens 	ddsa.ddsa_props = props;
14213b2aab18SMatthew Ahrens 	ddsa.ddsa_errors = errors;
1422a2afb611SJerry Jelinek 	ddsa.ddsa_cr = CRED();
14233b2aab18SMatthew Ahrens 
14243b2aab18SMatthew Ahrens 	if (error == 0) {
14253b2aab18SMatthew Ahrens 		error = dsl_sync_task(firstname, dsl_dataset_snapshot_check,
14263b2aab18SMatthew Ahrens 		    dsl_dataset_snapshot_sync, &ddsa,
14277d46dc6cSMatthew Ahrens 		    fnvlist_num_pairs(snaps) * 3, ZFS_SPACE_CHECK_NORMAL);
14283b2aab18SMatthew Ahrens 	}
14293b2aab18SMatthew Ahrens 
14303b2aab18SMatthew Ahrens 	if (suspended != NULL) {
14313b2aab18SMatthew Ahrens 		for (pair = nvlist_next_nvpair(suspended, NULL); pair != NULL;
14323b2aab18SMatthew Ahrens 		    pair = nvlist_next_nvpair(suspended, pair)) {
14333b2aab18SMatthew Ahrens 			zil_resume((void *)(uintptr_t)
14343b2aab18SMatthew Ahrens 			    fnvpair_value_uint64(pair));
14353b2aab18SMatthew Ahrens 		}
14363b2aab18SMatthew Ahrens 		fnvlist_free(suspended);
14373b2aab18SMatthew Ahrens 	}
14383b2aab18SMatthew Ahrens 
14393b2aab18SMatthew Ahrens 	return (error);
14403b2aab18SMatthew Ahrens }
14413b2aab18SMatthew Ahrens 
14423b2aab18SMatthew Ahrens typedef struct dsl_dataset_snapshot_tmp_arg {
14433b2aab18SMatthew Ahrens 	const char *ddsta_fsname;
14443b2aab18SMatthew Ahrens 	const char *ddsta_snapname;
14453b2aab18SMatthew Ahrens 	minor_t ddsta_cleanup_minor;
14463b2aab18SMatthew Ahrens 	const char *ddsta_htag;
14473b2aab18SMatthew Ahrens } dsl_dataset_snapshot_tmp_arg_t;
14483b2aab18SMatthew Ahrens 
14493b2aab18SMatthew Ahrens static int
14503b2aab18SMatthew Ahrens dsl_dataset_snapshot_tmp_check(void *arg, dmu_tx_t *tx)
14513b2aab18SMatthew Ahrens {
14523b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_tmp_arg_t *ddsta = arg;
14533b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
14543b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
14553b2aab18SMatthew Ahrens 	int error;
14563b2aab18SMatthew Ahrens 
14573b2aab18SMatthew Ahrens 	error = dsl_dataset_hold(dp, ddsta->ddsta_fsname, FTAG, &ds);
14583b2aab18SMatthew Ahrens 	if (error != 0)
14593b2aab18SMatthew Ahrens 		return (error);
14603b2aab18SMatthew Ahrens 
1461a2afb611SJerry Jelinek 	/* NULL cred means no limit check for tmp snapshot */
1462ca48f36fSKeith M Wesolowski 	error = dsl_dataset_snapshot_check_impl(ds, ddsta->ddsta_snapname,
1463a2afb611SJerry Jelinek 	    tx, B_FALSE, 0, NULL);
14643b2aab18SMatthew Ahrens 	if (error != 0) {
14653b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
14663b2aab18SMatthew Ahrens 		return (error);
14673b2aab18SMatthew Ahrens 	}
14683b2aab18SMatthew Ahrens 
14693b2aab18SMatthew Ahrens 	if (spa_version(dp->dp_spa) < SPA_VERSION_USERREFS) {
14703b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
1471be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOTSUP));
14723b2aab18SMatthew Ahrens 	}
14733b2aab18SMatthew Ahrens 	error = dsl_dataset_user_hold_check_one(NULL, ddsta->ddsta_htag,
14743b2aab18SMatthew Ahrens 	    B_TRUE, tx);
14753b2aab18SMatthew Ahrens 	if (error != 0) {
14763b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
14773b2aab18SMatthew Ahrens 		return (error);
14783b2aab18SMatthew Ahrens 	}
14793b2aab18SMatthew Ahrens 
14803b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
14813b2aab18SMatthew Ahrens 	return (0);
14823b2aab18SMatthew Ahrens }
14833b2aab18SMatthew Ahrens 
14843b2aab18SMatthew Ahrens static void
14853b2aab18SMatthew Ahrens dsl_dataset_snapshot_tmp_sync(void *arg, dmu_tx_t *tx)
14863b2aab18SMatthew Ahrens {
14873b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_tmp_arg_t *ddsta = arg;
14883b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
14893b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
14903b2aab18SMatthew Ahrens 
14913b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold(dp, ddsta->ddsta_fsname, FTAG, &ds));
14923b2aab18SMatthew Ahrens 
14933b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_sync_impl(ds, ddsta->ddsta_snapname, tx);
14943b2aab18SMatthew Ahrens 	dsl_dataset_user_hold_sync_one(ds->ds_prev, ddsta->ddsta_htag,
14953b2aab18SMatthew Ahrens 	    ddsta->ddsta_cleanup_minor, gethrestime_sec(), tx);
14963b2aab18SMatthew Ahrens 	dsl_destroy_snapshot_sync_impl(ds->ds_prev, B_TRUE, tx);
14973b2aab18SMatthew Ahrens 
14983b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
14993b2aab18SMatthew Ahrens }
15003b2aab18SMatthew Ahrens 
15013b2aab18SMatthew Ahrens int
15023b2aab18SMatthew Ahrens dsl_dataset_snapshot_tmp(const char *fsname, const char *snapname,
15033b2aab18SMatthew Ahrens     minor_t cleanup_minor, const char *htag)
15043b2aab18SMatthew Ahrens {
15053b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_tmp_arg_t ddsta;
15063b2aab18SMatthew Ahrens 	int error;
15073b2aab18SMatthew Ahrens 	spa_t *spa;
15083b2aab18SMatthew Ahrens 	boolean_t needsuspend;
15093b2aab18SMatthew Ahrens 	void *cookie;
15103b2aab18SMatthew Ahrens 
15113b2aab18SMatthew Ahrens 	ddsta.ddsta_fsname = fsname;
15123b2aab18SMatthew Ahrens 	ddsta.ddsta_snapname = snapname;
15133b2aab18SMatthew Ahrens 	ddsta.ddsta_cleanup_minor = cleanup_minor;
15143b2aab18SMatthew Ahrens 	ddsta.ddsta_htag = htag;
15153b2aab18SMatthew Ahrens 
15163b2aab18SMatthew Ahrens 	error = spa_open(fsname, &spa, FTAG);
15173b2aab18SMatthew Ahrens 	if (error != 0)
15183b2aab18SMatthew Ahrens 		return (error);
15193b2aab18SMatthew Ahrens 	needsuspend = (spa_version(spa) < SPA_VERSION_FAST_SNAP);
15203b2aab18SMatthew Ahrens 	spa_close(spa, FTAG);
15213b2aab18SMatthew Ahrens 
15223b2aab18SMatthew Ahrens 	if (needsuspend) {
15233b2aab18SMatthew Ahrens 		error = zil_suspend(fsname, &cookie);
15243b2aab18SMatthew Ahrens 		if (error != 0)
15253b2aab18SMatthew Ahrens 			return (error);
15263b2aab18SMatthew Ahrens 	}
15273b2aab18SMatthew Ahrens 
15283b2aab18SMatthew Ahrens 	error = dsl_sync_task(fsname, dsl_dataset_snapshot_tmp_check,
15297d46dc6cSMatthew Ahrens 	    dsl_dataset_snapshot_tmp_sync, &ddsta, 3, ZFS_SPACE_CHECK_RESERVED);
15303b2aab18SMatthew Ahrens 
15313b2aab18SMatthew Ahrens 	if (needsuspend)
15323b2aab18SMatthew Ahrens 		zil_resume(cookie);
15333b2aab18SMatthew Ahrens 	return (error);
15343b2aab18SMatthew Ahrens }
15353b2aab18SMatthew Ahrens 
15363b2aab18SMatthew Ahrens 
15373b2aab18SMatthew Ahrens void
15383b2aab18SMatthew Ahrens dsl_dataset_sync(dsl_dataset_t *ds, zio_t *zio, dmu_tx_t *tx)
15393b2aab18SMatthew Ahrens {
15403b2aab18SMatthew Ahrens 	ASSERT(dmu_tx_is_syncing(tx));
15413b2aab18SMatthew Ahrens 	ASSERT(ds->ds_objset != NULL);
1542c1379625SJustin T. Gibbs 	ASSERT(dsl_dataset_phys(ds)->ds_next_snap_obj == 0);
15433b2aab18SMatthew Ahrens 
15443b2aab18SMatthew Ahrens 	/*
15453b2aab18SMatthew Ahrens 	 * in case we had to change ds_fsid_guid when we opened it,
15463b2aab18SMatthew Ahrens 	 * sync it out now.
15473b2aab18SMatthew Ahrens 	 */
15483b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
1549c1379625SJustin T. Gibbs 	dsl_dataset_phys(ds)->ds_fsid_guid = ds->ds_fsid_guid;
15503b2aab18SMatthew Ahrens 
15513b2aab18SMatthew Ahrens 	dmu_objset_sync(ds->ds_objset, zio, tx);
1552b5152584SMatthew Ahrens 
1553b5152584SMatthew Ahrens 	if (ds->ds_need_large_blocks && !ds->ds_large_blocks) {
1554b5152584SMatthew Ahrens 		dsl_dataset_activate_large_blocks_sync_impl(ds->ds_object, tx);
1555b5152584SMatthew Ahrens 		ds->ds_large_blocks = B_TRUE;
1556b5152584SMatthew Ahrens 	}
15573b2aab18SMatthew Ahrens }
15583b2aab18SMatthew Ahrens 
15593b2aab18SMatthew Ahrens static void
15603b2aab18SMatthew Ahrens get_clones_stat(dsl_dataset_t *ds, nvlist_t *nv)
15613b2aab18SMatthew Ahrens {
15623b2aab18SMatthew Ahrens 	uint64_t count = 0;
15633b2aab18SMatthew Ahrens 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
15643b2aab18SMatthew Ahrens 	zap_cursor_t zc;
15653b2aab18SMatthew Ahrens 	zap_attribute_t za;
15663b2aab18SMatthew Ahrens 	nvlist_t *propval = fnvlist_alloc();
15673b2aab18SMatthew Ahrens 	nvlist_t *val = fnvlist_alloc();
15683b2aab18SMatthew Ahrens 
15693b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool));
157019b94df9SMatthew Ahrens 
157119b94df9SMatthew Ahrens 	/*
15723b2aab18SMatthew Ahrens 	 * There may be missing entries in ds_next_clones_obj
157319b94df9SMatthew Ahrens 	 * due to a bug in a previous version of the code.
157419b94df9SMatthew Ahrens 	 * Only trust it if it has the right number of entries.
157519b94df9SMatthew Ahrens 	 */
1576c1379625SJustin T. Gibbs 	if (dsl_dataset_phys(ds)->ds_next_clones_obj != 0) {
1577c1379625SJustin T. Gibbs 		VERIFY0(zap_count(mos, dsl_dataset_phys(ds)->ds_next_clones_obj,
157819b94df9SMatthew Ahrens 		    &count));
157919b94df9SMatthew Ahrens 	}
1580c1379625SJustin T. Gibbs 	if (count != dsl_dataset_phys(ds)->ds_num_children - 1)
158119b94df9SMatthew Ahrens 		goto fail;
1582c1379625SJustin T. Gibbs 	for (zap_cursor_init(&zc, mos,
1583c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_next_clones_obj);
158419b94df9SMatthew Ahrens 	    zap_cursor_retrieve(&zc, &za) == 0;
158519b94df9SMatthew Ahrens 	    zap_cursor_advance(&zc)) {
158619b94df9SMatthew Ahrens 		dsl_dataset_t *clone;
158719b94df9SMatthew Ahrens 		char buf[ZFS_MAXNAMELEN];
15883b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(ds->ds_dir->dd_pool,
15893b2aab18SMatthew Ahrens 		    za.za_first_integer, FTAG, &clone));
159019b94df9SMatthew Ahrens 		dsl_dir_name(clone->ds_dir, buf);
15913b2aab18SMatthew Ahrens 		fnvlist_add_boolean(val, buf);
159219b94df9SMatthew Ahrens 		dsl_dataset_rele(clone, FTAG);
159319b94df9SMatthew Ahrens 	}
159419b94df9SMatthew Ahrens 	zap_cursor_fini(&zc);
15953b2aab18SMatthew Ahrens 	fnvlist_add_nvlist(propval, ZPROP_VALUE, val);
15963b2aab18SMatthew Ahrens 	fnvlist_add_nvlist(nv, zfs_prop_to_name(ZFS_PROP_CLONES), propval);
159719b94df9SMatthew Ahrens fail:
159819b94df9SMatthew Ahrens 	nvlist_free(val);
159919b94df9SMatthew Ahrens 	nvlist_free(propval);
160019b94df9SMatthew Ahrens }
160119b94df9SMatthew Ahrens 
1602fa9e4066Sahrens void
1603a2eea2e1Sahrens dsl_dataset_stats(dsl_dataset_t *ds, nvlist_t *nv)
1604fa9e4066Sahrens {
16053b2aab18SMatthew Ahrens 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
1606187d6ac0SMatt Ahrens 	uint64_t refd, avail, uobjs, aobjs, ratio;
1607a9799022Sck 
16083b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(dp));
16093b2aab18SMatthew Ahrens 
1610c1379625SJustin T. Gibbs 	ratio = dsl_dataset_phys(ds)->ds_compressed_bytes == 0 ? 100 :
1611c1379625SJustin T. Gibbs 	    (dsl_dataset_phys(ds)->ds_uncompressed_bytes * 100 /
1612c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_compressed_bytes);
16134445fffbSMatthew Ahrens 
16144445fffbSMatthew Ahrens 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFRATIO, ratio);
161577372cb0SMatthew Ahrens 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_LOGICALREFERENCED,
1616c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_uncompressed_bytes);
16174445fffbSMatthew Ahrens 
1618bc9014e6SJustin Gibbs 	if (ds->ds_is_snapshot) {
16194445fffbSMatthew Ahrens 		dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_COMPRESSRATIO, ratio);
16204445fffbSMatthew Ahrens 		dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_USED,
1621c1379625SJustin T. Gibbs 		    dsl_dataset_phys(ds)->ds_unique_bytes);
16224445fffbSMatthew Ahrens 		get_clones_stat(ds, nv);
16234445fffbSMatthew Ahrens 	} else {
1624b461c746SMatthew Ahrens 		if (ds->ds_prev != NULL && ds->ds_prev != dp->dp_origin_snap) {
1625b461c746SMatthew Ahrens 			char buf[MAXNAMELEN];
1626b461c746SMatthew Ahrens 			dsl_dataset_name(ds->ds_prev, buf);
1627b461c746SMatthew Ahrens 			dsl_prop_nvlist_add_string(nv, ZFS_PROP_PREV_SNAP, buf);
1628b461c746SMatthew Ahrens 		}
1629b461c746SMatthew Ahrens 
16304445fffbSMatthew Ahrens 		dsl_dir_stats(ds->ds_dir, nv);
16314445fffbSMatthew Ahrens 	}
1632fa9e4066Sahrens 
1633a9799022Sck 	dsl_dataset_space(ds, &refd, &avail, &uobjs, &aobjs);
1634a9799022Sck 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_AVAILABLE, avail);
1635a9799022Sck 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFERENCED, refd);
1636a9799022Sck 
1637a2eea2e1Sahrens 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_CREATION,
1638c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_creation_time);
1639a2eea2e1Sahrens 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_CREATETXG,
1640c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_creation_txg);
1641a9799022Sck 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFQUOTA,
1642a9799022Sck 	    ds->ds_quota);
1643a9799022Sck 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFRESERVATION,
1644a9799022Sck 	    ds->ds_reserved);
1645c5904d13Seschrock 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_GUID,
1646c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_guid);
16471d713200SEric Schrock 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_UNIQUE,
1648c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_unique_bytes);
16491d713200SEric Schrock 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_OBJSETID,
16501d713200SEric Schrock 	    ds->ds_object);
165192241e0bSTom Erickson 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_USERREFS,
165292241e0bSTom Erickson 	    ds->ds_userrefs);
1653842727c2SChris Kirby 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_DEFER_DESTROY,
1654842727c2SChris Kirby 	    DS_IS_DEFER_DESTROY(ds) ? 1 : 0);
1655fa9e4066Sahrens 
1656c1379625SJustin T. Gibbs 	if (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0) {
165719b94df9SMatthew Ahrens 		uint64_t written, comp, uncomp;
165819b94df9SMatthew Ahrens 		dsl_pool_t *dp = ds->ds_dir->dd_pool;
165919b94df9SMatthew Ahrens 		dsl_dataset_t *prev;
166019b94df9SMatthew Ahrens 
166119b94df9SMatthew Ahrens 		int err = dsl_dataset_hold_obj(dp,
1662c1379625SJustin T. Gibbs 		    dsl_dataset_phys(ds)->ds_prev_snap_obj, FTAG, &prev);
166319b94df9SMatthew Ahrens 		if (err == 0) {
166419b94df9SMatthew Ahrens 			err = dsl_dataset_space_written(prev, ds, &written,
166519b94df9SMatthew Ahrens 			    &comp, &uncomp);
166619b94df9SMatthew Ahrens 			dsl_dataset_rele(prev, FTAG);
166719b94df9SMatthew Ahrens 			if (err == 0) {
166819b94df9SMatthew Ahrens 				dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_WRITTEN,
166919b94df9SMatthew Ahrens 				    written);
167019b94df9SMatthew Ahrens 			}
167119b94df9SMatthew Ahrens 		}
167219b94df9SMatthew Ahrens 	}
1673fa9e4066Sahrens }
1674fa9e4066Sahrens 
1675a2eea2e1Sahrens void
1676a2eea2e1Sahrens dsl_dataset_fast_stat(dsl_dataset_t *ds, dmu_objset_stats_t *stat)
1677a2eea2e1Sahrens {
16783b2aab18SMatthew Ahrens 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
16793b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(dp));
16803b2aab18SMatthew Ahrens 
1681c1379625SJustin T. Gibbs 	stat->dds_creation_txg = dsl_dataset_phys(ds)->ds_creation_txg;
1682c1379625SJustin T. Gibbs 	stat->dds_inconsistent =
1683c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_flags & DS_FLAG_INCONSISTENT;
1684c1379625SJustin T. Gibbs 	stat->dds_guid = dsl_dataset_phys(ds)->ds_guid;
16854445fffbSMatthew Ahrens 	stat->dds_origin[0] = '\0';
1686bc9014e6SJustin Gibbs 	if (ds->ds_is_snapshot) {
1687a2eea2e1Sahrens 		stat->dds_is_snapshot = B_TRUE;
1688c1379625SJustin T. Gibbs 		stat->dds_num_clones =
1689c1379625SJustin T. Gibbs 		    dsl_dataset_phys(ds)->ds_num_children - 1;
1690ebedde84SEric Taylor 	} else {
1691ebedde84SEric Taylor 		stat->dds_is_snapshot = B_FALSE;
1692ebedde84SEric Taylor 		stat->dds_num_clones = 0;
1693a2eea2e1Sahrens 
16944445fffbSMatthew Ahrens 		if (dsl_dir_is_clone(ds->ds_dir)) {
16954445fffbSMatthew Ahrens 			dsl_dataset_t *ods;
1696a2eea2e1Sahrens 
16973b2aab18SMatthew Ahrens 			VERIFY0(dsl_dataset_hold_obj(dp,
1698c1379625SJustin T. Gibbs 			    dsl_dir_phys(ds->ds_dir)->dd_origin_obj,
1699c1379625SJustin T. Gibbs 			    FTAG, &ods));
17004445fffbSMatthew Ahrens 			dsl_dataset_name(ods, stat->dds_origin);
17013b2aab18SMatthew Ahrens 			dsl_dataset_rele(ods, FTAG);
17024445fffbSMatthew Ahrens 		}
1703a2eea2e1Sahrens 	}
1704a2eea2e1Sahrens }
1705a2eea2e1Sahrens 
1706a2eea2e1Sahrens uint64_t
1707a2eea2e1Sahrens dsl_dataset_fsid_guid(dsl_dataset_t *ds)
1708a2eea2e1Sahrens {
170991ebeef5Sahrens 	return (ds->ds_fsid_guid);
1710a2eea2e1Sahrens }
1711a2eea2e1Sahrens 
1712a2eea2e1Sahrens void
1713a2eea2e1Sahrens dsl_dataset_space(dsl_dataset_t *ds,
1714a2eea2e1Sahrens     uint64_t *refdbytesp, uint64_t *availbytesp,
1715a2eea2e1Sahrens     uint64_t *usedobjsp, uint64_t *availobjsp)
1716fa9e4066Sahrens {
1717c1379625SJustin T. Gibbs 	*refdbytesp = dsl_dataset_phys(ds)->ds_referenced_bytes;
1718a2eea2e1Sahrens 	*availbytesp = dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE);
1719c1379625SJustin T. Gibbs 	if (ds->ds_reserved > dsl_dataset_phys(ds)->ds_unique_bytes)
1720c1379625SJustin T. Gibbs 		*availbytesp +=
1721c1379625SJustin T. Gibbs 		    ds->ds_reserved - dsl_dataset_phys(ds)->ds_unique_bytes;
1722a9799022Sck 	if (ds->ds_quota != 0) {
1723a9799022Sck 		/*
1724a9799022Sck 		 * Adjust available bytes according to refquota
1725a9799022Sck 		 */
1726a9799022Sck 		if (*refdbytesp < ds->ds_quota)
1727a9799022Sck 			*availbytesp = MIN(*availbytesp,
1728a9799022Sck 			    ds->ds_quota - *refdbytesp);
1729a9799022Sck 		else
1730a9799022Sck 			*availbytesp = 0;
1731a9799022Sck 	}
1732c1379625SJustin T. Gibbs 	*usedobjsp = BP_GET_FILL(&dsl_dataset_phys(ds)->ds_bp);
1733a2eea2e1Sahrens 	*availobjsp = DN_MAX_OBJECT - *usedobjsp;
1734fa9e4066Sahrens }
1735fa9e4066Sahrens 
1736f18faf3fSek boolean_t
173734f2f8cfSMatthew Ahrens dsl_dataset_modified_since_snap(dsl_dataset_t *ds, dsl_dataset_t *snap)
1738f18faf3fSek {
1739f18faf3fSek 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
1740f18faf3fSek 
17413b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(dp));
174234f2f8cfSMatthew Ahrens 	if (snap == NULL)
1743f18faf3fSek 		return (B_FALSE);
1744c1379625SJustin T. Gibbs 	if (dsl_dataset_phys(ds)->ds_bp.blk_birth >
1745c1379625SJustin T. Gibbs 	    dsl_dataset_phys(snap)->ds_creation_txg) {
174634f2f8cfSMatthew Ahrens 		objset_t *os, *os_snap;
17476e0cbcaaSMatthew Ahrens 		/*
17486e0cbcaaSMatthew Ahrens 		 * It may be that only the ZIL differs, because it was
17496e0cbcaaSMatthew Ahrens 		 * reset in the head.  Don't count that as being
17506e0cbcaaSMatthew Ahrens 		 * modified.
17516e0cbcaaSMatthew Ahrens 		 */
17526e0cbcaaSMatthew Ahrens 		if (dmu_objset_from_ds(ds, &os) != 0)
17536e0cbcaaSMatthew Ahrens 			return (B_TRUE);
175434f2f8cfSMatthew Ahrens 		if (dmu_objset_from_ds(snap, &os_snap) != 0)
17556e0cbcaaSMatthew Ahrens 			return (B_TRUE);
17566e0cbcaaSMatthew Ahrens 		return (bcmp(&os->os_phys->os_meta_dnode,
175734f2f8cfSMatthew Ahrens 		    &os_snap->os_phys->os_meta_dnode,
17586e0cbcaaSMatthew Ahrens 		    sizeof (os->os_phys->os_meta_dnode)) != 0);
17596e0cbcaaSMatthew Ahrens 	}
1760f18faf3fSek 	return (B_FALSE);
1761f18faf3fSek }
1762f18faf3fSek 
17633b2aab18SMatthew Ahrens typedef struct dsl_dataset_rename_snapshot_arg {
17643b2aab18SMatthew Ahrens 	const char *ddrsa_fsname;
17653b2aab18SMatthew Ahrens 	const char *ddrsa_oldsnapname;
17663b2aab18SMatthew Ahrens 	const char *ddrsa_newsnapname;
17673b2aab18SMatthew Ahrens 	boolean_t ddrsa_recursive;
17683b2aab18SMatthew Ahrens 	dmu_tx_t *ddrsa_tx;
17693b2aab18SMatthew Ahrens } dsl_dataset_rename_snapshot_arg_t;
17703b2aab18SMatthew Ahrens 
17711d452cf5Sahrens /* ARGSUSED */
1772fa9e4066Sahrens static int
17733b2aab18SMatthew Ahrens dsl_dataset_rename_snapshot_check_impl(dsl_pool_t *dp,
17743b2aab18SMatthew Ahrens     dsl_dataset_t *hds, void *arg)
1775fa9e4066Sahrens {
17763b2aab18SMatthew Ahrens 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
17773b2aab18SMatthew Ahrens 	int error;
1778fa9e4066Sahrens 	uint64_t val;
1779fa9e4066Sahrens 
17803b2aab18SMatthew Ahrens 	error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_oldsnapname, &val);
17813b2aab18SMatthew Ahrens 	if (error != 0) {
17823b2aab18SMatthew Ahrens 		/* ignore nonexistent snapshots */
17833b2aab18SMatthew Ahrens 		return (error == ENOENT ? 0 : error);
17843b2aab18SMatthew Ahrens 	}
17851d452cf5Sahrens 
17863b2aab18SMatthew Ahrens 	/* new name should not exist */
17873b2aab18SMatthew Ahrens 	error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_newsnapname, &val);
17883b2aab18SMatthew Ahrens 	if (error == 0)
1789be6fd75aSMatthew Ahrens 		error = SET_ERROR(EEXIST);
17903b2aab18SMatthew Ahrens 	else if (error == ENOENT)
17913b2aab18SMatthew Ahrens 		error = 0;
1792cdf5b4caSmmusante 
1793cdf5b4caSmmusante 	/* dataset name + 1 for the "@" + the new snapshot name must fit */
17943b2aab18SMatthew Ahrens 	if (dsl_dir_namelen(hds->ds_dir) + 1 +
17953b2aab18SMatthew Ahrens 	    strlen(ddrsa->ddrsa_newsnapname) >= MAXNAMELEN)
1796be6fd75aSMatthew Ahrens 		error = SET_ERROR(ENAMETOOLONG);
1797cdf5b4caSmmusante 
17983b2aab18SMatthew Ahrens 	return (error);
17991d452cf5Sahrens }
1800fa9e4066Sahrens 
18013b2aab18SMatthew Ahrens static int
18023b2aab18SMatthew Ahrens dsl_dataset_rename_snapshot_check(void *arg, dmu_tx_t *tx)
18031d452cf5Sahrens {
18043b2aab18SMatthew Ahrens 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
18053b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
18061d452cf5Sahrens 	dsl_dataset_t *hds;
18073b2aab18SMatthew Ahrens 	int error;
1808fa9e4066Sahrens 
18093b2aab18SMatthew Ahrens 	error = dsl_dataset_hold(dp, ddrsa->ddrsa_fsname, FTAG, &hds);
18103b2aab18SMatthew Ahrens 	if (error != 0)
18113b2aab18SMatthew Ahrens 		return (error);
1812fa9e4066Sahrens 
18133b2aab18SMatthew Ahrens 	if (ddrsa->ddrsa_recursive) {
18143b2aab18SMatthew Ahrens 		error = dmu_objset_find_dp(dp, hds->ds_dir->dd_object,
18153b2aab18SMatthew Ahrens 		    dsl_dataset_rename_snapshot_check_impl, ddrsa,
18163b2aab18SMatthew Ahrens 		    DS_FIND_CHILDREN);
18173b2aab18SMatthew Ahrens 	} else {
18183b2aab18SMatthew Ahrens 		error = dsl_dataset_rename_snapshot_check_impl(dp, hds, ddrsa);
18193b2aab18SMatthew Ahrens 	}
1820745cd3c5Smaybee 	dsl_dataset_rele(hds, FTAG);
18213b2aab18SMatthew Ahrens 	return (error);
1822fa9e4066Sahrens }
1823fa9e4066Sahrens 
1824cdf5b4caSmmusante static int
18253b2aab18SMatthew Ahrens dsl_dataset_rename_snapshot_sync_impl(dsl_pool_t *dp,
18263b2aab18SMatthew Ahrens     dsl_dataset_t *hds, void *arg)
1827cdf5b4caSmmusante {
18283b2aab18SMatthew Ahrens 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
18293b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
18303b2aab18SMatthew Ahrens 	uint64_t val;
18313b2aab18SMatthew Ahrens 	dmu_tx_t *tx = ddrsa->ddrsa_tx;
18323b2aab18SMatthew Ahrens 	int error;
1833ecd6cf80Smarks 
18343b2aab18SMatthew Ahrens 	error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_oldsnapname, &val);
18353b2aab18SMatthew Ahrens 	ASSERT(error == 0 || error == ENOENT);
18363b2aab18SMatthew Ahrens 	if (error == ENOENT) {
18373b2aab18SMatthew Ahrens 		/* ignore nonexistent snapshots */
18383b2aab18SMatthew Ahrens 		return (0);
1839ecd6cf80Smarks 	}
1840ecd6cf80Smarks 
18413b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold_obj(dp, val, FTAG, &ds));
18423b2aab18SMatthew Ahrens 
18433b2aab18SMatthew Ahrens 	/* log before we change the name */
18443b2aab18SMatthew Ahrens 	spa_history_log_internal_ds(ds, "rename", tx,
18453b2aab18SMatthew Ahrens 	    "-> @%s", ddrsa->ddrsa_newsnapname);
1846cdf5b4caSmmusante 
1847a2afb611SJerry Jelinek 	VERIFY0(dsl_dataset_snap_remove(hds, ddrsa->ddrsa_oldsnapname, tx,
1848a2afb611SJerry Jelinek 	    B_FALSE));
18493b2aab18SMatthew Ahrens 	mutex_enter(&ds->ds_lock);
18503b2aab18SMatthew Ahrens 	(void) strcpy(ds->ds_snapname, ddrsa->ddrsa_newsnapname);
18513b2aab18SMatthew Ahrens 	mutex_exit(&ds->ds_lock);
1852c1379625SJustin T. Gibbs 	VERIFY0(zap_add(dp->dp_meta_objset,
1853c1379625SJustin T. Gibbs 	    dsl_dataset_phys(hds)->ds_snapnames_zapobj,
18543b2aab18SMatthew Ahrens 	    ds->ds_snapname, 8, 1, &ds->ds_object, tx));
1855cdf5b4caSmmusante 
18563b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
1857cdf5b4caSmmusante 	return (0);
1858cdf5b4caSmmusante }
1859cdf5b4caSmmusante 
18603b2aab18SMatthew Ahrens static void
18613b2aab18SMatthew Ahrens dsl_dataset_rename_snapshot_sync(void *arg, dmu_tx_t *tx)
1862cdf5b4caSmmusante {
18633b2aab18SMatthew Ahrens 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
18643b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
18653b2aab18SMatthew Ahrens 	dsl_dataset_t *hds;
1866cdf5b4caSmmusante 
18673b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold(dp, ddrsa->ddrsa_fsname, FTAG, &hds));
18683b2aab18SMatthew Ahrens 	ddrsa->ddrsa_tx = tx;
18693b2aab18SMatthew Ahrens 	if (ddrsa->ddrsa_recursive) {
18703b2aab18SMatthew Ahrens 		VERIFY0(dmu_objset_find_dp(dp, hds->ds_dir->dd_object,
18713b2aab18SMatthew Ahrens 		    dsl_dataset_rename_snapshot_sync_impl, ddrsa,
18723b2aab18SMatthew Ahrens 		    DS_FIND_CHILDREN));
18733b2aab18SMatthew Ahrens 	} else {
18743b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_rename_snapshot_sync_impl(dp, hds, ddrsa));
1875cdf5b4caSmmusante 	}
18763b2aab18SMatthew Ahrens 	dsl_dataset_rele(hds, FTAG);
1877cdf5b4caSmmusante }
1878cdf5b4caSmmusante 
18793b2aab18SMatthew Ahrens int
18803b2aab18SMatthew Ahrens dsl_dataset_rename_snapshot(const char *fsname,
18813b2aab18SMatthew Ahrens     const char *oldsnapname, const char *newsnapname, boolean_t recursive)
18823a5a36beSmmusante {
18833b2aab18SMatthew Ahrens 	dsl_dataset_rename_snapshot_arg_t ddrsa;
18843a5a36beSmmusante 
18853b2aab18SMatthew Ahrens 	ddrsa.ddrsa_fsname = fsname;
18863b2aab18SMatthew Ahrens 	ddrsa.ddrsa_oldsnapname = oldsnapname;
18873b2aab18SMatthew Ahrens 	ddrsa.ddrsa_newsnapname = newsnapname;
18883b2aab18SMatthew Ahrens 	ddrsa.ddrsa_recursive = recursive;
18893a5a36beSmmusante 
18903b2aab18SMatthew Ahrens 	return (dsl_sync_task(fsname, dsl_dataset_rename_snapshot_check,
18917d46dc6cSMatthew Ahrens 	    dsl_dataset_rename_snapshot_sync, &ddrsa,
18927d46dc6cSMatthew Ahrens 	    1, ZFS_SPACE_CHECK_RESERVED));
18933a5a36beSmmusante }
18943a5a36beSmmusante 
189591948b51SKeith M Wesolowski /*
189691948b51SKeith M Wesolowski  * If we're doing an ownership handoff, we need to make sure that there is
189791948b51SKeith M Wesolowski  * only one long hold on the dataset.  We're not allowed to change anything here
189891948b51SKeith M Wesolowski  * so we don't permanently release the long hold or regular hold here.  We want
189991948b51SKeith M Wesolowski  * to do this only when syncing to avoid the dataset unexpectedly going away
190091948b51SKeith M Wesolowski  * when we release the long hold.
190191948b51SKeith M Wesolowski  */
190291948b51SKeith M Wesolowski static int
190391948b51SKeith M Wesolowski dsl_dataset_handoff_check(dsl_dataset_t *ds, void *owner, dmu_tx_t *tx)
190491948b51SKeith M Wesolowski {
190591948b51SKeith M Wesolowski 	boolean_t held;
190691948b51SKeith M Wesolowski 
190791948b51SKeith M Wesolowski 	if (!dmu_tx_is_syncing(tx))
190891948b51SKeith M Wesolowski 		return (0);
190991948b51SKeith M Wesolowski 
191091948b51SKeith M Wesolowski 	if (owner != NULL) {
191191948b51SKeith M Wesolowski 		VERIFY3P(ds->ds_owner, ==, owner);
191291948b51SKeith M Wesolowski 		dsl_dataset_long_rele(ds, owner);
191391948b51SKeith M Wesolowski 	}
191491948b51SKeith M Wesolowski 
191591948b51SKeith M Wesolowski 	held = dsl_dataset_long_held(ds);
191691948b51SKeith M Wesolowski 
191791948b51SKeith M Wesolowski 	if (owner != NULL)
191891948b51SKeith M Wesolowski 		dsl_dataset_long_hold(ds, owner);
191991948b51SKeith M Wesolowski 
192091948b51SKeith M Wesolowski 	if (held)
192191948b51SKeith M Wesolowski 		return (SET_ERROR(EBUSY));
192291948b51SKeith M Wesolowski 
192391948b51SKeith M Wesolowski 	return (0);
192491948b51SKeith M Wesolowski }
192591948b51SKeith M Wesolowski 
192691948b51SKeith M Wesolowski typedef struct dsl_dataset_rollback_arg {
192791948b51SKeith M Wesolowski 	const char *ddra_fsname;
192891948b51SKeith M Wesolowski 	void *ddra_owner;
1929a7027df1SMatthew Ahrens 	nvlist_t *ddra_result;
193091948b51SKeith M Wesolowski } dsl_dataset_rollback_arg_t;
193191948b51SKeith M Wesolowski 
19323b2aab18SMatthew Ahrens static int
19333b2aab18SMatthew Ahrens dsl_dataset_rollback_check(void *arg, dmu_tx_t *tx)
1934fa9e4066Sahrens {
193591948b51SKeith M Wesolowski 	dsl_dataset_rollback_arg_t *ddra = arg;
19363b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
19371d452cf5Sahrens 	dsl_dataset_t *ds;
19383b2aab18SMatthew Ahrens 	int64_t unused_refres_delta;
19393b2aab18SMatthew Ahrens 	int error;
1940fa9e4066Sahrens 
194191948b51SKeith M Wesolowski 	error = dsl_dataset_hold(dp, ddra->ddra_fsname, FTAG, &ds);
19423b2aab18SMatthew Ahrens 	if (error != 0)
19433b2aab18SMatthew Ahrens 		return (error);
1944370c1af0SSanjeev Bagewadi 
19453b2aab18SMatthew Ahrens 	/* must not be a snapshot */
1946bc9014e6SJustin Gibbs 	if (ds->ds_is_snapshot) {
19473b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
1948be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
19493b2aab18SMatthew Ahrens 	}
19503a5a36beSmmusante 
19513b2aab18SMatthew Ahrens 	/* must have a most recent snapshot */
1952c1379625SJustin T. Gibbs 	if (dsl_dataset_phys(ds)->ds_prev_snap_txg < TXG_INITIAL) {
19533b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
1954be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
19553b2aab18SMatthew Ahrens 	}
19563a5a36beSmmusante 
195778f17100SMatthew Ahrens 	/* must not have any bookmarks after the most recent snapshot */
195878f17100SMatthew Ahrens 	nvlist_t *proprequest = fnvlist_alloc();
195978f17100SMatthew Ahrens 	fnvlist_add_boolean(proprequest, zfs_prop_to_name(ZFS_PROP_CREATETXG));
196078f17100SMatthew Ahrens 	nvlist_t *bookmarks = fnvlist_alloc();
196178f17100SMatthew Ahrens 	error = dsl_get_bookmarks_impl(ds, proprequest, bookmarks);
196278f17100SMatthew Ahrens 	fnvlist_free(proprequest);
196378f17100SMatthew Ahrens 	if (error != 0)
196478f17100SMatthew Ahrens 		return (error);
196578f17100SMatthew Ahrens 	for (nvpair_t *pair = nvlist_next_nvpair(bookmarks, NULL);
196678f17100SMatthew Ahrens 	    pair != NULL; pair = nvlist_next_nvpair(bookmarks, pair)) {
196778f17100SMatthew Ahrens 		nvlist_t *valuenv =
196878f17100SMatthew Ahrens 		    fnvlist_lookup_nvlist(fnvpair_value_nvlist(pair),
196978f17100SMatthew Ahrens 		    zfs_prop_to_name(ZFS_PROP_CREATETXG));
197078f17100SMatthew Ahrens 		uint64_t createtxg = fnvlist_lookup_uint64(valuenv, "value");
1971c1379625SJustin T. Gibbs 		if (createtxg > dsl_dataset_phys(ds)->ds_prev_snap_txg) {
197278f17100SMatthew Ahrens 			fnvlist_free(bookmarks);
197378f17100SMatthew Ahrens 			dsl_dataset_rele(ds, FTAG);
197478f17100SMatthew Ahrens 			return (SET_ERROR(EEXIST));
197578f17100SMatthew Ahrens 		}
197678f17100SMatthew Ahrens 	}
197778f17100SMatthew Ahrens 	fnvlist_free(bookmarks);
197878f17100SMatthew Ahrens 
197991948b51SKeith M Wesolowski 	error = dsl_dataset_handoff_check(ds, ddra->ddra_owner, tx);
198091948b51SKeith M Wesolowski 	if (error != 0) {
19813b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
198291948b51SKeith M Wesolowski 		return (error);
19833b2aab18SMatthew Ahrens 	}
19843b2aab18SMatthew Ahrens 
19853b2aab18SMatthew Ahrens 	/*
19863b2aab18SMatthew Ahrens 	 * Check if the snap we are rolling back to uses more than
19873b2aab18SMatthew Ahrens 	 * the refquota.
19883b2aab18SMatthew Ahrens 	 */
19893b2aab18SMatthew Ahrens 	if (ds->ds_quota != 0 &&
1990c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds->ds_prev)->ds_referenced_bytes > ds->ds_quota) {
19913b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
1992be6fd75aSMatthew Ahrens 		return (SET_ERROR(EDQUOT));
1993fa9e4066Sahrens 	}
1994370c1af0SSanjeev Bagewadi 
19953b2aab18SMatthew Ahrens 	/*
19963b2aab18SMatthew Ahrens 	 * When we do the clone swap, we will temporarily use more space
19973b2aab18SMatthew Ahrens 	 * due to the refreservation (the head will no longer have any
19983b2aab18SMatthew Ahrens 	 * unique space, so the entire amount of the refreservation will need
19993b2aab18SMatthew Ahrens 	 * to be free).  We will immediately destroy the clone, freeing
20003b2aab18SMatthew Ahrens 	 * this space, but the freeing happens over many txg's.
20013b2aab18SMatthew Ahrens 	 */
20023b2aab18SMatthew Ahrens 	unused_refres_delta = (int64_t)MIN(ds->ds_reserved,
2003c1379625SJustin T. Gibbs 	    dsl_dataset_phys(ds)->ds_unique_bytes);
20043b2aab18SMatthew Ahrens 
20053b2aab18SMatthew Ahrens 	if (unused_refres_delta > 0 &&
20063b2aab18SMatthew Ahrens 	    unused_refres_delta >
20073b2aab18SMatthew Ahrens 	    dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE)) {
20083b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
2009be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOSPC));
2010fa9e4066Sahrens 	}
2011fa9e4066Sahrens 
20123b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
20133b2aab18SMatthew Ahrens 	return (0);
20143b2aab18SMatthew Ahrens }
20151d452cf5Sahrens 
20163b2aab18SMatthew Ahrens static void
20173b2aab18SMatthew Ahrens dsl_dataset_rollback_sync(void *arg, dmu_tx_t *tx)
20183b2aab18SMatthew Ahrens {
201991948b51SKeith M Wesolowski 	dsl_dataset_rollback_arg_t *ddra = arg;
20203b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
20213b2aab18SMatthew Ahrens 	dsl_dataset_t *ds, *clone;
20223b2aab18SMatthew Ahrens 	uint64_t cloneobj;
2023a7027df1SMatthew Ahrens 	char namebuf[ZFS_MAXNAMELEN];
20241d452cf5Sahrens 
202591948b51SKeith M Wesolowski 	VERIFY0(dsl_dataset_hold(dp, ddra->ddra_fsname, FTAG, &ds));
20261d452cf5Sahrens 
2027a7027df1SMatthew Ahrens 	dsl_dataset_name(ds->ds_prev, namebuf);
2028a7027df1SMatthew Ahrens 	fnvlist_add_string(ddra->ddra_result, "target", namebuf);
2029a7027df1SMatthew Ahrens 
20303b2aab18SMatthew Ahrens 	cloneobj = dsl_dataset_create_sync(ds->ds_dir, "%rollback",
20313b2aab18SMatthew Ahrens 	    ds->ds_prev, DS_CREATE_FLAG_NODIRTY, kcred, tx);
20321d452cf5Sahrens 
20333b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold_obj(dp, cloneobj, FTAG, &clone));
20341d452cf5Sahrens 
20353b2aab18SMatthew Ahrens 	dsl_dataset_clone_swap_sync_impl(clone, ds, tx);
20363b2aab18SMatthew Ahrens 	dsl_dataset_zero_zil(ds, tx);
20373b2aab18SMatthew Ahrens 
20383b2aab18SMatthew Ahrens 	dsl_destroy_head_sync_impl(clone, tx);
20393b2aab18SMatthew Ahrens 
20403b2aab18SMatthew Ahrens 	dsl_dataset_rele(clone, FTAG);
20413b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
20423b2aab18SMatthew Ahrens }
20433b2aab18SMatthew Ahrens 
204491948b51SKeith M Wesolowski /*
2045a7027df1SMatthew Ahrens  * Rolls back the given filesystem or volume to the most recent snapshot.
2046a7027df1SMatthew Ahrens  * The name of the most recent snapshot will be returned under key "target"
2047a7027df1SMatthew Ahrens  * in the result nvlist.
204891948b51SKeith M Wesolowski  *
2049a7027df1SMatthew Ahrens  * If owner != NULL:
205091948b51SKeith M Wesolowski  * - The existing dataset MUST be owned by the specified owner at entry
205191948b51SKeith M Wesolowski  * - Upon return, dataset will still be held by the same owner, whether we
205291948b51SKeith M Wesolowski  *   succeed or not.
205391948b51SKeith M Wesolowski  *
205491948b51SKeith M Wesolowski  * This mode is required any time the existing filesystem is mounted.  See
205591948b51SKeith M Wesolowski  * notes above zfs_suspend_fs() for further details.
205691948b51SKeith M Wesolowski  */
20573b2aab18SMatthew Ahrens int
2058a7027df1SMatthew Ahrens dsl_dataset_rollback(const char *fsname, void *owner, nvlist_t *result)
20593b2aab18SMatthew Ahrens {
206091948b51SKeith M Wesolowski 	dsl_dataset_rollback_arg_t ddra;
206191948b51SKeith M Wesolowski 
206291948b51SKeith M Wesolowski 	ddra.ddra_fsname = fsname;
206391948b51SKeith M Wesolowski 	ddra.ddra_owner = owner;
2064a7027df1SMatthew Ahrens 	ddra.ddra_result = result;
206591948b51SKeith M Wesolowski 
20663b2aab18SMatthew Ahrens 	return (dsl_sync_task(fsname, dsl_dataset_rollback_check,
20677d46dc6cSMatthew Ahrens 	    dsl_dataset_rollback_sync, &ddra,
20687d46dc6cSMatthew Ahrens 	    1, ZFS_SPACE_CHECK_RESERVED));
2069fa9e4066Sahrens }
207099653d4eSeschrock 
2071088f3894Sahrens struct promotenode {
2072745cd3c5Smaybee 	list_node_t link;
2073745cd3c5Smaybee 	dsl_dataset_t *ds;
2074745cd3c5Smaybee };
2075745cd3c5Smaybee 
20763b2aab18SMatthew Ahrens typedef struct dsl_dataset_promote_arg {
20773b2aab18SMatthew Ahrens 	const char *ddpa_clonename;
20783b2aab18SMatthew Ahrens 	dsl_dataset_t *ddpa_clone;
207974e7dc98SMatthew Ahrens 	list_t shared_snaps, origin_snaps, clone_snaps;
20803b2aab18SMatthew Ahrens 	dsl_dataset_t *origin_origin; /* origin of the origin */
208174e7dc98SMatthew Ahrens 	uint64_t used, comp, uncomp, unique, cloneusedsnap, originusedsnap;
2082681d9761SEric Taylor 	char *err_ds;
2083a2afb611SJerry Jelinek 	cred_t *cr;
20843b2aab18SMatthew Ahrens } dsl_dataset_promote_arg_t;
20851d452cf5Sahrens 
208674e7dc98SMatthew Ahrens static int snaplist_space(list_t *l, uint64_t mintxg, uint64_t *spacep);
20873b2aab18SMatthew Ahrens static int promote_hold(dsl_dataset_promote_arg_t *ddpa, dsl_pool_t *dp,
20883b2aab18SMatthew Ahrens     void *tag);
20893b2aab18SMatthew Ahrens static void promote_rele(dsl_dataset_promote_arg_t *ddpa, void *tag);
209074e7dc98SMatthew Ahrens 
209199653d4eSeschrock static int
20923b2aab18SMatthew Ahrens dsl_dataset_promote_check(void *arg, dmu_tx_t *tx)
209399653d4eSeschrock {
20943b2aab18SMatthew Ahrens 	dsl_dataset_promote_arg_t *ddpa = arg;
20953b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
20963b2aab18SMatthew Ahrens 	dsl_dataset_t *hds;
20973b2aab18SMatthew Ahrens 	struct promotenode *snap;
20983b2aab18SMatthew Ahrens 	dsl_dataset_t *origin_ds;
2099745cd3c5Smaybee 	int err;
2100cde58dbcSMatthew Ahrens 	uint64_t unused;
2101a2afb611SJerry Jelinek 	uint64_t ss_mv_cnt;
21021d452cf5Sahrens 
21033b2aab18SMatthew Ahrens 	err = promote_hold(ddpa, dp, FTAG);
21043b2aab18SMatthew Ahrens 	if (err != 0)
21053b2aab18SMatthew Ahrens 		return (err);
210699653d4eSeschrock 
21073b2aab18SMatthew Ahrens 	hds = ddpa->ddpa_clone;
21081d452cf5Sahrens 
2109c1379625SJustin T. Gibbs 	if (dsl_dataset_phys(hds)->ds_flags & DS_FLAG_NOPROMOTE) {
21103b2aab18SMatthew Ahrens 		promote_rele(ddpa, FTAG);
2111be6fd75aSMatthew Ahrens 		return (SET_ERROR(EXDEV));
21123b2aab18SMatthew Ahrens 	}
21133b2aab18SMatthew Ahrens 
21143b2aab18SMatthew Ahrens 	/*
21153b2aab18SMatthew Ahrens 	 * Compute and check the amount of space to transfer.  Since this is
21163b2aab18SMatthew Ahrens 	 * so expensive, don't do the preliminary check.
21173b2aab18SMatthew Ahrens 	 */
21183b2aab18SMatthew Ahrens 	if (!dmu_tx_is_syncing(tx)) {
21193b2aab18SMatthew Ahrens 		promote_rele(ddpa, FTAG);
21203b2aab18SMatthew Ahrens 		return (0);
21213b2aab18SMatthew Ahrens 	}
21223b2aab18SMatthew Ahrens 
21233b2aab18SMatthew Ahrens 	snap = list_head(&ddpa->shared_snaps);
21243b2aab18SMatthew Ahrens 	origin_ds = snap->ds;
212599653d4eSeschrock 
21263cb34c60Sahrens 	/* compute origin's new unique space */
21273b2aab18SMatthew Ahrens 	snap = list_tail(&ddpa->clone_snaps);
2128c1379625SJustin T. Gibbs 	ASSERT3U(dsl_dataset_phys(snap->ds)->ds_prev_snap_obj, ==,
2129c1379625SJustin T. Gibbs 	    origin_ds->ds_object);
2130cde58dbcSMatthew Ahrens 	dsl_deadlist_space_range(&snap->ds->ds_deadlist,
2131c1379625SJustin T. Gibbs 	    dsl_dataset_phys(origin_ds)->ds_prev_snap_txg, UINT64_MAX,
21323b2aab18SMatthew Ahrens 	    &ddpa->unique, &unused, &unused);
213399653d4eSeschrock 
2134745cd3c5Smaybee 	/*
2135745cd3c5Smaybee 	 * Walk the snapshots that we are moving
2136745cd3c5Smaybee 	 *
213774e7dc98SMatthew Ahrens 	 * Compute space to transfer.  Consider the incremental changes
21383b2aab18SMatthew Ahrens 	 * to used by each snapshot:
213974e7dc98SMatthew Ahrens 	 * (my used) = (prev's used) + (blocks born) - (blocks killed)
214074e7dc98SMatthew Ahrens 	 * So each snapshot gave birth to:
214174e7dc98SMatthew Ahrens 	 * (blocks born) = (my used) - (prev's used) + (blocks killed)
2142745cd3c5Smaybee 	 * So a sequence would look like:
214374e7dc98SMatthew Ahrens 	 * (uN - u(N-1) + kN) + ... + (u1 - u0 + k1) + (u0 - 0 + k0)
2144745cd3c5Smaybee 	 * Which simplifies to:
214574e7dc98SMatthew Ahrens 	 * uN + kN + kN-1 + ... + k1 + k0
2146745cd3c5Smaybee 	 * Note however, if we stop before we reach the ORIGIN we get:
214774e7dc98SMatthew Ahrens 	 * uN + kN + kN-1 + ... + kM - uM-1
2148745cd3c5Smaybee 	 */
2149a2afb611SJerry Jelinek 	ss_mv_cnt = 0;
2150c1379625SJustin T. Gibbs 	ddpa->used = dsl_dataset_phys(origin_ds)->ds_referenced_bytes;
2151c1379625SJustin T. Gibbs 	ddpa->comp = dsl_dataset_phys(origin_ds)->ds_compressed_bytes;
2152c1379625SJustin T. Gibbs 	ddpa->uncomp = dsl_dataset_phys(origin_ds)->ds_uncompressed_bytes;
21533b2aab18SMatthew Ahrens 	for (snap = list_head(&ddpa->shared_snaps); snap;
21543b2aab18SMatthew Ahrens 	    snap = list_next(&ddpa->shared_snaps, snap)) {
215599653d4eSeschrock 		uint64_t val, dlused, dlcomp, dluncomp;
2156745cd3c5Smaybee 		dsl_dataset_t *ds = snap->ds;
215799653d4eSeschrock 
2158a2afb611SJerry Jelinek 		ss_mv_cnt++;
2159a2afb611SJerry Jelinek 
21603b2aab18SMatthew Ahrens 		/*
21613b2aab18SMatthew Ahrens 		 * If there are long holds, we won't be able to evict
21623b2aab18SMatthew Ahrens 		 * the objset.
21633b2aab18SMatthew Ahrens 		 */
21643b2aab18SMatthew Ahrens 		if (dsl_dataset_long_held(ds)) {
2165be6fd75aSMatthew Ahrens 			err = SET_ERROR(EBUSY);
21663b2aab18SMatthew Ahrens 			goto out;
21673b2aab18SMatthew Ahrens 		}
21683b2aab18SMatthew Ahrens 
216999653d4eSeschrock 		/* Check that the snapshot name does not conflict */
21703b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_get_snapname(ds));
2171745cd3c5Smaybee 		err = dsl_dataset_snap_lookup(hds, ds->ds_snapname, &val);
2172681d9761SEric Taylor 		if (err == 0) {
21733b2aab18SMatthew Ahrens 			(void) strcpy(ddpa->err_ds, snap->ds->ds_snapname);
2174be6fd75aSMatthew Ahrens 			err = SET_ERROR(EEXIST);
2175681d9761SEric Taylor 			goto out;
2176681d9761SEric Taylor 		}
2177745cd3c5Smaybee 		if (err != ENOENT)
2178681d9761SEric Taylor 			goto out;
217999653d4eSeschrock 
2180745cd3c5Smaybee 		/* The very first snapshot does not have a deadlist */
2181c1379625SJustin T. Gibbs 		if (dsl_dataset_phys(ds)->ds_prev_snap_obj == 0)
218274e7dc98SMatthew Ahrens 			continue;
218374e7dc98SMatthew Ahrens 
2184cde58dbcSMatthew Ahrens 		dsl_deadlist_space(&ds->ds_deadlist,
2185cde58dbcSMatthew Ahrens 		    &dlused, &dlcomp, &dluncomp);
21863b2aab18SMatthew Ahrens 		ddpa->used += dlused;
21873b2aab18SMatthew Ahrens 		ddpa->comp += dlcomp;
21883b2aab18SMatthew Ahrens 		ddpa->uncomp += dluncomp;
218974e7dc98SMatthew Ahrens 	}
2190745cd3c5Smaybee 
2191745cd3c5Smaybee 	/*
2192745cd3c5Smaybee 	 * If we are a clone of a clone then we never reached ORIGIN,
2193745cd3c5Smaybee 	 * so we need to subtract out the clone origin's used space.
2194745cd3c5Smaybee 	 */
21953b2aab18SMatthew Ahrens 	if (ddpa->origin_origin) {
2196c1379625SJustin T. Gibbs 		ddpa->used -=
2197c1379625SJustin T. Gibbs 		    dsl_dataset_phys(ddpa->origin_origin)->ds_referenced_bytes;
2198c1379625SJustin T. Gibbs 		ddpa->comp -=
2199c1379625SJustin T. Gibbs 		    dsl_dataset_phys(ddpa->origin_origin)->ds_compressed_bytes;
22003b2aab18SMatthew Ahrens 		ddpa->uncomp -=
2201c1379625SJustin T. Gibbs 		    dsl_dataset_phys(ddpa->origin_origin)->
2202c1379625SJustin T. Gibbs 		    ds_uncompressed_bytes;
220399653d4eSeschrock 	}
220499653d4eSeschrock 
2205a2afb611SJerry Jelinek 	/* Check that there is enough space and limit headroom here */
220674e7dc98SMatthew Ahrens 	err = dsl_dir_transfer_possible(origin_ds->ds_dir, hds->ds_dir,
2207a2afb611SJerry Jelinek 	    0, ss_mv_cnt, ddpa->used, ddpa->cr);
22083b2aab18SMatthew Ahrens 	if (err != 0)
22093b2aab18SMatthew Ahrens 		goto out;
221074e7dc98SMatthew Ahrens 
221174e7dc98SMatthew Ahrens 	/*
221274e7dc98SMatthew Ahrens 	 * Compute the amounts of space that will be used by snapshots
221374e7dc98SMatthew Ahrens 	 * after the promotion (for both origin and clone).  For each,
221474e7dc98SMatthew Ahrens 	 * it is the amount of space that will be on all of their
221574e7dc98SMatthew Ahrens 	 * deadlists (that was not born before their new origin).
221674e7dc98SMatthew Ahrens 	 */
2217c1379625SJustin T. Gibbs 	if (dsl_dir_phys(hds->ds_dir)->dd_flags & DD_FLAG_USED_BREAKDOWN) {
221874e7dc98SMatthew Ahrens 		uint64_t space;
221974e7dc98SMatthew Ahrens 
222074e7dc98SMatthew Ahrens 		/*
222174e7dc98SMatthew Ahrens 		 * Note, typically this will not be a clone of a clone,
22223f9d6ad7SLin Ling 		 * so dd_origin_txg will be < TXG_INITIAL, so
2223cde58dbcSMatthew Ahrens 		 * these snaplist_space() -> dsl_deadlist_space_range()
222474e7dc98SMatthew Ahrens 		 * calls will be fast because they do not have to
222574e7dc98SMatthew Ahrens 		 * iterate over all bps.
222674e7dc98SMatthew Ahrens 		 */
22273b2aab18SMatthew Ahrens 		snap = list_head(&ddpa->origin_snaps);
22283b2aab18SMatthew Ahrens 		err = snaplist_space(&ddpa->shared_snaps,
22293b2aab18SMatthew Ahrens 		    snap->ds->ds_dir->dd_origin_txg, &ddpa->cloneusedsnap);
22303b2aab18SMatthew Ahrens 		if (err != 0)
22313b2aab18SMatthew Ahrens 			goto out;
223274e7dc98SMatthew Ahrens 
22333b2aab18SMatthew Ahrens 		err = snaplist_space(&ddpa->clone_snaps,
22343f9d6ad7SLin Ling 		    snap->ds->ds_dir->dd_origin_txg, &space);
22353b2aab18SMatthew Ahrens 		if (err != 0)
22363b2aab18SMatthew Ahrens 			goto out;
22373b2aab18SMatthew Ahrens 		ddpa->cloneusedsnap += space;
223874e7dc98SMatthew Ahrens 	}
2239c1379625SJustin T. Gibbs 	if (dsl_dir_phys(origin_ds->ds_dir)->dd_flags &
2240c1379625SJustin T. Gibbs 	    DD_FLAG_USED_BREAKDOWN) {
22413b2aab18SMatthew Ahrens 		err = snaplist_space(&ddpa->origin_snaps,
2242c1379625SJustin T. Gibbs 		    dsl_dataset_phys(origin_ds)->ds_creation_txg,
2243c1379625SJustin T. Gibbs 		    &ddpa->originusedsnap);
22443b2aab18SMatthew Ahrens 		if (err != 0)
22453b2aab18SMatthew Ahrens 			goto out;
2246745cd3c5Smaybee 	}
22471d452cf5Sahrens 
2248681d9761SEric Taylor out:
22493b2aab18SMatthew Ahrens 	promote_rele(ddpa, FTAG);
2250681d9761SEric Taylor 	return (err);
22511d452cf5Sahrens }
225299653d4eSeschrock 
22531d452cf5Sahrens static void
22543b2aab18SMatthew Ahrens dsl_dataset_promote_sync(void *arg, dmu_tx_t *tx)
22551d452cf5Sahrens {
22563b2aab18SMatthew Ahrens 	dsl_dataset_promote_arg_t *ddpa = arg;
22573b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
22583b2aab18SMatthew Ahrens 	dsl_dataset_t *hds;
22593b2aab18SMatthew Ahrens 	struct promotenode *snap;
22603b2aab18SMatthew Ahrens 	dsl_dataset_t *origin_ds;
22613b2aab18SMatthew Ahrens 	dsl_dataset_t *origin_head;
22623b2aab18SMatthew Ahrens 	dsl_dir_t *dd;
22633cb34c60Sahrens 	dsl_dir_t *odd = NULL;
2264088f3894Sahrens 	uint64_t oldnext_obj;
226574e7dc98SMatthew Ahrens 	int64_t delta;
22661d452cf5Sahrens 
22673b2aab18SMatthew Ahrens 	VERIFY0(promote_hold(ddpa, dp, FTAG));
22683b2aab18SMatthew Ahrens 	hds = ddpa->ddpa_clone;
22693b2aab18SMatthew Ahrens 
2270c1379625SJustin T. Gibbs 	ASSERT0(dsl_dataset_phys(hds)->ds_flags & DS_FLAG_NOPROMOTE);
22711d452cf5Sahrens 
22723b2aab18SMatthew Ahrens 	snap = list_head(&ddpa->shared_snaps);
22733b2aab18SMatthew Ahrens 	origin_ds = snap->ds;
22743b2aab18SMatthew Ahrens 	dd = hds->ds_dir;
22753b2aab18SMatthew Ahrens 
22763b2aab18SMatthew Ahrens 	snap = list_head(&ddpa->origin_snaps);
227774e7dc98SMatthew Ahrens 	origin_head = snap->ds;
227874e7dc98SMatthew Ahrens 
22790b69c2f0Sahrens 	/*
22803cb34c60Sahrens 	 * We need to explicitly open odd, since origin_ds's dd will be
22810b69c2f0Sahrens 	 * changing.
22820b69c2f0Sahrens 	 */
22833b2aab18SMatthew Ahrens 	VERIFY0(dsl_dir_hold_obj(dp, origin_ds->ds_dir->dd_object,
22843cb34c60Sahrens 	    NULL, FTAG, &odd));
228599653d4eSeschrock 
2286745cd3c5Smaybee 	/* change origin's next snap */
2287745cd3c5Smaybee 	dmu_buf_will_dirty(origin_ds->ds_dbuf, tx);
2288c1379625SJustin T. Gibbs 	oldnext_obj = dsl_dataset_phys(origin_ds)->ds_next_snap_obj;
22893b2aab18SMatthew Ahrens 	snap = list_tail(&ddpa->clone_snaps);
2290c1379625SJustin T. Gibbs 	ASSERT3U(dsl_dataset_phys(snap->ds)->ds_prev_snap_obj, ==,
2291c1379625SJustin T. Gibbs 	    origin_ds->ds_object);
2292c1379625SJustin T. Gibbs 	dsl_dataset_phys(origin_ds)->ds_next_snap_obj = snap->ds->ds_object;
2293745cd3c5Smaybee 
2294088f3894Sahrens 	/* change the origin's next clone */
2295c1379625SJustin T. Gibbs 	if (dsl_dataset_phys(origin_ds)->ds_next_clones_obj) {
22963b2aab18SMatthew Ahrens 		dsl_dataset_remove_from_next_clones(origin_ds,
22973b2aab18SMatthew Ahrens 		    snap->ds->ds_object, tx);
22983b2aab18SMatthew Ahrens 		VERIFY0(zap_add_int(dp->dp_meta_objset,
2299c1379625SJustin T. Gibbs 		    dsl_dataset_phys(origin_ds)->ds_next_clones_obj,
2300088f3894Sahrens 		    oldnext_obj, tx));
2301088f3894Sahrens 	}
2302088f3894Sahrens 
2303745cd3c5Smaybee 	/* change origin */
2304745cd3c5Smaybee 	dmu_buf_will_dirty(dd->dd_dbuf, tx);
2305c1379625SJustin T. Gibbs 	ASSERT3U(dsl_dir_phys(dd)->dd_origin_obj, ==, origin_ds->ds_object);
2306c1379625SJustin T. Gibbs 	dsl_dir_phys(dd)->dd_origin_obj = dsl_dir_phys(odd)->dd_origin_obj;
23073f9d6ad7SLin Ling 	dd->dd_origin_txg = origin_head->ds_dir->dd_origin_txg;
2308745cd3c5Smaybee 	dmu_buf_will_dirty(odd->dd_dbuf, tx);
2309c1379625SJustin T. Gibbs 	dsl_dir_phys(odd)->dd_origin_obj = origin_ds->ds_object;
23103f9d6ad7SLin Ling 	origin_head->ds_dir->dd_origin_txg =
2311c1379625SJustin T. Gibbs 	    dsl_dataset_phys(origin_ds)->ds_creation_txg;
2312745cd3c5Smaybee 
2313cde58dbcSMatthew Ahrens 	/* change dd_clone entries */
2314cde58dbcSMatthew Ahrens 	if (spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
23153b2aab18SMatthew Ahrens 		VERIFY0(zap_remove_int(dp->dp_meta_objset,
2316c1379625SJustin T. Gibbs 		    dsl_dir_phys(odd)->dd_clones, hds->ds_object, tx));
23173b2aab18SMatthew Ahrens 		VERIFY0(zap_add_int(dp->dp_meta_objset,
2318c1379625SJustin T. Gibbs 		    dsl_dir_phys(ddpa->origin_origin->ds_dir)->dd_clones,
2319cde58dbcSMatthew Ahrens 		    hds->ds_object, tx));
2320cde58dbcSMatthew Ahrens 
23213b2aab18SMatthew Ahrens 		VERIFY0(zap_remove_int(dp->dp_meta_objset,
2322c1379625SJustin T. Gibbs 		    dsl_dir_phys(ddpa->origin_origin->ds_dir)->dd_clones,
2323cde58dbcSMatthew Ahrens 		    origin_head->ds_object, tx));
2324c1379625SJustin T. Gibbs 		if (dsl_dir_phys(dd)->dd_clones == 0) {
2325c1379625SJustin T. Gibbs 			dsl_dir_phys(dd)->dd_clones =
2326c1379625SJustin T. Gibbs 			    zap_create(dp->dp_meta_objset, DMU_OT_DSL_CLONES,
2327c1379625SJustin T. Gibbs 			    DMU_OT_NONE, 0, tx);
2328cde58dbcSMatthew Ahrens 		}
23293b2aab18SMatthew Ahrens 		VERIFY0(zap_add_int(dp->dp_meta_objset,
2330c1379625SJustin T. Gibbs 		    dsl_dir_phys(dd)->dd_clones, origin_head->ds_object, tx));
2331cde58dbcSMatthew Ahrens 	}
2332cde58dbcSMatthew Ahrens 
233399653d4eSeschrock 	/* move snapshots to this dir */
23343b2aab18SMatthew Ahrens 	for (snap = list_head(&ddpa->shared_snaps); snap;
23353b2aab18SMatthew Ahrens 	    snap = list_next(&ddpa->shared_snaps, snap)) {
2336745cd3c5Smaybee 		dsl_dataset_t *ds = snap->ds;
233799653d4eSeschrock 
23383b2aab18SMatthew Ahrens 		/*
23393b2aab18SMatthew Ahrens 		 * Property callbacks are registered to a particular
23403b2aab18SMatthew Ahrens 		 * dsl_dir.  Since ours is changing, evict the objset
23413b2aab18SMatthew Ahrens 		 * so that they will be unregistered from the old dsl_dir.
23423b2aab18SMatthew Ahrens 		 */
2343503ad85cSMatthew Ahrens 		if (ds->ds_objset) {
2344503ad85cSMatthew Ahrens 			dmu_objset_evict(ds->ds_objset);
2345503ad85cSMatthew Ahrens 			ds->ds_objset = NULL;
23463baa08fcSek 		}
23473b2aab18SMatthew Ahrens 
234899653d4eSeschrock 		/* move snap name entry */
23493b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_get_snapname(ds));
23503b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_snap_remove(origin_head,
2351a2afb611SJerry Jelinek 		    ds->ds_snapname, tx, B_TRUE));
23523b2aab18SMatthew Ahrens 		VERIFY0(zap_add(dp->dp_meta_objset,
2353c1379625SJustin T. Gibbs 		    dsl_dataset_phys(hds)->ds_snapnames_zapobj, ds->ds_snapname,
235499653d4eSeschrock 		    8, 1, &ds->ds_object, tx));
2355a2afb611SJerry Jelinek 		dsl_fs_ss_count_adjust(hds->ds_dir, 1,
2356a2afb611SJerry Jelinek 		    DD_FIELD_SNAPSHOT_COUNT, tx);
2357cde58dbcSMatthew Ahrens 
235899653d4eSeschrock 		/* change containing dsl_dir */
235999653d4eSeschrock 		dmu_buf_will_dirty(ds->ds_dbuf, tx);
2360c1379625SJustin T. Gibbs 		ASSERT3U(dsl_dataset_phys(ds)->ds_dir_obj, ==, odd->dd_object);
2361c1379625SJustin T. Gibbs 		dsl_dataset_phys(ds)->ds_dir_obj = dd->dd_object;
23623cb34c60Sahrens 		ASSERT3P(ds->ds_dir, ==, odd);
23633b2aab18SMatthew Ahrens 		dsl_dir_rele(ds->ds_dir, ds);
23643b2aab18SMatthew Ahrens 		VERIFY0(dsl_dir_hold_obj(dp, dd->dd_object,
236599653d4eSeschrock 		    NULL, ds, &ds->ds_dir));
236699653d4eSeschrock 
2367cde58dbcSMatthew Ahrens 		/* move any clone references */
2368c1379625SJustin T. Gibbs 		if (dsl_dataset_phys(ds)->ds_next_clones_obj &&
2369cde58dbcSMatthew Ahrens 		    spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
2370cde58dbcSMatthew Ahrens 			zap_cursor_t zc;
2371cde58dbcSMatthew Ahrens 			zap_attribute_t za;
2372cde58dbcSMatthew Ahrens 
23733b2aab18SMatthew Ahrens 			for (zap_cursor_init(&zc, dp->dp_meta_objset,
2374c1379625SJustin T. Gibbs 			    dsl_dataset_phys(ds)->ds_next_clones_obj);
23753b2aab18SMatthew Ahrens 			    zap_cursor_retrieve(&zc, &za) == 0;
23763b2aab18SMatthew Ahrens 			    zap_cursor_advance(&zc)) {
23773b2aab18SMatthew Ahrens 				dsl_dataset_t *cnds;
23783b2aab18SMatthew Ahrens 				uint64_t o;
2379a9799022Sck 
23803b2aab18SMatthew Ahrens 				if (za.za_first_integer == oldnext_obj) {
23813b2aab18SMatthew Ahrens 					/*
23823b2aab18SMatthew Ahrens 					 * We've already moved the
23833b2aab18SMatthew Ahrens 					 * origin's reference.
23843b2aab18SMatthew Ahrens 					 */
23853b2aab18SMatthew Ahrens 					continue;
23863b2aab18SMatthew Ahrens 				}
2387a9799022Sck 
23883b2aab18SMatthew Ahrens 				VERIFY0(dsl_dataset_hold_obj(dp,
23893b2aab18SMatthew Ahrens 				    za.za_first_integer, FTAG, &cnds));
2390c1379625SJustin T. Gibbs 				o = dsl_dir_phys(cnds->ds_dir)->
2391c1379625SJustin T. Gibbs 				    dd_head_dataset_obj;
2392a9799022Sck 
23933b2aab18SMatthew Ahrens 				VERIFY0(zap_remove_int(dp->dp_meta_objset,
2394c1379625SJustin T. Gibbs 				    dsl_dir_phys(odd)->dd_clones, o, tx));
23953b2aab18SMatthew Ahrens 				VERIFY0(zap_add_int(dp->dp_meta_objset,
2396c1379625SJustin T. Gibbs 				    dsl_dir_phys(dd)->dd_clones, o, tx));
23973b2aab18SMatthew Ahrens 				dsl_dataset_rele(cnds, FTAG);
23983b2aab18SMatthew Ahrens 			}
23993b2aab18SMatthew Ahrens 			zap_cursor_fini(&zc);
24003b2aab18SMatthew Ahrens 		}
24019082849eSck 
24023b2aab18SMatthew Ahrens 		ASSERT(!dsl_prop_hascb(ds));
2403a9799022Sck 	}
2404a9799022Sck 
2405a9799022Sck 	/*
24063b2aab18SMatthew Ahrens 	 * Change space accounting.
24073b2aab18SMatthew Ahrens 	 * Note, pa->*usedsnap and dd_used_breakdown[SNAP] will either
24083b2aab18SMatthew Ahrens 	 * both be valid, or both be 0 (resulting in delta == 0).  This
24093b2aab18SMatthew Ahrens 	 * is true for each of {clone,origin} independently.
2410a9799022Sck 	 */
2411a9799022Sck 
24123b2aab18SMatthew Ahrens 	delta = ddpa->cloneusedsnap -
2413c1379625SJustin T. Gibbs 	    dsl_dir_phys(dd)->dd_used_breakdown[DD_USED_SNAP];
24143b2aab18SMatthew Ahrens 	ASSERT3S(delta, >=, 0);
24153b2aab18SMatthew Ahrens 	ASSERT3U(ddpa->used, >=, delta);
24163b2aab18SMatthew Ahrens 	dsl_dir_diduse_space(dd, DD_USED_SNAP, delta, 0, 0, tx);
24173b2aab18SMatthew Ahrens 	dsl_dir_diduse_space(dd, DD_USED_HEAD,
24183b2aab18SMatthew Ahrens 	    ddpa->used - delta, ddpa->comp, ddpa->uncomp, tx);
24193b2aab18SMatthew Ahrens 
24203b2aab18SMatthew Ahrens 	delta = ddpa->originusedsnap -
2421c1379625SJustin T. Gibbs 	    dsl_dir_phys(odd)->dd_used_breakdown[DD_USED_SNAP];
24223b2aab18SMatthew Ahrens 	ASSERT3S(delta, <=, 0);
24233b2aab18SMatthew Ahrens 	ASSERT3U(ddpa->used, >=, -delta);
24243b2aab18SMatthew Ahrens 	dsl_dir_diduse_space(odd, DD_USED_SNAP, delta, 0, 0, tx);
24253b2aab18SMatthew Ahrens 	dsl_dir_diduse_space(odd, DD_USED_HEAD,
24263b2aab18SMatthew Ahrens 	    -ddpa->used - delta, -ddpa->comp, -ddpa->uncomp, tx);
24273b2aab18SMatthew Ahrens 
2428c1379625SJustin T. Gibbs 	dsl_dataset_phys(origin_ds)->ds_unique_bytes = ddpa->unique;
24293b2aab18SMatthew Ahrens 
24303b2aab18SMatthew Ahrens 	/* log history record */
24313b2aab18SMatthew Ahrens 	spa_history_log_internal_ds(hds, "promote", tx, "");
24323b2aab18SMatthew Ahrens 
24333b2aab18SMatthew Ahrens 	dsl_dir_rele(odd, FTAG);
24343b2aab18SMatthew Ahrens 	promote_rele(ddpa, FTAG);
2435a9799022Sck }
2436a9799022Sck 
24373b2aab18SMatthew Ahrens /*
24383b2aab18SMatthew Ahrens  * Make a list of dsl_dataset_t's for the snapshots between first_obj
24393b2aab18SMatthew Ahrens  * (exclusive) and last_obj (inclusive).  The list will be in reverse
24403b2aab18SMatthew Ahrens  * order (last_obj will be the list_head()).  If first_obj == 0, do all
24413b2aab18SMatthew Ahrens  * snapshots back to this dataset's origin.
24423b2aab18SMatthew Ahrens  */
2443a9799022Sck static int
24443b2aab18SMatthew Ahrens snaplist_make(dsl_pool_t *dp,
24453b2aab18SMatthew Ahrens     uint64_t first_obj, uint64_t last_obj, list_t *l, void *tag)
2446a9799022Sck {
24473b2aab18SMatthew Ahrens 	uint64_t obj = last_obj;
2448a9799022Sck 
24493b2aab18SMatthew Ahrens 	list_create(l, sizeof (struct promotenode),
24503b2aab18SMatthew Ahrens 	    offsetof(struct promotenode, link));
2451a9799022Sck 
24523b2aab18SMatthew Ahrens 	while (obj != first_obj) {
24533b2aab18SMatthew Ahrens 		dsl_dataset_t *ds;
24543b2aab18SMatthew Ahrens 		struct promotenode *snap;
24553b2aab18SMatthew Ahrens 		int err;
245692241e0bSTom Erickson 
24573b2aab18SMatthew Ahrens 		err = dsl_dataset_hold_obj(dp, obj, tag, &ds);
24583b2aab18SMatthew Ahrens 		ASSERT(err != ENOENT);
24593b2aab18SMatthew Ahrens 		if (err != 0)
24603b2aab18SMatthew Ahrens 			return (err);
2461a9799022Sck 
24623b2aab18SMatthew Ahrens 		if (first_obj == 0)
2463c1379625SJustin T. Gibbs 			first_obj = dsl_dir_phys(ds->ds_dir)->dd_origin_obj;
24643b2aab18SMatthew Ahrens 
24653b2aab18SMatthew Ahrens 		snap = kmem_alloc(sizeof (*snap), KM_SLEEP);
24663b2aab18SMatthew Ahrens 		snap->ds = ds;
24673b2aab18SMatthew Ahrens 		list_insert_tail(l, snap);
2468c1379625SJustin T. Gibbs 		obj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
24693b2aab18SMatthew Ahrens 	}
2470a9799022Sck 
2471a9799022Sck 	return (0);
2472a9799022Sck }
2473a9799022Sck 
24743b2aab18SMatthew Ahrens static int
24753b2aab18SMatthew Ahrens snaplist_space(list_t *l, uint64_t mintxg, uint64_t *spacep)
2476a9799022Sck {
24773b2aab18SMatthew Ahrens 	struct promotenode *snap;
2478a9799022Sck 
24793b2aab18SMatthew Ahrens 	*spacep = 0;
24803b2aab18SMatthew Ahrens 	for (snap = list_head(l); snap; snap = list_next(l, snap)) {
24813b2aab18SMatthew Ahrens 		uint64_t used, comp, uncomp;
24823b2aab18SMatthew Ahrens 		dsl_deadlist_space_range(&snap->ds->ds_deadlist,
24833b2aab18SMatthew Ahrens 		    mintxg, UINT64_MAX, &used, &comp, &uncomp);
24843b2aab18SMatthew Ahrens 		*spacep += used;
248592241e0bSTom Erickson 	}
24863b2aab18SMatthew Ahrens 	return (0);
2487a9799022Sck }
2488a9799022Sck 
24893b2aab18SMatthew Ahrens static void
24903b2aab18SMatthew Ahrens snaplist_destroy(list_t *l, void *tag)
2491a9799022Sck {
24923b2aab18SMatthew Ahrens 	struct promotenode *snap;
249392241e0bSTom Erickson 
24943b2aab18SMatthew Ahrens 	if (l == NULL || !list_link_active(&l->list_head))
24953b2aab18SMatthew Ahrens 		return;
2496a9799022Sck 
24973b2aab18SMatthew Ahrens 	while ((snap = list_tail(l)) != NULL) {
24983b2aab18SMatthew Ahrens 		list_remove(l, snap);
24993b2aab18SMatthew Ahrens 		dsl_dataset_rele(snap->ds, tag);
25003b2aab18SMatthew Ahrens 		kmem_free(snap, sizeof (*snap));
25013b2aab18SMatthew Ahrens 	}
25023b2aab18SMatthew Ahrens 	list_destroy(l);
2503a9799022Sck }
2504a9799022Sck 
2505a9799022Sck static int
25063b2aab18SMatthew Ahrens promote_hold(dsl_dataset_promote_arg_t *ddpa, dsl_pool_t *dp, void *tag)
2507a9799022Sck {
25083b2aab18SMatthew Ahrens 	int error;
25093b2aab18SMatthew Ahrens 	dsl_dir_t *dd;
25103b2aab18SMatthew Ahrens 	struct promotenode *snap;
2511a9799022Sck 
25123b2aab18SMatthew Ahrens 	error = dsl_dataset_hold(dp, ddpa->ddpa_clonename, tag,
25133b2aab18SMatthew Ahrens 	    &ddpa->ddpa_clone);
25143b2aab18SMatthew Ahrens 	if (error != 0)
25153b2aab18SMatthew Ahrens 		return (error);
25163b2aab18SMatthew Ahrens 	dd = ddpa->ddpa_clone->ds_dir;
2517a9799022Sck 
2518bc9014e6SJustin Gibbs 	if (ddpa->ddpa_clone->ds_is_snapshot ||
25193b2aab18SMatthew Ahrens 	    !dsl_dir_is_clone(dd)) {
25203b2aab18SMatthew Ahrens 		dsl_dataset_rele(ddpa->ddpa_clone, tag);
2521be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
25223b2aab18SMatthew Ahrens 	}
2523a9799022Sck 
2524c1379625SJustin T. Gibbs 	error = snaplist_make(dp, 0, dsl_dir_phys(dd)->dd_origin_obj,
25253b2aab18SMatthew Ahrens 	    &ddpa->shared_snaps, tag);
25263b2aab18SMatthew Ahrens 	if (error != 0)
25273b2aab18SMatthew Ahrens 		goto out;
2528a9799022Sck 
25293b2aab18SMatthew Ahrens 	error = snaplist_make(dp, 0, ddpa->ddpa_clone->ds_object,
25303b2aab18SMatthew Ahrens 	    &ddpa->clone_snaps, tag);
25313b2aab18SMatthew Ahrens 	if (error != 0)
25323b2aab18SMatthew Ahrens 		goto out;
2533a9799022Sck 
25343b2aab18SMatthew Ahrens 	snap = list_head(&ddpa->shared_snaps);
2535c1379625SJustin T. Gibbs 	ASSERT3U(snap->ds->ds_object, ==, dsl_dir_phys(dd)->dd_origin_obj);
2536c1379625SJustin T. Gibbs 	error = snaplist_make(dp, dsl_dir_phys(dd)->dd_origin_obj,
2537c1379625SJustin T. Gibbs 	    dsl_dir_phys(snap->ds->ds_dir)->dd_head_dataset_obj,
25383b2aab18SMatthew Ahrens 	    &ddpa->origin_snaps, tag);
25393b2aab18SMatthew Ahrens 	if (error != 0)
25403b2aab18SMatthew Ahrens 		goto out;
2541379c004dSEric Schrock 
2542c1379625SJustin T. Gibbs 	if (dsl_dir_phys(snap->ds->ds_dir)->dd_origin_obj != 0) {
25433b2aab18SMatthew Ahrens 		error = dsl_dataset_hold_obj(dp,
2544c1379625SJustin T. Gibbs 		    dsl_dir_phys(snap->ds->ds_dir)->dd_origin_obj,
25453b2aab18SMatthew Ahrens 		    tag, &ddpa->origin_origin);
25463b2aab18SMatthew Ahrens 		if (error != 0)
25473b2aab18SMatthew Ahrens 			goto out;
2548379c004dSEric Schrock 	}
25493b2aab18SMatthew Ahrens out:
25503b2aab18SMatthew Ahrens 	if (error != 0)
25513b2aab18SMatthew Ahrens 		promote_rele(ddpa, tag);
25523b2aab18SMatthew Ahrens 	return (error);
2553a9799022Sck }
2554a9799022Sck 
2555a9799022Sck static void
25563b2aab18SMatthew Ahrens promote_rele(dsl_dataset_promote_arg_t *ddpa, void *tag)
2557a9799022Sck {
25583b2aab18SMatthew Ahrens 	snaplist_destroy(&ddpa->shared_snaps, tag);
25593b2aab18SMatthew Ahrens 	snaplist_destroy(&ddpa->clone_snaps, tag);
25603b2aab18SMatthew Ahrens 	snaplist_destroy(&ddpa->origin_snaps, tag);
25613b2aab18SMatthew Ahrens 	if (ddpa->origin_origin != NULL)
25623b2aab18SMatthew Ahrens 		dsl_dataset_rele(ddpa->origin_origin, tag);
25633b2aab18SMatthew Ahrens 	dsl_dataset_rele(ddpa->ddpa_clone, tag);
25643b2aab18SMatthew Ahrens }
256502c8f3f0SMatthew Ahrens 
25663b2aab18SMatthew Ahrens /*
25673b2aab18SMatthew Ahrens  * Promote a clone.
25683b2aab18SMatthew Ahrens  *
25693b2aab18SMatthew Ahrens  * If it fails due to a conflicting snapshot name, "conflsnap" will be filled
25703b2aab18SMatthew Ahrens  * in with the name.  (It must be at least MAXNAMELEN bytes long.)
25713b2aab18SMatthew Ahrens  */
25723b2aab18SMatthew Ahrens int
25733b2aab18SMatthew Ahrens dsl_dataset_promote(const char *name, char *conflsnap)
25743b2aab18SMatthew Ahrens {
25753b2aab18SMatthew Ahrens 	dsl_dataset_promote_arg_t ddpa = { 0 };
25763b2aab18SMatthew Ahrens 	uint64_t numsnaps;
25773b2aab18SMatthew Ahrens 	int error;
25783b2aab18SMatthew Ahrens 	objset_t *os;
257992241e0bSTom Erickson 
25803b2aab18SMatthew Ahrens 	/*
25813b2aab18SMatthew Ahrens 	 * We will modify space proportional to the number of
25823b2aab18SMatthew Ahrens 	 * snapshots.  Compute numsnaps.
25833b2aab18SMatthew Ahrens 	 */
25843b2aab18SMatthew Ahrens 	error = dmu_objset_hold(name, FTAG, &os);
25853b2aab18SMatthew Ahrens 	if (error != 0)
25863b2aab18SMatthew Ahrens 		return (error);
25873b2aab18SMatthew Ahrens 	error = zap_count(dmu_objset_pool(os)->dp_meta_objset,
2588c1379625SJustin T. Gibbs 	    dsl_dataset_phys(dmu_objset_ds(os))->ds_snapnames_zapobj,
2589c1379625SJustin T. Gibbs 	    &numsnaps);
25903b2aab18SMatthew Ahrens 	dmu_objset_rele(os, FTAG);
25913b2aab18SMatthew Ahrens 	if (error != 0)
25923b2aab18SMatthew Ahrens 		return (error);
259302c8f3f0SMatthew Ahrens 
25943b2aab18SMatthew Ahrens 	ddpa.ddpa_clonename = name;
25953b2aab18SMatthew Ahrens 	ddpa.err_ds = conflsnap;
2596a2afb611SJerry Jelinek 	ddpa.cr = CRED();
259702c8f3f0SMatthew Ahrens 
25983b2aab18SMatthew Ahrens 	return (dsl_sync_task(name, dsl_dataset_promote_check,
25997d46dc6cSMatthew Ahrens 	    dsl_dataset_promote_sync, &ddpa,
26007d46dc6cSMatthew Ahrens 	    2 + numsnaps, ZFS_SPACE_CHECK_RESERVED));
2601a9799022Sck }
2602a9799022Sck 
2603a9799022Sck int
26043b2aab18SMatthew Ahrens dsl_dataset_clone_swap_check_impl(dsl_dataset_t *clone,
260591948b51SKeith M Wesolowski     dsl_dataset_t *origin_head, boolean_t force, void *owner, dmu_tx_t *tx)
2606a9799022Sck {
26073b2aab18SMatthew Ahrens 	int64_t unused_refres_delta;
2608a9799022Sck 
26093b2aab18SMatthew Ahrens 	/* they should both be heads */
2610bc9014e6SJustin Gibbs 	if (clone->ds_is_snapshot ||
2611bc9014e6SJustin Gibbs 	    origin_head->ds_is_snapshot)
2612be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
261392241e0bSTom Erickson 
261434f2f8cfSMatthew Ahrens 	/* if we are not forcing, the branch point should be just before them */
261534f2f8cfSMatthew Ahrens 	if (!force && clone->ds_prev != origin_head->ds_prev)
2616be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
2617a9799022Sck 
26183b2aab18SMatthew Ahrens 	/* clone should be the clone (unless they are unrelated) */
26193b2aab18SMatthew Ahrens 	if (clone->ds_prev != NULL &&
26203b2aab18SMatthew Ahrens 	    clone->ds_prev != clone->ds_dir->dd_pool->dp_origin_snap &&
262134f2f8cfSMatthew Ahrens 	    origin_head->ds_dir != clone->ds_prev->ds_dir)
2622be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
262392241e0bSTom Erickson 
26243b2aab18SMatthew Ahrens 	/* the clone should be a child of the origin */
26253b2aab18SMatthew Ahrens 	if (clone->ds_dir->dd_parent != origin_head->ds_dir)
2626be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
2627842727c2SChris Kirby 
26283b2aab18SMatthew Ahrens 	/* origin_head shouldn't be modified unless 'force' */
262934f2f8cfSMatthew Ahrens 	if (!force &&
263034f2f8cfSMatthew Ahrens 	    dsl_dataset_modified_since_snap(origin_head, origin_head->ds_prev))
2631be6fd75aSMatthew Ahrens 		return (SET_ERROR(ETXTBSY));
2632c99e4bdcSChris Kirby 
26333b2aab18SMatthew Ahrens 	/* origin_head should have no long holds (e.g. is not mounted) */
263491948b51SKeith M Wesolowski 	if (dsl_dataset_handoff_check(origin_head, owner, tx))
2635be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
26363b2aab18SMatthew Ahrens 
26373b2aab18SMatthew Ahrens 	/* check amount of any unconsumed refreservation */
26383b2aab18SMatthew Ahrens 	unused_refres_delta =
26393b2aab18SMatthew Ahrens 	    (int64_t)MIN(origin_head->ds_reserved,
2640c1379625SJustin T. Gibbs 	    dsl_dataset_phys(origin_head)->ds_unique_bytes) -
26413b2aab18SMatthew Ahrens 	    (int64_t)MIN(origin_head->ds_reserved,
2642c1379625SJustin T. Gibbs 	    dsl_dataset_phys(clone)->ds_unique_bytes);
26433b2aab18SMatthew Ahrens 
26443b2aab18SMatthew Ahrens 	if (unused_refres_delta > 0 &&
26453b2aab18SMatthew Ahrens 	    unused_refres_delta >
26463b2aab18SMatthew Ahrens 	    dsl_dir_space_available(origin_head->ds_dir, NULL, 0, TRUE))
2647be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOSPC));
26483b2aab18SMatthew Ahrens 
26493b2aab18SMatthew Ahrens 	/* clone can't be over the head's refquota */
26503b2aab18SMatthew Ahrens 	if (origin_head->ds_quota != 0 &&
2651c1379625SJustin T. Gibbs 	    dsl_dataset_phys(clone)->ds_referenced_bytes >
2652c1379625SJustin T. Gibbs 	    origin_head->ds_quota)
2653be6fd75aSMatthew Ahrens 		return (SET_ERROR(EDQUOT));
2654c99e4bdcSChris Kirby 
26553b2aab18SMatthew Ahrens 	return (0);
2656c99e4bdcSChris Kirby }
2657c99e4bdcSChris Kirby 
2658a7f53a56SChris Kirby void
26593b2aab18SMatthew Ahrens dsl_dataset_clone_swap_sync_impl(dsl_dataset_t *clone,
26603b2aab18SMatthew Ahrens     dsl_dataset_t *origin_head, dmu_tx_t *tx)
2661a7f53a56SChris Kirby {
26623b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
26633b2aab18SMatthew Ahrens 	int64_t unused_refres_delta;
2664a7f53a56SChris Kirby 
26653b2aab18SMatthew Ahrens 	ASSERT(clone->ds_reserved == 0);
26663b2aab18SMatthew Ahrens 	ASSERT(origin_head->ds_quota == 0 ||
2667c1379625SJustin T. Gibbs 	    dsl_dataset_phys(clone)->ds_unique_bytes <= origin_head->ds_quota);
266834f2f8cfSMatthew Ahrens 	ASSERT3P(clone->ds_prev, ==, origin_head->ds_prev);
2669842727c2SChris Kirby 
26703b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(clone->ds_dbuf, tx);
26713b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(origin_head->ds_dbuf, tx);
2672842727c2SChris Kirby 
26733b2aab18SMatthew Ahrens 	if (clone->ds_objset != NULL) {
26743b2aab18SMatthew Ahrens 		dmu_objset_evict(clone->ds_objset);
26753b2aab18SMatthew Ahrens 		clone->ds_objset = NULL;
26763b2aab18SMatthew Ahrens 	}
2677842727c2SChris Kirby 
26783b2aab18SMatthew Ahrens 	if (origin_head->ds_objset != NULL) {
26793b2aab18SMatthew Ahrens 		dmu_objset_evict(origin_head->ds_objset);
26803b2aab18SMatthew Ahrens 		origin_head->ds_objset = NULL;
2681842727c2SChris Kirby 	}
2682842727c2SChris Kirby 
26833b2aab18SMatthew Ahrens 	unused_refres_delta =
26843b2aab18SMatthew Ahrens 	    (int64_t)MIN(origin_head->ds_reserved,
2685c1379625SJustin T. Gibbs 	    dsl_dataset_phys(origin_head)->ds_unique_bytes) -
26863b2aab18SMatthew Ahrens 	    (int64_t)MIN(origin_head->ds_reserved,
2687c1379625SJustin T. Gibbs 	    dsl_dataset_phys(clone)->ds_unique_bytes);
26883b2aab18SMatthew Ahrens 
26893b2aab18SMatthew Ahrens 	/*
26903b2aab18SMatthew Ahrens 	 * Reset origin's unique bytes, if it exists.
26913b2aab18SMatthew Ahrens 	 */
26923b2aab18SMatthew Ahrens 	if (clone->ds_prev) {
26933b2aab18SMatthew Ahrens 		dsl_dataset_t *origin = clone->ds_prev;
26943b2aab18SMatthew Ahrens 		uint64_t comp, uncomp;
26953b2aab18SMatthew Ahrens 
26963b2aab18SMatthew Ahrens 		dmu_buf_will_dirty(origin->ds_dbuf, tx);
26973b2aab18SMatthew Ahrens 		dsl_deadlist_space_range(&clone->ds_deadlist,
2698c1379625SJustin T. Gibbs 		    dsl_dataset_phys(origin)->ds_prev_snap_txg, UINT64_MAX,
2699c1379625SJustin T. Gibbs 		    &dsl_dataset_phys(origin)->ds_unique_bytes, &comp, &uncomp);
27003b2aab18SMatthew Ahrens 	}
27013b2aab18SMatthew Ahrens 
27023b2aab18SMatthew Ahrens 	/* swap blkptrs */
27033b2aab18SMatthew Ahrens 	{
27043b2aab18SMatthew Ahrens 		blkptr_t tmp;
2705c1379625SJustin T. Gibbs 		tmp = dsl_dataset_phys(origin_head)->ds_bp;
2706c1379625SJustin T. Gibbs 		dsl_dataset_phys(origin_head)->ds_bp =
2707c1379625SJustin T. Gibbs 		    dsl_dataset_phys(clone)->ds_bp;
2708c1379625SJustin T. Gibbs 		dsl_dataset_phys(clone)->ds_bp = tmp;
27093b2aab18SMatthew Ahrens 	}
27103b2aab18SMatthew Ahrens 
27113b2aab18SMatthew Ahrens 	/* set dd_*_bytes */
27123b2aab18SMatthew Ahrens 	{
27133b2aab18SMatthew Ahrens 		int64_t dused, dcomp, duncomp;
27143b2aab18SMatthew Ahrens 		uint64_t cdl_used, cdl_comp, cdl_uncomp;
27153b2aab18SMatthew Ahrens 		uint64_t odl_used, odl_comp, odl_uncomp;
27163b2aab18SMatthew Ahrens 
2717c1379625SJustin T. Gibbs 		ASSERT3U(dsl_dir_phys(clone->ds_dir)->
27183b2aab18SMatthew Ahrens 		    dd_used_breakdown[DD_USED_SNAP], ==, 0);
27193b2aab18SMatthew Ahrens 
27203b2aab18SMatthew Ahrens 		dsl_deadlist_space(&clone->ds_deadlist,
27213b2aab18SMatthew Ahrens 		    &cdl_used, &cdl_comp, &cdl_uncomp);
27223b2aab18SMatthew Ahrens 		dsl_deadlist_space(&origin_head->ds_deadlist,
27233b2aab18SMatthew Ahrens 		    &odl_used, &odl_comp, &odl_uncomp);
272415508ac0SChris Kirby 
2725c1379625SJustin T. Gibbs 		dused = dsl_dataset_phys(clone)->ds_referenced_bytes +
2726c1379625SJustin T. Gibbs 		    cdl_used -
2727c1379625SJustin T. Gibbs 		    (dsl_dataset_phys(origin_head)->ds_referenced_bytes +
2728c1379625SJustin T. Gibbs 		    odl_used);
2729c1379625SJustin T. Gibbs 		dcomp = dsl_dataset_phys(clone)->ds_compressed_bytes +
2730c1379625SJustin T. Gibbs 		    cdl_comp -
2731c1379625SJustin T. Gibbs 		    (dsl_dataset_phys(origin_head)->ds_compressed_bytes +
2732c1379625SJustin T. Gibbs 		    odl_comp);
2733c1379625SJustin T. Gibbs 		duncomp = dsl_dataset_phys(clone)->ds_uncompressed_bytes +
27343b2aab18SMatthew Ahrens 		    cdl_uncomp -
2735c1379625SJustin T. Gibbs 		    (dsl_dataset_phys(origin_head)->ds_uncompressed_bytes +
2736c1379625SJustin T. Gibbs 		    odl_uncomp);
2737842727c2SChris Kirby 
27383b2aab18SMatthew Ahrens 		dsl_dir_diduse_space(origin_head->ds_dir, DD_USED_HEAD,
27393b2aab18SMatthew Ahrens 		    dused, dcomp, duncomp, tx);
27403b2aab18SMatthew Ahrens 		dsl_dir_diduse_space(clone->ds_dir, DD_USED_HEAD,
27413b2aab18SMatthew Ahrens 		    -dused, -dcomp, -duncomp, tx);
2742842727c2SChris Kirby 
2743842727c2SChris Kirby 		/*
27443b2aab18SMatthew Ahrens 		 * The difference in the space used by snapshots is the
27453b2aab18SMatthew Ahrens 		 * difference in snapshot space due to the head's
27463b2aab18SMatthew Ahrens 		 * deadlist (since that's the only thing that's
27473b2aab18SMatthew Ahrens 		 * changing that affects the snapused).
2748842727c2SChris Kirby 		 */
27493b2aab18SMatthew Ahrens 		dsl_deadlist_space_range(&clone->ds_deadlist,
27503b2aab18SMatthew Ahrens 		    origin_head->ds_dir->dd_origin_txg, UINT64_MAX,
27513b2aab18SMatthew Ahrens 		    &cdl_used, &cdl_comp, &cdl_uncomp);
27523b2aab18SMatthew Ahrens 		dsl_deadlist_space_range(&origin_head->ds_deadlist,
27533b2aab18SMatthew Ahrens 		    origin_head->ds_dir->dd_origin_txg, UINT64_MAX,
27543b2aab18SMatthew Ahrens 		    &odl_used, &odl_comp, &odl_uncomp);
27553b2aab18SMatthew Ahrens 		dsl_dir_transfer_space(origin_head->ds_dir, cdl_used - odl_used,
27563b2aab18SMatthew Ahrens 		    DD_USED_HEAD, DD_USED_SNAP, tx);
2757842727c2SChris Kirby 	}
2758842727c2SChris Kirby 
27593b2aab18SMatthew Ahrens 	/* swap ds_*_bytes */
2760c1379625SJustin T. Gibbs 	SWITCH64(dsl_dataset_phys(origin_head)->ds_referenced_bytes,
2761c1379625SJustin T. Gibbs 	    dsl_dataset_phys(clone)->ds_referenced_bytes);
2762c1379625SJustin T. Gibbs 	SWITCH64(dsl_dataset_phys(origin_head)->ds_compressed_bytes,
2763c1379625SJustin T. Gibbs 	    dsl_dataset_phys(clone)->ds_compressed_bytes);
2764c1379625SJustin T. Gibbs 	SWITCH64(dsl_dataset_phys(origin_head)->ds_uncompressed_bytes,
2765c1379625SJustin T. Gibbs 	    dsl_dataset_phys(clone)->ds_uncompressed_bytes);
2766c1379625SJustin T. Gibbs 	SWITCH64(dsl_dataset_phys(origin_head)->ds_unique_bytes,
2767c1379625SJustin T. Gibbs 	    dsl_dataset_phys(clone)->ds_unique_bytes);
2768842727c2SChris Kirby 
27693b2aab18SMatthew Ahrens 	/* apply any parent delta for change in unconsumed refreservation */
27703b2aab18SMatthew Ahrens 	dsl_dir_diduse_space(origin_head->ds_dir, DD_USED_REFRSRV,
27713b2aab18SMatthew Ahrens 	    unused_refres_delta, 0, 0, tx);
2772ca45db41SChris Kirby 
27733b2aab18SMatthew Ahrens 	/*
27743b2aab18SMatthew Ahrens 	 * Swap deadlists.
27753b2aab18SMatthew Ahrens 	 */
27763b2aab18SMatthew Ahrens 	dsl_deadlist_close(&clone->ds_deadlist);
27773b2aab18SMatthew Ahrens 	dsl_deadlist_close(&origin_head->ds_deadlist);
2778c1379625SJustin T. Gibbs 	SWITCH64(dsl_dataset_phys(origin_head)->ds_deadlist_obj,
2779c1379625SJustin T. Gibbs 	    dsl_dataset_phys(clone)->ds_deadlist_obj);
27803b2aab18SMatthew Ahrens 	dsl_deadlist_open(&clone->ds_deadlist, dp->dp_meta_objset,
2781c1379625SJustin T. Gibbs 	    dsl_dataset_phys(clone)->ds_deadlist_obj);
27823b2aab18SMatthew Ahrens 	dsl_deadlist_open(&origin_head->ds_deadlist, dp->dp_meta_objset,
2783c1379625SJustin T. Gibbs 	    dsl_dataset_phys(origin_head)->ds_deadlist_obj);
2784842727c2SChris Kirby 
27853b2aab18SMatthew Ahrens 	dsl_scan_ds_clone_swapped(origin_head, clone, tx);
2786842727c2SChris Kirby 
27873b2aab18SMatthew Ahrens 	spa_history_log_internal_ds(clone, "clone swap", tx,
27883b2aab18SMatthew Ahrens 	    "parent=%s", origin_head->ds_dir->dd_myname);
2789842727c2SChris Kirby }
2790842727c2SChris Kirby 
27913b2aab18SMatthew Ahrens /*
27923b2aab18SMatthew Ahrens  * Given a pool name and a dataset object number in that pool,
27933b2aab18SMatthew Ahrens  * return the name of that dataset.
27943b2aab18SMatthew Ahrens  */
2795a7f53a56SChris Kirby int
27963b2aab18SMatthew Ahrens dsl_dsobj_to_dsname(char *pname, uint64_t obj, char *buf)
2797a7f53a56SChris Kirby {
27983b2aab18SMatthew Ahrens 	dsl_pool_t *dp;
27993b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
2800a7f53a56SChris Kirby 	int error;
2801a7f53a56SChris Kirby 
28023b2aab18SMatthew Ahrens 	error = dsl_pool_hold(pname, FTAG, &dp);
28033b2aab18SMatthew Ahrens 	if (error != 0)
28043b2aab18SMatthew Ahrens 		return (error);
28053b2aab18SMatthew Ahrens 
28063b2aab18SMatthew Ahrens 	error = dsl_dataset_hold_obj(dp, obj, FTAG, &ds);
28073b2aab18SMatthew Ahrens 	if (error == 0) {
28083b2aab18SMatthew Ahrens 		dsl_dataset_name(ds, buf);
28093b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
28103b2aab18SMatthew Ahrens 	}
28113b2aab18SMatthew Ahrens 	dsl_pool_rele(dp, FTAG);
2812a7f53a56SChris Kirby 
2813a7f53a56SChris Kirby 	return (error);
2814a7f53a56SChris Kirby }
2815a7f53a56SChris Kirby 
2816842727c2SChris Kirby int
28173b2aab18SMatthew Ahrens dsl_dataset_check_quota(dsl_dataset_t *ds, boolean_t check_quota,
28183b2aab18SMatthew Ahrens     uint64_t asize, uint64_t inflight, uint64_t *used, uint64_t *ref_rsrv)
2819842727c2SChris Kirby {
28203b2aab18SMatthew Ahrens 	int error = 0;
2821842727c2SChris Kirby 
28223b2aab18SMatthew Ahrens 	ASSERT3S(asize, >, 0);
2823842727c2SChris Kirby 
28243b2aab18SMatthew Ahrens 	/*
28253b2aab18SMatthew Ahrens 	 * *ref_rsrv is the portion of asize that will come from any
28263b2aab18SMatthew Ahrens 	 * unconsumed refreservation space.
28273b2aab18SMatthew Ahrens 	 */
28283b2aab18SMatthew Ahrens 	*ref_rsrv = 0;
2829842727c2SChris Kirby 
28303b2aab18SMatthew Ahrens 	mutex_enter(&ds->ds_lock);
28313b2aab18SMatthew Ahrens 	/*
28323b2aab18SMatthew Ahrens 	 * Make a space adjustment for reserved bytes.
28333b2aab18SMatthew Ahrens 	 */
2834c1379625SJustin T. Gibbs 	if (ds->ds_reserved > dsl_dataset_phys(ds)->ds_unique_bytes) {
28353b2aab18SMatthew Ahrens 		ASSERT3U(*used, >=,
2836c1379625SJustin T. Gibbs 		    ds->ds_reserved - dsl_dataset_phys(ds)->ds_unique_bytes);
2837c1379625SJustin T. Gibbs 		*used -=
2838c1379625SJustin T. Gibbs 		    (ds->ds_reserved - dsl_dataset_phys(ds)->ds_unique_bytes);
28393b2aab18SMatthew Ahrens 		*ref_rsrv =
28403b2aab18SMatthew Ahrens 		    asize - MIN(asize, parent_delta(ds, asize + inflight));
2841842727c2SChris Kirby 	}
2842842727c2SChris Kirby 
28433b2aab18SMatthew Ahrens 	if (!check_quota || ds->ds_quota == 0) {
28443b2aab18SMatthew Ahrens 		mutex_exit(&ds->ds_lock);
28453b2aab18SMatthew Ahrens 		return (0);
2846842727c2SChris Kirby 	}
28473b2aab18SMatthew Ahrens 	/*
28483b2aab18SMatthew Ahrens 	 * If they are requesting more space, and our current estimate
28493b2aab18SMatthew Ahrens 	 * is over quota, they get to try again unless the actual
28503b2aab18SMatthew Ahrens 	 * on-disk is over quota and there are no pending changes (which
28513b2aab18SMatthew Ahrens 	 * may free up space for us).
28523b2aab18SMatthew Ahrens 	 */
2853c1379625SJustin T. Gibbs 	if (dsl_dataset_phys(ds)->ds_referenced_bytes + inflight >=
2854c1379625SJustin T. Gibbs 	    ds->ds_quota) {
28553b2aab18SMatthew Ahrens 		if (inflight > 0 ||
2856c1379625SJustin T. Gibbs 		    dsl_dataset_phys(ds)->ds_referenced_bytes < ds->ds_quota)
2857be6fd75aSMatthew Ahrens 			error = SET_ERROR(ERESTART);
28583b2aab18SMatthew Ahrens 		else
2859be6fd75aSMatthew Ahrens 			error = SET_ERROR(EDQUOT);
2860842727c2SChris Kirby 	}
28613b2aab18SMatthew Ahrens 	mutex_exit(&ds->ds_lock);
2862842727c2SChris Kirby 
2863842727c2SChris Kirby 	return (error);
2864842727c2SChris Kirby }
2865842727c2SChris Kirby 
28663b2aab18SMatthew Ahrens typedef struct dsl_dataset_set_qr_arg {
28673b2aab18SMatthew Ahrens 	const char *ddsqra_name;
28683b2aab18SMatthew Ahrens 	zprop_source_t ddsqra_source;
28693b2aab18SMatthew Ahrens 	uint64_t ddsqra_value;
28703b2aab18SMatthew Ahrens } dsl_dataset_set_qr_arg_t;
2871842727c2SChris Kirby 
28723b2aab18SMatthew Ahrens 
28733b2aab18SMatthew Ahrens /* ARGSUSED */
2874842727c2SChris Kirby static int
28753b2aab18SMatthew Ahrens dsl_dataset_set_refquota_check(void *arg, dmu_tx_t *tx)
2876842727c2SChris Kirby {
28773b2aab18SMatthew Ahrens 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
28783b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
28793b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
2880842727c2SChris Kirby 	int error;
28813b2aab18SMatthew Ahrens 	uint64_t newval;
2882842727c2SChris Kirby 
28833b2aab18SMatthew Ahrens 	if (spa_version(dp->dp_spa) < SPA_VERSION_REFQUOTA)
2884be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOTSUP));
2885842727c2SChris Kirby 
28863b2aab18SMatthew Ahrens 	error = dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds);
28873b2aab18SMatthew Ahrens 	if (error != 0)
28883b2aab18SMatthew Ahrens 		return (error);
28893b2aab18SMatthew Ahrens 
2890bc9014e6SJustin Gibbs 	if (ds->ds_is_snapshot) {
28913b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
2892be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
2893842727c2SChris Kirby 	}
2894842727c2SChris Kirby 
28953b2aab18SMatthew Ahrens 	error = dsl_prop_predict(ds->ds_dir,
28963b2aab18SMatthew Ahrens 	    zfs_prop_to_name(ZFS_PROP_REFQUOTA),
28973b2aab18SMatthew Ahrens 	    ddsqra->ddsqra_source, ddsqra->ddsqra_value, &newval);
28983b2aab18SMatthew Ahrens 	if (error != 0) {
28993b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
2900842727c2SChris Kirby 		return (error);
2901842727c2SChris Kirby 	}
2902842727c2SChris Kirby 
29033b2aab18SMatthew Ahrens 	if (newval == 0) {
29043b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
29053b2aab18SMatthew Ahrens 		return (0);
29063b2aab18SMatthew Ahrens 	}
2907842727c2SChris Kirby 
2908c1379625SJustin T. Gibbs 	if (newval < dsl_dataset_phys(ds)->ds_referenced_bytes ||
29093b2aab18SMatthew Ahrens 	    newval < ds->ds_reserved) {
29103b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
2911be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOSPC));
29123b2aab18SMatthew Ahrens 	}
29133b2aab18SMatthew Ahrens 
29143b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
2915842727c2SChris Kirby 	return (0);
2916842727c2SChris Kirby }
2917842727c2SChris Kirby 
29183b2aab18SMatthew Ahrens static void
29193b2aab18SMatthew Ahrens dsl_dataset_set_refquota_sync(void *arg, dmu_tx_t *tx)
2920842727c2SChris Kirby {
29213b2aab18SMatthew Ahrens 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
29223b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
29233b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
29243b2aab18SMatthew Ahrens 	uint64_t newval;
2925842727c2SChris Kirby 
29263b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds));
2927842727c2SChris Kirby 
29283b2aab18SMatthew Ahrens 	dsl_prop_set_sync_impl(ds,
29293b2aab18SMatthew Ahrens 	    zfs_prop_to_name(ZFS_PROP_REFQUOTA),
29303b2aab18SMatthew Ahrens 	    ddsqra->ddsqra_source, sizeof (ddsqra->ddsqra_value), 1,
29313b2aab18SMatthew Ahrens 	    &ddsqra->ddsqra_value, tx);
2932842727c2SChris Kirby 
29333b2aab18SMatthew Ahrens 	VERIFY0(dsl_prop_get_int_ds(ds,
29343b2aab18SMatthew Ahrens 	    zfs_prop_to_name(ZFS_PROP_REFQUOTA), &newval));
2935842727c2SChris Kirby 
29363b2aab18SMatthew Ahrens 	if (ds->ds_quota != newval) {
29373b2aab18SMatthew Ahrens 		dmu_buf_will_dirty(ds->ds_dbuf, tx);
29383b2aab18SMatthew Ahrens 		ds->ds_quota = newval;
2939842727c2SChris Kirby 	}
29403b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
2941842727c2SChris Kirby }
2942842727c2SChris Kirby 
29433b2aab18SMatthew Ahrens int
29443b2aab18SMatthew Ahrens dsl_dataset_set_refquota(const char *dsname, zprop_source_t source,
29453b2aab18SMatthew Ahrens     uint64_t refquota)
2946842727c2SChris Kirby {
29473b2aab18SMatthew Ahrens 	dsl_dataset_set_qr_arg_t ddsqra;
2948842727c2SChris Kirby 
29493b2aab18SMatthew Ahrens 	ddsqra.ddsqra_name = dsname;
29503b2aab18SMatthew Ahrens 	ddsqra.ddsqra_source = source;
29513b2aab18SMatthew Ahrens 	ddsqra.ddsqra_value = refquota;
29523b2aab18SMatthew Ahrens 
29533b2aab18SMatthew Ahrens 	return (dsl_sync_task(dsname, dsl_dataset_set_refquota_check,
29547d46dc6cSMatthew Ahrens 	    dsl_dataset_set_refquota_sync, &ddsqra, 0, ZFS_SPACE_CHECK_NONE));
2955842727c2SChris Kirby }
2956842727c2SChris Kirby 
2957842727c2SChris Kirby static int
29583b2aab18SMatthew Ahrens dsl_dataset_set_refreservation_check(void *arg, dmu_tx_t *tx)
2959842727c2SChris Kirby {
29603b2aab18SMatthew Ahrens 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
29613b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
2962842727c2SChris Kirby 	dsl_dataset_t *ds;
2963842727c2SChris Kirby 	int error;
29643b2aab18SMatthew Ahrens 	uint64_t newval, unique;
2965d7747cbcSChris Kirby 
29663b2aab18SMatthew Ahrens 	if (spa_version(dp->dp_spa) < SPA_VERSION_REFRESERVATION)
2967be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOTSUP));
2968842727c2SChris Kirby 
29693b2aab18SMatthew Ahrens 	error = dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds);
29703b2aab18SMatthew Ahrens 	if (error != 0)
2971842727c2SChris Kirby 		return (error);
2972842727c2SChris Kirby 
2973bc9014e6SJustin Gibbs 	if (ds->ds_is_snapshot) {
29743b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
2975be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
2976842727c2SChris Kirby 	}
2977842727c2SChris Kirby 
29783b2aab18SMatthew Ahrens 	error = dsl_prop_predict(ds->ds_dir,
29793b2aab18SMatthew Ahrens 	    zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
29803b2aab18SMatthew Ahrens 	    ddsqra->ddsqra_source, ddsqra->ddsqra_value, &newval);
29813b2aab18SMatthew Ahrens 	if (error != 0) {
29823b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
2983842727c2SChris Kirby 		return (error);
2984842727c2SChris Kirby 	}
2985842727c2SChris Kirby 
29863b2aab18SMatthew Ahrens 	/*
29873b2aab18SMatthew Ahrens 	 * If we are doing the preliminary check in open context, the
29883b2aab18SMatthew Ahrens 	 * space estimates may be inaccurate.
29893b2aab18SMatthew Ahrens 	 */
29903b2aab18SMatthew Ahrens 	if (!dmu_tx_is_syncing(tx)) {
29913b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
29923b2aab18SMatthew Ahrens 		return (0);
2993842727c2SChris Kirby 	}
2994842727c2SChris Kirby 
29953b2aab18SMatthew Ahrens 	mutex_enter(&ds->ds_lock);
29963b2aab18SMatthew Ahrens 	if (!DS_UNIQUE_IS_ACCURATE(ds))
29973b2aab18SMatthew Ahrens 		dsl_dataset_recalc_head_uniq(ds);
2998c1379625SJustin T. Gibbs 	unique = dsl_dataset_phys(ds)->ds_unique_bytes;
29993b2aab18SMatthew Ahrens 	mutex_exit(&ds->ds_lock);
3000842727c2SChris Kirby 
30013b2aab18SMatthew Ahrens 	if (MAX(unique, newval) > MAX(unique, ds->ds_reserved)) {
30023b2aab18SMatthew Ahrens 		uint64_t delta = MAX(unique, newval) -
30033b2aab18SMatthew Ahrens 		    MAX(unique, ds->ds_reserved);
3004842727c2SChris Kirby 
30053b2aab18SMatthew Ahrens 		if (delta >
30063b2aab18SMatthew Ahrens 		    dsl_dir_space_available(ds->ds_dir, NULL, 0, B_TRUE) ||
30073b2aab18SMatthew Ahrens 		    (ds->ds_quota > 0 && newval > ds->ds_quota)) {
30083b2aab18SMatthew Ahrens 			dsl_dataset_rele(ds, FTAG);
3009be6fd75aSMatthew Ahrens 			return (SET_ERROR(ENOSPC));
30103b2aab18SMatthew Ahrens 		}
3011842727c2SChris Kirby 	}
3012842727c2SChris Kirby 
30133b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
30143b2aab18SMatthew Ahrens 	return (0);
3015842727c2SChris Kirby }
3016842727c2SChris Kirby 
30173b2aab18SMatthew Ahrens void
30183b2aab18SMatthew Ahrens dsl_dataset_set_refreservation_sync_impl(dsl_dataset_t *ds,
30193b2aab18SMatthew Ahrens     zprop_source_t source, uint64_t value, dmu_tx_t *tx)
3020ca45db41SChris Kirby {
30213b2aab18SMatthew Ahrens 	uint64_t newval;
30223b2aab18SMatthew Ahrens 	uint64_t unique;
30233b2aab18SMatthew Ahrens 	int64_t delta;
3024ca45db41SChris Kirby 
30253b2aab18SMatthew Ahrens 	dsl_prop_set_sync_impl(ds, zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
30263b2aab18SMatthew Ahrens 	    source, sizeof (value), 1, &value, tx);
3027ca45db41SChris Kirby 
30283b2aab18SMatthew Ahrens 	VERIFY0(dsl_prop_get_int_ds(ds,
30293b2aab18SMatthew Ahrens 	    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), &newval));
3030a7f53a56SChris Kirby 
30313b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
30323b2aab18SMatthew Ahrens 	mutex_enter(&ds->ds_dir->dd_lock);
30333b2aab18SMatthew Ahrens 	mutex_enter(&ds->ds_lock);
30343b2aab18SMatthew Ahrens 	ASSERT(DS_UNIQUE_IS_ACCURATE(ds));
3035c1379625SJustin T. Gibbs 	unique = dsl_dataset_phys(ds)->ds_unique_bytes;
30363b2aab18SMatthew Ahrens 	delta = MAX(0, (int64_t)(newval - unique)) -
30373b2aab18SMatthew Ahrens 	    MAX(0, (int64_t)(ds->ds_reserved - unique));
30383b2aab18SMatthew Ahrens 	ds->ds_reserved = newval;
30393b2aab18SMatthew Ahrens 	mutex_exit(&ds->ds_lock);
3040a7f53a56SChris Kirby 
30413b2aab18SMatthew Ahrens 	dsl_dir_diduse_space(ds->ds_dir, DD_USED_REFRSRV, delta, 0, 0, tx);
30423b2aab18SMatthew Ahrens 	mutex_exit(&ds->ds_dir->dd_lock);
3043ca45db41SChris Kirby }
3044ca45db41SChris Kirby 
30453b2aab18SMatthew Ahrens static void
30463b2aab18SMatthew Ahrens dsl_dataset_set_refreservation_sync(void *arg, dmu_tx_t *tx)
3047842727c2SChris Kirby {
30483b2aab18SMatthew Ahrens 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
30493b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
3050842727c2SChris Kirby 	dsl_dataset_t *ds;
3051842727c2SChris Kirby 
30523b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds));
30533b2aab18SMatthew Ahrens 	dsl_dataset_set_refreservation_sync_impl(ds,
30543b2aab18SMatthew Ahrens 	    ddsqra->ddsqra_source, ddsqra->ddsqra_value, tx);
3055842727c2SChris Kirby 	dsl_dataset_rele(ds, FTAG);
3056842727c2SChris Kirby }
3057503ad85cSMatthew Ahrens 
3058503ad85cSMatthew Ahrens int
30593b2aab18SMatthew Ahrens dsl_dataset_set_refreservation(const char *dsname, zprop_source_t source,
30603b2aab18SMatthew Ahrens     uint64_t refreservation)
3061503ad85cSMatthew Ahrens {
30623b2aab18SMatthew Ahrens 	dsl_dataset_set_qr_arg_t ddsqra;
3063503ad85cSMatthew Ahrens 
30643b2aab18SMatthew Ahrens 	ddsqra.ddsqra_name = dsname;
30653b2aab18SMatthew Ahrens 	ddsqra.ddsqra_source = source;
30663b2aab18SMatthew Ahrens 	ddsqra.ddsqra_value = refreservation;
30673b2aab18SMatthew Ahrens 
30683b2aab18SMatthew Ahrens 	return (dsl_sync_task(dsname, dsl_dataset_set_refreservation_check,
30697d46dc6cSMatthew Ahrens 	    dsl_dataset_set_refreservation_sync, &ddsqra,
30707d46dc6cSMatthew Ahrens 	    0, ZFS_SPACE_CHECK_NONE));
3071503ad85cSMatthew Ahrens }
307219b94df9SMatthew Ahrens 
307319b94df9SMatthew Ahrens /*
307419b94df9SMatthew Ahrens  * Return (in *usedp) the amount of space written in new that is not
307519b94df9SMatthew Ahrens  * present in oldsnap.  New may be a snapshot or the head.  Old must be
307619b94df9SMatthew Ahrens  * a snapshot before new, in new's filesystem (or its origin).  If not then
307719b94df9SMatthew Ahrens  * fail and return EINVAL.
307819b94df9SMatthew Ahrens  *
307919b94df9SMatthew Ahrens  * The written space is calculated by considering two components:  First, we
308019b94df9SMatthew Ahrens  * ignore any freed space, and calculate the written as new's used space
308119b94df9SMatthew Ahrens  * minus old's used space.  Next, we add in the amount of space that was freed
308219b94df9SMatthew Ahrens  * between the two snapshots, thus reducing new's used space relative to old's.
308319b94df9SMatthew Ahrens  * Specifically, this is the space that was born before old->ds_creation_txg,
308419b94df9SMatthew Ahrens  * and freed before new (ie. on new's deadlist or a previous deadlist).
308519b94df9SMatthew Ahrens  *
308619b94df9SMatthew Ahrens  * space freed                         [---------------------]
308719b94df9SMatthew Ahrens  * snapshots                       ---O-------O--------O-------O------
308819b94df9SMatthew Ahrens  *                                         oldsnap            new
308919b94df9SMatthew Ahrens  */
309019b94df9SMatthew Ahrens int
309119b94df9SMatthew Ahrens dsl_dataset_space_written(dsl_dataset_t *oldsnap, dsl_dataset_t *new,
309219b94df9SMatthew Ahrens     uint64_t *usedp, uint64_t *compp, uint64_t *uncompp)
309319b94df9SMatthew Ahrens {
309419b94df9SMatthew Ahrens 	int err = 0;
309519b94df9SMatthew Ahrens 	uint64_t snapobj;
309619b94df9SMatthew Ahrens 	dsl_pool_t *dp = new->ds_dir->dd_pool;
309719b94df9SMatthew Ahrens 
30983b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(dp));
30993b2aab18SMatthew Ahrens 
310019b94df9SMatthew Ahrens 	*usedp = 0;
3101c1379625SJustin T. Gibbs 	*usedp += dsl_dataset_phys(new)->ds_referenced_bytes;
3102c1379625SJustin T. Gibbs 	*usedp -= dsl_dataset_phys(oldsnap)->ds_referenced_bytes;
310319b94df9SMatthew Ahrens 
310419b94df9SMatthew Ahrens 	*compp = 0;
3105c1379625SJustin T. Gibbs 	*compp += dsl_dataset_phys(new)->ds_compressed_bytes;
3106c1379625SJustin T. Gibbs 	*compp -= dsl_dataset_phys(oldsnap)->ds_compressed_bytes;
310719b94df9SMatthew Ahrens 
310819b94df9SMatthew Ahrens 	*uncompp = 0;
3109c1379625SJustin T. Gibbs 	*uncompp += dsl_dataset_phys(new)->ds_uncompressed_bytes;
3110c1379625SJustin T. Gibbs 	*uncompp -= dsl_dataset_phys(oldsnap)->ds_uncompressed_bytes;
311119b94df9SMatthew Ahrens 
311219b94df9SMatthew Ahrens 	snapobj = new->ds_object;
311319b94df9SMatthew Ahrens 	while (snapobj != oldsnap->ds_object) {
311419b94df9SMatthew Ahrens 		dsl_dataset_t *snap;
311519b94df9SMatthew Ahrens 		uint64_t used, comp, uncomp;
311619b94df9SMatthew Ahrens 
3117ad135b5dSChristopher Siden 		if (snapobj == new->ds_object) {
3118ad135b5dSChristopher Siden 			snap = new;
3119ad135b5dSChristopher Siden 		} else {
3120ad135b5dSChristopher Siden 			err = dsl_dataset_hold_obj(dp, snapobj, FTAG, &snap);
3121ad135b5dSChristopher Siden 			if (err != 0)
3122ad135b5dSChristopher Siden 				break;
3123ad135b5dSChristopher Siden 		}
312419b94df9SMatthew Ahrens 
3125c1379625SJustin T. Gibbs 		if (dsl_dataset_phys(snap)->ds_prev_snap_txg ==
3126c1379625SJustin T. Gibbs 		    dsl_dataset_phys(oldsnap)->ds_creation_txg) {
312719b94df9SMatthew Ahrens 			/*
312819b94df9SMatthew Ahrens 			 * The blocks in the deadlist can not be born after
312919b94df9SMatthew Ahrens 			 * ds_prev_snap_txg, so get the whole deadlist space,
313019b94df9SMatthew Ahrens 			 * which is more efficient (especially for old-format
313119b94df9SMatthew Ahrens 			 * deadlists).  Unfortunately the deadlist code
313219b94df9SMatthew Ahrens 			 * doesn't have enough information to make this
313319b94df9SMatthew Ahrens 			 * optimization itself.
313419b94df9SMatthew Ahrens 			 */
313519b94df9SMatthew Ahrens 			dsl_deadlist_space(&snap->ds_deadlist,
313619b94df9SMatthew Ahrens 			    &used, &comp, &uncomp);
313719b94df9SMatthew Ahrens 		} else {
313819b94df9SMatthew Ahrens 			dsl_deadlist_space_range(&snap->ds_deadlist,
3139c1379625SJustin T. Gibbs 			    0, dsl_dataset_phys(oldsnap)->ds_creation_txg,
314019b94df9SMatthew Ahrens 			    &used, &comp, &uncomp);
314119b94df9SMatthew Ahrens 		}
314219b94df9SMatthew Ahrens 		*usedp += used;
314319b94df9SMatthew Ahrens 		*compp += comp;
314419b94df9SMatthew Ahrens 		*uncompp += uncomp;
314519b94df9SMatthew Ahrens 
314619b94df9SMatthew Ahrens 		/*
314719b94df9SMatthew Ahrens 		 * If we get to the beginning of the chain of snapshots
314819b94df9SMatthew Ahrens 		 * (ds_prev_snap_obj == 0) before oldsnap, then oldsnap
314919b94df9SMatthew Ahrens 		 * was not a snapshot of/before new.
315019b94df9SMatthew Ahrens 		 */
3151c1379625SJustin T. Gibbs 		snapobj = dsl_dataset_phys(snap)->ds_prev_snap_obj;
3152ad135b5dSChristopher Siden 		if (snap != new)
3153ad135b5dSChristopher Siden 			dsl_dataset_rele(snap, FTAG);
315419b94df9SMatthew Ahrens 		if (snapobj == 0) {
3155be6fd75aSMatthew Ahrens 			err = SET_ERROR(EINVAL);
315619b94df9SMatthew Ahrens 			break;
315719b94df9SMatthew Ahrens 		}
315819b94df9SMatthew Ahrens 
315919b94df9SMatthew Ahrens 	}
316019b94df9SMatthew Ahrens 	return (err);
316119b94df9SMatthew Ahrens }
316219b94df9SMatthew Ahrens 
316319b94df9SMatthew Ahrens /*
316419b94df9SMatthew Ahrens  * Return (in *usedp) the amount of space that will be reclaimed if firstsnap,
316519b94df9SMatthew Ahrens  * lastsnap, and all snapshots in between are deleted.
316619b94df9SMatthew Ahrens  *
316719b94df9SMatthew Ahrens  * blocks that would be freed            [---------------------------]
316819b94df9SMatthew Ahrens  * snapshots                       ---O-------O--------O-------O--------O
316919b94df9SMatthew Ahrens  *                                        firstsnap        lastsnap
317019b94df9SMatthew Ahrens  *
317119b94df9SMatthew Ahrens  * This is the set of blocks that were born after the snap before firstsnap,
317219b94df9SMatthew Ahrens  * (birth > firstsnap->prev_snap_txg) and died before the snap after the
317319b94df9SMatthew Ahrens  * last snap (ie, is on lastsnap->ds_next->ds_deadlist or an earlier deadlist).
317419b94df9SMatthew Ahrens  * We calculate this by iterating over the relevant deadlists (from the snap
317519b94df9SMatthew Ahrens  * after lastsnap, backward to the snap after firstsnap), summing up the
317619b94df9SMatthew Ahrens  * space on the deadlist that was born after the snap before firstsnap.
317719b94df9SMatthew Ahrens  */
317819b94df9SMatthew Ahrens int
317919b94df9SMatthew Ahrens dsl_dataset_space_wouldfree(dsl_dataset_t *firstsnap,
318019b94df9SMatthew Ahrens     dsl_dataset_t *lastsnap,
318119b94df9SMatthew Ahrens     uint64_t *usedp, uint64_t *compp, uint64_t *uncompp)
318219b94df9SMatthew Ahrens {
318319b94df9SMatthew Ahrens 	int err = 0;
318419b94df9SMatthew Ahrens 	uint64_t snapobj;
318519b94df9SMatthew Ahrens 	dsl_pool_t *dp = firstsnap->ds_dir->dd_pool;
318619b94df9SMatthew Ahrens 
3187bc9014e6SJustin Gibbs 	ASSERT(firstsnap->ds_is_snapshot);
3188bc9014e6SJustin Gibbs 	ASSERT(lastsnap->ds_is_snapshot);
318919b94df9SMatthew Ahrens 
319019b94df9SMatthew Ahrens 	/*
319119b94df9SMatthew Ahrens 	 * Check that the snapshots are in the same dsl_dir, and firstsnap
319219b94df9SMatthew Ahrens 	 * is before lastsnap.
319319b94df9SMatthew Ahrens 	 */
319419b94df9SMatthew Ahrens 	if (firstsnap->ds_dir != lastsnap->ds_dir ||
3195c1379625SJustin T. Gibbs 	    dsl_dataset_phys(firstsnap)->ds_creation_txg >
3196c1379625SJustin T. Gibbs 	    dsl_dataset_phys(lastsnap)->ds_creation_txg)
3197be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
319819b94df9SMatthew Ahrens 
319919b94df9SMatthew Ahrens 	*usedp = *compp = *uncompp = 0;
320019b94df9SMatthew Ahrens 
3201c1379625SJustin T. Gibbs 	snapobj = dsl_dataset_phys(lastsnap)->ds_next_snap_obj;
320219b94df9SMatthew Ahrens 	while (snapobj != firstsnap->ds_object) {
320319b94df9SMatthew Ahrens 		dsl_dataset_t *ds;
320419b94df9SMatthew Ahrens 		uint64_t used, comp, uncomp;
320519b94df9SMatthew Ahrens 
320619b94df9SMatthew Ahrens 		err = dsl_dataset_hold_obj(dp, snapobj, FTAG, &ds);
320719b94df9SMatthew Ahrens 		if (err != 0)
320819b94df9SMatthew Ahrens 			break;
320919b94df9SMatthew Ahrens 
321019b94df9SMatthew Ahrens 		dsl_deadlist_space_range(&ds->ds_deadlist,
3211c1379625SJustin T. Gibbs 		    dsl_dataset_phys(firstsnap)->ds_prev_snap_txg, UINT64_MAX,
321219b94df9SMatthew Ahrens 		    &used, &comp, &uncomp);
321319b94df9SMatthew Ahrens 		*usedp += used;
321419b94df9SMatthew Ahrens 		*compp += comp;
321519b94df9SMatthew Ahrens 		*uncompp += uncomp;
321619b94df9SMatthew Ahrens 
3217c1379625SJustin T. Gibbs 		snapobj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
321819b94df9SMatthew Ahrens 		ASSERT3U(snapobj, !=, 0);
321919b94df9SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
322019b94df9SMatthew Ahrens 	}
322119b94df9SMatthew Ahrens 	return (err);
322219b94df9SMatthew Ahrens }
32233b2aab18SMatthew Ahrens 
3224b5152584SMatthew Ahrens static int
3225b5152584SMatthew Ahrens dsl_dataset_activate_large_blocks_check(void *arg, dmu_tx_t *tx)
3226b5152584SMatthew Ahrens {
3227b5152584SMatthew Ahrens 	const char *dsname = arg;
3228b5152584SMatthew Ahrens 	dsl_dataset_t *ds;
3229b5152584SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
3230b5152584SMatthew Ahrens 	int error = 0;
3231b5152584SMatthew Ahrens 
3232b5152584SMatthew Ahrens 	if (!spa_feature_is_enabled(dp->dp_spa, SPA_FEATURE_LARGE_BLOCKS))
3233b5152584SMatthew Ahrens 		return (SET_ERROR(ENOTSUP));
3234b5152584SMatthew Ahrens 
3235b5152584SMatthew Ahrens 	ASSERT(spa_feature_is_enabled(dp->dp_spa,
3236b5152584SMatthew Ahrens 	    SPA_FEATURE_EXTENSIBLE_DATASET));
3237b5152584SMatthew Ahrens 
3238b5152584SMatthew Ahrens 	error = dsl_dataset_hold(dp, dsname, FTAG, &ds);
3239b5152584SMatthew Ahrens 	if (error != 0)
3240b5152584SMatthew Ahrens 		return (error);
3241b5152584SMatthew Ahrens 
3242b5152584SMatthew Ahrens 	if (ds->ds_large_blocks)
3243b5152584SMatthew Ahrens 		error = EALREADY;
3244b5152584SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
3245b5152584SMatthew Ahrens 
3246b5152584SMatthew Ahrens 	return (error);
3247b5152584SMatthew Ahrens }
3248b5152584SMatthew Ahrens 
3249b5152584SMatthew Ahrens void
3250b5152584SMatthew Ahrens dsl_dataset_activate_large_blocks_sync_impl(uint64_t dsobj, dmu_tx_t *tx)
3251b5152584SMatthew Ahrens {
3252b5152584SMatthew Ahrens 	spa_t *spa = dmu_tx_pool(tx)->dp_spa;
3253b5152584SMatthew Ahrens 	objset_t *mos = dmu_tx_pool(tx)->dp_meta_objset;
3254b5152584SMatthew Ahrens 	uint64_t zero = 0;
3255b5152584SMatthew Ahrens 
3256b5152584SMatthew Ahrens 	spa_feature_incr(spa, SPA_FEATURE_LARGE_BLOCKS, tx);
3257b5152584SMatthew Ahrens 	dmu_object_zapify(mos, dsobj, DMU_OT_DSL_DATASET, tx);
3258b5152584SMatthew Ahrens 
3259b5152584SMatthew Ahrens 	VERIFY0(zap_add(mos, dsobj, DS_FIELD_LARGE_BLOCKS,
3260b5152584SMatthew Ahrens 	    sizeof (zero), 1, &zero, tx));
3261b5152584SMatthew Ahrens }
3262b5152584SMatthew Ahrens 
3263b5152584SMatthew Ahrens static void
3264b5152584SMatthew Ahrens dsl_dataset_activate_large_blocks_sync(void *arg, dmu_tx_t *tx)
3265b5152584SMatthew Ahrens {
3266b5152584SMatthew Ahrens 	const char *dsname = arg;
3267b5152584SMatthew Ahrens 	dsl_dataset_t *ds;
3268b5152584SMatthew Ahrens 
3269b5152584SMatthew Ahrens 	VERIFY0(dsl_dataset_hold(dmu_tx_pool(tx), dsname, FTAG, &ds));
3270b5152584SMatthew Ahrens 
3271b5152584SMatthew Ahrens 	dsl_dataset_activate_large_blocks_sync_impl(ds->ds_object, tx);
3272b5152584SMatthew Ahrens 	ASSERT(!ds->ds_large_blocks);
3273b5152584SMatthew Ahrens 	ds->ds_large_blocks = B_TRUE;
3274b5152584SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
3275b5152584SMatthew Ahrens }
3276b5152584SMatthew Ahrens 
3277b5152584SMatthew Ahrens int
3278b5152584SMatthew Ahrens dsl_dataset_activate_large_blocks(const char *dsname)
3279b5152584SMatthew Ahrens {
3280b5152584SMatthew Ahrens 	int error;
3281b5152584SMatthew Ahrens 
3282b5152584SMatthew Ahrens 	error = dsl_sync_task(dsname,
3283b5152584SMatthew Ahrens 	    dsl_dataset_activate_large_blocks_check,
3284b5152584SMatthew Ahrens 	    dsl_dataset_activate_large_blocks_sync, (void *)dsname,
3285b5152584SMatthew Ahrens 	    1, ZFS_SPACE_CHECK_RESERVED);
3286b5152584SMatthew Ahrens 
3287b5152584SMatthew Ahrens 	/*
3288b5152584SMatthew Ahrens 	 * EALREADY indicates that this dataset already supports large blocks.
3289b5152584SMatthew Ahrens 	 */
3290b5152584SMatthew Ahrens 	if (error == EALREADY)
3291b5152584SMatthew Ahrens 		error = 0;
3292b5152584SMatthew Ahrens 	return (error);
3293b5152584SMatthew Ahrens }
3294b5152584SMatthew Ahrens 
32953b2aab18SMatthew Ahrens /*
32963b2aab18SMatthew Ahrens  * Return TRUE if 'earlier' is an earlier snapshot in 'later's timeline.
32973b2aab18SMatthew Ahrens  * For example, they could both be snapshots of the same filesystem, and
32983b2aab18SMatthew Ahrens  * 'earlier' is before 'later'.  Or 'earlier' could be the origin of
32993b2aab18SMatthew Ahrens  * 'later's filesystem.  Or 'earlier' could be an older snapshot in the origin's
33003b2aab18SMatthew Ahrens  * filesystem.  Or 'earlier' could be the origin's origin.
330178f17100SMatthew Ahrens  *
330278f17100SMatthew Ahrens  * If non-zero, earlier_txg is used instead of earlier's ds_creation_txg.
33033b2aab18SMatthew Ahrens  */
33043b2aab18SMatthew Ahrens boolean_t
330578f17100SMatthew Ahrens dsl_dataset_is_before(dsl_dataset_t *later, dsl_dataset_t *earlier,
330678f17100SMatthew Ahrens 	uint64_t earlier_txg)
33073b2aab18SMatthew Ahrens {
33083b2aab18SMatthew Ahrens 	dsl_pool_t *dp = later->ds_dir->dd_pool;
33093b2aab18SMatthew Ahrens 	int error;
33103b2aab18SMatthew Ahrens 	boolean_t ret;
33113b2aab18SMatthew Ahrens 
33123b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(dp));
3313bc9014e6SJustin Gibbs 	ASSERT(earlier->ds_is_snapshot || earlier_txg != 0);
331478f17100SMatthew Ahrens 
331578f17100SMatthew Ahrens 	if (earlier_txg == 0)
3316c1379625SJustin T. Gibbs 		earlier_txg = dsl_dataset_phys(earlier)->ds_creation_txg;
33173b2aab18SMatthew Ahrens 
3318bc9014e6SJustin Gibbs 	if (later->ds_is_snapshot &&
3319c1379625SJustin T. Gibbs 	    earlier_txg >= dsl_dataset_phys(later)->ds_creation_txg)
33203b2aab18SMatthew Ahrens 		return (B_FALSE);
33213b2aab18SMatthew Ahrens 
33223b2aab18SMatthew Ahrens 	if (later->ds_dir == earlier->ds_dir)
33233b2aab18SMatthew Ahrens 		return (B_TRUE);
33243b2aab18SMatthew Ahrens 	if (!dsl_dir_is_clone(later->ds_dir))
33253b2aab18SMatthew Ahrens 		return (B_FALSE);
33263b2aab18SMatthew Ahrens 
3327c1379625SJustin T. Gibbs 	if (dsl_dir_phys(later->ds_dir)->dd_origin_obj == earlier->ds_object)
33283b2aab18SMatthew Ahrens 		return (B_TRUE);
33293b2aab18SMatthew Ahrens 	dsl_dataset_t *origin;
33303b2aab18SMatthew Ahrens 	error = dsl_dataset_hold_obj(dp,
3331c1379625SJustin T. Gibbs 	    dsl_dir_phys(later->ds_dir)->dd_origin_obj, FTAG, &origin);
33323b2aab18SMatthew Ahrens 	if (error != 0)
33333b2aab18SMatthew Ahrens 		return (B_FALSE);
333478f17100SMatthew Ahrens 	ret = dsl_dataset_is_before(origin, earlier, earlier_txg);
33353b2aab18SMatthew Ahrens 	dsl_dataset_rele(origin, FTAG);
33363b2aab18SMatthew Ahrens 	return (ret);
33373b2aab18SMatthew Ahrens }
33382acef22dSMatthew Ahrens 
33392acef22dSMatthew Ahrens 
33402acef22dSMatthew Ahrens void
33412acef22dSMatthew Ahrens dsl_dataset_zapify(dsl_dataset_t *ds, dmu_tx_t *tx)
33422acef22dSMatthew Ahrens {
33432acef22dSMatthew Ahrens 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
33442acef22dSMatthew Ahrens 	dmu_object_zapify(mos, ds->ds_object, DMU_OT_DSL_DATASET, tx);
33452acef22dSMatthew Ahrens }
3346