xref: /titanic_44/usr/src/uts/common/fs/zfs/dsl_dataset.c (revision ee88b7a2060ab0ecb98a928e0e0595b7274aec2a)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  * Copyright (c) 2011, 2015 by Delphix. All rights reserved.
24  * Copyright (c) 2014, Joyent, Inc. All rights reserved.
25  * Copyright (c) 2014 RackTop Systems.
26  * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
27  */
28 
29 #include <sys/dmu_objset.h>
30 #include <sys/dsl_dataset.h>
31 #include <sys/dsl_dir.h>
32 #include <sys/dsl_prop.h>
33 #include <sys/dsl_synctask.h>
34 #include <sys/dmu_traverse.h>
35 #include <sys/dmu_impl.h>
36 #include <sys/dmu_tx.h>
37 #include <sys/arc.h>
38 #include <sys/zio.h>
39 #include <sys/zap.h>
40 #include <sys/zfeature.h>
41 #include <sys/unique.h>
42 #include <sys/zfs_context.h>
43 #include <sys/zfs_ioctl.h>
44 #include <sys/spa.h>
45 #include <sys/zfs_znode.h>
46 #include <sys/zfs_onexit.h>
47 #include <sys/zvol.h>
48 #include <sys/dsl_scan.h>
49 #include <sys/dsl_deadlist.h>
50 #include <sys/dsl_destroy.h>
51 #include <sys/dsl_userhold.h>
52 #include <sys/dsl_bookmark.h>
53 #include <sys/dmu_send.h>
54 #include <sys/zio_checksum.h>
55 #include <sys/zio_compress.h>
56 #include <zfs_fletcher.h>
57 
58 /*
59  * The SPA supports block sizes up to 16MB.  However, very large blocks
60  * can have an impact on i/o latency (e.g. tying up a spinning disk for
61  * ~300ms), and also potentially on the memory allocator.  Therefore,
62  * we do not allow the recordsize to be set larger than zfs_max_recordsize
63  * (default 1MB).  Larger blocks can be created by changing this tunable,
64  * and pools with larger blocks can always be imported and used, regardless
65  * of this setting.
66  */
67 int zfs_max_recordsize = 1 * 1024 * 1024;
68 
69 #define	SWITCH64(x, y) \
70 	{ \
71 		uint64_t __tmp = (x); \
72 		(x) = (y); \
73 		(y) = __tmp; \
74 	}
75 
76 #define	DS_REF_MAX	(1ULL << 62)
77 
78 extern inline dsl_dataset_phys_t *dsl_dataset_phys(dsl_dataset_t *ds);
79 
80 /*
81  * Figure out how much of this delta should be propogated to the dsl_dir
82  * layer.  If there's a refreservation, that space has already been
83  * partially accounted for in our ancestors.
84  */
85 static int64_t
86 parent_delta(dsl_dataset_t *ds, int64_t delta)
87 {
88 	dsl_dataset_phys_t *ds_phys;
89 	uint64_t old_bytes, new_bytes;
90 
91 	if (ds->ds_reserved == 0)
92 		return (delta);
93 
94 	ds_phys = dsl_dataset_phys(ds);
95 	old_bytes = MAX(ds_phys->ds_unique_bytes, ds->ds_reserved);
96 	new_bytes = MAX(ds_phys->ds_unique_bytes + delta, ds->ds_reserved);
97 
98 	ASSERT3U(ABS((int64_t)(new_bytes - old_bytes)), <=, ABS(delta));
99 	return (new_bytes - old_bytes);
100 }
101 
102 void
103 dsl_dataset_block_born(dsl_dataset_t *ds, const blkptr_t *bp, dmu_tx_t *tx)
104 {
105 	int used = bp_get_dsize_sync(tx->tx_pool->dp_spa, bp);
106 	int compressed = BP_GET_PSIZE(bp);
107 	int uncompressed = BP_GET_UCSIZE(bp);
108 	int64_t delta;
109 
110 	dprintf_bp(bp, "ds=%p", ds);
111 
112 	ASSERT(dmu_tx_is_syncing(tx));
113 	/* It could have been compressed away to nothing */
114 	if (BP_IS_HOLE(bp))
115 		return;
116 	ASSERT(BP_GET_TYPE(bp) != DMU_OT_NONE);
117 	ASSERT(DMU_OT_IS_VALID(BP_GET_TYPE(bp)));
118 	if (ds == NULL) {
119 		dsl_pool_mos_diduse_space(tx->tx_pool,
120 		    used, compressed, uncompressed);
121 		return;
122 	}
123 
124 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
125 	mutex_enter(&ds->ds_lock);
126 	delta = parent_delta(ds, used);
127 	dsl_dataset_phys(ds)->ds_referenced_bytes += used;
128 	dsl_dataset_phys(ds)->ds_compressed_bytes += compressed;
129 	dsl_dataset_phys(ds)->ds_uncompressed_bytes += uncompressed;
130 	dsl_dataset_phys(ds)->ds_unique_bytes += used;
131 	if (BP_GET_LSIZE(bp) > SPA_OLD_MAXBLOCKSIZE) {
132 		ds->ds_feature_activation_needed[SPA_FEATURE_LARGE_BLOCKS] =
133 		    B_TRUE;
134 	}
135 	mutex_exit(&ds->ds_lock);
136 	dsl_dir_diduse_space(ds->ds_dir, DD_USED_HEAD, delta,
137 	    compressed, uncompressed, tx);
138 	dsl_dir_transfer_space(ds->ds_dir, used - delta,
139 	    DD_USED_REFRSRV, DD_USED_HEAD, tx);
140 }
141 
142 int
143 dsl_dataset_block_kill(dsl_dataset_t *ds, const blkptr_t *bp, dmu_tx_t *tx,
144     boolean_t async)
145 {
146 	int used = bp_get_dsize_sync(tx->tx_pool->dp_spa, bp);
147 	int compressed = BP_GET_PSIZE(bp);
148 	int uncompressed = BP_GET_UCSIZE(bp);
149 
150 	if (BP_IS_HOLE(bp))
151 		return (0);
152 
153 	ASSERT(dmu_tx_is_syncing(tx));
154 	ASSERT(bp->blk_birth <= tx->tx_txg);
155 
156 	if (ds == NULL) {
157 		dsl_free(tx->tx_pool, tx->tx_txg, bp);
158 		dsl_pool_mos_diduse_space(tx->tx_pool,
159 		    -used, -compressed, -uncompressed);
160 		return (used);
161 	}
162 	ASSERT3P(tx->tx_pool, ==, ds->ds_dir->dd_pool);
163 
164 	ASSERT(!ds->ds_is_snapshot);
165 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
166 
167 	if (bp->blk_birth > dsl_dataset_phys(ds)->ds_prev_snap_txg) {
168 		int64_t delta;
169 
170 		dprintf_bp(bp, "freeing ds=%llu", ds->ds_object);
171 		dsl_free(tx->tx_pool, tx->tx_txg, bp);
172 
173 		mutex_enter(&ds->ds_lock);
174 		ASSERT(dsl_dataset_phys(ds)->ds_unique_bytes >= used ||
175 		    !DS_UNIQUE_IS_ACCURATE(ds));
176 		delta = parent_delta(ds, -used);
177 		dsl_dataset_phys(ds)->ds_unique_bytes -= used;
178 		mutex_exit(&ds->ds_lock);
179 		dsl_dir_diduse_space(ds->ds_dir, DD_USED_HEAD,
180 		    delta, -compressed, -uncompressed, tx);
181 		dsl_dir_transfer_space(ds->ds_dir, -used - delta,
182 		    DD_USED_REFRSRV, DD_USED_HEAD, tx);
183 	} else {
184 		dprintf_bp(bp, "putting on dead list: %s", "");
185 		if (async) {
186 			/*
187 			 * We are here as part of zio's write done callback,
188 			 * which means we're a zio interrupt thread.  We can't
189 			 * call dsl_deadlist_insert() now because it may block
190 			 * waiting for I/O.  Instead, put bp on the deferred
191 			 * queue and let dsl_pool_sync() finish the job.
192 			 */
193 			bplist_append(&ds->ds_pending_deadlist, bp);
194 		} else {
195 			dsl_deadlist_insert(&ds->ds_deadlist, bp, tx);
196 		}
197 		ASSERT3U(ds->ds_prev->ds_object, ==,
198 		    dsl_dataset_phys(ds)->ds_prev_snap_obj);
199 		ASSERT(dsl_dataset_phys(ds->ds_prev)->ds_num_children > 0);
200 		/* if (bp->blk_birth > prev prev snap txg) prev unique += bs */
201 		if (dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj ==
202 		    ds->ds_object && bp->blk_birth >
203 		    dsl_dataset_phys(ds->ds_prev)->ds_prev_snap_txg) {
204 			dmu_buf_will_dirty(ds->ds_prev->ds_dbuf, tx);
205 			mutex_enter(&ds->ds_prev->ds_lock);
206 			dsl_dataset_phys(ds->ds_prev)->ds_unique_bytes += used;
207 			mutex_exit(&ds->ds_prev->ds_lock);
208 		}
209 		if (bp->blk_birth > ds->ds_dir->dd_origin_txg) {
210 			dsl_dir_transfer_space(ds->ds_dir, used,
211 			    DD_USED_HEAD, DD_USED_SNAP, tx);
212 		}
213 	}
214 	mutex_enter(&ds->ds_lock);
215 	ASSERT3U(dsl_dataset_phys(ds)->ds_referenced_bytes, >=, used);
216 	dsl_dataset_phys(ds)->ds_referenced_bytes -= used;
217 	ASSERT3U(dsl_dataset_phys(ds)->ds_compressed_bytes, >=, compressed);
218 	dsl_dataset_phys(ds)->ds_compressed_bytes -= compressed;
219 	ASSERT3U(dsl_dataset_phys(ds)->ds_uncompressed_bytes, >=, uncompressed);
220 	dsl_dataset_phys(ds)->ds_uncompressed_bytes -= uncompressed;
221 	mutex_exit(&ds->ds_lock);
222 
223 	return (used);
224 }
225 
226 uint64_t
227 dsl_dataset_prev_snap_txg(dsl_dataset_t *ds)
228 {
229 	uint64_t trysnap = 0;
230 
231 	if (ds == NULL)
232 		return (0);
233 	/*
234 	 * The snapshot creation could fail, but that would cause an
235 	 * incorrect FALSE return, which would only result in an
236 	 * overestimation of the amount of space that an operation would
237 	 * consume, which is OK.
238 	 *
239 	 * There's also a small window where we could miss a pending
240 	 * snapshot, because we could set the sync task in the quiescing
241 	 * phase.  So this should only be used as a guess.
242 	 */
243 	if (ds->ds_trysnap_txg >
244 	    spa_last_synced_txg(ds->ds_dir->dd_pool->dp_spa))
245 		trysnap = ds->ds_trysnap_txg;
246 	return (MAX(dsl_dataset_phys(ds)->ds_prev_snap_txg, trysnap));
247 }
248 
249 boolean_t
250 dsl_dataset_block_freeable(dsl_dataset_t *ds, const blkptr_t *bp,
251     uint64_t blk_birth)
252 {
253 	if (blk_birth <= dsl_dataset_prev_snap_txg(ds) ||
254 	    (bp != NULL && BP_IS_HOLE(bp)))
255 		return (B_FALSE);
256 
257 	ddt_prefetch(dsl_dataset_get_spa(ds), bp);
258 
259 	return (B_TRUE);
260 }
261 
262 static void
263 dsl_dataset_evict(void *dbu)
264 {
265 	dsl_dataset_t *ds = dbu;
266 
267 	ASSERT(ds->ds_owner == NULL);
268 
269 	ds->ds_dbuf = NULL;
270 
271 	unique_remove(ds->ds_fsid_guid);
272 
273 	if (ds->ds_objset != NULL)
274 		dmu_objset_evict(ds->ds_objset);
275 
276 	if (ds->ds_prev) {
277 		dsl_dataset_rele(ds->ds_prev, ds);
278 		ds->ds_prev = NULL;
279 	}
280 
281 	bplist_destroy(&ds->ds_pending_deadlist);
282 	if (ds->ds_deadlist.dl_os != NULL)
283 		dsl_deadlist_close(&ds->ds_deadlist);
284 	if (ds->ds_dir)
285 		dsl_dir_async_rele(ds->ds_dir, ds);
286 
287 	ASSERT(!list_link_active(&ds->ds_synced_link));
288 
289 	mutex_destroy(&ds->ds_lock);
290 	mutex_destroy(&ds->ds_opening_lock);
291 	mutex_destroy(&ds->ds_sendstream_lock);
292 	refcount_destroy(&ds->ds_longholds);
293 
294 	kmem_free(ds, sizeof (dsl_dataset_t));
295 }
296 
297 int
298 dsl_dataset_get_snapname(dsl_dataset_t *ds)
299 {
300 	dsl_dataset_phys_t *headphys;
301 	int err;
302 	dmu_buf_t *headdbuf;
303 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
304 	objset_t *mos = dp->dp_meta_objset;
305 
306 	if (ds->ds_snapname[0])
307 		return (0);
308 	if (dsl_dataset_phys(ds)->ds_next_snap_obj == 0)
309 		return (0);
310 
311 	err = dmu_bonus_hold(mos, dsl_dir_phys(ds->ds_dir)->dd_head_dataset_obj,
312 	    FTAG, &headdbuf);
313 	if (err != 0)
314 		return (err);
315 	headphys = headdbuf->db_data;
316 	err = zap_value_search(dp->dp_meta_objset,
317 	    headphys->ds_snapnames_zapobj, ds->ds_object, 0, ds->ds_snapname);
318 	dmu_buf_rele(headdbuf, FTAG);
319 	return (err);
320 }
321 
322 int
323 dsl_dataset_snap_lookup(dsl_dataset_t *ds, const char *name, uint64_t *value)
324 {
325 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
326 	uint64_t snapobj = dsl_dataset_phys(ds)->ds_snapnames_zapobj;
327 	matchtype_t mt;
328 	int err;
329 
330 	if (dsl_dataset_phys(ds)->ds_flags & DS_FLAG_CI_DATASET)
331 		mt = MT_FIRST;
332 	else
333 		mt = MT_EXACT;
334 
335 	err = zap_lookup_norm(mos, snapobj, name, 8, 1,
336 	    value, mt, NULL, 0, NULL);
337 	if (err == ENOTSUP && mt == MT_FIRST)
338 		err = zap_lookup(mos, snapobj, name, 8, 1, value);
339 	return (err);
340 }
341 
342 int
343 dsl_dataset_snap_remove(dsl_dataset_t *ds, const char *name, dmu_tx_t *tx,
344     boolean_t adj_cnt)
345 {
346 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
347 	uint64_t snapobj = dsl_dataset_phys(ds)->ds_snapnames_zapobj;
348 	matchtype_t mt;
349 	int err;
350 
351 	dsl_dir_snap_cmtime_update(ds->ds_dir);
352 
353 	if (dsl_dataset_phys(ds)->ds_flags & DS_FLAG_CI_DATASET)
354 		mt = MT_FIRST;
355 	else
356 		mt = MT_EXACT;
357 
358 	err = zap_remove_norm(mos, snapobj, name, mt, tx);
359 	if (err == ENOTSUP && mt == MT_FIRST)
360 		err = zap_remove(mos, snapobj, name, tx);
361 
362 	if (err == 0 && adj_cnt)
363 		dsl_fs_ss_count_adjust(ds->ds_dir, -1,
364 		    DD_FIELD_SNAPSHOT_COUNT, tx);
365 
366 	return (err);
367 }
368 
369 boolean_t
370 dsl_dataset_try_add_ref(dsl_pool_t *dp, dsl_dataset_t *ds, void *tag)
371 {
372 	dmu_buf_t *dbuf = ds->ds_dbuf;
373 	boolean_t result = B_FALSE;
374 
375 	if (dbuf != NULL && dmu_buf_try_add_ref(dbuf, dp->dp_meta_objset,
376 	    ds->ds_object, DMU_BONUS_BLKID, tag)) {
377 
378 		if (ds == dmu_buf_get_user(dbuf))
379 			result = B_TRUE;
380 		else
381 			dmu_buf_rele(dbuf, tag);
382 	}
383 
384 	return (result);
385 }
386 
387 int
388 dsl_dataset_hold_obj(dsl_pool_t *dp, uint64_t dsobj, void *tag,
389     dsl_dataset_t **dsp)
390 {
391 	objset_t *mos = dp->dp_meta_objset;
392 	dmu_buf_t *dbuf;
393 	dsl_dataset_t *ds;
394 	int err;
395 	dmu_object_info_t doi;
396 
397 	ASSERT(dsl_pool_config_held(dp));
398 
399 	err = dmu_bonus_hold(mos, dsobj, tag, &dbuf);
400 	if (err != 0)
401 		return (err);
402 
403 	/* Make sure dsobj has the correct object type. */
404 	dmu_object_info_from_db(dbuf, &doi);
405 	if (doi.doi_bonus_type != DMU_OT_DSL_DATASET) {
406 		dmu_buf_rele(dbuf, tag);
407 		return (SET_ERROR(EINVAL));
408 	}
409 
410 	ds = dmu_buf_get_user(dbuf);
411 	if (ds == NULL) {
412 		dsl_dataset_t *winner = NULL;
413 
414 		ds = kmem_zalloc(sizeof (dsl_dataset_t), KM_SLEEP);
415 		ds->ds_dbuf = dbuf;
416 		ds->ds_object = dsobj;
417 		ds->ds_is_snapshot = dsl_dataset_phys(ds)->ds_num_children != 0;
418 
419 		mutex_init(&ds->ds_lock, NULL, MUTEX_DEFAULT, NULL);
420 		mutex_init(&ds->ds_opening_lock, NULL, MUTEX_DEFAULT, NULL);
421 		mutex_init(&ds->ds_sendstream_lock, NULL, MUTEX_DEFAULT, NULL);
422 		refcount_create(&ds->ds_longholds);
423 
424 		bplist_create(&ds->ds_pending_deadlist);
425 		dsl_deadlist_open(&ds->ds_deadlist,
426 		    mos, dsl_dataset_phys(ds)->ds_deadlist_obj);
427 
428 		list_create(&ds->ds_sendstreams, sizeof (dmu_sendarg_t),
429 		    offsetof(dmu_sendarg_t, dsa_link));
430 
431 		if (doi.doi_type == DMU_OTN_ZAP_METADATA) {
432 			for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
433 				if (!(spa_feature_table[f].fi_flags &
434 				    ZFEATURE_FLAG_PER_DATASET))
435 					continue;
436 				err = zap_contains(mos, dsobj,
437 				    spa_feature_table[f].fi_guid);
438 				if (err == 0) {
439 					ds->ds_feature_inuse[f] = B_TRUE;
440 				} else {
441 					ASSERT3U(err, ==, ENOENT);
442 					err = 0;
443 				}
444 			}
445 		}
446 
447 		err = dsl_dir_hold_obj(dp,
448 		    dsl_dataset_phys(ds)->ds_dir_obj, NULL, ds, &ds->ds_dir);
449 		if (err != 0) {
450 			mutex_destroy(&ds->ds_lock);
451 			mutex_destroy(&ds->ds_opening_lock);
452 			mutex_destroy(&ds->ds_sendstream_lock);
453 			refcount_destroy(&ds->ds_longholds);
454 			bplist_destroy(&ds->ds_pending_deadlist);
455 			dsl_deadlist_close(&ds->ds_deadlist);
456 			kmem_free(ds, sizeof (dsl_dataset_t));
457 			dmu_buf_rele(dbuf, tag);
458 			return (err);
459 		}
460 
461 		if (!ds->ds_is_snapshot) {
462 			ds->ds_snapname[0] = '\0';
463 			if (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0) {
464 				err = dsl_dataset_hold_obj(dp,
465 				    dsl_dataset_phys(ds)->ds_prev_snap_obj,
466 				    ds, &ds->ds_prev);
467 			}
468 			if (doi.doi_type == DMU_OTN_ZAP_METADATA) {
469 				int zaperr = zap_lookup(mos, ds->ds_object,
470 				    DS_FIELD_BOOKMARK_NAMES,
471 				    sizeof (ds->ds_bookmarks), 1,
472 				    &ds->ds_bookmarks);
473 				if (zaperr != ENOENT)
474 					VERIFY0(zaperr);
475 			}
476 		} else {
477 			if (zfs_flags & ZFS_DEBUG_SNAPNAMES)
478 				err = dsl_dataset_get_snapname(ds);
479 			if (err == 0 &&
480 			    dsl_dataset_phys(ds)->ds_userrefs_obj != 0) {
481 				err = zap_count(
482 				    ds->ds_dir->dd_pool->dp_meta_objset,
483 				    dsl_dataset_phys(ds)->ds_userrefs_obj,
484 				    &ds->ds_userrefs);
485 			}
486 		}
487 
488 		if (err == 0 && !ds->ds_is_snapshot) {
489 			err = dsl_prop_get_int_ds(ds,
490 			    zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
491 			    &ds->ds_reserved);
492 			if (err == 0) {
493 				err = dsl_prop_get_int_ds(ds,
494 				    zfs_prop_to_name(ZFS_PROP_REFQUOTA),
495 				    &ds->ds_quota);
496 			}
497 		} else {
498 			ds->ds_reserved = ds->ds_quota = 0;
499 		}
500 
501 		dmu_buf_init_user(&ds->ds_dbu, dsl_dataset_evict, &ds->ds_dbuf);
502 		if (err == 0)
503 			winner = dmu_buf_set_user_ie(dbuf, &ds->ds_dbu);
504 
505 		if (err != 0 || winner != NULL) {
506 			bplist_destroy(&ds->ds_pending_deadlist);
507 			dsl_deadlist_close(&ds->ds_deadlist);
508 			if (ds->ds_prev)
509 				dsl_dataset_rele(ds->ds_prev, ds);
510 			dsl_dir_rele(ds->ds_dir, ds);
511 			mutex_destroy(&ds->ds_lock);
512 			mutex_destroy(&ds->ds_opening_lock);
513 			mutex_destroy(&ds->ds_sendstream_lock);
514 			refcount_destroy(&ds->ds_longholds);
515 			kmem_free(ds, sizeof (dsl_dataset_t));
516 			if (err != 0) {
517 				dmu_buf_rele(dbuf, tag);
518 				return (err);
519 			}
520 			ds = winner;
521 		} else {
522 			ds->ds_fsid_guid =
523 			    unique_insert(dsl_dataset_phys(ds)->ds_fsid_guid);
524 		}
525 	}
526 	ASSERT3P(ds->ds_dbuf, ==, dbuf);
527 	ASSERT3P(dsl_dataset_phys(ds), ==, dbuf->db_data);
528 	ASSERT(dsl_dataset_phys(ds)->ds_prev_snap_obj != 0 ||
529 	    spa_version(dp->dp_spa) < SPA_VERSION_ORIGIN ||
530 	    dp->dp_origin_snap == NULL || ds == dp->dp_origin_snap);
531 	*dsp = ds;
532 	return (0);
533 }
534 
535 int
536 dsl_dataset_hold(dsl_pool_t *dp, const char *name,
537     void *tag, dsl_dataset_t **dsp)
538 {
539 	dsl_dir_t *dd;
540 	const char *snapname;
541 	uint64_t obj;
542 	int err = 0;
543 	dsl_dataset_t *ds;
544 
545 	err = dsl_dir_hold(dp, name, FTAG, &dd, &snapname);
546 	if (err != 0)
547 		return (err);
548 
549 	ASSERT(dsl_pool_config_held(dp));
550 	obj = dsl_dir_phys(dd)->dd_head_dataset_obj;
551 	if (obj != 0)
552 		err = dsl_dataset_hold_obj(dp, obj, tag, &ds);
553 	else
554 		err = SET_ERROR(ENOENT);
555 
556 	/* we may be looking for a snapshot */
557 	if (err == 0 && snapname != NULL) {
558 		dsl_dataset_t *snap_ds;
559 
560 		if (*snapname++ != '@') {
561 			dsl_dataset_rele(ds, tag);
562 			dsl_dir_rele(dd, FTAG);
563 			return (SET_ERROR(ENOENT));
564 		}
565 
566 		dprintf("looking for snapshot '%s'\n", snapname);
567 		err = dsl_dataset_snap_lookup(ds, snapname, &obj);
568 		if (err == 0)
569 			err = dsl_dataset_hold_obj(dp, obj, tag, &snap_ds);
570 		dsl_dataset_rele(ds, tag);
571 
572 		if (err == 0) {
573 			mutex_enter(&snap_ds->ds_lock);
574 			if (snap_ds->ds_snapname[0] == 0)
575 				(void) strlcpy(snap_ds->ds_snapname, snapname,
576 				    sizeof (snap_ds->ds_snapname));
577 			mutex_exit(&snap_ds->ds_lock);
578 			ds = snap_ds;
579 		}
580 	}
581 	if (err == 0)
582 		*dsp = ds;
583 	dsl_dir_rele(dd, FTAG);
584 	return (err);
585 }
586 
587 int
588 dsl_dataset_own_obj(dsl_pool_t *dp, uint64_t dsobj,
589     void *tag, dsl_dataset_t **dsp)
590 {
591 	int err = dsl_dataset_hold_obj(dp, dsobj, tag, dsp);
592 	if (err != 0)
593 		return (err);
594 	if (!dsl_dataset_tryown(*dsp, tag)) {
595 		dsl_dataset_rele(*dsp, tag);
596 		*dsp = NULL;
597 		return (SET_ERROR(EBUSY));
598 	}
599 	return (0);
600 }
601 
602 int
603 dsl_dataset_own(dsl_pool_t *dp, const char *name,
604     void *tag, dsl_dataset_t **dsp)
605 {
606 	int err = dsl_dataset_hold(dp, name, tag, dsp);
607 	if (err != 0)
608 		return (err);
609 	if (!dsl_dataset_tryown(*dsp, tag)) {
610 		dsl_dataset_rele(*dsp, tag);
611 		return (SET_ERROR(EBUSY));
612 	}
613 	return (0);
614 }
615 
616 /*
617  * See the comment above dsl_pool_hold() for details.  In summary, a long
618  * hold is used to prevent destruction of a dataset while the pool hold
619  * is dropped, allowing other concurrent operations (e.g. spa_sync()).
620  *
621  * The dataset and pool must be held when this function is called.  After it
622  * is called, the pool hold may be released while the dataset is still held
623  * and accessed.
624  */
625 void
626 dsl_dataset_long_hold(dsl_dataset_t *ds, void *tag)
627 {
628 	ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool));
629 	(void) refcount_add(&ds->ds_longholds, tag);
630 }
631 
632 void
633 dsl_dataset_long_rele(dsl_dataset_t *ds, void *tag)
634 {
635 	(void) refcount_remove(&ds->ds_longholds, tag);
636 }
637 
638 /* Return B_TRUE if there are any long holds on this dataset. */
639 boolean_t
640 dsl_dataset_long_held(dsl_dataset_t *ds)
641 {
642 	return (!refcount_is_zero(&ds->ds_longholds));
643 }
644 
645 void
646 dsl_dataset_name(dsl_dataset_t *ds, char *name)
647 {
648 	if (ds == NULL) {
649 		(void) strcpy(name, "mos");
650 	} else {
651 		dsl_dir_name(ds->ds_dir, name);
652 		VERIFY0(dsl_dataset_get_snapname(ds));
653 		if (ds->ds_snapname[0]) {
654 			(void) strcat(name, "@");
655 			/*
656 			 * We use a "recursive" mutex so that we
657 			 * can call dprintf_ds() with ds_lock held.
658 			 */
659 			if (!MUTEX_HELD(&ds->ds_lock)) {
660 				mutex_enter(&ds->ds_lock);
661 				VERIFY3U(strlen(name) +
662 					 strlen(ds->ds_snapname) + 1, <=,
663 					 ZFS_MAXNAMELEN);
664 				(void) strcat(name, ds->ds_snapname);
665 				mutex_exit(&ds->ds_lock);
666 			} else {
667 				VERIFY3U(strlen(name) +
668 					 strlen(ds->ds_snapname) + 1, <=,
669 					 ZFS_MAXNAMELEN);
670 				(void) strcat(name, ds->ds_snapname);
671 			}
672 		}
673 	}
674 }
675 
676 void
677 dsl_dataset_rele(dsl_dataset_t *ds, void *tag)
678 {
679 	dmu_buf_rele(ds->ds_dbuf, tag);
680 }
681 
682 void
683 dsl_dataset_disown(dsl_dataset_t *ds, void *tag)
684 {
685 	ASSERT3P(ds->ds_owner, ==, tag);
686 	ASSERT(ds->ds_dbuf != NULL);
687 
688 	mutex_enter(&ds->ds_lock);
689 	ds->ds_owner = NULL;
690 	mutex_exit(&ds->ds_lock);
691 	dsl_dataset_long_rele(ds, tag);
692 	dsl_dataset_rele(ds, tag);
693 }
694 
695 boolean_t
696 dsl_dataset_tryown(dsl_dataset_t *ds, void *tag)
697 {
698 	boolean_t gotit = FALSE;
699 
700 	ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool));
701 	mutex_enter(&ds->ds_lock);
702 	if (ds->ds_owner == NULL && !DS_IS_INCONSISTENT(ds)) {
703 		ds->ds_owner = tag;
704 		dsl_dataset_long_hold(ds, tag);
705 		gotit = TRUE;
706 	}
707 	mutex_exit(&ds->ds_lock);
708 	return (gotit);
709 }
710 
711 boolean_t
712 dsl_dataset_has_owner(dsl_dataset_t *ds)
713 {
714 	boolean_t rv;
715 	mutex_enter(&ds->ds_lock);
716 	rv = (ds->ds_owner != NULL);
717 	mutex_exit(&ds->ds_lock);
718 	return (rv);
719 }
720 
721 static void
722 dsl_dataset_activate_feature(uint64_t dsobj, spa_feature_t f, dmu_tx_t *tx)
723 {
724 	spa_t *spa = dmu_tx_pool(tx)->dp_spa;
725 	objset_t *mos = dmu_tx_pool(tx)->dp_meta_objset;
726 	uint64_t zero = 0;
727 
728 	VERIFY(spa_feature_table[f].fi_flags & ZFEATURE_FLAG_PER_DATASET);
729 
730 	spa_feature_incr(spa, f, tx);
731 	dmu_object_zapify(mos, dsobj, DMU_OT_DSL_DATASET, tx);
732 
733 	VERIFY0(zap_add(mos, dsobj, spa_feature_table[f].fi_guid,
734 	    sizeof (zero), 1, &zero, tx));
735 }
736 
737 void
738 dsl_dataset_deactivate_feature(uint64_t dsobj, spa_feature_t f, dmu_tx_t *tx)
739 {
740 	spa_t *spa = dmu_tx_pool(tx)->dp_spa;
741 	objset_t *mos = dmu_tx_pool(tx)->dp_meta_objset;
742 
743 	VERIFY(spa_feature_table[f].fi_flags & ZFEATURE_FLAG_PER_DATASET);
744 
745 	VERIFY0(zap_remove(mos, dsobj, spa_feature_table[f].fi_guid, tx));
746 	spa_feature_decr(spa, f, tx);
747 }
748 
749 uint64_t
750 dsl_dataset_create_sync_dd(dsl_dir_t *dd, dsl_dataset_t *origin,
751     uint64_t flags, dmu_tx_t *tx)
752 {
753 	dsl_pool_t *dp = dd->dd_pool;
754 	dmu_buf_t *dbuf;
755 	dsl_dataset_phys_t *dsphys;
756 	uint64_t dsobj;
757 	objset_t *mos = dp->dp_meta_objset;
758 
759 	if (origin == NULL)
760 		origin = dp->dp_origin_snap;
761 
762 	ASSERT(origin == NULL || origin->ds_dir->dd_pool == dp);
763 	ASSERT(origin == NULL || dsl_dataset_phys(origin)->ds_num_children > 0);
764 	ASSERT(dmu_tx_is_syncing(tx));
765 	ASSERT(dsl_dir_phys(dd)->dd_head_dataset_obj == 0);
766 
767 	dsobj = dmu_object_alloc(mos, DMU_OT_DSL_DATASET, 0,
768 	    DMU_OT_DSL_DATASET, sizeof (dsl_dataset_phys_t), tx);
769 	VERIFY0(dmu_bonus_hold(mos, dsobj, FTAG, &dbuf));
770 	dmu_buf_will_dirty(dbuf, tx);
771 	dsphys = dbuf->db_data;
772 	bzero(dsphys, sizeof (dsl_dataset_phys_t));
773 	dsphys->ds_dir_obj = dd->dd_object;
774 	dsphys->ds_flags = flags;
775 	dsphys->ds_fsid_guid = unique_create();
776 	(void) random_get_pseudo_bytes((void*)&dsphys->ds_guid,
777 	    sizeof (dsphys->ds_guid));
778 	dsphys->ds_snapnames_zapobj =
779 	    zap_create_norm(mos, U8_TEXTPREP_TOUPPER, DMU_OT_DSL_DS_SNAP_MAP,
780 	    DMU_OT_NONE, 0, tx);
781 	dsphys->ds_creation_time = gethrestime_sec();
782 	dsphys->ds_creation_txg = tx->tx_txg == TXG_INITIAL ? 1 : tx->tx_txg;
783 
784 	if (origin == NULL) {
785 		dsphys->ds_deadlist_obj = dsl_deadlist_alloc(mos, tx);
786 	} else {
787 		dsl_dataset_t *ohds; /* head of the origin snapshot */
788 
789 		dsphys->ds_prev_snap_obj = origin->ds_object;
790 		dsphys->ds_prev_snap_txg =
791 		    dsl_dataset_phys(origin)->ds_creation_txg;
792 		dsphys->ds_referenced_bytes =
793 		    dsl_dataset_phys(origin)->ds_referenced_bytes;
794 		dsphys->ds_compressed_bytes =
795 		    dsl_dataset_phys(origin)->ds_compressed_bytes;
796 		dsphys->ds_uncompressed_bytes =
797 		    dsl_dataset_phys(origin)->ds_uncompressed_bytes;
798 		dsphys->ds_bp = dsl_dataset_phys(origin)->ds_bp;
799 
800 		/*
801 		 * Inherit flags that describe the dataset's contents
802 		 * (INCONSISTENT) or properties (Case Insensitive).
803 		 */
804 		dsphys->ds_flags |= dsl_dataset_phys(origin)->ds_flags &
805 		    (DS_FLAG_INCONSISTENT | DS_FLAG_CI_DATASET);
806 
807 		for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
808 			if (origin->ds_feature_inuse[f])
809 				dsl_dataset_activate_feature(dsobj, f, tx);
810 		}
811 
812 		dmu_buf_will_dirty(origin->ds_dbuf, tx);
813 		dsl_dataset_phys(origin)->ds_num_children++;
814 
815 		VERIFY0(dsl_dataset_hold_obj(dp,
816 		    dsl_dir_phys(origin->ds_dir)->dd_head_dataset_obj,
817 		    FTAG, &ohds));
818 		dsphys->ds_deadlist_obj = dsl_deadlist_clone(&ohds->ds_deadlist,
819 		    dsphys->ds_prev_snap_txg, dsphys->ds_prev_snap_obj, tx);
820 		dsl_dataset_rele(ohds, FTAG);
821 
822 		if (spa_version(dp->dp_spa) >= SPA_VERSION_NEXT_CLONES) {
823 			if (dsl_dataset_phys(origin)->ds_next_clones_obj == 0) {
824 				dsl_dataset_phys(origin)->ds_next_clones_obj =
825 				    zap_create(mos,
826 				    DMU_OT_NEXT_CLONES, DMU_OT_NONE, 0, tx);
827 			}
828 			VERIFY0(zap_add_int(mos,
829 			    dsl_dataset_phys(origin)->ds_next_clones_obj,
830 			    dsobj, tx));
831 		}
832 
833 		dmu_buf_will_dirty(dd->dd_dbuf, tx);
834 		dsl_dir_phys(dd)->dd_origin_obj = origin->ds_object;
835 		if (spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
836 			if (dsl_dir_phys(origin->ds_dir)->dd_clones == 0) {
837 				dmu_buf_will_dirty(origin->ds_dir->dd_dbuf, tx);
838 				dsl_dir_phys(origin->ds_dir)->dd_clones =
839 				    zap_create(mos,
840 				    DMU_OT_DSL_CLONES, DMU_OT_NONE, 0, tx);
841 			}
842 			VERIFY0(zap_add_int(mos,
843 			    dsl_dir_phys(origin->ds_dir)->dd_clones,
844 			    dsobj, tx));
845 		}
846 	}
847 
848 	if (spa_version(dp->dp_spa) >= SPA_VERSION_UNIQUE_ACCURATE)
849 		dsphys->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
850 
851 	dmu_buf_rele(dbuf, FTAG);
852 
853 	dmu_buf_will_dirty(dd->dd_dbuf, tx);
854 	dsl_dir_phys(dd)->dd_head_dataset_obj = dsobj;
855 
856 	return (dsobj);
857 }
858 
859 static void
860 dsl_dataset_zero_zil(dsl_dataset_t *ds, dmu_tx_t *tx)
861 {
862 	objset_t *os;
863 
864 	VERIFY0(dmu_objset_from_ds(ds, &os));
865 	bzero(&os->os_zil_header, sizeof (os->os_zil_header));
866 	dsl_dataset_dirty(ds, tx);
867 }
868 
869 uint64_t
870 dsl_dataset_create_sync(dsl_dir_t *pdd, const char *lastname,
871     dsl_dataset_t *origin, uint64_t flags, cred_t *cr, dmu_tx_t *tx)
872 {
873 	dsl_pool_t *dp = pdd->dd_pool;
874 	uint64_t dsobj, ddobj;
875 	dsl_dir_t *dd;
876 
877 	ASSERT(dmu_tx_is_syncing(tx));
878 	ASSERT(lastname[0] != '@');
879 
880 	ddobj = dsl_dir_create_sync(dp, pdd, lastname, tx);
881 	VERIFY0(dsl_dir_hold_obj(dp, ddobj, lastname, FTAG, &dd));
882 
883 	dsobj = dsl_dataset_create_sync_dd(dd, origin,
884 	    flags & ~DS_CREATE_FLAG_NODIRTY, tx);
885 
886 	dsl_deleg_set_create_perms(dd, tx, cr);
887 
888 	/*
889 	 * Since we're creating a new node we know it's a leaf, so we can
890 	 * initialize the counts if the limit feature is active.
891 	 */
892 	if (spa_feature_is_active(dp->dp_spa, SPA_FEATURE_FS_SS_LIMIT)) {
893 		uint64_t cnt = 0;
894 		objset_t *os = dd->dd_pool->dp_meta_objset;
895 
896 		dsl_dir_zapify(dd, tx);
897 		VERIFY0(zap_add(os, dd->dd_object, DD_FIELD_FILESYSTEM_COUNT,
898 		    sizeof (cnt), 1, &cnt, tx));
899 		VERIFY0(zap_add(os, dd->dd_object, DD_FIELD_SNAPSHOT_COUNT,
900 		    sizeof (cnt), 1, &cnt, tx));
901 	}
902 
903 	dsl_dir_rele(dd, FTAG);
904 
905 	/*
906 	 * If we are creating a clone, make sure we zero out any stale
907 	 * data from the origin snapshots zil header.
908 	 */
909 	if (origin != NULL && !(flags & DS_CREATE_FLAG_NODIRTY)) {
910 		dsl_dataset_t *ds;
911 
912 		VERIFY0(dsl_dataset_hold_obj(dp, dsobj, FTAG, &ds));
913 		dsl_dataset_zero_zil(ds, tx);
914 		dsl_dataset_rele(ds, FTAG);
915 	}
916 
917 	return (dsobj);
918 }
919 
920 /*
921  * The unique space in the head dataset can be calculated by subtracting
922  * the space used in the most recent snapshot, that is still being used
923  * in this file system, from the space currently in use.  To figure out
924  * the space in the most recent snapshot still in use, we need to take
925  * the total space used in the snapshot and subtract out the space that
926  * has been freed up since the snapshot was taken.
927  */
928 void
929 dsl_dataset_recalc_head_uniq(dsl_dataset_t *ds)
930 {
931 	uint64_t mrs_used;
932 	uint64_t dlused, dlcomp, dluncomp;
933 
934 	ASSERT(!ds->ds_is_snapshot);
935 
936 	if (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0)
937 		mrs_used = dsl_dataset_phys(ds->ds_prev)->ds_referenced_bytes;
938 	else
939 		mrs_used = 0;
940 
941 	dsl_deadlist_space(&ds->ds_deadlist, &dlused, &dlcomp, &dluncomp);
942 
943 	ASSERT3U(dlused, <=, mrs_used);
944 	dsl_dataset_phys(ds)->ds_unique_bytes =
945 	    dsl_dataset_phys(ds)->ds_referenced_bytes - (mrs_used - dlused);
946 
947 	if (spa_version(ds->ds_dir->dd_pool->dp_spa) >=
948 	    SPA_VERSION_UNIQUE_ACCURATE)
949 		dsl_dataset_phys(ds)->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
950 }
951 
952 void
953 dsl_dataset_remove_from_next_clones(dsl_dataset_t *ds, uint64_t obj,
954     dmu_tx_t *tx)
955 {
956 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
957 	uint64_t count;
958 	int err;
959 
960 	ASSERT(dsl_dataset_phys(ds)->ds_num_children >= 2);
961 	err = zap_remove_int(mos, dsl_dataset_phys(ds)->ds_next_clones_obj,
962 	    obj, tx);
963 	/*
964 	 * The err should not be ENOENT, but a bug in a previous version
965 	 * of the code could cause upgrade_clones_cb() to not set
966 	 * ds_next_snap_obj when it should, leading to a missing entry.
967 	 * If we knew that the pool was created after
968 	 * SPA_VERSION_NEXT_CLONES, we could assert that it isn't
969 	 * ENOENT.  However, at least we can check that we don't have
970 	 * too many entries in the next_clones_obj even after failing to
971 	 * remove this one.
972 	 */
973 	if (err != ENOENT)
974 		VERIFY0(err);
975 	ASSERT0(zap_count(mos, dsl_dataset_phys(ds)->ds_next_clones_obj,
976 	    &count));
977 	ASSERT3U(count, <=, dsl_dataset_phys(ds)->ds_num_children - 2);
978 }
979 
980 
981 blkptr_t *
982 dsl_dataset_get_blkptr(dsl_dataset_t *ds)
983 {
984 	return (&dsl_dataset_phys(ds)->ds_bp);
985 }
986 
987 void
988 dsl_dataset_set_blkptr(dsl_dataset_t *ds, blkptr_t *bp, dmu_tx_t *tx)
989 {
990 	ASSERT(dmu_tx_is_syncing(tx));
991 	/* If it's the meta-objset, set dp_meta_rootbp */
992 	if (ds == NULL) {
993 		tx->tx_pool->dp_meta_rootbp = *bp;
994 	} else {
995 		dmu_buf_will_dirty(ds->ds_dbuf, tx);
996 		dsl_dataset_phys(ds)->ds_bp = *bp;
997 	}
998 }
999 
1000 spa_t *
1001 dsl_dataset_get_spa(dsl_dataset_t *ds)
1002 {
1003 	return (ds->ds_dir->dd_pool->dp_spa);
1004 }
1005 
1006 void
1007 dsl_dataset_dirty(dsl_dataset_t *ds, dmu_tx_t *tx)
1008 {
1009 	dsl_pool_t *dp;
1010 
1011 	if (ds == NULL) /* this is the meta-objset */
1012 		return;
1013 
1014 	ASSERT(ds->ds_objset != NULL);
1015 
1016 	if (dsl_dataset_phys(ds)->ds_next_snap_obj != 0)
1017 		panic("dirtying snapshot!");
1018 
1019 	dp = ds->ds_dir->dd_pool;
1020 
1021 	if (txg_list_add(&dp->dp_dirty_datasets, ds, tx->tx_txg)) {
1022 		/* up the hold count until we can be written out */
1023 		dmu_buf_add_ref(ds->ds_dbuf, ds);
1024 	}
1025 }
1026 
1027 boolean_t
1028 dsl_dataset_is_dirty(dsl_dataset_t *ds)
1029 {
1030 	for (int t = 0; t < TXG_SIZE; t++) {
1031 		if (txg_list_member(&ds->ds_dir->dd_pool->dp_dirty_datasets,
1032 		    ds, t))
1033 			return (B_TRUE);
1034 	}
1035 	return (B_FALSE);
1036 }
1037 
1038 static int
1039 dsl_dataset_snapshot_reserve_space(dsl_dataset_t *ds, dmu_tx_t *tx)
1040 {
1041 	uint64_t asize;
1042 
1043 	if (!dmu_tx_is_syncing(tx))
1044 		return (0);
1045 
1046 	/*
1047 	 * If there's an fs-only reservation, any blocks that might become
1048 	 * owned by the snapshot dataset must be accommodated by space
1049 	 * outside of the reservation.
1050 	 */
1051 	ASSERT(ds->ds_reserved == 0 || DS_UNIQUE_IS_ACCURATE(ds));
1052 	asize = MIN(dsl_dataset_phys(ds)->ds_unique_bytes, ds->ds_reserved);
1053 	if (asize > dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE))
1054 		return (SET_ERROR(ENOSPC));
1055 
1056 	/*
1057 	 * Propagate any reserved space for this snapshot to other
1058 	 * snapshot checks in this sync group.
1059 	 */
1060 	if (asize > 0)
1061 		dsl_dir_willuse_space(ds->ds_dir, asize, tx);
1062 
1063 	return (0);
1064 }
1065 
1066 typedef struct dsl_dataset_snapshot_arg {
1067 	nvlist_t *ddsa_snaps;
1068 	nvlist_t *ddsa_props;
1069 	nvlist_t *ddsa_errors;
1070 	cred_t *ddsa_cr;
1071 } dsl_dataset_snapshot_arg_t;
1072 
1073 int
1074 dsl_dataset_snapshot_check_impl(dsl_dataset_t *ds, const char *snapname,
1075     dmu_tx_t *tx, boolean_t recv, uint64_t cnt, cred_t *cr)
1076 {
1077 	int error;
1078 	uint64_t value;
1079 
1080 	ds->ds_trysnap_txg = tx->tx_txg;
1081 
1082 	if (!dmu_tx_is_syncing(tx))
1083 		return (0);
1084 
1085 	/*
1086 	 * We don't allow multiple snapshots of the same txg.  If there
1087 	 * is already one, try again.
1088 	 */
1089 	if (dsl_dataset_phys(ds)->ds_prev_snap_txg >= tx->tx_txg)
1090 		return (SET_ERROR(EAGAIN));
1091 
1092 	/*
1093 	 * Check for conflicting snapshot name.
1094 	 */
1095 	error = dsl_dataset_snap_lookup(ds, snapname, &value);
1096 	if (error == 0)
1097 		return (SET_ERROR(EEXIST));
1098 	if (error != ENOENT)
1099 		return (error);
1100 
1101 	/*
1102 	 * We don't allow taking snapshots of inconsistent datasets, such as
1103 	 * those into which we are currently receiving.  However, if we are
1104 	 * creating this snapshot as part of a receive, this check will be
1105 	 * executed atomically with respect to the completion of the receive
1106 	 * itself but prior to the clearing of DS_FLAG_INCONSISTENT; in this
1107 	 * case we ignore this, knowing it will be fixed up for us shortly in
1108 	 * dmu_recv_end_sync().
1109 	 */
1110 	if (!recv && DS_IS_INCONSISTENT(ds))
1111 		return (SET_ERROR(EBUSY));
1112 
1113 	/*
1114 	 * Skip the check for temporary snapshots or if we have already checked
1115 	 * the counts in dsl_dataset_snapshot_check. This means we really only
1116 	 * check the count here when we're receiving a stream.
1117 	 */
1118 	if (cnt != 0 && cr != NULL) {
1119 		error = dsl_fs_ss_limit_check(ds->ds_dir, cnt,
1120 		    ZFS_PROP_SNAPSHOT_LIMIT, NULL, cr);
1121 		if (error != 0)
1122 			return (error);
1123 	}
1124 
1125 	error = dsl_dataset_snapshot_reserve_space(ds, tx);
1126 	if (error != 0)
1127 		return (error);
1128 
1129 	return (0);
1130 }
1131 
1132 static int
1133 dsl_dataset_snapshot_check(void *arg, dmu_tx_t *tx)
1134 {
1135 	dsl_dataset_snapshot_arg_t *ddsa = arg;
1136 	dsl_pool_t *dp = dmu_tx_pool(tx);
1137 	nvpair_t *pair;
1138 	int rv = 0;
1139 
1140 	/*
1141 	 * Pre-compute how many total new snapshots will be created for each
1142 	 * level in the tree and below. This is needed for validating the
1143 	 * snapshot limit when either taking a recursive snapshot or when
1144 	 * taking multiple snapshots.
1145 	 *
1146 	 * The problem is that the counts are not actually adjusted when
1147 	 * we are checking, only when we finally sync. For a single snapshot,
1148 	 * this is easy, the count will increase by 1 at each node up the tree,
1149 	 * but its more complicated for the recursive/multiple snapshot case.
1150 	 *
1151 	 * The dsl_fs_ss_limit_check function does recursively check the count
1152 	 * at each level up the tree but since it is validating each snapshot
1153 	 * independently we need to be sure that we are validating the complete
1154 	 * count for the entire set of snapshots. We do this by rolling up the
1155 	 * counts for each component of the name into an nvlist and then
1156 	 * checking each of those cases with the aggregated count.
1157 	 *
1158 	 * This approach properly handles not only the recursive snapshot
1159 	 * case (where we get all of those on the ddsa_snaps list) but also
1160 	 * the sibling case (e.g. snapshot a/b and a/c so that we will also
1161 	 * validate the limit on 'a' using a count of 2).
1162 	 *
1163 	 * We validate the snapshot names in the third loop and only report
1164 	 * name errors once.
1165 	 */
1166 	if (dmu_tx_is_syncing(tx)) {
1167 		nvlist_t *cnt_track = NULL;
1168 		cnt_track = fnvlist_alloc();
1169 
1170 		/* Rollup aggregated counts into the cnt_track list */
1171 		for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
1172 		    pair != NULL;
1173 		    pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
1174 			char *pdelim;
1175 			uint64_t val;
1176 			char nm[MAXPATHLEN];
1177 
1178 			(void) strlcpy(nm, nvpair_name(pair), sizeof (nm));
1179 			pdelim = strchr(nm, '@');
1180 			if (pdelim == NULL)
1181 				continue;
1182 			*pdelim = '\0';
1183 
1184 			do {
1185 				if (nvlist_lookup_uint64(cnt_track, nm,
1186 				    &val) == 0) {
1187 					/* update existing entry */
1188 					fnvlist_add_uint64(cnt_track, nm,
1189 					    val + 1);
1190 				} else {
1191 					/* add to list */
1192 					fnvlist_add_uint64(cnt_track, nm, 1);
1193 				}
1194 
1195 				pdelim = strrchr(nm, '/');
1196 				if (pdelim != NULL)
1197 					*pdelim = '\0';
1198 			} while (pdelim != NULL);
1199 		}
1200 
1201 		/* Check aggregated counts at each level */
1202 		for (pair = nvlist_next_nvpair(cnt_track, NULL);
1203 		    pair != NULL; pair = nvlist_next_nvpair(cnt_track, pair)) {
1204 			int error = 0;
1205 			char *name;
1206 			uint64_t cnt = 0;
1207 			dsl_dataset_t *ds;
1208 
1209 			name = nvpair_name(pair);
1210 			cnt = fnvpair_value_uint64(pair);
1211 			ASSERT(cnt > 0);
1212 
1213 			error = dsl_dataset_hold(dp, name, FTAG, &ds);
1214 			if (error == 0) {
1215 				error = dsl_fs_ss_limit_check(ds->ds_dir, cnt,
1216 				    ZFS_PROP_SNAPSHOT_LIMIT, NULL,
1217 				    ddsa->ddsa_cr);
1218 				dsl_dataset_rele(ds, FTAG);
1219 			}
1220 
1221 			if (error != 0) {
1222 				if (ddsa->ddsa_errors != NULL)
1223 					fnvlist_add_int32(ddsa->ddsa_errors,
1224 					    name, error);
1225 				rv = error;
1226 				/* only report one error for this check */
1227 				break;
1228 			}
1229 		}
1230 		nvlist_free(cnt_track);
1231 	}
1232 
1233 	for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
1234 	    pair != NULL; pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
1235 		int error = 0;
1236 		dsl_dataset_t *ds;
1237 		char *name, *atp;
1238 		char dsname[MAXNAMELEN];
1239 
1240 		name = nvpair_name(pair);
1241 		if (strlen(name) >= MAXNAMELEN)
1242 			error = SET_ERROR(ENAMETOOLONG);
1243 		if (error == 0) {
1244 			atp = strchr(name, '@');
1245 			if (atp == NULL)
1246 				error = SET_ERROR(EINVAL);
1247 			if (error == 0)
1248 				(void) strlcpy(dsname, name, atp - name + 1);
1249 		}
1250 		if (error == 0)
1251 			error = dsl_dataset_hold(dp, dsname, FTAG, &ds);
1252 		if (error == 0) {
1253 			/* passing 0/NULL skips dsl_fs_ss_limit_check */
1254 			error = dsl_dataset_snapshot_check_impl(ds,
1255 			    atp + 1, tx, B_FALSE, 0, NULL);
1256 			dsl_dataset_rele(ds, FTAG);
1257 		}
1258 
1259 		if (error != 0) {
1260 			if (ddsa->ddsa_errors != NULL) {
1261 				fnvlist_add_int32(ddsa->ddsa_errors,
1262 				    name, error);
1263 			}
1264 			rv = error;
1265 		}
1266 	}
1267 
1268 	return (rv);
1269 }
1270 
1271 void
1272 dsl_dataset_snapshot_sync_impl(dsl_dataset_t *ds, const char *snapname,
1273     dmu_tx_t *tx)
1274 {
1275 	static zil_header_t zero_zil;
1276 
1277 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
1278 	dmu_buf_t *dbuf;
1279 	dsl_dataset_phys_t *dsphys;
1280 	uint64_t dsobj, crtxg;
1281 	objset_t *mos = dp->dp_meta_objset;
1282 	objset_t *os;
1283 
1284 	ASSERT(RRW_WRITE_HELD(&dp->dp_config_rwlock));
1285 
1286 	/*
1287 	 * If we are on an old pool, the zil must not be active, in which
1288 	 * case it will be zeroed.  Usually zil_suspend() accomplishes this.
1289 	 */
1290 	ASSERT(spa_version(dmu_tx_pool(tx)->dp_spa) >= SPA_VERSION_FAST_SNAP ||
1291 	    dmu_objset_from_ds(ds, &os) != 0 ||
1292 	    bcmp(&os->os_phys->os_zil_header, &zero_zil,
1293 	    sizeof (zero_zil)) == 0);
1294 
1295 	dsl_fs_ss_count_adjust(ds->ds_dir, 1, DD_FIELD_SNAPSHOT_COUNT, tx);
1296 
1297 	/*
1298 	 * The origin's ds_creation_txg has to be < TXG_INITIAL
1299 	 */
1300 	if (strcmp(snapname, ORIGIN_DIR_NAME) == 0)
1301 		crtxg = 1;
1302 	else
1303 		crtxg = tx->tx_txg;
1304 
1305 	dsobj = dmu_object_alloc(mos, DMU_OT_DSL_DATASET, 0,
1306 	    DMU_OT_DSL_DATASET, sizeof (dsl_dataset_phys_t), tx);
1307 	VERIFY0(dmu_bonus_hold(mos, dsobj, FTAG, &dbuf));
1308 	dmu_buf_will_dirty(dbuf, tx);
1309 	dsphys = dbuf->db_data;
1310 	bzero(dsphys, sizeof (dsl_dataset_phys_t));
1311 	dsphys->ds_dir_obj = ds->ds_dir->dd_object;
1312 	dsphys->ds_fsid_guid = unique_create();
1313 	(void) random_get_pseudo_bytes((void*)&dsphys->ds_guid,
1314 	    sizeof (dsphys->ds_guid));
1315 	dsphys->ds_prev_snap_obj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
1316 	dsphys->ds_prev_snap_txg = dsl_dataset_phys(ds)->ds_prev_snap_txg;
1317 	dsphys->ds_next_snap_obj = ds->ds_object;
1318 	dsphys->ds_num_children = 1;
1319 	dsphys->ds_creation_time = gethrestime_sec();
1320 	dsphys->ds_creation_txg = crtxg;
1321 	dsphys->ds_deadlist_obj = dsl_dataset_phys(ds)->ds_deadlist_obj;
1322 	dsphys->ds_referenced_bytes = dsl_dataset_phys(ds)->ds_referenced_bytes;
1323 	dsphys->ds_compressed_bytes = dsl_dataset_phys(ds)->ds_compressed_bytes;
1324 	dsphys->ds_uncompressed_bytes =
1325 	    dsl_dataset_phys(ds)->ds_uncompressed_bytes;
1326 	dsphys->ds_flags = dsl_dataset_phys(ds)->ds_flags;
1327 	dsphys->ds_bp = dsl_dataset_phys(ds)->ds_bp;
1328 	dmu_buf_rele(dbuf, FTAG);
1329 
1330 	for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
1331 		if (ds->ds_feature_inuse[f])
1332 			dsl_dataset_activate_feature(dsobj, f, tx);
1333 	}
1334 
1335 	ASSERT3U(ds->ds_prev != 0, ==,
1336 	    dsl_dataset_phys(ds)->ds_prev_snap_obj != 0);
1337 	if (ds->ds_prev) {
1338 		uint64_t next_clones_obj =
1339 		    dsl_dataset_phys(ds->ds_prev)->ds_next_clones_obj;
1340 		ASSERT(dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj ==
1341 		    ds->ds_object ||
1342 		    dsl_dataset_phys(ds->ds_prev)->ds_num_children > 1);
1343 		if (dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj ==
1344 		    ds->ds_object) {
1345 			dmu_buf_will_dirty(ds->ds_prev->ds_dbuf, tx);
1346 			ASSERT3U(dsl_dataset_phys(ds)->ds_prev_snap_txg, ==,
1347 			    dsl_dataset_phys(ds->ds_prev)->ds_creation_txg);
1348 			dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj = dsobj;
1349 		} else if (next_clones_obj != 0) {
1350 			dsl_dataset_remove_from_next_clones(ds->ds_prev,
1351 			    dsphys->ds_next_snap_obj, tx);
1352 			VERIFY0(zap_add_int(mos,
1353 			    next_clones_obj, dsobj, tx));
1354 		}
1355 	}
1356 
1357 	/*
1358 	 * If we have a reference-reservation on this dataset, we will
1359 	 * need to increase the amount of refreservation being charged
1360 	 * since our unique space is going to zero.
1361 	 */
1362 	if (ds->ds_reserved) {
1363 		int64_t delta;
1364 		ASSERT(DS_UNIQUE_IS_ACCURATE(ds));
1365 		delta = MIN(dsl_dataset_phys(ds)->ds_unique_bytes,
1366 		    ds->ds_reserved);
1367 		dsl_dir_diduse_space(ds->ds_dir, DD_USED_REFRSRV,
1368 		    delta, 0, 0, tx);
1369 	}
1370 
1371 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
1372 	dsl_dataset_phys(ds)->ds_deadlist_obj =
1373 	    dsl_deadlist_clone(&ds->ds_deadlist, UINT64_MAX,
1374 	    dsl_dataset_phys(ds)->ds_prev_snap_obj, tx);
1375 	dsl_deadlist_close(&ds->ds_deadlist);
1376 	dsl_deadlist_open(&ds->ds_deadlist, mos,
1377 	    dsl_dataset_phys(ds)->ds_deadlist_obj);
1378 	dsl_deadlist_add_key(&ds->ds_deadlist,
1379 	    dsl_dataset_phys(ds)->ds_prev_snap_txg, tx);
1380 
1381 	ASSERT3U(dsl_dataset_phys(ds)->ds_prev_snap_txg, <, tx->tx_txg);
1382 	dsl_dataset_phys(ds)->ds_prev_snap_obj = dsobj;
1383 	dsl_dataset_phys(ds)->ds_prev_snap_txg = crtxg;
1384 	dsl_dataset_phys(ds)->ds_unique_bytes = 0;
1385 	if (spa_version(dp->dp_spa) >= SPA_VERSION_UNIQUE_ACCURATE)
1386 		dsl_dataset_phys(ds)->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
1387 
1388 	VERIFY0(zap_add(mos, dsl_dataset_phys(ds)->ds_snapnames_zapobj,
1389 	    snapname, 8, 1, &dsobj, tx));
1390 
1391 	if (ds->ds_prev)
1392 		dsl_dataset_rele(ds->ds_prev, ds);
1393 	VERIFY0(dsl_dataset_hold_obj(dp,
1394 	    dsl_dataset_phys(ds)->ds_prev_snap_obj, ds, &ds->ds_prev));
1395 
1396 	dsl_scan_ds_snapshotted(ds, tx);
1397 
1398 	dsl_dir_snap_cmtime_update(ds->ds_dir);
1399 
1400 	spa_history_log_internal_ds(ds->ds_prev, "snapshot", tx, "");
1401 }
1402 
1403 static void
1404 dsl_dataset_snapshot_sync(void *arg, dmu_tx_t *tx)
1405 {
1406 	dsl_dataset_snapshot_arg_t *ddsa = arg;
1407 	dsl_pool_t *dp = dmu_tx_pool(tx);
1408 	nvpair_t *pair;
1409 
1410 	for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
1411 	    pair != NULL; pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
1412 		dsl_dataset_t *ds;
1413 		char *name, *atp;
1414 		char dsname[MAXNAMELEN];
1415 
1416 		name = nvpair_name(pair);
1417 		atp = strchr(name, '@');
1418 		(void) strlcpy(dsname, name, atp - name + 1);
1419 		VERIFY0(dsl_dataset_hold(dp, dsname, FTAG, &ds));
1420 
1421 		dsl_dataset_snapshot_sync_impl(ds, atp + 1, tx);
1422 		if (ddsa->ddsa_props != NULL) {
1423 			dsl_props_set_sync_impl(ds->ds_prev,
1424 			    ZPROP_SRC_LOCAL, ddsa->ddsa_props, tx);
1425 		}
1426 		dsl_dataset_rele(ds, FTAG);
1427 	}
1428 }
1429 
1430 /*
1431  * The snapshots must all be in the same pool.
1432  * All-or-nothing: if there are any failures, nothing will be modified.
1433  */
1434 int
1435 dsl_dataset_snapshot(nvlist_t *snaps, nvlist_t *props, nvlist_t *errors)
1436 {
1437 	dsl_dataset_snapshot_arg_t ddsa;
1438 	nvpair_t *pair;
1439 	boolean_t needsuspend;
1440 	int error;
1441 	spa_t *spa;
1442 	char *firstname;
1443 	nvlist_t *suspended = NULL;
1444 
1445 	pair = nvlist_next_nvpair(snaps, NULL);
1446 	if (pair == NULL)
1447 		return (0);
1448 	firstname = nvpair_name(pair);
1449 
1450 	error = spa_open(firstname, &spa, FTAG);
1451 	if (error != 0)
1452 		return (error);
1453 	needsuspend = (spa_version(spa) < SPA_VERSION_FAST_SNAP);
1454 	spa_close(spa, FTAG);
1455 
1456 	if (needsuspend) {
1457 		suspended = fnvlist_alloc();
1458 		for (pair = nvlist_next_nvpair(snaps, NULL); pair != NULL;
1459 		    pair = nvlist_next_nvpair(snaps, pair)) {
1460 			char fsname[MAXNAMELEN];
1461 			char *snapname = nvpair_name(pair);
1462 			char *atp;
1463 			void *cookie;
1464 
1465 			atp = strchr(snapname, '@');
1466 			if (atp == NULL) {
1467 				error = SET_ERROR(EINVAL);
1468 				break;
1469 			}
1470 			(void) strlcpy(fsname, snapname, atp - snapname + 1);
1471 
1472 			error = zil_suspend(fsname, &cookie);
1473 			if (error != 0)
1474 				break;
1475 			fnvlist_add_uint64(suspended, fsname,
1476 			    (uintptr_t)cookie);
1477 		}
1478 	}
1479 
1480 	ddsa.ddsa_snaps = snaps;
1481 	ddsa.ddsa_props = props;
1482 	ddsa.ddsa_errors = errors;
1483 	ddsa.ddsa_cr = CRED();
1484 
1485 	if (error == 0) {
1486 		error = dsl_sync_task(firstname, dsl_dataset_snapshot_check,
1487 		    dsl_dataset_snapshot_sync, &ddsa,
1488 		    fnvlist_num_pairs(snaps) * 3, ZFS_SPACE_CHECK_NORMAL);
1489 	}
1490 
1491 	if (suspended != NULL) {
1492 		for (pair = nvlist_next_nvpair(suspended, NULL); pair != NULL;
1493 		    pair = nvlist_next_nvpair(suspended, pair)) {
1494 			zil_resume((void *)(uintptr_t)
1495 			    fnvpair_value_uint64(pair));
1496 		}
1497 		fnvlist_free(suspended);
1498 	}
1499 
1500 	return (error);
1501 }
1502 
1503 typedef struct dsl_dataset_snapshot_tmp_arg {
1504 	const char *ddsta_fsname;
1505 	const char *ddsta_snapname;
1506 	minor_t ddsta_cleanup_minor;
1507 	const char *ddsta_htag;
1508 } dsl_dataset_snapshot_tmp_arg_t;
1509 
1510 static int
1511 dsl_dataset_snapshot_tmp_check(void *arg, dmu_tx_t *tx)
1512 {
1513 	dsl_dataset_snapshot_tmp_arg_t *ddsta = arg;
1514 	dsl_pool_t *dp = dmu_tx_pool(tx);
1515 	dsl_dataset_t *ds;
1516 	int error;
1517 
1518 	error = dsl_dataset_hold(dp, ddsta->ddsta_fsname, FTAG, &ds);
1519 	if (error != 0)
1520 		return (error);
1521 
1522 	/* NULL cred means no limit check for tmp snapshot */
1523 	error = dsl_dataset_snapshot_check_impl(ds, ddsta->ddsta_snapname,
1524 	    tx, B_FALSE, 0, NULL);
1525 	if (error != 0) {
1526 		dsl_dataset_rele(ds, FTAG);
1527 		return (error);
1528 	}
1529 
1530 	if (spa_version(dp->dp_spa) < SPA_VERSION_USERREFS) {
1531 		dsl_dataset_rele(ds, FTAG);
1532 		return (SET_ERROR(ENOTSUP));
1533 	}
1534 	error = dsl_dataset_user_hold_check_one(NULL, ddsta->ddsta_htag,
1535 	    B_TRUE, tx);
1536 	if (error != 0) {
1537 		dsl_dataset_rele(ds, FTAG);
1538 		return (error);
1539 	}
1540 
1541 	dsl_dataset_rele(ds, FTAG);
1542 	return (0);
1543 }
1544 
1545 static void
1546 dsl_dataset_snapshot_tmp_sync(void *arg, dmu_tx_t *tx)
1547 {
1548 	dsl_dataset_snapshot_tmp_arg_t *ddsta = arg;
1549 	dsl_pool_t *dp = dmu_tx_pool(tx);
1550 	dsl_dataset_t *ds;
1551 
1552 	VERIFY0(dsl_dataset_hold(dp, ddsta->ddsta_fsname, FTAG, &ds));
1553 
1554 	dsl_dataset_snapshot_sync_impl(ds, ddsta->ddsta_snapname, tx);
1555 	dsl_dataset_user_hold_sync_one(ds->ds_prev, ddsta->ddsta_htag,
1556 	    ddsta->ddsta_cleanup_minor, gethrestime_sec(), tx);
1557 	dsl_destroy_snapshot_sync_impl(ds->ds_prev, B_TRUE, tx);
1558 
1559 	dsl_dataset_rele(ds, FTAG);
1560 }
1561 
1562 int
1563 dsl_dataset_snapshot_tmp(const char *fsname, const char *snapname,
1564     minor_t cleanup_minor, const char *htag)
1565 {
1566 	dsl_dataset_snapshot_tmp_arg_t ddsta;
1567 	int error;
1568 	spa_t *spa;
1569 	boolean_t needsuspend;
1570 	void *cookie;
1571 
1572 	ddsta.ddsta_fsname = fsname;
1573 	ddsta.ddsta_snapname = snapname;
1574 	ddsta.ddsta_cleanup_minor = cleanup_minor;
1575 	ddsta.ddsta_htag = htag;
1576 
1577 	error = spa_open(fsname, &spa, FTAG);
1578 	if (error != 0)
1579 		return (error);
1580 	needsuspend = (spa_version(spa) < SPA_VERSION_FAST_SNAP);
1581 	spa_close(spa, FTAG);
1582 
1583 	if (needsuspend) {
1584 		error = zil_suspend(fsname, &cookie);
1585 		if (error != 0)
1586 			return (error);
1587 	}
1588 
1589 	error = dsl_sync_task(fsname, dsl_dataset_snapshot_tmp_check,
1590 	    dsl_dataset_snapshot_tmp_sync, &ddsta, 3, ZFS_SPACE_CHECK_RESERVED);
1591 
1592 	if (needsuspend)
1593 		zil_resume(cookie);
1594 	return (error);
1595 }
1596 
1597 
1598 void
1599 dsl_dataset_sync(dsl_dataset_t *ds, zio_t *zio, dmu_tx_t *tx)
1600 {
1601 	ASSERT(dmu_tx_is_syncing(tx));
1602 	ASSERT(ds->ds_objset != NULL);
1603 	ASSERT(dsl_dataset_phys(ds)->ds_next_snap_obj == 0);
1604 
1605 	/*
1606 	 * in case we had to change ds_fsid_guid when we opened it,
1607 	 * sync it out now.
1608 	 */
1609 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
1610 	dsl_dataset_phys(ds)->ds_fsid_guid = ds->ds_fsid_guid;
1611 
1612 	if (ds->ds_resume_bytes[tx->tx_txg & TXG_MASK] != 0) {
1613 		VERIFY0(zap_update(tx->tx_pool->dp_meta_objset,
1614 		    ds->ds_object, DS_FIELD_RESUME_OBJECT, 8, 1,
1615 		    &ds->ds_resume_object[tx->tx_txg & TXG_MASK], tx));
1616 		VERIFY0(zap_update(tx->tx_pool->dp_meta_objset,
1617 		    ds->ds_object, DS_FIELD_RESUME_OFFSET, 8, 1,
1618 		    &ds->ds_resume_offset[tx->tx_txg & TXG_MASK], tx));
1619 		VERIFY0(zap_update(tx->tx_pool->dp_meta_objset,
1620 		    ds->ds_object, DS_FIELD_RESUME_BYTES, 8, 1,
1621 		    &ds->ds_resume_bytes[tx->tx_txg & TXG_MASK], tx));
1622 		ds->ds_resume_object[tx->tx_txg & TXG_MASK] = 0;
1623 		ds->ds_resume_offset[tx->tx_txg & TXG_MASK] = 0;
1624 		ds->ds_resume_bytes[tx->tx_txg & TXG_MASK] = 0;
1625 	}
1626 
1627 	dmu_objset_sync(ds->ds_objset, zio, tx);
1628 
1629 	for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
1630 		if (ds->ds_feature_activation_needed[f]) {
1631 			if (ds->ds_feature_inuse[f])
1632 				continue;
1633 			dsl_dataset_activate_feature(ds->ds_object, f, tx);
1634 			ds->ds_feature_inuse[f] = B_TRUE;
1635 		}
1636 	}
1637 }
1638 
1639 static void
1640 get_clones_stat(dsl_dataset_t *ds, nvlist_t *nv)
1641 {
1642 	uint64_t count = 0;
1643 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
1644 	zap_cursor_t zc;
1645 	zap_attribute_t za;
1646 	nvlist_t *propval = fnvlist_alloc();
1647 	nvlist_t *val = fnvlist_alloc();
1648 
1649 	ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool));
1650 
1651 	/*
1652 	 * There may be missing entries in ds_next_clones_obj
1653 	 * due to a bug in a previous version of the code.
1654 	 * Only trust it if it has the right number of entries.
1655 	 */
1656 	if (dsl_dataset_phys(ds)->ds_next_clones_obj != 0) {
1657 		VERIFY0(zap_count(mos, dsl_dataset_phys(ds)->ds_next_clones_obj,
1658 		    &count));
1659 	}
1660 	if (count != dsl_dataset_phys(ds)->ds_num_children - 1)
1661 		goto fail;
1662 	for (zap_cursor_init(&zc, mos,
1663 	    dsl_dataset_phys(ds)->ds_next_clones_obj);
1664 	    zap_cursor_retrieve(&zc, &za) == 0;
1665 	    zap_cursor_advance(&zc)) {
1666 		dsl_dataset_t *clone;
1667 		char buf[ZFS_MAXNAMELEN];
1668 		VERIFY0(dsl_dataset_hold_obj(ds->ds_dir->dd_pool,
1669 		    za.za_first_integer, FTAG, &clone));
1670 		dsl_dir_name(clone->ds_dir, buf);
1671 		fnvlist_add_boolean(val, buf);
1672 		dsl_dataset_rele(clone, FTAG);
1673 	}
1674 	zap_cursor_fini(&zc);
1675 	fnvlist_add_nvlist(propval, ZPROP_VALUE, val);
1676 	fnvlist_add_nvlist(nv, zfs_prop_to_name(ZFS_PROP_CLONES), propval);
1677 fail:
1678 	nvlist_free(val);
1679 	nvlist_free(propval);
1680 }
1681 
1682 static void
1683 get_receive_resume_stats(dsl_dataset_t *ds, nvlist_t *nv)
1684 {
1685 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
1686 
1687 	if (dsl_dataset_has_resume_receive_state(ds)) {
1688 		char *str;
1689 		void *packed;
1690 		uint8_t *compressed;
1691 		uint64_t val;
1692 		nvlist_t *token_nv = fnvlist_alloc();
1693 		size_t packed_size, compressed_size;
1694 
1695 		if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
1696 		    DS_FIELD_RESUME_FROMGUID, sizeof (val), 1, &val) == 0) {
1697 			fnvlist_add_uint64(token_nv, "fromguid", val);
1698 		}
1699 		if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
1700 		    DS_FIELD_RESUME_OBJECT, sizeof (val), 1, &val) == 0) {
1701 			fnvlist_add_uint64(token_nv, "object", val);
1702 		}
1703 		if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
1704 		    DS_FIELD_RESUME_OFFSET, sizeof (val), 1, &val) == 0) {
1705 			fnvlist_add_uint64(token_nv, "offset", val);
1706 		}
1707 		if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
1708 		    DS_FIELD_RESUME_BYTES, sizeof (val), 1, &val) == 0) {
1709 			fnvlist_add_uint64(token_nv, "bytes", val);
1710 		}
1711 		if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
1712 		    DS_FIELD_RESUME_TOGUID, sizeof (val), 1, &val) == 0) {
1713 			fnvlist_add_uint64(token_nv, "toguid", val);
1714 		}
1715 		char buf[256];
1716 		if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
1717 		    DS_FIELD_RESUME_TONAME, 1, sizeof (buf), buf) == 0) {
1718 			fnvlist_add_string(token_nv, "toname", buf);
1719 		}
1720 		if (zap_contains(dp->dp_meta_objset, ds->ds_object,
1721 		    DS_FIELD_RESUME_EMBEDOK) == 0) {
1722 			fnvlist_add_boolean(token_nv, "embedok");
1723 		}
1724 		packed = fnvlist_pack(token_nv, &packed_size);
1725 		fnvlist_free(token_nv);
1726 		compressed = kmem_alloc(packed_size, KM_SLEEP);
1727 
1728 		compressed_size = gzip_compress(packed, compressed,
1729 		    packed_size, packed_size, 6);
1730 
1731 		zio_cksum_t cksum;
1732 		fletcher_4_native(compressed, compressed_size, &cksum);
1733 
1734 		str = kmem_alloc(compressed_size * 2 + 1, KM_SLEEP);
1735 		for (int i = 0; i < compressed_size; i++) {
1736 			(void) sprintf(str + i * 2, "%02x", compressed[i]);
1737 		}
1738 		str[compressed_size * 2] = '\0';
1739 		char *propval = kmem_asprintf("%u-%llx-%llx-%s",
1740 		    ZFS_SEND_RESUME_TOKEN_VERSION,
1741 		    (longlong_t)cksum.zc_word[0],
1742 		    (longlong_t)packed_size, str);
1743 		dsl_prop_nvlist_add_string(nv,
1744 		    ZFS_PROP_RECEIVE_RESUME_TOKEN, propval);
1745 		kmem_free(packed, packed_size);
1746 		kmem_free(str, compressed_size * 2 + 1);
1747 		kmem_free(compressed, packed_size);
1748 		strfree(propval);
1749 	}
1750 }
1751 
1752 void
1753 dsl_dataset_stats(dsl_dataset_t *ds, nvlist_t *nv)
1754 {
1755 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
1756 	uint64_t refd, avail, uobjs, aobjs, ratio;
1757 
1758 	ASSERT(dsl_pool_config_held(dp));
1759 
1760 	ratio = dsl_dataset_phys(ds)->ds_compressed_bytes == 0 ? 100 :
1761 	    (dsl_dataset_phys(ds)->ds_uncompressed_bytes * 100 /
1762 	    dsl_dataset_phys(ds)->ds_compressed_bytes);
1763 
1764 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFRATIO, ratio);
1765 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_LOGICALREFERENCED,
1766 	    dsl_dataset_phys(ds)->ds_uncompressed_bytes);
1767 
1768 	if (ds->ds_is_snapshot) {
1769 		dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_COMPRESSRATIO, ratio);
1770 		dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_USED,
1771 		    dsl_dataset_phys(ds)->ds_unique_bytes);
1772 		get_clones_stat(ds, nv);
1773 	} else {
1774 		if (ds->ds_prev != NULL && ds->ds_prev != dp->dp_origin_snap) {
1775 			char buf[MAXNAMELEN];
1776 			dsl_dataset_name(ds->ds_prev, buf);
1777 			dsl_prop_nvlist_add_string(nv, ZFS_PROP_PREV_SNAP, buf);
1778 		}
1779 
1780 		dsl_dir_stats(ds->ds_dir, nv);
1781 	}
1782 
1783 	dsl_dataset_space(ds, &refd, &avail, &uobjs, &aobjs);
1784 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_AVAILABLE, avail);
1785 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFERENCED, refd);
1786 
1787 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_CREATION,
1788 	    dsl_dataset_phys(ds)->ds_creation_time);
1789 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_CREATETXG,
1790 	    dsl_dataset_phys(ds)->ds_creation_txg);
1791 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFQUOTA,
1792 	    ds->ds_quota);
1793 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFRESERVATION,
1794 	    ds->ds_reserved);
1795 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_GUID,
1796 	    dsl_dataset_phys(ds)->ds_guid);
1797 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_UNIQUE,
1798 	    dsl_dataset_phys(ds)->ds_unique_bytes);
1799 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_OBJSETID,
1800 	    ds->ds_object);
1801 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_USERREFS,
1802 	    ds->ds_userrefs);
1803 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_DEFER_DESTROY,
1804 	    DS_IS_DEFER_DESTROY(ds) ? 1 : 0);
1805 
1806 	if (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0) {
1807 		uint64_t written, comp, uncomp;
1808 		dsl_pool_t *dp = ds->ds_dir->dd_pool;
1809 		dsl_dataset_t *prev;
1810 
1811 		int err = dsl_dataset_hold_obj(dp,
1812 		    dsl_dataset_phys(ds)->ds_prev_snap_obj, FTAG, &prev);
1813 		if (err == 0) {
1814 			err = dsl_dataset_space_written(prev, ds, &written,
1815 			    &comp, &uncomp);
1816 			dsl_dataset_rele(prev, FTAG);
1817 			if (err == 0) {
1818 				dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_WRITTEN,
1819 				    written);
1820 			}
1821 		}
1822 	}
1823 
1824 	if (!dsl_dataset_is_snapshot(ds)) {
1825 		/*
1826 		 * A failed "newfs" (e.g. full) resumable receive leaves
1827 		 * the stats set on this dataset.  Check here for the prop.
1828 		 */
1829 		get_receive_resume_stats(ds, nv);
1830 
1831 		/*
1832 		 * A failed incremental resumable receive leaves the
1833 		 * stats set on our child named "%recv".  Check the child
1834 		 * for the prop.
1835 		 */
1836 		char recvname[ZFS_MAXNAMELEN];
1837 		dsl_dataset_t *recv_ds;
1838 		dsl_dataset_name(ds, recvname);
1839 		(void) strcat(recvname, "/");
1840 		(void) strcat(recvname, recv_clone_name);
1841 		if (dsl_dataset_hold(dp, recvname, FTAG, &recv_ds) == 0) {
1842 			get_receive_resume_stats(recv_ds, nv);
1843 			dsl_dataset_rele(recv_ds, FTAG);
1844 		}
1845 	}
1846 }
1847 
1848 void
1849 dsl_dataset_fast_stat(dsl_dataset_t *ds, dmu_objset_stats_t *stat)
1850 {
1851 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
1852 	ASSERT(dsl_pool_config_held(dp));
1853 
1854 	stat->dds_creation_txg = dsl_dataset_phys(ds)->ds_creation_txg;
1855 	stat->dds_inconsistent =
1856 	    dsl_dataset_phys(ds)->ds_flags & DS_FLAG_INCONSISTENT;
1857 	stat->dds_guid = dsl_dataset_phys(ds)->ds_guid;
1858 	stat->dds_origin[0] = '\0';
1859 	if (ds->ds_is_snapshot) {
1860 		stat->dds_is_snapshot = B_TRUE;
1861 		stat->dds_num_clones =
1862 		    dsl_dataset_phys(ds)->ds_num_children - 1;
1863 	} else {
1864 		stat->dds_is_snapshot = B_FALSE;
1865 		stat->dds_num_clones = 0;
1866 
1867 		if (dsl_dir_is_clone(ds->ds_dir)) {
1868 			dsl_dataset_t *ods;
1869 
1870 			VERIFY0(dsl_dataset_hold_obj(dp,
1871 			    dsl_dir_phys(ds->ds_dir)->dd_origin_obj,
1872 			    FTAG, &ods));
1873 			dsl_dataset_name(ods, stat->dds_origin);
1874 			dsl_dataset_rele(ods, FTAG);
1875 		}
1876 	}
1877 }
1878 
1879 uint64_t
1880 dsl_dataset_fsid_guid(dsl_dataset_t *ds)
1881 {
1882 	return (ds->ds_fsid_guid);
1883 }
1884 
1885 void
1886 dsl_dataset_space(dsl_dataset_t *ds,
1887     uint64_t *refdbytesp, uint64_t *availbytesp,
1888     uint64_t *usedobjsp, uint64_t *availobjsp)
1889 {
1890 	*refdbytesp = dsl_dataset_phys(ds)->ds_referenced_bytes;
1891 	*availbytesp = dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE);
1892 	if (ds->ds_reserved > dsl_dataset_phys(ds)->ds_unique_bytes)
1893 		*availbytesp +=
1894 		    ds->ds_reserved - dsl_dataset_phys(ds)->ds_unique_bytes;
1895 	if (ds->ds_quota != 0) {
1896 		/*
1897 		 * Adjust available bytes according to refquota
1898 		 */
1899 		if (*refdbytesp < ds->ds_quota)
1900 			*availbytesp = MIN(*availbytesp,
1901 			    ds->ds_quota - *refdbytesp);
1902 		else
1903 			*availbytesp = 0;
1904 	}
1905 	*usedobjsp = BP_GET_FILL(&dsl_dataset_phys(ds)->ds_bp);
1906 	*availobjsp = DN_MAX_OBJECT - *usedobjsp;
1907 }
1908 
1909 boolean_t
1910 dsl_dataset_modified_since_snap(dsl_dataset_t *ds, dsl_dataset_t *snap)
1911 {
1912 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
1913 
1914 	ASSERT(dsl_pool_config_held(dp));
1915 	if (snap == NULL)
1916 		return (B_FALSE);
1917 	if (dsl_dataset_phys(ds)->ds_bp.blk_birth >
1918 	    dsl_dataset_phys(snap)->ds_creation_txg) {
1919 		objset_t *os, *os_snap;
1920 		/*
1921 		 * It may be that only the ZIL differs, because it was
1922 		 * reset in the head.  Don't count that as being
1923 		 * modified.
1924 		 */
1925 		if (dmu_objset_from_ds(ds, &os) != 0)
1926 			return (B_TRUE);
1927 		if (dmu_objset_from_ds(snap, &os_snap) != 0)
1928 			return (B_TRUE);
1929 		return (bcmp(&os->os_phys->os_meta_dnode,
1930 		    &os_snap->os_phys->os_meta_dnode,
1931 		    sizeof (os->os_phys->os_meta_dnode)) != 0);
1932 	}
1933 	return (B_FALSE);
1934 }
1935 
1936 typedef struct dsl_dataset_rename_snapshot_arg {
1937 	const char *ddrsa_fsname;
1938 	const char *ddrsa_oldsnapname;
1939 	const char *ddrsa_newsnapname;
1940 	boolean_t ddrsa_recursive;
1941 	dmu_tx_t *ddrsa_tx;
1942 } dsl_dataset_rename_snapshot_arg_t;
1943 
1944 /* ARGSUSED */
1945 static int
1946 dsl_dataset_rename_snapshot_check_impl(dsl_pool_t *dp,
1947     dsl_dataset_t *hds, void *arg)
1948 {
1949 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
1950 	int error;
1951 	uint64_t val;
1952 
1953 	error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_oldsnapname, &val);
1954 	if (error != 0) {
1955 		/* ignore nonexistent snapshots */
1956 		return (error == ENOENT ? 0 : error);
1957 	}
1958 
1959 	/* new name should not exist */
1960 	error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_newsnapname, &val);
1961 	if (error == 0)
1962 		error = SET_ERROR(EEXIST);
1963 	else if (error == ENOENT)
1964 		error = 0;
1965 
1966 	/* dataset name + 1 for the "@" + the new snapshot name must fit */
1967 	if (dsl_dir_namelen(hds->ds_dir) + 1 +
1968 	    strlen(ddrsa->ddrsa_newsnapname) >= MAXNAMELEN)
1969 		error = SET_ERROR(ENAMETOOLONG);
1970 
1971 	return (error);
1972 }
1973 
1974 static int
1975 dsl_dataset_rename_snapshot_check(void *arg, dmu_tx_t *tx)
1976 {
1977 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
1978 	dsl_pool_t *dp = dmu_tx_pool(tx);
1979 	dsl_dataset_t *hds;
1980 	int error;
1981 
1982 	error = dsl_dataset_hold(dp, ddrsa->ddrsa_fsname, FTAG, &hds);
1983 	if (error != 0)
1984 		return (error);
1985 
1986 	if (ddrsa->ddrsa_recursive) {
1987 		error = dmu_objset_find_dp(dp, hds->ds_dir->dd_object,
1988 		    dsl_dataset_rename_snapshot_check_impl, ddrsa,
1989 		    DS_FIND_CHILDREN);
1990 	} else {
1991 		error = dsl_dataset_rename_snapshot_check_impl(dp, hds, ddrsa);
1992 	}
1993 	dsl_dataset_rele(hds, FTAG);
1994 	return (error);
1995 }
1996 
1997 static int
1998 dsl_dataset_rename_snapshot_sync_impl(dsl_pool_t *dp,
1999     dsl_dataset_t *hds, void *arg)
2000 {
2001 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
2002 	dsl_dataset_t *ds;
2003 	uint64_t val;
2004 	dmu_tx_t *tx = ddrsa->ddrsa_tx;
2005 	int error;
2006 
2007 	error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_oldsnapname, &val);
2008 	ASSERT(error == 0 || error == ENOENT);
2009 	if (error == ENOENT) {
2010 		/* ignore nonexistent snapshots */
2011 		return (0);
2012 	}
2013 
2014 	VERIFY0(dsl_dataset_hold_obj(dp, val, FTAG, &ds));
2015 
2016 	/* log before we change the name */
2017 	spa_history_log_internal_ds(ds, "rename", tx,
2018 	    "-> @%s", ddrsa->ddrsa_newsnapname);
2019 
2020 	VERIFY0(dsl_dataset_snap_remove(hds, ddrsa->ddrsa_oldsnapname, tx,
2021 	    B_FALSE));
2022 	mutex_enter(&ds->ds_lock);
2023 	(void) strcpy(ds->ds_snapname, ddrsa->ddrsa_newsnapname);
2024 	mutex_exit(&ds->ds_lock);
2025 	VERIFY0(zap_add(dp->dp_meta_objset,
2026 	    dsl_dataset_phys(hds)->ds_snapnames_zapobj,
2027 	    ds->ds_snapname, 8, 1, &ds->ds_object, tx));
2028 
2029 	dsl_dataset_rele(ds, FTAG);
2030 	return (0);
2031 }
2032 
2033 static void
2034 dsl_dataset_rename_snapshot_sync(void *arg, dmu_tx_t *tx)
2035 {
2036 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
2037 	dsl_pool_t *dp = dmu_tx_pool(tx);
2038 	dsl_dataset_t *hds;
2039 
2040 	VERIFY0(dsl_dataset_hold(dp, ddrsa->ddrsa_fsname, FTAG, &hds));
2041 	ddrsa->ddrsa_tx = tx;
2042 	if (ddrsa->ddrsa_recursive) {
2043 		VERIFY0(dmu_objset_find_dp(dp, hds->ds_dir->dd_object,
2044 		    dsl_dataset_rename_snapshot_sync_impl, ddrsa,
2045 		    DS_FIND_CHILDREN));
2046 	} else {
2047 		VERIFY0(dsl_dataset_rename_snapshot_sync_impl(dp, hds, ddrsa));
2048 	}
2049 	dsl_dataset_rele(hds, FTAG);
2050 }
2051 
2052 int
2053 dsl_dataset_rename_snapshot(const char *fsname,
2054     const char *oldsnapname, const char *newsnapname, boolean_t recursive)
2055 {
2056 	dsl_dataset_rename_snapshot_arg_t ddrsa;
2057 
2058 	ddrsa.ddrsa_fsname = fsname;
2059 	ddrsa.ddrsa_oldsnapname = oldsnapname;
2060 	ddrsa.ddrsa_newsnapname = newsnapname;
2061 	ddrsa.ddrsa_recursive = recursive;
2062 
2063 	return (dsl_sync_task(fsname, dsl_dataset_rename_snapshot_check,
2064 	    dsl_dataset_rename_snapshot_sync, &ddrsa,
2065 	    1, ZFS_SPACE_CHECK_RESERVED));
2066 }
2067 
2068 /*
2069  * If we're doing an ownership handoff, we need to make sure that there is
2070  * only one long hold on the dataset.  We're not allowed to change anything here
2071  * so we don't permanently release the long hold or regular hold here.  We want
2072  * to do this only when syncing to avoid the dataset unexpectedly going away
2073  * when we release the long hold.
2074  */
2075 static int
2076 dsl_dataset_handoff_check(dsl_dataset_t *ds, void *owner, dmu_tx_t *tx)
2077 {
2078 	boolean_t held;
2079 
2080 	if (!dmu_tx_is_syncing(tx))
2081 		return (0);
2082 
2083 	if (owner != NULL) {
2084 		VERIFY3P(ds->ds_owner, ==, owner);
2085 		dsl_dataset_long_rele(ds, owner);
2086 	}
2087 
2088 	held = dsl_dataset_long_held(ds);
2089 
2090 	if (owner != NULL)
2091 		dsl_dataset_long_hold(ds, owner);
2092 
2093 	if (held)
2094 		return (SET_ERROR(EBUSY));
2095 
2096 	return (0);
2097 }
2098 
2099 typedef struct dsl_dataset_rollback_arg {
2100 	const char *ddra_fsname;
2101 	void *ddra_owner;
2102 	nvlist_t *ddra_result;
2103 } dsl_dataset_rollback_arg_t;
2104 
2105 static int
2106 dsl_dataset_rollback_check(void *arg, dmu_tx_t *tx)
2107 {
2108 	dsl_dataset_rollback_arg_t *ddra = arg;
2109 	dsl_pool_t *dp = dmu_tx_pool(tx);
2110 	dsl_dataset_t *ds;
2111 	int64_t unused_refres_delta;
2112 	int error;
2113 
2114 	error = dsl_dataset_hold(dp, ddra->ddra_fsname, FTAG, &ds);
2115 	if (error != 0)
2116 		return (error);
2117 
2118 	/* must not be a snapshot */
2119 	if (ds->ds_is_snapshot) {
2120 		dsl_dataset_rele(ds, FTAG);
2121 		return (SET_ERROR(EINVAL));
2122 	}
2123 
2124 	/* must have a most recent snapshot */
2125 	if (dsl_dataset_phys(ds)->ds_prev_snap_txg < TXG_INITIAL) {
2126 		dsl_dataset_rele(ds, FTAG);
2127 		return (SET_ERROR(EINVAL));
2128 	}
2129 
2130 	/* must not have any bookmarks after the most recent snapshot */
2131 	nvlist_t *proprequest = fnvlist_alloc();
2132 	fnvlist_add_boolean(proprequest, zfs_prop_to_name(ZFS_PROP_CREATETXG));
2133 	nvlist_t *bookmarks = fnvlist_alloc();
2134 	error = dsl_get_bookmarks_impl(ds, proprequest, bookmarks);
2135 	fnvlist_free(proprequest);
2136 	if (error != 0)
2137 		return (error);
2138 	for (nvpair_t *pair = nvlist_next_nvpair(bookmarks, NULL);
2139 	    pair != NULL; pair = nvlist_next_nvpair(bookmarks, pair)) {
2140 		nvlist_t *valuenv =
2141 		    fnvlist_lookup_nvlist(fnvpair_value_nvlist(pair),
2142 		    zfs_prop_to_name(ZFS_PROP_CREATETXG));
2143 		uint64_t createtxg = fnvlist_lookup_uint64(valuenv, "value");
2144 		if (createtxg > dsl_dataset_phys(ds)->ds_prev_snap_txg) {
2145 			fnvlist_free(bookmarks);
2146 			dsl_dataset_rele(ds, FTAG);
2147 			return (SET_ERROR(EEXIST));
2148 		}
2149 	}
2150 	fnvlist_free(bookmarks);
2151 
2152 	error = dsl_dataset_handoff_check(ds, ddra->ddra_owner, tx);
2153 	if (error != 0) {
2154 		dsl_dataset_rele(ds, FTAG);
2155 		return (error);
2156 	}
2157 
2158 	/*
2159 	 * Check if the snap we are rolling back to uses more than
2160 	 * the refquota.
2161 	 */
2162 	if (ds->ds_quota != 0 &&
2163 	    dsl_dataset_phys(ds->ds_prev)->ds_referenced_bytes > ds->ds_quota) {
2164 		dsl_dataset_rele(ds, FTAG);
2165 		return (SET_ERROR(EDQUOT));
2166 	}
2167 
2168 	/*
2169 	 * When we do the clone swap, we will temporarily use more space
2170 	 * due to the refreservation (the head will no longer have any
2171 	 * unique space, so the entire amount of the refreservation will need
2172 	 * to be free).  We will immediately destroy the clone, freeing
2173 	 * this space, but the freeing happens over many txg's.
2174 	 */
2175 	unused_refres_delta = (int64_t)MIN(ds->ds_reserved,
2176 	    dsl_dataset_phys(ds)->ds_unique_bytes);
2177 
2178 	if (unused_refres_delta > 0 &&
2179 	    unused_refres_delta >
2180 	    dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE)) {
2181 		dsl_dataset_rele(ds, FTAG);
2182 		return (SET_ERROR(ENOSPC));
2183 	}
2184 
2185 	dsl_dataset_rele(ds, FTAG);
2186 	return (0);
2187 }
2188 
2189 static void
2190 dsl_dataset_rollback_sync(void *arg, dmu_tx_t *tx)
2191 {
2192 	dsl_dataset_rollback_arg_t *ddra = arg;
2193 	dsl_pool_t *dp = dmu_tx_pool(tx);
2194 	dsl_dataset_t *ds, *clone;
2195 	uint64_t cloneobj;
2196 	char namebuf[ZFS_MAXNAMELEN];
2197 
2198 	VERIFY0(dsl_dataset_hold(dp, ddra->ddra_fsname, FTAG, &ds));
2199 
2200 	dsl_dataset_name(ds->ds_prev, namebuf);
2201 	fnvlist_add_string(ddra->ddra_result, "target", namebuf);
2202 
2203 	cloneobj = dsl_dataset_create_sync(ds->ds_dir, "%rollback",
2204 	    ds->ds_prev, DS_CREATE_FLAG_NODIRTY, kcred, tx);
2205 
2206 	VERIFY0(dsl_dataset_hold_obj(dp, cloneobj, FTAG, &clone));
2207 
2208 	dsl_dataset_clone_swap_sync_impl(clone, ds, tx);
2209 	dsl_dataset_zero_zil(ds, tx);
2210 
2211 	dsl_destroy_head_sync_impl(clone, tx);
2212 
2213 	dsl_dataset_rele(clone, FTAG);
2214 	dsl_dataset_rele(ds, FTAG);
2215 }
2216 
2217 /*
2218  * Rolls back the given filesystem or volume to the most recent snapshot.
2219  * The name of the most recent snapshot will be returned under key "target"
2220  * in the result nvlist.
2221  *
2222  * If owner != NULL:
2223  * - The existing dataset MUST be owned by the specified owner at entry
2224  * - Upon return, dataset will still be held by the same owner, whether we
2225  *   succeed or not.
2226  *
2227  * This mode is required any time the existing filesystem is mounted.  See
2228  * notes above zfs_suspend_fs() for further details.
2229  */
2230 int
2231 dsl_dataset_rollback(const char *fsname, void *owner, nvlist_t *result)
2232 {
2233 	dsl_dataset_rollback_arg_t ddra;
2234 
2235 	ddra.ddra_fsname = fsname;
2236 	ddra.ddra_owner = owner;
2237 	ddra.ddra_result = result;
2238 
2239 	return (dsl_sync_task(fsname, dsl_dataset_rollback_check,
2240 	    dsl_dataset_rollback_sync, &ddra,
2241 	    1, ZFS_SPACE_CHECK_RESERVED));
2242 }
2243 
2244 struct promotenode {
2245 	list_node_t link;
2246 	dsl_dataset_t *ds;
2247 };
2248 
2249 typedef struct dsl_dataset_promote_arg {
2250 	const char *ddpa_clonename;
2251 	dsl_dataset_t *ddpa_clone;
2252 	list_t shared_snaps, origin_snaps, clone_snaps;
2253 	dsl_dataset_t *origin_origin; /* origin of the origin */
2254 	uint64_t used, comp, uncomp, unique, cloneusedsnap, originusedsnap;
2255 	char *err_ds;
2256 	cred_t *cr;
2257 } dsl_dataset_promote_arg_t;
2258 
2259 static int snaplist_space(list_t *l, uint64_t mintxg, uint64_t *spacep);
2260 static int promote_hold(dsl_dataset_promote_arg_t *ddpa, dsl_pool_t *dp,
2261     void *tag);
2262 static void promote_rele(dsl_dataset_promote_arg_t *ddpa, void *tag);
2263 
2264 static int
2265 dsl_dataset_promote_check(void *arg, dmu_tx_t *tx)
2266 {
2267 	dsl_dataset_promote_arg_t *ddpa = arg;
2268 	dsl_pool_t *dp = dmu_tx_pool(tx);
2269 	dsl_dataset_t *hds;
2270 	struct promotenode *snap;
2271 	dsl_dataset_t *origin_ds;
2272 	int err;
2273 	uint64_t unused;
2274 	uint64_t ss_mv_cnt;
2275 	size_t max_snap_len;
2276 
2277 	err = promote_hold(ddpa, dp, FTAG);
2278 	if (err != 0)
2279 		return (err);
2280 
2281 	hds = ddpa->ddpa_clone;
2282 	max_snap_len = MAXNAMELEN - strlen(ddpa->ddpa_clonename) - 1;
2283 
2284 	if (dsl_dataset_phys(hds)->ds_flags & DS_FLAG_NOPROMOTE) {
2285 		promote_rele(ddpa, FTAG);
2286 		return (SET_ERROR(EXDEV));
2287 	}
2288 
2289 	/*
2290 	 * Compute and check the amount of space to transfer.  Since this is
2291 	 * so expensive, don't do the preliminary check.
2292 	 */
2293 	if (!dmu_tx_is_syncing(tx)) {
2294 		promote_rele(ddpa, FTAG);
2295 		return (0);
2296 	}
2297 
2298 	snap = list_head(&ddpa->shared_snaps);
2299 	origin_ds = snap->ds;
2300 
2301 	/* compute origin's new unique space */
2302 	snap = list_tail(&ddpa->clone_snaps);
2303 	ASSERT3U(dsl_dataset_phys(snap->ds)->ds_prev_snap_obj, ==,
2304 	    origin_ds->ds_object);
2305 	dsl_deadlist_space_range(&snap->ds->ds_deadlist,
2306 	    dsl_dataset_phys(origin_ds)->ds_prev_snap_txg, UINT64_MAX,
2307 	    &ddpa->unique, &unused, &unused);
2308 
2309 	/*
2310 	 * Walk the snapshots that we are moving
2311 	 *
2312 	 * Compute space to transfer.  Consider the incremental changes
2313 	 * to used by each snapshot:
2314 	 * (my used) = (prev's used) + (blocks born) - (blocks killed)
2315 	 * So each snapshot gave birth to:
2316 	 * (blocks born) = (my used) - (prev's used) + (blocks killed)
2317 	 * So a sequence would look like:
2318 	 * (uN - u(N-1) + kN) + ... + (u1 - u0 + k1) + (u0 - 0 + k0)
2319 	 * Which simplifies to:
2320 	 * uN + kN + kN-1 + ... + k1 + k0
2321 	 * Note however, if we stop before we reach the ORIGIN we get:
2322 	 * uN + kN + kN-1 + ... + kM - uM-1
2323 	 */
2324 	ss_mv_cnt = 0;
2325 	ddpa->used = dsl_dataset_phys(origin_ds)->ds_referenced_bytes;
2326 	ddpa->comp = dsl_dataset_phys(origin_ds)->ds_compressed_bytes;
2327 	ddpa->uncomp = dsl_dataset_phys(origin_ds)->ds_uncompressed_bytes;
2328 	for (snap = list_head(&ddpa->shared_snaps); snap;
2329 	    snap = list_next(&ddpa->shared_snaps, snap)) {
2330 		uint64_t val, dlused, dlcomp, dluncomp;
2331 		dsl_dataset_t *ds = snap->ds;
2332 
2333 		ss_mv_cnt++;
2334 
2335 		/*
2336 		 * If there are long holds, we won't be able to evict
2337 		 * the objset.
2338 		 */
2339 		if (dsl_dataset_long_held(ds)) {
2340 			err = SET_ERROR(EBUSY);
2341 			goto out;
2342 		}
2343 
2344 		/* Check that the snapshot name does not conflict */
2345 		VERIFY0(dsl_dataset_get_snapname(ds));
2346 		if (strlen(ds->ds_snapname) >= max_snap_len) {
2347 			err = SET_ERROR(ENAMETOOLONG);
2348 			goto out;
2349 		}
2350 		err = dsl_dataset_snap_lookup(hds, ds->ds_snapname, &val);
2351 		if (err == 0) {
2352 			(void) strcpy(ddpa->err_ds, snap->ds->ds_snapname);
2353 			err = SET_ERROR(EEXIST);
2354 			goto out;
2355 		}
2356 		if (err != ENOENT)
2357 			goto out;
2358 
2359 		/* The very first snapshot does not have a deadlist */
2360 		if (dsl_dataset_phys(ds)->ds_prev_snap_obj == 0)
2361 			continue;
2362 
2363 		dsl_deadlist_space(&ds->ds_deadlist,
2364 		    &dlused, &dlcomp, &dluncomp);
2365 		ddpa->used += dlused;
2366 		ddpa->comp += dlcomp;
2367 		ddpa->uncomp += dluncomp;
2368 	}
2369 
2370 	/*
2371 	 * If we are a clone of a clone then we never reached ORIGIN,
2372 	 * so we need to subtract out the clone origin's used space.
2373 	 */
2374 	if (ddpa->origin_origin) {
2375 		ddpa->used -=
2376 		    dsl_dataset_phys(ddpa->origin_origin)->ds_referenced_bytes;
2377 		ddpa->comp -=
2378 		    dsl_dataset_phys(ddpa->origin_origin)->ds_compressed_bytes;
2379 		ddpa->uncomp -=
2380 		    dsl_dataset_phys(ddpa->origin_origin)->
2381 		    ds_uncompressed_bytes;
2382 	}
2383 
2384 	/* Check that there is enough space and limit headroom here */
2385 	err = dsl_dir_transfer_possible(origin_ds->ds_dir, hds->ds_dir,
2386 	    0, ss_mv_cnt, ddpa->used, ddpa->cr);
2387 	if (err != 0)
2388 		goto out;
2389 
2390 	/*
2391 	 * Compute the amounts of space that will be used by snapshots
2392 	 * after the promotion (for both origin and clone).  For each,
2393 	 * it is the amount of space that will be on all of their
2394 	 * deadlists (that was not born before their new origin).
2395 	 */
2396 	if (dsl_dir_phys(hds->ds_dir)->dd_flags & DD_FLAG_USED_BREAKDOWN) {
2397 		uint64_t space;
2398 
2399 		/*
2400 		 * Note, typically this will not be a clone of a clone,
2401 		 * so dd_origin_txg will be < TXG_INITIAL, so
2402 		 * these snaplist_space() -> dsl_deadlist_space_range()
2403 		 * calls will be fast because they do not have to
2404 		 * iterate over all bps.
2405 		 */
2406 		snap = list_head(&ddpa->origin_snaps);
2407 		err = snaplist_space(&ddpa->shared_snaps,
2408 		    snap->ds->ds_dir->dd_origin_txg, &ddpa->cloneusedsnap);
2409 		if (err != 0)
2410 			goto out;
2411 
2412 		err = snaplist_space(&ddpa->clone_snaps,
2413 		    snap->ds->ds_dir->dd_origin_txg, &space);
2414 		if (err != 0)
2415 			goto out;
2416 		ddpa->cloneusedsnap += space;
2417 	}
2418 	if (dsl_dir_phys(origin_ds->ds_dir)->dd_flags &
2419 	    DD_FLAG_USED_BREAKDOWN) {
2420 		err = snaplist_space(&ddpa->origin_snaps,
2421 		    dsl_dataset_phys(origin_ds)->ds_creation_txg,
2422 		    &ddpa->originusedsnap);
2423 		if (err != 0)
2424 			goto out;
2425 	}
2426 
2427 out:
2428 	promote_rele(ddpa, FTAG);
2429 	return (err);
2430 }
2431 
2432 static void
2433 dsl_dataset_promote_sync(void *arg, dmu_tx_t *tx)
2434 {
2435 	dsl_dataset_promote_arg_t *ddpa = arg;
2436 	dsl_pool_t *dp = dmu_tx_pool(tx);
2437 	dsl_dataset_t *hds;
2438 	struct promotenode *snap;
2439 	dsl_dataset_t *origin_ds;
2440 	dsl_dataset_t *origin_head;
2441 	dsl_dir_t *dd;
2442 	dsl_dir_t *odd = NULL;
2443 	uint64_t oldnext_obj;
2444 	int64_t delta;
2445 
2446 	VERIFY0(promote_hold(ddpa, dp, FTAG));
2447 	hds = ddpa->ddpa_clone;
2448 
2449 	ASSERT0(dsl_dataset_phys(hds)->ds_flags & DS_FLAG_NOPROMOTE);
2450 
2451 	snap = list_head(&ddpa->shared_snaps);
2452 	origin_ds = snap->ds;
2453 	dd = hds->ds_dir;
2454 
2455 	snap = list_head(&ddpa->origin_snaps);
2456 	origin_head = snap->ds;
2457 
2458 	/*
2459 	 * We need to explicitly open odd, since origin_ds's dd will be
2460 	 * changing.
2461 	 */
2462 	VERIFY0(dsl_dir_hold_obj(dp, origin_ds->ds_dir->dd_object,
2463 	    NULL, FTAG, &odd));
2464 
2465 	/* change origin's next snap */
2466 	dmu_buf_will_dirty(origin_ds->ds_dbuf, tx);
2467 	oldnext_obj = dsl_dataset_phys(origin_ds)->ds_next_snap_obj;
2468 	snap = list_tail(&ddpa->clone_snaps);
2469 	ASSERT3U(dsl_dataset_phys(snap->ds)->ds_prev_snap_obj, ==,
2470 	    origin_ds->ds_object);
2471 	dsl_dataset_phys(origin_ds)->ds_next_snap_obj = snap->ds->ds_object;
2472 
2473 	/* change the origin's next clone */
2474 	if (dsl_dataset_phys(origin_ds)->ds_next_clones_obj) {
2475 		dsl_dataset_remove_from_next_clones(origin_ds,
2476 		    snap->ds->ds_object, tx);
2477 		VERIFY0(zap_add_int(dp->dp_meta_objset,
2478 		    dsl_dataset_phys(origin_ds)->ds_next_clones_obj,
2479 		    oldnext_obj, tx));
2480 	}
2481 
2482 	/* change origin */
2483 	dmu_buf_will_dirty(dd->dd_dbuf, tx);
2484 	ASSERT3U(dsl_dir_phys(dd)->dd_origin_obj, ==, origin_ds->ds_object);
2485 	dsl_dir_phys(dd)->dd_origin_obj = dsl_dir_phys(odd)->dd_origin_obj;
2486 	dd->dd_origin_txg = origin_head->ds_dir->dd_origin_txg;
2487 	dmu_buf_will_dirty(odd->dd_dbuf, tx);
2488 	dsl_dir_phys(odd)->dd_origin_obj = origin_ds->ds_object;
2489 	origin_head->ds_dir->dd_origin_txg =
2490 	    dsl_dataset_phys(origin_ds)->ds_creation_txg;
2491 
2492 	/* change dd_clone entries */
2493 	if (spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
2494 		VERIFY0(zap_remove_int(dp->dp_meta_objset,
2495 		    dsl_dir_phys(odd)->dd_clones, hds->ds_object, tx));
2496 		VERIFY0(zap_add_int(dp->dp_meta_objset,
2497 		    dsl_dir_phys(ddpa->origin_origin->ds_dir)->dd_clones,
2498 		    hds->ds_object, tx));
2499 
2500 		VERIFY0(zap_remove_int(dp->dp_meta_objset,
2501 		    dsl_dir_phys(ddpa->origin_origin->ds_dir)->dd_clones,
2502 		    origin_head->ds_object, tx));
2503 		if (dsl_dir_phys(dd)->dd_clones == 0) {
2504 			dsl_dir_phys(dd)->dd_clones =
2505 			    zap_create(dp->dp_meta_objset, DMU_OT_DSL_CLONES,
2506 			    DMU_OT_NONE, 0, tx);
2507 		}
2508 		VERIFY0(zap_add_int(dp->dp_meta_objset,
2509 		    dsl_dir_phys(dd)->dd_clones, origin_head->ds_object, tx));
2510 	}
2511 
2512 	/* move snapshots to this dir */
2513 	for (snap = list_head(&ddpa->shared_snaps); snap;
2514 	    snap = list_next(&ddpa->shared_snaps, snap)) {
2515 		dsl_dataset_t *ds = snap->ds;
2516 
2517 		/*
2518 		 * Property callbacks are registered to a particular
2519 		 * dsl_dir.  Since ours is changing, evict the objset
2520 		 * so that they will be unregistered from the old dsl_dir.
2521 		 */
2522 		if (ds->ds_objset) {
2523 			dmu_objset_evict(ds->ds_objset);
2524 			ds->ds_objset = NULL;
2525 		}
2526 
2527 		/* move snap name entry */
2528 		VERIFY0(dsl_dataset_get_snapname(ds));
2529 		VERIFY0(dsl_dataset_snap_remove(origin_head,
2530 		    ds->ds_snapname, tx, B_TRUE));
2531 		VERIFY0(zap_add(dp->dp_meta_objset,
2532 		    dsl_dataset_phys(hds)->ds_snapnames_zapobj, ds->ds_snapname,
2533 		    8, 1, &ds->ds_object, tx));
2534 		dsl_fs_ss_count_adjust(hds->ds_dir, 1,
2535 		    DD_FIELD_SNAPSHOT_COUNT, tx);
2536 
2537 		/* change containing dsl_dir */
2538 		dmu_buf_will_dirty(ds->ds_dbuf, tx);
2539 		ASSERT3U(dsl_dataset_phys(ds)->ds_dir_obj, ==, odd->dd_object);
2540 		dsl_dataset_phys(ds)->ds_dir_obj = dd->dd_object;
2541 		ASSERT3P(ds->ds_dir, ==, odd);
2542 		dsl_dir_rele(ds->ds_dir, ds);
2543 		VERIFY0(dsl_dir_hold_obj(dp, dd->dd_object,
2544 		    NULL, ds, &ds->ds_dir));
2545 
2546 		/* move any clone references */
2547 		if (dsl_dataset_phys(ds)->ds_next_clones_obj &&
2548 		    spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
2549 			zap_cursor_t zc;
2550 			zap_attribute_t za;
2551 
2552 			for (zap_cursor_init(&zc, dp->dp_meta_objset,
2553 			    dsl_dataset_phys(ds)->ds_next_clones_obj);
2554 			    zap_cursor_retrieve(&zc, &za) == 0;
2555 			    zap_cursor_advance(&zc)) {
2556 				dsl_dataset_t *cnds;
2557 				uint64_t o;
2558 
2559 				if (za.za_first_integer == oldnext_obj) {
2560 					/*
2561 					 * We've already moved the
2562 					 * origin's reference.
2563 					 */
2564 					continue;
2565 				}
2566 
2567 				VERIFY0(dsl_dataset_hold_obj(dp,
2568 				    za.za_first_integer, FTAG, &cnds));
2569 				o = dsl_dir_phys(cnds->ds_dir)->
2570 				    dd_head_dataset_obj;
2571 
2572 				VERIFY0(zap_remove_int(dp->dp_meta_objset,
2573 				    dsl_dir_phys(odd)->dd_clones, o, tx));
2574 				VERIFY0(zap_add_int(dp->dp_meta_objset,
2575 				    dsl_dir_phys(dd)->dd_clones, o, tx));
2576 				dsl_dataset_rele(cnds, FTAG);
2577 			}
2578 			zap_cursor_fini(&zc);
2579 		}
2580 
2581 		ASSERT(!dsl_prop_hascb(ds));
2582 	}
2583 
2584 	/*
2585 	 * Change space accounting.
2586 	 * Note, pa->*usedsnap and dd_used_breakdown[SNAP] will either
2587 	 * both be valid, or both be 0 (resulting in delta == 0).  This
2588 	 * is true for each of {clone,origin} independently.
2589 	 */
2590 
2591 	delta = ddpa->cloneusedsnap -
2592 	    dsl_dir_phys(dd)->dd_used_breakdown[DD_USED_SNAP];
2593 	ASSERT3S(delta, >=, 0);
2594 	ASSERT3U(ddpa->used, >=, delta);
2595 	dsl_dir_diduse_space(dd, DD_USED_SNAP, delta, 0, 0, tx);
2596 	dsl_dir_diduse_space(dd, DD_USED_HEAD,
2597 	    ddpa->used - delta, ddpa->comp, ddpa->uncomp, tx);
2598 
2599 	delta = ddpa->originusedsnap -
2600 	    dsl_dir_phys(odd)->dd_used_breakdown[DD_USED_SNAP];
2601 	ASSERT3S(delta, <=, 0);
2602 	ASSERT3U(ddpa->used, >=, -delta);
2603 	dsl_dir_diduse_space(odd, DD_USED_SNAP, delta, 0, 0, tx);
2604 	dsl_dir_diduse_space(odd, DD_USED_HEAD,
2605 	    -ddpa->used - delta, -ddpa->comp, -ddpa->uncomp, tx);
2606 
2607 	dsl_dataset_phys(origin_ds)->ds_unique_bytes = ddpa->unique;
2608 
2609 	/* log history record */
2610 	spa_history_log_internal_ds(hds, "promote", tx, "");
2611 
2612 	dsl_dir_rele(odd, FTAG);
2613 	promote_rele(ddpa, FTAG);
2614 }
2615 
2616 /*
2617  * Make a list of dsl_dataset_t's for the snapshots between first_obj
2618  * (exclusive) and last_obj (inclusive).  The list will be in reverse
2619  * order (last_obj will be the list_head()).  If first_obj == 0, do all
2620  * snapshots back to this dataset's origin.
2621  */
2622 static int
2623 snaplist_make(dsl_pool_t *dp,
2624     uint64_t first_obj, uint64_t last_obj, list_t *l, void *tag)
2625 {
2626 	uint64_t obj = last_obj;
2627 
2628 	list_create(l, sizeof (struct promotenode),
2629 	    offsetof(struct promotenode, link));
2630 
2631 	while (obj != first_obj) {
2632 		dsl_dataset_t *ds;
2633 		struct promotenode *snap;
2634 		int err;
2635 
2636 		err = dsl_dataset_hold_obj(dp, obj, tag, &ds);
2637 		ASSERT(err != ENOENT);
2638 		if (err != 0)
2639 			return (err);
2640 
2641 		if (first_obj == 0)
2642 			first_obj = dsl_dir_phys(ds->ds_dir)->dd_origin_obj;
2643 
2644 		snap = kmem_alloc(sizeof (*snap), KM_SLEEP);
2645 		snap->ds = ds;
2646 		list_insert_tail(l, snap);
2647 		obj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
2648 	}
2649 
2650 	return (0);
2651 }
2652 
2653 static int
2654 snaplist_space(list_t *l, uint64_t mintxg, uint64_t *spacep)
2655 {
2656 	struct promotenode *snap;
2657 
2658 	*spacep = 0;
2659 	for (snap = list_head(l); snap; snap = list_next(l, snap)) {
2660 		uint64_t used, comp, uncomp;
2661 		dsl_deadlist_space_range(&snap->ds->ds_deadlist,
2662 		    mintxg, UINT64_MAX, &used, &comp, &uncomp);
2663 		*spacep += used;
2664 	}
2665 	return (0);
2666 }
2667 
2668 static void
2669 snaplist_destroy(list_t *l, void *tag)
2670 {
2671 	struct promotenode *snap;
2672 
2673 	if (l == NULL || !list_link_active(&l->list_head))
2674 		return;
2675 
2676 	while ((snap = list_tail(l)) != NULL) {
2677 		list_remove(l, snap);
2678 		dsl_dataset_rele(snap->ds, tag);
2679 		kmem_free(snap, sizeof (*snap));
2680 	}
2681 	list_destroy(l);
2682 }
2683 
2684 static int
2685 promote_hold(dsl_dataset_promote_arg_t *ddpa, dsl_pool_t *dp, void *tag)
2686 {
2687 	int error;
2688 	dsl_dir_t *dd;
2689 	struct promotenode *snap;
2690 
2691 	error = dsl_dataset_hold(dp, ddpa->ddpa_clonename, tag,
2692 	    &ddpa->ddpa_clone);
2693 	if (error != 0)
2694 		return (error);
2695 	dd = ddpa->ddpa_clone->ds_dir;
2696 
2697 	if (ddpa->ddpa_clone->ds_is_snapshot ||
2698 	    !dsl_dir_is_clone(dd)) {
2699 		dsl_dataset_rele(ddpa->ddpa_clone, tag);
2700 		return (SET_ERROR(EINVAL));
2701 	}
2702 
2703 	error = snaplist_make(dp, 0, dsl_dir_phys(dd)->dd_origin_obj,
2704 	    &ddpa->shared_snaps, tag);
2705 	if (error != 0)
2706 		goto out;
2707 
2708 	error = snaplist_make(dp, 0, ddpa->ddpa_clone->ds_object,
2709 	    &ddpa->clone_snaps, tag);
2710 	if (error != 0)
2711 		goto out;
2712 
2713 	snap = list_head(&ddpa->shared_snaps);
2714 	ASSERT3U(snap->ds->ds_object, ==, dsl_dir_phys(dd)->dd_origin_obj);
2715 	error = snaplist_make(dp, dsl_dir_phys(dd)->dd_origin_obj,
2716 	    dsl_dir_phys(snap->ds->ds_dir)->dd_head_dataset_obj,
2717 	    &ddpa->origin_snaps, tag);
2718 	if (error != 0)
2719 		goto out;
2720 
2721 	if (dsl_dir_phys(snap->ds->ds_dir)->dd_origin_obj != 0) {
2722 		error = dsl_dataset_hold_obj(dp,
2723 		    dsl_dir_phys(snap->ds->ds_dir)->dd_origin_obj,
2724 		    tag, &ddpa->origin_origin);
2725 		if (error != 0)
2726 			goto out;
2727 	}
2728 out:
2729 	if (error != 0)
2730 		promote_rele(ddpa, tag);
2731 	return (error);
2732 }
2733 
2734 static void
2735 promote_rele(dsl_dataset_promote_arg_t *ddpa, void *tag)
2736 {
2737 	snaplist_destroy(&ddpa->shared_snaps, tag);
2738 	snaplist_destroy(&ddpa->clone_snaps, tag);
2739 	snaplist_destroy(&ddpa->origin_snaps, tag);
2740 	if (ddpa->origin_origin != NULL)
2741 		dsl_dataset_rele(ddpa->origin_origin, tag);
2742 	dsl_dataset_rele(ddpa->ddpa_clone, tag);
2743 }
2744 
2745 /*
2746  * Promote a clone.
2747  *
2748  * If it fails due to a conflicting snapshot name, "conflsnap" will be filled
2749  * in with the name.  (It must be at least MAXNAMELEN bytes long.)
2750  */
2751 int
2752 dsl_dataset_promote(const char *name, char *conflsnap)
2753 {
2754 	dsl_dataset_promote_arg_t ddpa = { 0 };
2755 	uint64_t numsnaps;
2756 	int error;
2757 	objset_t *os;
2758 
2759 	/*
2760 	 * We will modify space proportional to the number of
2761 	 * snapshots.  Compute numsnaps.
2762 	 */
2763 	error = dmu_objset_hold(name, FTAG, &os);
2764 	if (error != 0)
2765 		return (error);
2766 	error = zap_count(dmu_objset_pool(os)->dp_meta_objset,
2767 	    dsl_dataset_phys(dmu_objset_ds(os))->ds_snapnames_zapobj,
2768 	    &numsnaps);
2769 	dmu_objset_rele(os, FTAG);
2770 	if (error != 0)
2771 		return (error);
2772 
2773 	ddpa.ddpa_clonename = name;
2774 	ddpa.err_ds = conflsnap;
2775 	ddpa.cr = CRED();
2776 
2777 	return (dsl_sync_task(name, dsl_dataset_promote_check,
2778 	    dsl_dataset_promote_sync, &ddpa,
2779 	    2 + numsnaps, ZFS_SPACE_CHECK_RESERVED));
2780 }
2781 
2782 int
2783 dsl_dataset_clone_swap_check_impl(dsl_dataset_t *clone,
2784     dsl_dataset_t *origin_head, boolean_t force, void *owner, dmu_tx_t *tx)
2785 {
2786 	int64_t unused_refres_delta;
2787 
2788 	/* they should both be heads */
2789 	if (clone->ds_is_snapshot ||
2790 	    origin_head->ds_is_snapshot)
2791 		return (SET_ERROR(EINVAL));
2792 
2793 	/* if we are not forcing, the branch point should be just before them */
2794 	if (!force && clone->ds_prev != origin_head->ds_prev)
2795 		return (SET_ERROR(EINVAL));
2796 
2797 	/* clone should be the clone (unless they are unrelated) */
2798 	if (clone->ds_prev != NULL &&
2799 	    clone->ds_prev != clone->ds_dir->dd_pool->dp_origin_snap &&
2800 	    origin_head->ds_dir != clone->ds_prev->ds_dir)
2801 		return (SET_ERROR(EINVAL));
2802 
2803 	/* the clone should be a child of the origin */
2804 	if (clone->ds_dir->dd_parent != origin_head->ds_dir)
2805 		return (SET_ERROR(EINVAL));
2806 
2807 	/* origin_head shouldn't be modified unless 'force' */
2808 	if (!force &&
2809 	    dsl_dataset_modified_since_snap(origin_head, origin_head->ds_prev))
2810 		return (SET_ERROR(ETXTBSY));
2811 
2812 	/* origin_head should have no long holds (e.g. is not mounted) */
2813 	if (dsl_dataset_handoff_check(origin_head, owner, tx))
2814 		return (SET_ERROR(EBUSY));
2815 
2816 	/* check amount of any unconsumed refreservation */
2817 	unused_refres_delta =
2818 	    (int64_t)MIN(origin_head->ds_reserved,
2819 	    dsl_dataset_phys(origin_head)->ds_unique_bytes) -
2820 	    (int64_t)MIN(origin_head->ds_reserved,
2821 	    dsl_dataset_phys(clone)->ds_unique_bytes);
2822 
2823 	if (unused_refres_delta > 0 &&
2824 	    unused_refres_delta >
2825 	    dsl_dir_space_available(origin_head->ds_dir, NULL, 0, TRUE))
2826 		return (SET_ERROR(ENOSPC));
2827 
2828 	/* clone can't be over the head's refquota */
2829 	if (origin_head->ds_quota != 0 &&
2830 	    dsl_dataset_phys(clone)->ds_referenced_bytes >
2831 	    origin_head->ds_quota)
2832 		return (SET_ERROR(EDQUOT));
2833 
2834 	return (0);
2835 }
2836 
2837 void
2838 dsl_dataset_clone_swap_sync_impl(dsl_dataset_t *clone,
2839     dsl_dataset_t *origin_head, dmu_tx_t *tx)
2840 {
2841 	dsl_pool_t *dp = dmu_tx_pool(tx);
2842 	int64_t unused_refres_delta;
2843 
2844 	ASSERT(clone->ds_reserved == 0);
2845 	ASSERT(origin_head->ds_quota == 0 ||
2846 	    dsl_dataset_phys(clone)->ds_unique_bytes <= origin_head->ds_quota);
2847 	ASSERT3P(clone->ds_prev, ==, origin_head->ds_prev);
2848 
2849 	/*
2850 	 * Swap per-dataset feature flags.
2851 	 */
2852 	for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
2853 		if (!(spa_feature_table[f].fi_flags &
2854 		    ZFEATURE_FLAG_PER_DATASET)) {
2855 			ASSERT(!clone->ds_feature_inuse[f]);
2856 			ASSERT(!origin_head->ds_feature_inuse[f]);
2857 			continue;
2858 		}
2859 
2860 		boolean_t clone_inuse = clone->ds_feature_inuse[f];
2861 		boolean_t origin_head_inuse = origin_head->ds_feature_inuse[f];
2862 
2863 		if (clone_inuse) {
2864 			dsl_dataset_deactivate_feature(clone->ds_object, f, tx);
2865 			clone->ds_feature_inuse[f] = B_FALSE;
2866 		}
2867 		if (origin_head_inuse) {
2868 			dsl_dataset_deactivate_feature(origin_head->ds_object,
2869 			    f, tx);
2870 			origin_head->ds_feature_inuse[f] = B_FALSE;
2871 		}
2872 		if (clone_inuse) {
2873 			dsl_dataset_activate_feature(origin_head->ds_object,
2874 			    f, tx);
2875 			origin_head->ds_feature_inuse[f] = B_TRUE;
2876 		}
2877 		if (origin_head_inuse) {
2878 			dsl_dataset_activate_feature(clone->ds_object, f, tx);
2879 			clone->ds_feature_inuse[f] = B_TRUE;
2880 		}
2881 	}
2882 
2883 	dmu_buf_will_dirty(clone->ds_dbuf, tx);
2884 	dmu_buf_will_dirty(origin_head->ds_dbuf, tx);
2885 
2886 	if (clone->ds_objset != NULL) {
2887 		dmu_objset_evict(clone->ds_objset);
2888 		clone->ds_objset = NULL;
2889 	}
2890 
2891 	if (origin_head->ds_objset != NULL) {
2892 		dmu_objset_evict(origin_head->ds_objset);
2893 		origin_head->ds_objset = NULL;
2894 	}
2895 
2896 	unused_refres_delta =
2897 	    (int64_t)MIN(origin_head->ds_reserved,
2898 	    dsl_dataset_phys(origin_head)->ds_unique_bytes) -
2899 	    (int64_t)MIN(origin_head->ds_reserved,
2900 	    dsl_dataset_phys(clone)->ds_unique_bytes);
2901 
2902 	/*
2903 	 * Reset origin's unique bytes, if it exists.
2904 	 */
2905 	if (clone->ds_prev) {
2906 		dsl_dataset_t *origin = clone->ds_prev;
2907 		uint64_t comp, uncomp;
2908 
2909 		dmu_buf_will_dirty(origin->ds_dbuf, tx);
2910 		dsl_deadlist_space_range(&clone->ds_deadlist,
2911 		    dsl_dataset_phys(origin)->ds_prev_snap_txg, UINT64_MAX,
2912 		    &dsl_dataset_phys(origin)->ds_unique_bytes, &comp, &uncomp);
2913 	}
2914 
2915 	/* swap blkptrs */
2916 	{
2917 		blkptr_t tmp;
2918 		tmp = dsl_dataset_phys(origin_head)->ds_bp;
2919 		dsl_dataset_phys(origin_head)->ds_bp =
2920 		    dsl_dataset_phys(clone)->ds_bp;
2921 		dsl_dataset_phys(clone)->ds_bp = tmp;
2922 	}
2923 
2924 	/* set dd_*_bytes */
2925 	{
2926 		int64_t dused, dcomp, duncomp;
2927 		uint64_t cdl_used, cdl_comp, cdl_uncomp;
2928 		uint64_t odl_used, odl_comp, odl_uncomp;
2929 
2930 		ASSERT3U(dsl_dir_phys(clone->ds_dir)->
2931 		    dd_used_breakdown[DD_USED_SNAP], ==, 0);
2932 
2933 		dsl_deadlist_space(&clone->ds_deadlist,
2934 		    &cdl_used, &cdl_comp, &cdl_uncomp);
2935 		dsl_deadlist_space(&origin_head->ds_deadlist,
2936 		    &odl_used, &odl_comp, &odl_uncomp);
2937 
2938 		dused = dsl_dataset_phys(clone)->ds_referenced_bytes +
2939 		    cdl_used -
2940 		    (dsl_dataset_phys(origin_head)->ds_referenced_bytes +
2941 		    odl_used);
2942 		dcomp = dsl_dataset_phys(clone)->ds_compressed_bytes +
2943 		    cdl_comp -
2944 		    (dsl_dataset_phys(origin_head)->ds_compressed_bytes +
2945 		    odl_comp);
2946 		duncomp = dsl_dataset_phys(clone)->ds_uncompressed_bytes +
2947 		    cdl_uncomp -
2948 		    (dsl_dataset_phys(origin_head)->ds_uncompressed_bytes +
2949 		    odl_uncomp);
2950 
2951 		dsl_dir_diduse_space(origin_head->ds_dir, DD_USED_HEAD,
2952 		    dused, dcomp, duncomp, tx);
2953 		dsl_dir_diduse_space(clone->ds_dir, DD_USED_HEAD,
2954 		    -dused, -dcomp, -duncomp, tx);
2955 
2956 		/*
2957 		 * The difference in the space used by snapshots is the
2958 		 * difference in snapshot space due to the head's
2959 		 * deadlist (since that's the only thing that's
2960 		 * changing that affects the snapused).
2961 		 */
2962 		dsl_deadlist_space_range(&clone->ds_deadlist,
2963 		    origin_head->ds_dir->dd_origin_txg, UINT64_MAX,
2964 		    &cdl_used, &cdl_comp, &cdl_uncomp);
2965 		dsl_deadlist_space_range(&origin_head->ds_deadlist,
2966 		    origin_head->ds_dir->dd_origin_txg, UINT64_MAX,
2967 		    &odl_used, &odl_comp, &odl_uncomp);
2968 		dsl_dir_transfer_space(origin_head->ds_dir, cdl_used - odl_used,
2969 		    DD_USED_HEAD, DD_USED_SNAP, tx);
2970 	}
2971 
2972 	/* swap ds_*_bytes */
2973 	SWITCH64(dsl_dataset_phys(origin_head)->ds_referenced_bytes,
2974 	    dsl_dataset_phys(clone)->ds_referenced_bytes);
2975 	SWITCH64(dsl_dataset_phys(origin_head)->ds_compressed_bytes,
2976 	    dsl_dataset_phys(clone)->ds_compressed_bytes);
2977 	SWITCH64(dsl_dataset_phys(origin_head)->ds_uncompressed_bytes,
2978 	    dsl_dataset_phys(clone)->ds_uncompressed_bytes);
2979 	SWITCH64(dsl_dataset_phys(origin_head)->ds_unique_bytes,
2980 	    dsl_dataset_phys(clone)->ds_unique_bytes);
2981 
2982 	/* apply any parent delta for change in unconsumed refreservation */
2983 	dsl_dir_diduse_space(origin_head->ds_dir, DD_USED_REFRSRV,
2984 	    unused_refres_delta, 0, 0, tx);
2985 
2986 	/*
2987 	 * Swap deadlists.
2988 	 */
2989 	dsl_deadlist_close(&clone->ds_deadlist);
2990 	dsl_deadlist_close(&origin_head->ds_deadlist);
2991 	SWITCH64(dsl_dataset_phys(origin_head)->ds_deadlist_obj,
2992 	    dsl_dataset_phys(clone)->ds_deadlist_obj);
2993 	dsl_deadlist_open(&clone->ds_deadlist, dp->dp_meta_objset,
2994 	    dsl_dataset_phys(clone)->ds_deadlist_obj);
2995 	dsl_deadlist_open(&origin_head->ds_deadlist, dp->dp_meta_objset,
2996 	    dsl_dataset_phys(origin_head)->ds_deadlist_obj);
2997 
2998 	dsl_scan_ds_clone_swapped(origin_head, clone, tx);
2999 
3000 	spa_history_log_internal_ds(clone, "clone swap", tx,
3001 	    "parent=%s", origin_head->ds_dir->dd_myname);
3002 }
3003 
3004 /*
3005  * Given a pool name and a dataset object number in that pool,
3006  * return the name of that dataset.
3007  */
3008 int
3009 dsl_dsobj_to_dsname(char *pname, uint64_t obj, char *buf)
3010 {
3011 	dsl_pool_t *dp;
3012 	dsl_dataset_t *ds;
3013 	int error;
3014 
3015 	error = dsl_pool_hold(pname, FTAG, &dp);
3016 	if (error != 0)
3017 		return (error);
3018 
3019 	error = dsl_dataset_hold_obj(dp, obj, FTAG, &ds);
3020 	if (error == 0) {
3021 		dsl_dataset_name(ds, buf);
3022 		dsl_dataset_rele(ds, FTAG);
3023 	}
3024 	dsl_pool_rele(dp, FTAG);
3025 
3026 	return (error);
3027 }
3028 
3029 int
3030 dsl_dataset_check_quota(dsl_dataset_t *ds, boolean_t check_quota,
3031     uint64_t asize, uint64_t inflight, uint64_t *used, uint64_t *ref_rsrv)
3032 {
3033 	int error = 0;
3034 
3035 	ASSERT3S(asize, >, 0);
3036 
3037 	/*
3038 	 * *ref_rsrv is the portion of asize that will come from any
3039 	 * unconsumed refreservation space.
3040 	 */
3041 	*ref_rsrv = 0;
3042 
3043 	mutex_enter(&ds->ds_lock);
3044 	/*
3045 	 * Make a space adjustment for reserved bytes.
3046 	 */
3047 	if (ds->ds_reserved > dsl_dataset_phys(ds)->ds_unique_bytes) {
3048 		ASSERT3U(*used, >=,
3049 		    ds->ds_reserved - dsl_dataset_phys(ds)->ds_unique_bytes);
3050 		*used -=
3051 		    (ds->ds_reserved - dsl_dataset_phys(ds)->ds_unique_bytes);
3052 		*ref_rsrv =
3053 		    asize - MIN(asize, parent_delta(ds, asize + inflight));
3054 	}
3055 
3056 	if (!check_quota || ds->ds_quota == 0) {
3057 		mutex_exit(&ds->ds_lock);
3058 		return (0);
3059 	}
3060 	/*
3061 	 * If they are requesting more space, and our current estimate
3062 	 * is over quota, they get to try again unless the actual
3063 	 * on-disk is over quota and there are no pending changes (which
3064 	 * may free up space for us).
3065 	 */
3066 	if (dsl_dataset_phys(ds)->ds_referenced_bytes + inflight >=
3067 	    ds->ds_quota) {
3068 		if (inflight > 0 ||
3069 		    dsl_dataset_phys(ds)->ds_referenced_bytes < ds->ds_quota)
3070 			error = SET_ERROR(ERESTART);
3071 		else
3072 			error = SET_ERROR(EDQUOT);
3073 	}
3074 	mutex_exit(&ds->ds_lock);
3075 
3076 	return (error);
3077 }
3078 
3079 typedef struct dsl_dataset_set_qr_arg {
3080 	const char *ddsqra_name;
3081 	zprop_source_t ddsqra_source;
3082 	uint64_t ddsqra_value;
3083 } dsl_dataset_set_qr_arg_t;
3084 
3085 
3086 /* ARGSUSED */
3087 static int
3088 dsl_dataset_set_refquota_check(void *arg, dmu_tx_t *tx)
3089 {
3090 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
3091 	dsl_pool_t *dp = dmu_tx_pool(tx);
3092 	dsl_dataset_t *ds;
3093 	int error;
3094 	uint64_t newval;
3095 
3096 	if (spa_version(dp->dp_spa) < SPA_VERSION_REFQUOTA)
3097 		return (SET_ERROR(ENOTSUP));
3098 
3099 	error = dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds);
3100 	if (error != 0)
3101 		return (error);
3102 
3103 	if (ds->ds_is_snapshot) {
3104 		dsl_dataset_rele(ds, FTAG);
3105 		return (SET_ERROR(EINVAL));
3106 	}
3107 
3108 	error = dsl_prop_predict(ds->ds_dir,
3109 	    zfs_prop_to_name(ZFS_PROP_REFQUOTA),
3110 	    ddsqra->ddsqra_source, ddsqra->ddsqra_value, &newval);
3111 	if (error != 0) {
3112 		dsl_dataset_rele(ds, FTAG);
3113 		return (error);
3114 	}
3115 
3116 	if (newval == 0) {
3117 		dsl_dataset_rele(ds, FTAG);
3118 		return (0);
3119 	}
3120 
3121 	if (newval < dsl_dataset_phys(ds)->ds_referenced_bytes ||
3122 	    newval < ds->ds_reserved) {
3123 		dsl_dataset_rele(ds, FTAG);
3124 		return (SET_ERROR(ENOSPC));
3125 	}
3126 
3127 	dsl_dataset_rele(ds, FTAG);
3128 	return (0);
3129 }
3130 
3131 static void
3132 dsl_dataset_set_refquota_sync(void *arg, dmu_tx_t *tx)
3133 {
3134 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
3135 	dsl_pool_t *dp = dmu_tx_pool(tx);
3136 	dsl_dataset_t *ds;
3137 	uint64_t newval;
3138 
3139 	VERIFY0(dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds));
3140 
3141 	dsl_prop_set_sync_impl(ds,
3142 	    zfs_prop_to_name(ZFS_PROP_REFQUOTA),
3143 	    ddsqra->ddsqra_source, sizeof (ddsqra->ddsqra_value), 1,
3144 	    &ddsqra->ddsqra_value, tx);
3145 
3146 	VERIFY0(dsl_prop_get_int_ds(ds,
3147 	    zfs_prop_to_name(ZFS_PROP_REFQUOTA), &newval));
3148 
3149 	if (ds->ds_quota != newval) {
3150 		dmu_buf_will_dirty(ds->ds_dbuf, tx);
3151 		ds->ds_quota = newval;
3152 	}
3153 	dsl_dataset_rele(ds, FTAG);
3154 }
3155 
3156 int
3157 dsl_dataset_set_refquota(const char *dsname, zprop_source_t source,
3158     uint64_t refquota)
3159 {
3160 	dsl_dataset_set_qr_arg_t ddsqra;
3161 
3162 	ddsqra.ddsqra_name = dsname;
3163 	ddsqra.ddsqra_source = source;
3164 	ddsqra.ddsqra_value = refquota;
3165 
3166 	return (dsl_sync_task(dsname, dsl_dataset_set_refquota_check,
3167 	    dsl_dataset_set_refquota_sync, &ddsqra, 0, ZFS_SPACE_CHECK_NONE));
3168 }
3169 
3170 static int
3171 dsl_dataset_set_refreservation_check(void *arg, dmu_tx_t *tx)
3172 {
3173 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
3174 	dsl_pool_t *dp = dmu_tx_pool(tx);
3175 	dsl_dataset_t *ds;
3176 	int error;
3177 	uint64_t newval, unique;
3178 
3179 	if (spa_version(dp->dp_spa) < SPA_VERSION_REFRESERVATION)
3180 		return (SET_ERROR(ENOTSUP));
3181 
3182 	error = dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds);
3183 	if (error != 0)
3184 		return (error);
3185 
3186 	if (ds->ds_is_snapshot) {
3187 		dsl_dataset_rele(ds, FTAG);
3188 		return (SET_ERROR(EINVAL));
3189 	}
3190 
3191 	error = dsl_prop_predict(ds->ds_dir,
3192 	    zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
3193 	    ddsqra->ddsqra_source, ddsqra->ddsqra_value, &newval);
3194 	if (error != 0) {
3195 		dsl_dataset_rele(ds, FTAG);
3196 		return (error);
3197 	}
3198 
3199 	/*
3200 	 * If we are doing the preliminary check in open context, the
3201 	 * space estimates may be inaccurate.
3202 	 */
3203 	if (!dmu_tx_is_syncing(tx)) {
3204 		dsl_dataset_rele(ds, FTAG);
3205 		return (0);
3206 	}
3207 
3208 	mutex_enter(&ds->ds_lock);
3209 	if (!DS_UNIQUE_IS_ACCURATE(ds))
3210 		dsl_dataset_recalc_head_uniq(ds);
3211 	unique = dsl_dataset_phys(ds)->ds_unique_bytes;
3212 	mutex_exit(&ds->ds_lock);
3213 
3214 	if (MAX(unique, newval) > MAX(unique, ds->ds_reserved)) {
3215 		uint64_t delta = MAX(unique, newval) -
3216 		    MAX(unique, ds->ds_reserved);
3217 
3218 		if (delta >
3219 		    dsl_dir_space_available(ds->ds_dir, NULL, 0, B_TRUE) ||
3220 		    (ds->ds_quota > 0 && newval > ds->ds_quota)) {
3221 			dsl_dataset_rele(ds, FTAG);
3222 			return (SET_ERROR(ENOSPC));
3223 		}
3224 	}
3225 
3226 	dsl_dataset_rele(ds, FTAG);
3227 	return (0);
3228 }
3229 
3230 void
3231 dsl_dataset_set_refreservation_sync_impl(dsl_dataset_t *ds,
3232     zprop_source_t source, uint64_t value, dmu_tx_t *tx)
3233 {
3234 	uint64_t newval;
3235 	uint64_t unique;
3236 	int64_t delta;
3237 
3238 	dsl_prop_set_sync_impl(ds, zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
3239 	    source, sizeof (value), 1, &value, tx);
3240 
3241 	VERIFY0(dsl_prop_get_int_ds(ds,
3242 	    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), &newval));
3243 
3244 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
3245 	mutex_enter(&ds->ds_dir->dd_lock);
3246 	mutex_enter(&ds->ds_lock);
3247 	ASSERT(DS_UNIQUE_IS_ACCURATE(ds));
3248 	unique = dsl_dataset_phys(ds)->ds_unique_bytes;
3249 	delta = MAX(0, (int64_t)(newval - unique)) -
3250 	    MAX(0, (int64_t)(ds->ds_reserved - unique));
3251 	ds->ds_reserved = newval;
3252 	mutex_exit(&ds->ds_lock);
3253 
3254 	dsl_dir_diduse_space(ds->ds_dir, DD_USED_REFRSRV, delta, 0, 0, tx);
3255 	mutex_exit(&ds->ds_dir->dd_lock);
3256 }
3257 
3258 static void
3259 dsl_dataset_set_refreservation_sync(void *arg, dmu_tx_t *tx)
3260 {
3261 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
3262 	dsl_pool_t *dp = dmu_tx_pool(tx);
3263 	dsl_dataset_t *ds;
3264 
3265 	VERIFY0(dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds));
3266 	dsl_dataset_set_refreservation_sync_impl(ds,
3267 	    ddsqra->ddsqra_source, ddsqra->ddsqra_value, tx);
3268 	dsl_dataset_rele(ds, FTAG);
3269 }
3270 
3271 int
3272 dsl_dataset_set_refreservation(const char *dsname, zprop_source_t source,
3273     uint64_t refreservation)
3274 {
3275 	dsl_dataset_set_qr_arg_t ddsqra;
3276 
3277 	ddsqra.ddsqra_name = dsname;
3278 	ddsqra.ddsqra_source = source;
3279 	ddsqra.ddsqra_value = refreservation;
3280 
3281 	return (dsl_sync_task(dsname, dsl_dataset_set_refreservation_check,
3282 	    dsl_dataset_set_refreservation_sync, &ddsqra,
3283 	    0, ZFS_SPACE_CHECK_NONE));
3284 }
3285 
3286 /*
3287  * Return (in *usedp) the amount of space written in new that is not
3288  * present in oldsnap.  New may be a snapshot or the head.  Old must be
3289  * a snapshot before new, in new's filesystem (or its origin).  If not then
3290  * fail and return EINVAL.
3291  *
3292  * The written space is calculated by considering two components:  First, we
3293  * ignore any freed space, and calculate the written as new's used space
3294  * minus old's used space.  Next, we add in the amount of space that was freed
3295  * between the two snapshots, thus reducing new's used space relative to old's.
3296  * Specifically, this is the space that was born before old->ds_creation_txg,
3297  * and freed before new (ie. on new's deadlist or a previous deadlist).
3298  *
3299  * space freed                         [---------------------]
3300  * snapshots                       ---O-------O--------O-------O------
3301  *                                         oldsnap            new
3302  */
3303 int
3304 dsl_dataset_space_written(dsl_dataset_t *oldsnap, dsl_dataset_t *new,
3305     uint64_t *usedp, uint64_t *compp, uint64_t *uncompp)
3306 {
3307 	int err = 0;
3308 	uint64_t snapobj;
3309 	dsl_pool_t *dp = new->ds_dir->dd_pool;
3310 
3311 	ASSERT(dsl_pool_config_held(dp));
3312 
3313 	*usedp = 0;
3314 	*usedp += dsl_dataset_phys(new)->ds_referenced_bytes;
3315 	*usedp -= dsl_dataset_phys(oldsnap)->ds_referenced_bytes;
3316 
3317 	*compp = 0;
3318 	*compp += dsl_dataset_phys(new)->ds_compressed_bytes;
3319 	*compp -= dsl_dataset_phys(oldsnap)->ds_compressed_bytes;
3320 
3321 	*uncompp = 0;
3322 	*uncompp += dsl_dataset_phys(new)->ds_uncompressed_bytes;
3323 	*uncompp -= dsl_dataset_phys(oldsnap)->ds_uncompressed_bytes;
3324 
3325 	snapobj = new->ds_object;
3326 	while (snapobj != oldsnap->ds_object) {
3327 		dsl_dataset_t *snap;
3328 		uint64_t used, comp, uncomp;
3329 
3330 		if (snapobj == new->ds_object) {
3331 			snap = new;
3332 		} else {
3333 			err = dsl_dataset_hold_obj(dp, snapobj, FTAG, &snap);
3334 			if (err != 0)
3335 				break;
3336 		}
3337 
3338 		if (dsl_dataset_phys(snap)->ds_prev_snap_txg ==
3339 		    dsl_dataset_phys(oldsnap)->ds_creation_txg) {
3340 			/*
3341 			 * The blocks in the deadlist can not be born after
3342 			 * ds_prev_snap_txg, so get the whole deadlist space,
3343 			 * which is more efficient (especially for old-format
3344 			 * deadlists).  Unfortunately the deadlist code
3345 			 * doesn't have enough information to make this
3346 			 * optimization itself.
3347 			 */
3348 			dsl_deadlist_space(&snap->ds_deadlist,
3349 			    &used, &comp, &uncomp);
3350 		} else {
3351 			dsl_deadlist_space_range(&snap->ds_deadlist,
3352 			    0, dsl_dataset_phys(oldsnap)->ds_creation_txg,
3353 			    &used, &comp, &uncomp);
3354 		}
3355 		*usedp += used;
3356 		*compp += comp;
3357 		*uncompp += uncomp;
3358 
3359 		/*
3360 		 * If we get to the beginning of the chain of snapshots
3361 		 * (ds_prev_snap_obj == 0) before oldsnap, then oldsnap
3362 		 * was not a snapshot of/before new.
3363 		 */
3364 		snapobj = dsl_dataset_phys(snap)->ds_prev_snap_obj;
3365 		if (snap != new)
3366 			dsl_dataset_rele(snap, FTAG);
3367 		if (snapobj == 0) {
3368 			err = SET_ERROR(EINVAL);
3369 			break;
3370 		}
3371 
3372 	}
3373 	return (err);
3374 }
3375 
3376 /*
3377  * Return (in *usedp) the amount of space that will be reclaimed if firstsnap,
3378  * lastsnap, and all snapshots in between are deleted.
3379  *
3380  * blocks that would be freed            [---------------------------]
3381  * snapshots                       ---O-------O--------O-------O--------O
3382  *                                        firstsnap        lastsnap
3383  *
3384  * This is the set of blocks that were born after the snap before firstsnap,
3385  * (birth > firstsnap->prev_snap_txg) and died before the snap after the
3386  * last snap (ie, is on lastsnap->ds_next->ds_deadlist or an earlier deadlist).
3387  * We calculate this by iterating over the relevant deadlists (from the snap
3388  * after lastsnap, backward to the snap after firstsnap), summing up the
3389  * space on the deadlist that was born after the snap before firstsnap.
3390  */
3391 int
3392 dsl_dataset_space_wouldfree(dsl_dataset_t *firstsnap,
3393     dsl_dataset_t *lastsnap,
3394     uint64_t *usedp, uint64_t *compp, uint64_t *uncompp)
3395 {
3396 	int err = 0;
3397 	uint64_t snapobj;
3398 	dsl_pool_t *dp = firstsnap->ds_dir->dd_pool;
3399 
3400 	ASSERT(firstsnap->ds_is_snapshot);
3401 	ASSERT(lastsnap->ds_is_snapshot);
3402 
3403 	/*
3404 	 * Check that the snapshots are in the same dsl_dir, and firstsnap
3405 	 * is before lastsnap.
3406 	 */
3407 	if (firstsnap->ds_dir != lastsnap->ds_dir ||
3408 	    dsl_dataset_phys(firstsnap)->ds_creation_txg >
3409 	    dsl_dataset_phys(lastsnap)->ds_creation_txg)
3410 		return (SET_ERROR(EINVAL));
3411 
3412 	*usedp = *compp = *uncompp = 0;
3413 
3414 	snapobj = dsl_dataset_phys(lastsnap)->ds_next_snap_obj;
3415 	while (snapobj != firstsnap->ds_object) {
3416 		dsl_dataset_t *ds;
3417 		uint64_t used, comp, uncomp;
3418 
3419 		err = dsl_dataset_hold_obj(dp, snapobj, FTAG, &ds);
3420 		if (err != 0)
3421 			break;
3422 
3423 		dsl_deadlist_space_range(&ds->ds_deadlist,
3424 		    dsl_dataset_phys(firstsnap)->ds_prev_snap_txg, UINT64_MAX,
3425 		    &used, &comp, &uncomp);
3426 		*usedp += used;
3427 		*compp += comp;
3428 		*uncompp += uncomp;
3429 
3430 		snapobj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
3431 		ASSERT3U(snapobj, !=, 0);
3432 		dsl_dataset_rele(ds, FTAG);
3433 	}
3434 	return (err);
3435 }
3436 
3437 /*
3438  * Return TRUE if 'earlier' is an earlier snapshot in 'later's timeline.
3439  * For example, they could both be snapshots of the same filesystem, and
3440  * 'earlier' is before 'later'.  Or 'earlier' could be the origin of
3441  * 'later's filesystem.  Or 'earlier' could be an older snapshot in the origin's
3442  * filesystem.  Or 'earlier' could be the origin's origin.
3443  *
3444  * If non-zero, earlier_txg is used instead of earlier's ds_creation_txg.
3445  */
3446 boolean_t
3447 dsl_dataset_is_before(dsl_dataset_t *later, dsl_dataset_t *earlier,
3448 	uint64_t earlier_txg)
3449 {
3450 	dsl_pool_t *dp = later->ds_dir->dd_pool;
3451 	int error;
3452 	boolean_t ret;
3453 
3454 	ASSERT(dsl_pool_config_held(dp));
3455 	ASSERT(earlier->ds_is_snapshot || earlier_txg != 0);
3456 
3457 	if (earlier_txg == 0)
3458 		earlier_txg = dsl_dataset_phys(earlier)->ds_creation_txg;
3459 
3460 	if (later->ds_is_snapshot &&
3461 	    earlier_txg >= dsl_dataset_phys(later)->ds_creation_txg)
3462 		return (B_FALSE);
3463 
3464 	if (later->ds_dir == earlier->ds_dir)
3465 		return (B_TRUE);
3466 	if (!dsl_dir_is_clone(later->ds_dir))
3467 		return (B_FALSE);
3468 
3469 	if (dsl_dir_phys(later->ds_dir)->dd_origin_obj == earlier->ds_object)
3470 		return (B_TRUE);
3471 	dsl_dataset_t *origin;
3472 	error = dsl_dataset_hold_obj(dp,
3473 	    dsl_dir_phys(later->ds_dir)->dd_origin_obj, FTAG, &origin);
3474 	if (error != 0)
3475 		return (B_FALSE);
3476 	ret = dsl_dataset_is_before(origin, earlier, earlier_txg);
3477 	dsl_dataset_rele(origin, FTAG);
3478 	return (ret);
3479 }
3480 
3481 void
3482 dsl_dataset_zapify(dsl_dataset_t *ds, dmu_tx_t *tx)
3483 {
3484 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
3485 	dmu_object_zapify(mos, ds->ds_object, DMU_OT_DSL_DATASET, tx);
3486 }
3487 
3488 boolean_t
3489 dsl_dataset_is_zapified(dsl_dataset_t *ds)
3490 {
3491 	dmu_object_info_t doi;
3492 
3493 	dmu_object_info_from_db(ds->ds_dbuf, &doi);
3494 	return (doi.doi_type == DMU_OTN_ZAP_METADATA);
3495 }
3496 
3497 boolean_t
3498 dsl_dataset_has_resume_receive_state(dsl_dataset_t *ds)
3499 {
3500 	return (dsl_dataset_is_zapified(ds) &&
3501 	    zap_contains(ds->ds_dir->dd_pool->dp_meta_objset,
3502 	    ds->ds_object, DS_FIELD_RESUME_TOGUID) == 0);
3503 }
3504