xref: /illumos-gate/usr/src/uts/common/fs/zfs/dsl_dataset.c (revision a2afb611b30628fb74ad9eade4ae465f9031e262)
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.
233b2aab18SMatthew Ahrens  * Copyright (c) 2013 by Delphix. All rights reserved.
24*a2afb611SJerry Jelinek  * Copyright (c) 2014, Joyent, Inc. All rights reserved.
2503d1795fSAlexander Stetsenko  * Copyright (c) 2014 RackTop Systems.
26fa9e4066Sahrens  */
27fa9e4066Sahrens 
28fa9e4066Sahrens #include <sys/dmu_objset.h>
29fa9e4066Sahrens #include <sys/dsl_dataset.h>
30fa9e4066Sahrens #include <sys/dsl_dir.h>
3199653d4eSeschrock #include <sys/dsl_prop.h>
321d452cf5Sahrens #include <sys/dsl_synctask.h>
33fa9e4066Sahrens #include <sys/dmu_traverse.h>
344e3c9f44SBill Pijewski #include <sys/dmu_impl.h>
35fa9e4066Sahrens #include <sys/dmu_tx.h>
36fa9e4066Sahrens #include <sys/arc.h>
37fa9e4066Sahrens #include <sys/zio.h>
38fa9e4066Sahrens #include <sys/zap.h>
39ad135b5dSChristopher Siden #include <sys/zfeature.h>
40fa9e4066Sahrens #include <sys/unique.h>
41fa9e4066Sahrens #include <sys/zfs_context.h>
42cdf5b4caSmmusante #include <sys/zfs_ioctl.h>
43ecd6cf80Smarks #include <sys/spa.h>
44088f3894Sahrens #include <sys/zfs_znode.h>
45c99e4bdcSChris Kirby #include <sys/zfs_onexit.h>
46842727c2SChris Kirby #include <sys/zvol.h>
473f9d6ad7SLin Ling #include <sys/dsl_scan.h>
48cde58dbcSMatthew Ahrens #include <sys/dsl_deadlist.h>
493b2aab18SMatthew Ahrens #include <sys/dsl_destroy.h>
503b2aab18SMatthew Ahrens #include <sys/dsl_userhold.h>
5178f17100SMatthew Ahrens #include <sys/dsl_bookmark.h>
52e1930233Sbonwick 
53cde58dbcSMatthew Ahrens #define	SWITCH64(x, y) \
54cde58dbcSMatthew Ahrens 	{ \
55cde58dbcSMatthew Ahrens 		uint64_t __tmp = (x); \
56cde58dbcSMatthew Ahrens 		(x) = (y); \
57cde58dbcSMatthew Ahrens 		(y) = __tmp; \
58cde58dbcSMatthew Ahrens 	}
59cde58dbcSMatthew Ahrens 
6055434c77Sek #define	DS_REF_MAX	(1ULL << 62)
61fa9e4066Sahrens 
62fa9e4066Sahrens #define	DSL_DEADLIST_BLOCKSIZE	SPA_MAXBLOCKSIZE
63fa9e4066Sahrens 
64a9799022Sck /*
65a9799022Sck  * Figure out how much of this delta should be propogated to the dsl_dir
66a9799022Sck  * layer.  If there's a refreservation, that space has already been
67a9799022Sck  * partially accounted for in our ancestors.
68a9799022Sck  */
69a9799022Sck static int64_t
70a9799022Sck parent_delta(dsl_dataset_t *ds, int64_t delta)
71a9799022Sck {
72a9799022Sck 	uint64_t old_bytes, new_bytes;
73a9799022Sck 
74a9799022Sck 	if (ds->ds_reserved == 0)
75a9799022Sck 		return (delta);
76a9799022Sck 
77a9799022Sck 	old_bytes = MAX(ds->ds_phys->ds_unique_bytes, ds->ds_reserved);
78a9799022Sck 	new_bytes = MAX(ds->ds_phys->ds_unique_bytes + delta, ds->ds_reserved);
79a9799022Sck 
80a9799022Sck 	ASSERT3U(ABS((int64_t)(new_bytes - old_bytes)), <=, ABS(delta));
81a9799022Sck 	return (new_bytes - old_bytes);
82a9799022Sck }
83fa9e4066Sahrens 
84fa9e4066Sahrens void
85b24ab676SJeff Bonwick dsl_dataset_block_born(dsl_dataset_t *ds, const blkptr_t *bp, dmu_tx_t *tx)
86fa9e4066Sahrens {
87b24ab676SJeff Bonwick 	int used = bp_get_dsize_sync(tx->tx_pool->dp_spa, bp);
88fa9e4066Sahrens 	int compressed = BP_GET_PSIZE(bp);
89fa9e4066Sahrens 	int uncompressed = BP_GET_UCSIZE(bp);
90a9799022Sck 	int64_t delta;
91fa9e4066Sahrens 
923f9d6ad7SLin Ling 	dprintf_bp(bp, "ds=%p", ds);
93fa9e4066Sahrens 
94fa9e4066Sahrens 	ASSERT(dmu_tx_is_syncing(tx));
95fa9e4066Sahrens 	/* It could have been compressed away to nothing */
96fa9e4066Sahrens 	if (BP_IS_HOLE(bp))
97fa9e4066Sahrens 		return;
98fa9e4066Sahrens 	ASSERT(BP_GET_TYPE(bp) != DMU_OT_NONE);
99ad135b5dSChristopher Siden 	ASSERT(DMU_OT_IS_VALID(BP_GET_TYPE(bp)));
100fa9e4066Sahrens 	if (ds == NULL) {
101ce636f8bSMatthew Ahrens 		dsl_pool_mos_diduse_space(tx->tx_pool,
102ce636f8bSMatthew Ahrens 		    used, compressed, uncompressed);
103fa9e4066Sahrens 		return;
104fa9e4066Sahrens 	}
1053f9d6ad7SLin Ling 
106b62969f8SMatthew Ahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
107fa9e4066Sahrens 	mutex_enter(&ds->ds_lock);
108a9799022Sck 	delta = parent_delta(ds, used);
109ad135b5dSChristopher Siden 	ds->ds_phys->ds_referenced_bytes += used;
110fa9e4066Sahrens 	ds->ds_phys->ds_compressed_bytes += compressed;
111fa9e4066Sahrens 	ds->ds_phys->ds_uncompressed_bytes += uncompressed;
112fa9e4066Sahrens 	ds->ds_phys->ds_unique_bytes += used;
113fa9e4066Sahrens 	mutex_exit(&ds->ds_lock);
11474e7dc98SMatthew Ahrens 	dsl_dir_diduse_space(ds->ds_dir, DD_USED_HEAD, delta,
11574e7dc98SMatthew Ahrens 	    compressed, uncompressed, tx);
11674e7dc98SMatthew Ahrens 	dsl_dir_transfer_space(ds->ds_dir, used - delta,
11774e7dc98SMatthew Ahrens 	    DD_USED_REFRSRV, DD_USED_HEAD, tx);
118fa9e4066Sahrens }
119fa9e4066Sahrens 
120cdb0ab79Smaybee int
121b24ab676SJeff Bonwick dsl_dataset_block_kill(dsl_dataset_t *ds, const blkptr_t *bp, dmu_tx_t *tx,
122b24ab676SJeff Bonwick     boolean_t async)
123fa9e4066Sahrens {
12443466aaeSMax Grossman 	int used = bp_get_dsize_sync(tx->tx_pool->dp_spa, bp);
12543466aaeSMax Grossman 	int compressed = BP_GET_PSIZE(bp);
12643466aaeSMax Grossman 	int uncompressed = BP_GET_UCSIZE(bp);
12743466aaeSMax Grossman 
128fa9e4066Sahrens 	if (BP_IS_HOLE(bp))
129cdb0ab79Smaybee 		return (0);
130fa9e4066Sahrens 
131b24ab676SJeff Bonwick 	ASSERT(dmu_tx_is_syncing(tx));
132b24ab676SJeff Bonwick 	ASSERT(bp->blk_birth <= tx->tx_txg);
133b24ab676SJeff Bonwick 
134fa9e4066Sahrens 	if (ds == NULL) {
135b24ab676SJeff Bonwick 		dsl_free(tx->tx_pool, tx->tx_txg, bp);
136ce636f8bSMatthew Ahrens 		dsl_pool_mos_diduse_space(tx->tx_pool,
137ce636f8bSMatthew Ahrens 		    -used, -compressed, -uncompressed);
138cdb0ab79Smaybee 		return (used);
139fa9e4066Sahrens 	}
140fa9e4066Sahrens 	ASSERT3P(tx->tx_pool, ==, ds->ds_dir->dd_pool);
141fa9e4066Sahrens 
14274e7dc98SMatthew Ahrens 	ASSERT(!dsl_dataset_is_snapshot(ds));
143fa9e4066Sahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
144fa9e4066Sahrens 
145fa9e4066Sahrens 	if (bp->blk_birth > ds->ds_phys->ds_prev_snap_txg) {
146a9799022Sck 		int64_t delta;
147c717a561Smaybee 
1483f9d6ad7SLin Ling 		dprintf_bp(bp, "freeing ds=%llu", ds->ds_object);
149b24ab676SJeff Bonwick 		dsl_free(tx->tx_pool, tx->tx_txg, bp);
150fa9e4066Sahrens 
151fa9e4066Sahrens 		mutex_enter(&ds->ds_lock);
152a9799022Sck 		ASSERT(ds->ds_phys->ds_unique_bytes >= used ||
153a9799022Sck 		    !DS_UNIQUE_IS_ACCURATE(ds));
154a9799022Sck 		delta = parent_delta(ds, -used);
155fa9e4066Sahrens 		ds->ds_phys->ds_unique_bytes -= used;
156fa9e4066Sahrens 		mutex_exit(&ds->ds_lock);
15774e7dc98SMatthew Ahrens 		dsl_dir_diduse_space(ds->ds_dir, DD_USED_HEAD,
158a9799022Sck 		    delta, -compressed, -uncompressed, tx);
15974e7dc98SMatthew Ahrens 		dsl_dir_transfer_space(ds->ds_dir, -used - delta,
16074e7dc98SMatthew Ahrens 		    DD_USED_REFRSRV, DD_USED_HEAD, tx);
161fa9e4066Sahrens 	} else {
162fa9e4066Sahrens 		dprintf_bp(bp, "putting on dead list: %s", "");
163b24ab676SJeff Bonwick 		if (async) {
164b24ab676SJeff Bonwick 			/*
165b24ab676SJeff Bonwick 			 * We are here as part of zio's write done callback,
166b24ab676SJeff Bonwick 			 * which means we're a zio interrupt thread.  We can't
167cde58dbcSMatthew Ahrens 			 * call dsl_deadlist_insert() now because it may block
168b24ab676SJeff Bonwick 			 * waiting for I/O.  Instead, put bp on the deferred
169b24ab676SJeff Bonwick 			 * queue and let dsl_pool_sync() finish the job.
170b24ab676SJeff Bonwick 			 */
171cde58dbcSMatthew Ahrens 			bplist_append(&ds->ds_pending_deadlist, bp);
172b24ab676SJeff Bonwick 		} else {
173cde58dbcSMatthew Ahrens 			dsl_deadlist_insert(&ds->ds_deadlist, bp, tx);
174b24ab676SJeff Bonwick 		}
175a4611edeSahrens 		ASSERT3U(ds->ds_prev->ds_object, ==,
176a4611edeSahrens 		    ds->ds_phys->ds_prev_snap_obj);
177a4611edeSahrens 		ASSERT(ds->ds_prev->ds_phys->ds_num_children > 0);
178fa9e4066Sahrens 		/* if (bp->blk_birth > prev prev snap txg) prev unique += bs */
179a4611edeSahrens 		if (ds->ds_prev->ds_phys->ds_next_snap_obj ==
180a4611edeSahrens 		    ds->ds_object && bp->blk_birth >
181a4611edeSahrens 		    ds->ds_prev->ds_phys->ds_prev_snap_txg) {
182a4611edeSahrens 			dmu_buf_will_dirty(ds->ds_prev->ds_dbuf, tx);
183a4611edeSahrens 			mutex_enter(&ds->ds_prev->ds_lock);
184a4611edeSahrens 			ds->ds_prev->ds_phys->ds_unique_bytes += used;
185a4611edeSahrens 			mutex_exit(&ds->ds_prev->ds_lock);
186fa9e4066Sahrens 		}
1873f9d6ad7SLin Ling 		if (bp->blk_birth > ds->ds_dir->dd_origin_txg) {
18874e7dc98SMatthew Ahrens 			dsl_dir_transfer_space(ds->ds_dir, used,
18974e7dc98SMatthew Ahrens 			    DD_USED_HEAD, DD_USED_SNAP, tx);
19074e7dc98SMatthew Ahrens 		}
191fa9e4066Sahrens 	}
192fa9e4066Sahrens 	mutex_enter(&ds->ds_lock);
193ad135b5dSChristopher Siden 	ASSERT3U(ds->ds_phys->ds_referenced_bytes, >=, used);
194ad135b5dSChristopher Siden 	ds->ds_phys->ds_referenced_bytes -= used;
195fa9e4066Sahrens 	ASSERT3U(ds->ds_phys->ds_compressed_bytes, >=, compressed);
196fa9e4066Sahrens 	ds->ds_phys->ds_compressed_bytes -= compressed;
197fa9e4066Sahrens 	ASSERT3U(ds->ds_phys->ds_uncompressed_bytes, >=, uncompressed);
198fa9e4066Sahrens 	ds->ds_phys->ds_uncompressed_bytes -= uncompressed;
199fa9e4066Sahrens 	mutex_exit(&ds->ds_lock);
200cdb0ab79Smaybee 
201cdb0ab79Smaybee 	return (used);
202fa9e4066Sahrens }
203fa9e4066Sahrens 
204ea8dc4b6Seschrock uint64_t
205ea8dc4b6Seschrock dsl_dataset_prev_snap_txg(dsl_dataset_t *ds)
206fa9e4066Sahrens {
207a2eea2e1Sahrens 	uint64_t trysnap = 0;
208a2eea2e1Sahrens 
209fa9e4066Sahrens 	if (ds == NULL)
210ea8dc4b6Seschrock 		return (0);
211fa9e4066Sahrens 	/*
212fa9e4066Sahrens 	 * The snapshot creation could fail, but that would cause an
213fa9e4066Sahrens 	 * incorrect FALSE return, which would only result in an
214fa9e4066Sahrens 	 * overestimation of the amount of space that an operation would
215fa9e4066Sahrens 	 * consume, which is OK.
216fa9e4066Sahrens 	 *
217fa9e4066Sahrens 	 * There's also a small window where we could miss a pending
218fa9e4066Sahrens 	 * snapshot, because we could set the sync task in the quiescing
219fa9e4066Sahrens 	 * phase.  So this should only be used as a guess.
220fa9e4066Sahrens 	 */
221a2eea2e1Sahrens 	if (ds->ds_trysnap_txg >
222a2eea2e1Sahrens 	    spa_last_synced_txg(ds->ds_dir->dd_pool->dp_spa))
223a2eea2e1Sahrens 		trysnap = ds->ds_trysnap_txg;
224a2eea2e1Sahrens 	return (MAX(ds->ds_phys->ds_prev_snap_txg, trysnap));
225ea8dc4b6Seschrock }
226ea8dc4b6Seschrock 
2273d692628SSanjeev Bagewadi boolean_t
228c7cd2421SGeorge Wilson dsl_dataset_block_freeable(dsl_dataset_t *ds, const blkptr_t *bp,
229c7cd2421SGeorge Wilson     uint64_t blk_birth)
230ea8dc4b6Seschrock {
23143466aaeSMax Grossman 	if (blk_birth <= dsl_dataset_prev_snap_txg(ds) ||
23243466aaeSMax Grossman 	    (bp != NULL && BP_IS_HOLE(bp)))
233c7cd2421SGeorge Wilson 		return (B_FALSE);
234c7cd2421SGeorge Wilson 
235837b568bSGeorge Wilson 	ddt_prefetch(dsl_dataset_get_spa(ds), bp);
236c7cd2421SGeorge Wilson 
237c7cd2421SGeorge Wilson 	return (B_TRUE);
238fa9e4066Sahrens }
239fa9e4066Sahrens 
240fa9e4066Sahrens /* ARGSUSED */
241fa9e4066Sahrens static void
242fa9e4066Sahrens dsl_dataset_evict(dmu_buf_t *db, void *dsv)
243fa9e4066Sahrens {
244fa9e4066Sahrens 	dsl_dataset_t *ds = dsv;
245fa9e4066Sahrens 
2463b2aab18SMatthew Ahrens 	ASSERT(ds->ds_owner == NULL);
247fa9e4066Sahrens 
24891ebeef5Sahrens 	unique_remove(ds->ds_fsid_guid);
249fa9e4066Sahrens 
250503ad85cSMatthew Ahrens 	if (ds->ds_objset != NULL)
251503ad85cSMatthew Ahrens 		dmu_objset_evict(ds->ds_objset);
252fa9e4066Sahrens 
253fa9e4066Sahrens 	if (ds->ds_prev) {
2543b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds->ds_prev, ds);
255fa9e4066Sahrens 		ds->ds_prev = NULL;
256fa9e4066Sahrens 	}
257fa9e4066Sahrens 
258cde58dbcSMatthew Ahrens 	bplist_destroy(&ds->ds_pending_deadlist);
2593b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_deadlist_obj != 0)
260cde58dbcSMatthew Ahrens 		dsl_deadlist_close(&ds->ds_deadlist);
261745cd3c5Smaybee 	if (ds->ds_dir)
2623b2aab18SMatthew Ahrens 		dsl_dir_rele(ds->ds_dir, ds);
263fa9e4066Sahrens 
26491ebeef5Sahrens 	ASSERT(!list_link_active(&ds->ds_synced_link));
265fa9e4066Sahrens 
2665ad82045Snd 	mutex_destroy(&ds->ds_lock);
26791ebeef5Sahrens 	mutex_destroy(&ds->ds_opening_lock);
2683b2aab18SMatthew Ahrens 	refcount_destroy(&ds->ds_longholds);
2695ad82045Snd 
270fa9e4066Sahrens 	kmem_free(ds, sizeof (dsl_dataset_t));
271fa9e4066Sahrens }
272fa9e4066Sahrens 
2733b2aab18SMatthew Ahrens int
274fa9e4066Sahrens dsl_dataset_get_snapname(dsl_dataset_t *ds)
275fa9e4066Sahrens {
276fa9e4066Sahrens 	dsl_dataset_phys_t *headphys;
277fa9e4066Sahrens 	int err;
278fa9e4066Sahrens 	dmu_buf_t *headdbuf;
279fa9e4066Sahrens 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
280fa9e4066Sahrens 	objset_t *mos = dp->dp_meta_objset;
281fa9e4066Sahrens 
282fa9e4066Sahrens 	if (ds->ds_snapname[0])
283ea8dc4b6Seschrock 		return (0);
284fa9e4066Sahrens 	if (ds->ds_phys->ds_next_snap_obj == 0)
285ea8dc4b6Seschrock 		return (0);
286fa9e4066Sahrens 
287ea8dc4b6Seschrock 	err = dmu_bonus_hold(mos, ds->ds_dir->dd_phys->dd_head_dataset_obj,
288ea8dc4b6Seschrock 	    FTAG, &headdbuf);
2893b2aab18SMatthew Ahrens 	if (err != 0)
290ea8dc4b6Seschrock 		return (err);
291fa9e4066Sahrens 	headphys = headdbuf->db_data;
292fa9e4066Sahrens 	err = zap_value_search(dp->dp_meta_objset,
293e7437265Sahrens 	    headphys->ds_snapnames_zapobj, ds->ds_object, 0, ds->ds_snapname);
294ea8dc4b6Seschrock 	dmu_buf_rele(headdbuf, FTAG);
295ea8dc4b6Seschrock 	return (err);
296fa9e4066Sahrens }
297fa9e4066Sahrens 
2983b2aab18SMatthew Ahrens int
299745cd3c5Smaybee dsl_dataset_snap_lookup(dsl_dataset_t *ds, const char *name, uint64_t *value)
300ab04eb8eStimh {
301745cd3c5Smaybee 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
302745cd3c5Smaybee 	uint64_t snapobj = ds->ds_phys->ds_snapnames_zapobj;
303ab04eb8eStimh 	matchtype_t mt;
304ab04eb8eStimh 	int err;
305ab04eb8eStimh 
306745cd3c5Smaybee 	if (ds->ds_phys->ds_flags & DS_FLAG_CI_DATASET)
307ab04eb8eStimh 		mt = MT_FIRST;
308ab04eb8eStimh 	else
309ab04eb8eStimh 		mt = MT_EXACT;
310ab04eb8eStimh 
311745cd3c5Smaybee 	err = zap_lookup_norm(mos, snapobj, name, 8, 1,
312ab04eb8eStimh 	    value, mt, NULL, 0, NULL);
313ab04eb8eStimh 	if (err == ENOTSUP && mt == MT_FIRST)
314745cd3c5Smaybee 		err = zap_lookup(mos, snapobj, name, 8, 1, value);
315ab04eb8eStimh 	return (err);
316ab04eb8eStimh }
317ab04eb8eStimh 
3183b2aab18SMatthew Ahrens int
319*a2afb611SJerry Jelinek dsl_dataset_snap_remove(dsl_dataset_t *ds, const char *name, dmu_tx_t *tx,
320*a2afb611SJerry Jelinek     boolean_t adj_cnt)
321ab04eb8eStimh {
322745cd3c5Smaybee 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
323745cd3c5Smaybee 	uint64_t snapobj = ds->ds_phys->ds_snapnames_zapobj;
324ab04eb8eStimh 	matchtype_t mt;
325ab04eb8eStimh 	int err;
326ab04eb8eStimh 
32771eb0538SChris Kirby 	dsl_dir_snap_cmtime_update(ds->ds_dir);
32871eb0538SChris Kirby 
329745cd3c5Smaybee 	if (ds->ds_phys->ds_flags & DS_FLAG_CI_DATASET)
330ab04eb8eStimh 		mt = MT_FIRST;
331ab04eb8eStimh 	else
332ab04eb8eStimh 		mt = MT_EXACT;
333ab04eb8eStimh 
334745cd3c5Smaybee 	err = zap_remove_norm(mos, snapobj, name, mt, tx);
335ab04eb8eStimh 	if (err == ENOTSUP && mt == MT_FIRST)
336745cd3c5Smaybee 		err = zap_remove(mos, snapobj, name, tx);
337*a2afb611SJerry Jelinek 
338*a2afb611SJerry Jelinek 	if (err == 0 && adj_cnt)
339*a2afb611SJerry Jelinek 		dsl_fs_ss_count_adjust(ds->ds_dir, -1,
340*a2afb611SJerry Jelinek 		    DD_FIELD_SNAPSHOT_COUNT, tx);
341*a2afb611SJerry Jelinek 
342ab04eb8eStimh 	return (err);
343ab04eb8eStimh }
344ab04eb8eStimh 
3453b2aab18SMatthew Ahrens int
3463b2aab18SMatthew Ahrens dsl_dataset_hold_obj(dsl_pool_t *dp, uint64_t dsobj, void *tag,
347745cd3c5Smaybee     dsl_dataset_t **dsp)
348fa9e4066Sahrens {
349fa9e4066Sahrens 	objset_t *mos = dp->dp_meta_objset;
350fa9e4066Sahrens 	dmu_buf_t *dbuf;
351fa9e4066Sahrens 	dsl_dataset_t *ds;
352ea8dc4b6Seschrock 	int err;
353a7f53a56SChris Kirby 	dmu_object_info_t doi;
354fa9e4066Sahrens 
3553b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(dp));
356fa9e4066Sahrens 
357ea8dc4b6Seschrock 	err = dmu_bonus_hold(mos, dsobj, tag, &dbuf);
3583b2aab18SMatthew Ahrens 	if (err != 0)
359ea8dc4b6Seschrock 		return (err);
360a7f53a56SChris Kirby 
361a7f53a56SChris Kirby 	/* Make sure dsobj has the correct object type. */
362a7f53a56SChris Kirby 	dmu_object_info_from_db(dbuf, &doi);
3632acef22dSMatthew Ahrens 	if (doi.doi_bonus_type != DMU_OT_DSL_DATASET) {
364b287be1bSWill Andrews 		dmu_buf_rele(dbuf, tag);
365be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
366b287be1bSWill Andrews 	}
367a7f53a56SChris Kirby 
368fa9e4066Sahrens 	ds = dmu_buf_get_user(dbuf);
369fa9e4066Sahrens 	if (ds == NULL) {
370d5285caeSGeorge Wilson 		dsl_dataset_t *winner = NULL;
371fa9e4066Sahrens 
372fa9e4066Sahrens 		ds = kmem_zalloc(sizeof (dsl_dataset_t), KM_SLEEP);
373fa9e4066Sahrens 		ds->ds_dbuf = dbuf;
374fa9e4066Sahrens 		ds->ds_object = dsobj;
375fa9e4066Sahrens 		ds->ds_phys = dbuf->db_data;
376fa9e4066Sahrens 
3775ad82045Snd 		mutex_init(&ds->ds_lock, NULL, MUTEX_DEFAULT, NULL);
37891ebeef5Sahrens 		mutex_init(&ds->ds_opening_lock, NULL, MUTEX_DEFAULT, NULL);
3794e3c9f44SBill Pijewski 		mutex_init(&ds->ds_sendstream_lock, NULL, MUTEX_DEFAULT, NULL);
3803b2aab18SMatthew Ahrens 		refcount_create(&ds->ds_longholds);
3815ad82045Snd 
382cde58dbcSMatthew Ahrens 		bplist_create(&ds->ds_pending_deadlist);
383cde58dbcSMatthew Ahrens 		dsl_deadlist_open(&ds->ds_deadlist,
384fa9e4066Sahrens 		    mos, ds->ds_phys->ds_deadlist_obj);
385cde58dbcSMatthew Ahrens 
3864e3c9f44SBill Pijewski 		list_create(&ds->ds_sendstreams, sizeof (dmu_sendarg_t),
3874e3c9f44SBill Pijewski 		    offsetof(dmu_sendarg_t, dsa_link));
3884e3c9f44SBill Pijewski 
389ea8dc4b6Seschrock 		if (err == 0) {
3903b2aab18SMatthew Ahrens 			err = dsl_dir_hold_obj(dp,
391ea8dc4b6Seschrock 			    ds->ds_phys->ds_dir_obj, NULL, ds, &ds->ds_dir);
392ea8dc4b6Seschrock 		}
3933b2aab18SMatthew Ahrens 		if (err != 0) {
3945ad82045Snd 			mutex_destroy(&ds->ds_lock);
39591ebeef5Sahrens 			mutex_destroy(&ds->ds_opening_lock);
3963b2aab18SMatthew Ahrens 			refcount_destroy(&ds->ds_longholds);
397cde58dbcSMatthew Ahrens 			bplist_destroy(&ds->ds_pending_deadlist);
398cde58dbcSMatthew Ahrens 			dsl_deadlist_close(&ds->ds_deadlist);
399ea8dc4b6Seschrock 			kmem_free(ds, sizeof (dsl_dataset_t));
400ea8dc4b6Seschrock 			dmu_buf_rele(dbuf, tag);
401ea8dc4b6Seschrock 			return (err);
402ea8dc4b6Seschrock 		}
403fa9e4066Sahrens 
40474e7dc98SMatthew Ahrens 		if (!dsl_dataset_is_snapshot(ds)) {
405fa9e4066Sahrens 			ds->ds_snapname[0] = '\0';
4063b2aab18SMatthew Ahrens 			if (ds->ds_phys->ds_prev_snap_obj != 0) {
4073b2aab18SMatthew Ahrens 				err = dsl_dataset_hold_obj(dp,
408745cd3c5Smaybee 				    ds->ds_phys->ds_prev_snap_obj,
409745cd3c5Smaybee 				    ds, &ds->ds_prev);
410fa9e4066Sahrens 			}
41178f17100SMatthew Ahrens 			if (doi.doi_type == DMU_OTN_ZAP_METADATA) {
41278f17100SMatthew Ahrens 				int zaperr = zap_lookup(mos, ds->ds_object,
41378f17100SMatthew Ahrens 				    DS_FIELD_BOOKMARK_NAMES,
41478f17100SMatthew Ahrens 				    sizeof (ds->ds_bookmarks), 1,
41578f17100SMatthew Ahrens 				    &ds->ds_bookmarks);
41678f17100SMatthew Ahrens 				if (zaperr != ENOENT)
41778f17100SMatthew Ahrens 					VERIFY0(zaperr);
41878f17100SMatthew Ahrens 			}
419842727c2SChris Kirby 		} else {
420842727c2SChris Kirby 			if (zfs_flags & ZFS_DEBUG_SNAPNAMES)
421842727c2SChris Kirby 				err = dsl_dataset_get_snapname(ds);
422842727c2SChris Kirby 			if (err == 0 && ds->ds_phys->ds_userrefs_obj != 0) {
423842727c2SChris Kirby 				err = zap_count(
424842727c2SChris Kirby 				    ds->ds_dir->dd_pool->dp_meta_objset,
425842727c2SChris Kirby 				    ds->ds_phys->ds_userrefs_obj,
426842727c2SChris Kirby 				    &ds->ds_userrefs);
427842727c2SChris Kirby 			}
428fa9e4066Sahrens 		}
429fa9e4066Sahrens 
43074e7dc98SMatthew Ahrens 		if (err == 0 && !dsl_dataset_is_snapshot(ds)) {
4313b2aab18SMatthew Ahrens 			err = dsl_prop_get_int_ds(ds,
4323b2aab18SMatthew Ahrens 			    zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
4333b2aab18SMatthew Ahrens 			    &ds->ds_reserved);
434cb625fb5Sck 			if (err == 0) {
4353b2aab18SMatthew Ahrens 				err = dsl_prop_get_int_ds(ds,
4363b2aab18SMatthew Ahrens 				    zfs_prop_to_name(ZFS_PROP_REFQUOTA),
4373b2aab18SMatthew Ahrens 				    &ds->ds_quota);
438cb625fb5Sck 			}
439cb625fb5Sck 		} else {
440cb625fb5Sck 			ds->ds_reserved = ds->ds_quota = 0;
441cb625fb5Sck 		}
442cb625fb5Sck 
443d5285caeSGeorge Wilson 		if (err != 0 || (winner = dmu_buf_set_user_ie(dbuf, ds,
444d5285caeSGeorge Wilson 		    &ds->ds_phys, dsl_dataset_evict)) != NULL) {
445cde58dbcSMatthew Ahrens 			bplist_destroy(&ds->ds_pending_deadlist);
446cde58dbcSMatthew Ahrens 			dsl_deadlist_close(&ds->ds_deadlist);
447745cd3c5Smaybee 			if (ds->ds_prev)
4483b2aab18SMatthew Ahrens 				dsl_dataset_rele(ds->ds_prev, ds);
4493b2aab18SMatthew Ahrens 			dsl_dir_rele(ds->ds_dir, ds);
4505ad82045Snd 			mutex_destroy(&ds->ds_lock);
45191ebeef5Sahrens 			mutex_destroy(&ds->ds_opening_lock);
4523b2aab18SMatthew Ahrens 			refcount_destroy(&ds->ds_longholds);
453fa9e4066Sahrens 			kmem_free(ds, sizeof (dsl_dataset_t));
4543b2aab18SMatthew Ahrens 			if (err != 0) {
455ea8dc4b6Seschrock 				dmu_buf_rele(dbuf, tag);
456ea8dc4b6Seschrock 				return (err);
457ea8dc4b6Seschrock 			}
458fa9e4066Sahrens 			ds = winner;
459fa9e4066Sahrens 		} else {
46091ebeef5Sahrens 			ds->ds_fsid_guid =
461fa9e4066Sahrens 			    unique_insert(ds->ds_phys->ds_fsid_guid);
462fa9e4066Sahrens 		}
463fa9e4066Sahrens 	}
464fa9e4066Sahrens 	ASSERT3P(ds->ds_dbuf, ==, dbuf);
465fa9e4066Sahrens 	ASSERT3P(ds->ds_phys, ==, dbuf->db_data);
466088f3894Sahrens 	ASSERT(ds->ds_phys->ds_prev_snap_obj != 0 ||
467afc6333aSahrens 	    spa_version(dp->dp_spa) < SPA_VERSION_ORIGIN ||
46884db2a68Sahrens 	    dp->dp_origin_snap == NULL || ds == dp->dp_origin_snap);
469ea8dc4b6Seschrock 	*dsp = ds;
470ea8dc4b6Seschrock 	return (0);
471fa9e4066Sahrens }
472fa9e4066Sahrens 
473745cd3c5Smaybee int
4743b2aab18SMatthew Ahrens dsl_dataset_hold(dsl_pool_t *dp, const char *name,
475503ad85cSMatthew Ahrens     void *tag, dsl_dataset_t **dsp)
476fa9e4066Sahrens {
477fa9e4066Sahrens 	dsl_dir_t *dd;
478745cd3c5Smaybee 	const char *snapname;
479fa9e4066Sahrens 	uint64_t obj;
480fa9e4066Sahrens 	int err = 0;
481fa9e4066Sahrens 
4823b2aab18SMatthew Ahrens 	err = dsl_dir_hold(dp, name, FTAG, &dd, &snapname);
4833b2aab18SMatthew Ahrens 	if (err != 0)
484ea8dc4b6Seschrock 		return (err);
485fa9e4066Sahrens 
4863b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(dp));
487fa9e4066Sahrens 	obj = dd->dd_phys->dd_head_dataset_obj;
4883b2aab18SMatthew Ahrens 	if (obj != 0)
4893b2aab18SMatthew Ahrens 		err = dsl_dataset_hold_obj(dp, obj, tag, dsp);
490745cd3c5Smaybee 	else
491be6fd75aSMatthew Ahrens 		err = SET_ERROR(ENOENT);
492fa9e4066Sahrens 
493745cd3c5Smaybee 	/* we may be looking for a snapshot */
494745cd3c5Smaybee 	if (err == 0 && snapname != NULL) {
4953b2aab18SMatthew Ahrens 		dsl_dataset_t *ds;
496fa9e4066Sahrens 
497745cd3c5Smaybee 		if (*snapname++ != '@') {
498745cd3c5Smaybee 			dsl_dataset_rele(*dsp, tag);
4993b2aab18SMatthew Ahrens 			dsl_dir_rele(dd, FTAG);
500be6fd75aSMatthew Ahrens 			return (SET_ERROR(ENOENT));
501fa9e4066Sahrens 		}
502fa9e4066Sahrens 
503745cd3c5Smaybee 		dprintf("looking for snapshot '%s'\n", snapname);
504745cd3c5Smaybee 		err = dsl_dataset_snap_lookup(*dsp, snapname, &obj);
505745cd3c5Smaybee 		if (err == 0)
5063b2aab18SMatthew Ahrens 			err = dsl_dataset_hold_obj(dp, obj, tag, &ds);
507745cd3c5Smaybee 		dsl_dataset_rele(*dsp, tag);
508745cd3c5Smaybee 
5093b2aab18SMatthew Ahrens 		if (err == 0) {
510745cd3c5Smaybee 			mutex_enter(&ds->ds_lock);
511745cd3c5Smaybee 			if (ds->ds_snapname[0] == 0)
512745cd3c5Smaybee 				(void) strlcpy(ds->ds_snapname, snapname,
513745cd3c5Smaybee 				    sizeof (ds->ds_snapname));
514745cd3c5Smaybee 			mutex_exit(&ds->ds_lock);
5153b2aab18SMatthew Ahrens 			*dsp = ds;
516fa9e4066Sahrens 		}
517fa9e4066Sahrens 	}
5183b2aab18SMatthew Ahrens 
5193b2aab18SMatthew Ahrens 	dsl_dir_rele(dd, FTAG);
520fa9e4066Sahrens 	return (err);
521fa9e4066Sahrens }
522fa9e4066Sahrens 
523fa9e4066Sahrens int
5243b2aab18SMatthew Ahrens dsl_dataset_own_obj(dsl_pool_t *dp, uint64_t dsobj,
5253b2aab18SMatthew Ahrens     void *tag, dsl_dataset_t **dsp)
5263b2aab18SMatthew Ahrens {
5273b2aab18SMatthew Ahrens 	int err = dsl_dataset_hold_obj(dp, dsobj, tag, dsp);
5283b2aab18SMatthew Ahrens 	if (err != 0)
5293b2aab18SMatthew Ahrens 		return (err);
5303b2aab18SMatthew Ahrens 	if (!dsl_dataset_tryown(*dsp, tag)) {
5313b2aab18SMatthew Ahrens 		dsl_dataset_rele(*dsp, tag);
5323b2aab18SMatthew Ahrens 		*dsp = NULL;
533be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
5343b2aab18SMatthew Ahrens 	}
5353b2aab18SMatthew Ahrens 	return (0);
5363b2aab18SMatthew Ahrens }
5373b2aab18SMatthew Ahrens 
5383b2aab18SMatthew Ahrens int
5393b2aab18SMatthew Ahrens dsl_dataset_own(dsl_pool_t *dp, const char *name,
540503ad85cSMatthew Ahrens     void *tag, dsl_dataset_t **dsp)
541fa9e4066Sahrens {
5423b2aab18SMatthew Ahrens 	int err = dsl_dataset_hold(dp, name, tag, dsp);
5433b2aab18SMatthew Ahrens 	if (err != 0)
544745cd3c5Smaybee 		return (err);
5453b2aab18SMatthew Ahrens 	if (!dsl_dataset_tryown(*dsp, tag)) {
546503ad85cSMatthew Ahrens 		dsl_dataset_rele(*dsp, tag);
547be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
548745cd3c5Smaybee 	}
549745cd3c5Smaybee 	return (0);
550fa9e4066Sahrens }
551fa9e4066Sahrens 
5523b2aab18SMatthew Ahrens /*
5533b2aab18SMatthew Ahrens  * See the comment above dsl_pool_hold() for details.  In summary, a long
5543b2aab18SMatthew Ahrens  * hold is used to prevent destruction of a dataset while the pool hold
5553b2aab18SMatthew Ahrens  * is dropped, allowing other concurrent operations (e.g. spa_sync()).
5563b2aab18SMatthew Ahrens  *
5573b2aab18SMatthew Ahrens  * The dataset and pool must be held when this function is called.  After it
5583b2aab18SMatthew Ahrens  * is called, the pool hold may be released while the dataset is still held
5593b2aab18SMatthew Ahrens  * and accessed.
5603b2aab18SMatthew Ahrens  */
5613b2aab18SMatthew Ahrens void
5623b2aab18SMatthew Ahrens dsl_dataset_long_hold(dsl_dataset_t *ds, void *tag)
5633b2aab18SMatthew Ahrens {
5643b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool));
5653b2aab18SMatthew Ahrens 	(void) refcount_add(&ds->ds_longholds, tag);
5663b2aab18SMatthew Ahrens }
5673b2aab18SMatthew Ahrens 
5683b2aab18SMatthew Ahrens void
5693b2aab18SMatthew Ahrens dsl_dataset_long_rele(dsl_dataset_t *ds, void *tag)
5703b2aab18SMatthew Ahrens {
5713b2aab18SMatthew Ahrens 	(void) refcount_remove(&ds->ds_longholds, tag);
5723b2aab18SMatthew Ahrens }
5733b2aab18SMatthew Ahrens 
5743b2aab18SMatthew Ahrens /* Return B_TRUE if there are any long holds on this dataset. */
5753b2aab18SMatthew Ahrens boolean_t
5763b2aab18SMatthew Ahrens dsl_dataset_long_held(dsl_dataset_t *ds)
5773b2aab18SMatthew Ahrens {
5783b2aab18SMatthew Ahrens 	return (!refcount_is_zero(&ds->ds_longholds));
5793b2aab18SMatthew Ahrens }
5803b2aab18SMatthew Ahrens 
581fa9e4066Sahrens void
582fa9e4066Sahrens dsl_dataset_name(dsl_dataset_t *ds, char *name)
583fa9e4066Sahrens {
584fa9e4066Sahrens 	if (ds == NULL) {
585fa9e4066Sahrens 		(void) strcpy(name, "mos");
586fa9e4066Sahrens 	} else {
587fa9e4066Sahrens 		dsl_dir_name(ds->ds_dir, name);
5883b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_get_snapname(ds));
589fa9e4066Sahrens 		if (ds->ds_snapname[0]) {
590fa9e4066Sahrens 			(void) strcat(name, "@");
591745cd3c5Smaybee 			/*
592745cd3c5Smaybee 			 * We use a "recursive" mutex so that we
593745cd3c5Smaybee 			 * can call dprintf_ds() with ds_lock held.
594745cd3c5Smaybee 			 */
595fa9e4066Sahrens 			if (!MUTEX_HELD(&ds->ds_lock)) {
596fa9e4066Sahrens 				mutex_enter(&ds->ds_lock);
597fa9e4066Sahrens 				(void) strcat(name, ds->ds_snapname);
598fa9e4066Sahrens 				mutex_exit(&ds->ds_lock);
599fa9e4066Sahrens 			} else {
600fa9e4066Sahrens 				(void) strcat(name, ds->ds_snapname);
601fa9e4066Sahrens 			}
602fa9e4066Sahrens 		}
603fa9e4066Sahrens 	}
604fa9e4066Sahrens }
605fa9e4066Sahrens 
6063cb34c60Sahrens void
607745cd3c5Smaybee dsl_dataset_rele(dsl_dataset_t *ds, void *tag)
6083cb34c60Sahrens {
6093b2aab18SMatthew Ahrens 	dmu_buf_rele(ds->ds_dbuf, tag);
610745cd3c5Smaybee }
611745cd3c5Smaybee 
612745cd3c5Smaybee void
613503ad85cSMatthew Ahrens dsl_dataset_disown(dsl_dataset_t *ds, void *tag)
614745cd3c5Smaybee {
6153b2aab18SMatthew Ahrens 	ASSERT(ds->ds_owner == tag && ds->ds_dbuf != NULL);
616745cd3c5Smaybee 
6173cb34c60Sahrens 	mutex_enter(&ds->ds_lock);
618745cd3c5Smaybee 	ds->ds_owner = NULL;
6193cb34c60Sahrens 	mutex_exit(&ds->ds_lock);
6203b2aab18SMatthew Ahrens 	dsl_dataset_long_rele(ds, tag);
6213b2aab18SMatthew Ahrens 	if (ds->ds_dbuf != NULL)
6223b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, tag);
623745cd3c5Smaybee 	else
624cde58dbcSMatthew Ahrens 		dsl_dataset_evict(NULL, ds);
6253cb34c60Sahrens }
6263cb34c60Sahrens 
6273cb34c60Sahrens boolean_t
6283b2aab18SMatthew Ahrens dsl_dataset_tryown(dsl_dataset_t *ds, void *tag)
6293cb34c60Sahrens {
630745cd3c5Smaybee 	boolean_t gotit = FALSE;
631745cd3c5Smaybee 
6323cb34c60Sahrens 	mutex_enter(&ds->ds_lock);
6333b2aab18SMatthew Ahrens 	if (ds->ds_owner == NULL && !DS_IS_INCONSISTENT(ds)) {
634503ad85cSMatthew Ahrens 		ds->ds_owner = tag;
6353b2aab18SMatthew Ahrens 		dsl_dataset_long_hold(ds, tag);
636745cd3c5Smaybee 		gotit = TRUE;
6373cb34c60Sahrens 	}
6383cb34c60Sahrens 	mutex_exit(&ds->ds_lock);
639745cd3c5Smaybee 	return (gotit);
640745cd3c5Smaybee }
641745cd3c5Smaybee 
6421d452cf5Sahrens uint64_t
643088f3894Sahrens dsl_dataset_create_sync_dd(dsl_dir_t *dd, dsl_dataset_t *origin,
644ab04eb8eStimh     uint64_t flags, dmu_tx_t *tx)
645fa9e4066Sahrens {
6463cb34c60Sahrens 	dsl_pool_t *dp = dd->dd_pool;
647fa9e4066Sahrens 	dmu_buf_t *dbuf;
648fa9e4066Sahrens 	dsl_dataset_phys_t *dsphys;
6493cb34c60Sahrens 	uint64_t dsobj;
650fa9e4066Sahrens 	objset_t *mos = dp->dp_meta_objset;
651fa9e4066Sahrens 
652088f3894Sahrens 	if (origin == NULL)
653088f3894Sahrens 		origin = dp->dp_origin_snap;
654088f3894Sahrens 
6553cb34c60Sahrens 	ASSERT(origin == NULL || origin->ds_dir->dd_pool == dp);
6563cb34c60Sahrens 	ASSERT(origin == NULL || origin->ds_phys->ds_num_children > 0);
657fa9e4066Sahrens 	ASSERT(dmu_tx_is_syncing(tx));
6583cb34c60Sahrens 	ASSERT(dd->dd_phys->dd_head_dataset_obj == 0);
659fa9e4066Sahrens 
6601649cd4bStabriz 	dsobj = dmu_object_alloc(mos, DMU_OT_DSL_DATASET, 0,
6611649cd4bStabriz 	    DMU_OT_DSL_DATASET, sizeof (dsl_dataset_phys_t), tx);
6623b2aab18SMatthew Ahrens 	VERIFY0(dmu_bonus_hold(mos, dsobj, FTAG, &dbuf));
663fa9e4066Sahrens 	dmu_buf_will_dirty(dbuf, tx);
664fa9e4066Sahrens 	dsphys = dbuf->db_data;
665745cd3c5Smaybee 	bzero(dsphys, sizeof (dsl_dataset_phys_t));
666fa9e4066Sahrens 	dsphys->ds_dir_obj = dd->dd_object;
667ab04eb8eStimh 	dsphys->ds_flags = flags;
668fa9e4066Sahrens 	dsphys->ds_fsid_guid = unique_create();
669fa9e4066Sahrens 	(void) random_get_pseudo_bytes((void*)&dsphys->ds_guid,
670fa9e4066Sahrens 	    sizeof (dsphys->ds_guid));
671fa9e4066Sahrens 	dsphys->ds_snapnames_zapobj =
672ab04eb8eStimh 	    zap_create_norm(mos, U8_TEXTPREP_TOUPPER, DMU_OT_DSL_DS_SNAP_MAP,
673ab04eb8eStimh 	    DMU_OT_NONE, 0, tx);
674fa9e4066Sahrens 	dsphys->ds_creation_time = gethrestime_sec();
675088f3894Sahrens 	dsphys->ds_creation_txg = tx->tx_txg == TXG_INITIAL ? 1 : tx->tx_txg;
676a9799022Sck 
677cde58dbcSMatthew Ahrens 	if (origin == NULL) {
678cde58dbcSMatthew Ahrens 		dsphys->ds_deadlist_obj = dsl_deadlist_alloc(mos, tx);
679cde58dbcSMatthew Ahrens 	} else {
6803b2aab18SMatthew Ahrens 		dsl_dataset_t *ohds; /* head of the origin snapshot */
681cde58dbcSMatthew Ahrens 
6823cb34c60Sahrens 		dsphys->ds_prev_snap_obj = origin->ds_object;
683fa9e4066Sahrens 		dsphys->ds_prev_snap_txg =
6843cb34c60Sahrens 		    origin->ds_phys->ds_creation_txg;
685ad135b5dSChristopher Siden 		dsphys->ds_referenced_bytes =
686ad135b5dSChristopher Siden 		    origin->ds_phys->ds_referenced_bytes;
687fa9e4066Sahrens 		dsphys->ds_compressed_bytes =
6883cb34c60Sahrens 		    origin->ds_phys->ds_compressed_bytes;
689fa9e4066Sahrens 		dsphys->ds_uncompressed_bytes =
6903cb34c60Sahrens 		    origin->ds_phys->ds_uncompressed_bytes;
6913cb34c60Sahrens 		dsphys->ds_bp = origin->ds_phys->ds_bp;
692579ae4d5Stimh 		dsphys->ds_flags |= origin->ds_phys->ds_flags;
693fa9e4066Sahrens 
6943cb34c60Sahrens 		dmu_buf_will_dirty(origin->ds_dbuf, tx);
6953cb34c60Sahrens 		origin->ds_phys->ds_num_children++;
696fa9e4066Sahrens 
6973b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(dp,
698cde58dbcSMatthew Ahrens 		    origin->ds_dir->dd_phys->dd_head_dataset_obj, FTAG, &ohds));
699cde58dbcSMatthew Ahrens 		dsphys->ds_deadlist_obj = dsl_deadlist_clone(&ohds->ds_deadlist,
700cde58dbcSMatthew Ahrens 		    dsphys->ds_prev_snap_txg, dsphys->ds_prev_snap_obj, tx);
701cde58dbcSMatthew Ahrens 		dsl_dataset_rele(ohds, FTAG);
702cde58dbcSMatthew Ahrens 
703088f3894Sahrens 		if (spa_version(dp->dp_spa) >= SPA_VERSION_NEXT_CLONES) {
704088f3894Sahrens 			if (origin->ds_phys->ds_next_clones_obj == 0) {
705088f3894Sahrens 				origin->ds_phys->ds_next_clones_obj =
706088f3894Sahrens 				    zap_create(mos,
707088f3894Sahrens 				    DMU_OT_NEXT_CLONES, DMU_OT_NONE, 0, tx);
708088f3894Sahrens 			}
7093b2aab18SMatthew Ahrens 			VERIFY0(zap_add_int(mos,
7103b2aab18SMatthew Ahrens 			    origin->ds_phys->ds_next_clones_obj, dsobj, tx));
711088f3894Sahrens 		}
712088f3894Sahrens 
713fa9e4066Sahrens 		dmu_buf_will_dirty(dd->dd_dbuf, tx);
7143cb34c60Sahrens 		dd->dd_phys->dd_origin_obj = origin->ds_object;
715cde58dbcSMatthew Ahrens 		if (spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
716cde58dbcSMatthew Ahrens 			if (origin->ds_dir->dd_phys->dd_clones == 0) {
717cde58dbcSMatthew Ahrens 				dmu_buf_will_dirty(origin->ds_dir->dd_dbuf, tx);
718cde58dbcSMatthew Ahrens 				origin->ds_dir->dd_phys->dd_clones =
719cde58dbcSMatthew Ahrens 				    zap_create(mos,
720cde58dbcSMatthew Ahrens 				    DMU_OT_DSL_CLONES, DMU_OT_NONE, 0, tx);
721cde58dbcSMatthew Ahrens 			}
7223b2aab18SMatthew Ahrens 			VERIFY0(zap_add_int(mos,
723cde58dbcSMatthew Ahrens 			    origin->ds_dir->dd_phys->dd_clones, dsobj, tx));
724cde58dbcSMatthew Ahrens 		}
725fa9e4066Sahrens 	}
726ab04eb8eStimh 
727ab04eb8eStimh 	if (spa_version(dp->dp_spa) >= SPA_VERSION_UNIQUE_ACCURATE)
728ab04eb8eStimh 		dsphys->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
729ab04eb8eStimh 
730ea8dc4b6Seschrock 	dmu_buf_rele(dbuf, FTAG);
731fa9e4066Sahrens 
732fa9e4066Sahrens 	dmu_buf_will_dirty(dd->dd_dbuf, tx);
733fa9e4066Sahrens 	dd->dd_phys->dd_head_dataset_obj = dsobj;
7343cb34c60Sahrens 
7353cb34c60Sahrens 	return (dsobj);
7363cb34c60Sahrens }
7373cb34c60Sahrens 
7383b2aab18SMatthew Ahrens static void
7393b2aab18SMatthew Ahrens dsl_dataset_zero_zil(dsl_dataset_t *ds, dmu_tx_t *tx)
7403b2aab18SMatthew Ahrens {
7413b2aab18SMatthew Ahrens 	objset_t *os;
7423b2aab18SMatthew Ahrens 
7433b2aab18SMatthew Ahrens 	VERIFY0(dmu_objset_from_ds(ds, &os));
7443b2aab18SMatthew Ahrens 	bzero(&os->os_zil_header, sizeof (os->os_zil_header));
7453b2aab18SMatthew Ahrens 	dsl_dataset_dirty(ds, tx);
7463b2aab18SMatthew Ahrens }
7473b2aab18SMatthew Ahrens 
7483cb34c60Sahrens uint64_t
749ab04eb8eStimh dsl_dataset_create_sync(dsl_dir_t *pdd, const char *lastname,
750ab04eb8eStimh     dsl_dataset_t *origin, uint64_t flags, cred_t *cr, dmu_tx_t *tx)
7513cb34c60Sahrens {
7523cb34c60Sahrens 	dsl_pool_t *dp = pdd->dd_pool;
7533cb34c60Sahrens 	uint64_t dsobj, ddobj;
7543cb34c60Sahrens 	dsl_dir_t *dd;
7553cb34c60Sahrens 
7563b2aab18SMatthew Ahrens 	ASSERT(dmu_tx_is_syncing(tx));
7573cb34c60Sahrens 	ASSERT(lastname[0] != '@');
7583cb34c60Sahrens 
759088f3894Sahrens 	ddobj = dsl_dir_create_sync(dp, pdd, lastname, tx);
7603b2aab18SMatthew Ahrens 	VERIFY0(dsl_dir_hold_obj(dp, ddobj, lastname, FTAG, &dd));
7613cb34c60Sahrens 
7623b2aab18SMatthew Ahrens 	dsobj = dsl_dataset_create_sync_dd(dd, origin,
7633b2aab18SMatthew Ahrens 	    flags & ~DS_CREATE_FLAG_NODIRTY, tx);
7643cb34c60Sahrens 
7653cb34c60Sahrens 	dsl_deleg_set_create_perms(dd, tx, cr);
7663cb34c60Sahrens 
767*a2afb611SJerry Jelinek 	/*
768*a2afb611SJerry Jelinek 	 * Since we're creating a new node we know it's a leaf, so we can
769*a2afb611SJerry Jelinek 	 * initialize the counts if the limit feature is active.
770*a2afb611SJerry Jelinek 	 */
771*a2afb611SJerry Jelinek 	if (spa_feature_is_active(dp->dp_spa, SPA_FEATURE_FS_SS_LIMIT)) {
772*a2afb611SJerry Jelinek 		uint64_t cnt = 0;
773*a2afb611SJerry Jelinek 		objset_t *os = dd->dd_pool->dp_meta_objset;
774*a2afb611SJerry Jelinek 
775*a2afb611SJerry Jelinek 		dsl_dir_zapify(dd, tx);
776*a2afb611SJerry Jelinek 		VERIFY0(zap_add(os, dd->dd_object, DD_FIELD_FILESYSTEM_COUNT,
777*a2afb611SJerry Jelinek 		    sizeof (cnt), 1, &cnt, tx));
778*a2afb611SJerry Jelinek 		VERIFY0(zap_add(os, dd->dd_object, DD_FIELD_SNAPSHOT_COUNT,
779*a2afb611SJerry Jelinek 		    sizeof (cnt), 1, &cnt, tx));
780*a2afb611SJerry Jelinek 	}
781*a2afb611SJerry Jelinek 
7823b2aab18SMatthew Ahrens 	dsl_dir_rele(dd, FTAG);
783fa9e4066Sahrens 
784feaa74e4SMark Maybee 	/*
785feaa74e4SMark Maybee 	 * If we are creating a clone, make sure we zero out any stale
786feaa74e4SMark Maybee 	 * data from the origin snapshots zil header.
787feaa74e4SMark Maybee 	 */
7883b2aab18SMatthew Ahrens 	if (origin != NULL && !(flags & DS_CREATE_FLAG_NODIRTY)) {
789feaa74e4SMark Maybee 		dsl_dataset_t *ds;
790feaa74e4SMark Maybee 
7913b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(dp, dsobj, FTAG, &ds));
7923b2aab18SMatthew Ahrens 		dsl_dataset_zero_zil(ds, tx);
793feaa74e4SMark Maybee 		dsl_dataset_rele(ds, FTAG);
794feaa74e4SMark Maybee 	}
795feaa74e4SMark Maybee 
7961d452cf5Sahrens 	return (dsobj);
797fa9e4066Sahrens }
798fa9e4066Sahrens 
7991d452cf5Sahrens /*
8003b2aab18SMatthew Ahrens  * The unique space in the head dataset can be calculated by subtracting
8013b2aab18SMatthew Ahrens  * the space used in the most recent snapshot, that is still being used
8023b2aab18SMatthew Ahrens  * in this file system, from the space currently in use.  To figure out
8033b2aab18SMatthew Ahrens  * the space in the most recent snapshot still in use, we need to take
8043b2aab18SMatthew Ahrens  * the total space used in the snapshot and subtract out the space that
8053b2aab18SMatthew Ahrens  * has been freed up since the snapshot was taken.
8061d452cf5Sahrens  */
8073b2aab18SMatthew Ahrens void
8083b2aab18SMatthew Ahrens dsl_dataset_recalc_head_uniq(dsl_dataset_t *ds)
8091d452cf5Sahrens {
8103b2aab18SMatthew Ahrens 	uint64_t mrs_used;
8113b2aab18SMatthew Ahrens 	uint64_t dlused, dlcomp, dluncomp;
8121d452cf5Sahrens 
8133b2aab18SMatthew Ahrens 	ASSERT(!dsl_dataset_is_snapshot(ds));
8141d452cf5Sahrens 
8153b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_prev_snap_obj != 0)
8163b2aab18SMatthew Ahrens 		mrs_used = ds->ds_prev->ds_phys->ds_referenced_bytes;
8173b2aab18SMatthew Ahrens 	else
8183b2aab18SMatthew Ahrens 		mrs_used = 0;
819842727c2SChris Kirby 
8203b2aab18SMatthew Ahrens 	dsl_deadlist_space(&ds->ds_deadlist, &dlused, &dlcomp, &dluncomp);
821fa9e4066Sahrens 
8223b2aab18SMatthew Ahrens 	ASSERT3U(dlused, <=, mrs_used);
8233b2aab18SMatthew Ahrens 	ds->ds_phys->ds_unique_bytes =
8243b2aab18SMatthew Ahrens 	    ds->ds_phys->ds_referenced_bytes - (mrs_used - dlused);
82519b94df9SMatthew Ahrens 
8263b2aab18SMatthew Ahrens 	if (spa_version(ds->ds_dir->dd_pool->dp_spa) >=
8273b2aab18SMatthew Ahrens 	    SPA_VERSION_UNIQUE_ACCURATE)
8283b2aab18SMatthew Ahrens 		ds->ds_phys->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
829fa9e4066Sahrens }
830fa9e4066Sahrens 
8313b2aab18SMatthew Ahrens void
8323b2aab18SMatthew Ahrens dsl_dataset_remove_from_next_clones(dsl_dataset_t *ds, uint64_t obj,
8333b2aab18SMatthew Ahrens     dmu_tx_t *tx)
834842727c2SChris Kirby {
8353b2aab18SMatthew Ahrens 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
8363b2aab18SMatthew Ahrens 	uint64_t count;
8373b2aab18SMatthew Ahrens 	int err;
8383b2aab18SMatthew Ahrens 
8393b2aab18SMatthew Ahrens 	ASSERT(ds->ds_phys->ds_num_children >= 2);
8403b2aab18SMatthew Ahrens 	err = zap_remove_int(mos, ds->ds_phys->ds_next_clones_obj, obj, tx);
8413b2aab18SMatthew Ahrens 	/*
8423b2aab18SMatthew Ahrens 	 * The err should not be ENOENT, but a bug in a previous version
8433b2aab18SMatthew Ahrens 	 * of the code could cause upgrade_clones_cb() to not set
8443b2aab18SMatthew Ahrens 	 * ds_next_snap_obj when it should, leading to a missing entry.
8453b2aab18SMatthew Ahrens 	 * If we knew that the pool was created after
8463b2aab18SMatthew Ahrens 	 * SPA_VERSION_NEXT_CLONES, we could assert that it isn't
8473b2aab18SMatthew Ahrens 	 * ENOENT.  However, at least we can check that we don't have
8483b2aab18SMatthew Ahrens 	 * too many entries in the next_clones_obj even after failing to
8493b2aab18SMatthew Ahrens 	 * remove this one.
8503b2aab18SMatthew Ahrens 	 */
8513b2aab18SMatthew Ahrens 	if (err != ENOENT)
8523b2aab18SMatthew Ahrens 		VERIFY0(err);
8533b2aab18SMatthew Ahrens 	ASSERT0(zap_count(mos, ds->ds_phys->ds_next_clones_obj,
8543b2aab18SMatthew Ahrens 	    &count));
8553b2aab18SMatthew Ahrens 	ASSERT3U(count, <=, ds->ds_phys->ds_num_children - 2);
8563b2aab18SMatthew Ahrens }
857842727c2SChris Kirby 
858842727c2SChris Kirby 
8593b2aab18SMatthew Ahrens blkptr_t *
8603b2aab18SMatthew Ahrens dsl_dataset_get_blkptr(dsl_dataset_t *ds)
8613b2aab18SMatthew Ahrens {
8623b2aab18SMatthew Ahrens 	return (&ds->ds_phys->ds_bp);
863842727c2SChris Kirby }
864842727c2SChris Kirby 
8653b2aab18SMatthew Ahrens void
8663b2aab18SMatthew Ahrens dsl_dataset_set_blkptr(dsl_dataset_t *ds, blkptr_t *bp, dmu_tx_t *tx)
867842727c2SChris Kirby {
8683b2aab18SMatthew Ahrens 	ASSERT(dmu_tx_is_syncing(tx));
8693b2aab18SMatthew Ahrens 	/* If it's the meta-objset, set dp_meta_rootbp */
8703b2aab18SMatthew Ahrens 	if (ds == NULL) {
8713b2aab18SMatthew Ahrens 		tx->tx_pool->dp_meta_rootbp = *bp;
8723b2aab18SMatthew Ahrens 	} else {
8733b2aab18SMatthew Ahrens 		dmu_buf_will_dirty(ds->ds_dbuf, tx);
8743b2aab18SMatthew Ahrens 		ds->ds_phys->ds_bp = *bp;
875842727c2SChris Kirby 	}
8763b2aab18SMatthew Ahrens }
877842727c2SChris Kirby 
8783b2aab18SMatthew Ahrens spa_t *
8793b2aab18SMatthew Ahrens dsl_dataset_get_spa(dsl_dataset_t *ds)
8803b2aab18SMatthew Ahrens {
8813b2aab18SMatthew Ahrens 	return (ds->ds_dir->dd_pool->dp_spa);
882842727c2SChris Kirby }
883842727c2SChris Kirby 
8843b2aab18SMatthew Ahrens void
8853b2aab18SMatthew Ahrens dsl_dataset_dirty(dsl_dataset_t *ds, dmu_tx_t *tx)
886fa9e4066Sahrens {
8873b2aab18SMatthew Ahrens 	dsl_pool_t *dp;
888842727c2SChris Kirby 
8893b2aab18SMatthew Ahrens 	if (ds == NULL) /* this is the meta-objset */
8903b2aab18SMatthew Ahrens 		return;
8911d452cf5Sahrens 
8923b2aab18SMatthew Ahrens 	ASSERT(ds->ds_objset != NULL);
893fa9e4066Sahrens 
8943b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_next_snap_obj != 0)
8953b2aab18SMatthew Ahrens 		panic("dirtying snapshot!");
896fa9e4066Sahrens 
8973b2aab18SMatthew Ahrens 	dp = ds->ds_dir->dd_pool;
898ce636f8bSMatthew Ahrens 
8993b2aab18SMatthew Ahrens 	if (txg_list_add(&dp->dp_dirty_datasets, ds, tx->tx_txg)) {
9003b2aab18SMatthew Ahrens 		/* up the hold count until we can be written out */
9013b2aab18SMatthew Ahrens 		dmu_buf_add_ref(ds->ds_dbuf, ds);
9023b2aab18SMatthew Ahrens 	}
9033b2aab18SMatthew Ahrens }
904fa9e4066Sahrens 
9052e2c1355SMatthew Ahrens boolean_t
9062e2c1355SMatthew Ahrens dsl_dataset_is_dirty(dsl_dataset_t *ds)
9072e2c1355SMatthew Ahrens {
9082e2c1355SMatthew Ahrens 	for (int t = 0; t < TXG_SIZE; t++) {
9092e2c1355SMatthew Ahrens 		if (txg_list_member(&ds->ds_dir->dd_pool->dp_dirty_datasets,
9102e2c1355SMatthew Ahrens 		    ds, t))
9112e2c1355SMatthew Ahrens 			return (B_TRUE);
9122e2c1355SMatthew Ahrens 	}
9132e2c1355SMatthew Ahrens 	return (B_FALSE);
9142e2c1355SMatthew Ahrens }
9152e2c1355SMatthew Ahrens 
916fa9e4066Sahrens static int
9173b2aab18SMatthew Ahrens dsl_dataset_snapshot_reserve_space(dsl_dataset_t *ds, dmu_tx_t *tx)
918fa9e4066Sahrens {
9193b2aab18SMatthew Ahrens 	uint64_t asize;
920fa9e4066Sahrens 
9213b2aab18SMatthew Ahrens 	if (!dmu_tx_is_syncing(tx))
92288b7b0f2SMatthew Ahrens 		return (0);
923fa9e4066Sahrens 
924e1930233Sbonwick 	/*
9253b2aab18SMatthew Ahrens 	 * If there's an fs-only reservation, any blocks that might become
9263b2aab18SMatthew Ahrens 	 * owned by the snapshot dataset must be accommodated by space
9273b2aab18SMatthew Ahrens 	 * outside of the reservation.
928e1930233Sbonwick 	 */
9293b2aab18SMatthew Ahrens 	ASSERT(ds->ds_reserved == 0 || DS_UNIQUE_IS_ACCURATE(ds));
9303b2aab18SMatthew Ahrens 	asize = MIN(ds->ds_phys->ds_unique_bytes, ds->ds_reserved);
9313b2aab18SMatthew Ahrens 	if (asize > dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE))
932be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOSPC));
933e1930233Sbonwick 
9343cb34c60Sahrens 	/*
9353b2aab18SMatthew Ahrens 	 * Propagate any reserved space for this snapshot to other
9363b2aab18SMatthew Ahrens 	 * snapshot checks in this sync group.
9373cb34c60Sahrens 	 */
9383b2aab18SMatthew Ahrens 	if (asize > 0)
9393b2aab18SMatthew Ahrens 		dsl_dir_willuse_space(ds->ds_dir, asize, tx);
9403cb34c60Sahrens 
941e1930233Sbonwick 	return (0);
942e1930233Sbonwick }
943e1930233Sbonwick 
9443b2aab18SMatthew Ahrens typedef struct dsl_dataset_snapshot_arg {
9453b2aab18SMatthew Ahrens 	nvlist_t *ddsa_snaps;
9463b2aab18SMatthew Ahrens 	nvlist_t *ddsa_props;
9473b2aab18SMatthew Ahrens 	nvlist_t *ddsa_errors;
948*a2afb611SJerry Jelinek 	cred_t *ddsa_cr;
9493b2aab18SMatthew Ahrens } dsl_dataset_snapshot_arg_t;
950842727c2SChris Kirby 
9513cb34c60Sahrens int
9523b2aab18SMatthew Ahrens dsl_dataset_snapshot_check_impl(dsl_dataset_t *ds, const char *snapname,
953*a2afb611SJerry Jelinek     dmu_tx_t *tx, boolean_t recv, uint64_t cnt, cred_t *cr)
9541d452cf5Sahrens {
9553b2aab18SMatthew Ahrens 	int error;
9563b2aab18SMatthew Ahrens 	uint64_t value;
957fa9e4066Sahrens 
9583b2aab18SMatthew Ahrens 	ds->ds_trysnap_txg = tx->tx_txg;
959745cd3c5Smaybee 
9603b2aab18SMatthew Ahrens 	if (!dmu_tx_is_syncing(tx))
961842727c2SChris Kirby 		return (0);
962fa9e4066Sahrens 
963fa9e4066Sahrens 	/*
9643b2aab18SMatthew Ahrens 	 * We don't allow multiple snapshots of the same txg.  If there
9653b2aab18SMatthew Ahrens 	 * is already one, try again.
966fa9e4066Sahrens 	 */
9673b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_prev_snap_txg >= tx->tx_txg)
968be6fd75aSMatthew Ahrens 		return (SET_ERROR(EAGAIN));
969fa9e4066Sahrens 
970fa9e4066Sahrens 	/*
9713b2aab18SMatthew Ahrens 	 * Check for conflicting snapshot name.
972fa9e4066Sahrens 	 */
9733b2aab18SMatthew Ahrens 	error = dsl_dataset_snap_lookup(ds, snapname, &value);
9743b2aab18SMatthew Ahrens 	if (error == 0)
975be6fd75aSMatthew Ahrens 		return (SET_ERROR(EEXIST));
9763b2aab18SMatthew Ahrens 	if (error != ENOENT)
9773b2aab18SMatthew Ahrens 		return (error);
978842727c2SChris Kirby 
979ca48f36fSKeith M Wesolowski 	/*
980ca48f36fSKeith M Wesolowski 	 * We don't allow taking snapshots of inconsistent datasets, such as
981ca48f36fSKeith M Wesolowski 	 * those into which we are currently receiving.  However, if we are
982ca48f36fSKeith M Wesolowski 	 * creating this snapshot as part of a receive, this check will be
983ca48f36fSKeith M Wesolowski 	 * executed atomically with respect to the completion of the receive
984ca48f36fSKeith M Wesolowski 	 * itself but prior to the clearing of DS_FLAG_INCONSISTENT; in this
985ca48f36fSKeith M Wesolowski 	 * case we ignore this, knowing it will be fixed up for us shortly in
986ca48f36fSKeith M Wesolowski 	 * dmu_recv_end_sync().
987ca48f36fSKeith M Wesolowski 	 */
988ca48f36fSKeith M Wesolowski 	if (!recv && DS_IS_INCONSISTENT(ds))
989ca48f36fSKeith M Wesolowski 		return (SET_ERROR(EBUSY));
990ca48f36fSKeith M Wesolowski 
991*a2afb611SJerry Jelinek 	/*
992*a2afb611SJerry Jelinek 	 * Skip the check for temporary snapshots or if we have already checked
993*a2afb611SJerry Jelinek 	 * the counts in dsl_dataset_snapshot_check. This means we really only
994*a2afb611SJerry Jelinek 	 * check the count here when we're receiving a stream.
995*a2afb611SJerry Jelinek 	 */
996*a2afb611SJerry Jelinek 	if (cnt != 0 && cr != NULL) {
997*a2afb611SJerry Jelinek 		error = dsl_fs_ss_limit_check(ds->ds_dir, cnt,
998*a2afb611SJerry Jelinek 		    ZFS_PROP_SNAPSHOT_LIMIT, NULL, cr);
999*a2afb611SJerry Jelinek 		if (error != 0)
1000*a2afb611SJerry Jelinek 			return (error);
1001*a2afb611SJerry Jelinek 	}
1002*a2afb611SJerry Jelinek 
10033b2aab18SMatthew Ahrens 	error = dsl_dataset_snapshot_reserve_space(ds, tx);
10043b2aab18SMatthew Ahrens 	if (error != 0)
10053b2aab18SMatthew Ahrens 		return (error);
1006842727c2SChris Kirby 
10071d452cf5Sahrens 	return (0);
10081d452cf5Sahrens }
10091d452cf5Sahrens 
10103b2aab18SMatthew Ahrens static int
10113b2aab18SMatthew Ahrens dsl_dataset_snapshot_check(void *arg, dmu_tx_t *tx)
1012745cd3c5Smaybee {
10133b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_arg_t *ddsa = arg;
10143b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
10153b2aab18SMatthew Ahrens 	nvpair_t *pair;
10163b2aab18SMatthew Ahrens 	int rv = 0;
10173b2aab18SMatthew Ahrens 
1018*a2afb611SJerry Jelinek 	/*
1019*a2afb611SJerry Jelinek 	 * Pre-compute how many total new snapshots will be created for each
1020*a2afb611SJerry Jelinek 	 * level in the tree and below. This is needed for validating the
1021*a2afb611SJerry Jelinek 	 * snapshot limit when either taking a recursive snapshot or when
1022*a2afb611SJerry Jelinek 	 * taking multiple snapshots.
1023*a2afb611SJerry Jelinek 	 *
1024*a2afb611SJerry Jelinek 	 * The problem is that the counts are not actually adjusted when
1025*a2afb611SJerry Jelinek 	 * we are checking, only when we finally sync. For a single snapshot,
1026*a2afb611SJerry Jelinek 	 * this is easy, the count will increase by 1 at each node up the tree,
1027*a2afb611SJerry Jelinek 	 * but its more complicated for the recursive/multiple snapshot case.
1028*a2afb611SJerry Jelinek 	 *
1029*a2afb611SJerry Jelinek 	 * The dsl_fs_ss_limit_check function does recursively check the count
1030*a2afb611SJerry Jelinek 	 * at each level up the tree but since it is validating each snapshot
1031*a2afb611SJerry Jelinek 	 * independently we need to be sure that we are validating the complete
1032*a2afb611SJerry Jelinek 	 * count for the entire set of snapshots. We do this by rolling up the
1033*a2afb611SJerry Jelinek 	 * counts for each component of the name into an nvlist and then
1034*a2afb611SJerry Jelinek 	 * checking each of those cases with the aggregated count.
1035*a2afb611SJerry Jelinek 	 *
1036*a2afb611SJerry Jelinek 	 * This approach properly handles not only the recursive snapshot
1037*a2afb611SJerry Jelinek 	 * case (where we get all of those on the ddsa_snaps list) but also
1038*a2afb611SJerry Jelinek 	 * the sibling case (e.g. snapshot a/b and a/c so that we will also
1039*a2afb611SJerry Jelinek 	 * validate the limit on 'a' using a count of 2).
1040*a2afb611SJerry Jelinek 	 *
1041*a2afb611SJerry Jelinek 	 * We validate the snapshot names in the third loop and only report
1042*a2afb611SJerry Jelinek 	 * name errors once.
1043*a2afb611SJerry Jelinek 	 */
1044*a2afb611SJerry Jelinek 	if (dmu_tx_is_syncing(tx)) {
1045*a2afb611SJerry Jelinek 		nvlist_t *cnt_track = NULL;
1046*a2afb611SJerry Jelinek 		cnt_track = fnvlist_alloc();
1047*a2afb611SJerry Jelinek 
1048*a2afb611SJerry Jelinek 		/* Rollup aggregated counts into the cnt_track list */
1049*a2afb611SJerry Jelinek 		for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
1050*a2afb611SJerry Jelinek 		    pair != NULL;
1051*a2afb611SJerry Jelinek 		    pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
1052*a2afb611SJerry Jelinek 			char *pdelim;
1053*a2afb611SJerry Jelinek 			uint64_t val;
1054*a2afb611SJerry Jelinek 			char nm[MAXPATHLEN];
1055*a2afb611SJerry Jelinek 
1056*a2afb611SJerry Jelinek 			(void) strlcpy(nm, nvpair_name(pair), sizeof (nm));
1057*a2afb611SJerry Jelinek 			pdelim = strchr(nm, '@');
1058*a2afb611SJerry Jelinek 			if (pdelim == NULL)
1059*a2afb611SJerry Jelinek 				continue;
1060*a2afb611SJerry Jelinek 			*pdelim = '\0';
1061*a2afb611SJerry Jelinek 
1062*a2afb611SJerry Jelinek 			do {
1063*a2afb611SJerry Jelinek 				if (nvlist_lookup_uint64(cnt_track, nm,
1064*a2afb611SJerry Jelinek 				    &val) == 0) {
1065*a2afb611SJerry Jelinek 					/* update existing entry */
1066*a2afb611SJerry Jelinek 					fnvlist_add_uint64(cnt_track, nm,
1067*a2afb611SJerry Jelinek 					    val + 1);
1068*a2afb611SJerry Jelinek 				} else {
1069*a2afb611SJerry Jelinek 					/* add to list */
1070*a2afb611SJerry Jelinek 					fnvlist_add_uint64(cnt_track, nm, 1);
1071*a2afb611SJerry Jelinek 				}
1072*a2afb611SJerry Jelinek 
1073*a2afb611SJerry Jelinek 				pdelim = strrchr(nm, '/');
1074*a2afb611SJerry Jelinek 				if (pdelim != NULL)
1075*a2afb611SJerry Jelinek 					*pdelim = '\0';
1076*a2afb611SJerry Jelinek 			} while (pdelim != NULL);
1077*a2afb611SJerry Jelinek 		}
1078*a2afb611SJerry Jelinek 
1079*a2afb611SJerry Jelinek 		/* Check aggregated counts at each level */
1080*a2afb611SJerry Jelinek 		for (pair = nvlist_next_nvpair(cnt_track, NULL);
1081*a2afb611SJerry Jelinek 		    pair != NULL; pair = nvlist_next_nvpair(cnt_track, pair)) {
1082*a2afb611SJerry Jelinek 			int error = 0;
1083*a2afb611SJerry Jelinek 			char *name;
1084*a2afb611SJerry Jelinek 			uint64_t cnt = 0;
1085*a2afb611SJerry Jelinek 			dsl_dataset_t *ds;
1086*a2afb611SJerry Jelinek 
1087*a2afb611SJerry Jelinek 			name = nvpair_name(pair);
1088*a2afb611SJerry Jelinek 			cnt = fnvpair_value_uint64(pair);
1089*a2afb611SJerry Jelinek 			ASSERT(cnt > 0);
1090*a2afb611SJerry Jelinek 
1091*a2afb611SJerry Jelinek 			error = dsl_dataset_hold(dp, name, FTAG, &ds);
1092*a2afb611SJerry Jelinek 			if (error == 0) {
1093*a2afb611SJerry Jelinek 				error = dsl_fs_ss_limit_check(ds->ds_dir, cnt,
1094*a2afb611SJerry Jelinek 				    ZFS_PROP_SNAPSHOT_LIMIT, NULL,
1095*a2afb611SJerry Jelinek 				    ddsa->ddsa_cr);
1096*a2afb611SJerry Jelinek 				dsl_dataset_rele(ds, FTAG);
1097*a2afb611SJerry Jelinek 			}
1098*a2afb611SJerry Jelinek 
1099*a2afb611SJerry Jelinek 			if (error != 0) {
1100*a2afb611SJerry Jelinek 				if (ddsa->ddsa_errors != NULL)
1101*a2afb611SJerry Jelinek 					fnvlist_add_int32(ddsa->ddsa_errors,
1102*a2afb611SJerry Jelinek 					    name, error);
1103*a2afb611SJerry Jelinek 				rv = error;
1104*a2afb611SJerry Jelinek 				/* only report one error for this check */
1105*a2afb611SJerry Jelinek 				break;
1106*a2afb611SJerry Jelinek 			}
1107*a2afb611SJerry Jelinek 		}
1108*a2afb611SJerry Jelinek 		nvlist_free(cnt_track);
1109*a2afb611SJerry Jelinek 	}
1110*a2afb611SJerry Jelinek 
11113b2aab18SMatthew Ahrens 	for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
11123b2aab18SMatthew Ahrens 	    pair != NULL; pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
11133b2aab18SMatthew Ahrens 		int error = 0;
11143b2aab18SMatthew Ahrens 		dsl_dataset_t *ds;
11153b2aab18SMatthew Ahrens 		char *name, *atp;
11163b2aab18SMatthew Ahrens 		char dsname[MAXNAMELEN];
11173b2aab18SMatthew Ahrens 
11183b2aab18SMatthew Ahrens 		name = nvpair_name(pair);
11193b2aab18SMatthew Ahrens 		if (strlen(name) >= MAXNAMELEN)
1120be6fd75aSMatthew Ahrens 			error = SET_ERROR(ENAMETOOLONG);
11213b2aab18SMatthew Ahrens 		if (error == 0) {
11223b2aab18SMatthew Ahrens 			atp = strchr(name, '@');
11233b2aab18SMatthew Ahrens 			if (atp == NULL)
1124be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
11253b2aab18SMatthew Ahrens 			if (error == 0)
11263b2aab18SMatthew Ahrens 				(void) strlcpy(dsname, name, atp - name + 1);
11273b2aab18SMatthew Ahrens 		}
11283b2aab18SMatthew Ahrens 		if (error == 0)
11293b2aab18SMatthew Ahrens 			error = dsl_dataset_hold(dp, dsname, FTAG, &ds);
11303b2aab18SMatthew Ahrens 		if (error == 0) {
1131*a2afb611SJerry Jelinek 			/* passing 0/NULL skips dsl_fs_ss_limit_check */
11323b2aab18SMatthew Ahrens 			error = dsl_dataset_snapshot_check_impl(ds,
1133*a2afb611SJerry Jelinek 			    atp + 1, tx, B_FALSE, 0, NULL);
11343b2aab18SMatthew Ahrens 			dsl_dataset_rele(ds, FTAG);
11353b2aab18SMatthew Ahrens 		}
1136745cd3c5Smaybee 
11373b2aab18SMatthew Ahrens 		if (error != 0) {
11383b2aab18SMatthew Ahrens 			if (ddsa->ddsa_errors != NULL) {
11393b2aab18SMatthew Ahrens 				fnvlist_add_int32(ddsa->ddsa_errors,
11403b2aab18SMatthew Ahrens 				    name, error);
11413b2aab18SMatthew Ahrens 			}
11423b2aab18SMatthew Ahrens 			rv = error;
11433b2aab18SMatthew Ahrens 		}
11443b2aab18SMatthew Ahrens 	}
1145*a2afb611SJerry Jelinek 
11463b2aab18SMatthew Ahrens 	return (rv);
1147745cd3c5Smaybee }
1148745cd3c5Smaybee 
11493b2aab18SMatthew Ahrens void
11503b2aab18SMatthew Ahrens dsl_dataset_snapshot_sync_impl(dsl_dataset_t *ds, const char *snapname,
11513b2aab18SMatthew Ahrens     dmu_tx_t *tx)
1152745cd3c5Smaybee {
11533b2aab18SMatthew Ahrens 	static zil_header_t zero_zil;
1154745cd3c5Smaybee 
11553b2aab18SMatthew Ahrens 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
11563b2aab18SMatthew Ahrens 	dmu_buf_t *dbuf;
11573b2aab18SMatthew Ahrens 	dsl_dataset_phys_t *dsphys;
11583b2aab18SMatthew Ahrens 	uint64_t dsobj, crtxg;
11593b2aab18SMatthew Ahrens 	objset_t *mos = dp->dp_meta_objset;
11603b2aab18SMatthew Ahrens 	objset_t *os;
1161745cd3c5Smaybee 
11623b2aab18SMatthew Ahrens 	ASSERT(RRW_WRITE_HELD(&dp->dp_config_rwlock));
1163c33e334fSMatthew Ahrens 
1164c33e334fSMatthew Ahrens 	/*
11653b2aab18SMatthew Ahrens 	 * If we are on an old pool, the zil must not be active, in which
11663b2aab18SMatthew Ahrens 	 * case it will be zeroed.  Usually zil_suspend() accomplishes this.
1167c33e334fSMatthew Ahrens 	 */
11683b2aab18SMatthew Ahrens 	ASSERT(spa_version(dmu_tx_pool(tx)->dp_spa) >= SPA_VERSION_FAST_SNAP ||
11693b2aab18SMatthew Ahrens 	    dmu_objset_from_ds(ds, &os) != 0 ||
11703b2aab18SMatthew Ahrens 	    bcmp(&os->os_phys->os_zil_header, &zero_zil,
11713b2aab18SMatthew Ahrens 	    sizeof (zero_zil)) == 0);
1172c33e334fSMatthew Ahrens 
1173*a2afb611SJerry Jelinek 	dsl_fs_ss_count_adjust(ds->ds_dir, 1, DD_FIELD_SNAPSHOT_COUNT, tx);
1174cde58dbcSMatthew Ahrens 
1175cde58dbcSMatthew Ahrens 	/*
11763b2aab18SMatthew Ahrens 	 * The origin's ds_creation_txg has to be < TXG_INITIAL
1177088f3894Sahrens 	 */
1178088f3894Sahrens 	if (strcmp(snapname, ORIGIN_DIR_NAME) == 0)
1179088f3894Sahrens 		crtxg = 1;
1180088f3894Sahrens 	else
1181088f3894Sahrens 		crtxg = tx->tx_txg;
1182088f3894Sahrens 
11831649cd4bStabriz 	dsobj = dmu_object_alloc(mos, DMU_OT_DSL_DATASET, 0,
11841649cd4bStabriz 	    DMU_OT_DSL_DATASET, sizeof (dsl_dataset_phys_t), tx);
11853b2aab18SMatthew Ahrens 	VERIFY0(dmu_bonus_hold(mos, dsobj, FTAG, &dbuf));
1186fa9e4066Sahrens 	dmu_buf_will_dirty(dbuf, tx);
1187fa9e4066Sahrens 	dsphys = dbuf->db_data;
1188745cd3c5Smaybee 	bzero(dsphys, sizeof (dsl_dataset_phys_t));
11891d452cf5Sahrens 	dsphys->ds_dir_obj = ds->ds_dir->dd_object;
1190fa9e4066Sahrens 	dsphys->ds_fsid_guid = unique_create();
1191fa9e4066Sahrens 	(void) random_get_pseudo_bytes((void*)&dsphys->ds_guid,
1192fa9e4066Sahrens 	    sizeof (dsphys->ds_guid));
1193fa9e4066Sahrens 	dsphys->ds_prev_snap_obj = ds->ds_phys->ds_prev_snap_obj;
1194fa9e4066Sahrens 	dsphys->ds_prev_snap_txg = ds->ds_phys->ds_prev_snap_txg;
1195fa9e4066Sahrens 	dsphys->ds_next_snap_obj = ds->ds_object;
1196fa9e4066Sahrens 	dsphys->ds_num_children = 1;
1197fa9e4066Sahrens 	dsphys->ds_creation_time = gethrestime_sec();
1198088f3894Sahrens 	dsphys->ds_creation_txg = crtxg;
1199fa9e4066Sahrens 	dsphys->ds_deadlist_obj = ds->ds_phys->ds_deadlist_obj;
1200ad135b5dSChristopher Siden 	dsphys->ds_referenced_bytes = ds->ds_phys->ds_referenced_bytes;
1201fa9e4066Sahrens 	dsphys->ds_compressed_bytes = ds->ds_phys->ds_compressed_bytes;
1202fa9e4066Sahrens 	dsphys->ds_uncompressed_bytes = ds->ds_phys->ds_uncompressed_bytes;
120399653d4eSeschrock 	dsphys->ds_flags = ds->ds_phys->ds_flags;
1204fa9e4066Sahrens 	dsphys->ds_bp = ds->ds_phys->ds_bp;
1205ea8dc4b6Seschrock 	dmu_buf_rele(dbuf, FTAG);
1206fa9e4066Sahrens 
12071d452cf5Sahrens 	ASSERT3U(ds->ds_prev != 0, ==, ds->ds_phys->ds_prev_snap_obj != 0);
12081d452cf5Sahrens 	if (ds->ds_prev) {
1209088f3894Sahrens 		uint64_t next_clones_obj =
1210088f3894Sahrens 		    ds->ds_prev->ds_phys->ds_next_clones_obj;
12111d452cf5Sahrens 		ASSERT(ds->ds_prev->ds_phys->ds_next_snap_obj ==
1212fa9e4066Sahrens 		    ds->ds_object ||
12131d452cf5Sahrens 		    ds->ds_prev->ds_phys->ds_num_children > 1);
12141d452cf5Sahrens 		if (ds->ds_prev->ds_phys->ds_next_snap_obj == ds->ds_object) {
12151d452cf5Sahrens 			dmu_buf_will_dirty(ds->ds_prev->ds_dbuf, tx);
1216fa9e4066Sahrens 			ASSERT3U(ds->ds_phys->ds_prev_snap_txg, ==,
12171d452cf5Sahrens 			    ds->ds_prev->ds_phys->ds_creation_txg);
12181d452cf5Sahrens 			ds->ds_prev->ds_phys->ds_next_snap_obj = dsobj;
1219088f3894Sahrens 		} else if (next_clones_obj != 0) {
12203b2aab18SMatthew Ahrens 			dsl_dataset_remove_from_next_clones(ds->ds_prev,
1221c33e334fSMatthew Ahrens 			    dsphys->ds_next_snap_obj, tx);
12223b2aab18SMatthew Ahrens 			VERIFY0(zap_add_int(mos,
1223088f3894Sahrens 			    next_clones_obj, dsobj, tx));
1224fa9e4066Sahrens 		}
1225fa9e4066Sahrens 	}
1226fa9e4066Sahrens 
1227a9799022Sck 	/*
1228a9799022Sck 	 * If we have a reference-reservation on this dataset, we will
1229a9799022Sck 	 * need to increase the amount of refreservation being charged
1230a9799022Sck 	 * since our unique space is going to zero.
1231a9799022Sck 	 */
1232a9799022Sck 	if (ds->ds_reserved) {
12333f9d6ad7SLin Ling 		int64_t delta;
12343f9d6ad7SLin Ling 		ASSERT(DS_UNIQUE_IS_ACCURATE(ds));
12353f9d6ad7SLin Ling 		delta = MIN(ds->ds_phys->ds_unique_bytes, ds->ds_reserved);
123674e7dc98SMatthew Ahrens 		dsl_dir_diduse_space(ds->ds_dir, DD_USED_REFRSRV,
12373f9d6ad7SLin Ling 		    delta, 0, 0, tx);
1238a9799022Sck 	}
1239a9799022Sck 
1240fa9e4066Sahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
1241cde58dbcSMatthew Ahrens 	ds->ds_phys->ds_deadlist_obj = dsl_deadlist_clone(&ds->ds_deadlist,
1242cde58dbcSMatthew Ahrens 	    UINT64_MAX, ds->ds_phys->ds_prev_snap_obj, tx);
1243cde58dbcSMatthew Ahrens 	dsl_deadlist_close(&ds->ds_deadlist);
1244cde58dbcSMatthew Ahrens 	dsl_deadlist_open(&ds->ds_deadlist, mos, ds->ds_phys->ds_deadlist_obj);
1245cde58dbcSMatthew Ahrens 	dsl_deadlist_add_key(&ds->ds_deadlist,
1246cde58dbcSMatthew Ahrens 	    ds->ds_phys->ds_prev_snap_txg, tx);
1247cde58dbcSMatthew Ahrens 
1248a4611edeSahrens 	ASSERT3U(ds->ds_phys->ds_prev_snap_txg, <, tx->tx_txg);
1249fa9e4066Sahrens 	ds->ds_phys->ds_prev_snap_obj = dsobj;
1250088f3894Sahrens 	ds->ds_phys->ds_prev_snap_txg = crtxg;
1251fa9e4066Sahrens 	ds->ds_phys->ds_unique_bytes = 0;
1252a9799022Sck 	if (spa_version(dp->dp_spa) >= SPA_VERSION_UNIQUE_ACCURATE)
1253a9799022Sck 		ds->ds_phys->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
1254fa9e4066Sahrens 
12553b2aab18SMatthew Ahrens 	VERIFY0(zap_add(mos, ds->ds_phys->ds_snapnames_zapobj,
12563b2aab18SMatthew Ahrens 	    snapname, 8, 1, &dsobj, tx));
1257fa9e4066Sahrens 
1258fa9e4066Sahrens 	if (ds->ds_prev)
12593b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds->ds_prev, ds);
12603b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold_obj(dp,
1261745cd3c5Smaybee 	    ds->ds_phys->ds_prev_snap_obj, ds, &ds->ds_prev));
1262ecd6cf80Smarks 
12633f9d6ad7SLin Ling 	dsl_scan_ds_snapshotted(ds, tx);
1264088f3894Sahrens 
126571eb0538SChris Kirby 	dsl_dir_snap_cmtime_update(ds->ds_dir);
126671eb0538SChris Kirby 
12674445fffbSMatthew Ahrens 	spa_history_log_internal_ds(ds->ds_prev, "snapshot", tx, "");
1268fa9e4066Sahrens }
1269fa9e4066Sahrens 
12703b2aab18SMatthew Ahrens static void
12713b2aab18SMatthew Ahrens dsl_dataset_snapshot_sync(void *arg, dmu_tx_t *tx)
1272fa9e4066Sahrens {
12733b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_arg_t *ddsa = arg;
12743b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
12753b2aab18SMatthew Ahrens 	nvpair_t *pair;
127691ebeef5Sahrens 
12773b2aab18SMatthew Ahrens 	for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
12783b2aab18SMatthew Ahrens 	    pair != NULL; pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
12793b2aab18SMatthew Ahrens 		dsl_dataset_t *ds;
12803b2aab18SMatthew Ahrens 		char *name, *atp;
12813b2aab18SMatthew Ahrens 		char dsname[MAXNAMELEN];
12823b2aab18SMatthew Ahrens 
12833b2aab18SMatthew Ahrens 		name = nvpair_name(pair);
12843b2aab18SMatthew Ahrens 		atp = strchr(name, '@');
12853b2aab18SMatthew Ahrens 		(void) strlcpy(dsname, name, atp - name + 1);
12863b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold(dp, dsname, FTAG, &ds));
12873b2aab18SMatthew Ahrens 
12883b2aab18SMatthew Ahrens 		dsl_dataset_snapshot_sync_impl(ds, atp + 1, tx);
12893b2aab18SMatthew Ahrens 		if (ddsa->ddsa_props != NULL) {
12903b2aab18SMatthew Ahrens 			dsl_props_set_sync_impl(ds->ds_prev,
12913b2aab18SMatthew Ahrens 			    ZPROP_SRC_LOCAL, ddsa->ddsa_props, tx);
12923b2aab18SMatthew Ahrens 		}
12933b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
12943b2aab18SMatthew Ahrens 	}
1295fa9e4066Sahrens }
1296fa9e4066Sahrens 
12973b2aab18SMatthew Ahrens /*
12983b2aab18SMatthew Ahrens  * The snapshots must all be in the same pool.
12993b2aab18SMatthew Ahrens  * All-or-nothing: if there are any failures, nothing will be modified.
13003b2aab18SMatthew Ahrens  */
13013b2aab18SMatthew Ahrens int
13023b2aab18SMatthew Ahrens dsl_dataset_snapshot(nvlist_t *snaps, nvlist_t *props, nvlist_t *errors)
130319b94df9SMatthew Ahrens {
13043b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_arg_t ddsa;
13053b2aab18SMatthew Ahrens 	nvpair_t *pair;
13063b2aab18SMatthew Ahrens 	boolean_t needsuspend;
13073b2aab18SMatthew Ahrens 	int error;
13083b2aab18SMatthew Ahrens 	spa_t *spa;
13093b2aab18SMatthew Ahrens 	char *firstname;
13103b2aab18SMatthew Ahrens 	nvlist_t *suspended = NULL;
131119b94df9SMatthew Ahrens 
13123b2aab18SMatthew Ahrens 	pair = nvlist_next_nvpair(snaps, NULL);
13133b2aab18SMatthew Ahrens 	if (pair == NULL)
13143b2aab18SMatthew Ahrens 		return (0);
13153b2aab18SMatthew Ahrens 	firstname = nvpair_name(pair);
13163b2aab18SMatthew Ahrens 
13173b2aab18SMatthew Ahrens 	error = spa_open(firstname, &spa, FTAG);
13183b2aab18SMatthew Ahrens 	if (error != 0)
13193b2aab18SMatthew Ahrens 		return (error);
13203b2aab18SMatthew Ahrens 	needsuspend = (spa_version(spa) < SPA_VERSION_FAST_SNAP);
13213b2aab18SMatthew Ahrens 	spa_close(spa, FTAG);
13223b2aab18SMatthew Ahrens 
13233b2aab18SMatthew Ahrens 	if (needsuspend) {
13243b2aab18SMatthew Ahrens 		suspended = fnvlist_alloc();
13253b2aab18SMatthew Ahrens 		for (pair = nvlist_next_nvpair(snaps, NULL); pair != NULL;
13263b2aab18SMatthew Ahrens 		    pair = nvlist_next_nvpair(snaps, pair)) {
13273b2aab18SMatthew Ahrens 			char fsname[MAXNAMELEN];
13283b2aab18SMatthew Ahrens 			char *snapname = nvpair_name(pair);
13293b2aab18SMatthew Ahrens 			char *atp;
13303b2aab18SMatthew Ahrens 			void *cookie;
13313b2aab18SMatthew Ahrens 
13323b2aab18SMatthew Ahrens 			atp = strchr(snapname, '@');
13333b2aab18SMatthew Ahrens 			if (atp == NULL) {
1334be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
13353b2aab18SMatthew Ahrens 				break;
13363b2aab18SMatthew Ahrens 			}
13373b2aab18SMatthew Ahrens 			(void) strlcpy(fsname, snapname, atp - snapname + 1);
13383b2aab18SMatthew Ahrens 
13393b2aab18SMatthew Ahrens 			error = zil_suspend(fsname, &cookie);
13403b2aab18SMatthew Ahrens 			if (error != 0)
13413b2aab18SMatthew Ahrens 				break;
13423b2aab18SMatthew Ahrens 			fnvlist_add_uint64(suspended, fsname,
13433b2aab18SMatthew Ahrens 			    (uintptr_t)cookie);
13443b2aab18SMatthew Ahrens 		}
13453b2aab18SMatthew Ahrens 	}
13463b2aab18SMatthew Ahrens 
13473b2aab18SMatthew Ahrens 	ddsa.ddsa_snaps = snaps;
13483b2aab18SMatthew Ahrens 	ddsa.ddsa_props = props;
13493b2aab18SMatthew Ahrens 	ddsa.ddsa_errors = errors;
1350*a2afb611SJerry Jelinek 	ddsa.ddsa_cr = CRED();
13513b2aab18SMatthew Ahrens 
13523b2aab18SMatthew Ahrens 	if (error == 0) {
13533b2aab18SMatthew Ahrens 		error = dsl_sync_task(firstname, dsl_dataset_snapshot_check,
13543b2aab18SMatthew Ahrens 		    dsl_dataset_snapshot_sync, &ddsa,
13553b2aab18SMatthew Ahrens 		    fnvlist_num_pairs(snaps) * 3);
13563b2aab18SMatthew Ahrens 	}
13573b2aab18SMatthew Ahrens 
13583b2aab18SMatthew Ahrens 	if (suspended != NULL) {
13593b2aab18SMatthew Ahrens 		for (pair = nvlist_next_nvpair(suspended, NULL); pair != NULL;
13603b2aab18SMatthew Ahrens 		    pair = nvlist_next_nvpair(suspended, pair)) {
13613b2aab18SMatthew Ahrens 			zil_resume((void *)(uintptr_t)
13623b2aab18SMatthew Ahrens 			    fnvpair_value_uint64(pair));
13633b2aab18SMatthew Ahrens 		}
13643b2aab18SMatthew Ahrens 		fnvlist_free(suspended);
13653b2aab18SMatthew Ahrens 	}
13663b2aab18SMatthew Ahrens 
13673b2aab18SMatthew Ahrens 	return (error);
13683b2aab18SMatthew Ahrens }
13693b2aab18SMatthew Ahrens 
13703b2aab18SMatthew Ahrens typedef struct dsl_dataset_snapshot_tmp_arg {
13713b2aab18SMatthew Ahrens 	const char *ddsta_fsname;
13723b2aab18SMatthew Ahrens 	const char *ddsta_snapname;
13733b2aab18SMatthew Ahrens 	minor_t ddsta_cleanup_minor;
13743b2aab18SMatthew Ahrens 	const char *ddsta_htag;
13753b2aab18SMatthew Ahrens } dsl_dataset_snapshot_tmp_arg_t;
13763b2aab18SMatthew Ahrens 
13773b2aab18SMatthew Ahrens static int
13783b2aab18SMatthew Ahrens dsl_dataset_snapshot_tmp_check(void *arg, dmu_tx_t *tx)
13793b2aab18SMatthew Ahrens {
13803b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_tmp_arg_t *ddsta = arg;
13813b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
13823b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
13833b2aab18SMatthew Ahrens 	int error;
13843b2aab18SMatthew Ahrens 
13853b2aab18SMatthew Ahrens 	error = dsl_dataset_hold(dp, ddsta->ddsta_fsname, FTAG, &ds);
13863b2aab18SMatthew Ahrens 	if (error != 0)
13873b2aab18SMatthew Ahrens 		return (error);
13883b2aab18SMatthew Ahrens 
1389*a2afb611SJerry Jelinek 	/* NULL cred means no limit check for tmp snapshot */
1390ca48f36fSKeith M Wesolowski 	error = dsl_dataset_snapshot_check_impl(ds, ddsta->ddsta_snapname,
1391*a2afb611SJerry Jelinek 	    tx, B_FALSE, 0, NULL);
13923b2aab18SMatthew Ahrens 	if (error != 0) {
13933b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
13943b2aab18SMatthew Ahrens 		return (error);
13953b2aab18SMatthew Ahrens 	}
13963b2aab18SMatthew Ahrens 
13973b2aab18SMatthew Ahrens 	if (spa_version(dp->dp_spa) < SPA_VERSION_USERREFS) {
13983b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
1399be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOTSUP));
14003b2aab18SMatthew Ahrens 	}
14013b2aab18SMatthew Ahrens 	error = dsl_dataset_user_hold_check_one(NULL, ddsta->ddsta_htag,
14023b2aab18SMatthew Ahrens 	    B_TRUE, tx);
14033b2aab18SMatthew Ahrens 	if (error != 0) {
14043b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
14053b2aab18SMatthew Ahrens 		return (error);
14063b2aab18SMatthew Ahrens 	}
14073b2aab18SMatthew Ahrens 
14083b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
14093b2aab18SMatthew Ahrens 	return (0);
14103b2aab18SMatthew Ahrens }
14113b2aab18SMatthew Ahrens 
14123b2aab18SMatthew Ahrens static void
14133b2aab18SMatthew Ahrens dsl_dataset_snapshot_tmp_sync(void *arg, dmu_tx_t *tx)
14143b2aab18SMatthew Ahrens {
14153b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_tmp_arg_t *ddsta = arg;
14163b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
14173b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
14183b2aab18SMatthew Ahrens 
14193b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold(dp, ddsta->ddsta_fsname, FTAG, &ds));
14203b2aab18SMatthew Ahrens 
14213b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_sync_impl(ds, ddsta->ddsta_snapname, tx);
14223b2aab18SMatthew Ahrens 	dsl_dataset_user_hold_sync_one(ds->ds_prev, ddsta->ddsta_htag,
14233b2aab18SMatthew Ahrens 	    ddsta->ddsta_cleanup_minor, gethrestime_sec(), tx);
14243b2aab18SMatthew Ahrens 	dsl_destroy_snapshot_sync_impl(ds->ds_prev, B_TRUE, tx);
14253b2aab18SMatthew Ahrens 
14263b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
14273b2aab18SMatthew Ahrens }
14283b2aab18SMatthew Ahrens 
14293b2aab18SMatthew Ahrens int
14303b2aab18SMatthew Ahrens dsl_dataset_snapshot_tmp(const char *fsname, const char *snapname,
14313b2aab18SMatthew Ahrens     minor_t cleanup_minor, const char *htag)
14323b2aab18SMatthew Ahrens {
14333b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_tmp_arg_t ddsta;
14343b2aab18SMatthew Ahrens 	int error;
14353b2aab18SMatthew Ahrens 	spa_t *spa;
14363b2aab18SMatthew Ahrens 	boolean_t needsuspend;
14373b2aab18SMatthew Ahrens 	void *cookie;
14383b2aab18SMatthew Ahrens 
14393b2aab18SMatthew Ahrens 	ddsta.ddsta_fsname = fsname;
14403b2aab18SMatthew Ahrens 	ddsta.ddsta_snapname = snapname;
14413b2aab18SMatthew Ahrens 	ddsta.ddsta_cleanup_minor = cleanup_minor;
14423b2aab18SMatthew Ahrens 	ddsta.ddsta_htag = htag;
14433b2aab18SMatthew Ahrens 
14443b2aab18SMatthew Ahrens 	error = spa_open(fsname, &spa, FTAG);
14453b2aab18SMatthew Ahrens 	if (error != 0)
14463b2aab18SMatthew Ahrens 		return (error);
14473b2aab18SMatthew Ahrens 	needsuspend = (spa_version(spa) < SPA_VERSION_FAST_SNAP);
14483b2aab18SMatthew Ahrens 	spa_close(spa, FTAG);
14493b2aab18SMatthew Ahrens 
14503b2aab18SMatthew Ahrens 	if (needsuspend) {
14513b2aab18SMatthew Ahrens 		error = zil_suspend(fsname, &cookie);
14523b2aab18SMatthew Ahrens 		if (error != 0)
14533b2aab18SMatthew Ahrens 			return (error);
14543b2aab18SMatthew Ahrens 	}
14553b2aab18SMatthew Ahrens 
14563b2aab18SMatthew Ahrens 	error = dsl_sync_task(fsname, dsl_dataset_snapshot_tmp_check,
14573b2aab18SMatthew Ahrens 	    dsl_dataset_snapshot_tmp_sync, &ddsta, 3);
14583b2aab18SMatthew Ahrens 
14593b2aab18SMatthew Ahrens 	if (needsuspend)
14603b2aab18SMatthew Ahrens 		zil_resume(cookie);
14613b2aab18SMatthew Ahrens 	return (error);
14623b2aab18SMatthew Ahrens }
14633b2aab18SMatthew Ahrens 
14643b2aab18SMatthew Ahrens 
14653b2aab18SMatthew Ahrens void
14663b2aab18SMatthew Ahrens dsl_dataset_sync(dsl_dataset_t *ds, zio_t *zio, dmu_tx_t *tx)
14673b2aab18SMatthew Ahrens {
14683b2aab18SMatthew Ahrens 	ASSERT(dmu_tx_is_syncing(tx));
14693b2aab18SMatthew Ahrens 	ASSERT(ds->ds_objset != NULL);
14703b2aab18SMatthew Ahrens 	ASSERT(ds->ds_phys->ds_next_snap_obj == 0);
14713b2aab18SMatthew Ahrens 
14723b2aab18SMatthew Ahrens 	/*
14733b2aab18SMatthew Ahrens 	 * in case we had to change ds_fsid_guid when we opened it,
14743b2aab18SMatthew Ahrens 	 * sync it out now.
14753b2aab18SMatthew Ahrens 	 */
14763b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
14773b2aab18SMatthew Ahrens 	ds->ds_phys->ds_fsid_guid = ds->ds_fsid_guid;
14783b2aab18SMatthew Ahrens 
14793b2aab18SMatthew Ahrens 	dmu_objset_sync(ds->ds_objset, zio, tx);
14803b2aab18SMatthew Ahrens }
14813b2aab18SMatthew Ahrens 
14823b2aab18SMatthew Ahrens static void
14833b2aab18SMatthew Ahrens get_clones_stat(dsl_dataset_t *ds, nvlist_t *nv)
14843b2aab18SMatthew Ahrens {
14853b2aab18SMatthew Ahrens 	uint64_t count = 0;
14863b2aab18SMatthew Ahrens 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
14873b2aab18SMatthew Ahrens 	zap_cursor_t zc;
14883b2aab18SMatthew Ahrens 	zap_attribute_t za;
14893b2aab18SMatthew Ahrens 	nvlist_t *propval = fnvlist_alloc();
14903b2aab18SMatthew Ahrens 	nvlist_t *val = fnvlist_alloc();
14913b2aab18SMatthew Ahrens 
14923b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool));
149319b94df9SMatthew Ahrens 
149419b94df9SMatthew Ahrens 	/*
14953b2aab18SMatthew Ahrens 	 * There may be missing entries in ds_next_clones_obj
149619b94df9SMatthew Ahrens 	 * due to a bug in a previous version of the code.
149719b94df9SMatthew Ahrens 	 * Only trust it if it has the right number of entries.
149819b94df9SMatthew Ahrens 	 */
149919b94df9SMatthew Ahrens 	if (ds->ds_phys->ds_next_clones_obj != 0) {
150003d1795fSAlexander Stetsenko 		VERIFY0(zap_count(mos, ds->ds_phys->ds_next_clones_obj,
150119b94df9SMatthew Ahrens 		    &count));
150219b94df9SMatthew Ahrens 	}
15033b2aab18SMatthew Ahrens 	if (count != ds->ds_phys->ds_num_children - 1)
150419b94df9SMatthew Ahrens 		goto fail;
150519b94df9SMatthew Ahrens 	for (zap_cursor_init(&zc, mos, ds->ds_phys->ds_next_clones_obj);
150619b94df9SMatthew Ahrens 	    zap_cursor_retrieve(&zc, &za) == 0;
150719b94df9SMatthew Ahrens 	    zap_cursor_advance(&zc)) {
150819b94df9SMatthew Ahrens 		dsl_dataset_t *clone;
150919b94df9SMatthew Ahrens 		char buf[ZFS_MAXNAMELEN];
15103b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(ds->ds_dir->dd_pool,
15113b2aab18SMatthew Ahrens 		    za.za_first_integer, FTAG, &clone));
151219b94df9SMatthew Ahrens 		dsl_dir_name(clone->ds_dir, buf);
15133b2aab18SMatthew Ahrens 		fnvlist_add_boolean(val, buf);
151419b94df9SMatthew Ahrens 		dsl_dataset_rele(clone, FTAG);
151519b94df9SMatthew Ahrens 	}
151619b94df9SMatthew Ahrens 	zap_cursor_fini(&zc);
15173b2aab18SMatthew Ahrens 	fnvlist_add_nvlist(propval, ZPROP_VALUE, val);
15183b2aab18SMatthew Ahrens 	fnvlist_add_nvlist(nv, zfs_prop_to_name(ZFS_PROP_CLONES), propval);
151919b94df9SMatthew Ahrens fail:
152019b94df9SMatthew Ahrens 	nvlist_free(val);
152119b94df9SMatthew Ahrens 	nvlist_free(propval);
152219b94df9SMatthew Ahrens }
152319b94df9SMatthew Ahrens 
1524fa9e4066Sahrens void
1525a2eea2e1Sahrens dsl_dataset_stats(dsl_dataset_t *ds, nvlist_t *nv)
1526fa9e4066Sahrens {
15273b2aab18SMatthew Ahrens 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
1528187d6ac0SMatt Ahrens 	uint64_t refd, avail, uobjs, aobjs, ratio;
1529a9799022Sck 
15303b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(dp));
15313b2aab18SMatthew Ahrens 
15324445fffbSMatthew Ahrens 	ratio = ds->ds_phys->ds_compressed_bytes == 0 ? 100 :
15334445fffbSMatthew Ahrens 	    (ds->ds_phys->ds_uncompressed_bytes * 100 /
15344445fffbSMatthew Ahrens 	    ds->ds_phys->ds_compressed_bytes);
15354445fffbSMatthew Ahrens 
15364445fffbSMatthew Ahrens 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFRATIO, ratio);
153777372cb0SMatthew Ahrens 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_LOGICALREFERENCED,
153877372cb0SMatthew Ahrens 	    ds->ds_phys->ds_uncompressed_bytes);
15394445fffbSMatthew Ahrens 
15404445fffbSMatthew Ahrens 	if (dsl_dataset_is_snapshot(ds)) {
15414445fffbSMatthew Ahrens 		dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_COMPRESSRATIO, ratio);
15424445fffbSMatthew Ahrens 		dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_USED,
15434445fffbSMatthew Ahrens 		    ds->ds_phys->ds_unique_bytes);
15444445fffbSMatthew Ahrens 		get_clones_stat(ds, nv);
15454445fffbSMatthew Ahrens 	} else {
15464445fffbSMatthew Ahrens 		dsl_dir_stats(ds->ds_dir, nv);
15474445fffbSMatthew Ahrens 	}
1548fa9e4066Sahrens 
1549a9799022Sck 	dsl_dataset_space(ds, &refd, &avail, &uobjs, &aobjs);
1550a9799022Sck 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_AVAILABLE, avail);
1551a9799022Sck 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFERENCED, refd);
1552a9799022Sck 
1553a2eea2e1Sahrens 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_CREATION,
1554a2eea2e1Sahrens 	    ds->ds_phys->ds_creation_time);
1555a2eea2e1Sahrens 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_CREATETXG,
1556a2eea2e1Sahrens 	    ds->ds_phys->ds_creation_txg);
1557a9799022Sck 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFQUOTA,
1558a9799022Sck 	    ds->ds_quota);
1559a9799022Sck 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFRESERVATION,
1560a9799022Sck 	    ds->ds_reserved);
1561c5904d13Seschrock 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_GUID,
1562c5904d13Seschrock 	    ds->ds_phys->ds_guid);
15631d713200SEric Schrock 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_UNIQUE,
15643f9d6ad7SLin Ling 	    ds->ds_phys->ds_unique_bytes);
15651d713200SEric Schrock 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_OBJSETID,
15661d713200SEric Schrock 	    ds->ds_object);
156792241e0bSTom Erickson 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_USERREFS,
156892241e0bSTom Erickson 	    ds->ds_userrefs);
1569842727c2SChris Kirby 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_DEFER_DESTROY,
1570842727c2SChris Kirby 	    DS_IS_DEFER_DESTROY(ds) ? 1 : 0);
1571fa9e4066Sahrens 
157219b94df9SMatthew Ahrens 	if (ds->ds_phys->ds_prev_snap_obj != 0) {
157319b94df9SMatthew Ahrens 		uint64_t written, comp, uncomp;
157419b94df9SMatthew Ahrens 		dsl_pool_t *dp = ds->ds_dir->dd_pool;
157519b94df9SMatthew Ahrens 		dsl_dataset_t *prev;
157619b94df9SMatthew Ahrens 
157719b94df9SMatthew Ahrens 		int err = dsl_dataset_hold_obj(dp,
157819b94df9SMatthew Ahrens 		    ds->ds_phys->ds_prev_snap_obj, FTAG, &prev);
157919b94df9SMatthew Ahrens 		if (err == 0) {
158019b94df9SMatthew Ahrens 			err = dsl_dataset_space_written(prev, ds, &written,
158119b94df9SMatthew Ahrens 			    &comp, &uncomp);
158219b94df9SMatthew Ahrens 			dsl_dataset_rele(prev, FTAG);
158319b94df9SMatthew Ahrens 			if (err == 0) {
158419b94df9SMatthew Ahrens 				dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_WRITTEN,
158519b94df9SMatthew Ahrens 				    written);
158619b94df9SMatthew Ahrens 			}
158719b94df9SMatthew Ahrens 		}
158819b94df9SMatthew Ahrens 	}
1589fa9e4066Sahrens }
1590fa9e4066Sahrens 
1591a2eea2e1Sahrens void
1592a2eea2e1Sahrens dsl_dataset_fast_stat(dsl_dataset_t *ds, dmu_objset_stats_t *stat)
1593a2eea2e1Sahrens {
15943b2aab18SMatthew Ahrens 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
15953b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(dp));
15963b2aab18SMatthew Ahrens 
1597a2eea2e1Sahrens 	stat->dds_creation_txg = ds->ds_phys->ds_creation_txg;
1598a2eea2e1Sahrens 	stat->dds_inconsistent = ds->ds_phys->ds_flags & DS_FLAG_INCONSISTENT;
15993cb34c60Sahrens 	stat->dds_guid = ds->ds_phys->ds_guid;
16004445fffbSMatthew Ahrens 	stat->dds_origin[0] = '\0';
16014445fffbSMatthew Ahrens 	if (dsl_dataset_is_snapshot(ds)) {
1602a2eea2e1Sahrens 		stat->dds_is_snapshot = B_TRUE;
1603a2eea2e1Sahrens 		stat->dds_num_clones = ds->ds_phys->ds_num_children - 1;
1604ebedde84SEric Taylor 	} else {
1605ebedde84SEric Taylor 		stat->dds_is_snapshot = B_FALSE;
1606ebedde84SEric Taylor 		stat->dds_num_clones = 0;
1607a2eea2e1Sahrens 
16084445fffbSMatthew Ahrens 		if (dsl_dir_is_clone(ds->ds_dir)) {
16094445fffbSMatthew Ahrens 			dsl_dataset_t *ods;
1610a2eea2e1Sahrens 
16113b2aab18SMatthew Ahrens 			VERIFY0(dsl_dataset_hold_obj(dp,
16124445fffbSMatthew Ahrens 			    ds->ds_dir->dd_phys->dd_origin_obj, FTAG, &ods));
16134445fffbSMatthew Ahrens 			dsl_dataset_name(ods, stat->dds_origin);
16143b2aab18SMatthew Ahrens 			dsl_dataset_rele(ods, FTAG);
16154445fffbSMatthew Ahrens 		}
1616a2eea2e1Sahrens 	}
1617a2eea2e1Sahrens }
1618a2eea2e1Sahrens 
1619a2eea2e1Sahrens uint64_t
1620a2eea2e1Sahrens dsl_dataset_fsid_guid(dsl_dataset_t *ds)
1621a2eea2e1Sahrens {
162291ebeef5Sahrens 	return (ds->ds_fsid_guid);
1623a2eea2e1Sahrens }
1624a2eea2e1Sahrens 
1625a2eea2e1Sahrens void
1626a2eea2e1Sahrens dsl_dataset_space(dsl_dataset_t *ds,
1627a2eea2e1Sahrens     uint64_t *refdbytesp, uint64_t *availbytesp,
1628a2eea2e1Sahrens     uint64_t *usedobjsp, uint64_t *availobjsp)
1629fa9e4066Sahrens {
1630ad135b5dSChristopher Siden 	*refdbytesp = ds->ds_phys->ds_referenced_bytes;
1631a2eea2e1Sahrens 	*availbytesp = dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE);
1632a9799022Sck 	if (ds->ds_reserved > ds->ds_phys->ds_unique_bytes)
1633a9799022Sck 		*availbytesp += ds->ds_reserved - ds->ds_phys->ds_unique_bytes;
1634a9799022Sck 	if (ds->ds_quota != 0) {
1635a9799022Sck 		/*
1636a9799022Sck 		 * Adjust available bytes according to refquota
1637a9799022Sck 		 */
1638a9799022Sck 		if (*refdbytesp < ds->ds_quota)
1639a9799022Sck 			*availbytesp = MIN(*availbytesp,
1640a9799022Sck 			    ds->ds_quota - *refdbytesp);
1641a9799022Sck 		else
1642a9799022Sck 			*availbytesp = 0;
1643a9799022Sck 	}
1644a2eea2e1Sahrens 	*usedobjsp = ds->ds_phys->ds_bp.blk_fill;
1645a2eea2e1Sahrens 	*availobjsp = DN_MAX_OBJECT - *usedobjsp;
1646fa9e4066Sahrens }
1647fa9e4066Sahrens 
1648f18faf3fSek boolean_t
164934f2f8cfSMatthew Ahrens dsl_dataset_modified_since_snap(dsl_dataset_t *ds, dsl_dataset_t *snap)
1650f18faf3fSek {
1651f18faf3fSek 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
1652f18faf3fSek 
16533b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(dp));
165434f2f8cfSMatthew Ahrens 	if (snap == NULL)
1655f18faf3fSek 		return (B_FALSE);
1656f18faf3fSek 	if (ds->ds_phys->ds_bp.blk_birth >
165734f2f8cfSMatthew Ahrens 	    snap->ds_phys->ds_creation_txg) {
165834f2f8cfSMatthew Ahrens 		objset_t *os, *os_snap;
16596e0cbcaaSMatthew Ahrens 		/*
16606e0cbcaaSMatthew Ahrens 		 * It may be that only the ZIL differs, because it was
16616e0cbcaaSMatthew Ahrens 		 * reset in the head.  Don't count that as being
16626e0cbcaaSMatthew Ahrens 		 * modified.
16636e0cbcaaSMatthew Ahrens 		 */
16646e0cbcaaSMatthew Ahrens 		if (dmu_objset_from_ds(ds, &os) != 0)
16656e0cbcaaSMatthew Ahrens 			return (B_TRUE);
166634f2f8cfSMatthew Ahrens 		if (dmu_objset_from_ds(snap, &os_snap) != 0)
16676e0cbcaaSMatthew Ahrens 			return (B_TRUE);
16686e0cbcaaSMatthew Ahrens 		return (bcmp(&os->os_phys->os_meta_dnode,
166934f2f8cfSMatthew Ahrens 		    &os_snap->os_phys->os_meta_dnode,
16706e0cbcaaSMatthew Ahrens 		    sizeof (os->os_phys->os_meta_dnode)) != 0);
16716e0cbcaaSMatthew Ahrens 	}
1672f18faf3fSek 	return (B_FALSE);
1673f18faf3fSek }
1674f18faf3fSek 
16753b2aab18SMatthew Ahrens typedef struct dsl_dataset_rename_snapshot_arg {
16763b2aab18SMatthew Ahrens 	const char *ddrsa_fsname;
16773b2aab18SMatthew Ahrens 	const char *ddrsa_oldsnapname;
16783b2aab18SMatthew Ahrens 	const char *ddrsa_newsnapname;
16793b2aab18SMatthew Ahrens 	boolean_t ddrsa_recursive;
16803b2aab18SMatthew Ahrens 	dmu_tx_t *ddrsa_tx;
16813b2aab18SMatthew Ahrens } dsl_dataset_rename_snapshot_arg_t;
16823b2aab18SMatthew Ahrens 
16831d452cf5Sahrens /* ARGSUSED */
1684fa9e4066Sahrens static int
16853b2aab18SMatthew Ahrens dsl_dataset_rename_snapshot_check_impl(dsl_pool_t *dp,
16863b2aab18SMatthew Ahrens     dsl_dataset_t *hds, void *arg)
1687fa9e4066Sahrens {
16883b2aab18SMatthew Ahrens 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
16893b2aab18SMatthew Ahrens 	int error;
1690fa9e4066Sahrens 	uint64_t val;
1691fa9e4066Sahrens 
16923b2aab18SMatthew Ahrens 	error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_oldsnapname, &val);
16933b2aab18SMatthew Ahrens 	if (error != 0) {
16943b2aab18SMatthew Ahrens 		/* ignore nonexistent snapshots */
16953b2aab18SMatthew Ahrens 		return (error == ENOENT ? 0 : error);
16963b2aab18SMatthew Ahrens 	}
16971d452cf5Sahrens 
16983b2aab18SMatthew Ahrens 	/* new name should not exist */
16993b2aab18SMatthew Ahrens 	error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_newsnapname, &val);
17003b2aab18SMatthew Ahrens 	if (error == 0)
1701be6fd75aSMatthew Ahrens 		error = SET_ERROR(EEXIST);
17023b2aab18SMatthew Ahrens 	else if (error == ENOENT)
17033b2aab18SMatthew Ahrens 		error = 0;
1704cdf5b4caSmmusante 
1705cdf5b4caSmmusante 	/* dataset name + 1 for the "@" + the new snapshot name must fit */
17063b2aab18SMatthew Ahrens 	if (dsl_dir_namelen(hds->ds_dir) + 1 +
17073b2aab18SMatthew Ahrens 	    strlen(ddrsa->ddrsa_newsnapname) >= MAXNAMELEN)
1708be6fd75aSMatthew Ahrens 		error = SET_ERROR(ENAMETOOLONG);
1709cdf5b4caSmmusante 
17103b2aab18SMatthew Ahrens 	return (error);
17111d452cf5Sahrens }
1712fa9e4066Sahrens 
17133b2aab18SMatthew Ahrens static int
17143b2aab18SMatthew Ahrens dsl_dataset_rename_snapshot_check(void *arg, dmu_tx_t *tx)
17151d452cf5Sahrens {
17163b2aab18SMatthew Ahrens 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
17173b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
17181d452cf5Sahrens 	dsl_dataset_t *hds;
17193b2aab18SMatthew Ahrens 	int error;
1720fa9e4066Sahrens 
17213b2aab18SMatthew Ahrens 	error = dsl_dataset_hold(dp, ddrsa->ddrsa_fsname, FTAG, &hds);
17223b2aab18SMatthew Ahrens 	if (error != 0)
17233b2aab18SMatthew Ahrens 		return (error);
1724fa9e4066Sahrens 
17253b2aab18SMatthew Ahrens 	if (ddrsa->ddrsa_recursive) {
17263b2aab18SMatthew Ahrens 		error = dmu_objset_find_dp(dp, hds->ds_dir->dd_object,
17273b2aab18SMatthew Ahrens 		    dsl_dataset_rename_snapshot_check_impl, ddrsa,
17283b2aab18SMatthew Ahrens 		    DS_FIND_CHILDREN);
17293b2aab18SMatthew Ahrens 	} else {
17303b2aab18SMatthew Ahrens 		error = dsl_dataset_rename_snapshot_check_impl(dp, hds, ddrsa);
17313b2aab18SMatthew Ahrens 	}
1732745cd3c5Smaybee 	dsl_dataset_rele(hds, FTAG);
17333b2aab18SMatthew Ahrens 	return (error);
1734fa9e4066Sahrens }
1735fa9e4066Sahrens 
1736cdf5b4caSmmusante static int
17373b2aab18SMatthew Ahrens dsl_dataset_rename_snapshot_sync_impl(dsl_pool_t *dp,
17383b2aab18SMatthew Ahrens     dsl_dataset_t *hds, void *arg)
1739cdf5b4caSmmusante {
17403b2aab18SMatthew Ahrens 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
17413b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
17423b2aab18SMatthew Ahrens 	uint64_t val;
17433b2aab18SMatthew Ahrens 	dmu_tx_t *tx = ddrsa->ddrsa_tx;
17443b2aab18SMatthew Ahrens 	int error;
1745ecd6cf80Smarks 
17463b2aab18SMatthew Ahrens 	error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_oldsnapname, &val);
17473b2aab18SMatthew Ahrens 	ASSERT(error == 0 || error == ENOENT);
17483b2aab18SMatthew Ahrens 	if (error == ENOENT) {
17493b2aab18SMatthew Ahrens 		/* ignore nonexistent snapshots */
17503b2aab18SMatthew Ahrens 		return (0);
1751ecd6cf80Smarks 	}
1752ecd6cf80Smarks 
17533b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold_obj(dp, val, FTAG, &ds));
17543b2aab18SMatthew Ahrens 
17553b2aab18SMatthew Ahrens 	/* log before we change the name */
17563b2aab18SMatthew Ahrens 	spa_history_log_internal_ds(ds, "rename", tx,
17573b2aab18SMatthew Ahrens 	    "-> @%s", ddrsa->ddrsa_newsnapname);
1758cdf5b4caSmmusante 
1759*a2afb611SJerry Jelinek 	VERIFY0(dsl_dataset_snap_remove(hds, ddrsa->ddrsa_oldsnapname, tx,
1760*a2afb611SJerry Jelinek 	    B_FALSE));
17613b2aab18SMatthew Ahrens 	mutex_enter(&ds->ds_lock);
17623b2aab18SMatthew Ahrens 	(void) strcpy(ds->ds_snapname, ddrsa->ddrsa_newsnapname);
17633b2aab18SMatthew Ahrens 	mutex_exit(&ds->ds_lock);
17643b2aab18SMatthew Ahrens 	VERIFY0(zap_add(dp->dp_meta_objset, hds->ds_phys->ds_snapnames_zapobj,
17653b2aab18SMatthew Ahrens 	    ds->ds_snapname, 8, 1, &ds->ds_object, tx));
1766cdf5b4caSmmusante 
17673b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
1768cdf5b4caSmmusante 	return (0);
1769cdf5b4caSmmusante }
1770cdf5b4caSmmusante 
17713b2aab18SMatthew Ahrens static void
17723b2aab18SMatthew Ahrens dsl_dataset_rename_snapshot_sync(void *arg, dmu_tx_t *tx)
1773cdf5b4caSmmusante {
17743b2aab18SMatthew Ahrens 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
17753b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
17763b2aab18SMatthew Ahrens 	dsl_dataset_t *hds;
1777cdf5b4caSmmusante 
17783b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold(dp, ddrsa->ddrsa_fsname, FTAG, &hds));
17793b2aab18SMatthew Ahrens 	ddrsa->ddrsa_tx = tx;
17803b2aab18SMatthew Ahrens 	if (ddrsa->ddrsa_recursive) {
17813b2aab18SMatthew Ahrens 		VERIFY0(dmu_objset_find_dp(dp, hds->ds_dir->dd_object,
17823b2aab18SMatthew Ahrens 		    dsl_dataset_rename_snapshot_sync_impl, ddrsa,
17833b2aab18SMatthew Ahrens 		    DS_FIND_CHILDREN));
17843b2aab18SMatthew Ahrens 	} else {
17853b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_rename_snapshot_sync_impl(dp, hds, ddrsa));
1786cdf5b4caSmmusante 	}
17873b2aab18SMatthew Ahrens 	dsl_dataset_rele(hds, FTAG);
1788cdf5b4caSmmusante }
1789cdf5b4caSmmusante 
17903b2aab18SMatthew Ahrens int
17913b2aab18SMatthew Ahrens dsl_dataset_rename_snapshot(const char *fsname,
17923b2aab18SMatthew Ahrens     const char *oldsnapname, const char *newsnapname, boolean_t recursive)
17933a5a36beSmmusante {
17943b2aab18SMatthew Ahrens 	dsl_dataset_rename_snapshot_arg_t ddrsa;
17953a5a36beSmmusante 
17963b2aab18SMatthew Ahrens 	ddrsa.ddrsa_fsname = fsname;
17973b2aab18SMatthew Ahrens 	ddrsa.ddrsa_oldsnapname = oldsnapname;
17983b2aab18SMatthew Ahrens 	ddrsa.ddrsa_newsnapname = newsnapname;
17993b2aab18SMatthew Ahrens 	ddrsa.ddrsa_recursive = recursive;
18003a5a36beSmmusante 
18013b2aab18SMatthew Ahrens 	return (dsl_sync_task(fsname, dsl_dataset_rename_snapshot_check,
18023b2aab18SMatthew Ahrens 	    dsl_dataset_rename_snapshot_sync, &ddrsa, 1));
18033a5a36beSmmusante }
18043a5a36beSmmusante 
180591948b51SKeith M Wesolowski /*
180691948b51SKeith M Wesolowski  * If we're doing an ownership handoff, we need to make sure that there is
180791948b51SKeith M Wesolowski  * only one long hold on the dataset.  We're not allowed to change anything here
180891948b51SKeith M Wesolowski  * so we don't permanently release the long hold or regular hold here.  We want
180991948b51SKeith M Wesolowski  * to do this only when syncing to avoid the dataset unexpectedly going away
181091948b51SKeith M Wesolowski  * when we release the long hold.
181191948b51SKeith M Wesolowski  */
181291948b51SKeith M Wesolowski static int
181391948b51SKeith M Wesolowski dsl_dataset_handoff_check(dsl_dataset_t *ds, void *owner, dmu_tx_t *tx)
181491948b51SKeith M Wesolowski {
181591948b51SKeith M Wesolowski 	boolean_t held;
181691948b51SKeith M Wesolowski 
181791948b51SKeith M Wesolowski 	if (!dmu_tx_is_syncing(tx))
181891948b51SKeith M Wesolowski 		return (0);
181991948b51SKeith M Wesolowski 
182091948b51SKeith M Wesolowski 	if (owner != NULL) {
182191948b51SKeith M Wesolowski 		VERIFY3P(ds->ds_owner, ==, owner);
182291948b51SKeith M Wesolowski 		dsl_dataset_long_rele(ds, owner);
182391948b51SKeith M Wesolowski 	}
182491948b51SKeith M Wesolowski 
182591948b51SKeith M Wesolowski 	held = dsl_dataset_long_held(ds);
182691948b51SKeith M Wesolowski 
182791948b51SKeith M Wesolowski 	if (owner != NULL)
182891948b51SKeith M Wesolowski 		dsl_dataset_long_hold(ds, owner);
182991948b51SKeith M Wesolowski 
183091948b51SKeith M Wesolowski 	if (held)
183191948b51SKeith M Wesolowski 		return (SET_ERROR(EBUSY));
183291948b51SKeith M Wesolowski 
183391948b51SKeith M Wesolowski 	return (0);
183491948b51SKeith M Wesolowski }
183591948b51SKeith M Wesolowski 
183691948b51SKeith M Wesolowski typedef struct dsl_dataset_rollback_arg {
183791948b51SKeith M Wesolowski 	const char *ddra_fsname;
183891948b51SKeith M Wesolowski 	void *ddra_owner;
1839a7027df1SMatthew Ahrens 	nvlist_t *ddra_result;
184091948b51SKeith M Wesolowski } dsl_dataset_rollback_arg_t;
184191948b51SKeith M Wesolowski 
18423b2aab18SMatthew Ahrens static int
18433b2aab18SMatthew Ahrens dsl_dataset_rollback_check(void *arg, dmu_tx_t *tx)
1844fa9e4066Sahrens {
184591948b51SKeith M Wesolowski 	dsl_dataset_rollback_arg_t *ddra = arg;
18463b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
18471d452cf5Sahrens 	dsl_dataset_t *ds;
18483b2aab18SMatthew Ahrens 	int64_t unused_refres_delta;
18493b2aab18SMatthew Ahrens 	int error;
1850fa9e4066Sahrens 
185191948b51SKeith M Wesolowski 	error = dsl_dataset_hold(dp, ddra->ddra_fsname, FTAG, &ds);
18523b2aab18SMatthew Ahrens 	if (error != 0)
18533b2aab18SMatthew Ahrens 		return (error);
1854370c1af0SSanjeev Bagewadi 
18553b2aab18SMatthew Ahrens 	/* must not be a snapshot */
18563b2aab18SMatthew Ahrens 	if (dsl_dataset_is_snapshot(ds)) {
18573b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
1858be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
18593b2aab18SMatthew Ahrens 	}
18603a5a36beSmmusante 
18613b2aab18SMatthew Ahrens 	/* must have a most recent snapshot */
18623b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_prev_snap_txg < TXG_INITIAL) {
18633b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
1864be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
18653b2aab18SMatthew Ahrens 	}
18663a5a36beSmmusante 
186778f17100SMatthew Ahrens 	/* must not have any bookmarks after the most recent snapshot */
186878f17100SMatthew Ahrens 	nvlist_t *proprequest = fnvlist_alloc();
186978f17100SMatthew Ahrens 	fnvlist_add_boolean(proprequest, zfs_prop_to_name(ZFS_PROP_CREATETXG));
187078f17100SMatthew Ahrens 	nvlist_t *bookmarks = fnvlist_alloc();
187178f17100SMatthew Ahrens 	error = dsl_get_bookmarks_impl(ds, proprequest, bookmarks);
187278f17100SMatthew Ahrens 	fnvlist_free(proprequest);
187378f17100SMatthew Ahrens 	if (error != 0)
187478f17100SMatthew Ahrens 		return (error);
187578f17100SMatthew Ahrens 	for (nvpair_t *pair = nvlist_next_nvpair(bookmarks, NULL);
187678f17100SMatthew Ahrens 	    pair != NULL; pair = nvlist_next_nvpair(bookmarks, pair)) {
187778f17100SMatthew Ahrens 		nvlist_t *valuenv =
187878f17100SMatthew Ahrens 		    fnvlist_lookup_nvlist(fnvpair_value_nvlist(pair),
187978f17100SMatthew Ahrens 		    zfs_prop_to_name(ZFS_PROP_CREATETXG));
188078f17100SMatthew Ahrens 		uint64_t createtxg = fnvlist_lookup_uint64(valuenv, "value");
188178f17100SMatthew Ahrens 		if (createtxg > ds->ds_phys->ds_prev_snap_txg) {
188278f17100SMatthew Ahrens 			fnvlist_free(bookmarks);
188378f17100SMatthew Ahrens 			dsl_dataset_rele(ds, FTAG);
188478f17100SMatthew Ahrens 			return (SET_ERROR(EEXIST));
188578f17100SMatthew Ahrens 		}
188678f17100SMatthew Ahrens 	}
188778f17100SMatthew Ahrens 	fnvlist_free(bookmarks);
188878f17100SMatthew Ahrens 
188991948b51SKeith M Wesolowski 	error = dsl_dataset_handoff_check(ds, ddra->ddra_owner, tx);
189091948b51SKeith M Wesolowski 	if (error != 0) {
18913b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
189291948b51SKeith M Wesolowski 		return (error);
18933b2aab18SMatthew Ahrens 	}
18943b2aab18SMatthew Ahrens 
18953b2aab18SMatthew Ahrens 	/*
18963b2aab18SMatthew Ahrens 	 * Check if the snap we are rolling back to uses more than
18973b2aab18SMatthew Ahrens 	 * the refquota.
18983b2aab18SMatthew Ahrens 	 */
18993b2aab18SMatthew Ahrens 	if (ds->ds_quota != 0 &&
19003b2aab18SMatthew Ahrens 	    ds->ds_prev->ds_phys->ds_referenced_bytes > ds->ds_quota) {
19013b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
1902be6fd75aSMatthew Ahrens 		return (SET_ERROR(EDQUOT));
1903fa9e4066Sahrens 	}
1904370c1af0SSanjeev Bagewadi 
19053b2aab18SMatthew Ahrens 	/*
19063b2aab18SMatthew Ahrens 	 * When we do the clone swap, we will temporarily use more space
19073b2aab18SMatthew Ahrens 	 * due to the refreservation (the head will no longer have any
19083b2aab18SMatthew Ahrens 	 * unique space, so the entire amount of the refreservation will need
19093b2aab18SMatthew Ahrens 	 * to be free).  We will immediately destroy the clone, freeing
19103b2aab18SMatthew Ahrens 	 * this space, but the freeing happens over many txg's.
19113b2aab18SMatthew Ahrens 	 */
19123b2aab18SMatthew Ahrens 	unused_refres_delta = (int64_t)MIN(ds->ds_reserved,
19133b2aab18SMatthew Ahrens 	    ds->ds_phys->ds_unique_bytes);
19143b2aab18SMatthew Ahrens 
19153b2aab18SMatthew Ahrens 	if (unused_refres_delta > 0 &&
19163b2aab18SMatthew Ahrens 	    unused_refres_delta >
19173b2aab18SMatthew Ahrens 	    dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE)) {
19183b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
1919be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOSPC));
1920fa9e4066Sahrens 	}
1921fa9e4066Sahrens 
19223b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
19233b2aab18SMatthew Ahrens 	return (0);
19243b2aab18SMatthew Ahrens }
19251d452cf5Sahrens 
19263b2aab18SMatthew Ahrens static void
19273b2aab18SMatthew Ahrens dsl_dataset_rollback_sync(void *arg, dmu_tx_t *tx)
19283b2aab18SMatthew Ahrens {
192991948b51SKeith M Wesolowski 	dsl_dataset_rollback_arg_t *ddra = arg;
19303b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
19313b2aab18SMatthew Ahrens 	dsl_dataset_t *ds, *clone;
19323b2aab18SMatthew Ahrens 	uint64_t cloneobj;
1933a7027df1SMatthew Ahrens 	char namebuf[ZFS_MAXNAMELEN];
19341d452cf5Sahrens 
193591948b51SKeith M Wesolowski 	VERIFY0(dsl_dataset_hold(dp, ddra->ddra_fsname, FTAG, &ds));
19361d452cf5Sahrens 
1937a7027df1SMatthew Ahrens 	dsl_dataset_name(ds->ds_prev, namebuf);
1938a7027df1SMatthew Ahrens 	fnvlist_add_string(ddra->ddra_result, "target", namebuf);
1939a7027df1SMatthew Ahrens 
19403b2aab18SMatthew Ahrens 	cloneobj = dsl_dataset_create_sync(ds->ds_dir, "%rollback",
19413b2aab18SMatthew Ahrens 	    ds->ds_prev, DS_CREATE_FLAG_NODIRTY, kcred, tx);
19421d452cf5Sahrens 
19433b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold_obj(dp, cloneobj, FTAG, &clone));
19441d452cf5Sahrens 
19453b2aab18SMatthew Ahrens 	dsl_dataset_clone_swap_sync_impl(clone, ds, tx);
19463b2aab18SMatthew Ahrens 	dsl_dataset_zero_zil(ds, tx);
19473b2aab18SMatthew Ahrens 
19483b2aab18SMatthew Ahrens 	dsl_destroy_head_sync_impl(clone, tx);
19493b2aab18SMatthew Ahrens 
19503b2aab18SMatthew Ahrens 	dsl_dataset_rele(clone, FTAG);
19513b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
19523b2aab18SMatthew Ahrens }
19533b2aab18SMatthew Ahrens 
195491948b51SKeith M Wesolowski /*
1955a7027df1SMatthew Ahrens  * Rolls back the given filesystem or volume to the most recent snapshot.
1956a7027df1SMatthew Ahrens  * The name of the most recent snapshot will be returned under key "target"
1957a7027df1SMatthew Ahrens  * in the result nvlist.
195891948b51SKeith M Wesolowski  *
1959a7027df1SMatthew Ahrens  * If owner != NULL:
196091948b51SKeith M Wesolowski  * - The existing dataset MUST be owned by the specified owner at entry
196191948b51SKeith M Wesolowski  * - Upon return, dataset will still be held by the same owner, whether we
196291948b51SKeith M Wesolowski  *   succeed or not.
196391948b51SKeith M Wesolowski  *
196491948b51SKeith M Wesolowski  * This mode is required any time the existing filesystem is mounted.  See
196591948b51SKeith M Wesolowski  * notes above zfs_suspend_fs() for further details.
196691948b51SKeith M Wesolowski  */
19673b2aab18SMatthew Ahrens int
1968a7027df1SMatthew Ahrens dsl_dataset_rollback(const char *fsname, void *owner, nvlist_t *result)
19693b2aab18SMatthew Ahrens {
197091948b51SKeith M Wesolowski 	dsl_dataset_rollback_arg_t ddra;
197191948b51SKeith M Wesolowski 
197291948b51SKeith M Wesolowski 	ddra.ddra_fsname = fsname;
197391948b51SKeith M Wesolowski 	ddra.ddra_owner = owner;
1974a7027df1SMatthew Ahrens 	ddra.ddra_result = result;
197591948b51SKeith M Wesolowski 
19763b2aab18SMatthew Ahrens 	return (dsl_sync_task(fsname, dsl_dataset_rollback_check,
1977a7027df1SMatthew Ahrens 	    dsl_dataset_rollback_sync, &ddra, 1));
1978fa9e4066Sahrens }
197999653d4eSeschrock 
1980088f3894Sahrens struct promotenode {
1981745cd3c5Smaybee 	list_node_t link;
1982745cd3c5Smaybee 	dsl_dataset_t *ds;
1983745cd3c5Smaybee };
1984745cd3c5Smaybee 
19853b2aab18SMatthew Ahrens typedef struct dsl_dataset_promote_arg {
19863b2aab18SMatthew Ahrens 	const char *ddpa_clonename;
19873b2aab18SMatthew Ahrens 	dsl_dataset_t *ddpa_clone;
198874e7dc98SMatthew Ahrens 	list_t shared_snaps, origin_snaps, clone_snaps;
19893b2aab18SMatthew Ahrens 	dsl_dataset_t *origin_origin; /* origin of the origin */
199074e7dc98SMatthew Ahrens 	uint64_t used, comp, uncomp, unique, cloneusedsnap, originusedsnap;
1991681d9761SEric Taylor 	char *err_ds;
1992*a2afb611SJerry Jelinek 	cred_t *cr;
19933b2aab18SMatthew Ahrens } dsl_dataset_promote_arg_t;
19941d452cf5Sahrens 
199574e7dc98SMatthew Ahrens static int snaplist_space(list_t *l, uint64_t mintxg, uint64_t *spacep);
19963b2aab18SMatthew Ahrens static int promote_hold(dsl_dataset_promote_arg_t *ddpa, dsl_pool_t *dp,
19973b2aab18SMatthew Ahrens     void *tag);
19983b2aab18SMatthew Ahrens static void promote_rele(dsl_dataset_promote_arg_t *ddpa, void *tag);
199974e7dc98SMatthew Ahrens 
200099653d4eSeschrock static int
20013b2aab18SMatthew Ahrens dsl_dataset_promote_check(void *arg, dmu_tx_t *tx)
200299653d4eSeschrock {
20033b2aab18SMatthew Ahrens 	dsl_dataset_promote_arg_t *ddpa = arg;
20043b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
20053b2aab18SMatthew Ahrens 	dsl_dataset_t *hds;
20063b2aab18SMatthew Ahrens 	struct promotenode *snap;
20073b2aab18SMatthew Ahrens 	dsl_dataset_t *origin_ds;
2008745cd3c5Smaybee 	int err;
2009cde58dbcSMatthew Ahrens 	uint64_t unused;
2010*a2afb611SJerry Jelinek 	uint64_t ss_mv_cnt;
20111d452cf5Sahrens 
20123b2aab18SMatthew Ahrens 	err = promote_hold(ddpa, dp, FTAG);
20133b2aab18SMatthew Ahrens 	if (err != 0)
20143b2aab18SMatthew Ahrens 		return (err);
201599653d4eSeschrock 
20163b2aab18SMatthew Ahrens 	hds = ddpa->ddpa_clone;
20171d452cf5Sahrens 
20183b2aab18SMatthew Ahrens 	if (hds->ds_phys->ds_flags & DS_FLAG_NOPROMOTE) {
20193b2aab18SMatthew Ahrens 		promote_rele(ddpa, FTAG);
2020be6fd75aSMatthew Ahrens 		return (SET_ERROR(EXDEV));
20213b2aab18SMatthew Ahrens 	}
20223b2aab18SMatthew Ahrens 
20233b2aab18SMatthew Ahrens 	/*
20243b2aab18SMatthew Ahrens 	 * Compute and check the amount of space to transfer.  Since this is
20253b2aab18SMatthew Ahrens 	 * so expensive, don't do the preliminary check.
20263b2aab18SMatthew Ahrens 	 */
20273b2aab18SMatthew Ahrens 	if (!dmu_tx_is_syncing(tx)) {
20283b2aab18SMatthew Ahrens 		promote_rele(ddpa, FTAG);
20293b2aab18SMatthew Ahrens 		return (0);
20303b2aab18SMatthew Ahrens 	}
20313b2aab18SMatthew Ahrens 
20323b2aab18SMatthew Ahrens 	snap = list_head(&ddpa->shared_snaps);
20333b2aab18SMatthew Ahrens 	origin_ds = snap->ds;
203499653d4eSeschrock 
20353cb34c60Sahrens 	/* compute origin's new unique space */
20363b2aab18SMatthew Ahrens 	snap = list_tail(&ddpa->clone_snaps);
203774e7dc98SMatthew Ahrens 	ASSERT3U(snap->ds->ds_phys->ds_prev_snap_obj, ==, origin_ds->ds_object);
2038cde58dbcSMatthew Ahrens 	dsl_deadlist_space_range(&snap->ds->ds_deadlist,
2039cde58dbcSMatthew Ahrens 	    origin_ds->ds_phys->ds_prev_snap_txg, UINT64_MAX,
20403b2aab18SMatthew Ahrens 	    &ddpa->unique, &unused, &unused);
204199653d4eSeschrock 
2042745cd3c5Smaybee 	/*
2043745cd3c5Smaybee 	 * Walk the snapshots that we are moving
2044745cd3c5Smaybee 	 *
204574e7dc98SMatthew Ahrens 	 * Compute space to transfer.  Consider the incremental changes
20463b2aab18SMatthew Ahrens 	 * to used by each snapshot:
204774e7dc98SMatthew Ahrens 	 * (my used) = (prev's used) + (blocks born) - (blocks killed)
204874e7dc98SMatthew Ahrens 	 * So each snapshot gave birth to:
204974e7dc98SMatthew Ahrens 	 * (blocks born) = (my used) - (prev's used) + (blocks killed)
2050745cd3c5Smaybee 	 * So a sequence would look like:
205174e7dc98SMatthew Ahrens 	 * (uN - u(N-1) + kN) + ... + (u1 - u0 + k1) + (u0 - 0 + k0)
2052745cd3c5Smaybee 	 * Which simplifies to:
205374e7dc98SMatthew Ahrens 	 * uN + kN + kN-1 + ... + k1 + k0
2054745cd3c5Smaybee 	 * Note however, if we stop before we reach the ORIGIN we get:
205574e7dc98SMatthew Ahrens 	 * uN + kN + kN-1 + ... + kM - uM-1
2056745cd3c5Smaybee 	 */
2057*a2afb611SJerry Jelinek 	ss_mv_cnt = 0;
20583b2aab18SMatthew Ahrens 	ddpa->used = origin_ds->ds_phys->ds_referenced_bytes;
20593b2aab18SMatthew Ahrens 	ddpa->comp = origin_ds->ds_phys->ds_compressed_bytes;
20603b2aab18SMatthew Ahrens 	ddpa->uncomp = origin_ds->ds_phys->ds_uncompressed_bytes;
20613b2aab18SMatthew Ahrens 	for (snap = list_head(&ddpa->shared_snaps); snap;
20623b2aab18SMatthew Ahrens 	    snap = list_next(&ddpa->shared_snaps, snap)) {
206399653d4eSeschrock 		uint64_t val, dlused, dlcomp, dluncomp;
2064745cd3c5Smaybee 		dsl_dataset_t *ds = snap->ds;
206599653d4eSeschrock 
2066*a2afb611SJerry Jelinek 		ss_mv_cnt++;
2067*a2afb611SJerry Jelinek 
20683b2aab18SMatthew Ahrens 		/*
20693b2aab18SMatthew Ahrens 		 * If there are long holds, we won't be able to evict
20703b2aab18SMatthew Ahrens 		 * the objset.
20713b2aab18SMatthew Ahrens 		 */
20723b2aab18SMatthew Ahrens 		if (dsl_dataset_long_held(ds)) {
2073be6fd75aSMatthew Ahrens 			err = SET_ERROR(EBUSY);
20743b2aab18SMatthew Ahrens 			goto out;
20753b2aab18SMatthew Ahrens 		}
20763b2aab18SMatthew Ahrens 
207799653d4eSeschrock 		/* Check that the snapshot name does not conflict */
20783b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_get_snapname(ds));
2079745cd3c5Smaybee 		err = dsl_dataset_snap_lookup(hds, ds->ds_snapname, &val);
2080681d9761SEric Taylor 		if (err == 0) {
20813b2aab18SMatthew Ahrens 			(void) strcpy(ddpa->err_ds, snap->ds->ds_snapname);
2082be6fd75aSMatthew Ahrens 			err = SET_ERROR(EEXIST);
2083681d9761SEric Taylor 			goto out;
2084681d9761SEric Taylor 		}
2085745cd3c5Smaybee 		if (err != ENOENT)
2086681d9761SEric Taylor 			goto out;
208799653d4eSeschrock 
2088745cd3c5Smaybee 		/* The very first snapshot does not have a deadlist */
208974e7dc98SMatthew Ahrens 		if (ds->ds_phys->ds_prev_snap_obj == 0)
209074e7dc98SMatthew Ahrens 			continue;
209174e7dc98SMatthew Ahrens 
2092cde58dbcSMatthew Ahrens 		dsl_deadlist_space(&ds->ds_deadlist,
2093cde58dbcSMatthew Ahrens 		    &dlused, &dlcomp, &dluncomp);
20943b2aab18SMatthew Ahrens 		ddpa->used += dlused;
20953b2aab18SMatthew Ahrens 		ddpa->comp += dlcomp;
20963b2aab18SMatthew Ahrens 		ddpa->uncomp += dluncomp;
209774e7dc98SMatthew Ahrens 	}
2098745cd3c5Smaybee 
2099745cd3c5Smaybee 	/*
2100745cd3c5Smaybee 	 * If we are a clone of a clone then we never reached ORIGIN,
2101745cd3c5Smaybee 	 * so we need to subtract out the clone origin's used space.
2102745cd3c5Smaybee 	 */
21033b2aab18SMatthew Ahrens 	if (ddpa->origin_origin) {
21043b2aab18SMatthew Ahrens 		ddpa->used -= ddpa->origin_origin->ds_phys->ds_referenced_bytes;
21053b2aab18SMatthew Ahrens 		ddpa->comp -= ddpa->origin_origin->ds_phys->ds_compressed_bytes;
21063b2aab18SMatthew Ahrens 		ddpa->uncomp -=
21073b2aab18SMatthew Ahrens 		    ddpa->origin_origin->ds_phys->ds_uncompressed_bytes;
210899653d4eSeschrock 	}
210999653d4eSeschrock 
2110*a2afb611SJerry Jelinek 	/* Check that there is enough space and limit headroom here */
211174e7dc98SMatthew Ahrens 	err = dsl_dir_transfer_possible(origin_ds->ds_dir, hds->ds_dir,
2112*a2afb611SJerry Jelinek 	    0, ss_mv_cnt, ddpa->used, ddpa->cr);
21133b2aab18SMatthew Ahrens 	if (err != 0)
21143b2aab18SMatthew Ahrens 		goto out;
211574e7dc98SMatthew Ahrens 
211674e7dc98SMatthew Ahrens 	/*
211774e7dc98SMatthew Ahrens 	 * Compute the amounts of space that will be used by snapshots
211874e7dc98SMatthew Ahrens 	 * after the promotion (for both origin and clone).  For each,
211974e7dc98SMatthew Ahrens 	 * it is the amount of space that will be on all of their
212074e7dc98SMatthew Ahrens 	 * deadlists (that was not born before their new origin).
212174e7dc98SMatthew Ahrens 	 */
212274e7dc98SMatthew Ahrens 	if (hds->ds_dir->dd_phys->dd_flags & DD_FLAG_USED_BREAKDOWN) {
212374e7dc98SMatthew Ahrens 		uint64_t space;
212474e7dc98SMatthew Ahrens 
212574e7dc98SMatthew Ahrens 		/*
212674e7dc98SMatthew Ahrens 		 * Note, typically this will not be a clone of a clone,
21273f9d6ad7SLin Ling 		 * so dd_origin_txg will be < TXG_INITIAL, so
2128cde58dbcSMatthew Ahrens 		 * these snaplist_space() -> dsl_deadlist_space_range()
212974e7dc98SMatthew Ahrens 		 * calls will be fast because they do not have to
213074e7dc98SMatthew Ahrens 		 * iterate over all bps.
213174e7dc98SMatthew Ahrens 		 */
21323b2aab18SMatthew Ahrens 		snap = list_head(&ddpa->origin_snaps);
21333b2aab18SMatthew Ahrens 		err = snaplist_space(&ddpa->shared_snaps,
21343b2aab18SMatthew Ahrens 		    snap->ds->ds_dir->dd_origin_txg, &ddpa->cloneusedsnap);
21353b2aab18SMatthew Ahrens 		if (err != 0)
21363b2aab18SMatthew Ahrens 			goto out;
213774e7dc98SMatthew Ahrens 
21383b2aab18SMatthew Ahrens 		err = snaplist_space(&ddpa->clone_snaps,
21393f9d6ad7SLin Ling 		    snap->ds->ds_dir->dd_origin_txg, &space);
21403b2aab18SMatthew Ahrens 		if (err != 0)
21413b2aab18SMatthew Ahrens 			goto out;
21423b2aab18SMatthew Ahrens 		ddpa->cloneusedsnap += space;
214374e7dc98SMatthew Ahrens 	}
214474e7dc98SMatthew Ahrens 	if (origin_ds->ds_dir->dd_phys->dd_flags & DD_FLAG_USED_BREAKDOWN) {
21453b2aab18SMatthew Ahrens 		err = snaplist_space(&ddpa->origin_snaps,
21463b2aab18SMatthew Ahrens 		    origin_ds->ds_phys->ds_creation_txg, &ddpa->originusedsnap);
21473b2aab18SMatthew Ahrens 		if (err != 0)
21483b2aab18SMatthew Ahrens 			goto out;
2149745cd3c5Smaybee 	}
21501d452cf5Sahrens 
2151681d9761SEric Taylor out:
21523b2aab18SMatthew Ahrens 	promote_rele(ddpa, FTAG);
2153681d9761SEric Taylor 	return (err);
21541d452cf5Sahrens }
215599653d4eSeschrock 
21561d452cf5Sahrens static void
21573b2aab18SMatthew Ahrens dsl_dataset_promote_sync(void *arg, dmu_tx_t *tx)
21581d452cf5Sahrens {
21593b2aab18SMatthew Ahrens 	dsl_dataset_promote_arg_t *ddpa = arg;
21603b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
21613b2aab18SMatthew Ahrens 	dsl_dataset_t *hds;
21623b2aab18SMatthew Ahrens 	struct promotenode *snap;
21633b2aab18SMatthew Ahrens 	dsl_dataset_t *origin_ds;
21643b2aab18SMatthew Ahrens 	dsl_dataset_t *origin_head;
21653b2aab18SMatthew Ahrens 	dsl_dir_t *dd;
21663cb34c60Sahrens 	dsl_dir_t *odd = NULL;
2167088f3894Sahrens 	uint64_t oldnext_obj;
216874e7dc98SMatthew Ahrens 	int64_t delta;
21691d452cf5Sahrens 
21703b2aab18SMatthew Ahrens 	VERIFY0(promote_hold(ddpa, dp, FTAG));
21713b2aab18SMatthew Ahrens 	hds = ddpa->ddpa_clone;
21723b2aab18SMatthew Ahrens 
21733b2aab18SMatthew Ahrens 	ASSERT0(hds->ds_phys->ds_flags & DS_FLAG_NOPROMOTE);
21741d452cf5Sahrens 
21753b2aab18SMatthew Ahrens 	snap = list_head(&ddpa->shared_snaps);
21763b2aab18SMatthew Ahrens 	origin_ds = snap->ds;
21773b2aab18SMatthew Ahrens 	dd = hds->ds_dir;
21783b2aab18SMatthew Ahrens 
21793b2aab18SMatthew Ahrens 	snap = list_head(&ddpa->origin_snaps);
218074e7dc98SMatthew Ahrens 	origin_head = snap->ds;
218174e7dc98SMatthew Ahrens 
21820b69c2f0Sahrens 	/*
21833cb34c60Sahrens 	 * We need to explicitly open odd, since origin_ds's dd will be
21840b69c2f0Sahrens 	 * changing.
21850b69c2f0Sahrens 	 */
21863b2aab18SMatthew Ahrens 	VERIFY0(dsl_dir_hold_obj(dp, origin_ds->ds_dir->dd_object,
21873cb34c60Sahrens 	    NULL, FTAG, &odd));
218899653d4eSeschrock 
2189745cd3c5Smaybee 	/* change origin's next snap */
2190745cd3c5Smaybee 	dmu_buf_will_dirty(origin_ds->ds_dbuf, tx);
2191088f3894Sahrens 	oldnext_obj = origin_ds->ds_phys->ds_next_snap_obj;
21923b2aab18SMatthew Ahrens 	snap = list_tail(&ddpa->clone_snaps);
219374e7dc98SMatthew Ahrens 	ASSERT3U(snap->ds->ds_phys->ds_prev_snap_obj, ==, origin_ds->ds_object);
219474e7dc98SMatthew Ahrens 	origin_ds->ds_phys->ds_next_snap_obj = snap->ds->ds_object;
2195745cd3c5Smaybee 
2196088f3894Sahrens 	/* change the origin's next clone */
2197088f3894Sahrens 	if (origin_ds->ds_phys->ds_next_clones_obj) {
21983b2aab18SMatthew Ahrens 		dsl_dataset_remove_from_next_clones(origin_ds,
21993b2aab18SMatthew Ahrens 		    snap->ds->ds_object, tx);
22003b2aab18SMatthew Ahrens 		VERIFY0(zap_add_int(dp->dp_meta_objset,
2201088f3894Sahrens 		    origin_ds->ds_phys->ds_next_clones_obj,
2202088f3894Sahrens 		    oldnext_obj, tx));
2203088f3894Sahrens 	}
2204088f3894Sahrens 
2205745cd3c5Smaybee 	/* change origin */
2206745cd3c5Smaybee 	dmu_buf_will_dirty(dd->dd_dbuf, tx);
2207745cd3c5Smaybee 	ASSERT3U(dd->dd_phys->dd_origin_obj, ==, origin_ds->ds_object);
2208745cd3c5Smaybee 	dd->dd_phys->dd_origin_obj = odd->dd_phys->dd_origin_obj;
22093f9d6ad7SLin Ling 	dd->dd_origin_txg = origin_head->ds_dir->dd_origin_txg;
2210745cd3c5Smaybee 	dmu_buf_will_dirty(odd->dd_dbuf, tx);
2211745cd3c5Smaybee 	odd->dd_phys->dd_origin_obj = origin_ds->ds_object;
22123f9d6ad7SLin Ling 	origin_head->ds_dir->dd_origin_txg =
22133f9d6ad7SLin Ling 	    origin_ds->ds_phys->ds_creation_txg;
2214745cd3c5Smaybee 
2215cde58dbcSMatthew Ahrens 	/* change dd_clone entries */
2216cde58dbcSMatthew Ahrens 	if (spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
22173b2aab18SMatthew Ahrens 		VERIFY0(zap_remove_int(dp->dp_meta_objset,
2218cde58dbcSMatthew Ahrens 		    odd->dd_phys->dd_clones, hds->ds_object, tx));
22193b2aab18SMatthew Ahrens 		VERIFY0(zap_add_int(dp->dp_meta_objset,
22203b2aab18SMatthew Ahrens 		    ddpa->origin_origin->ds_dir->dd_phys->dd_clones,
2221cde58dbcSMatthew Ahrens 		    hds->ds_object, tx));
2222cde58dbcSMatthew Ahrens 
22233b2aab18SMatthew Ahrens 		VERIFY0(zap_remove_int(dp->dp_meta_objset,
22243b2aab18SMatthew Ahrens 		    ddpa->origin_origin->ds_dir->dd_phys->dd_clones,
2225cde58dbcSMatthew Ahrens 		    origin_head->ds_object, tx));
2226cde58dbcSMatthew Ahrens 		if (dd->dd_phys->dd_clones == 0) {
2227cde58dbcSMatthew Ahrens 			dd->dd_phys->dd_clones = zap_create(dp->dp_meta_objset,
2228cde58dbcSMatthew Ahrens 			    DMU_OT_DSL_CLONES, DMU_OT_NONE, 0, tx);
2229cde58dbcSMatthew Ahrens 		}
22303b2aab18SMatthew Ahrens 		VERIFY0(zap_add_int(dp->dp_meta_objset,
2231cde58dbcSMatthew Ahrens 		    dd->dd_phys->dd_clones, origin_head->ds_object, tx));
2232cde58dbcSMatthew Ahrens 	}
2233cde58dbcSMatthew Ahrens 
223499653d4eSeschrock 	/* move snapshots to this dir */
22353b2aab18SMatthew Ahrens 	for (snap = list_head(&ddpa->shared_snaps); snap;
22363b2aab18SMatthew Ahrens 	    snap = list_next(&ddpa->shared_snaps, snap)) {
2237745cd3c5Smaybee 		dsl_dataset_t *ds = snap->ds;
223899653d4eSeschrock 
22393b2aab18SMatthew Ahrens 		/*
22403b2aab18SMatthew Ahrens 		 * Property callbacks are registered to a particular
22413b2aab18SMatthew Ahrens 		 * dsl_dir.  Since ours is changing, evict the objset
22423b2aab18SMatthew Ahrens 		 * so that they will be unregistered from the old dsl_dir.
22433b2aab18SMatthew Ahrens 		 */
2244503ad85cSMatthew Ahrens 		if (ds->ds_objset) {
2245503ad85cSMatthew Ahrens 			dmu_objset_evict(ds->ds_objset);
2246503ad85cSMatthew Ahrens 			ds->ds_objset = NULL;
22473baa08fcSek 		}
22483b2aab18SMatthew Ahrens 
224999653d4eSeschrock 		/* move snap name entry */
22503b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_get_snapname(ds));
22513b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_snap_remove(origin_head,
2252*a2afb611SJerry Jelinek 		    ds->ds_snapname, tx, B_TRUE));
22533b2aab18SMatthew Ahrens 		VERIFY0(zap_add(dp->dp_meta_objset,
225499653d4eSeschrock 		    hds->ds_phys->ds_snapnames_zapobj, ds->ds_snapname,
225599653d4eSeschrock 		    8, 1, &ds->ds_object, tx));
2256*a2afb611SJerry Jelinek 		dsl_fs_ss_count_adjust(hds->ds_dir, 1,
2257*a2afb611SJerry Jelinek 		    DD_FIELD_SNAPSHOT_COUNT, tx);
2258cde58dbcSMatthew Ahrens 
225999653d4eSeschrock 		/* change containing dsl_dir */
226099653d4eSeschrock 		dmu_buf_will_dirty(ds->ds_dbuf, tx);
22613cb34c60Sahrens 		ASSERT3U(ds->ds_phys->ds_dir_obj, ==, odd->dd_object);
226299653d4eSeschrock 		ds->ds_phys->ds_dir_obj = dd->dd_object;
22633cb34c60Sahrens 		ASSERT3P(ds->ds_dir, ==, odd);
22643b2aab18SMatthew Ahrens 		dsl_dir_rele(ds->ds_dir, ds);
22653b2aab18SMatthew Ahrens 		VERIFY0(dsl_dir_hold_obj(dp, dd->dd_object,
226699653d4eSeschrock 		    NULL, ds, &ds->ds_dir));
226799653d4eSeschrock 
2268cde58dbcSMatthew Ahrens 		/* move any clone references */
2269cde58dbcSMatthew Ahrens 		if (ds->ds_phys->ds_next_clones_obj &&
2270cde58dbcSMatthew Ahrens 		    spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
2271cde58dbcSMatthew Ahrens 			zap_cursor_t zc;
2272cde58dbcSMatthew Ahrens 			zap_attribute_t za;
2273cde58dbcSMatthew Ahrens 
22743b2aab18SMatthew Ahrens 			for (zap_cursor_init(&zc, dp->dp_meta_objset,
22753b2aab18SMatthew Ahrens 			    ds->ds_phys->ds_next_clones_obj);
22763b2aab18SMatthew Ahrens 			    zap_cursor_retrieve(&zc, &za) == 0;
22773b2aab18SMatthew Ahrens 			    zap_cursor_advance(&zc)) {
22783b2aab18SMatthew Ahrens 				dsl_dataset_t *cnds;
22793b2aab18SMatthew Ahrens 				uint64_t o;
2280a9799022Sck 
22813b2aab18SMatthew Ahrens 				if (za.za_first_integer == oldnext_obj) {
22823b2aab18SMatthew Ahrens 					/*
22833b2aab18SMatthew Ahrens 					 * We've already moved the
22843b2aab18SMatthew Ahrens 					 * origin's reference.
22853b2aab18SMatthew Ahrens 					 */
22863b2aab18SMatthew Ahrens 					continue;
22873b2aab18SMatthew Ahrens 				}
2288a9799022Sck 
22893b2aab18SMatthew Ahrens 				VERIFY0(dsl_dataset_hold_obj(dp,
22903b2aab18SMatthew Ahrens 				    za.za_first_integer, FTAG, &cnds));
22913b2aab18SMatthew Ahrens 				o = cnds->ds_dir->dd_phys->dd_head_dataset_obj;
2292a9799022Sck 
22933b2aab18SMatthew Ahrens 				VERIFY0(zap_remove_int(dp->dp_meta_objset,
22943b2aab18SMatthew Ahrens 				    odd->dd_phys->dd_clones, o, tx));
22953b2aab18SMatthew Ahrens 				VERIFY0(zap_add_int(dp->dp_meta_objset,
22963b2aab18SMatthew Ahrens 				    dd->dd_phys->dd_clones, o, tx));
22973b2aab18SMatthew Ahrens 				dsl_dataset_rele(cnds, FTAG);
22983b2aab18SMatthew Ahrens 			}
22993b2aab18SMatthew Ahrens 			zap_cursor_fini(&zc);
23003b2aab18SMatthew Ahrens 		}
23019082849eSck 
23023b2aab18SMatthew Ahrens 		ASSERT(!dsl_prop_hascb(ds));
2303a9799022Sck 	}
2304a9799022Sck 
2305a9799022Sck 	/*
23063b2aab18SMatthew Ahrens 	 * Change space accounting.
23073b2aab18SMatthew Ahrens 	 * Note, pa->*usedsnap and dd_used_breakdown[SNAP] will either
23083b2aab18SMatthew Ahrens 	 * both be valid, or both be 0 (resulting in delta == 0).  This
23093b2aab18SMatthew Ahrens 	 * is true for each of {clone,origin} independently.
2310a9799022Sck 	 */
2311a9799022Sck 
23123b2aab18SMatthew Ahrens 	delta = ddpa->cloneusedsnap -
23133b2aab18SMatthew Ahrens 	    dd->dd_phys->dd_used_breakdown[DD_USED_SNAP];
23143b2aab18SMatthew Ahrens 	ASSERT3S(delta, >=, 0);
23153b2aab18SMatthew Ahrens 	ASSERT3U(ddpa->used, >=, delta);
23163b2aab18SMatthew Ahrens 	dsl_dir_diduse_space(dd, DD_USED_SNAP, delta, 0, 0, tx);
23173b2aab18SMatthew Ahrens 	dsl_dir_diduse_space(dd, DD_USED_HEAD,
23183b2aab18SMatthew Ahrens 	    ddpa->used - delta, ddpa->comp, ddpa->uncomp, tx);
23193b2aab18SMatthew Ahrens 
23203b2aab18SMatthew Ahrens 	delta = ddpa->originusedsnap -
23213b2aab18SMatthew Ahrens 	    odd->dd_phys->dd_used_breakdown[DD_USED_SNAP];
23223b2aab18SMatthew Ahrens 	ASSERT3S(delta, <=, 0);
23233b2aab18SMatthew Ahrens 	ASSERT3U(ddpa->used, >=, -delta);
23243b2aab18SMatthew Ahrens 	dsl_dir_diduse_space(odd, DD_USED_SNAP, delta, 0, 0, tx);
23253b2aab18SMatthew Ahrens 	dsl_dir_diduse_space(odd, DD_USED_HEAD,
23263b2aab18SMatthew Ahrens 	    -ddpa->used - delta, -ddpa->comp, -ddpa->uncomp, tx);
23273b2aab18SMatthew Ahrens 
23283b2aab18SMatthew Ahrens 	origin_ds->ds_phys->ds_unique_bytes = ddpa->unique;
23293b2aab18SMatthew Ahrens 
23303b2aab18SMatthew Ahrens 	/* log history record */
23313b2aab18SMatthew Ahrens 	spa_history_log_internal_ds(hds, "promote", tx, "");
23323b2aab18SMatthew Ahrens 
23333b2aab18SMatthew Ahrens 	dsl_dir_rele(odd, FTAG);
23343b2aab18SMatthew Ahrens 	promote_rele(ddpa, FTAG);
2335a9799022Sck }
2336a9799022Sck 
23373b2aab18SMatthew Ahrens /*
23383b2aab18SMatthew Ahrens  * Make a list of dsl_dataset_t's for the snapshots between first_obj
23393b2aab18SMatthew Ahrens  * (exclusive) and last_obj (inclusive).  The list will be in reverse
23403b2aab18SMatthew Ahrens  * order (last_obj will be the list_head()).  If first_obj == 0, do all
23413b2aab18SMatthew Ahrens  * snapshots back to this dataset's origin.
23423b2aab18SMatthew Ahrens  */
2343a9799022Sck static int
23443b2aab18SMatthew Ahrens snaplist_make(dsl_pool_t *dp,
23453b2aab18SMatthew Ahrens     uint64_t first_obj, uint64_t last_obj, list_t *l, void *tag)
2346a9799022Sck {
23473b2aab18SMatthew Ahrens 	uint64_t obj = last_obj;
2348a9799022Sck 
23493b2aab18SMatthew Ahrens 	list_create(l, sizeof (struct promotenode),
23503b2aab18SMatthew Ahrens 	    offsetof(struct promotenode, link));
2351a9799022Sck 
23523b2aab18SMatthew Ahrens 	while (obj != first_obj) {
23533b2aab18SMatthew Ahrens 		dsl_dataset_t *ds;
23543b2aab18SMatthew Ahrens 		struct promotenode *snap;
23553b2aab18SMatthew Ahrens 		int err;
235692241e0bSTom Erickson 
23573b2aab18SMatthew Ahrens 		err = dsl_dataset_hold_obj(dp, obj, tag, &ds);
23583b2aab18SMatthew Ahrens 		ASSERT(err != ENOENT);
23593b2aab18SMatthew Ahrens 		if (err != 0)
23603b2aab18SMatthew Ahrens 			return (err);
2361a9799022Sck 
23623b2aab18SMatthew Ahrens 		if (first_obj == 0)
23633b2aab18SMatthew Ahrens 			first_obj = ds->ds_dir->dd_phys->dd_origin_obj;
23643b2aab18SMatthew Ahrens 
23653b2aab18SMatthew Ahrens 		snap = kmem_alloc(sizeof (*snap), KM_SLEEP);
23663b2aab18SMatthew Ahrens 		snap->ds = ds;
23673b2aab18SMatthew Ahrens 		list_insert_tail(l, snap);
23683b2aab18SMatthew Ahrens 		obj = ds->ds_phys->ds_prev_snap_obj;
23693b2aab18SMatthew Ahrens 	}
2370a9799022Sck 
2371a9799022Sck 	return (0);
2372a9799022Sck }
2373a9799022Sck 
23743b2aab18SMatthew Ahrens static int
23753b2aab18SMatthew Ahrens snaplist_space(list_t *l, uint64_t mintxg, uint64_t *spacep)
2376a9799022Sck {
23773b2aab18SMatthew Ahrens 	struct promotenode *snap;
2378a9799022Sck 
23793b2aab18SMatthew Ahrens 	*spacep = 0;
23803b2aab18SMatthew Ahrens 	for (snap = list_head(l); snap; snap = list_next(l, snap)) {
23813b2aab18SMatthew Ahrens 		uint64_t used, comp, uncomp;
23823b2aab18SMatthew Ahrens 		dsl_deadlist_space_range(&snap->ds->ds_deadlist,
23833b2aab18SMatthew Ahrens 		    mintxg, UINT64_MAX, &used, &comp, &uncomp);
23843b2aab18SMatthew Ahrens 		*spacep += used;
238592241e0bSTom Erickson 	}
23863b2aab18SMatthew Ahrens 	return (0);
2387a9799022Sck }
2388a9799022Sck 
23893b2aab18SMatthew Ahrens static void
23903b2aab18SMatthew Ahrens snaplist_destroy(list_t *l, void *tag)
2391a9799022Sck {
23923b2aab18SMatthew Ahrens 	struct promotenode *snap;
239392241e0bSTom Erickson 
23943b2aab18SMatthew Ahrens 	if (l == NULL || !list_link_active(&l->list_head))
23953b2aab18SMatthew Ahrens 		return;
2396a9799022Sck 
23973b2aab18SMatthew Ahrens 	while ((snap = list_tail(l)) != NULL) {
23983b2aab18SMatthew Ahrens 		list_remove(l, snap);
23993b2aab18SMatthew Ahrens 		dsl_dataset_rele(snap->ds, tag);
24003b2aab18SMatthew Ahrens 		kmem_free(snap, sizeof (*snap));
24013b2aab18SMatthew Ahrens 	}
24023b2aab18SMatthew Ahrens 	list_destroy(l);
2403a9799022Sck }
2404a9799022Sck 
2405a9799022Sck static int
24063b2aab18SMatthew Ahrens promote_hold(dsl_dataset_promote_arg_t *ddpa, dsl_pool_t *dp, void *tag)
2407a9799022Sck {
24083b2aab18SMatthew Ahrens 	int error;
24093b2aab18SMatthew Ahrens 	dsl_dir_t *dd;
24103b2aab18SMatthew Ahrens 	struct promotenode *snap;
2411a9799022Sck 
24123b2aab18SMatthew Ahrens 	error = dsl_dataset_hold(dp, ddpa->ddpa_clonename, tag,
24133b2aab18SMatthew Ahrens 	    &ddpa->ddpa_clone);
24143b2aab18SMatthew Ahrens 	if (error != 0)
24153b2aab18SMatthew Ahrens 		return (error);
24163b2aab18SMatthew Ahrens 	dd = ddpa->ddpa_clone->ds_dir;
2417a9799022Sck 
24183b2aab18SMatthew Ahrens 	if (dsl_dataset_is_snapshot(ddpa->ddpa_clone) ||
24193b2aab18SMatthew Ahrens 	    !dsl_dir_is_clone(dd)) {
24203b2aab18SMatthew Ahrens 		dsl_dataset_rele(ddpa->ddpa_clone, tag);
2421be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
24223b2aab18SMatthew Ahrens 	}
2423a9799022Sck 
24243b2aab18SMatthew Ahrens 	error = snaplist_make(dp, 0, dd->dd_phys->dd_origin_obj,
24253b2aab18SMatthew Ahrens 	    &ddpa->shared_snaps, tag);
24263b2aab18SMatthew Ahrens 	if (error != 0)
24273b2aab18SMatthew Ahrens 		goto out;
2428a9799022Sck 
24293b2aab18SMatthew Ahrens 	error = snaplist_make(dp, 0, ddpa->ddpa_clone->ds_object,
24303b2aab18SMatthew Ahrens 	    &ddpa->clone_snaps, tag);
24313b2aab18SMatthew Ahrens 	if (error != 0)
24323b2aab18SMatthew Ahrens 		goto out;
2433a9799022Sck 
24343b2aab18SMatthew Ahrens 	snap = list_head(&ddpa->shared_snaps);
24353b2aab18SMatthew Ahrens 	ASSERT3U(snap->ds->ds_object, ==, dd->dd_phys->dd_origin_obj);
24363b2aab18SMatthew Ahrens 	error = snaplist_make(dp, dd->dd_phys->dd_origin_obj,
24373b2aab18SMatthew Ahrens 	    snap->ds->ds_dir->dd_phys->dd_head_dataset_obj,
24383b2aab18SMatthew Ahrens 	    &ddpa->origin_snaps, tag);
24393b2aab18SMatthew Ahrens 	if (error != 0)
24403b2aab18SMatthew Ahrens 		goto out;
2441379c004dSEric Schrock 
24423b2aab18SMatthew Ahrens 	if (snap->ds->ds_dir->dd_phys->dd_origin_obj != 0) {
24433b2aab18SMatthew Ahrens 		error = dsl_dataset_hold_obj(dp,
24443b2aab18SMatthew Ahrens 		    snap->ds->ds_dir->dd_phys->dd_origin_obj,
24453b2aab18SMatthew Ahrens 		    tag, &ddpa->origin_origin);
24463b2aab18SMatthew Ahrens 		if (error != 0)
24473b2aab18SMatthew Ahrens 			goto out;
2448379c004dSEric Schrock 	}
24493b2aab18SMatthew Ahrens out:
24503b2aab18SMatthew Ahrens 	if (error != 0)
24513b2aab18SMatthew Ahrens 		promote_rele(ddpa, tag);
24523b2aab18SMatthew Ahrens 	return (error);
2453a9799022Sck }
2454a9799022Sck 
2455a9799022Sck static void
24563b2aab18SMatthew Ahrens promote_rele(dsl_dataset_promote_arg_t *ddpa, void *tag)
2457a9799022Sck {
24583b2aab18SMatthew Ahrens 	snaplist_destroy(&ddpa->shared_snaps, tag);
24593b2aab18SMatthew Ahrens 	snaplist_destroy(&ddpa->clone_snaps, tag);
24603b2aab18SMatthew Ahrens 	snaplist_destroy(&ddpa->origin_snaps, tag);
24613b2aab18SMatthew Ahrens 	if (ddpa->origin_origin != NULL)
24623b2aab18SMatthew Ahrens 		dsl_dataset_rele(ddpa->origin_origin, tag);
24633b2aab18SMatthew Ahrens 	dsl_dataset_rele(ddpa->ddpa_clone, tag);
24643b2aab18SMatthew Ahrens }
246502c8f3f0SMatthew Ahrens 
24663b2aab18SMatthew Ahrens /*
24673b2aab18SMatthew Ahrens  * Promote a clone.
24683b2aab18SMatthew Ahrens  *
24693b2aab18SMatthew Ahrens  * If it fails due to a conflicting snapshot name, "conflsnap" will be filled
24703b2aab18SMatthew Ahrens  * in with the name.  (It must be at least MAXNAMELEN bytes long.)
24713b2aab18SMatthew Ahrens  */
24723b2aab18SMatthew Ahrens int
24733b2aab18SMatthew Ahrens dsl_dataset_promote(const char *name, char *conflsnap)
24743b2aab18SMatthew Ahrens {
24753b2aab18SMatthew Ahrens 	dsl_dataset_promote_arg_t ddpa = { 0 };
24763b2aab18SMatthew Ahrens 	uint64_t numsnaps;
24773b2aab18SMatthew Ahrens 	int error;
24783b2aab18SMatthew Ahrens 	objset_t *os;
247992241e0bSTom Erickson 
24803b2aab18SMatthew Ahrens 	/*
24813b2aab18SMatthew Ahrens 	 * We will modify space proportional to the number of
24823b2aab18SMatthew Ahrens 	 * snapshots.  Compute numsnaps.
24833b2aab18SMatthew Ahrens 	 */
24843b2aab18SMatthew Ahrens 	error = dmu_objset_hold(name, FTAG, &os);
24853b2aab18SMatthew Ahrens 	if (error != 0)
24863b2aab18SMatthew Ahrens 		return (error);
24873b2aab18SMatthew Ahrens 	error = zap_count(dmu_objset_pool(os)->dp_meta_objset,
24883b2aab18SMatthew Ahrens 	    dmu_objset_ds(os)->ds_phys->ds_snapnames_zapobj, &numsnaps);
24893b2aab18SMatthew Ahrens 	dmu_objset_rele(os, FTAG);
24903b2aab18SMatthew Ahrens 	if (error != 0)
24913b2aab18SMatthew Ahrens 		return (error);
249202c8f3f0SMatthew Ahrens 
24933b2aab18SMatthew Ahrens 	ddpa.ddpa_clonename = name;
24943b2aab18SMatthew Ahrens 	ddpa.err_ds = conflsnap;
2495*a2afb611SJerry Jelinek 	ddpa.cr = CRED();
249602c8f3f0SMatthew Ahrens 
24973b2aab18SMatthew Ahrens 	return (dsl_sync_task(name, dsl_dataset_promote_check,
24983b2aab18SMatthew Ahrens 	    dsl_dataset_promote_sync, &ddpa, 2 + numsnaps));
2499a9799022Sck }
2500a9799022Sck 
2501a9799022Sck int
25023b2aab18SMatthew Ahrens dsl_dataset_clone_swap_check_impl(dsl_dataset_t *clone,
250391948b51SKeith M Wesolowski     dsl_dataset_t *origin_head, boolean_t force, void *owner, dmu_tx_t *tx)
2504a9799022Sck {
25053b2aab18SMatthew Ahrens 	int64_t unused_refres_delta;
2506a9799022Sck 
25073b2aab18SMatthew Ahrens 	/* they should both be heads */
25083b2aab18SMatthew Ahrens 	if (dsl_dataset_is_snapshot(clone) ||
25093b2aab18SMatthew Ahrens 	    dsl_dataset_is_snapshot(origin_head))
2510be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
251192241e0bSTom Erickson 
251234f2f8cfSMatthew Ahrens 	/* if we are not forcing, the branch point should be just before them */
251334f2f8cfSMatthew Ahrens 	if (!force && clone->ds_prev != origin_head->ds_prev)
2514be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
2515a9799022Sck 
25163b2aab18SMatthew Ahrens 	/* clone should be the clone (unless they are unrelated) */
25173b2aab18SMatthew Ahrens 	if (clone->ds_prev != NULL &&
25183b2aab18SMatthew Ahrens 	    clone->ds_prev != clone->ds_dir->dd_pool->dp_origin_snap &&
251934f2f8cfSMatthew Ahrens 	    origin_head->ds_dir != clone->ds_prev->ds_dir)
2520be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
252192241e0bSTom Erickson 
25223b2aab18SMatthew Ahrens 	/* the clone should be a child of the origin */
25233b2aab18SMatthew Ahrens 	if (clone->ds_dir->dd_parent != origin_head->ds_dir)
2524be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
2525842727c2SChris Kirby 
25263b2aab18SMatthew Ahrens 	/* origin_head shouldn't be modified unless 'force' */
252734f2f8cfSMatthew Ahrens 	if (!force &&
252834f2f8cfSMatthew Ahrens 	    dsl_dataset_modified_since_snap(origin_head, origin_head->ds_prev))
2529be6fd75aSMatthew Ahrens 		return (SET_ERROR(ETXTBSY));
2530c99e4bdcSChris Kirby 
25313b2aab18SMatthew Ahrens 	/* origin_head should have no long holds (e.g. is not mounted) */
253291948b51SKeith M Wesolowski 	if (dsl_dataset_handoff_check(origin_head, owner, tx))
2533be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
25343b2aab18SMatthew Ahrens 
25353b2aab18SMatthew Ahrens 	/* check amount of any unconsumed refreservation */
25363b2aab18SMatthew Ahrens 	unused_refres_delta =
25373b2aab18SMatthew Ahrens 	    (int64_t)MIN(origin_head->ds_reserved,
25383b2aab18SMatthew Ahrens 	    origin_head->ds_phys->ds_unique_bytes) -
25393b2aab18SMatthew Ahrens 	    (int64_t)MIN(origin_head->ds_reserved,
25403b2aab18SMatthew Ahrens 	    clone->ds_phys->ds_unique_bytes);
25413b2aab18SMatthew Ahrens 
25423b2aab18SMatthew Ahrens 	if (unused_refres_delta > 0 &&
25433b2aab18SMatthew Ahrens 	    unused_refres_delta >
25443b2aab18SMatthew Ahrens 	    dsl_dir_space_available(origin_head->ds_dir, NULL, 0, TRUE))
2545be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOSPC));
25463b2aab18SMatthew Ahrens 
25473b2aab18SMatthew Ahrens 	/* clone can't be over the head's refquota */
25483b2aab18SMatthew Ahrens 	if (origin_head->ds_quota != 0 &&
25493b2aab18SMatthew Ahrens 	    clone->ds_phys->ds_referenced_bytes > origin_head->ds_quota)
2550be6fd75aSMatthew Ahrens 		return (SET_ERROR(EDQUOT));
2551c99e4bdcSChris Kirby 
25523b2aab18SMatthew Ahrens 	return (0);
2553c99e4bdcSChris Kirby }
2554c99e4bdcSChris Kirby 
2555a7f53a56SChris Kirby void
25563b2aab18SMatthew Ahrens dsl_dataset_clone_swap_sync_impl(dsl_dataset_t *clone,
25573b2aab18SMatthew Ahrens     dsl_dataset_t *origin_head, dmu_tx_t *tx)
2558a7f53a56SChris Kirby {
25593b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
25603b2aab18SMatthew Ahrens 	int64_t unused_refres_delta;
2561a7f53a56SChris Kirby 
25623b2aab18SMatthew Ahrens 	ASSERT(clone->ds_reserved == 0);
25633b2aab18SMatthew Ahrens 	ASSERT(origin_head->ds_quota == 0 ||
25643b2aab18SMatthew Ahrens 	    clone->ds_phys->ds_unique_bytes <= origin_head->ds_quota);
256534f2f8cfSMatthew Ahrens 	ASSERT3P(clone->ds_prev, ==, origin_head->ds_prev);
2566842727c2SChris Kirby 
25673b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(clone->ds_dbuf, tx);
25683b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(origin_head->ds_dbuf, tx);
2569842727c2SChris Kirby 
25703b2aab18SMatthew Ahrens 	if (clone->ds_objset != NULL) {
25713b2aab18SMatthew Ahrens 		dmu_objset_evict(clone->ds_objset);
25723b2aab18SMatthew Ahrens 		clone->ds_objset = NULL;
25733b2aab18SMatthew Ahrens 	}
2574842727c2SChris Kirby 
25753b2aab18SMatthew Ahrens 	if (origin_head->ds_objset != NULL) {
25763b2aab18SMatthew Ahrens 		dmu_objset_evict(origin_head->ds_objset);
25773b2aab18SMatthew Ahrens 		origin_head->ds_objset = NULL;
2578842727c2SChris Kirby 	}
2579842727c2SChris Kirby 
25803b2aab18SMatthew Ahrens 	unused_refres_delta =
25813b2aab18SMatthew Ahrens 	    (int64_t)MIN(origin_head->ds_reserved,
25823b2aab18SMatthew Ahrens 	    origin_head->ds_phys->ds_unique_bytes) -
25833b2aab18SMatthew Ahrens 	    (int64_t)MIN(origin_head->ds_reserved,
25843b2aab18SMatthew Ahrens 	    clone->ds_phys->ds_unique_bytes);
25853b2aab18SMatthew Ahrens 
25863b2aab18SMatthew Ahrens 	/*
25873b2aab18SMatthew Ahrens 	 * Reset origin's unique bytes, if it exists.
25883b2aab18SMatthew Ahrens 	 */
25893b2aab18SMatthew Ahrens 	if (clone->ds_prev) {
25903b2aab18SMatthew Ahrens 		dsl_dataset_t *origin = clone->ds_prev;
25913b2aab18SMatthew Ahrens 		uint64_t comp, uncomp;
25923b2aab18SMatthew Ahrens 
25933b2aab18SMatthew Ahrens 		dmu_buf_will_dirty(origin->ds_dbuf, tx);
25943b2aab18SMatthew Ahrens 		dsl_deadlist_space_range(&clone->ds_deadlist,
25953b2aab18SMatthew Ahrens 		    origin->ds_phys->ds_prev_snap_txg, UINT64_MAX,
25963b2aab18SMatthew Ahrens 		    &origin->ds_phys->ds_unique_bytes, &comp, &uncomp);
25973b2aab18SMatthew Ahrens 	}
25983b2aab18SMatthew Ahrens 
25993b2aab18SMatthew Ahrens 	/* swap blkptrs */
26003b2aab18SMatthew Ahrens 	{
26013b2aab18SMatthew Ahrens 		blkptr_t tmp;
26023b2aab18SMatthew Ahrens 		tmp = origin_head->ds_phys->ds_bp;
26033b2aab18SMatthew Ahrens 		origin_head->ds_phys->ds_bp = clone->ds_phys->ds_bp;
26043b2aab18SMatthew Ahrens 		clone->ds_phys->ds_bp = tmp;
26053b2aab18SMatthew Ahrens 	}
26063b2aab18SMatthew Ahrens 
26073b2aab18SMatthew Ahrens 	/* set dd_*_bytes */
26083b2aab18SMatthew Ahrens 	{
26093b2aab18SMatthew Ahrens 		int64_t dused, dcomp, duncomp;
26103b2aab18SMatthew Ahrens 		uint64_t cdl_used, cdl_comp, cdl_uncomp;
26113b2aab18SMatthew Ahrens 		uint64_t odl_used, odl_comp, odl_uncomp;
26123b2aab18SMatthew Ahrens 
26133b2aab18SMatthew Ahrens 		ASSERT3U(clone->ds_dir->dd_phys->
26143b2aab18SMatthew Ahrens 		    dd_used_breakdown[DD_USED_SNAP], ==, 0);
26153b2aab18SMatthew Ahrens 
26163b2aab18SMatthew Ahrens 		dsl_deadlist_space(&clone->ds_deadlist,
26173b2aab18SMatthew Ahrens 		    &cdl_used, &cdl_comp, &cdl_uncomp);
26183b2aab18SMatthew Ahrens 		dsl_deadlist_space(&origin_head->ds_deadlist,
26193b2aab18SMatthew Ahrens 		    &odl_used, &odl_comp, &odl_uncomp);
262015508ac0SChris Kirby 
26213b2aab18SMatthew Ahrens 		dused = clone->ds_phys->ds_referenced_bytes + cdl_used -
26223b2aab18SMatthew Ahrens 		    (origin_head->ds_phys->ds_referenced_bytes + odl_used);
26233b2aab18SMatthew Ahrens 		dcomp = clone->ds_phys->ds_compressed_bytes + cdl_comp -
26243b2aab18SMatthew Ahrens 		    (origin_head->ds_phys->ds_compressed_bytes + odl_comp);
26253b2aab18SMatthew Ahrens 		duncomp = clone->ds_phys->ds_uncompressed_bytes +
26263b2aab18SMatthew Ahrens 		    cdl_uncomp -
26273b2aab18SMatthew Ahrens 		    (origin_head->ds_phys->ds_uncompressed_bytes + odl_uncomp);
2628842727c2SChris Kirby 
26293b2aab18SMatthew Ahrens 		dsl_dir_diduse_space(origin_head->ds_dir, DD_USED_HEAD,
26303b2aab18SMatthew Ahrens 		    dused, dcomp, duncomp, tx);
26313b2aab18SMatthew Ahrens 		dsl_dir_diduse_space(clone->ds_dir, DD_USED_HEAD,
26323b2aab18SMatthew Ahrens 		    -dused, -dcomp, -duncomp, tx);
2633842727c2SChris Kirby 
2634842727c2SChris Kirby 		/*
26353b2aab18SMatthew Ahrens 		 * The difference in the space used by snapshots is the
26363b2aab18SMatthew Ahrens 		 * difference in snapshot space due to the head's
26373b2aab18SMatthew Ahrens 		 * deadlist (since that's the only thing that's
26383b2aab18SMatthew Ahrens 		 * changing that affects the snapused).
2639842727c2SChris Kirby 		 */
26403b2aab18SMatthew Ahrens 		dsl_deadlist_space_range(&clone->ds_deadlist,
26413b2aab18SMatthew Ahrens 		    origin_head->ds_dir->dd_origin_txg, UINT64_MAX,
26423b2aab18SMatthew Ahrens 		    &cdl_used, &cdl_comp, &cdl_uncomp);
26433b2aab18SMatthew Ahrens 		dsl_deadlist_space_range(&origin_head->ds_deadlist,
26443b2aab18SMatthew Ahrens 		    origin_head->ds_dir->dd_origin_txg, UINT64_MAX,
26453b2aab18SMatthew Ahrens 		    &odl_used, &odl_comp, &odl_uncomp);
26463b2aab18SMatthew Ahrens 		dsl_dir_transfer_space(origin_head->ds_dir, cdl_used - odl_used,
26473b2aab18SMatthew Ahrens 		    DD_USED_HEAD, DD_USED_SNAP, tx);
2648842727c2SChris Kirby 	}
2649842727c2SChris Kirby 
26503b2aab18SMatthew Ahrens 	/* swap ds_*_bytes */
26513b2aab18SMatthew Ahrens 	SWITCH64(origin_head->ds_phys->ds_referenced_bytes,
26523b2aab18SMatthew Ahrens 	    clone->ds_phys->ds_referenced_bytes);
26533b2aab18SMatthew Ahrens 	SWITCH64(origin_head->ds_phys->ds_compressed_bytes,
26543b2aab18SMatthew Ahrens 	    clone->ds_phys->ds_compressed_bytes);
26553b2aab18SMatthew Ahrens 	SWITCH64(origin_head->ds_phys->ds_uncompressed_bytes,
26563b2aab18SMatthew Ahrens 	    clone->ds_phys->ds_uncompressed_bytes);
26573b2aab18SMatthew Ahrens 	SWITCH64(origin_head->ds_phys->ds_unique_bytes,
26583b2aab18SMatthew Ahrens 	    clone->ds_phys->ds_unique_bytes);
2659842727c2SChris Kirby 
26603b2aab18SMatthew Ahrens 	/* apply any parent delta for change in unconsumed refreservation */
26613b2aab18SMatthew Ahrens 	dsl_dir_diduse_space(origin_head->ds_dir, DD_USED_REFRSRV,
26623b2aab18SMatthew Ahrens 	    unused_refres_delta, 0, 0, tx);
2663ca45db41SChris Kirby 
26643b2aab18SMatthew Ahrens 	/*
26653b2aab18SMatthew Ahrens 	 * Swap deadlists.
26663b2aab18SMatthew Ahrens 	 */
26673b2aab18SMatthew Ahrens 	dsl_deadlist_close(&clone->ds_deadlist);
26683b2aab18SMatthew Ahrens 	dsl_deadlist_close(&origin_head->ds_deadlist);
26693b2aab18SMatthew Ahrens 	SWITCH64(origin_head->ds_phys->ds_deadlist_obj,
26703b2aab18SMatthew Ahrens 	    clone->ds_phys->ds_deadlist_obj);
26713b2aab18SMatthew Ahrens 	dsl_deadlist_open(&clone->ds_deadlist, dp->dp_meta_objset,
26723b2aab18SMatthew Ahrens 	    clone->ds_phys->ds_deadlist_obj);
26733b2aab18SMatthew Ahrens 	dsl_deadlist_open(&origin_head->ds_deadlist, dp->dp_meta_objset,
26743b2aab18SMatthew Ahrens 	    origin_head->ds_phys->ds_deadlist_obj);
2675842727c2SChris Kirby 
26763b2aab18SMatthew Ahrens 	dsl_scan_ds_clone_swapped(origin_head, clone, tx);
2677842727c2SChris Kirby 
26783b2aab18SMatthew Ahrens 	spa_history_log_internal_ds(clone, "clone swap", tx,
26793b2aab18SMatthew Ahrens 	    "parent=%s", origin_head->ds_dir->dd_myname);
2680842727c2SChris Kirby }
2681842727c2SChris Kirby 
26823b2aab18SMatthew Ahrens /*
26833b2aab18SMatthew Ahrens  * Given a pool name and a dataset object number in that pool,
26843b2aab18SMatthew Ahrens  * return the name of that dataset.
26853b2aab18SMatthew Ahrens  */
2686a7f53a56SChris Kirby int
26873b2aab18SMatthew Ahrens dsl_dsobj_to_dsname(char *pname, uint64_t obj, char *buf)
2688a7f53a56SChris Kirby {
26893b2aab18SMatthew Ahrens 	dsl_pool_t *dp;
26903b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
2691a7f53a56SChris Kirby 	int error;
2692a7f53a56SChris Kirby 
26933b2aab18SMatthew Ahrens 	error = dsl_pool_hold(pname, FTAG, &dp);
26943b2aab18SMatthew Ahrens 	if (error != 0)
26953b2aab18SMatthew Ahrens 		return (error);
26963b2aab18SMatthew Ahrens 
26973b2aab18SMatthew Ahrens 	error = dsl_dataset_hold_obj(dp, obj, FTAG, &ds);
26983b2aab18SMatthew Ahrens 	if (error == 0) {
26993b2aab18SMatthew Ahrens 		dsl_dataset_name(ds, buf);
27003b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
27013b2aab18SMatthew Ahrens 	}
27023b2aab18SMatthew Ahrens 	dsl_pool_rele(dp, FTAG);
2703a7f53a56SChris Kirby 
2704a7f53a56SChris Kirby 	return (error);
2705a7f53a56SChris Kirby }
2706a7f53a56SChris Kirby 
2707842727c2SChris Kirby int
27083b2aab18SMatthew Ahrens dsl_dataset_check_quota(dsl_dataset_t *ds, boolean_t check_quota,
27093b2aab18SMatthew Ahrens     uint64_t asize, uint64_t inflight, uint64_t *used, uint64_t *ref_rsrv)
2710842727c2SChris Kirby {
27113b2aab18SMatthew Ahrens 	int error = 0;
2712842727c2SChris Kirby 
27133b2aab18SMatthew Ahrens 	ASSERT3S(asize, >, 0);
2714842727c2SChris Kirby 
27153b2aab18SMatthew Ahrens 	/*
27163b2aab18SMatthew Ahrens 	 * *ref_rsrv is the portion of asize that will come from any
27173b2aab18SMatthew Ahrens 	 * unconsumed refreservation space.
27183b2aab18SMatthew Ahrens 	 */
27193b2aab18SMatthew Ahrens 	*ref_rsrv = 0;
2720842727c2SChris Kirby 
27213b2aab18SMatthew Ahrens 	mutex_enter(&ds->ds_lock);
27223b2aab18SMatthew Ahrens 	/*
27233b2aab18SMatthew Ahrens 	 * Make a space adjustment for reserved bytes.
27243b2aab18SMatthew Ahrens 	 */
27253b2aab18SMatthew Ahrens 	if (ds->ds_reserved > ds->ds_phys->ds_unique_bytes) {
27263b2aab18SMatthew Ahrens 		ASSERT3U(*used, >=,
27273b2aab18SMatthew Ahrens 		    ds->ds_reserved - ds->ds_phys->ds_unique_bytes);
27283b2aab18SMatthew Ahrens 		*used -= (ds->ds_reserved - ds->ds_phys->ds_unique_bytes);
27293b2aab18SMatthew Ahrens 		*ref_rsrv =
27303b2aab18SMatthew Ahrens 		    asize - MIN(asize, parent_delta(ds, asize + inflight));
2731842727c2SChris Kirby 	}
2732842727c2SChris Kirby 
27333b2aab18SMatthew Ahrens 	if (!check_quota || ds->ds_quota == 0) {
27343b2aab18SMatthew Ahrens 		mutex_exit(&ds->ds_lock);
27353b2aab18SMatthew Ahrens 		return (0);
2736842727c2SChris Kirby 	}
27373b2aab18SMatthew Ahrens 	/*
27383b2aab18SMatthew Ahrens 	 * If they are requesting more space, and our current estimate
27393b2aab18SMatthew Ahrens 	 * is over quota, they get to try again unless the actual
27403b2aab18SMatthew Ahrens 	 * on-disk is over quota and there are no pending changes (which
27413b2aab18SMatthew Ahrens 	 * may free up space for us).
27423b2aab18SMatthew Ahrens 	 */
27433b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_referenced_bytes + inflight >= ds->ds_quota) {
27443b2aab18SMatthew Ahrens 		if (inflight > 0 ||
27453b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_referenced_bytes < ds->ds_quota)
2746be6fd75aSMatthew Ahrens 			error = SET_ERROR(ERESTART);
27473b2aab18SMatthew Ahrens 		else
2748be6fd75aSMatthew Ahrens 			error = SET_ERROR(EDQUOT);
2749842727c2SChris Kirby 	}
27503b2aab18SMatthew Ahrens 	mutex_exit(&ds->ds_lock);
2751842727c2SChris Kirby 
2752842727c2SChris Kirby 	return (error);
2753842727c2SChris Kirby }
2754842727c2SChris Kirby 
27553b2aab18SMatthew Ahrens typedef struct dsl_dataset_set_qr_arg {
27563b2aab18SMatthew Ahrens 	const char *ddsqra_name;
27573b2aab18SMatthew Ahrens 	zprop_source_t ddsqra_source;
27583b2aab18SMatthew Ahrens 	uint64_t ddsqra_value;
27593b2aab18SMatthew Ahrens } dsl_dataset_set_qr_arg_t;
2760842727c2SChris Kirby 
27613b2aab18SMatthew Ahrens 
27623b2aab18SMatthew Ahrens /* ARGSUSED */
2763842727c2SChris Kirby static int
27643b2aab18SMatthew Ahrens dsl_dataset_set_refquota_check(void *arg, dmu_tx_t *tx)
2765842727c2SChris Kirby {
27663b2aab18SMatthew Ahrens 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
27673b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
27683b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
2769842727c2SChris Kirby 	int error;
27703b2aab18SMatthew Ahrens 	uint64_t newval;
2771842727c2SChris Kirby 
27723b2aab18SMatthew Ahrens 	if (spa_version(dp->dp_spa) < SPA_VERSION_REFQUOTA)
2773be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOTSUP));
2774842727c2SChris Kirby 
27753b2aab18SMatthew Ahrens 	error = dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds);
27763b2aab18SMatthew Ahrens 	if (error != 0)
27773b2aab18SMatthew Ahrens 		return (error);
27783b2aab18SMatthew Ahrens 
27793b2aab18SMatthew Ahrens 	if (dsl_dataset_is_snapshot(ds)) {
27803b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
2781be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
2782842727c2SChris Kirby 	}
2783842727c2SChris Kirby 
27843b2aab18SMatthew Ahrens 	error = dsl_prop_predict(ds->ds_dir,
27853b2aab18SMatthew Ahrens 	    zfs_prop_to_name(ZFS_PROP_REFQUOTA),
27863b2aab18SMatthew Ahrens 	    ddsqra->ddsqra_source, ddsqra->ddsqra_value, &newval);
27873b2aab18SMatthew Ahrens 	if (error != 0) {
27883b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
2789842727c2SChris Kirby 		return (error);
2790842727c2SChris Kirby 	}
2791842727c2SChris Kirby 
27923b2aab18SMatthew Ahrens 	if (newval == 0) {
27933b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
27943b2aab18SMatthew Ahrens 		return (0);
27953b2aab18SMatthew Ahrens 	}
2796842727c2SChris Kirby 
27973b2aab18SMatthew Ahrens 	if (newval < ds->ds_phys->ds_referenced_bytes ||
27983b2aab18SMatthew Ahrens 	    newval < ds->ds_reserved) {
27993b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
2800be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOSPC));
28013b2aab18SMatthew Ahrens 	}
28023b2aab18SMatthew Ahrens 
28033b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
2804842727c2SChris Kirby 	return (0);
2805842727c2SChris Kirby }
2806842727c2SChris Kirby 
28073b2aab18SMatthew Ahrens static void
28083b2aab18SMatthew Ahrens dsl_dataset_set_refquota_sync(void *arg, dmu_tx_t *tx)
2809842727c2SChris Kirby {
28103b2aab18SMatthew Ahrens 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
28113b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
28123b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
28133b2aab18SMatthew Ahrens 	uint64_t newval;
2814842727c2SChris Kirby 
28153b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds));
2816842727c2SChris Kirby 
28173b2aab18SMatthew Ahrens 	dsl_prop_set_sync_impl(ds,
28183b2aab18SMatthew Ahrens 	    zfs_prop_to_name(ZFS_PROP_REFQUOTA),
28193b2aab18SMatthew Ahrens 	    ddsqra->ddsqra_source, sizeof (ddsqra->ddsqra_value), 1,
28203b2aab18SMatthew Ahrens 	    &ddsqra->ddsqra_value, tx);
2821842727c2SChris Kirby 
28223b2aab18SMatthew Ahrens 	VERIFY0(dsl_prop_get_int_ds(ds,
28233b2aab18SMatthew Ahrens 	    zfs_prop_to_name(ZFS_PROP_REFQUOTA), &newval));
2824842727c2SChris Kirby 
28253b2aab18SMatthew Ahrens 	if (ds->ds_quota != newval) {
28263b2aab18SMatthew Ahrens 		dmu_buf_will_dirty(ds->ds_dbuf, tx);
28273b2aab18SMatthew Ahrens 		ds->ds_quota = newval;
2828842727c2SChris Kirby 	}
28293b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
2830842727c2SChris Kirby }
2831842727c2SChris Kirby 
28323b2aab18SMatthew Ahrens int
28333b2aab18SMatthew Ahrens dsl_dataset_set_refquota(const char *dsname, zprop_source_t source,
28343b2aab18SMatthew Ahrens     uint64_t refquota)
2835842727c2SChris Kirby {
28363b2aab18SMatthew Ahrens 	dsl_dataset_set_qr_arg_t ddsqra;
2837842727c2SChris Kirby 
28383b2aab18SMatthew Ahrens 	ddsqra.ddsqra_name = dsname;
28393b2aab18SMatthew Ahrens 	ddsqra.ddsqra_source = source;
28403b2aab18SMatthew Ahrens 	ddsqra.ddsqra_value = refquota;
28413b2aab18SMatthew Ahrens 
28423b2aab18SMatthew Ahrens 	return (dsl_sync_task(dsname, dsl_dataset_set_refquota_check,
28433b2aab18SMatthew Ahrens 	    dsl_dataset_set_refquota_sync, &ddsqra, 0));
2844842727c2SChris Kirby }
2845842727c2SChris Kirby 
2846842727c2SChris Kirby static int
28473b2aab18SMatthew Ahrens dsl_dataset_set_refreservation_check(void *arg, dmu_tx_t *tx)
2848842727c2SChris Kirby {
28493b2aab18SMatthew Ahrens 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
28503b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
2851842727c2SChris Kirby 	dsl_dataset_t *ds;
2852842727c2SChris Kirby 	int error;
28533b2aab18SMatthew Ahrens 	uint64_t newval, unique;
2854d7747cbcSChris Kirby 
28553b2aab18SMatthew Ahrens 	if (spa_version(dp->dp_spa) < SPA_VERSION_REFRESERVATION)
2856be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOTSUP));
2857842727c2SChris Kirby 
28583b2aab18SMatthew Ahrens 	error = dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds);
28593b2aab18SMatthew Ahrens 	if (error != 0)
2860842727c2SChris Kirby 		return (error);
2861842727c2SChris Kirby 
28623b2aab18SMatthew Ahrens 	if (dsl_dataset_is_snapshot(ds)) {
28633b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
2864be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
2865842727c2SChris Kirby 	}
2866842727c2SChris Kirby 
28673b2aab18SMatthew Ahrens 	error = dsl_prop_predict(ds->ds_dir,
28683b2aab18SMatthew Ahrens 	    zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
28693b2aab18SMatthew Ahrens 	    ddsqra->ddsqra_source, ddsqra->ddsqra_value, &newval);
28703b2aab18SMatthew Ahrens 	if (error != 0) {
28713b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
2872842727c2SChris Kirby 		return (error);
2873842727c2SChris Kirby 	}
2874842727c2SChris Kirby 
28753b2aab18SMatthew Ahrens 	/*
28763b2aab18SMatthew Ahrens 	 * If we are doing the preliminary check in open context, the
28773b2aab18SMatthew Ahrens 	 * space estimates may be inaccurate.
28783b2aab18SMatthew Ahrens 	 */
28793b2aab18SMatthew Ahrens 	if (!dmu_tx_is_syncing(tx)) {
28803b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
28813b2aab18SMatthew Ahrens 		return (0);
2882842727c2SChris Kirby 	}
2883842727c2SChris Kirby 
28843b2aab18SMatthew Ahrens 	mutex_enter(&ds->ds_lock);
28853b2aab18SMatthew Ahrens 	if (!DS_UNIQUE_IS_ACCURATE(ds))
28863b2aab18SMatthew Ahrens 		dsl_dataset_recalc_head_uniq(ds);
28873b2aab18SMatthew Ahrens 	unique = ds->ds_phys->ds_unique_bytes;
28883b2aab18SMatthew Ahrens 	mutex_exit(&ds->ds_lock);
2889842727c2SChris Kirby 
28903b2aab18SMatthew Ahrens 	if (MAX(unique, newval) > MAX(unique, ds->ds_reserved)) {
28913b2aab18SMatthew Ahrens 		uint64_t delta = MAX(unique, newval) -
28923b2aab18SMatthew Ahrens 		    MAX(unique, ds->ds_reserved);
2893842727c2SChris Kirby 
28943b2aab18SMatthew Ahrens 		if (delta >
28953b2aab18SMatthew Ahrens 		    dsl_dir_space_available(ds->ds_dir, NULL, 0, B_TRUE) ||
28963b2aab18SMatthew Ahrens 		    (ds->ds_quota > 0 && newval > ds->ds_quota)) {
28973b2aab18SMatthew Ahrens 			dsl_dataset_rele(ds, FTAG);
2898be6fd75aSMatthew Ahrens 			return (SET_ERROR(ENOSPC));
28993b2aab18SMatthew Ahrens 		}
2900842727c2SChris Kirby 	}
2901842727c2SChris Kirby 
29023b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
29033b2aab18SMatthew Ahrens 	return (0);
2904842727c2SChris Kirby }
2905842727c2SChris Kirby 
29063b2aab18SMatthew Ahrens void
29073b2aab18SMatthew Ahrens dsl_dataset_set_refreservation_sync_impl(dsl_dataset_t *ds,
29083b2aab18SMatthew Ahrens     zprop_source_t source, uint64_t value, dmu_tx_t *tx)
2909ca45db41SChris Kirby {
29103b2aab18SMatthew Ahrens 	uint64_t newval;
29113b2aab18SMatthew Ahrens 	uint64_t unique;
29123b2aab18SMatthew Ahrens 	int64_t delta;
2913ca45db41SChris Kirby 
29143b2aab18SMatthew Ahrens 	dsl_prop_set_sync_impl(ds, zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
29153b2aab18SMatthew Ahrens 	    source, sizeof (value), 1, &value, tx);
2916ca45db41SChris Kirby 
29173b2aab18SMatthew Ahrens 	VERIFY0(dsl_prop_get_int_ds(ds,
29183b2aab18SMatthew Ahrens 	    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), &newval));
2919a7f53a56SChris Kirby 
29203b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
29213b2aab18SMatthew Ahrens 	mutex_enter(&ds->ds_dir->dd_lock);
29223b2aab18SMatthew Ahrens 	mutex_enter(&ds->ds_lock);
29233b2aab18SMatthew Ahrens 	ASSERT(DS_UNIQUE_IS_ACCURATE(ds));
29243b2aab18SMatthew Ahrens 	unique = ds->ds_phys->ds_unique_bytes;
29253b2aab18SMatthew Ahrens 	delta = MAX(0, (int64_t)(newval - unique)) -
29263b2aab18SMatthew Ahrens 	    MAX(0, (int64_t)(ds->ds_reserved - unique));
29273b2aab18SMatthew Ahrens 	ds->ds_reserved = newval;
29283b2aab18SMatthew Ahrens 	mutex_exit(&ds->ds_lock);
2929a7f53a56SChris Kirby 
29303b2aab18SMatthew Ahrens 	dsl_dir_diduse_space(ds->ds_dir, DD_USED_REFRSRV, delta, 0, 0, tx);
29313b2aab18SMatthew Ahrens 	mutex_exit(&ds->ds_dir->dd_lock);
2932ca45db41SChris Kirby }
2933ca45db41SChris Kirby 
29343b2aab18SMatthew Ahrens static void
29353b2aab18SMatthew Ahrens dsl_dataset_set_refreservation_sync(void *arg, dmu_tx_t *tx)
2936842727c2SChris Kirby {
29373b2aab18SMatthew Ahrens 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
29383b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
2939842727c2SChris Kirby 	dsl_dataset_t *ds;
2940842727c2SChris Kirby 
29413b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds));
29423b2aab18SMatthew Ahrens 	dsl_dataset_set_refreservation_sync_impl(ds,
29433b2aab18SMatthew Ahrens 	    ddsqra->ddsqra_source, ddsqra->ddsqra_value, tx);
2944842727c2SChris Kirby 	dsl_dataset_rele(ds, FTAG);
2945842727c2SChris Kirby }
2946503ad85cSMatthew Ahrens 
2947503ad85cSMatthew Ahrens int
29483b2aab18SMatthew Ahrens dsl_dataset_set_refreservation(const char *dsname, zprop_source_t source,
29493b2aab18SMatthew Ahrens     uint64_t refreservation)
2950503ad85cSMatthew Ahrens {
29513b2aab18SMatthew Ahrens 	dsl_dataset_set_qr_arg_t ddsqra;
2952503ad85cSMatthew Ahrens 
29533b2aab18SMatthew Ahrens 	ddsqra.ddsqra_name = dsname;
29543b2aab18SMatthew Ahrens 	ddsqra.ddsqra_source = source;
29553b2aab18SMatthew Ahrens 	ddsqra.ddsqra_value = refreservation;
29563b2aab18SMatthew Ahrens 
29573b2aab18SMatthew Ahrens 	return (dsl_sync_task(dsname, dsl_dataset_set_refreservation_check,
29583b2aab18SMatthew Ahrens 	    dsl_dataset_set_refreservation_sync, &ddsqra, 0));
2959503ad85cSMatthew Ahrens }
296019b94df9SMatthew Ahrens 
296119b94df9SMatthew Ahrens /*
296219b94df9SMatthew Ahrens  * Return (in *usedp) the amount of space written in new that is not
296319b94df9SMatthew Ahrens  * present in oldsnap.  New may be a snapshot or the head.  Old must be
296419b94df9SMatthew Ahrens  * a snapshot before new, in new's filesystem (or its origin).  If not then
296519b94df9SMatthew Ahrens  * fail and return EINVAL.
296619b94df9SMatthew Ahrens  *
296719b94df9SMatthew Ahrens  * The written space is calculated by considering two components:  First, we
296819b94df9SMatthew Ahrens  * ignore any freed space, and calculate the written as new's used space
296919b94df9SMatthew Ahrens  * minus old's used space.  Next, we add in the amount of space that was freed
297019b94df9SMatthew Ahrens  * between the two snapshots, thus reducing new's used space relative to old's.
297119b94df9SMatthew Ahrens  * Specifically, this is the space that was born before old->ds_creation_txg,
297219b94df9SMatthew Ahrens  * and freed before new (ie. on new's deadlist or a previous deadlist).
297319b94df9SMatthew Ahrens  *
297419b94df9SMatthew Ahrens  * space freed                         [---------------------]
297519b94df9SMatthew Ahrens  * snapshots                       ---O-------O--------O-------O------
297619b94df9SMatthew Ahrens  *                                         oldsnap            new
297719b94df9SMatthew Ahrens  */
297819b94df9SMatthew Ahrens int
297919b94df9SMatthew Ahrens dsl_dataset_space_written(dsl_dataset_t *oldsnap, dsl_dataset_t *new,
298019b94df9SMatthew Ahrens     uint64_t *usedp, uint64_t *compp, uint64_t *uncompp)
298119b94df9SMatthew Ahrens {
298219b94df9SMatthew Ahrens 	int err = 0;
298319b94df9SMatthew Ahrens 	uint64_t snapobj;
298419b94df9SMatthew Ahrens 	dsl_pool_t *dp = new->ds_dir->dd_pool;
298519b94df9SMatthew Ahrens 
29863b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(dp));
29873b2aab18SMatthew Ahrens 
298819b94df9SMatthew Ahrens 	*usedp = 0;
2989ad135b5dSChristopher Siden 	*usedp += new->ds_phys->ds_referenced_bytes;
2990ad135b5dSChristopher Siden 	*usedp -= oldsnap->ds_phys->ds_referenced_bytes;
299119b94df9SMatthew Ahrens 
299219b94df9SMatthew Ahrens 	*compp = 0;
299319b94df9SMatthew Ahrens 	*compp += new->ds_phys->ds_compressed_bytes;
299419b94df9SMatthew Ahrens 	*compp -= oldsnap->ds_phys->ds_compressed_bytes;
299519b94df9SMatthew Ahrens 
299619b94df9SMatthew Ahrens 	*uncompp = 0;
299719b94df9SMatthew Ahrens 	*uncompp += new->ds_phys->ds_uncompressed_bytes;
299819b94df9SMatthew Ahrens 	*uncompp -= oldsnap->ds_phys->ds_uncompressed_bytes;
299919b94df9SMatthew Ahrens 
300019b94df9SMatthew Ahrens 	snapobj = new->ds_object;
300119b94df9SMatthew Ahrens 	while (snapobj != oldsnap->ds_object) {
300219b94df9SMatthew Ahrens 		dsl_dataset_t *snap;
300319b94df9SMatthew Ahrens 		uint64_t used, comp, uncomp;
300419b94df9SMatthew Ahrens 
3005ad135b5dSChristopher Siden 		if (snapobj == new->ds_object) {
3006ad135b5dSChristopher Siden 			snap = new;
3007ad135b5dSChristopher Siden 		} else {
3008ad135b5dSChristopher Siden 			err = dsl_dataset_hold_obj(dp, snapobj, FTAG, &snap);
3009ad135b5dSChristopher Siden 			if (err != 0)
3010ad135b5dSChristopher Siden 				break;
3011ad135b5dSChristopher Siden 		}
301219b94df9SMatthew Ahrens 
301319b94df9SMatthew Ahrens 		if (snap->ds_phys->ds_prev_snap_txg ==
301419b94df9SMatthew Ahrens 		    oldsnap->ds_phys->ds_creation_txg) {
301519b94df9SMatthew Ahrens 			/*
301619b94df9SMatthew Ahrens 			 * The blocks in the deadlist can not be born after
301719b94df9SMatthew Ahrens 			 * ds_prev_snap_txg, so get the whole deadlist space,
301819b94df9SMatthew Ahrens 			 * which is more efficient (especially for old-format
301919b94df9SMatthew Ahrens 			 * deadlists).  Unfortunately the deadlist code
302019b94df9SMatthew Ahrens 			 * doesn't have enough information to make this
302119b94df9SMatthew Ahrens 			 * optimization itself.
302219b94df9SMatthew Ahrens 			 */
302319b94df9SMatthew Ahrens 			dsl_deadlist_space(&snap->ds_deadlist,
302419b94df9SMatthew Ahrens 			    &used, &comp, &uncomp);
302519b94df9SMatthew Ahrens 		} else {
302619b94df9SMatthew Ahrens 			dsl_deadlist_space_range(&snap->ds_deadlist,
302719b94df9SMatthew Ahrens 			    0, oldsnap->ds_phys->ds_creation_txg,
302819b94df9SMatthew Ahrens 			    &used, &comp, &uncomp);
302919b94df9SMatthew Ahrens 		}
303019b94df9SMatthew Ahrens 		*usedp += used;
303119b94df9SMatthew Ahrens 		*compp += comp;
303219b94df9SMatthew Ahrens 		*uncompp += uncomp;
303319b94df9SMatthew Ahrens 
303419b94df9SMatthew Ahrens 		/*
303519b94df9SMatthew Ahrens 		 * If we get to the beginning of the chain of snapshots
303619b94df9SMatthew Ahrens 		 * (ds_prev_snap_obj == 0) before oldsnap, then oldsnap
303719b94df9SMatthew Ahrens 		 * was not a snapshot of/before new.
303819b94df9SMatthew Ahrens 		 */
303919b94df9SMatthew Ahrens 		snapobj = snap->ds_phys->ds_prev_snap_obj;
3040ad135b5dSChristopher Siden 		if (snap != new)
3041ad135b5dSChristopher Siden 			dsl_dataset_rele(snap, FTAG);
304219b94df9SMatthew Ahrens 		if (snapobj == 0) {
3043be6fd75aSMatthew Ahrens 			err = SET_ERROR(EINVAL);
304419b94df9SMatthew Ahrens 			break;
304519b94df9SMatthew Ahrens 		}
304619b94df9SMatthew Ahrens 
304719b94df9SMatthew Ahrens 	}
304819b94df9SMatthew Ahrens 	return (err);
304919b94df9SMatthew Ahrens }
305019b94df9SMatthew Ahrens 
305119b94df9SMatthew Ahrens /*
305219b94df9SMatthew Ahrens  * Return (in *usedp) the amount of space that will be reclaimed if firstsnap,
305319b94df9SMatthew Ahrens  * lastsnap, and all snapshots in between are deleted.
305419b94df9SMatthew Ahrens  *
305519b94df9SMatthew Ahrens  * blocks that would be freed            [---------------------------]
305619b94df9SMatthew Ahrens  * snapshots                       ---O-------O--------O-------O--------O
305719b94df9SMatthew Ahrens  *                                        firstsnap        lastsnap
305819b94df9SMatthew Ahrens  *
305919b94df9SMatthew Ahrens  * This is the set of blocks that were born after the snap before firstsnap,
306019b94df9SMatthew Ahrens  * (birth > firstsnap->prev_snap_txg) and died before the snap after the
306119b94df9SMatthew Ahrens  * last snap (ie, is on lastsnap->ds_next->ds_deadlist or an earlier deadlist).
306219b94df9SMatthew Ahrens  * We calculate this by iterating over the relevant deadlists (from the snap
306319b94df9SMatthew Ahrens  * after lastsnap, backward to the snap after firstsnap), summing up the
306419b94df9SMatthew Ahrens  * space on the deadlist that was born after the snap before firstsnap.
306519b94df9SMatthew Ahrens  */
306619b94df9SMatthew Ahrens int
306719b94df9SMatthew Ahrens dsl_dataset_space_wouldfree(dsl_dataset_t *firstsnap,
306819b94df9SMatthew Ahrens     dsl_dataset_t *lastsnap,
306919b94df9SMatthew Ahrens     uint64_t *usedp, uint64_t *compp, uint64_t *uncompp)
307019b94df9SMatthew Ahrens {
307119b94df9SMatthew Ahrens 	int err = 0;
307219b94df9SMatthew Ahrens 	uint64_t snapobj;
307319b94df9SMatthew Ahrens 	dsl_pool_t *dp = firstsnap->ds_dir->dd_pool;
307419b94df9SMatthew Ahrens 
307519b94df9SMatthew Ahrens 	ASSERT(dsl_dataset_is_snapshot(firstsnap));
307619b94df9SMatthew Ahrens 	ASSERT(dsl_dataset_is_snapshot(lastsnap));
307719b94df9SMatthew Ahrens 
307819b94df9SMatthew Ahrens 	/*
307919b94df9SMatthew Ahrens 	 * Check that the snapshots are in the same dsl_dir, and firstsnap
308019b94df9SMatthew Ahrens 	 * is before lastsnap.
308119b94df9SMatthew Ahrens 	 */
308219b94df9SMatthew Ahrens 	if (firstsnap->ds_dir != lastsnap->ds_dir ||
308319b94df9SMatthew Ahrens 	    firstsnap->ds_phys->ds_creation_txg >
308419b94df9SMatthew Ahrens 	    lastsnap->ds_phys->ds_creation_txg)
3085be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
308619b94df9SMatthew Ahrens 
308719b94df9SMatthew Ahrens 	*usedp = *compp = *uncompp = 0;
308819b94df9SMatthew Ahrens 
308919b94df9SMatthew Ahrens 	snapobj = lastsnap->ds_phys->ds_next_snap_obj;
309019b94df9SMatthew Ahrens 	while (snapobj != firstsnap->ds_object) {
309119b94df9SMatthew Ahrens 		dsl_dataset_t *ds;
309219b94df9SMatthew Ahrens 		uint64_t used, comp, uncomp;
309319b94df9SMatthew Ahrens 
309419b94df9SMatthew Ahrens 		err = dsl_dataset_hold_obj(dp, snapobj, FTAG, &ds);
309519b94df9SMatthew Ahrens 		if (err != 0)
309619b94df9SMatthew Ahrens 			break;
309719b94df9SMatthew Ahrens 
309819b94df9SMatthew Ahrens 		dsl_deadlist_space_range(&ds->ds_deadlist,
309919b94df9SMatthew Ahrens 		    firstsnap->ds_phys->ds_prev_snap_txg, UINT64_MAX,
310019b94df9SMatthew Ahrens 		    &used, &comp, &uncomp);
310119b94df9SMatthew Ahrens 		*usedp += used;
310219b94df9SMatthew Ahrens 		*compp += comp;
310319b94df9SMatthew Ahrens 		*uncompp += uncomp;
310419b94df9SMatthew Ahrens 
310519b94df9SMatthew Ahrens 		snapobj = ds->ds_phys->ds_prev_snap_obj;
310619b94df9SMatthew Ahrens 		ASSERT3U(snapobj, !=, 0);
310719b94df9SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
310819b94df9SMatthew Ahrens 	}
310919b94df9SMatthew Ahrens 	return (err);
311019b94df9SMatthew Ahrens }
31113b2aab18SMatthew Ahrens 
31123b2aab18SMatthew Ahrens /*
31133b2aab18SMatthew Ahrens  * Return TRUE if 'earlier' is an earlier snapshot in 'later's timeline.
31143b2aab18SMatthew Ahrens  * For example, they could both be snapshots of the same filesystem, and
31153b2aab18SMatthew Ahrens  * 'earlier' is before 'later'.  Or 'earlier' could be the origin of
31163b2aab18SMatthew Ahrens  * 'later's filesystem.  Or 'earlier' could be an older snapshot in the origin's
31173b2aab18SMatthew Ahrens  * filesystem.  Or 'earlier' could be the origin's origin.
311878f17100SMatthew Ahrens  *
311978f17100SMatthew Ahrens  * If non-zero, earlier_txg is used instead of earlier's ds_creation_txg.
31203b2aab18SMatthew Ahrens  */
31213b2aab18SMatthew Ahrens boolean_t
312278f17100SMatthew Ahrens dsl_dataset_is_before(dsl_dataset_t *later, dsl_dataset_t *earlier,
312378f17100SMatthew Ahrens 	uint64_t earlier_txg)
31243b2aab18SMatthew Ahrens {
31253b2aab18SMatthew Ahrens 	dsl_pool_t *dp = later->ds_dir->dd_pool;
31263b2aab18SMatthew Ahrens 	int error;
31273b2aab18SMatthew Ahrens 	boolean_t ret;
31283b2aab18SMatthew Ahrens 
31293b2aab18SMatthew Ahrens 	ASSERT(dsl_pool_config_held(dp));
313078f17100SMatthew Ahrens 	ASSERT(dsl_dataset_is_snapshot(earlier) || earlier_txg != 0);
313178f17100SMatthew Ahrens 
313278f17100SMatthew Ahrens 	if (earlier_txg == 0)
313378f17100SMatthew Ahrens 		earlier_txg = earlier->ds_phys->ds_creation_txg;
31343b2aab18SMatthew Ahrens 
313578f17100SMatthew Ahrens 	if (dsl_dataset_is_snapshot(later) &&
313678f17100SMatthew Ahrens 	    earlier_txg >= later->ds_phys->ds_creation_txg)
31373b2aab18SMatthew Ahrens 		return (B_FALSE);
31383b2aab18SMatthew Ahrens 
31393b2aab18SMatthew Ahrens 	if (later->ds_dir == earlier->ds_dir)
31403b2aab18SMatthew Ahrens 		return (B_TRUE);
31413b2aab18SMatthew Ahrens 	if (!dsl_dir_is_clone(later->ds_dir))
31423b2aab18SMatthew Ahrens 		return (B_FALSE);
31433b2aab18SMatthew Ahrens 
31443b2aab18SMatthew Ahrens 	if (later->ds_dir->dd_phys->dd_origin_obj == earlier->ds_object)
31453b2aab18SMatthew Ahrens 		return (B_TRUE);
31463b2aab18SMatthew Ahrens 	dsl_dataset_t *origin;
31473b2aab18SMatthew Ahrens 	error = dsl_dataset_hold_obj(dp,
31483b2aab18SMatthew Ahrens 	    later->ds_dir->dd_phys->dd_origin_obj, FTAG, &origin);
31493b2aab18SMatthew Ahrens 	if (error != 0)
31503b2aab18SMatthew Ahrens 		return (B_FALSE);
315178f17100SMatthew Ahrens 	ret = dsl_dataset_is_before(origin, earlier, earlier_txg);
31523b2aab18SMatthew Ahrens 	dsl_dataset_rele(origin, FTAG);
31533b2aab18SMatthew Ahrens 	return (ret);
31543b2aab18SMatthew Ahrens }
31552acef22dSMatthew Ahrens 
31562acef22dSMatthew Ahrens 
31572acef22dSMatthew Ahrens void
31582acef22dSMatthew Ahrens dsl_dataset_zapify(dsl_dataset_t *ds, dmu_tx_t *tx)
31592acef22dSMatthew Ahrens {
31602acef22dSMatthew Ahrens 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
31612acef22dSMatthew Ahrens 	dmu_object_zapify(mos, ds->ds_object, DMU_OT_DSL_DATASET, tx);
31622acef22dSMatthew Ahrens }
3163