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 /*
23  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Copyright (c) 2011, 2020 by Delphix. All rights reserved.
25  * Copyright (c) 2014, Joyent, Inc. All rights reserved.
26  * Copyright (c) 2014 RackTop Systems.
27  * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
28  * Copyright (c) 2016 Actifio, Inc. All rights reserved.
29  * Copyright 2016, OmniTI Computer Consulting, Inc. All rights reserved.
30  * Copyright 2017 Nexenta Systems, Inc.
31  * Copyright (c) 2019, Klara Inc.
32  * Copyright (c) 2019, Allan Jude
33  * Copyright (c) 2020 The FreeBSD Foundation [1]
34  *
35  * [1] Portions of this software were developed by Allan Jude
36  *     under sponsorship from the FreeBSD Foundation.
37  */
38 
39 #include <sys/dmu_objset.h>
40 #include <sys/dsl_dataset.h>
41 #include <sys/dsl_dir.h>
42 #include <sys/dsl_prop.h>
43 #include <sys/dsl_synctask.h>
44 #include <sys/dmu_traverse.h>
45 #include <sys/dmu_impl.h>
46 #include <sys/dmu_tx.h>
47 #include <sys/arc.h>
48 #include <sys/zio.h>
49 #include <sys/zap.h>
50 #include <sys/zfeature.h>
51 #include <sys/unique.h>
52 #include <sys/zfs_context.h>
53 #include <sys/zfs_ioctl.h>
54 #include <sys/spa.h>
55 #include <sys/spa_impl.h>
56 #include <sys/vdev.h>
57 #include <sys/zfs_znode.h>
58 #include <sys/zfs_onexit.h>
59 #include <sys/zvol.h>
60 #include <sys/dsl_scan.h>
61 #include <sys/dsl_deadlist.h>
62 #include <sys/dsl_destroy.h>
63 #include <sys/dsl_userhold.h>
64 #include <sys/dsl_bookmark.h>
65 #include <sys/policy.h>
66 #include <sys/dmu_send.h>
67 #include <sys/dmu_recv.h>
68 #include <sys/zio_compress.h>
69 #include <zfs_fletcher.h>
70 #include <sys/zio_checksum.h>
71 
72 /*
73  * The SPA supports block sizes up to 16MB.  However, very large blocks
74  * can have an impact on i/o latency (e.g. tying up a spinning disk for
75  * ~300ms), and also potentially on the memory allocator.  Therefore,
76  * we do not allow the recordsize to be set larger than zfs_max_recordsize
77  * (default 1MB).  Larger blocks can be created by changing this tunable,
78  * and pools with larger blocks can always be imported and used, regardless
79  * of this setting.
80  */
81 int zfs_max_recordsize = 1 * 1024 * 1024;
82 int zfs_allow_redacted_dataset_mount = 0;
83 
84 #define	SWITCH64(x, y) \
85 	{ \
86 		uint64_t __tmp = (x); \
87 		(x) = (y); \
88 		(y) = __tmp; \
89 	}
90 
91 #define	DS_REF_MAX	(1ULL << 62)
92 
93 static void dsl_dataset_set_remap_deadlist_object(dsl_dataset_t *ds,
94     uint64_t obj, dmu_tx_t *tx);
95 static void dsl_dataset_unset_remap_deadlist_object(dsl_dataset_t *ds,
96     dmu_tx_t *tx);
97 
98 static void unload_zfeature(dsl_dataset_t *ds, spa_feature_t f);
99 
100 extern int spa_asize_inflation;
101 
102 static zil_header_t zero_zil;
103 
104 /*
105  * Figure out how much of this delta should be propagated to the dsl_dir
106  * layer.  If there's a refreservation, that space has already been
107  * partially accounted for in our ancestors.
108  */
109 static int64_t
parent_delta(dsl_dataset_t * ds,int64_t delta)110 parent_delta(dsl_dataset_t *ds, int64_t delta)
111 {
112 	dsl_dataset_phys_t *ds_phys;
113 	uint64_t old_bytes, new_bytes;
114 
115 	if (ds->ds_reserved == 0)
116 		return (delta);
117 
118 	ds_phys = dsl_dataset_phys(ds);
119 	old_bytes = MAX(ds_phys->ds_unique_bytes, ds->ds_reserved);
120 	new_bytes = MAX(ds_phys->ds_unique_bytes + delta, ds->ds_reserved);
121 
122 	ASSERT3U(ABS((int64_t)(new_bytes - old_bytes)), <=, ABS(delta));
123 	return (new_bytes - old_bytes);
124 }
125 
126 void
dsl_dataset_block_born(dsl_dataset_t * ds,const blkptr_t * bp,dmu_tx_t * tx)127 dsl_dataset_block_born(dsl_dataset_t *ds, const blkptr_t *bp, dmu_tx_t *tx)
128 {
129 	spa_t *spa = dmu_tx_pool(tx)->dp_spa;
130 	int used = bp_get_dsize_sync(spa, bp);
131 	int compressed = BP_GET_PSIZE(bp);
132 	int uncompressed = BP_GET_UCSIZE(bp);
133 	int64_t delta;
134 	spa_feature_t f;
135 
136 	dprintf_bp(bp, "ds=%p", ds);
137 
138 	ASSERT(dmu_tx_is_syncing(tx));
139 	/* It could have been compressed away to nothing */
140 	if (BP_IS_HOLE(bp) || BP_IS_REDACTED(bp))
141 		return;
142 	ASSERT(BP_GET_TYPE(bp) != DMU_OT_NONE);
143 	ASSERT(DMU_OT_IS_VALID(BP_GET_TYPE(bp)));
144 	if (ds == NULL) {
145 		dsl_pool_mos_diduse_space(tx->tx_pool,
146 		    used, compressed, uncompressed);
147 		return;
148 	}
149 
150 	ASSERT3U(bp->blk_birth, >, dsl_dataset_phys(ds)->ds_prev_snap_txg);
151 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
152 	mutex_enter(&ds->ds_lock);
153 	delta = parent_delta(ds, used);
154 	dsl_dataset_phys(ds)->ds_referenced_bytes += used;
155 	dsl_dataset_phys(ds)->ds_compressed_bytes += compressed;
156 	dsl_dataset_phys(ds)->ds_uncompressed_bytes += uncompressed;
157 	dsl_dataset_phys(ds)->ds_unique_bytes += used;
158 
159 	if (BP_GET_LSIZE(bp) > SPA_OLD_MAXBLOCKSIZE) {
160 		ds->ds_feature_activation[SPA_FEATURE_LARGE_BLOCKS] =
161 		    (void *)B_TRUE;
162 	}
163 
164 
165 	f = zio_checksum_to_feature(BP_GET_CHECKSUM(bp));
166 	if (f != SPA_FEATURE_NONE) {
167 		ASSERT3S(spa_feature_table[f].fi_type, ==,
168 		    ZFEATURE_TYPE_BOOLEAN);
169 		ds->ds_feature_activation[f] = (void *)B_TRUE;
170 	}
171 
172 	f = zio_compress_to_feature(BP_GET_COMPRESS(bp));
173 	if (f != SPA_FEATURE_NONE) {
174 		ASSERT3S(spa_feature_table[f].fi_type, ==,
175 		    ZFEATURE_TYPE_BOOLEAN);
176 		ds->ds_feature_activation[f] = (void *)B_TRUE;
177 	}
178 
179 	/*
180 	 * Track block for livelist, but ignore embedded blocks because
181 	 * they do not need to be freed.
182 	 */
183 	if (dsl_deadlist_is_open(&ds->ds_dir->dd_livelist) &&
184 	    bp->blk_birth > ds->ds_dir->dd_origin_txg &&
185 	    !(BP_IS_EMBEDDED(bp))) {
186 		ASSERT(dsl_dir_is_clone(ds->ds_dir));
187 		ASSERT(spa_feature_is_enabled(spa,
188 		    SPA_FEATURE_LIVELIST));
189 		bplist_append(&ds->ds_dir->dd_pending_allocs, bp);
190 	}
191 
192 	mutex_exit(&ds->ds_lock);
193 	dsl_dir_diduse_transfer_space(ds->ds_dir, delta,
194 	    compressed, uncompressed, used,
195 	    DD_USED_REFRSRV, DD_USED_HEAD, tx);
196 }
197 
198 /*
199  * Called when the specified segment has been remapped, and is thus no
200  * longer referenced in the head dataset.  The vdev must be indirect.
201  *
202  * If the segment is referenced by a snapshot, put it on the remap deadlist.
203  * Otherwise, add this segment to the obsolete spacemap.
204  */
205 void
dsl_dataset_block_remapped(dsl_dataset_t * ds,uint64_t vdev,uint64_t offset,uint64_t size,uint64_t birth,dmu_tx_t * tx)206 dsl_dataset_block_remapped(dsl_dataset_t *ds, uint64_t vdev, uint64_t offset,
207     uint64_t size, uint64_t birth, dmu_tx_t *tx)
208 {
209 	spa_t *spa = ds->ds_dir->dd_pool->dp_spa;
210 
211 	ASSERT(dmu_tx_is_syncing(tx));
212 	ASSERT(birth <= tx->tx_txg);
213 	ASSERT(!ds->ds_is_snapshot);
214 
215 	if (birth > dsl_dataset_phys(ds)->ds_prev_snap_txg) {
216 		spa_vdev_indirect_mark_obsolete(spa, vdev, offset, size, tx);
217 	} else {
218 		blkptr_t fakebp;
219 		dva_t *dva = &fakebp.blk_dva[0];
220 
221 		ASSERT(ds != NULL);
222 
223 		mutex_enter(&ds->ds_remap_deadlist_lock);
224 		if (!dsl_dataset_remap_deadlist_exists(ds)) {
225 			dsl_dataset_create_remap_deadlist(ds, tx);
226 		}
227 		mutex_exit(&ds->ds_remap_deadlist_lock);
228 
229 		BP_ZERO(&fakebp);
230 		fakebp.blk_birth = birth;
231 		DVA_SET_VDEV(dva, vdev);
232 		DVA_SET_OFFSET(dva, offset);
233 		DVA_SET_ASIZE(dva, size);
234 		dsl_deadlist_insert(&ds->ds_remap_deadlist, &fakebp, B_FALSE,
235 		    tx);
236 	}
237 }
238 
239 int
dsl_dataset_block_kill(dsl_dataset_t * ds,const blkptr_t * bp,dmu_tx_t * tx,boolean_t async)240 dsl_dataset_block_kill(dsl_dataset_t *ds, const blkptr_t *bp, dmu_tx_t *tx,
241     boolean_t async)
242 {
243 	spa_t *spa = dmu_tx_pool(tx)->dp_spa;
244 
245 	int used = bp_get_dsize_sync(spa, bp);
246 	int compressed = BP_GET_PSIZE(bp);
247 	int uncompressed = BP_GET_UCSIZE(bp);
248 
249 	if (BP_IS_HOLE(bp) || BP_IS_REDACTED(bp))
250 		return (0);
251 
252 	ASSERT(dmu_tx_is_syncing(tx));
253 	ASSERT(bp->blk_birth <= tx->tx_txg);
254 
255 	if (ds == NULL) {
256 		dsl_free(tx->tx_pool, tx->tx_txg, bp);
257 		dsl_pool_mos_diduse_space(tx->tx_pool,
258 		    -used, -compressed, -uncompressed);
259 		return (used);
260 	}
261 	ASSERT3P(tx->tx_pool, ==, ds->ds_dir->dd_pool);
262 
263 	ASSERT(!ds->ds_is_snapshot);
264 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
265 
266 	/*
267 	 * Track block for livelist, but ignore embedded blocks because
268 	 * they do not need to be freed.
269 	 */
270 	if (dsl_deadlist_is_open(&ds->ds_dir->dd_livelist) &&
271 	    bp->blk_birth > ds->ds_dir->dd_origin_txg &&
272 	    !(BP_IS_EMBEDDED(bp))) {
273 		ASSERT(dsl_dir_is_clone(ds->ds_dir));
274 		ASSERT(spa_feature_is_enabled(spa,
275 		    SPA_FEATURE_LIVELIST));
276 		bplist_append(&ds->ds_dir->dd_pending_frees, bp);
277 	}
278 
279 	if (bp->blk_birth > dsl_dataset_phys(ds)->ds_prev_snap_txg) {
280 		int64_t delta;
281 
282 		dprintf_bp(bp, "freeing ds=%llu", (u_longlong_t)ds->ds_object);
283 		dsl_free(tx->tx_pool, tx->tx_txg, bp);
284 
285 		mutex_enter(&ds->ds_lock);
286 		ASSERT(dsl_dataset_phys(ds)->ds_unique_bytes >= used ||
287 		    !DS_UNIQUE_IS_ACCURATE(ds));
288 		delta = parent_delta(ds, -used);
289 		dsl_dataset_phys(ds)->ds_unique_bytes -= used;
290 		mutex_exit(&ds->ds_lock);
291 		dsl_dir_diduse_transfer_space(ds->ds_dir,
292 		    delta, -compressed, -uncompressed, -used,
293 		    DD_USED_REFRSRV, DD_USED_HEAD, tx);
294 	} else {
295 		dprintf_bp(bp, "putting on dead list: %s", "");
296 		if (async) {
297 			/*
298 			 * We are here as part of zio's write done callback,
299 			 * which means we're a zio interrupt thread.  We can't
300 			 * call dsl_deadlist_insert() now because it may block
301 			 * waiting for I/O.  Instead, put bp on the deferred
302 			 * queue and let dsl_pool_sync() finish the job.
303 			 */
304 			bplist_append(&ds->ds_pending_deadlist, bp);
305 		} else {
306 			dsl_deadlist_insert(&ds->ds_deadlist, bp, B_FALSE, tx);
307 		}
308 		ASSERT3U(ds->ds_prev->ds_object, ==,
309 		    dsl_dataset_phys(ds)->ds_prev_snap_obj);
310 		ASSERT(dsl_dataset_phys(ds->ds_prev)->ds_num_children > 0);
311 		/* if (bp->blk_birth > prev prev snap txg) prev unique += bs */
312 		if (dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj ==
313 		    ds->ds_object && bp->blk_birth >
314 		    dsl_dataset_phys(ds->ds_prev)->ds_prev_snap_txg) {
315 			dmu_buf_will_dirty(ds->ds_prev->ds_dbuf, tx);
316 			mutex_enter(&ds->ds_prev->ds_lock);
317 			dsl_dataset_phys(ds->ds_prev)->ds_unique_bytes += used;
318 			mutex_exit(&ds->ds_prev->ds_lock);
319 		}
320 		if (bp->blk_birth > ds->ds_dir->dd_origin_txg) {
321 			dsl_dir_transfer_space(ds->ds_dir, used,
322 			    DD_USED_HEAD, DD_USED_SNAP, tx);
323 		}
324 	}
325 
326 	dsl_bookmark_block_killed(ds, bp, tx);
327 
328 	mutex_enter(&ds->ds_lock);
329 	ASSERT3U(dsl_dataset_phys(ds)->ds_referenced_bytes, >=, used);
330 	dsl_dataset_phys(ds)->ds_referenced_bytes -= used;
331 	ASSERT3U(dsl_dataset_phys(ds)->ds_compressed_bytes, >=, compressed);
332 	dsl_dataset_phys(ds)->ds_compressed_bytes -= compressed;
333 	ASSERT3U(dsl_dataset_phys(ds)->ds_uncompressed_bytes, >=, uncompressed);
334 	dsl_dataset_phys(ds)->ds_uncompressed_bytes -= uncompressed;
335 	mutex_exit(&ds->ds_lock);
336 
337 	return (used);
338 }
339 
340 struct feature_type_uint64_array_arg {
341 	uint64_t length;
342 	uint64_t *array;
343 };
344 
345 static void
unload_zfeature(dsl_dataset_t * ds,spa_feature_t f)346 unload_zfeature(dsl_dataset_t *ds, spa_feature_t f)
347 {
348 	switch (spa_feature_table[f].fi_type) {
349 	case ZFEATURE_TYPE_BOOLEAN:
350 		break;
351 	case ZFEATURE_TYPE_UINT64_ARRAY:
352 	{
353 		struct feature_type_uint64_array_arg *ftuaa = ds->ds_feature[f];
354 		kmem_free(ftuaa->array, ftuaa->length * sizeof (uint64_t));
355 		kmem_free(ftuaa, sizeof (*ftuaa));
356 		break;
357 	}
358 	default:
359 		panic("Invalid zfeature type %d", spa_feature_table[f].fi_type);
360 	}
361 }
362 
363 static int
load_zfeature(objset_t * mos,dsl_dataset_t * ds,spa_feature_t f)364 load_zfeature(objset_t *mos, dsl_dataset_t *ds, spa_feature_t f)
365 {
366 	int err = 0;
367 	switch (spa_feature_table[f].fi_type) {
368 	case ZFEATURE_TYPE_BOOLEAN:
369 		err = zap_contains(mos, ds->ds_object,
370 		    spa_feature_table[f].fi_guid);
371 		if (err == 0) {
372 			ds->ds_feature[f] = (void *)B_TRUE;
373 		} else {
374 			ASSERT3U(err, ==, ENOENT);
375 			err = 0;
376 		}
377 		break;
378 	case ZFEATURE_TYPE_UINT64_ARRAY:
379 	{
380 		uint64_t int_size, num_int;
381 		uint64_t *data;
382 		err = zap_length(mos, ds->ds_object,
383 		    spa_feature_table[f].fi_guid, &int_size, &num_int);
384 		if (err != 0) {
385 			ASSERT3U(err, ==, ENOENT);
386 			err = 0;
387 			break;
388 		}
389 		ASSERT3U(int_size, ==, sizeof (uint64_t));
390 		data = kmem_alloc(int_size * num_int, KM_SLEEP);
391 		VERIFY0(zap_lookup(mos, ds->ds_object,
392 		    spa_feature_table[f].fi_guid, int_size, num_int, data));
393 		struct feature_type_uint64_array_arg *ftuaa =
394 		    kmem_alloc(sizeof (*ftuaa), KM_SLEEP);
395 		ftuaa->length = num_int;
396 		ftuaa->array = data;
397 		ds->ds_feature[f] = ftuaa;
398 		break;
399 	}
400 	default:
401 		panic("Invalid zfeature type %d", spa_feature_table[f].fi_type);
402 	}
403 	return (err);
404 }
405 
406 /*
407  * We have to release the fsid synchronously or we risk that a subsequent
408  * mount of the same dataset will fail to unique_insert the fsid.  This
409  * failure would manifest itself as the fsid of this dataset changing
410  * between mounts which makes NFS clients quite unhappy.
411  */
412 static void
dsl_dataset_evict_sync(void * dbu)413 dsl_dataset_evict_sync(void *dbu)
414 {
415 	dsl_dataset_t *ds = dbu;
416 
417 	ASSERT(ds->ds_owner == NULL);
418 
419 	unique_remove(ds->ds_fsid_guid);
420 }
421 
422 static void
dsl_dataset_evict_async(void * dbu)423 dsl_dataset_evict_async(void *dbu)
424 {
425 	dsl_dataset_t *ds = dbu;
426 
427 	ASSERT(ds->ds_owner == NULL);
428 
429 	ds->ds_dbuf = NULL;
430 
431 	if (ds->ds_objset != NULL)
432 		dmu_objset_evict(ds->ds_objset);
433 
434 	if (ds->ds_prev) {
435 		dsl_dataset_rele(ds->ds_prev, ds);
436 		ds->ds_prev = NULL;
437 	}
438 
439 	dsl_bookmark_fini_ds(ds);
440 
441 	bplist_destroy(&ds->ds_pending_deadlist);
442 	if (dsl_deadlist_is_open(&ds->ds_deadlist))
443 		dsl_deadlist_close(&ds->ds_deadlist);
444 	if (dsl_deadlist_is_open(&ds->ds_remap_deadlist))
445 		dsl_deadlist_close(&ds->ds_remap_deadlist);
446 	if (ds->ds_dir)
447 		dsl_dir_async_rele(ds->ds_dir, ds);
448 
449 	ASSERT(!list_link_active(&ds->ds_synced_link));
450 
451 	for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
452 		if (dsl_dataset_feature_is_active(ds, f))
453 			unload_zfeature(ds, f);
454 	}
455 
456 	list_destroy(&ds->ds_prop_cbs);
457 	mutex_destroy(&ds->ds_lock);
458 	mutex_destroy(&ds->ds_opening_lock);
459 	mutex_destroy(&ds->ds_sendstream_lock);
460 	mutex_destroy(&ds->ds_remap_deadlist_lock);
461 	zfs_refcount_destroy(&ds->ds_longholds);
462 	rrw_destroy(&ds->ds_bp_rwlock);
463 
464 	kmem_free(ds, sizeof (dsl_dataset_t));
465 }
466 
467 int
dsl_dataset_get_snapname(dsl_dataset_t * ds)468 dsl_dataset_get_snapname(dsl_dataset_t *ds)
469 {
470 	dsl_dataset_phys_t *headphys;
471 	int err;
472 	dmu_buf_t *headdbuf;
473 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
474 	objset_t *mos = dp->dp_meta_objset;
475 
476 	if (ds->ds_snapname[0])
477 		return (0);
478 	if (dsl_dataset_phys(ds)->ds_next_snap_obj == 0)
479 		return (0);
480 
481 	err = dmu_bonus_hold(mos, dsl_dir_phys(ds->ds_dir)->dd_head_dataset_obj,
482 	    FTAG, &headdbuf);
483 	if (err != 0)
484 		return (err);
485 	headphys = headdbuf->db_data;
486 	err = zap_value_search(dp->dp_meta_objset,
487 	    headphys->ds_snapnames_zapobj, ds->ds_object, 0, ds->ds_snapname);
488 	if (err != 0 && zfs_recover == B_TRUE) {
489 		err = 0;
490 		(void) snprintf(ds->ds_snapname, sizeof (ds->ds_snapname),
491 		    "SNAPOBJ=%llu-ERR=%d",
492 		    (unsigned long long)ds->ds_object, err);
493 	}
494 	dmu_buf_rele(headdbuf, FTAG);
495 	return (err);
496 }
497 
498 int
dsl_dataset_snap_lookup(dsl_dataset_t * ds,const char * name,uint64_t * value)499 dsl_dataset_snap_lookup(dsl_dataset_t *ds, const char *name, uint64_t *value)
500 {
501 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
502 	uint64_t snapobj = dsl_dataset_phys(ds)->ds_snapnames_zapobj;
503 	matchtype_t mt = 0;
504 	int err;
505 
506 	if (dsl_dataset_phys(ds)->ds_flags & DS_FLAG_CI_DATASET)
507 		mt = MT_NORMALIZE;
508 
509 	err = zap_lookup_norm(mos, snapobj, name, 8, 1,
510 	    value, mt, NULL, 0, NULL);
511 	if (err == ENOTSUP && (mt & MT_NORMALIZE))
512 		err = zap_lookup(mos, snapobj, name, 8, 1, value);
513 	return (err);
514 }
515 
516 int
dsl_dataset_snap_remove(dsl_dataset_t * ds,const char * name,dmu_tx_t * tx,boolean_t adj_cnt)517 dsl_dataset_snap_remove(dsl_dataset_t *ds, const char *name, dmu_tx_t *tx,
518     boolean_t adj_cnt)
519 {
520 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
521 	uint64_t snapobj = dsl_dataset_phys(ds)->ds_snapnames_zapobj;
522 	matchtype_t mt = 0;
523 	int err;
524 
525 	dsl_dir_snap_cmtime_update(ds->ds_dir);
526 
527 	if (dsl_dataset_phys(ds)->ds_flags & DS_FLAG_CI_DATASET)
528 		mt = MT_NORMALIZE;
529 
530 	err = zap_remove_norm(mos, snapobj, name, mt, tx);
531 	if (err == ENOTSUP && (mt & MT_NORMALIZE))
532 		err = zap_remove(mos, snapobj, name, tx);
533 
534 	if (err == 0 && adj_cnt)
535 		dsl_fs_ss_count_adjust(ds->ds_dir, -1,
536 		    DD_FIELD_SNAPSHOT_COUNT, tx);
537 
538 	return (err);
539 }
540 
541 boolean_t
dsl_dataset_try_add_ref(dsl_pool_t * dp,dsl_dataset_t * ds,void * tag)542 dsl_dataset_try_add_ref(dsl_pool_t *dp, dsl_dataset_t *ds, void *tag)
543 {
544 	dmu_buf_t *dbuf = ds->ds_dbuf;
545 	boolean_t result = B_FALSE;
546 
547 	if (dbuf != NULL && dmu_buf_try_add_ref(dbuf, dp->dp_meta_objset,
548 	    ds->ds_object, DMU_BONUS_BLKID, tag)) {
549 
550 		if (ds == dmu_buf_get_user(dbuf))
551 			result = B_TRUE;
552 		else
553 			dmu_buf_rele(dbuf, tag);
554 	}
555 
556 	return (result);
557 }
558 
559 int
dsl_dataset_hold_obj(dsl_pool_t * dp,uint64_t dsobj,void * tag,dsl_dataset_t ** dsp)560 dsl_dataset_hold_obj(dsl_pool_t *dp, uint64_t dsobj, void *tag,
561     dsl_dataset_t **dsp)
562 {
563 	objset_t *mos = dp->dp_meta_objset;
564 	dmu_buf_t *dbuf;
565 	dsl_dataset_t *ds;
566 	int err;
567 	dmu_object_info_t doi;
568 
569 	ASSERT(dsl_pool_config_held(dp));
570 
571 	err = dmu_bonus_hold(mos, dsobj, tag, &dbuf);
572 	if (err != 0)
573 		return (err);
574 
575 	/* Make sure dsobj has the correct object type. */
576 	dmu_object_info_from_db(dbuf, &doi);
577 	if (doi.doi_bonus_type != DMU_OT_DSL_DATASET) {
578 		dmu_buf_rele(dbuf, tag);
579 		return (SET_ERROR(EINVAL));
580 	}
581 
582 	ds = dmu_buf_get_user(dbuf);
583 	if (ds == NULL) {
584 		dsl_dataset_t *winner = NULL;
585 
586 		ds = kmem_zalloc(sizeof (dsl_dataset_t), KM_SLEEP);
587 		ds->ds_dbuf = dbuf;
588 		ds->ds_object = dsobj;
589 		ds->ds_is_snapshot = dsl_dataset_phys(ds)->ds_num_children != 0;
590 		list_link_init(&ds->ds_synced_link);
591 
592 		err = dsl_dir_hold_obj(dp, dsl_dataset_phys(ds)->ds_dir_obj,
593 		    NULL, ds, &ds->ds_dir);
594 		if (err != 0) {
595 			kmem_free(ds, sizeof (dsl_dataset_t));
596 			dmu_buf_rele(dbuf, tag);
597 			return (err);
598 		}
599 
600 		mutex_init(&ds->ds_lock, NULL, MUTEX_DEFAULT, NULL);
601 		mutex_init(&ds->ds_opening_lock, NULL, MUTEX_DEFAULT, NULL);
602 		mutex_init(&ds->ds_sendstream_lock, NULL, MUTEX_DEFAULT, NULL);
603 		mutex_init(&ds->ds_remap_deadlist_lock,
604 		    NULL, MUTEX_DEFAULT, NULL);
605 		rrw_init(&ds->ds_bp_rwlock, B_FALSE);
606 		zfs_refcount_create(&ds->ds_longholds);
607 
608 		bplist_create(&ds->ds_pending_deadlist);
609 
610 		list_create(&ds->ds_sendstreams, sizeof (dmu_sendstatus_t),
611 		    offsetof(dmu_sendstatus_t, dss_link));
612 
613 		list_create(&ds->ds_prop_cbs, sizeof (dsl_prop_cb_record_t),
614 		    offsetof(dsl_prop_cb_record_t, cbr_ds_node));
615 
616 		if (doi.doi_type == DMU_OTN_ZAP_METADATA) {
617 			spa_feature_t f;
618 
619 			for (f = 0; f < SPA_FEATURES; f++) {
620 				if (!(spa_feature_table[f].fi_flags &
621 				    ZFEATURE_FLAG_PER_DATASET))
622 					continue;
623 				err = load_zfeature(mos, ds, f);
624 			}
625 		}
626 
627 		if (!ds->ds_is_snapshot) {
628 			ds->ds_snapname[0] = '\0';
629 			if (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0) {
630 				err = dsl_dataset_hold_obj(dp,
631 				    dsl_dataset_phys(ds)->ds_prev_snap_obj,
632 				    ds, &ds->ds_prev);
633 			}
634 			err = dsl_bookmark_init_ds(ds);
635 		} else {
636 			if (zfs_flags & ZFS_DEBUG_SNAPNAMES)
637 				err = dsl_dataset_get_snapname(ds);
638 			if (err == 0 &&
639 			    dsl_dataset_phys(ds)->ds_userrefs_obj != 0) {
640 				err = zap_count(
641 				    ds->ds_dir->dd_pool->dp_meta_objset,
642 				    dsl_dataset_phys(ds)->ds_userrefs_obj,
643 				    &ds->ds_userrefs);
644 			}
645 		}
646 
647 		if (err == 0 && !ds->ds_is_snapshot) {
648 			err = dsl_prop_get_int_ds(ds,
649 			    zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
650 			    &ds->ds_reserved);
651 			if (err == 0) {
652 				err = dsl_prop_get_int_ds(ds,
653 				    zfs_prop_to_name(ZFS_PROP_REFQUOTA),
654 				    &ds->ds_quota);
655 			}
656 		} else {
657 			ds->ds_reserved = ds->ds_quota = 0;
658 		}
659 
660 		if (err == 0 && ds->ds_dir->dd_crypto_obj != 0 &&
661 		    ds->ds_is_snapshot &&
662 		    zap_contains(mos, dsobj, DS_FIELD_IVSET_GUID) != 0) {
663 			dp->dp_spa->spa_errata =
664 			    ZPOOL_ERRATA_ZOL_8308_ENCRYPTION;
665 		}
666 
667 		dsl_deadlist_open(&ds->ds_deadlist,
668 		    mos, dsl_dataset_phys(ds)->ds_deadlist_obj);
669 		uint64_t remap_deadlist_obj =
670 		    dsl_dataset_get_remap_deadlist_object(ds);
671 		if (remap_deadlist_obj != 0) {
672 			dsl_deadlist_open(&ds->ds_remap_deadlist, mos,
673 			    remap_deadlist_obj);
674 		}
675 
676 		dmu_buf_init_user(&ds->ds_dbu, dsl_dataset_evict_sync,
677 		    dsl_dataset_evict_async, &ds->ds_dbuf);
678 		if (err == 0)
679 			winner = dmu_buf_set_user_ie(dbuf, &ds->ds_dbu);
680 
681 		if (err != 0 || winner != NULL) {
682 			bplist_destroy(&ds->ds_pending_deadlist);
683 			dsl_deadlist_close(&ds->ds_deadlist);
684 			if (dsl_deadlist_is_open(&ds->ds_remap_deadlist))
685 				dsl_deadlist_close(&ds->ds_remap_deadlist);
686 			dsl_bookmark_fini_ds(ds);
687 			if (ds->ds_prev)
688 				dsl_dataset_rele(ds->ds_prev, ds);
689 			dsl_dir_rele(ds->ds_dir, ds);
690 			for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
691 				if (dsl_dataset_feature_is_active(ds, f))
692 					unload_zfeature(ds, f);
693 			}
694 
695 			list_destroy(&ds->ds_prop_cbs);
696 			list_destroy(&ds->ds_sendstreams);
697 			mutex_destroy(&ds->ds_lock);
698 			mutex_destroy(&ds->ds_opening_lock);
699 			mutex_destroy(&ds->ds_sendstream_lock);
700 			mutex_destroy(&ds->ds_remap_deadlist_lock);
701 			zfs_refcount_destroy(&ds->ds_longholds);
702 			rrw_destroy(&ds->ds_bp_rwlock);
703 			kmem_free(ds, sizeof (dsl_dataset_t));
704 			if (err != 0) {
705 				dmu_buf_rele(dbuf, tag);
706 				return (err);
707 			}
708 			ds = winner;
709 		} else {
710 			ds->ds_fsid_guid =
711 			    unique_insert(dsl_dataset_phys(ds)->ds_fsid_guid);
712 			if (ds->ds_fsid_guid !=
713 			    dsl_dataset_phys(ds)->ds_fsid_guid) {
714 				zfs_dbgmsg("ds_fsid_guid changed from "
715 				    "%llx to %llx for pool %s dataset id %llu",
716 				    (long long)
717 				    dsl_dataset_phys(ds)->ds_fsid_guid,
718 				    (long long)ds->ds_fsid_guid,
719 				    spa_name(dp->dp_spa),
720 				    (u_longlong_t)dsobj);
721 			}
722 		}
723 	}
724 
725 	ASSERT3P(ds->ds_dbuf, ==, dbuf);
726 	ASSERT3P(dsl_dataset_phys(ds), ==, dbuf->db_data);
727 	ASSERT(dsl_dataset_phys(ds)->ds_prev_snap_obj != 0 ||
728 	    spa_version(dp->dp_spa) < SPA_VERSION_ORIGIN ||
729 	    dp->dp_origin_snap == NULL || ds == dp->dp_origin_snap);
730 	*dsp = ds;
731 
732 	return (0);
733 }
734 
735 int
dsl_dataset_create_key_mapping(dsl_dataset_t * ds)736 dsl_dataset_create_key_mapping(dsl_dataset_t *ds)
737 {
738 	dsl_dir_t *dd = ds->ds_dir;
739 
740 	if (dd->dd_crypto_obj == 0)
741 		return (0);
742 
743 	return (spa_keystore_create_mapping(dd->dd_pool->dp_spa,
744 	    ds, ds, &ds->ds_key_mapping));
745 }
746 
747 int
dsl_dataset_hold_obj_flags(dsl_pool_t * dp,uint64_t dsobj,ds_hold_flags_t flags,void * tag,dsl_dataset_t ** dsp)748 dsl_dataset_hold_obj_flags(dsl_pool_t *dp, uint64_t dsobj,
749     ds_hold_flags_t flags, void *tag, dsl_dataset_t **dsp)
750 {
751 	int err;
752 
753 	err = dsl_dataset_hold_obj(dp, dsobj, tag, dsp);
754 	if (err != 0)
755 		return (err);
756 
757 	ASSERT3P(*dsp, !=, NULL);
758 
759 	if (flags & DS_HOLD_FLAG_DECRYPT) {
760 		err = dsl_dataset_create_key_mapping(*dsp);
761 		if (err != 0)
762 			dsl_dataset_rele(*dsp, tag);
763 	}
764 
765 	return (err);
766 }
767 
768 int
dsl_dataset_hold_flags(dsl_pool_t * dp,const char * name,ds_hold_flags_t flags,void * tag,dsl_dataset_t ** dsp)769 dsl_dataset_hold_flags(dsl_pool_t *dp, const char *name, ds_hold_flags_t flags,
770     void *tag, dsl_dataset_t **dsp)
771 {
772 	dsl_dir_t *dd;
773 	const char *snapname;
774 	uint64_t obj;
775 	int err = 0;
776 	dsl_dataset_t *ds;
777 
778 	err = dsl_dir_hold(dp, name, FTAG, &dd, &snapname);
779 	if (err != 0)
780 		return (err);
781 
782 	ASSERT(dsl_pool_config_held(dp));
783 	obj = dsl_dir_phys(dd)->dd_head_dataset_obj;
784 	if (obj != 0)
785 		err = dsl_dataset_hold_obj_flags(dp, obj, flags, tag, &ds);
786 	else
787 		err = SET_ERROR(ENOENT);
788 
789 	/* we may be looking for a snapshot */
790 	if (err == 0 && snapname != NULL) {
791 		dsl_dataset_t *snap_ds;
792 
793 		if (*snapname++ != '@') {
794 			dsl_dataset_rele_flags(ds, flags, tag);
795 			dsl_dir_rele(dd, FTAG);
796 			return (SET_ERROR(ENOENT));
797 		}
798 
799 		dprintf("looking for snapshot '%s'\n", snapname);
800 		err = dsl_dataset_snap_lookup(ds, snapname, &obj);
801 		if (err == 0) {
802 			err = dsl_dataset_hold_obj_flags(dp, obj, flags, tag,
803 			    &snap_ds);
804 		}
805 		dsl_dataset_rele_flags(ds, flags, tag);
806 
807 		if (err == 0) {
808 			mutex_enter(&snap_ds->ds_lock);
809 			if (snap_ds->ds_snapname[0] == 0)
810 				(void) strlcpy(snap_ds->ds_snapname, snapname,
811 				    sizeof (snap_ds->ds_snapname));
812 			mutex_exit(&snap_ds->ds_lock);
813 			ds = snap_ds;
814 		}
815 	}
816 	if (err == 0)
817 		*dsp = ds;
818 	dsl_dir_rele(dd, FTAG);
819 	return (err);
820 }
821 
822 int
dsl_dataset_hold(dsl_pool_t * dp,const char * name,void * tag,dsl_dataset_t ** dsp)823 dsl_dataset_hold(dsl_pool_t *dp, const char *name, void *tag,
824     dsl_dataset_t **dsp)
825 {
826 	return (dsl_dataset_hold_flags(dp, name, 0, tag, dsp));
827 }
828 
829 static int
dsl_dataset_own_obj_impl(dsl_pool_t * dp,uint64_t dsobj,ds_hold_flags_t flags,void * tag,boolean_t override,dsl_dataset_t ** dsp)830 dsl_dataset_own_obj_impl(dsl_pool_t *dp, uint64_t dsobj, ds_hold_flags_t flags,
831     void *tag, boolean_t override, dsl_dataset_t **dsp)
832 {
833 	int err = dsl_dataset_hold_obj_flags(dp, dsobj, flags, tag, dsp);
834 	if (err != 0)
835 		return (err);
836 	if (!dsl_dataset_tryown(*dsp, tag, override)) {
837 		dsl_dataset_rele_flags(*dsp, flags, tag);
838 		*dsp = NULL;
839 		return (SET_ERROR(EBUSY));
840 	}
841 	return (0);
842 }
843 
844 
845 int
dsl_dataset_own_obj(dsl_pool_t * dp,uint64_t dsobj,ds_hold_flags_t flags,void * tag,dsl_dataset_t ** dsp)846 dsl_dataset_own_obj(dsl_pool_t *dp, uint64_t dsobj, ds_hold_flags_t flags,
847     void *tag, dsl_dataset_t **dsp)
848 {
849 	return (dsl_dataset_own_obj_impl(dp, dsobj, flags, tag, B_FALSE, dsp));
850 }
851 
852 int
dsl_dataset_own_obj_force(dsl_pool_t * dp,uint64_t dsobj,ds_hold_flags_t flags,void * tag,dsl_dataset_t ** dsp)853 dsl_dataset_own_obj_force(dsl_pool_t *dp, uint64_t dsobj,
854     ds_hold_flags_t flags, void *tag, dsl_dataset_t **dsp)
855 {
856 	return (dsl_dataset_own_obj_impl(dp, dsobj, flags, tag, B_TRUE, dsp));
857 }
858 
859 static int
dsl_dataset_own_impl(dsl_pool_t * dp,const char * name,ds_hold_flags_t flags,void * tag,boolean_t override,dsl_dataset_t ** dsp)860 dsl_dataset_own_impl(dsl_pool_t *dp, const char *name, ds_hold_flags_t flags,
861     void *tag, boolean_t override, dsl_dataset_t **dsp)
862 {
863 	int err = dsl_dataset_hold_flags(dp, name, flags, tag, dsp);
864 	if (err != 0)
865 		return (err);
866 	if (!dsl_dataset_tryown(*dsp, tag, override)) {
867 		dsl_dataset_rele_flags(*dsp, flags, tag);
868 		return (SET_ERROR(EBUSY));
869 	}
870 	return (0);
871 }
872 
873 int
dsl_dataset_own_force(dsl_pool_t * dp,const char * name,ds_hold_flags_t flags,void * tag,dsl_dataset_t ** dsp)874 dsl_dataset_own_force(dsl_pool_t *dp, const char *name, ds_hold_flags_t flags,
875     void *tag, dsl_dataset_t **dsp)
876 {
877 	return (dsl_dataset_own_impl(dp, name, flags, tag, B_TRUE, dsp));
878 }
879 
880 int
dsl_dataset_own(dsl_pool_t * dp,const char * name,ds_hold_flags_t flags,void * tag,dsl_dataset_t ** dsp)881 dsl_dataset_own(dsl_pool_t *dp, const char *name, ds_hold_flags_t flags,
882     void *tag, dsl_dataset_t **dsp)
883 {
884 	return (dsl_dataset_own_impl(dp, name, flags, tag, B_FALSE, dsp));
885 }
886 
887 /*
888  * See the comment above dsl_pool_hold() for details.  In summary, a long
889  * hold is used to prevent destruction of a dataset while the pool hold
890  * is dropped, allowing other concurrent operations (e.g. spa_sync()).
891  *
892  * The dataset and pool must be held when this function is called.  After it
893  * is called, the pool hold may be released while the dataset is still held
894  * and accessed.
895  */
896 void
dsl_dataset_long_hold(dsl_dataset_t * ds,void * tag)897 dsl_dataset_long_hold(dsl_dataset_t *ds, void *tag)
898 {
899 	ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool));
900 	(void) zfs_refcount_add(&ds->ds_longholds, tag);
901 }
902 
903 void
dsl_dataset_long_rele(dsl_dataset_t * ds,void * tag)904 dsl_dataset_long_rele(dsl_dataset_t *ds, void *tag)
905 {
906 	(void) zfs_refcount_remove(&ds->ds_longholds, tag);
907 }
908 
909 /* Return B_TRUE if there are any long holds on this dataset. */
910 boolean_t
dsl_dataset_long_held(dsl_dataset_t * ds)911 dsl_dataset_long_held(dsl_dataset_t *ds)
912 {
913 	return (!zfs_refcount_is_zero(&ds->ds_longholds));
914 }
915 
916 void
dsl_dataset_name(dsl_dataset_t * ds,char * name)917 dsl_dataset_name(dsl_dataset_t *ds, char *name)
918 {
919 	if (ds == NULL) {
920 		(void) strlcpy(name, "mos", ZFS_MAX_DATASET_NAME_LEN);
921 	} else {
922 		dsl_dir_name(ds->ds_dir, name);
923 		VERIFY0(dsl_dataset_get_snapname(ds));
924 		if (ds->ds_snapname[0]) {
925 			VERIFY3U(strlcat(name, "@", ZFS_MAX_DATASET_NAME_LEN),
926 			    <, ZFS_MAX_DATASET_NAME_LEN);
927 			/*
928 			 * We use a "recursive" mutex so that we
929 			 * can call dprintf_ds() with ds_lock held.
930 			 */
931 			if (!MUTEX_HELD(&ds->ds_lock)) {
932 				mutex_enter(&ds->ds_lock);
933 				VERIFY3U(strlcat(name, ds->ds_snapname,
934 				    ZFS_MAX_DATASET_NAME_LEN), <,
935 				    ZFS_MAX_DATASET_NAME_LEN);
936 				mutex_exit(&ds->ds_lock);
937 			} else {
938 				VERIFY3U(strlcat(name, ds->ds_snapname,
939 				    ZFS_MAX_DATASET_NAME_LEN), <,
940 				    ZFS_MAX_DATASET_NAME_LEN);
941 			}
942 		}
943 	}
944 }
945 
946 int
dsl_dataset_namelen(dsl_dataset_t * ds)947 dsl_dataset_namelen(dsl_dataset_t *ds)
948 {
949 	VERIFY0(dsl_dataset_get_snapname(ds));
950 	mutex_enter(&ds->ds_lock);
951 	int len = strlen(ds->ds_snapname);
952 	mutex_exit(&ds->ds_lock);
953 	/* add '@' if ds is a snap */
954 	if (len > 0)
955 		len++;
956 	len += dsl_dir_namelen(ds->ds_dir);
957 	return (len);
958 }
959 
960 void
dsl_dataset_rele(dsl_dataset_t * ds,void * tag)961 dsl_dataset_rele(dsl_dataset_t *ds, void *tag)
962 {
963 	dmu_buf_rele(ds->ds_dbuf, tag);
964 }
965 
966 void
dsl_dataset_remove_key_mapping(dsl_dataset_t * ds)967 dsl_dataset_remove_key_mapping(dsl_dataset_t *ds)
968 {
969 	dsl_dir_t *dd = ds->ds_dir;
970 
971 	if (dd == NULL || dd->dd_crypto_obj == 0)
972 		return;
973 
974 	(void) spa_keystore_remove_mapping(dd->dd_pool->dp_spa,
975 	    ds->ds_object, ds);
976 }
977 
978 void
dsl_dataset_rele_flags(dsl_dataset_t * ds,ds_hold_flags_t flags,void * tag)979 dsl_dataset_rele_flags(dsl_dataset_t *ds, ds_hold_flags_t flags, void *tag)
980 {
981 	if (flags & DS_HOLD_FLAG_DECRYPT)
982 		dsl_dataset_remove_key_mapping(ds);
983 
984 	dsl_dataset_rele(ds, tag);
985 }
986 
987 void
dsl_dataset_disown(dsl_dataset_t * ds,ds_hold_flags_t flags,void * tag)988 dsl_dataset_disown(dsl_dataset_t *ds, ds_hold_flags_t flags, void *tag)
989 {
990 	ASSERT3P(ds->ds_owner, ==, tag);
991 	ASSERT(ds->ds_dbuf != NULL);
992 
993 	mutex_enter(&ds->ds_lock);
994 	ds->ds_owner = NULL;
995 	mutex_exit(&ds->ds_lock);
996 	dsl_dataset_long_rele(ds, tag);
997 	dsl_dataset_rele_flags(ds, flags, tag);
998 }
999 
1000 boolean_t
dsl_dataset_tryown(dsl_dataset_t * ds,void * tag,boolean_t override)1001 dsl_dataset_tryown(dsl_dataset_t *ds, void *tag, boolean_t override)
1002 {
1003 	boolean_t gotit = FALSE;
1004 
1005 	ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool));
1006 	mutex_enter(&ds->ds_lock);
1007 	if (ds->ds_owner == NULL && (override || !(DS_IS_INCONSISTENT(ds) ||
1008 	    (dsl_dataset_feature_is_active(ds,
1009 	    SPA_FEATURE_REDACTED_DATASETS) &&
1010 	    !zfs_allow_redacted_dataset_mount)))) {
1011 		ds->ds_owner = tag;
1012 		dsl_dataset_long_hold(ds, tag);
1013 		gotit = TRUE;
1014 	}
1015 	mutex_exit(&ds->ds_lock);
1016 	return (gotit);
1017 }
1018 
1019 boolean_t
dsl_dataset_has_owner(dsl_dataset_t * ds)1020 dsl_dataset_has_owner(dsl_dataset_t *ds)
1021 {
1022 	boolean_t rv;
1023 	mutex_enter(&ds->ds_lock);
1024 	rv = (ds->ds_owner != NULL);
1025 	mutex_exit(&ds->ds_lock);
1026 	return (rv);
1027 }
1028 
1029 static boolean_t
zfeature_active(spa_feature_t f,void * arg)1030 zfeature_active(spa_feature_t f, void *arg)
1031 {
1032 	switch (spa_feature_table[f].fi_type) {
1033 	case ZFEATURE_TYPE_BOOLEAN: {
1034 		boolean_t val = (boolean_t)(uintptr_t)arg;
1035 		ASSERT(val == B_FALSE || val == B_TRUE);
1036 		return (val);
1037 	}
1038 	case ZFEATURE_TYPE_UINT64_ARRAY:
1039 		/*
1040 		 * In this case, arg is a uint64_t array.  The feature is active
1041 		 * if the array is non-null.
1042 		 */
1043 		return (arg != NULL);
1044 	default:
1045 		panic("Invalid zfeature type %d", spa_feature_table[f].fi_type);
1046 		return (B_FALSE);
1047 	}
1048 }
1049 
1050 boolean_t
dsl_dataset_feature_is_active(dsl_dataset_t * ds,spa_feature_t f)1051 dsl_dataset_feature_is_active(dsl_dataset_t *ds, spa_feature_t f)
1052 {
1053 	return (zfeature_active(f, ds->ds_feature[f]));
1054 }
1055 
1056 /*
1057  * The buffers passed out by this function are references to internal buffers;
1058  * they should not be freed by callers of this function, and they should not be
1059  * used after the dataset has been released.
1060  */
1061 boolean_t
dsl_dataset_get_uint64_array_feature(dsl_dataset_t * ds,spa_feature_t f,uint64_t * outlength,uint64_t ** outp)1062 dsl_dataset_get_uint64_array_feature(dsl_dataset_t *ds, spa_feature_t f,
1063     uint64_t *outlength, uint64_t **outp)
1064 {
1065 	VERIFY(spa_feature_table[f].fi_type & ZFEATURE_TYPE_UINT64_ARRAY);
1066 	if (!dsl_dataset_feature_is_active(ds, f)) {
1067 		return (B_FALSE);
1068 	}
1069 	struct feature_type_uint64_array_arg *ftuaa = ds->ds_feature[f];
1070 	*outp = ftuaa->array;
1071 	*outlength = ftuaa->length;
1072 	return (B_TRUE);
1073 }
1074 
1075 void
dsl_dataset_activate_feature(uint64_t dsobj,spa_feature_t f,void * arg,dmu_tx_t * tx)1076 dsl_dataset_activate_feature(uint64_t dsobj, spa_feature_t f, void *arg,
1077     dmu_tx_t *tx)
1078 {
1079 	spa_t *spa = dmu_tx_pool(tx)->dp_spa;
1080 	objset_t *mos = dmu_tx_pool(tx)->dp_meta_objset;
1081 	uint64_t zero = 0;
1082 
1083 	VERIFY(spa_feature_table[f].fi_flags & ZFEATURE_FLAG_PER_DATASET);
1084 
1085 	spa_feature_incr(spa, f, tx);
1086 	dmu_object_zapify(mos, dsobj, DMU_OT_DSL_DATASET, tx);
1087 
1088 	switch (spa_feature_table[f].fi_type) {
1089 	case ZFEATURE_TYPE_BOOLEAN:
1090 		ASSERT3S((boolean_t)(uintptr_t)arg, ==, B_TRUE);
1091 		VERIFY0(zap_add(mos, dsobj, spa_feature_table[f].fi_guid,
1092 		    sizeof (zero), 1, &zero, tx));
1093 		break;
1094 	case ZFEATURE_TYPE_UINT64_ARRAY:
1095 	{
1096 		struct feature_type_uint64_array_arg *ftuaa = arg;
1097 		VERIFY0(zap_add(mos, dsobj, spa_feature_table[f].fi_guid,
1098 		    sizeof (uint64_t), ftuaa->length, ftuaa->array, tx));
1099 		break;
1100 	}
1101 	default:
1102 		panic("Invalid zfeature type %d", spa_feature_table[f].fi_type);
1103 	}
1104 }
1105 
1106 static void
dsl_dataset_deactivate_feature_impl(dsl_dataset_t * ds,spa_feature_t f,dmu_tx_t * tx)1107 dsl_dataset_deactivate_feature_impl(dsl_dataset_t *ds, spa_feature_t f,
1108     dmu_tx_t *tx)
1109 {
1110 	spa_t *spa = dmu_tx_pool(tx)->dp_spa;
1111 	objset_t *mos = dmu_tx_pool(tx)->dp_meta_objset;
1112 	uint64_t dsobj = ds->ds_object;
1113 
1114 	VERIFY(spa_feature_table[f].fi_flags & ZFEATURE_FLAG_PER_DATASET);
1115 
1116 	VERIFY0(zap_remove(mos, dsobj, spa_feature_table[f].fi_guid, tx));
1117 	spa_feature_decr(spa, f, tx);
1118 	ds->ds_feature[f] = NULL;
1119 }
1120 
1121 void
dsl_dataset_deactivate_feature(dsl_dataset_t * ds,spa_feature_t f,dmu_tx_t * tx)1122 dsl_dataset_deactivate_feature(dsl_dataset_t *ds, spa_feature_t f, dmu_tx_t *tx)
1123 {
1124 	unload_zfeature(ds, f);
1125 	dsl_dataset_deactivate_feature_impl(ds, f, tx);
1126 }
1127 
1128 uint64_t
dsl_dataset_create_sync_dd(dsl_dir_t * dd,dsl_dataset_t * origin,dsl_crypto_params_t * dcp,uint64_t flags,dmu_tx_t * tx)1129 dsl_dataset_create_sync_dd(dsl_dir_t *dd, dsl_dataset_t *origin,
1130     dsl_crypto_params_t *dcp, uint64_t flags, dmu_tx_t *tx)
1131 {
1132 	dsl_pool_t *dp = dd->dd_pool;
1133 	dmu_buf_t *dbuf;
1134 	dsl_dataset_phys_t *dsphys;
1135 	uint64_t dsobj;
1136 	objset_t *mos = dp->dp_meta_objset;
1137 
1138 	if (origin == NULL)
1139 		origin = dp->dp_origin_snap;
1140 
1141 	ASSERT(origin == NULL || origin->ds_dir->dd_pool == dp);
1142 	ASSERT(origin == NULL || dsl_dataset_phys(origin)->ds_num_children > 0);
1143 	ASSERT(dmu_tx_is_syncing(tx));
1144 	ASSERT(dsl_dir_phys(dd)->dd_head_dataset_obj == 0);
1145 
1146 	dsobj = dmu_object_alloc(mos, DMU_OT_DSL_DATASET, 0,
1147 	    DMU_OT_DSL_DATASET, sizeof (dsl_dataset_phys_t), tx);
1148 	VERIFY0(dmu_bonus_hold(mos, dsobj, FTAG, &dbuf));
1149 	dmu_buf_will_dirty(dbuf, tx);
1150 	dsphys = dbuf->db_data;
1151 	bzero(dsphys, sizeof (dsl_dataset_phys_t));
1152 	dsphys->ds_dir_obj = dd->dd_object;
1153 	dsphys->ds_flags = flags;
1154 	dsphys->ds_fsid_guid = unique_create();
1155 	(void) random_get_pseudo_bytes((void*)&dsphys->ds_guid,
1156 	    sizeof (dsphys->ds_guid));
1157 	dsphys->ds_snapnames_zapobj =
1158 	    zap_create_norm(mos, U8_TEXTPREP_TOUPPER, DMU_OT_DSL_DS_SNAP_MAP,
1159 	    DMU_OT_NONE, 0, tx);
1160 	dsphys->ds_creation_time = gethrestime_sec();
1161 	dsphys->ds_creation_txg = tx->tx_txg == TXG_INITIAL ? 1 : tx->tx_txg;
1162 
1163 	if (origin == NULL) {
1164 		dsphys->ds_deadlist_obj = dsl_deadlist_alloc(mos, tx);
1165 	} else {
1166 		dsl_dataset_t *ohds; /* head of the origin snapshot */
1167 
1168 		dsphys->ds_prev_snap_obj = origin->ds_object;
1169 		dsphys->ds_prev_snap_txg =
1170 		    dsl_dataset_phys(origin)->ds_creation_txg;
1171 		dsphys->ds_referenced_bytes =
1172 		    dsl_dataset_phys(origin)->ds_referenced_bytes;
1173 		dsphys->ds_compressed_bytes =
1174 		    dsl_dataset_phys(origin)->ds_compressed_bytes;
1175 		dsphys->ds_uncompressed_bytes =
1176 		    dsl_dataset_phys(origin)->ds_uncompressed_bytes;
1177 		rrw_enter(&origin->ds_bp_rwlock, RW_READER, FTAG);
1178 		dsphys->ds_bp = dsl_dataset_phys(origin)->ds_bp;
1179 		rrw_exit(&origin->ds_bp_rwlock, FTAG);
1180 
1181 		/*
1182 		 * Inherit flags that describe the dataset's contents
1183 		 * (INCONSISTENT) or properties (Case Insensitive).
1184 		 */
1185 		dsphys->ds_flags |= dsl_dataset_phys(origin)->ds_flags &
1186 		    (DS_FLAG_INCONSISTENT | DS_FLAG_CI_DATASET);
1187 
1188 		for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
1189 			if (zfeature_active(f, origin->ds_feature[f])) {
1190 				dsl_dataset_activate_feature(dsobj, f,
1191 				    origin->ds_feature[f], tx);
1192 			}
1193 		}
1194 
1195 		dmu_buf_will_dirty(origin->ds_dbuf, tx);
1196 		dsl_dataset_phys(origin)->ds_num_children++;
1197 
1198 		VERIFY0(dsl_dataset_hold_obj(dp,
1199 		    dsl_dir_phys(origin->ds_dir)->dd_head_dataset_obj,
1200 		    FTAG, &ohds));
1201 		dsphys->ds_deadlist_obj = dsl_deadlist_clone(&ohds->ds_deadlist,
1202 		    dsphys->ds_prev_snap_txg, dsphys->ds_prev_snap_obj, tx);
1203 		dsl_dataset_rele(ohds, FTAG);
1204 
1205 		if (spa_version(dp->dp_spa) >= SPA_VERSION_NEXT_CLONES) {
1206 			if (dsl_dataset_phys(origin)->ds_next_clones_obj == 0) {
1207 				dsl_dataset_phys(origin)->ds_next_clones_obj =
1208 				    zap_create(mos,
1209 				    DMU_OT_NEXT_CLONES, DMU_OT_NONE, 0, tx);
1210 			}
1211 			VERIFY0(zap_add_int(mos,
1212 			    dsl_dataset_phys(origin)->ds_next_clones_obj,
1213 			    dsobj, tx));
1214 		}
1215 
1216 		dmu_buf_will_dirty(dd->dd_dbuf, tx);
1217 		dsl_dir_phys(dd)->dd_origin_obj = origin->ds_object;
1218 		if (spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
1219 			if (dsl_dir_phys(origin->ds_dir)->dd_clones == 0) {
1220 				dmu_buf_will_dirty(origin->ds_dir->dd_dbuf, tx);
1221 				dsl_dir_phys(origin->ds_dir)->dd_clones =
1222 				    zap_create(mos,
1223 				    DMU_OT_DSL_CLONES, DMU_OT_NONE, 0, tx);
1224 			}
1225 			VERIFY0(zap_add_int(mos,
1226 			    dsl_dir_phys(origin->ds_dir)->dd_clones,
1227 			    dsobj, tx));
1228 		}
1229 	}
1230 
1231 	/* handle encryption */
1232 	dsl_dataset_create_crypt_sync(dsobj, dd, origin, dcp, tx);
1233 
1234 	if (spa_version(dp->dp_spa) >= SPA_VERSION_UNIQUE_ACCURATE)
1235 		dsphys->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
1236 
1237 	dmu_buf_rele(dbuf, FTAG);
1238 
1239 	dmu_buf_will_dirty(dd->dd_dbuf, tx);
1240 	dsl_dir_phys(dd)->dd_head_dataset_obj = dsobj;
1241 
1242 	return (dsobj);
1243 }
1244 
1245 static void
dsl_dataset_zero_zil(dsl_dataset_t * ds,dmu_tx_t * tx)1246 dsl_dataset_zero_zil(dsl_dataset_t *ds, dmu_tx_t *tx)
1247 {
1248 	objset_t *os;
1249 
1250 	VERIFY0(dmu_objset_from_ds(ds, &os));
1251 	if (bcmp(&os->os_zil_header, &zero_zil, sizeof (zero_zil)) != 0) {
1252 		dsl_pool_t *dp = ds->ds_dir->dd_pool;
1253 		zio_t *zio;
1254 
1255 		bzero(&os->os_zil_header, sizeof (os->os_zil_header));
1256 		if (os->os_encrypted)
1257 			os->os_next_write_raw[tx->tx_txg & TXG_MASK] = B_TRUE;
1258 
1259 		zio = zio_root(dp->dp_spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
1260 		dsl_dataset_sync(ds, zio, tx);
1261 		VERIFY0(zio_wait(zio));
1262 
1263 		/* dsl_dataset_sync_done will drop this reference. */
1264 		dmu_buf_add_ref(ds->ds_dbuf, ds);
1265 		dsl_dataset_sync_done(ds, tx);
1266 	}
1267 }
1268 
1269 uint64_t
dsl_dataset_create_sync(dsl_dir_t * pdd,const char * lastname,dsl_dataset_t * origin,uint64_t flags,cred_t * cr,dsl_crypto_params_t * dcp,dmu_tx_t * tx)1270 dsl_dataset_create_sync(dsl_dir_t *pdd, const char *lastname,
1271     dsl_dataset_t *origin, uint64_t flags, cred_t *cr,
1272     dsl_crypto_params_t *dcp, dmu_tx_t *tx)
1273 {
1274 	dsl_pool_t *dp = pdd->dd_pool;
1275 	uint64_t dsobj, ddobj;
1276 	dsl_dir_t *dd;
1277 
1278 	ASSERT(dmu_tx_is_syncing(tx));
1279 	ASSERT(lastname[0] != '@');
1280 	/*
1281 	 * Filesystems will eventually have their origin set to dp_origin_snap,
1282 	 * but that's taken care of in dsl_dataset_create_sync_dd. When
1283 	 * creating a filesystem, this function is called with origin equal to
1284 	 * NULL.
1285 	 */
1286 	if (origin != NULL)
1287 		ASSERT3P(origin, !=, dp->dp_origin_snap);
1288 
1289 	ddobj = dsl_dir_create_sync(dp, pdd, lastname, tx);
1290 	VERIFY0(dsl_dir_hold_obj(dp, ddobj, lastname, FTAG, &dd));
1291 
1292 	dsobj = dsl_dataset_create_sync_dd(dd, origin, dcp,
1293 	    flags & ~DS_CREATE_FLAG_NODIRTY, tx);
1294 
1295 	dsl_deleg_set_create_perms(dd, tx, cr);
1296 
1297 	/*
1298 	 * If we are creating a clone and the livelist feature is enabled,
1299 	 * add the entry DD_FIELD_LIVELIST to ZAP.
1300 	 */
1301 	if (origin != NULL &&
1302 	    spa_feature_is_enabled(dp->dp_spa, SPA_FEATURE_LIVELIST)) {
1303 		objset_t *mos = dd->dd_pool->dp_meta_objset;
1304 		dsl_dir_zapify(dd, tx);
1305 		uint64_t obj = dsl_deadlist_alloc(mos, tx);
1306 		VERIFY0(zap_add(mos, dd->dd_object, DD_FIELD_LIVELIST,
1307 		    sizeof (uint64_t), 1, &obj, tx));
1308 		spa_feature_incr(dp->dp_spa, SPA_FEATURE_LIVELIST, tx);
1309 	}
1310 
1311 	/*
1312 	 * Since we're creating a new node we know it's a leaf, so we can
1313 	 * initialize the counts if the limit feature is active.
1314 	 */
1315 	if (spa_feature_is_active(dp->dp_spa, SPA_FEATURE_FS_SS_LIMIT)) {
1316 		uint64_t cnt = 0;
1317 		objset_t *os = dd->dd_pool->dp_meta_objset;
1318 
1319 		dsl_dir_zapify(dd, tx);
1320 		VERIFY0(zap_add(os, dd->dd_object, DD_FIELD_FILESYSTEM_COUNT,
1321 		    sizeof (cnt), 1, &cnt, tx));
1322 		VERIFY0(zap_add(os, dd->dd_object, DD_FIELD_SNAPSHOT_COUNT,
1323 		    sizeof (cnt), 1, &cnt, tx));
1324 	}
1325 
1326 	dsl_dir_rele(dd, FTAG);
1327 
1328 	/*
1329 	 * If we are creating a clone, make sure we zero out any stale
1330 	 * data from the origin snapshots zil header.
1331 	 */
1332 	if (origin != NULL && !(flags & DS_CREATE_FLAG_NODIRTY)) {
1333 		dsl_dataset_t *ds;
1334 
1335 		VERIFY0(dsl_dataset_hold_obj(dp, dsobj, FTAG, &ds));
1336 		dsl_dataset_zero_zil(ds, tx);
1337 		dsl_dataset_rele(ds, FTAG);
1338 	}
1339 
1340 	return (dsobj);
1341 }
1342 
1343 /*
1344  * The unique space in the head dataset can be calculated by subtracting
1345  * the space used in the most recent snapshot, that is still being used
1346  * in this file system, from the space currently in use.  To figure out
1347  * the space in the most recent snapshot still in use, we need to take
1348  * the total space used in the snapshot and subtract out the space that
1349  * has been freed up since the snapshot was taken.
1350  */
1351 void
dsl_dataset_recalc_head_uniq(dsl_dataset_t * ds)1352 dsl_dataset_recalc_head_uniq(dsl_dataset_t *ds)
1353 {
1354 	uint64_t mrs_used;
1355 	uint64_t dlused, dlcomp, dluncomp;
1356 
1357 	ASSERT(!ds->ds_is_snapshot);
1358 
1359 	if (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0)
1360 		mrs_used = dsl_dataset_phys(ds->ds_prev)->ds_referenced_bytes;
1361 	else
1362 		mrs_used = 0;
1363 
1364 	dsl_deadlist_space(&ds->ds_deadlist, &dlused, &dlcomp, &dluncomp);
1365 
1366 	ASSERT3U(dlused, <=, mrs_used);
1367 	dsl_dataset_phys(ds)->ds_unique_bytes =
1368 	    dsl_dataset_phys(ds)->ds_referenced_bytes - (mrs_used - dlused);
1369 
1370 	if (spa_version(ds->ds_dir->dd_pool->dp_spa) >=
1371 	    SPA_VERSION_UNIQUE_ACCURATE)
1372 		dsl_dataset_phys(ds)->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
1373 }
1374 
1375 void
dsl_dataset_remove_from_next_clones(dsl_dataset_t * ds,uint64_t obj,dmu_tx_t * tx)1376 dsl_dataset_remove_from_next_clones(dsl_dataset_t *ds, uint64_t obj,
1377     dmu_tx_t *tx)
1378 {
1379 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
1380 	uint64_t count __maybe_unused;
1381 	int err;
1382 
1383 	ASSERT(dsl_dataset_phys(ds)->ds_num_children >= 2);
1384 	err = zap_remove_int(mos, dsl_dataset_phys(ds)->ds_next_clones_obj,
1385 	    obj, tx);
1386 	/*
1387 	 * The err should not be ENOENT, but a bug in a previous version
1388 	 * of the code could cause upgrade_clones_cb() to not set
1389 	 * ds_next_snap_obj when it should, leading to a missing entry.
1390 	 * If we knew that the pool was created after
1391 	 * SPA_VERSION_NEXT_CLONES, we could assert that it isn't
1392 	 * ENOENT.  However, at least we can check that we don't have
1393 	 * too many entries in the next_clones_obj even after failing to
1394 	 * remove this one.
1395 	 */
1396 	if (err != ENOENT)
1397 		VERIFY0(err);
1398 	ASSERT0(zap_count(mos, dsl_dataset_phys(ds)->ds_next_clones_obj,
1399 	    &count));
1400 	ASSERT3U(count, <=, dsl_dataset_phys(ds)->ds_num_children - 2);
1401 }
1402 
1403 
1404 blkptr_t *
dsl_dataset_get_blkptr(dsl_dataset_t * ds)1405 dsl_dataset_get_blkptr(dsl_dataset_t *ds)
1406 {
1407 	return (&dsl_dataset_phys(ds)->ds_bp);
1408 }
1409 
1410 spa_t *
dsl_dataset_get_spa(dsl_dataset_t * ds)1411 dsl_dataset_get_spa(dsl_dataset_t *ds)
1412 {
1413 	return (ds->ds_dir->dd_pool->dp_spa);
1414 }
1415 
1416 void
dsl_dataset_dirty(dsl_dataset_t * ds,dmu_tx_t * tx)1417 dsl_dataset_dirty(dsl_dataset_t *ds, dmu_tx_t *tx)
1418 {
1419 	dsl_pool_t *dp;
1420 
1421 	if (ds == NULL) /* this is the meta-objset */
1422 		return;
1423 
1424 	ASSERT(ds->ds_objset != NULL);
1425 
1426 	if (dsl_dataset_phys(ds)->ds_next_snap_obj != 0)
1427 		panic("dirtying snapshot!");
1428 
1429 	/* Must not dirty a dataset in the same txg where it got snapshotted. */
1430 	ASSERT3U(tx->tx_txg, >, dsl_dataset_phys(ds)->ds_prev_snap_txg);
1431 
1432 	dp = ds->ds_dir->dd_pool;
1433 	if (txg_list_add(&dp->dp_dirty_datasets, ds, tx->tx_txg)) {
1434 		objset_t *os = ds->ds_objset;
1435 
1436 		/* up the hold count until we can be written out */
1437 		dmu_buf_add_ref(ds->ds_dbuf, ds);
1438 
1439 		/* if this dataset is encrypted, grab a reference to the DCK */
1440 		if (ds->ds_dir->dd_crypto_obj != 0 &&
1441 		    !os->os_raw_receive &&
1442 		    !os->os_next_write_raw[tx->tx_txg & TXG_MASK]) {
1443 			ASSERT3P(ds->ds_key_mapping, !=, NULL);
1444 			key_mapping_add_ref(ds->ds_key_mapping, ds);
1445 		}
1446 	}
1447 }
1448 
1449 static int
dsl_dataset_snapshot_reserve_space(dsl_dataset_t * ds,dmu_tx_t * tx)1450 dsl_dataset_snapshot_reserve_space(dsl_dataset_t *ds, dmu_tx_t *tx)
1451 {
1452 	uint64_t asize;
1453 
1454 	if (!dmu_tx_is_syncing(tx))
1455 		return (0);
1456 
1457 	/*
1458 	 * If there's an fs-only reservation, any blocks that might become
1459 	 * owned by the snapshot dataset must be accommodated by space
1460 	 * outside of the reservation.
1461 	 */
1462 	ASSERT(ds->ds_reserved == 0 || DS_UNIQUE_IS_ACCURATE(ds));
1463 	asize = MIN(dsl_dataset_phys(ds)->ds_unique_bytes, ds->ds_reserved);
1464 	if (asize > dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE))
1465 		return (SET_ERROR(ENOSPC));
1466 
1467 	/*
1468 	 * Propagate any reserved space for this snapshot to other
1469 	 * snapshot checks in this sync group.
1470 	 */
1471 	if (asize > 0)
1472 		dsl_dir_willuse_space(ds->ds_dir, asize, tx);
1473 
1474 	return (0);
1475 }
1476 
1477 int
dsl_dataset_snapshot_check_impl(dsl_dataset_t * ds,const char * snapname,dmu_tx_t * tx,boolean_t recv,uint64_t cnt,cred_t * cr,proc_t * proc)1478 dsl_dataset_snapshot_check_impl(dsl_dataset_t *ds, const char *snapname,
1479     dmu_tx_t *tx, boolean_t recv, uint64_t cnt, cred_t *cr, proc_t *proc)
1480 {
1481 	int error;
1482 	uint64_t value;
1483 
1484 	ds->ds_trysnap_txg = tx->tx_txg;
1485 
1486 	if (!dmu_tx_is_syncing(tx))
1487 		return (0);
1488 
1489 	/*
1490 	 * We don't allow multiple snapshots of the same txg.  If there
1491 	 * is already one, try again.
1492 	 */
1493 	if (dsl_dataset_phys(ds)->ds_prev_snap_txg >= tx->tx_txg)
1494 		return (SET_ERROR(EAGAIN));
1495 
1496 	/*
1497 	 * Check for conflicting snapshot name.
1498 	 */
1499 	error = dsl_dataset_snap_lookup(ds, snapname, &value);
1500 	if (error == 0)
1501 		return (SET_ERROR(EEXIST));
1502 	if (error != ENOENT)
1503 		return (error);
1504 
1505 	/*
1506 	 * We don't allow taking snapshots of inconsistent datasets, such as
1507 	 * those into which we are currently receiving.  However, if we are
1508 	 * creating this snapshot as part of a receive, this check will be
1509 	 * executed atomically with respect to the completion of the receive
1510 	 * itself but prior to the clearing of DS_FLAG_INCONSISTENT; in this
1511 	 * case we ignore this, knowing it will be fixed up for us shortly in
1512 	 * dmu_recv_end_sync().
1513 	 */
1514 	if (!recv && DS_IS_INCONSISTENT(ds))
1515 		return (SET_ERROR(EBUSY));
1516 
1517 	/*
1518 	 * Skip the check for temporary snapshots or if we have already checked
1519 	 * the counts in dsl_dataset_snapshot_check. This means we really only
1520 	 * check the count here when we're receiving a stream.
1521 	 */
1522 	if (cnt != 0 && cr != NULL) {
1523 		error = dsl_fs_ss_limit_check(ds->ds_dir, cnt,
1524 		    ZFS_PROP_SNAPSHOT_LIMIT, NULL, cr, proc);
1525 		if (error != 0)
1526 			return (error);
1527 	}
1528 
1529 	error = dsl_dataset_snapshot_reserve_space(ds, tx);
1530 	if (error != 0)
1531 		return (error);
1532 
1533 	return (0);
1534 }
1535 
1536 int
dsl_dataset_snapshot_check(void * arg,dmu_tx_t * tx)1537 dsl_dataset_snapshot_check(void *arg, dmu_tx_t *tx)
1538 {
1539 	dsl_dataset_snapshot_arg_t *ddsa = arg;
1540 	dsl_pool_t *dp = dmu_tx_pool(tx);
1541 	nvpair_t *pair;
1542 	int rv = 0;
1543 
1544 	/*
1545 	 * Pre-compute how many total new snapshots will be created for each
1546 	 * level in the tree and below. This is needed for validating the
1547 	 * snapshot limit when either taking a recursive snapshot or when
1548 	 * taking multiple snapshots.
1549 	 *
1550 	 * The problem is that the counts are not actually adjusted when
1551 	 * we are checking, only when we finally sync. For a single snapshot,
1552 	 * this is easy, the count will increase by 1 at each node up the tree,
1553 	 * but its more complicated for the recursive/multiple snapshot case.
1554 	 *
1555 	 * The dsl_fs_ss_limit_check function does recursively check the count
1556 	 * at each level up the tree but since it is validating each snapshot
1557 	 * independently we need to be sure that we are validating the complete
1558 	 * count for the entire set of snapshots. We do this by rolling up the
1559 	 * counts for each component of the name into an nvlist and then
1560 	 * checking each of those cases with the aggregated count.
1561 	 *
1562 	 * This approach properly handles not only the recursive snapshot
1563 	 * case (where we get all of those on the ddsa_snaps list) but also
1564 	 * the sibling case (e.g. snapshot a/b and a/c so that we will also
1565 	 * validate the limit on 'a' using a count of 2).
1566 	 *
1567 	 * We validate the snapshot names in the third loop and only report
1568 	 * name errors once.
1569 	 */
1570 	if (dmu_tx_is_syncing(tx)) {
1571 		char *nm;
1572 		nvlist_t *cnt_track = NULL;
1573 		cnt_track = fnvlist_alloc();
1574 
1575 		nm = kmem_alloc(MAXPATHLEN, KM_SLEEP);
1576 
1577 		/* Rollup aggregated counts into the cnt_track list */
1578 		for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
1579 		    pair != NULL;
1580 		    pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
1581 			char *pdelim;
1582 			uint64_t val;
1583 
1584 			(void) strlcpy(nm, nvpair_name(pair), MAXPATHLEN);
1585 			pdelim = strchr(nm, '@');
1586 			if (pdelim == NULL)
1587 				continue;
1588 			*pdelim = '\0';
1589 
1590 			do {
1591 				if (nvlist_lookup_uint64(cnt_track, nm,
1592 				    &val) == 0) {
1593 					/* update existing entry */
1594 					fnvlist_add_uint64(cnt_track, nm,
1595 					    val + 1);
1596 				} else {
1597 					/* add to list */
1598 					fnvlist_add_uint64(cnt_track, nm, 1);
1599 				}
1600 
1601 				pdelim = strrchr(nm, '/');
1602 				if (pdelim != NULL)
1603 					*pdelim = '\0';
1604 			} while (pdelim != NULL);
1605 		}
1606 
1607 		kmem_free(nm, MAXPATHLEN);
1608 
1609 		/* Check aggregated counts at each level */
1610 		for (pair = nvlist_next_nvpair(cnt_track, NULL);
1611 		    pair != NULL; pair = nvlist_next_nvpair(cnt_track, pair)) {
1612 			int error = 0;
1613 			char *name;
1614 			uint64_t cnt = 0;
1615 			dsl_dataset_t *ds;
1616 
1617 			name = nvpair_name(pair);
1618 			cnt = fnvpair_value_uint64(pair);
1619 			ASSERT(cnt > 0);
1620 
1621 			error = dsl_dataset_hold(dp, name, FTAG, &ds);
1622 			if (error == 0) {
1623 				error = dsl_fs_ss_limit_check(ds->ds_dir, cnt,
1624 				    ZFS_PROP_SNAPSHOT_LIMIT, NULL,
1625 				    ddsa->ddsa_cr, ddsa->ddsa_proc);
1626 				dsl_dataset_rele(ds, FTAG);
1627 			}
1628 
1629 			if (error != 0) {
1630 				if (ddsa->ddsa_errors != NULL)
1631 					fnvlist_add_int32(ddsa->ddsa_errors,
1632 					    name, error);
1633 				rv = error;
1634 				/* only report one error for this check */
1635 				break;
1636 			}
1637 		}
1638 		nvlist_free(cnt_track);
1639 	}
1640 
1641 	for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
1642 	    pair != NULL; pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
1643 		int error = 0;
1644 		dsl_dataset_t *ds;
1645 		char *name, *atp = NULL;
1646 		char dsname[ZFS_MAX_DATASET_NAME_LEN];
1647 
1648 		name = nvpair_name(pair);
1649 		if (strlen(name) >= ZFS_MAX_DATASET_NAME_LEN)
1650 			error = SET_ERROR(ENAMETOOLONG);
1651 		if (error == 0) {
1652 			atp = strchr(name, '@');
1653 			if (atp == NULL)
1654 				error = SET_ERROR(EINVAL);
1655 			if (error == 0)
1656 				(void) strlcpy(dsname, name, atp - name + 1);
1657 		}
1658 		if (error == 0)
1659 			error = dsl_dataset_hold(dp, dsname, FTAG, &ds);
1660 		if (error == 0) {
1661 			/* passing 0/NULL skips dsl_fs_ss_limit_check */
1662 			error = dsl_dataset_snapshot_check_impl(ds,
1663 			    atp + 1, tx, B_FALSE, 0, NULL, NULL);
1664 			dsl_dataset_rele(ds, FTAG);
1665 		}
1666 
1667 		if (error != 0) {
1668 			if (ddsa->ddsa_errors != NULL) {
1669 				fnvlist_add_int32(ddsa->ddsa_errors,
1670 				    name, error);
1671 			}
1672 			rv = error;
1673 		}
1674 	}
1675 
1676 	return (rv);
1677 }
1678 
1679 void
dsl_dataset_snapshot_sync_impl(dsl_dataset_t * ds,const char * snapname,dmu_tx_t * tx)1680 dsl_dataset_snapshot_sync_impl(dsl_dataset_t *ds, const char *snapname,
1681     dmu_tx_t *tx)
1682 {
1683 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
1684 	dmu_buf_t *dbuf;
1685 	dsl_dataset_phys_t *dsphys;
1686 	uint64_t dsobj, crtxg;
1687 	objset_t *mos = dp->dp_meta_objset;
1688 	static zil_header_t zero_zil __maybe_unused;
1689 	objset_t *os __maybe_unused;
1690 
1691 	ASSERT(RRW_WRITE_HELD(&dp->dp_config_rwlock));
1692 
1693 	/*
1694 	 * If we are on an old pool, the zil must not be active, in which
1695 	 * case it will be zeroed.  Usually zil_suspend() accomplishes this.
1696 	 */
1697 	ASSERT(spa_version(dmu_tx_pool(tx)->dp_spa) >= SPA_VERSION_FAST_SNAP ||
1698 	    dmu_objset_from_ds(ds, &os) != 0 ||
1699 	    bcmp(&os->os_phys->os_zil_header, &zero_zil,
1700 	    sizeof (zero_zil)) == 0);
1701 
1702 	/* Should not snapshot a dirty dataset. */
1703 	ASSERT(!txg_list_member(&ds->ds_dir->dd_pool->dp_dirty_datasets,
1704 	    ds, tx->tx_txg));
1705 
1706 	dsl_fs_ss_count_adjust(ds->ds_dir, 1, DD_FIELD_SNAPSHOT_COUNT, tx);
1707 
1708 	/*
1709 	 * The origin's ds_creation_txg has to be < TXG_INITIAL
1710 	 */
1711 	if (strcmp(snapname, ORIGIN_DIR_NAME) == 0)
1712 		crtxg = 1;
1713 	else
1714 		crtxg = tx->tx_txg;
1715 
1716 	dsobj = dmu_object_alloc(mos, DMU_OT_DSL_DATASET, 0,
1717 	    DMU_OT_DSL_DATASET, sizeof (dsl_dataset_phys_t), tx);
1718 	VERIFY0(dmu_bonus_hold(mos, dsobj, FTAG, &dbuf));
1719 	dmu_buf_will_dirty(dbuf, tx);
1720 	dsphys = dbuf->db_data;
1721 	bzero(dsphys, sizeof (dsl_dataset_phys_t));
1722 	dsphys->ds_dir_obj = ds->ds_dir->dd_object;
1723 	dsphys->ds_fsid_guid = unique_create();
1724 	(void) random_get_pseudo_bytes((void*)&dsphys->ds_guid,
1725 	    sizeof (dsphys->ds_guid));
1726 	dsphys->ds_prev_snap_obj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
1727 	dsphys->ds_prev_snap_txg = dsl_dataset_phys(ds)->ds_prev_snap_txg;
1728 	dsphys->ds_next_snap_obj = ds->ds_object;
1729 	dsphys->ds_num_children = 1;
1730 	dsphys->ds_creation_time = gethrestime_sec();
1731 	dsphys->ds_creation_txg = crtxg;
1732 	dsphys->ds_deadlist_obj = dsl_dataset_phys(ds)->ds_deadlist_obj;
1733 	dsphys->ds_referenced_bytes = dsl_dataset_phys(ds)->ds_referenced_bytes;
1734 	dsphys->ds_compressed_bytes = dsl_dataset_phys(ds)->ds_compressed_bytes;
1735 	dsphys->ds_uncompressed_bytes =
1736 	    dsl_dataset_phys(ds)->ds_uncompressed_bytes;
1737 	dsphys->ds_flags = dsl_dataset_phys(ds)->ds_flags;
1738 	rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
1739 	dsphys->ds_bp = dsl_dataset_phys(ds)->ds_bp;
1740 	rrw_exit(&ds->ds_bp_rwlock, FTAG);
1741 	dmu_buf_rele(dbuf, FTAG);
1742 
1743 	for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
1744 		if (zfeature_active(f, ds->ds_feature[f])) {
1745 			dsl_dataset_activate_feature(dsobj, f,
1746 			    ds->ds_feature[f], tx);
1747 		}
1748 	}
1749 
1750 	ASSERT3U(ds->ds_prev != 0, ==,
1751 	    dsl_dataset_phys(ds)->ds_prev_snap_obj != 0);
1752 	if (ds->ds_prev) {
1753 		uint64_t next_clones_obj =
1754 		    dsl_dataset_phys(ds->ds_prev)->ds_next_clones_obj;
1755 		ASSERT(dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj ==
1756 		    ds->ds_object ||
1757 		    dsl_dataset_phys(ds->ds_prev)->ds_num_children > 1);
1758 		if (dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj ==
1759 		    ds->ds_object) {
1760 			dmu_buf_will_dirty(ds->ds_prev->ds_dbuf, tx);
1761 			ASSERT3U(dsl_dataset_phys(ds)->ds_prev_snap_txg, ==,
1762 			    dsl_dataset_phys(ds->ds_prev)->ds_creation_txg);
1763 			dsl_dataset_phys(ds->ds_prev)->ds_next_snap_obj = dsobj;
1764 		} else if (next_clones_obj != 0) {
1765 			dsl_dataset_remove_from_next_clones(ds->ds_prev,
1766 			    dsphys->ds_next_snap_obj, tx);
1767 			VERIFY0(zap_add_int(mos,
1768 			    next_clones_obj, dsobj, tx));
1769 		}
1770 	}
1771 
1772 	/*
1773 	 * If we have a reference-reservation on this dataset, we will
1774 	 * need to increase the amount of refreservation being charged
1775 	 * since our unique space is going to zero.
1776 	 */
1777 	if (ds->ds_reserved) {
1778 		int64_t delta;
1779 		ASSERT(DS_UNIQUE_IS_ACCURATE(ds));
1780 		delta = MIN(dsl_dataset_phys(ds)->ds_unique_bytes,
1781 		    ds->ds_reserved);
1782 		dsl_dir_diduse_space(ds->ds_dir, DD_USED_REFRSRV,
1783 		    delta, 0, 0, tx);
1784 	}
1785 
1786 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
1787 	dsl_dataset_phys(ds)->ds_deadlist_obj =
1788 	    dsl_deadlist_clone(&ds->ds_deadlist, UINT64_MAX,
1789 	    dsl_dataset_phys(ds)->ds_prev_snap_obj, tx);
1790 	dsl_deadlist_close(&ds->ds_deadlist);
1791 	dsl_deadlist_open(&ds->ds_deadlist, mos,
1792 	    dsl_dataset_phys(ds)->ds_deadlist_obj);
1793 	dsl_deadlist_add_key(&ds->ds_deadlist,
1794 	    dsl_dataset_phys(ds)->ds_prev_snap_txg, tx);
1795 	dsl_bookmark_snapshotted(ds, tx);
1796 
1797 	if (dsl_dataset_remap_deadlist_exists(ds)) {
1798 		uint64_t remap_deadlist_obj =
1799 		    dsl_dataset_get_remap_deadlist_object(ds);
1800 		/*
1801 		 * Move the remap_deadlist to the snapshot.  The head
1802 		 * will create a new remap deadlist on demand, from
1803 		 * dsl_dataset_block_remapped().
1804 		 */
1805 		dsl_dataset_unset_remap_deadlist_object(ds, tx);
1806 		dsl_deadlist_close(&ds->ds_remap_deadlist);
1807 
1808 		dmu_object_zapify(mos, dsobj, DMU_OT_DSL_DATASET, tx);
1809 		VERIFY0(zap_add(mos, dsobj, DS_FIELD_REMAP_DEADLIST,
1810 		    sizeof (remap_deadlist_obj), 1, &remap_deadlist_obj, tx));
1811 	}
1812 
1813 	/*
1814 	 * Create a ivset guid for this snapshot if the dataset is
1815 	 * encrypted. This may be overridden by a raw receive. A
1816 	 * previous implementation of this code did not have this
1817 	 * field as part of the on-disk format for ZFS encryption
1818 	 * (see errata #4). As part of the remediation for this
1819 	 * issue, we ask the user to enable the bookmark_v2 feature
1820 	 * which is now a dependency of the encryption feature. We
1821 	 * use this as a heuristic to determine when the user has
1822 	 * elected to correct any datasets created with the old code.
1823 	 * As a result, we only do this step if the bookmark_v2
1824 	 * feature is enabled, which limits the number of states a
1825 	 * given pool / dataset can be in with regards to terms of
1826 	 * correcting the issue.
1827 	 */
1828 	if (ds->ds_dir->dd_crypto_obj != 0 &&
1829 	    spa_feature_is_enabled(dp->dp_spa, SPA_FEATURE_BOOKMARK_V2)) {
1830 		uint64_t ivset_guid = unique_create();
1831 
1832 		dmu_object_zapify(mos, dsobj, DMU_OT_DSL_DATASET, tx);
1833 		VERIFY0(zap_add(mos, dsobj, DS_FIELD_IVSET_GUID,
1834 		    sizeof (ivset_guid), 1, &ivset_guid, tx));
1835 	}
1836 
1837 	ASSERT3U(dsl_dataset_phys(ds)->ds_prev_snap_txg, <, tx->tx_txg);
1838 	dsl_dataset_phys(ds)->ds_prev_snap_obj = dsobj;
1839 	dsl_dataset_phys(ds)->ds_prev_snap_txg = crtxg;
1840 	dsl_dataset_phys(ds)->ds_unique_bytes = 0;
1841 
1842 	if (spa_version(dp->dp_spa) >= SPA_VERSION_UNIQUE_ACCURATE)
1843 		dsl_dataset_phys(ds)->ds_flags |= DS_FLAG_UNIQUE_ACCURATE;
1844 
1845 	VERIFY0(zap_add(mos, dsl_dataset_phys(ds)->ds_snapnames_zapobj,
1846 	    snapname, 8, 1, &dsobj, tx));
1847 
1848 	if (ds->ds_prev)
1849 		dsl_dataset_rele(ds->ds_prev, ds);
1850 	VERIFY0(dsl_dataset_hold_obj(dp,
1851 	    dsl_dataset_phys(ds)->ds_prev_snap_obj, ds, &ds->ds_prev));
1852 
1853 	dsl_scan_ds_snapshotted(ds, tx);
1854 
1855 	dsl_dir_snap_cmtime_update(ds->ds_dir);
1856 
1857 	spa_history_log_internal_ds(ds->ds_prev, "snapshot", tx, " ");
1858 }
1859 
1860 void
dsl_dataset_snapshot_sync(void * arg,dmu_tx_t * tx)1861 dsl_dataset_snapshot_sync(void *arg, dmu_tx_t *tx)
1862 {
1863 	dsl_dataset_snapshot_arg_t *ddsa = arg;
1864 	dsl_pool_t *dp = dmu_tx_pool(tx);
1865 	nvpair_t *pair;
1866 
1867 	for (pair = nvlist_next_nvpair(ddsa->ddsa_snaps, NULL);
1868 	    pair != NULL; pair = nvlist_next_nvpair(ddsa->ddsa_snaps, pair)) {
1869 		dsl_dataset_t *ds;
1870 		char *name, *atp;
1871 		char dsname[ZFS_MAX_DATASET_NAME_LEN];
1872 
1873 		name = nvpair_name(pair);
1874 		atp = strchr(name, '@');
1875 		(void) strlcpy(dsname, name, atp - name + 1);
1876 		VERIFY0(dsl_dataset_hold(dp, dsname, FTAG, &ds));
1877 
1878 		dsl_dataset_snapshot_sync_impl(ds, atp + 1, tx);
1879 		if (ddsa->ddsa_props != NULL) {
1880 			dsl_props_set_sync_impl(ds->ds_prev,
1881 			    ZPROP_SRC_LOCAL, ddsa->ddsa_props, tx);
1882 		}
1883 		dsl_dataset_rele(ds, FTAG);
1884 	}
1885 }
1886 
1887 /*
1888  * The snapshots must all be in the same pool.
1889  * All-or-nothing: if there are any failures, nothing will be modified.
1890  */
1891 int
dsl_dataset_snapshot(nvlist_t * snaps,nvlist_t * props,nvlist_t * errors)1892 dsl_dataset_snapshot(nvlist_t *snaps, nvlist_t *props, nvlist_t *errors)
1893 {
1894 	dsl_dataset_snapshot_arg_t ddsa;
1895 	nvpair_t *pair;
1896 	boolean_t needsuspend;
1897 	int error;
1898 	spa_t *spa;
1899 	char *firstname;
1900 	nvlist_t *suspended = NULL;
1901 
1902 	pair = nvlist_next_nvpair(snaps, NULL);
1903 	if (pair == NULL)
1904 		return (0);
1905 	firstname = nvpair_name(pair);
1906 
1907 	error = spa_open(firstname, &spa, FTAG);
1908 	if (error != 0)
1909 		return (error);
1910 	needsuspend = (spa_version(spa) < SPA_VERSION_FAST_SNAP);
1911 	spa_close(spa, FTAG);
1912 
1913 	if (needsuspend) {
1914 		suspended = fnvlist_alloc();
1915 		for (pair = nvlist_next_nvpair(snaps, NULL); pair != NULL;
1916 		    pair = nvlist_next_nvpair(snaps, pair)) {
1917 			char fsname[ZFS_MAX_DATASET_NAME_LEN];
1918 			char *snapname = nvpair_name(pair);
1919 			char *atp;
1920 			void *cookie;
1921 
1922 			atp = strchr(snapname, '@');
1923 			if (atp == NULL) {
1924 				error = SET_ERROR(EINVAL);
1925 				break;
1926 			}
1927 			(void) strlcpy(fsname, snapname, atp - snapname + 1);
1928 
1929 			error = zil_suspend(fsname, &cookie);
1930 			if (error != 0)
1931 				break;
1932 			fnvlist_add_uint64(suspended, fsname,
1933 			    (uintptr_t)cookie);
1934 		}
1935 	}
1936 
1937 	ddsa.ddsa_snaps = snaps;
1938 	ddsa.ddsa_props = props;
1939 	ddsa.ddsa_errors = errors;
1940 	ddsa.ddsa_cr = CRED();
1941 	ddsa.ddsa_proc = curproc;
1942 
1943 	if (error == 0) {
1944 		error = dsl_sync_task(firstname, dsl_dataset_snapshot_check,
1945 		    dsl_dataset_snapshot_sync, &ddsa,
1946 		    fnvlist_num_pairs(snaps) * 3, ZFS_SPACE_CHECK_NORMAL);
1947 	}
1948 
1949 	if (suspended != NULL) {
1950 		for (pair = nvlist_next_nvpair(suspended, NULL); pair != NULL;
1951 		    pair = nvlist_next_nvpair(suspended, pair)) {
1952 			zil_resume((void *)(uintptr_t)
1953 			    fnvpair_value_uint64(pair));
1954 		}
1955 		fnvlist_free(suspended);
1956 	}
1957 
1958 	if (error == 0) {
1959 		for (pair = nvlist_next_nvpair(snaps, NULL); pair != NULL;
1960 		    pair = nvlist_next_nvpair(snaps, pair)) {
1961 			zvol_create_minor(nvpair_name(pair));
1962 		}
1963 	}
1964 
1965 	return (error);
1966 }
1967 
1968 typedef struct dsl_dataset_snapshot_tmp_arg {
1969 	const char *ddsta_fsname;
1970 	const char *ddsta_snapname;
1971 	minor_t ddsta_cleanup_minor;
1972 	const char *ddsta_htag;
1973 } dsl_dataset_snapshot_tmp_arg_t;
1974 
1975 static int
dsl_dataset_snapshot_tmp_check(void * arg,dmu_tx_t * tx)1976 dsl_dataset_snapshot_tmp_check(void *arg, dmu_tx_t *tx)
1977 {
1978 	dsl_dataset_snapshot_tmp_arg_t *ddsta = arg;
1979 	dsl_pool_t *dp = dmu_tx_pool(tx);
1980 	dsl_dataset_t *ds;
1981 	int error;
1982 
1983 	error = dsl_dataset_hold(dp, ddsta->ddsta_fsname, FTAG, &ds);
1984 	if (error != 0)
1985 		return (error);
1986 
1987 	/* NULL cred means no limit check for tmp snapshot */
1988 	error = dsl_dataset_snapshot_check_impl(ds, ddsta->ddsta_snapname,
1989 	    tx, B_FALSE, 0, NULL, NULL);
1990 	if (error != 0) {
1991 		dsl_dataset_rele(ds, FTAG);
1992 		return (error);
1993 	}
1994 
1995 	if (spa_version(dp->dp_spa) < SPA_VERSION_USERREFS) {
1996 		dsl_dataset_rele(ds, FTAG);
1997 		return (SET_ERROR(ENOTSUP));
1998 	}
1999 	error = dsl_dataset_user_hold_check_one(NULL, ddsta->ddsta_htag,
2000 	    B_TRUE, tx);
2001 	if (error != 0) {
2002 		dsl_dataset_rele(ds, FTAG);
2003 		return (error);
2004 	}
2005 
2006 	dsl_dataset_rele(ds, FTAG);
2007 	return (0);
2008 }
2009 
2010 static void
dsl_dataset_snapshot_tmp_sync(void * arg,dmu_tx_t * tx)2011 dsl_dataset_snapshot_tmp_sync(void *arg, dmu_tx_t *tx)
2012 {
2013 	dsl_dataset_snapshot_tmp_arg_t *ddsta = arg;
2014 	dsl_pool_t *dp = dmu_tx_pool(tx);
2015 	dsl_dataset_t *ds = NULL;
2016 
2017 	VERIFY0(dsl_dataset_hold(dp, ddsta->ddsta_fsname, FTAG, &ds));
2018 
2019 	dsl_dataset_snapshot_sync_impl(ds, ddsta->ddsta_snapname, tx);
2020 	dsl_dataset_user_hold_sync_one(ds->ds_prev, ddsta->ddsta_htag,
2021 	    ddsta->ddsta_cleanup_minor, gethrestime_sec(), tx);
2022 	dsl_destroy_snapshot_sync_impl(ds->ds_prev, B_TRUE, tx);
2023 
2024 	dsl_dataset_rele(ds, FTAG);
2025 }
2026 
2027 int
dsl_dataset_snapshot_tmp(const char * fsname,const char * snapname,minor_t cleanup_minor,const char * htag)2028 dsl_dataset_snapshot_tmp(const char *fsname, const char *snapname,
2029     minor_t cleanup_minor, const char *htag)
2030 {
2031 	dsl_dataset_snapshot_tmp_arg_t ddsta;
2032 	int error;
2033 	spa_t *spa;
2034 	boolean_t needsuspend;
2035 	void *cookie;
2036 
2037 	ddsta.ddsta_fsname = fsname;
2038 	ddsta.ddsta_snapname = snapname;
2039 	ddsta.ddsta_cleanup_minor = cleanup_minor;
2040 	ddsta.ddsta_htag = htag;
2041 
2042 	error = spa_open(fsname, &spa, FTAG);
2043 	if (error != 0)
2044 		return (error);
2045 	needsuspend = (spa_version(spa) < SPA_VERSION_FAST_SNAP);
2046 	spa_close(spa, FTAG);
2047 
2048 	if (needsuspend) {
2049 		error = zil_suspend(fsname, &cookie);
2050 		if (error != 0)
2051 			return (error);
2052 	}
2053 
2054 	error = dsl_sync_task(fsname, dsl_dataset_snapshot_tmp_check,
2055 	    dsl_dataset_snapshot_tmp_sync, &ddsta, 3, ZFS_SPACE_CHECK_RESERVED);
2056 
2057 	if (needsuspend)
2058 		zil_resume(cookie);
2059 	return (error);
2060 }
2061 
2062 void
dsl_dataset_sync(dsl_dataset_t * ds,zio_t * zio,dmu_tx_t * tx)2063 dsl_dataset_sync(dsl_dataset_t *ds, zio_t *zio, dmu_tx_t *tx)
2064 {
2065 	ASSERT(dmu_tx_is_syncing(tx));
2066 	ASSERT(ds->ds_objset != NULL);
2067 	ASSERT(dsl_dataset_phys(ds)->ds_next_snap_obj == 0);
2068 
2069 	/*
2070 	 * in case we had to change ds_fsid_guid when we opened it,
2071 	 * sync it out now.
2072 	 */
2073 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
2074 	dsl_dataset_phys(ds)->ds_fsid_guid = ds->ds_fsid_guid;
2075 
2076 	if (ds->ds_resume_bytes[tx->tx_txg & TXG_MASK] != 0) {
2077 		VERIFY0(zap_update(tx->tx_pool->dp_meta_objset,
2078 		    ds->ds_object, DS_FIELD_RESUME_OBJECT, 8, 1,
2079 		    &ds->ds_resume_object[tx->tx_txg & TXG_MASK], tx));
2080 		VERIFY0(zap_update(tx->tx_pool->dp_meta_objset,
2081 		    ds->ds_object, DS_FIELD_RESUME_OFFSET, 8, 1,
2082 		    &ds->ds_resume_offset[tx->tx_txg & TXG_MASK], tx));
2083 		VERIFY0(zap_update(tx->tx_pool->dp_meta_objset,
2084 		    ds->ds_object, DS_FIELD_RESUME_BYTES, 8, 1,
2085 		    &ds->ds_resume_bytes[tx->tx_txg & TXG_MASK], tx));
2086 		ds->ds_resume_object[tx->tx_txg & TXG_MASK] = 0;
2087 		ds->ds_resume_offset[tx->tx_txg & TXG_MASK] = 0;
2088 		ds->ds_resume_bytes[tx->tx_txg & TXG_MASK] = 0;
2089 	}
2090 
2091 	dmu_objset_sync(ds->ds_objset, zio, tx);
2092 
2093 	for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
2094 		if (zfeature_active(f, ds->ds_feature_activation[f])) {
2095 			if (zfeature_active(f, ds->ds_feature[f]))
2096 				continue;
2097 			dsl_dataset_activate_feature(ds->ds_object, f,
2098 			    ds->ds_feature_activation[f], tx);
2099 			ds->ds_feature[f] = ds->ds_feature_activation[f];
2100 		}
2101 	}
2102 }
2103 
2104 /*
2105  * Check if the percentage of blocks shared between the clone and the
2106  * snapshot (as opposed to those that are clone only) is below a certain
2107  * threshold
2108  */
2109 static boolean_t
dsl_livelist_should_disable(dsl_dataset_t * ds)2110 dsl_livelist_should_disable(dsl_dataset_t *ds)
2111 {
2112 	uint64_t used, referenced;
2113 	int percent_shared;
2114 
2115 	used = dsl_dir_get_usedds(ds->ds_dir);
2116 	referenced = dsl_get_referenced(ds);
2117 	ASSERT3U(referenced, >=, 0);
2118 	ASSERT3U(used, >=, 0);
2119 	if (referenced == 0)
2120 		return (B_FALSE);
2121 	percent_shared = (100 * (referenced - used)) / referenced;
2122 	if (percent_shared <= zfs_livelist_min_percent_shared)
2123 		return (B_TRUE);
2124 	return (B_FALSE);
2125 }
2126 
2127 /*
2128  *  Check if it is possible to combine two livelist entries into one.
2129  *  This is the case if the combined number of 'live' blkptrs (ALLOCs that
2130  *  don't have a matching FREE) is under the maximum sublist size.
2131  *  We check this by subtracting twice the total number of frees from the total
2132  *  number of blkptrs. FREEs are counted twice because each FREE blkptr
2133  *  will cancel out an ALLOC blkptr when the livelist is processed.
2134  */
2135 static boolean_t
dsl_livelist_should_condense(dsl_deadlist_entry_t * first,dsl_deadlist_entry_t * next)2136 dsl_livelist_should_condense(dsl_deadlist_entry_t *first,
2137     dsl_deadlist_entry_t *next)
2138 {
2139 	uint64_t total_free = first->dle_bpobj.bpo_phys->bpo_num_freed +
2140 	    next->dle_bpobj.bpo_phys->bpo_num_freed;
2141 	uint64_t total_entries = first->dle_bpobj.bpo_phys->bpo_num_blkptrs +
2142 	    next->dle_bpobj.bpo_phys->bpo_num_blkptrs;
2143 	if ((total_entries - (2 * total_free)) < zfs_livelist_max_entries)
2144 		return (B_TRUE);
2145 	return (B_FALSE);
2146 }
2147 
2148 typedef struct try_condense_arg {
2149 	spa_t *spa;
2150 	dsl_dataset_t *ds;
2151 } try_condense_arg_t;
2152 
2153 /*
2154  * Iterate over the livelist entries, searching for a pair to condense.
2155  * A nonzero return value means stop, 0 means keep looking.
2156  */
2157 static int
dsl_livelist_try_condense(void * arg,dsl_deadlist_entry_t * first)2158 dsl_livelist_try_condense(void *arg, dsl_deadlist_entry_t *first)
2159 {
2160 	try_condense_arg_t *tca = arg;
2161 	spa_t *spa = tca->spa;
2162 	dsl_dataset_t *ds = tca->ds;
2163 	dsl_deadlist_t *ll = &ds->ds_dir->dd_livelist;
2164 	dsl_deadlist_entry_t *next;
2165 
2166 	/* The condense thread has not yet been created at import */
2167 	if (spa->spa_livelist_condense_zthr == NULL)
2168 		return (1);
2169 
2170 	/* A condense is already in progress */
2171 	if (spa->spa_to_condense.ds != NULL)
2172 		return (1);
2173 
2174 	next = AVL_NEXT(&ll->dl_tree, &first->dle_node);
2175 	/* The livelist has only one entry - don't condense it */
2176 	if (next == NULL)
2177 		return (1);
2178 
2179 	/* Next is the newest entry - don't condense it */
2180 	if (AVL_NEXT(&ll->dl_tree, &next->dle_node) == NULL)
2181 		return (1);
2182 
2183 	/* This pair is not ready to condense but keep looking */
2184 	if (!dsl_livelist_should_condense(first, next))
2185 		return (0);
2186 
2187 	/*
2188 	 * Add a ref to prevent the dataset from being evicted while
2189 	 * the condense zthr or synctask are running. Ref will be
2190 	 * released at the end of the condense synctask
2191 	 */
2192 	dmu_buf_add_ref(ds->ds_dbuf, spa);
2193 
2194 	spa->spa_to_condense.ds = ds;
2195 	spa->spa_to_condense.first = first;
2196 	spa->spa_to_condense.next = next;
2197 	spa->spa_to_condense.syncing = B_FALSE;
2198 	spa->spa_to_condense.cancelled = B_FALSE;
2199 
2200 	zthr_wakeup(spa->spa_livelist_condense_zthr);
2201 	return (1);
2202 }
2203 
2204 static void
dsl_flush_pending_livelist(dsl_dataset_t * ds,dmu_tx_t * tx)2205 dsl_flush_pending_livelist(dsl_dataset_t *ds, dmu_tx_t *tx)
2206 {
2207 	dsl_dir_t *dd = ds->ds_dir;
2208 	spa_t *spa = ds->ds_dir->dd_pool->dp_spa;
2209 	dsl_deadlist_entry_t *last = dsl_deadlist_last(&dd->dd_livelist);
2210 
2211 	/* Check if we need to add a new sub-livelist */
2212 	if (last == NULL) {
2213 		/* The livelist is empty */
2214 		dsl_deadlist_add_key(&dd->dd_livelist,
2215 		    tx->tx_txg - 1, tx);
2216 	} else if (spa_sync_pass(spa) == 1) {
2217 		/*
2218 		 * Check if the newest entry is full. If it is, make a new one.
2219 		 * We only do this once per sync because we could overfill a
2220 		 * sublist in one sync pass and don't want to add another entry
2221 		 * for a txg that is already represented. This ensures that
2222 		 * blkptrs born in the same txg are stored in the same sublist.
2223 		 */
2224 		bpobj_t bpobj = last->dle_bpobj;
2225 		uint64_t all = bpobj.bpo_phys->bpo_num_blkptrs;
2226 		uint64_t free = bpobj.bpo_phys->bpo_num_freed;
2227 		uint64_t alloc = all - free;
2228 		if (alloc > zfs_livelist_max_entries) {
2229 			dsl_deadlist_add_key(&dd->dd_livelist,
2230 			    tx->tx_txg - 1, tx);
2231 		}
2232 	}
2233 
2234 	/* Insert each entry into the on-disk livelist */
2235 	bplist_iterate(&dd->dd_pending_allocs,
2236 	    dsl_deadlist_insert_alloc_cb, &dd->dd_livelist, tx);
2237 	bplist_iterate(&dd->dd_pending_frees,
2238 	    dsl_deadlist_insert_free_cb, &dd->dd_livelist, tx);
2239 
2240 	/* Attempt to condense every pair of adjacent entries */
2241 	try_condense_arg_t arg = {
2242 	    .spa = spa,
2243 	    .ds = ds
2244 	};
2245 	dsl_deadlist_iterate(&dd->dd_livelist, dsl_livelist_try_condense,
2246 	    &arg);
2247 }
2248 
2249 void
dsl_dataset_sync_done(dsl_dataset_t * ds,dmu_tx_t * tx)2250 dsl_dataset_sync_done(dsl_dataset_t *ds, dmu_tx_t *tx)
2251 {
2252 	objset_t *os = ds->ds_objset;
2253 
2254 	bplist_iterate(&ds->ds_pending_deadlist,
2255 	    dsl_deadlist_insert_alloc_cb, &ds->ds_deadlist, tx);
2256 
2257 	if (dsl_deadlist_is_open(&ds->ds_dir->dd_livelist)) {
2258 		dsl_flush_pending_livelist(ds, tx);
2259 		if (dsl_livelist_should_disable(ds)) {
2260 			dsl_dir_remove_livelist(ds->ds_dir, tx, B_TRUE);
2261 		}
2262 	}
2263 
2264 	dsl_bookmark_sync_done(ds, tx);
2265 
2266 	multilist_destroy(&os->os_synced_dnodes);
2267 
2268 	if (os->os_encrypted)
2269 		os->os_next_write_raw[tx->tx_txg & TXG_MASK] = B_FALSE;
2270 	else
2271 		ASSERT0(os->os_next_write_raw[tx->tx_txg & TXG_MASK]);
2272 
2273 	ASSERT(!dmu_objset_is_dirty(os, dmu_tx_get_txg(tx)));
2274 
2275 	dmu_buf_rele(ds->ds_dbuf, ds);
2276 }
2277 
2278 int
get_clones_stat_impl(dsl_dataset_t * ds,nvlist_t * val)2279 get_clones_stat_impl(dsl_dataset_t *ds, nvlist_t *val)
2280 {
2281 	uint64_t count = 0;
2282 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
2283 	zap_cursor_t zc;
2284 	zap_attribute_t za;
2285 
2286 	ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool));
2287 
2288 	/*
2289 	 * There may be missing entries in ds_next_clones_obj
2290 	 * due to a bug in a previous version of the code.
2291 	 * Only trust it if it has the right number of entries.
2292 	 */
2293 	if (dsl_dataset_phys(ds)->ds_next_clones_obj != 0) {
2294 		VERIFY0(zap_count(mos, dsl_dataset_phys(ds)->ds_next_clones_obj,
2295 		    &count));
2296 	}
2297 	if (count != dsl_dataset_phys(ds)->ds_num_children - 1) {
2298 		return (SET_ERROR(ENOENT));
2299 	}
2300 	for (zap_cursor_init(&zc, mos,
2301 	    dsl_dataset_phys(ds)->ds_next_clones_obj);
2302 	    zap_cursor_retrieve(&zc, &za) == 0;
2303 	    zap_cursor_advance(&zc)) {
2304 		dsl_dataset_t *clone;
2305 		char buf[ZFS_MAX_DATASET_NAME_LEN];
2306 		VERIFY0(dsl_dataset_hold_obj(ds->ds_dir->dd_pool,
2307 		    za.za_first_integer, FTAG, &clone));
2308 		dsl_dir_name(clone->ds_dir, buf);
2309 		fnvlist_add_boolean(val, buf);
2310 		dsl_dataset_rele(clone, FTAG);
2311 	}
2312 	zap_cursor_fini(&zc);
2313 	return (0);
2314 }
2315 
2316 void
get_clones_stat(dsl_dataset_t * ds,nvlist_t * nv)2317 get_clones_stat(dsl_dataset_t *ds, nvlist_t *nv)
2318 {
2319 	nvlist_t *propval = fnvlist_alloc();
2320 	nvlist_t *val = fnvlist_alloc();
2321 
2322 	if (get_clones_stat_impl(ds, val) == 0) {
2323 		fnvlist_add_nvlist(propval, ZPROP_VALUE, val);
2324 		fnvlist_add_nvlist(nv, zfs_prop_to_name(ZFS_PROP_CLONES),
2325 		    propval);
2326 	}
2327 
2328 	nvlist_free(val);
2329 	nvlist_free(propval);
2330 }
2331 
2332 /*
2333  * Returns a string that represents the receive resume stats token. It should
2334  * be freed with strfree().
2335  */
2336 char *
get_receive_resume_stats_impl(dsl_dataset_t * ds)2337 get_receive_resume_stats_impl(dsl_dataset_t *ds)
2338 {
2339 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
2340 
2341 	if (dsl_dataset_has_resume_receive_state(ds)) {
2342 		char *str;
2343 		void *packed;
2344 		uint8_t *compressed;
2345 		uint64_t val;
2346 		nvlist_t *token_nv = fnvlist_alloc();
2347 		size_t packed_size, compressed_size;
2348 
2349 		if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
2350 		    DS_FIELD_RESUME_FROMGUID, sizeof (val), 1, &val) == 0) {
2351 			fnvlist_add_uint64(token_nv, "fromguid", val);
2352 		}
2353 		if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
2354 		    DS_FIELD_RESUME_OBJECT, sizeof (val), 1, &val) == 0) {
2355 			fnvlist_add_uint64(token_nv, "object", val);
2356 		}
2357 		if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
2358 		    DS_FIELD_RESUME_OFFSET, sizeof (val), 1, &val) == 0) {
2359 			fnvlist_add_uint64(token_nv, "offset", val);
2360 		}
2361 		if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
2362 		    DS_FIELD_RESUME_BYTES, sizeof (val), 1, &val) == 0) {
2363 			fnvlist_add_uint64(token_nv, "bytes", val);
2364 		}
2365 		if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
2366 		    DS_FIELD_RESUME_TOGUID, sizeof (val), 1, &val) == 0) {
2367 			fnvlist_add_uint64(token_nv, "toguid", val);
2368 		}
2369 		char buf[MAXNAMELEN];
2370 		if (zap_lookup(dp->dp_meta_objset, ds->ds_object,
2371 		    DS_FIELD_RESUME_TONAME, 1, sizeof (buf), buf) == 0) {
2372 			fnvlist_add_string(token_nv, "toname", buf);
2373 		}
2374 		if (zap_contains(dp->dp_meta_objset, ds->ds_object,
2375 		    DS_FIELD_RESUME_LARGEBLOCK) == 0) {
2376 			fnvlist_add_boolean(token_nv, "largeblockok");
2377 		}
2378 		if (zap_contains(dp->dp_meta_objset, ds->ds_object,
2379 		    DS_FIELD_RESUME_EMBEDOK) == 0) {
2380 			fnvlist_add_boolean(token_nv, "embedok");
2381 		}
2382 		if (zap_contains(dp->dp_meta_objset, ds->ds_object,
2383 		    DS_FIELD_RESUME_COMPRESSOK) == 0) {
2384 			fnvlist_add_boolean(token_nv, "compressok");
2385 		}
2386 		if (zap_contains(dp->dp_meta_objset, ds->ds_object,
2387 		    DS_FIELD_RESUME_RAWOK) == 0) {
2388 			fnvlist_add_boolean(token_nv, "rawok");
2389 		}
2390 		if (dsl_dataset_feature_is_active(ds,
2391 		    SPA_FEATURE_REDACTED_DATASETS)) {
2392 			uint64_t num_redact_snaps;
2393 			uint64_t *redact_snaps;
2394 			VERIFY(dsl_dataset_get_uint64_array_feature(ds,
2395 			    SPA_FEATURE_REDACTED_DATASETS, &num_redact_snaps,
2396 			    &redact_snaps));
2397 			fnvlist_add_uint64_array(token_nv, "redact_snaps",
2398 			    redact_snaps, num_redact_snaps);
2399 		}
2400 		if (zap_contains(dp->dp_meta_objset, ds->ds_object,
2401 		    DS_FIELD_RESUME_REDACT_BOOKMARK_SNAPS) == 0) {
2402 			uint64_t num_redact_snaps, int_size;
2403 			uint64_t *redact_snaps;
2404 			VERIFY0(zap_length(dp->dp_meta_objset, ds->ds_object,
2405 			    DS_FIELD_RESUME_REDACT_BOOKMARK_SNAPS, &int_size,
2406 			    &num_redact_snaps));
2407 			ASSERT3U(int_size, ==, sizeof (uint64_t));
2408 
2409 			redact_snaps = kmem_alloc(int_size * num_redact_snaps,
2410 			    KM_SLEEP);
2411 			VERIFY0(zap_lookup(dp->dp_meta_objset, ds->ds_object,
2412 			    DS_FIELD_RESUME_REDACT_BOOKMARK_SNAPS, int_size,
2413 			    num_redact_snaps, redact_snaps));
2414 			fnvlist_add_uint64_array(token_nv, "book_redact_snaps",
2415 			    redact_snaps, num_redact_snaps);
2416 			kmem_free(redact_snaps, int_size * num_redact_snaps);
2417 		}
2418 		packed = fnvlist_pack(token_nv, &packed_size);
2419 		fnvlist_free(token_nv);
2420 		compressed = kmem_alloc(packed_size, KM_SLEEP);
2421 
2422 		compressed_size = gzip_compress(packed, compressed,
2423 		    packed_size, packed_size, 6);
2424 
2425 		zio_cksum_t cksum;
2426 		fletcher_4_native_varsize(compressed, compressed_size, &cksum);
2427 
2428 		size_t alloc_size = compressed_size * 2 + 1;
2429 		str = kmem_alloc(alloc_size, KM_SLEEP);
2430 		for (int i = 0; i < compressed_size; i++) {
2431 			size_t offset = i * 2;
2432 			(void) snprintf(str + offset, alloc_size - offset,
2433 		    "%02x", compressed[i]);
2434 		}
2435 		str[compressed_size * 2] = '\0';
2436 		char *propval = kmem_asprintf("%u-%llx-%llx-%s",
2437 		    ZFS_SEND_RESUME_TOKEN_VERSION,
2438 		    (longlong_t)cksum.zc_word[0],
2439 		    (longlong_t)packed_size, str);
2440 		kmem_free(packed, packed_size);
2441 		kmem_free(str, alloc_size);
2442 		kmem_free(compressed, packed_size);
2443 		return (propval);
2444 	}
2445 	return (kmem_strdup(""));
2446 }
2447 
2448 /*
2449  * Returns a string that represents the receive resume stats token of the
2450  * dataset's child. It should be freed with strfree().
2451  */
2452 char *
get_child_receive_stats(dsl_dataset_t * ds)2453 get_child_receive_stats(dsl_dataset_t *ds)
2454 {
2455 	char recvname[ZFS_MAX_DATASET_NAME_LEN + 6];
2456 	dsl_dataset_t *recv_ds;
2457 	dsl_dataset_name(ds, recvname);
2458 	if (strlcat(recvname, "/", sizeof (recvname)) <
2459 	    sizeof (recvname) &&
2460 	    strlcat(recvname, recv_clone_name, sizeof (recvname)) <
2461 	    sizeof (recvname) &&
2462 	    dsl_dataset_hold(ds->ds_dir->dd_pool, recvname, FTAG,
2463 	    &recv_ds)  == 0) {
2464 		char *propval = get_receive_resume_stats_impl(recv_ds);
2465 		dsl_dataset_rele(recv_ds, FTAG);
2466 		return (propval);
2467 	}
2468 	return (kmem_strdup(""));
2469 }
2470 
2471 static void
get_receive_resume_stats(dsl_dataset_t * ds,nvlist_t * nv)2472 get_receive_resume_stats(dsl_dataset_t *ds, nvlist_t *nv)
2473 {
2474 	char *propval = get_receive_resume_stats_impl(ds);
2475 	if (strcmp(propval, "") != 0) {
2476 		dsl_prop_nvlist_add_string(nv,
2477 		    ZFS_PROP_RECEIVE_RESUME_TOKEN, propval);
2478 	} else {
2479 		char *childval = get_child_receive_stats(ds);
2480 		if (strcmp(childval, "") != 0) {
2481 			dsl_prop_nvlist_add_string(nv,
2482 			    ZFS_PROP_RECEIVE_RESUME_TOKEN, childval);
2483 		}
2484 		kmem_strfree(childval);
2485 	}
2486 	kmem_strfree(propval);
2487 }
2488 
2489 uint64_t
dsl_get_refratio(dsl_dataset_t * ds)2490 dsl_get_refratio(dsl_dataset_t *ds)
2491 {
2492 	uint64_t ratio = dsl_dataset_phys(ds)->ds_compressed_bytes == 0 ? 100 :
2493 	    (dsl_dataset_phys(ds)->ds_uncompressed_bytes * 100 /
2494 	    dsl_dataset_phys(ds)->ds_compressed_bytes);
2495 	return (ratio);
2496 }
2497 
2498 uint64_t
dsl_get_logicalreferenced(dsl_dataset_t * ds)2499 dsl_get_logicalreferenced(dsl_dataset_t *ds)
2500 {
2501 	return (dsl_dataset_phys(ds)->ds_uncompressed_bytes);
2502 }
2503 
2504 uint64_t
dsl_get_compressratio(dsl_dataset_t * ds)2505 dsl_get_compressratio(dsl_dataset_t *ds)
2506 {
2507 	if (ds->ds_is_snapshot) {
2508 		return (dsl_get_refratio(ds));
2509 	} else {
2510 		dsl_dir_t *dd = ds->ds_dir;
2511 		mutex_enter(&dd->dd_lock);
2512 		uint64_t val = dsl_dir_get_compressratio(dd);
2513 		mutex_exit(&dd->dd_lock);
2514 		return (val);
2515 	}
2516 }
2517 
2518 uint64_t
dsl_get_used(dsl_dataset_t * ds)2519 dsl_get_used(dsl_dataset_t *ds)
2520 {
2521 	if (ds->ds_is_snapshot) {
2522 		return (dsl_dataset_phys(ds)->ds_unique_bytes);
2523 	} else {
2524 		dsl_dir_t *dd = ds->ds_dir;
2525 		mutex_enter(&dd->dd_lock);
2526 		uint64_t val = dsl_dir_get_used(dd);
2527 		mutex_exit(&dd->dd_lock);
2528 		return (val);
2529 	}
2530 }
2531 
2532 uint64_t
dsl_get_creation(dsl_dataset_t * ds)2533 dsl_get_creation(dsl_dataset_t *ds)
2534 {
2535 	return (dsl_dataset_phys(ds)->ds_creation_time);
2536 }
2537 
2538 uint64_t
dsl_get_creationtxg(dsl_dataset_t * ds)2539 dsl_get_creationtxg(dsl_dataset_t *ds)
2540 {
2541 	return (dsl_dataset_phys(ds)->ds_creation_txg);
2542 }
2543 
2544 uint64_t
dsl_get_refquota(dsl_dataset_t * ds)2545 dsl_get_refquota(dsl_dataset_t *ds)
2546 {
2547 	return (ds->ds_quota);
2548 }
2549 
2550 uint64_t
dsl_get_refreservation(dsl_dataset_t * ds)2551 dsl_get_refreservation(dsl_dataset_t *ds)
2552 {
2553 	return (ds->ds_reserved);
2554 }
2555 
2556 uint64_t
dsl_get_guid(dsl_dataset_t * ds)2557 dsl_get_guid(dsl_dataset_t *ds)
2558 {
2559 	return (dsl_dataset_phys(ds)->ds_guid);
2560 }
2561 
2562 uint64_t
dsl_get_unique(dsl_dataset_t * ds)2563 dsl_get_unique(dsl_dataset_t *ds)
2564 {
2565 	return (dsl_dataset_phys(ds)->ds_unique_bytes);
2566 }
2567 
2568 uint64_t
dsl_get_objsetid(dsl_dataset_t * ds)2569 dsl_get_objsetid(dsl_dataset_t *ds)
2570 {
2571 	return (ds->ds_object);
2572 }
2573 
2574 uint64_t
dsl_get_userrefs(dsl_dataset_t * ds)2575 dsl_get_userrefs(dsl_dataset_t *ds)
2576 {
2577 	return (ds->ds_userrefs);
2578 }
2579 
2580 uint64_t
dsl_get_defer_destroy(dsl_dataset_t * ds)2581 dsl_get_defer_destroy(dsl_dataset_t *ds)
2582 {
2583 	return (DS_IS_DEFER_DESTROY(ds) ? 1 : 0);
2584 }
2585 
2586 uint64_t
dsl_get_referenced(dsl_dataset_t * ds)2587 dsl_get_referenced(dsl_dataset_t *ds)
2588 {
2589 	return (dsl_dataset_phys(ds)->ds_referenced_bytes);
2590 }
2591 
2592 uint64_t
dsl_get_numclones(dsl_dataset_t * ds)2593 dsl_get_numclones(dsl_dataset_t *ds)
2594 {
2595 	ASSERT(ds->ds_is_snapshot);
2596 	return (dsl_dataset_phys(ds)->ds_num_children - 1);
2597 }
2598 
2599 uint64_t
dsl_get_inconsistent(dsl_dataset_t * ds)2600 dsl_get_inconsistent(dsl_dataset_t *ds)
2601 {
2602 	return ((dsl_dataset_phys(ds)->ds_flags & DS_FLAG_INCONSISTENT) ?
2603 	    1 : 0);
2604 }
2605 
2606 uint64_t
dsl_get_redacted(dsl_dataset_t * ds)2607 dsl_get_redacted(dsl_dataset_t *ds)
2608 {
2609 	return (dsl_dataset_feature_is_active(ds,
2610 	    SPA_FEATURE_REDACTED_DATASETS));
2611 }
2612 
2613 uint64_t
dsl_get_available(dsl_dataset_t * ds)2614 dsl_get_available(dsl_dataset_t *ds)
2615 {
2616 	uint64_t refdbytes = dsl_get_referenced(ds);
2617 	uint64_t availbytes = dsl_dir_space_available(ds->ds_dir,
2618 	    NULL, 0, TRUE);
2619 	if (ds->ds_reserved > dsl_dataset_phys(ds)->ds_unique_bytes) {
2620 		availbytes +=
2621 		    ds->ds_reserved - dsl_dataset_phys(ds)->ds_unique_bytes;
2622 	}
2623 	if (ds->ds_quota != 0) {
2624 		/*
2625 		 * Adjust available bytes according to refquota
2626 		 */
2627 		if (refdbytes < ds->ds_quota) {
2628 			availbytes = MIN(availbytes,
2629 			    ds->ds_quota - refdbytes);
2630 		} else {
2631 			availbytes = 0;
2632 		}
2633 	}
2634 	return (availbytes);
2635 }
2636 
2637 int
dsl_get_written(dsl_dataset_t * ds,uint64_t * written)2638 dsl_get_written(dsl_dataset_t *ds, uint64_t *written)
2639 {
2640 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
2641 	dsl_dataset_t *prev;
2642 	int err = dsl_dataset_hold_obj(dp,
2643 	    dsl_dataset_phys(ds)->ds_prev_snap_obj, FTAG, &prev);
2644 	if (err == 0) {
2645 		uint64_t comp, uncomp;
2646 		err = dsl_dataset_space_written(prev, ds, written,
2647 		    &comp, &uncomp);
2648 		dsl_dataset_rele(prev, FTAG);
2649 	}
2650 	return (err);
2651 }
2652 
2653 /*
2654  * 'snap' should be a buffer of size ZFS_MAX_DATASET_NAME_LEN.
2655  */
2656 int
dsl_get_prev_snap(dsl_dataset_t * ds,char * snap)2657 dsl_get_prev_snap(dsl_dataset_t *ds, char *snap)
2658 {
2659 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
2660 	if (ds->ds_prev != NULL && ds->ds_prev != dp->dp_origin_snap) {
2661 		dsl_dataset_name(ds->ds_prev, snap);
2662 		return (0);
2663 	} else {
2664 		return (SET_ERROR(ENOENT));
2665 	}
2666 }
2667 
2668 void
dsl_get_redact_snaps(dsl_dataset_t * ds,nvlist_t * propval)2669 dsl_get_redact_snaps(dsl_dataset_t *ds, nvlist_t *propval)
2670 {
2671 	uint64_t nsnaps;
2672 	uint64_t *snaps;
2673 	if (dsl_dataset_get_uint64_array_feature(ds,
2674 	    SPA_FEATURE_REDACTED_DATASETS, &nsnaps, &snaps)) {
2675 		fnvlist_add_uint64_array(propval, ZPROP_VALUE, snaps,
2676 		    nsnaps);
2677 	}
2678 }
2679 
2680 /*
2681  * Returns the mountpoint property and source for the given dataset in the value
2682  * and source buffers. The value buffer must be at least as large as MAXPATHLEN
2683  * and the source buffer as least as large a ZFS_MAX_DATASET_NAME_LEN.
2684  * Returns 0 on success and an error on failure.
2685  */
2686 int
dsl_get_mountpoint(dsl_dataset_t * ds,const char * dsname,char * value,char * source)2687 dsl_get_mountpoint(dsl_dataset_t *ds, const char *dsname, char *value,
2688     char *source)
2689 {
2690 	int error;
2691 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
2692 
2693 	/* Retrieve the mountpoint value stored in the zap object */
2694 	error = dsl_prop_get_ds(ds, zfs_prop_to_name(ZFS_PROP_MOUNTPOINT), 1,
2695 	    ZAP_MAXVALUELEN, value, source);
2696 	if (error != 0) {
2697 		return (error);
2698 	}
2699 
2700 	/*
2701 	 * Process the dsname and source to find the full mountpoint string.
2702 	 * Can be skipped for 'legacy' or 'none'.
2703 	 */
2704 	if (value[0] == '/') {
2705 		char *buf = kmem_alloc(ZAP_MAXVALUELEN, KM_SLEEP);
2706 		char *root = buf;
2707 		const char *relpath;
2708 
2709 		/*
2710 		 * If we inherit the mountpoint, even from a dataset
2711 		 * with a received value, the source will be the path of
2712 		 * the dataset we inherit from. If source is
2713 		 * ZPROP_SOURCE_VAL_RECVD, the received value is not
2714 		 * inherited.
2715 		 */
2716 		if (strcmp(source, ZPROP_SOURCE_VAL_RECVD) == 0) {
2717 			relpath = "";
2718 		} else {
2719 			ASSERT0(strncmp(dsname, source, strlen(source)));
2720 			relpath = dsname + strlen(source);
2721 			if (relpath[0] == '/')
2722 				relpath++;
2723 		}
2724 
2725 		spa_altroot(dp->dp_spa, root, ZAP_MAXVALUELEN);
2726 
2727 		/*
2728 		 * Special case an alternate root of '/'. This will
2729 		 * avoid having multiple leading slashes in the
2730 		 * mountpoint path.
2731 		 */
2732 		if (strcmp(root, "/") == 0)
2733 			root++;
2734 
2735 		/*
2736 		 * If the mountpoint is '/' then skip over this
2737 		 * if we are obtaining either an alternate root or
2738 		 * an inherited mountpoint.
2739 		 */
2740 		char *mnt = value;
2741 		if (value[1] == '\0' && (root[0] != '\0' ||
2742 		    relpath[0] != '\0'))
2743 			mnt = value + 1;
2744 
2745 		if (relpath[0] == '\0') {
2746 			(void) snprintf(value, ZAP_MAXVALUELEN, "%s%s",
2747 			    root, mnt);
2748 		} else {
2749 			(void) snprintf(value, ZAP_MAXVALUELEN, "%s%s%s%s",
2750 			    root, mnt, relpath[0] == '@' ? "" : "/",
2751 			    relpath);
2752 		}
2753 		kmem_free(buf, ZAP_MAXVALUELEN);
2754 	}
2755 
2756 	return (0);
2757 }
2758 
2759 void
dsl_dataset_stats(dsl_dataset_t * ds,nvlist_t * nv)2760 dsl_dataset_stats(dsl_dataset_t *ds, nvlist_t *nv)
2761 {
2762 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
2763 
2764 	ASSERT(dsl_pool_config_held(dp));
2765 
2766 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFRATIO,
2767 	    dsl_get_refratio(ds));
2768 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_LOGICALREFERENCED,
2769 	    dsl_get_logicalreferenced(ds));
2770 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_COMPRESSRATIO,
2771 	    dsl_get_compressratio(ds));
2772 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_USED,
2773 	    dsl_get_used(ds));
2774 
2775 	if (ds->ds_is_snapshot) {
2776 		get_clones_stat(ds, nv);
2777 	} else {
2778 		char buf[ZFS_MAX_DATASET_NAME_LEN];
2779 		if (dsl_get_prev_snap(ds, buf) == 0)
2780 			dsl_prop_nvlist_add_string(nv, ZFS_PROP_PREV_SNAP,
2781 			    buf);
2782 		dsl_dir_stats(ds->ds_dir, nv);
2783 	}
2784 
2785 	nvlist_t *propval = fnvlist_alloc();
2786 	dsl_get_redact_snaps(ds, propval);
2787 	fnvlist_add_nvlist(nv, zfs_prop_to_name(ZFS_PROP_REDACT_SNAPS),
2788 	    propval);
2789 	nvlist_free(propval);
2790 
2791 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_AVAILABLE,
2792 	    dsl_get_available(ds));
2793 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFERENCED,
2794 	    dsl_get_referenced(ds));
2795 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_CREATION,
2796 	    dsl_get_creation(ds));
2797 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_CREATETXG,
2798 	    dsl_get_creationtxg(ds));
2799 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFQUOTA,
2800 	    dsl_get_refquota(ds));
2801 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_REFRESERVATION,
2802 	    dsl_get_refreservation(ds));
2803 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_GUID,
2804 	    dsl_get_guid(ds));
2805 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_UNIQUE,
2806 	    dsl_get_unique(ds));
2807 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_OBJSETID,
2808 	    dsl_get_objsetid(ds));
2809 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_USERREFS,
2810 	    dsl_get_userrefs(ds));
2811 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_DEFER_DESTROY,
2812 	    dsl_get_defer_destroy(ds));
2813 	dsl_dataset_crypt_stats(ds, nv);
2814 
2815 	if (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0) {
2816 		uint64_t written;
2817 		if (dsl_get_written(ds, &written) == 0) {
2818 			dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_WRITTEN,
2819 			    written);
2820 		}
2821 	}
2822 
2823 	if (!dsl_dataset_is_snapshot(ds)) {
2824 		/*
2825 		 * A failed "newfs" (e.g. full) resumable receive leaves
2826 		 * the stats set on this dataset.  Check here for the prop.
2827 		 */
2828 		get_receive_resume_stats(ds, nv);
2829 
2830 		/*
2831 		 * A failed incremental resumable receive leaves the
2832 		 * stats set on our child named "%recv".  Check the child
2833 		 * for the prop.
2834 		 */
2835 		/* 6 extra bytes for /%recv */
2836 		char recvname[ZFS_MAX_DATASET_NAME_LEN + 6];
2837 		dsl_dataset_t *recv_ds;
2838 		dsl_dataset_name(ds, recvname);
2839 		if (strlcat(recvname, "/", sizeof (recvname)) <
2840 		    sizeof (recvname) &&
2841 		    strlcat(recvname, recv_clone_name, sizeof (recvname)) <
2842 		    sizeof (recvname) &&
2843 		    dsl_dataset_hold(dp, recvname, FTAG, &recv_ds) == 0) {
2844 			get_receive_resume_stats(recv_ds, nv);
2845 			dsl_dataset_rele(recv_ds, FTAG);
2846 		}
2847 	}
2848 }
2849 
2850 void
dsl_dataset_fast_stat(dsl_dataset_t * ds,dmu_objset_stats_t * stat)2851 dsl_dataset_fast_stat(dsl_dataset_t *ds, dmu_objset_stats_t *stat)
2852 {
2853 	dsl_pool_t *dp __maybe_unused = ds->ds_dir->dd_pool;
2854 	ASSERT(dsl_pool_config_held(dp));
2855 
2856 	stat->dds_creation_txg = dsl_get_creationtxg(ds);
2857 	stat->dds_inconsistent = dsl_get_inconsistent(ds);
2858 	stat->dds_guid = dsl_get_guid(ds);
2859 	stat->dds_redacted = dsl_get_redacted(ds);
2860 	stat->dds_origin[0] = '\0';
2861 	if (ds->ds_is_snapshot) {
2862 		stat->dds_is_snapshot = B_TRUE;
2863 		stat->dds_num_clones = dsl_get_numclones(ds);
2864 	} else {
2865 		stat->dds_is_snapshot = B_FALSE;
2866 		stat->dds_num_clones = 0;
2867 
2868 		if (dsl_dir_is_clone(ds->ds_dir)) {
2869 			dsl_dir_get_origin(ds->ds_dir, stat->dds_origin);
2870 		}
2871 	}
2872 }
2873 
2874 uint64_t
dsl_dataset_fsid_guid(dsl_dataset_t * ds)2875 dsl_dataset_fsid_guid(dsl_dataset_t *ds)
2876 {
2877 	return (ds->ds_fsid_guid);
2878 }
2879 
2880 void
dsl_dataset_space(dsl_dataset_t * ds,uint64_t * refdbytesp,uint64_t * availbytesp,uint64_t * usedobjsp,uint64_t * availobjsp)2881 dsl_dataset_space(dsl_dataset_t *ds,
2882     uint64_t *refdbytesp, uint64_t *availbytesp,
2883     uint64_t *usedobjsp, uint64_t *availobjsp)
2884 {
2885 	*refdbytesp = dsl_dataset_phys(ds)->ds_referenced_bytes;
2886 	*availbytesp = dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE);
2887 	if (ds->ds_reserved > dsl_dataset_phys(ds)->ds_unique_bytes)
2888 		*availbytesp +=
2889 		    ds->ds_reserved - dsl_dataset_phys(ds)->ds_unique_bytes;
2890 	if (ds->ds_quota != 0) {
2891 		/*
2892 		 * Adjust available bytes according to refquota
2893 		 */
2894 		if (*refdbytesp < ds->ds_quota)
2895 			*availbytesp = MIN(*availbytesp,
2896 			    ds->ds_quota - *refdbytesp);
2897 		else
2898 			*availbytesp = 0;
2899 	}
2900 	rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
2901 	*usedobjsp = BP_GET_FILL(&dsl_dataset_phys(ds)->ds_bp);
2902 	rrw_exit(&ds->ds_bp_rwlock, FTAG);
2903 	*availobjsp = DN_MAX_OBJECT - *usedobjsp;
2904 }
2905 
2906 boolean_t
dsl_dataset_modified_since_snap(dsl_dataset_t * ds,dsl_dataset_t * snap)2907 dsl_dataset_modified_since_snap(dsl_dataset_t *ds, dsl_dataset_t *snap)
2908 {
2909 	dsl_pool_t *dp __maybe_unused = ds->ds_dir->dd_pool;
2910 	uint64_t birth;
2911 
2912 	ASSERT(dsl_pool_config_held(dp));
2913 	if (snap == NULL)
2914 		return (B_FALSE);
2915 	rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
2916 	birth = dsl_dataset_get_blkptr(ds)->blk_birth;
2917 	rrw_exit(&ds->ds_bp_rwlock, FTAG);
2918 	if (birth > dsl_dataset_phys(snap)->ds_creation_txg) {
2919 		objset_t *os, *os_snap;
2920 		/*
2921 		 * It may be that only the ZIL differs, because it was
2922 		 * reset in the head.  Don't count that as being
2923 		 * modified.
2924 		 */
2925 		if (dmu_objset_from_ds(ds, &os) != 0)
2926 			return (B_TRUE);
2927 		if (dmu_objset_from_ds(snap, &os_snap) != 0)
2928 			return (B_TRUE);
2929 		return (bcmp(&os->os_phys->os_meta_dnode,
2930 		    &os_snap->os_phys->os_meta_dnode,
2931 		    sizeof (os->os_phys->os_meta_dnode)) != 0);
2932 	}
2933 	return (B_FALSE);
2934 }
2935 
2936 typedef struct dsl_dataset_rename_snapshot_arg {
2937 	const char *ddrsa_fsname;
2938 	const char *ddrsa_oldsnapname;
2939 	const char *ddrsa_newsnapname;
2940 	boolean_t ddrsa_recursive;
2941 	dmu_tx_t *ddrsa_tx;
2942 } dsl_dataset_rename_snapshot_arg_t;
2943 
2944 static int
dsl_dataset_rename_snapshot_check_impl(dsl_pool_t * dp,dsl_dataset_t * hds,void * arg)2945 dsl_dataset_rename_snapshot_check_impl(dsl_pool_t *dp,
2946     dsl_dataset_t *hds, void *arg)
2947 {
2948 	(void) dp;
2949 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
2950 	int error;
2951 	uint64_t val;
2952 
2953 	error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_oldsnapname, &val);
2954 	if (error != 0) {
2955 		/* ignore nonexistent snapshots */
2956 		return (error == ENOENT ? 0 : error);
2957 	}
2958 
2959 	/* new name should not exist */
2960 	error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_newsnapname, &val);
2961 	if (error == 0)
2962 		error = SET_ERROR(EEXIST);
2963 	else if (error == ENOENT)
2964 		error = 0;
2965 
2966 	/* dataset name + 1 for the "@" + the new snapshot name must fit */
2967 	if (dsl_dir_namelen(hds->ds_dir) + 1 +
2968 	    strlen(ddrsa->ddrsa_newsnapname) >= ZFS_MAX_DATASET_NAME_LEN)
2969 		error = SET_ERROR(ENAMETOOLONG);
2970 
2971 	return (error);
2972 }
2973 
2974 static int
dsl_dataset_rename_snapshot_check(void * arg,dmu_tx_t * tx)2975 dsl_dataset_rename_snapshot_check(void *arg, dmu_tx_t *tx)
2976 {
2977 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
2978 	dsl_pool_t *dp = dmu_tx_pool(tx);
2979 	dsl_dataset_t *hds;
2980 	int error;
2981 
2982 	error = dsl_dataset_hold(dp, ddrsa->ddrsa_fsname, FTAG, &hds);
2983 	if (error != 0)
2984 		return (error);
2985 
2986 	if (ddrsa->ddrsa_recursive) {
2987 		error = dmu_objset_find_dp(dp, hds->ds_dir->dd_object,
2988 		    dsl_dataset_rename_snapshot_check_impl, ddrsa,
2989 		    DS_FIND_CHILDREN);
2990 	} else {
2991 		error = dsl_dataset_rename_snapshot_check_impl(dp, hds, ddrsa);
2992 	}
2993 	dsl_dataset_rele(hds, FTAG);
2994 	return (error);
2995 }
2996 
2997 static int
dsl_dataset_rename_snapshot_sync_impl(dsl_pool_t * dp,dsl_dataset_t * hds,void * arg)2998 dsl_dataset_rename_snapshot_sync_impl(dsl_pool_t *dp,
2999     dsl_dataset_t *hds, void *arg)
3000 {
3001 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
3002 	dsl_dataset_t *ds;
3003 	uint64_t val;
3004 	dmu_tx_t *tx = ddrsa->ddrsa_tx;
3005 	int error;
3006 
3007 	error = dsl_dataset_snap_lookup(hds, ddrsa->ddrsa_oldsnapname, &val);
3008 	ASSERT(error == 0 || error == ENOENT);
3009 	if (error == ENOENT) {
3010 		/* ignore nonexistent snapshots */
3011 		return (0);
3012 	}
3013 
3014 	VERIFY0(dsl_dataset_hold_obj(dp, val, FTAG, &ds));
3015 
3016 	/* log before we change the name */
3017 	spa_history_log_internal_ds(ds, "rename", tx,
3018 	    "-> @%s", ddrsa->ddrsa_newsnapname);
3019 
3020 	VERIFY0(dsl_dataset_snap_remove(hds, ddrsa->ddrsa_oldsnapname, tx,
3021 	    B_FALSE));
3022 	mutex_enter(&ds->ds_lock);
3023 	(void) strlcpy(ds->ds_snapname, ddrsa->ddrsa_newsnapname,
3024 	    sizeof (ds->ds_snapname));
3025 	mutex_exit(&ds->ds_lock);
3026 	VERIFY0(zap_add(dp->dp_meta_objset,
3027 	    dsl_dataset_phys(hds)->ds_snapnames_zapobj,
3028 	    ds->ds_snapname, 8, 1, &ds->ds_object, tx));
3029 	zvol_rename_minors(dp->dp_spa, ddrsa->ddrsa_oldsnapname,
3030 	    ddrsa->ddrsa_newsnapname, B_TRUE);
3031 
3032 	dsl_dataset_rele(ds, FTAG);
3033 	return (0);
3034 }
3035 
3036 static void
dsl_dataset_rename_snapshot_sync(void * arg,dmu_tx_t * tx)3037 dsl_dataset_rename_snapshot_sync(void *arg, dmu_tx_t *tx)
3038 {
3039 	dsl_dataset_rename_snapshot_arg_t *ddrsa = arg;
3040 	dsl_pool_t *dp = dmu_tx_pool(tx);
3041 	dsl_dataset_t *hds = NULL;
3042 
3043 	VERIFY0(dsl_dataset_hold(dp, ddrsa->ddrsa_fsname, FTAG, &hds));
3044 	ddrsa->ddrsa_tx = tx;
3045 	if (ddrsa->ddrsa_recursive) {
3046 		VERIFY0(dmu_objset_find_dp(dp, hds->ds_dir->dd_object,
3047 		    dsl_dataset_rename_snapshot_sync_impl, ddrsa,
3048 		    DS_FIND_CHILDREN));
3049 	} else {
3050 		VERIFY0(dsl_dataset_rename_snapshot_sync_impl(dp, hds, ddrsa));
3051 	}
3052 	dsl_dataset_rele(hds, FTAG);
3053 }
3054 
3055 int
dsl_dataset_rename_snapshot(const char * fsname,const char * oldsnapname,const char * newsnapname,boolean_t recursive)3056 dsl_dataset_rename_snapshot(const char *fsname,
3057     const char *oldsnapname, const char *newsnapname, boolean_t recursive)
3058 {
3059 	dsl_dataset_rename_snapshot_arg_t ddrsa;
3060 
3061 	ddrsa.ddrsa_fsname = fsname;
3062 	ddrsa.ddrsa_oldsnapname = oldsnapname;
3063 	ddrsa.ddrsa_newsnapname = newsnapname;
3064 	ddrsa.ddrsa_recursive = recursive;
3065 
3066 	return (dsl_sync_task(fsname, dsl_dataset_rename_snapshot_check,
3067 	    dsl_dataset_rename_snapshot_sync, &ddrsa,
3068 	    1, ZFS_SPACE_CHECK_RESERVED));
3069 }
3070 
3071 /*
3072  * If we're doing an ownership handoff, we need to make sure that there is
3073  * only one long hold on the dataset.  We're not allowed to change anything here
3074  * so we don't permanently release the long hold or regular hold here.  We want
3075  * to do this only when syncing to avoid the dataset unexpectedly going away
3076  * when we release the long hold.
3077  */
3078 static int
dsl_dataset_handoff_check(dsl_dataset_t * ds,void * owner,dmu_tx_t * tx)3079 dsl_dataset_handoff_check(dsl_dataset_t *ds, void *owner, dmu_tx_t *tx)
3080 {
3081 	boolean_t held = B_FALSE;
3082 
3083 	if (!dmu_tx_is_syncing(tx))
3084 		return (0);
3085 
3086 	dsl_dir_t *dd = ds->ds_dir;
3087 	mutex_enter(&dd->dd_activity_lock);
3088 	uint64_t holds = zfs_refcount_count(&ds->ds_longholds) -
3089 	    (owner != NULL ? 1 : 0);
3090 	/*
3091 	 * The value of dd_activity_waiters can chance as soon as we drop the
3092 	 * lock, but we're fine with that; new waiters coming in or old
3093 	 * waiters leaving doesn't cause problems, since we're going to cancel
3094 	 * waiters later anyway. The goal of this check is to verify that no
3095 	 * non-waiters have long-holds, and all new long-holds will be
3096 	 * prevented because we're holding the pool config as writer.
3097 	 */
3098 	if (holds != dd->dd_activity_waiters)
3099 		held = B_TRUE;
3100 	mutex_exit(&dd->dd_activity_lock);
3101 
3102 	if (held)
3103 		return (SET_ERROR(EBUSY));
3104 
3105 	return (0);
3106 }
3107 
3108 int
dsl_dataset_rollback_check(void * arg,dmu_tx_t * tx)3109 dsl_dataset_rollback_check(void *arg, dmu_tx_t *tx)
3110 {
3111 	dsl_dataset_rollback_arg_t *ddra = arg;
3112 	dsl_pool_t *dp = dmu_tx_pool(tx);
3113 	dsl_dataset_t *ds;
3114 	int64_t unused_refres_delta;
3115 	int error;
3116 
3117 	error = dsl_dataset_hold(dp, ddra->ddra_fsname, FTAG, &ds);
3118 	if (error != 0)
3119 		return (error);
3120 
3121 	/* must not be a snapshot */
3122 	if (ds->ds_is_snapshot) {
3123 		dsl_dataset_rele(ds, FTAG);
3124 		return (SET_ERROR(EINVAL));
3125 	}
3126 
3127 	/* must have a most recent snapshot */
3128 	if (dsl_dataset_phys(ds)->ds_prev_snap_txg < TXG_INITIAL) {
3129 		dsl_dataset_rele(ds, FTAG);
3130 		return (SET_ERROR(ESRCH));
3131 	}
3132 
3133 	/*
3134 	 * No rollback to a snapshot created in the current txg, because
3135 	 * the rollback may dirty the dataset and create blocks that are
3136 	 * not reachable from the rootbp while having a birth txg that
3137 	 * falls into the snapshot's range.
3138 	 */
3139 	if (dmu_tx_is_syncing(tx) &&
3140 	    dsl_dataset_phys(ds)->ds_prev_snap_txg >= tx->tx_txg) {
3141 		dsl_dataset_rele(ds, FTAG);
3142 		return (SET_ERROR(EAGAIN));
3143 	}
3144 
3145 	/*
3146 	 * If the expected target snapshot is specified, then check that
3147 	 * the latest snapshot is it.
3148 	 */
3149 	if (ddra->ddra_tosnap != NULL) {
3150 		dsl_dataset_t *snapds;
3151 
3152 		/* Check if the target snapshot exists at all. */
3153 		error = dsl_dataset_hold(dp, ddra->ddra_tosnap, FTAG, &snapds);
3154 		if (error != 0) {
3155 			/*
3156 			 * ESRCH is used to signal that the target snapshot does
3157 			 * not exist, while ENOENT is used to report that
3158 			 * the rolled back dataset does not exist.
3159 			 * ESRCH is also used to cover other cases where the
3160 			 * target snapshot is not related to the dataset being
3161 			 * rolled back such as being in a different pool.
3162 			 */
3163 			if (error == ENOENT || error == EXDEV)
3164 				error = SET_ERROR(ESRCH);
3165 			dsl_dataset_rele(ds, FTAG);
3166 			return (error);
3167 		}
3168 		ASSERT(snapds->ds_is_snapshot);
3169 
3170 		/* Check if the snapshot is the latest snapshot indeed. */
3171 		if (snapds != ds->ds_prev) {
3172 			/*
3173 			 * Distinguish between the case where the only problem
3174 			 * is intervening snapshots (EEXIST) vs the snapshot
3175 			 * not being a valid target for rollback (ESRCH).
3176 			 */
3177 			if (snapds->ds_dir == ds->ds_dir ||
3178 			    (dsl_dir_is_clone(ds->ds_dir) &&
3179 			    dsl_dir_phys(ds->ds_dir)->dd_origin_obj ==
3180 			    snapds->ds_object)) {
3181 				error = SET_ERROR(EEXIST);
3182 			} else {
3183 				error = SET_ERROR(ESRCH);
3184 			}
3185 			dsl_dataset_rele(snapds, FTAG);
3186 			dsl_dataset_rele(ds, FTAG);
3187 			return (error);
3188 		}
3189 		dsl_dataset_rele(snapds, FTAG);
3190 	}
3191 
3192 	/* must not have any bookmarks after the most recent snapshot */
3193 	if (dsl_bookmark_latest_txg(ds) >
3194 	    dsl_dataset_phys(ds)->ds_prev_snap_txg) {
3195 		dsl_dataset_rele(ds, FTAG);
3196 		return (SET_ERROR(EEXIST));
3197 	}
3198 
3199 	error = dsl_dataset_handoff_check(ds, ddra->ddra_owner, tx);
3200 	if (error != 0) {
3201 		dsl_dataset_rele(ds, FTAG);
3202 		return (error);
3203 	}
3204 
3205 	/*
3206 	 * Check if the snap we are rolling back to uses more than
3207 	 * the refquota.
3208 	 */
3209 	if (ds->ds_quota != 0 &&
3210 	    dsl_dataset_phys(ds->ds_prev)->ds_referenced_bytes > ds->ds_quota) {
3211 		dsl_dataset_rele(ds, FTAG);
3212 		return (SET_ERROR(EDQUOT));
3213 	}
3214 
3215 	/*
3216 	 * When we do the clone swap, we will temporarily use more space
3217 	 * due to the refreservation (the head will no longer have any
3218 	 * unique space, so the entire amount of the refreservation will need
3219 	 * to be free).  We will immediately destroy the clone, freeing
3220 	 * this space, but the freeing happens over many txg's.
3221 	 */
3222 	unused_refres_delta = (int64_t)MIN(ds->ds_reserved,
3223 	    dsl_dataset_phys(ds)->ds_unique_bytes);
3224 
3225 	if (unused_refres_delta > 0 &&
3226 	    unused_refres_delta >
3227 	    dsl_dir_space_available(ds->ds_dir, NULL, 0, TRUE)) {
3228 		dsl_dataset_rele(ds, FTAG);
3229 		return (SET_ERROR(ENOSPC));
3230 	}
3231 
3232 	dsl_dataset_rele(ds, FTAG);
3233 	return (0);
3234 }
3235 
3236 void
dsl_dataset_rollback_sync(void * arg,dmu_tx_t * tx)3237 dsl_dataset_rollback_sync(void *arg, dmu_tx_t *tx)
3238 {
3239 	dsl_dataset_rollback_arg_t *ddra = arg;
3240 	dsl_pool_t *dp = dmu_tx_pool(tx);
3241 	dsl_dataset_t *ds, *clone;
3242 	uint64_t cloneobj;
3243 	char namebuf[ZFS_MAX_DATASET_NAME_LEN];
3244 
3245 	VERIFY0(dsl_dataset_hold(dp, ddra->ddra_fsname, FTAG, &ds));
3246 
3247 	dsl_dataset_name(ds->ds_prev, namebuf);
3248 	fnvlist_add_string(ddra->ddra_result, "target", namebuf);
3249 
3250 	cloneobj = dsl_dataset_create_sync(ds->ds_dir, "%rollback",
3251 	    ds->ds_prev, DS_CREATE_FLAG_NODIRTY, kcred, NULL, tx);
3252 
3253 	VERIFY0(dsl_dataset_hold_obj(dp, cloneobj, FTAG, &clone));
3254 
3255 	dsl_dataset_clone_swap_sync_impl(clone, ds, tx);
3256 	dsl_dataset_zero_zil(ds, tx);
3257 
3258 	dsl_destroy_head_sync_impl(clone, tx);
3259 
3260 	dsl_dataset_rele(clone, FTAG);
3261 	dsl_dataset_rele(ds, FTAG);
3262 }
3263 
3264 /*
3265  * Rolls back the given filesystem or volume to the most recent snapshot.
3266  * The name of the most recent snapshot will be returned under key "target"
3267  * in the result nvlist.
3268  *
3269  * If owner != NULL:
3270  * - The existing dataset MUST be owned by the specified owner at entry
3271  * - Upon return, dataset will still be held by the same owner, whether we
3272  *   succeed or not.
3273  *
3274  * This mode is required any time the existing filesystem is mounted.  See
3275  * notes above zfs_suspend_fs() for further details.
3276  */
3277 int
dsl_dataset_rollback(const char * fsname,const char * tosnap,void * owner,nvlist_t * result)3278 dsl_dataset_rollback(const char *fsname, const char *tosnap, void *owner,
3279     nvlist_t *result)
3280 {
3281 	dsl_dataset_rollback_arg_t ddra;
3282 
3283 	ddra.ddra_fsname = fsname;
3284 	ddra.ddra_tosnap = tosnap;
3285 	ddra.ddra_owner = owner;
3286 	ddra.ddra_result = result;
3287 
3288 	return (dsl_sync_task(fsname, dsl_dataset_rollback_check,
3289 	    dsl_dataset_rollback_sync, &ddra,
3290 	    1, ZFS_SPACE_CHECK_RESERVED));
3291 }
3292 
3293 struct promotenode {
3294 	list_node_t link;
3295 	dsl_dataset_t *ds;
3296 };
3297 
3298 static int snaplist_space(list_t *l, uint64_t mintxg, uint64_t *spacep);
3299 static int promote_hold(dsl_dataset_promote_arg_t *ddpa, dsl_pool_t *dp,
3300     void *tag);
3301 static void promote_rele(dsl_dataset_promote_arg_t *ddpa, void *tag);
3302 
3303 int
dsl_dataset_promote_check(void * arg,dmu_tx_t * tx)3304 dsl_dataset_promote_check(void *arg, dmu_tx_t *tx)
3305 {
3306 	dsl_dataset_promote_arg_t *ddpa = arg;
3307 	dsl_pool_t *dp = dmu_tx_pool(tx);
3308 	dsl_dataset_t *hds;
3309 	struct promotenode *snap;
3310 	dsl_dataset_t *origin_ds, *origin_head;
3311 	int err;
3312 	uint64_t unused;
3313 	uint64_t ss_mv_cnt;
3314 	size_t max_snap_len;
3315 	boolean_t conflicting_snaps;
3316 
3317 	err = promote_hold(ddpa, dp, FTAG);
3318 	if (err != 0)
3319 		return (err);
3320 
3321 	hds = ddpa->ddpa_clone;
3322 	max_snap_len = MAXNAMELEN - strlen(ddpa->ddpa_clonename) - 1;
3323 
3324 	if (dsl_dataset_phys(hds)->ds_flags & DS_FLAG_NOPROMOTE) {
3325 		promote_rele(ddpa, FTAG);
3326 		return (SET_ERROR(EXDEV));
3327 	}
3328 
3329 	snap = list_head(&ddpa->shared_snaps);
3330 	origin_head = snap->ds;
3331 	if (snap == NULL) {
3332 		err = SET_ERROR(ENOENT);
3333 		goto out;
3334 	}
3335 	origin_ds = snap->ds;
3336 
3337 	/*
3338 	 * Encrypted clones share a DSL Crypto Key with their origin's dsl dir.
3339 	 * When doing a promote we must make sure the encryption root for
3340 	 * both the target and the target's origin does not change to avoid
3341 	 * needing to rewrap encryption keys
3342 	 */
3343 	err = dsl_dataset_promote_crypt_check(hds->ds_dir, origin_ds->ds_dir);
3344 	if (err != 0)
3345 		goto out;
3346 
3347 	/*
3348 	 * Compute and check the amount of space to transfer.  Since this is
3349 	 * so expensive, don't do the preliminary check.
3350 	 */
3351 	if (!dmu_tx_is_syncing(tx)) {
3352 		promote_rele(ddpa, FTAG);
3353 		return (0);
3354 	}
3355 
3356 	/* compute origin's new unique space */
3357 	snap = list_tail(&ddpa->clone_snaps);
3358 	ASSERT(snap != NULL);
3359 	ASSERT3U(dsl_dataset_phys(snap->ds)->ds_prev_snap_obj, ==,
3360 	    origin_ds->ds_object);
3361 	dsl_deadlist_space_range(&snap->ds->ds_deadlist,
3362 	    dsl_dataset_phys(origin_ds)->ds_prev_snap_txg, UINT64_MAX,
3363 	    &ddpa->unique, &unused, &unused);
3364 
3365 	/*
3366 	 * Walk the snapshots that we are moving
3367 	 *
3368 	 * Compute space to transfer.  Consider the incremental changes
3369 	 * to used by each snapshot:
3370 	 * (my used) = (prev's used) + (blocks born) - (blocks killed)
3371 	 * So each snapshot gave birth to:
3372 	 * (blocks born) = (my used) - (prev's used) + (blocks killed)
3373 	 * So a sequence would look like:
3374 	 * (uN - u(N-1) + kN) + ... + (u1 - u0 + k1) + (u0 - 0 + k0)
3375 	 * Which simplifies to:
3376 	 * uN + kN + kN-1 + ... + k1 + k0
3377 	 * Note however, if we stop before we reach the ORIGIN we get:
3378 	 * uN + kN + kN-1 + ... + kM - uM-1
3379 	 */
3380 	conflicting_snaps = B_FALSE;
3381 	ss_mv_cnt = 0;
3382 	ddpa->used = dsl_dataset_phys(origin_ds)->ds_referenced_bytes;
3383 	ddpa->comp = dsl_dataset_phys(origin_ds)->ds_compressed_bytes;
3384 	ddpa->uncomp = dsl_dataset_phys(origin_ds)->ds_uncompressed_bytes;
3385 	for (snap = list_head(&ddpa->shared_snaps); snap;
3386 	    snap = list_next(&ddpa->shared_snaps, snap)) {
3387 		uint64_t val, dlused, dlcomp, dluncomp;
3388 		dsl_dataset_t *ds = snap->ds;
3389 
3390 		ss_mv_cnt++;
3391 
3392 		/*
3393 		 * If there are long holds, we won't be able to evict
3394 		 * the objset.
3395 		 */
3396 		if (dsl_dataset_long_held(ds)) {
3397 			err = SET_ERROR(EBUSY);
3398 			goto out;
3399 		}
3400 
3401 		/* Check that the snapshot name does not conflict */
3402 		VERIFY0(dsl_dataset_get_snapname(ds));
3403 		if (strlen(ds->ds_snapname) >= max_snap_len) {
3404 			err = SET_ERROR(ENAMETOOLONG);
3405 			goto out;
3406 		}
3407 		err = dsl_dataset_snap_lookup(hds, ds->ds_snapname, &val);
3408 		if (err == 0) {
3409 			fnvlist_add_boolean(ddpa->err_ds,
3410 			    snap->ds->ds_snapname);
3411 			conflicting_snaps = B_TRUE;
3412 		} else if (err != ENOENT) {
3413 			goto out;
3414 		}
3415 
3416 		/* The very first snapshot does not have a deadlist */
3417 		if (dsl_dataset_phys(ds)->ds_prev_snap_obj == 0)
3418 			continue;
3419 
3420 		dsl_deadlist_space(&ds->ds_deadlist,
3421 		    &dlused, &dlcomp, &dluncomp);
3422 		ddpa->used += dlused;
3423 		ddpa->comp += dlcomp;
3424 		ddpa->uncomp += dluncomp;
3425 	}
3426 
3427 	/*
3428 	 * Check that bookmarks that are being transferred don't have
3429 	 * name conflicts.
3430 	 */
3431 	for (dsl_bookmark_node_t *dbn = avl_first(&origin_head->ds_bookmarks);
3432 	    dbn != NULL && dbn->dbn_phys.zbm_creation_txg <=
3433 	    dsl_dataset_phys(origin_ds)->ds_creation_txg;
3434 	    dbn = AVL_NEXT(&origin_head->ds_bookmarks, dbn)) {
3435 		if (strlen(dbn->dbn_name) >= max_snap_len) {
3436 			err = SET_ERROR(ENAMETOOLONG);
3437 			goto out;
3438 		}
3439 		zfs_bookmark_phys_t bm;
3440 		err = dsl_bookmark_lookup_impl(ddpa->ddpa_clone,
3441 		    dbn->dbn_name, &bm);
3442 
3443 		if (err == 0) {
3444 			fnvlist_add_boolean(ddpa->err_ds, dbn->dbn_name);
3445 			conflicting_snaps = B_TRUE;
3446 		} else if (err == ESRCH) {
3447 			err = 0;
3448 		} else if (err != 0) {
3449 			goto out;
3450 		}
3451 	}
3452 
3453 	/*
3454 	 * In order to return the full list of conflicting snapshots, we check
3455 	 * whether there was a conflict after traversing all of them.
3456 	 */
3457 	if (conflicting_snaps) {
3458 		err = SET_ERROR(EEXIST);
3459 		goto out;
3460 	}
3461 
3462 	/*
3463 	 * If we are a clone of a clone then we never reached ORIGIN,
3464 	 * so we need to subtract out the clone origin's used space.
3465 	 */
3466 	if (ddpa->origin_origin) {
3467 		ddpa->used -=
3468 		    dsl_dataset_phys(ddpa->origin_origin)->ds_referenced_bytes;
3469 		ddpa->comp -=
3470 		    dsl_dataset_phys(ddpa->origin_origin)->ds_compressed_bytes;
3471 		ddpa->uncomp -=
3472 		    dsl_dataset_phys(ddpa->origin_origin)->
3473 		    ds_uncompressed_bytes;
3474 	}
3475 
3476 	/* Check that there is enough space and limit headroom here */
3477 	err = dsl_dir_transfer_possible(origin_ds->ds_dir, hds->ds_dir,
3478 	    0, ss_mv_cnt, ddpa->used, ddpa->cr, ddpa->proc);
3479 	if (err != 0)
3480 		goto out;
3481 
3482 	/*
3483 	 * Compute the amounts of space that will be used by snapshots
3484 	 * after the promotion (for both origin and clone).  For each,
3485 	 * it is the amount of space that will be on all of their
3486 	 * deadlists (that was not born before their new origin).
3487 	 */
3488 	if (dsl_dir_phys(hds->ds_dir)->dd_flags & DD_FLAG_USED_BREAKDOWN) {
3489 		uint64_t space;
3490 
3491 		/*
3492 		 * Note, typically this will not be a clone of a clone,
3493 		 * so dd_origin_txg will be < TXG_INITIAL, so
3494 		 * these snaplist_space() -> dsl_deadlist_space_range()
3495 		 * calls will be fast because they do not have to
3496 		 * iterate over all bps.
3497 		 */
3498 		snap = list_head(&ddpa->origin_snaps);
3499 		if (snap == NULL) {
3500 			err = SET_ERROR(ENOENT);
3501 			goto out;
3502 		}
3503 		err = snaplist_space(&ddpa->shared_snaps,
3504 		    snap->ds->ds_dir->dd_origin_txg, &ddpa->cloneusedsnap);
3505 		if (err != 0)
3506 			goto out;
3507 
3508 		err = snaplist_space(&ddpa->clone_snaps,
3509 		    snap->ds->ds_dir->dd_origin_txg, &space);
3510 		if (err != 0)
3511 			goto out;
3512 		ddpa->cloneusedsnap += space;
3513 	}
3514 	if (dsl_dir_phys(origin_ds->ds_dir)->dd_flags &
3515 	    DD_FLAG_USED_BREAKDOWN) {
3516 		err = snaplist_space(&ddpa->origin_snaps,
3517 		    dsl_dataset_phys(origin_ds)->ds_creation_txg,
3518 		    &ddpa->originusedsnap);
3519 		if (err != 0)
3520 			goto out;
3521 	}
3522 
3523 out:
3524 	promote_rele(ddpa, FTAG);
3525 	return (err);
3526 }
3527 
3528 void
dsl_dataset_promote_sync(void * arg,dmu_tx_t * tx)3529 dsl_dataset_promote_sync(void *arg, dmu_tx_t *tx)
3530 {
3531 	dsl_dataset_promote_arg_t *ddpa = arg;
3532 	dsl_pool_t *dp = dmu_tx_pool(tx);
3533 	dsl_dataset_t *hds;
3534 	struct promotenode *snap;
3535 	dsl_dataset_t *origin_ds;
3536 	dsl_dataset_t *origin_head;
3537 	dsl_dir_t *dd;
3538 	dsl_dir_t *odd = NULL;
3539 	uint64_t oldnext_obj;
3540 	int64_t delta;
3541 
3542 	ASSERT(nvlist_empty(ddpa->err_ds));
3543 
3544 	VERIFY0(promote_hold(ddpa, dp, FTAG));
3545 	hds = ddpa->ddpa_clone;
3546 
3547 	ASSERT0(dsl_dataset_phys(hds)->ds_flags & DS_FLAG_NOPROMOTE);
3548 
3549 	snap = list_head(&ddpa->shared_snaps);
3550 	origin_ds = snap->ds;
3551 	dd = hds->ds_dir;
3552 
3553 	snap = list_head(&ddpa->origin_snaps);
3554 	origin_head = snap->ds;
3555 
3556 	/*
3557 	 * We need to explicitly open odd, since origin_ds's dd will be
3558 	 * changing.
3559 	 */
3560 	VERIFY0(dsl_dir_hold_obj(dp, origin_ds->ds_dir->dd_object,
3561 	    NULL, FTAG, &odd));
3562 
3563 	dsl_dataset_promote_crypt_sync(hds->ds_dir, odd, tx);
3564 
3565 	/* change origin's next snap */
3566 	dmu_buf_will_dirty(origin_ds->ds_dbuf, tx);
3567 	oldnext_obj = dsl_dataset_phys(origin_ds)->ds_next_snap_obj;
3568 	snap = list_tail(&ddpa->clone_snaps);
3569 	ASSERT3U(dsl_dataset_phys(snap->ds)->ds_prev_snap_obj, ==,
3570 	    origin_ds->ds_object);
3571 	dsl_dataset_phys(origin_ds)->ds_next_snap_obj = snap->ds->ds_object;
3572 
3573 	/* change the origin's next clone */
3574 	if (dsl_dataset_phys(origin_ds)->ds_next_clones_obj) {
3575 		dsl_dataset_remove_from_next_clones(origin_ds,
3576 		    snap->ds->ds_object, tx);
3577 		VERIFY0(zap_add_int(dp->dp_meta_objset,
3578 		    dsl_dataset_phys(origin_ds)->ds_next_clones_obj,
3579 		    oldnext_obj, tx));
3580 	}
3581 
3582 	/* change origin */
3583 	dmu_buf_will_dirty(dd->dd_dbuf, tx);
3584 	ASSERT3U(dsl_dir_phys(dd)->dd_origin_obj, ==, origin_ds->ds_object);
3585 	dsl_dir_phys(dd)->dd_origin_obj = dsl_dir_phys(odd)->dd_origin_obj;
3586 	dd->dd_origin_txg = origin_head->ds_dir->dd_origin_txg;
3587 	dmu_buf_will_dirty(odd->dd_dbuf, tx);
3588 	dsl_dir_phys(odd)->dd_origin_obj = origin_ds->ds_object;
3589 	origin_head->ds_dir->dd_origin_txg =
3590 	    dsl_dataset_phys(origin_ds)->ds_creation_txg;
3591 
3592 	/* change dd_clone entries */
3593 	if (spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
3594 		VERIFY0(zap_remove_int(dp->dp_meta_objset,
3595 		    dsl_dir_phys(odd)->dd_clones, hds->ds_object, tx));
3596 		VERIFY0(zap_add_int(dp->dp_meta_objset,
3597 		    dsl_dir_phys(ddpa->origin_origin->ds_dir)->dd_clones,
3598 		    hds->ds_object, tx));
3599 
3600 		VERIFY0(zap_remove_int(dp->dp_meta_objset,
3601 		    dsl_dir_phys(ddpa->origin_origin->ds_dir)->dd_clones,
3602 		    origin_head->ds_object, tx));
3603 		if (dsl_dir_phys(dd)->dd_clones == 0) {
3604 			dsl_dir_phys(dd)->dd_clones =
3605 			    zap_create(dp->dp_meta_objset, DMU_OT_DSL_CLONES,
3606 			    DMU_OT_NONE, 0, tx);
3607 		}
3608 		VERIFY0(zap_add_int(dp->dp_meta_objset,
3609 		    dsl_dir_phys(dd)->dd_clones, origin_head->ds_object, tx));
3610 	}
3611 
3612 	/*
3613 	 * Move bookmarks to this dir.
3614 	 */
3615 	dsl_bookmark_node_t *dbn_next;
3616 	for (dsl_bookmark_node_t *dbn = avl_first(&origin_head->ds_bookmarks);
3617 	    dbn != NULL && dbn->dbn_phys.zbm_creation_txg <=
3618 	    dsl_dataset_phys(origin_ds)->ds_creation_txg;
3619 	    dbn = dbn_next) {
3620 		dbn_next = AVL_NEXT(&origin_head->ds_bookmarks, dbn);
3621 
3622 		avl_remove(&origin_head->ds_bookmarks, dbn);
3623 		VERIFY0(zap_remove(dp->dp_meta_objset,
3624 		    origin_head->ds_bookmarks_obj, dbn->dbn_name, tx));
3625 
3626 		dsl_bookmark_node_add(hds, dbn, tx);
3627 	}
3628 
3629 	dsl_bookmark_next_changed(hds, origin_ds, tx);
3630 
3631 	/* move snapshots to this dir */
3632 	for (snap = list_head(&ddpa->shared_snaps); snap;
3633 	    snap = list_next(&ddpa->shared_snaps, snap)) {
3634 		dsl_dataset_t *ds = snap->ds;
3635 
3636 		/*
3637 		 * Property callbacks are registered to a particular
3638 		 * dsl_dir.  Since ours is changing, evict the objset
3639 		 * so that they will be unregistered from the old dsl_dir.
3640 		 */
3641 		if (ds->ds_objset) {
3642 			dmu_objset_evict(ds->ds_objset);
3643 			ds->ds_objset = NULL;
3644 		}
3645 
3646 		/* move snap name entry */
3647 		VERIFY0(dsl_dataset_get_snapname(ds));
3648 		VERIFY0(dsl_dataset_snap_remove(origin_head,
3649 		    ds->ds_snapname, tx, B_TRUE));
3650 		VERIFY0(zap_add(dp->dp_meta_objset,
3651 		    dsl_dataset_phys(hds)->ds_snapnames_zapobj, ds->ds_snapname,
3652 		    8, 1, &ds->ds_object, tx));
3653 		dsl_fs_ss_count_adjust(hds->ds_dir, 1,
3654 		    DD_FIELD_SNAPSHOT_COUNT, tx);
3655 
3656 		/* change containing dsl_dir */
3657 		dmu_buf_will_dirty(ds->ds_dbuf, tx);
3658 		ASSERT3U(dsl_dataset_phys(ds)->ds_dir_obj, ==, odd->dd_object);
3659 		dsl_dataset_phys(ds)->ds_dir_obj = dd->dd_object;
3660 		ASSERT3P(ds->ds_dir, ==, odd);
3661 		dsl_dir_rele(ds->ds_dir, ds);
3662 		VERIFY0(dsl_dir_hold_obj(dp, dd->dd_object,
3663 		    NULL, ds, &ds->ds_dir));
3664 
3665 		/* move any clone references */
3666 		if (dsl_dataset_phys(ds)->ds_next_clones_obj &&
3667 		    spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
3668 			zap_cursor_t zc;
3669 			zap_attribute_t za;
3670 
3671 			for (zap_cursor_init(&zc, dp->dp_meta_objset,
3672 			    dsl_dataset_phys(ds)->ds_next_clones_obj);
3673 			    zap_cursor_retrieve(&zc, &za) == 0;
3674 			    zap_cursor_advance(&zc)) {
3675 				dsl_dataset_t *cnds;
3676 				uint64_t o;
3677 
3678 				if (za.za_first_integer == oldnext_obj) {
3679 					/*
3680 					 * We've already moved the
3681 					 * origin's reference.
3682 					 */
3683 					continue;
3684 				}
3685 
3686 				VERIFY0(dsl_dataset_hold_obj(dp,
3687 				    za.za_first_integer, FTAG, &cnds));
3688 				o = dsl_dir_phys(cnds->ds_dir)->
3689 				    dd_head_dataset_obj;
3690 
3691 				VERIFY0(zap_remove_int(dp->dp_meta_objset,
3692 				    dsl_dir_phys(odd)->dd_clones, o, tx));
3693 				VERIFY0(zap_add_int(dp->dp_meta_objset,
3694 				    dsl_dir_phys(dd)->dd_clones, o, tx));
3695 				dsl_dataset_rele(cnds, FTAG);
3696 			}
3697 			zap_cursor_fini(&zc);
3698 		}
3699 
3700 		ASSERT(!dsl_prop_hascb(ds));
3701 	}
3702 
3703 	/*
3704 	 * Change space accounting.
3705 	 * Note, pa->*usedsnap and dd_used_breakdown[SNAP] will either
3706 	 * both be valid, or both be 0 (resulting in delta == 0).  This
3707 	 * is true for each of {clone,origin} independently.
3708 	 */
3709 
3710 	delta = ddpa->cloneusedsnap -
3711 	    dsl_dir_phys(dd)->dd_used_breakdown[DD_USED_SNAP];
3712 	ASSERT3S(delta, >=, 0);
3713 	ASSERT3U(ddpa->used, >=, delta);
3714 	dsl_dir_diduse_space(dd, DD_USED_SNAP, delta, 0, 0, tx);
3715 	dsl_dir_diduse_space(dd, DD_USED_HEAD,
3716 	    ddpa->used - delta, ddpa->comp, ddpa->uncomp, tx);
3717 
3718 	delta = ddpa->originusedsnap -
3719 	    dsl_dir_phys(odd)->dd_used_breakdown[DD_USED_SNAP];
3720 	ASSERT3S(delta, <=, 0);
3721 	ASSERT3U(ddpa->used, >=, -delta);
3722 	dsl_dir_diduse_space(odd, DD_USED_SNAP, delta, 0, 0, tx);
3723 	dsl_dir_diduse_space(odd, DD_USED_HEAD,
3724 	    -ddpa->used - delta, -ddpa->comp, -ddpa->uncomp, tx);
3725 
3726 	dsl_dataset_phys(origin_ds)->ds_unique_bytes = ddpa->unique;
3727 
3728 	/*
3729 	 * Since livelists are specific to a clone's origin txg, they
3730 	 * are no longer accurate. Destroy the livelist from the clone being
3731 	 * promoted. If the origin dataset is a clone, destroy its livelist
3732 	 * as well.
3733 	 */
3734 	dsl_dir_remove_livelist(dd, tx, B_TRUE);
3735 	dsl_dir_remove_livelist(odd, tx, B_TRUE);
3736 
3737 	/* log history record */
3738 	spa_history_log_internal_ds(hds, "promote", tx, " ");
3739 
3740 	dsl_dir_rele(odd, FTAG);
3741 	promote_rele(ddpa, FTAG);
3742 }
3743 
3744 /*
3745  * Make a list of dsl_dataset_t's for the snapshots between first_obj
3746  * (exclusive) and last_obj (inclusive).  The list will be in reverse
3747  * order (last_obj will be the list_head()).  If first_obj == 0, do all
3748  * snapshots back to this dataset's origin.
3749  */
3750 static int
snaplist_make(dsl_pool_t * dp,uint64_t first_obj,uint64_t last_obj,list_t * l,void * tag)3751 snaplist_make(dsl_pool_t *dp,
3752     uint64_t first_obj, uint64_t last_obj, list_t *l, void *tag)
3753 {
3754 	uint64_t obj = last_obj;
3755 
3756 	list_create(l, sizeof (struct promotenode),
3757 	    offsetof(struct promotenode, link));
3758 
3759 	while (obj != first_obj) {
3760 		dsl_dataset_t *ds;
3761 		struct promotenode *snap;
3762 		int err;
3763 
3764 		err = dsl_dataset_hold_obj(dp, obj, tag, &ds);
3765 		ASSERT(err != ENOENT);
3766 		if (err != 0)
3767 			return (err);
3768 
3769 		if (first_obj == 0)
3770 			first_obj = dsl_dir_phys(ds->ds_dir)->dd_origin_obj;
3771 
3772 		snap = kmem_alloc(sizeof (*snap), KM_SLEEP);
3773 		snap->ds = ds;
3774 		list_insert_tail(l, snap);
3775 		obj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
3776 	}
3777 
3778 	return (0);
3779 }
3780 
3781 static int
snaplist_space(list_t * l,uint64_t mintxg,uint64_t * spacep)3782 snaplist_space(list_t *l, uint64_t mintxg, uint64_t *spacep)
3783 {
3784 	struct promotenode *snap;
3785 
3786 	*spacep = 0;
3787 	for (snap = list_head(l); snap; snap = list_next(l, snap)) {
3788 		uint64_t used, comp, uncomp;
3789 		dsl_deadlist_space_range(&snap->ds->ds_deadlist,
3790 		    mintxg, UINT64_MAX, &used, &comp, &uncomp);
3791 		*spacep += used;
3792 	}
3793 	return (0);
3794 }
3795 
3796 static void
snaplist_destroy(list_t * l,void * tag)3797 snaplist_destroy(list_t *l, void *tag)
3798 {
3799 	struct promotenode *snap;
3800 
3801 	if (l == NULL || !list_link_active(&l->list_head))
3802 		return;
3803 
3804 	while ((snap = list_tail(l)) != NULL) {
3805 		list_remove(l, snap);
3806 		dsl_dataset_rele(snap->ds, tag);
3807 		kmem_free(snap, sizeof (*snap));
3808 	}
3809 	list_destroy(l);
3810 }
3811 
3812 static int
promote_hold(dsl_dataset_promote_arg_t * ddpa,dsl_pool_t * dp,void * tag)3813 promote_hold(dsl_dataset_promote_arg_t *ddpa, dsl_pool_t *dp, void *tag)
3814 {
3815 	int error;
3816 	dsl_dir_t *dd;
3817 	struct promotenode *snap;
3818 
3819 	error = dsl_dataset_hold(dp, ddpa->ddpa_clonename, tag,
3820 	    &ddpa->ddpa_clone);
3821 	if (error != 0)
3822 		return (error);
3823 	dd = ddpa->ddpa_clone->ds_dir;
3824 
3825 	if (ddpa->ddpa_clone->ds_is_snapshot ||
3826 	    !dsl_dir_is_clone(dd)) {
3827 		dsl_dataset_rele(ddpa->ddpa_clone, tag);
3828 		return (SET_ERROR(EINVAL));
3829 	}
3830 
3831 	error = snaplist_make(dp, 0, dsl_dir_phys(dd)->dd_origin_obj,
3832 	    &ddpa->shared_snaps, tag);
3833 	if (error != 0)
3834 		goto out;
3835 
3836 	error = snaplist_make(dp, 0, ddpa->ddpa_clone->ds_object,
3837 	    &ddpa->clone_snaps, tag);
3838 	if (error != 0)
3839 		goto out;
3840 
3841 	snap = list_head(&ddpa->shared_snaps);
3842 	ASSERT3U(snap->ds->ds_object, ==, dsl_dir_phys(dd)->dd_origin_obj);
3843 	error = snaplist_make(dp, dsl_dir_phys(dd)->dd_origin_obj,
3844 	    dsl_dir_phys(snap->ds->ds_dir)->dd_head_dataset_obj,
3845 	    &ddpa->origin_snaps, tag);
3846 	if (error != 0)
3847 		goto out;
3848 
3849 	if (dsl_dir_phys(snap->ds->ds_dir)->dd_origin_obj != 0) {
3850 		error = dsl_dataset_hold_obj(dp,
3851 		    dsl_dir_phys(snap->ds->ds_dir)->dd_origin_obj,
3852 		    tag, &ddpa->origin_origin);
3853 		if (error != 0)
3854 			goto out;
3855 	}
3856 out:
3857 	if (error != 0)
3858 		promote_rele(ddpa, tag);
3859 	return (error);
3860 }
3861 
3862 static void
promote_rele(dsl_dataset_promote_arg_t * ddpa,void * tag)3863 promote_rele(dsl_dataset_promote_arg_t *ddpa, void *tag)
3864 {
3865 	snaplist_destroy(&ddpa->shared_snaps, tag);
3866 	snaplist_destroy(&ddpa->clone_snaps, tag);
3867 	snaplist_destroy(&ddpa->origin_snaps, tag);
3868 	if (ddpa->origin_origin != NULL)
3869 		dsl_dataset_rele(ddpa->origin_origin, tag);
3870 	dsl_dataset_rele(ddpa->ddpa_clone, tag);
3871 }
3872 
3873 /*
3874  * Promote a clone.
3875  *
3876  * If it fails due to a conflicting snapshot name, "conflsnap" will be filled
3877  * in with the name.  (It must be at least ZFS_MAX_DATASET_NAME_LEN bytes long.)
3878  */
3879 int
dsl_dataset_promote(const char * name,char * conflsnap)3880 dsl_dataset_promote(const char *name, char *conflsnap)
3881 {
3882 	dsl_dataset_promote_arg_t ddpa = { 0 };
3883 	uint64_t numsnaps;
3884 	int error;
3885 	nvpair_t *snap_pair;
3886 	objset_t *os;
3887 
3888 	/*
3889 	 * We will modify space proportional to the number of
3890 	 * snapshots.  Compute numsnaps.
3891 	 */
3892 	error = dmu_objset_hold(name, FTAG, &os);
3893 	if (error != 0)
3894 		return (error);
3895 	error = zap_count(dmu_objset_pool(os)->dp_meta_objset,
3896 	    dsl_dataset_phys(dmu_objset_ds(os))->ds_snapnames_zapobj,
3897 	    &numsnaps);
3898 	dmu_objset_rele(os, FTAG);
3899 	if (error != 0)
3900 		return (error);
3901 
3902 	ddpa.ddpa_clonename = name;
3903 	ddpa.err_ds = fnvlist_alloc();
3904 	ddpa.cr = CRED();
3905 	ddpa.proc = curproc;
3906 
3907 	error = dsl_sync_task(name, dsl_dataset_promote_check,
3908 	    dsl_dataset_promote_sync, &ddpa,
3909 	    2 + numsnaps, ZFS_SPACE_CHECK_RESERVED);
3910 
3911 	/*
3912 	 * Return the first conflicting snapshot found.
3913 	 */
3914 	snap_pair = nvlist_next_nvpair(ddpa.err_ds, NULL);
3915 	if (snap_pair != NULL && conflsnap != NULL)
3916 		(void) strlcpy(conflsnap, nvpair_name(snap_pair),
3917 		    ZFS_MAX_DATASET_NAME_LEN);
3918 
3919 	fnvlist_free(ddpa.err_ds);
3920 	return (error);
3921 }
3922 
3923 int
dsl_dataset_clone_swap_check_impl(dsl_dataset_t * clone,dsl_dataset_t * origin_head,boolean_t force,void * owner,dmu_tx_t * tx)3924 dsl_dataset_clone_swap_check_impl(dsl_dataset_t *clone,
3925     dsl_dataset_t *origin_head, boolean_t force, void *owner, dmu_tx_t *tx)
3926 {
3927 	/*
3928 	 * "slack" factor for received datasets with refquota set on them.
3929 	 * See the bottom of this function for details on its use.
3930 	 */
3931 	uint64_t refquota_slack = (uint64_t)DMU_MAX_ACCESS *
3932 	    spa_asize_inflation;
3933 	int64_t unused_refres_delta;
3934 
3935 	/* they should both be heads */
3936 	if (clone->ds_is_snapshot ||
3937 	    origin_head->ds_is_snapshot)
3938 		return (SET_ERROR(EINVAL));
3939 
3940 	/* if we are not forcing, the branch point should be just before them */
3941 	if (!force && clone->ds_prev != origin_head->ds_prev)
3942 		return (SET_ERROR(EINVAL));
3943 
3944 	/* clone should be the clone (unless they are unrelated) */
3945 	if (clone->ds_prev != NULL &&
3946 	    clone->ds_prev != clone->ds_dir->dd_pool->dp_origin_snap &&
3947 	    origin_head->ds_dir != clone->ds_prev->ds_dir)
3948 		return (SET_ERROR(EINVAL));
3949 
3950 	/* the clone should be a child of the origin */
3951 	if (clone->ds_dir->dd_parent != origin_head->ds_dir)
3952 		return (SET_ERROR(EINVAL));
3953 
3954 	/* origin_head shouldn't be modified unless 'force' */
3955 	if (!force &&
3956 	    dsl_dataset_modified_since_snap(origin_head, origin_head->ds_prev))
3957 		return (SET_ERROR(ETXTBSY));
3958 
3959 	/* origin_head should have no long holds (e.g. is not mounted) */
3960 	if (dsl_dataset_handoff_check(origin_head, owner, tx))
3961 		return (SET_ERROR(EBUSY));
3962 
3963 	/* check amount of any unconsumed refreservation */
3964 	unused_refres_delta =
3965 	    (int64_t)MIN(origin_head->ds_reserved,
3966 	    dsl_dataset_phys(origin_head)->ds_unique_bytes) -
3967 	    (int64_t)MIN(origin_head->ds_reserved,
3968 	    dsl_dataset_phys(clone)->ds_unique_bytes);
3969 
3970 	if (unused_refres_delta > 0 &&
3971 	    unused_refres_delta >
3972 	    dsl_dir_space_available(origin_head->ds_dir, NULL, 0, TRUE))
3973 		return (SET_ERROR(ENOSPC));
3974 
3975 	/*
3976 	 * The clone can't be too much over the head's refquota.
3977 	 *
3978 	 * To ensure that the entire refquota can be used, we allow one
3979 	 * transaction to exceed the refquota.  Therefore, this check
3980 	 * needs to also allow for the space referenced to be more than the
3981 	 * refquota.  The maximum amount of space that one transaction can use
3982 	 * on disk is DMU_MAX_ACCESS * spa_asize_inflation.  Allowing this
3983 	 * overage ensures that we are able to receive a filesystem that
3984 	 * exceeds the refquota on the source system.
3985 	 *
3986 	 * So that overage is the refquota_slack we use below.
3987 	 */
3988 	if (origin_head->ds_quota != 0 &&
3989 	    dsl_dataset_phys(clone)->ds_referenced_bytes >
3990 	    origin_head->ds_quota + refquota_slack)
3991 		return (SET_ERROR(EDQUOT));
3992 
3993 	return (0);
3994 }
3995 
3996 static void
dsl_dataset_swap_remap_deadlists(dsl_dataset_t * clone,dsl_dataset_t * origin,dmu_tx_t * tx)3997 dsl_dataset_swap_remap_deadlists(dsl_dataset_t *clone,
3998     dsl_dataset_t *origin, dmu_tx_t *tx)
3999 {
4000 	uint64_t clone_remap_dl_obj, origin_remap_dl_obj;
4001 	dsl_pool_t *dp = dmu_tx_pool(tx);
4002 
4003 	ASSERT(dsl_pool_sync_context(dp));
4004 
4005 	clone_remap_dl_obj = dsl_dataset_get_remap_deadlist_object(clone);
4006 	origin_remap_dl_obj = dsl_dataset_get_remap_deadlist_object(origin);
4007 
4008 	if (clone_remap_dl_obj != 0) {
4009 		dsl_deadlist_close(&clone->ds_remap_deadlist);
4010 		dsl_dataset_unset_remap_deadlist_object(clone, tx);
4011 	}
4012 	if (origin_remap_dl_obj != 0) {
4013 		dsl_deadlist_close(&origin->ds_remap_deadlist);
4014 		dsl_dataset_unset_remap_deadlist_object(origin, tx);
4015 	}
4016 
4017 	if (clone_remap_dl_obj != 0) {
4018 		dsl_dataset_set_remap_deadlist_object(origin,
4019 		    clone_remap_dl_obj, tx);
4020 		dsl_deadlist_open(&origin->ds_remap_deadlist,
4021 		    dp->dp_meta_objset, clone_remap_dl_obj);
4022 	}
4023 	if (origin_remap_dl_obj != 0) {
4024 		dsl_dataset_set_remap_deadlist_object(clone,
4025 		    origin_remap_dl_obj, tx);
4026 		dsl_deadlist_open(&clone->ds_remap_deadlist,
4027 		    dp->dp_meta_objset, origin_remap_dl_obj);
4028 	}
4029 }
4030 
4031 void
dsl_dataset_clone_swap_sync_impl(dsl_dataset_t * clone,dsl_dataset_t * origin_head,dmu_tx_t * tx)4032 dsl_dataset_clone_swap_sync_impl(dsl_dataset_t *clone,
4033     dsl_dataset_t *origin_head, dmu_tx_t *tx)
4034 {
4035 	dsl_pool_t *dp = dmu_tx_pool(tx);
4036 	int64_t unused_refres_delta;
4037 
4038 	ASSERT(clone->ds_reserved == 0);
4039 	/*
4040 	 * NOTE: On DEBUG kernels there could be a race between this and
4041 	 * the check function if spa_asize_inflation is adjusted...
4042 	 */
4043 	ASSERT(origin_head->ds_quota == 0 ||
4044 	    dsl_dataset_phys(clone)->ds_unique_bytes <= origin_head->ds_quota +
4045 	    DMU_MAX_ACCESS * spa_asize_inflation);
4046 	ASSERT3P(clone->ds_prev, ==, origin_head->ds_prev);
4047 
4048 	dsl_dir_cancel_waiters(origin_head->ds_dir);
4049 
4050 	/*
4051 	 * Swap per-dataset feature flags.
4052 	 */
4053 	for (spa_feature_t f = 0; f < SPA_FEATURES; f++) {
4054 		if (!(spa_feature_table[f].fi_flags &
4055 		    ZFEATURE_FLAG_PER_DATASET)) {
4056 			ASSERT(!dsl_dataset_feature_is_active(clone, f));
4057 			ASSERT(!dsl_dataset_feature_is_active(origin_head, f));
4058 			continue;
4059 		}
4060 
4061 		boolean_t clone_inuse = dsl_dataset_feature_is_active(clone, f);
4062 		void *clone_feature = clone->ds_feature[f];
4063 		boolean_t origin_head_inuse =
4064 		    dsl_dataset_feature_is_active(origin_head, f);
4065 		void *origin_head_feature = origin_head->ds_feature[f];
4066 
4067 		if (clone_inuse)
4068 			dsl_dataset_deactivate_feature_impl(clone, f, tx);
4069 		if (origin_head_inuse)
4070 			dsl_dataset_deactivate_feature_impl(origin_head, f, tx);
4071 
4072 		if (clone_inuse) {
4073 			dsl_dataset_activate_feature(origin_head->ds_object, f,
4074 			    clone_feature, tx);
4075 			origin_head->ds_feature[f] = clone_feature;
4076 		}
4077 		if (origin_head_inuse) {
4078 			dsl_dataset_activate_feature(clone->ds_object, f,
4079 			    origin_head_feature, tx);
4080 			clone->ds_feature[f] = origin_head_feature;
4081 		}
4082 	}
4083 
4084 	dmu_buf_will_dirty(clone->ds_dbuf, tx);
4085 	dmu_buf_will_dirty(origin_head->ds_dbuf, tx);
4086 
4087 	if (clone->ds_objset != NULL) {
4088 		dmu_objset_evict(clone->ds_objset);
4089 		clone->ds_objset = NULL;
4090 	}
4091 
4092 	if (origin_head->ds_objset != NULL) {
4093 		dmu_objset_evict(origin_head->ds_objset);
4094 		origin_head->ds_objset = NULL;
4095 	}
4096 
4097 	unused_refres_delta =
4098 	    (int64_t)MIN(origin_head->ds_reserved,
4099 	    dsl_dataset_phys(origin_head)->ds_unique_bytes) -
4100 	    (int64_t)MIN(origin_head->ds_reserved,
4101 	    dsl_dataset_phys(clone)->ds_unique_bytes);
4102 
4103 	/*
4104 	 * Reset origin's unique bytes.
4105 	 */
4106 	{
4107 		dsl_dataset_t *origin = clone->ds_prev;
4108 		uint64_t comp, uncomp;
4109 
4110 		dmu_buf_will_dirty(origin->ds_dbuf, tx);
4111 		dsl_deadlist_space_range(&clone->ds_deadlist,
4112 		    dsl_dataset_phys(origin)->ds_prev_snap_txg, UINT64_MAX,
4113 		    &dsl_dataset_phys(origin)->ds_unique_bytes, &comp, &uncomp);
4114 	}
4115 
4116 	/* swap blkptrs */
4117 	{
4118 		rrw_enter(&clone->ds_bp_rwlock, RW_WRITER, FTAG);
4119 		rrw_enter(&origin_head->ds_bp_rwlock, RW_WRITER, FTAG);
4120 		blkptr_t tmp;
4121 		tmp = dsl_dataset_phys(origin_head)->ds_bp;
4122 		dsl_dataset_phys(origin_head)->ds_bp =
4123 		    dsl_dataset_phys(clone)->ds_bp;
4124 		dsl_dataset_phys(clone)->ds_bp = tmp;
4125 		rrw_exit(&origin_head->ds_bp_rwlock, FTAG);
4126 		rrw_exit(&clone->ds_bp_rwlock, FTAG);
4127 	}
4128 
4129 	/* set dd_*_bytes */
4130 	{
4131 		int64_t dused, dcomp, duncomp;
4132 		uint64_t cdl_used, cdl_comp, cdl_uncomp;
4133 		uint64_t odl_used, odl_comp, odl_uncomp;
4134 
4135 		ASSERT3U(dsl_dir_phys(clone->ds_dir)->
4136 		    dd_used_breakdown[DD_USED_SNAP], ==, 0);
4137 
4138 		dsl_deadlist_space(&clone->ds_deadlist,
4139 		    &cdl_used, &cdl_comp, &cdl_uncomp);
4140 		dsl_deadlist_space(&origin_head->ds_deadlist,
4141 		    &odl_used, &odl_comp, &odl_uncomp);
4142 
4143 		dused = dsl_dataset_phys(clone)->ds_referenced_bytes +
4144 		    cdl_used -
4145 		    (dsl_dataset_phys(origin_head)->ds_referenced_bytes +
4146 		    odl_used);
4147 		dcomp = dsl_dataset_phys(clone)->ds_compressed_bytes +
4148 		    cdl_comp -
4149 		    (dsl_dataset_phys(origin_head)->ds_compressed_bytes +
4150 		    odl_comp);
4151 		duncomp = dsl_dataset_phys(clone)->ds_uncompressed_bytes +
4152 		    cdl_uncomp -
4153 		    (dsl_dataset_phys(origin_head)->ds_uncompressed_bytes +
4154 		    odl_uncomp);
4155 
4156 		dsl_dir_diduse_space(origin_head->ds_dir, DD_USED_HEAD,
4157 		    dused, dcomp, duncomp, tx);
4158 		dsl_dir_diduse_space(clone->ds_dir, DD_USED_HEAD,
4159 		    -dused, -dcomp, -duncomp, tx);
4160 
4161 		/*
4162 		 * The difference in the space used by snapshots is the
4163 		 * difference in snapshot space due to the head's
4164 		 * deadlist (since that's the only thing that's
4165 		 * changing that affects the snapused).
4166 		 */
4167 		dsl_deadlist_space_range(&clone->ds_deadlist,
4168 		    origin_head->ds_dir->dd_origin_txg, UINT64_MAX,
4169 		    &cdl_used, &cdl_comp, &cdl_uncomp);
4170 		dsl_deadlist_space_range(&origin_head->ds_deadlist,
4171 		    origin_head->ds_dir->dd_origin_txg, UINT64_MAX,
4172 		    &odl_used, &odl_comp, &odl_uncomp);
4173 		dsl_dir_transfer_space(origin_head->ds_dir, cdl_used - odl_used,
4174 		    DD_USED_HEAD, DD_USED_SNAP, tx);
4175 	}
4176 
4177 	/* swap ds_*_bytes */
4178 	SWITCH64(dsl_dataset_phys(origin_head)->ds_referenced_bytes,
4179 	    dsl_dataset_phys(clone)->ds_referenced_bytes);
4180 	SWITCH64(dsl_dataset_phys(origin_head)->ds_compressed_bytes,
4181 	    dsl_dataset_phys(clone)->ds_compressed_bytes);
4182 	SWITCH64(dsl_dataset_phys(origin_head)->ds_uncompressed_bytes,
4183 	    dsl_dataset_phys(clone)->ds_uncompressed_bytes);
4184 	SWITCH64(dsl_dataset_phys(origin_head)->ds_unique_bytes,
4185 	    dsl_dataset_phys(clone)->ds_unique_bytes);
4186 
4187 	/* apply any parent delta for change in unconsumed refreservation */
4188 	dsl_dir_diduse_space(origin_head->ds_dir, DD_USED_REFRSRV,
4189 	    unused_refres_delta, 0, 0, tx);
4190 
4191 	/*
4192 	 * Swap deadlists.
4193 	 */
4194 	dsl_deadlist_close(&clone->ds_deadlist);
4195 	dsl_deadlist_close(&origin_head->ds_deadlist);
4196 	SWITCH64(dsl_dataset_phys(origin_head)->ds_deadlist_obj,
4197 	    dsl_dataset_phys(clone)->ds_deadlist_obj);
4198 	dsl_deadlist_open(&clone->ds_deadlist, dp->dp_meta_objset,
4199 	    dsl_dataset_phys(clone)->ds_deadlist_obj);
4200 	dsl_deadlist_open(&origin_head->ds_deadlist, dp->dp_meta_objset,
4201 	    dsl_dataset_phys(origin_head)->ds_deadlist_obj);
4202 	dsl_dataset_swap_remap_deadlists(clone, origin_head, tx);
4203 
4204 	/*
4205 	 * If there is a bookmark at the origin, its "next dataset" is
4206 	 * changing, so we need to reset its FBN.
4207 	 */
4208 	dsl_bookmark_next_changed(origin_head, origin_head->ds_prev, tx);
4209 
4210 	dsl_scan_ds_clone_swapped(origin_head, clone, tx);
4211 
4212 	/*
4213 	 * Destroy any livelists associated with the clone or the origin,
4214 	 * since after the swap the corresponding livelists are no longer
4215 	 * valid.
4216 	 */
4217 	dsl_dir_remove_livelist(clone->ds_dir, tx, B_TRUE);
4218 	dsl_dir_remove_livelist(origin_head->ds_dir, tx, B_TRUE);
4219 
4220 	spa_history_log_internal_ds(clone, "clone swap", tx,
4221 	    "parent=%s", origin_head->ds_dir->dd_myname);
4222 }
4223 
4224 /*
4225  * Given a pool name and a dataset object number in that pool,
4226  * return the name of that dataset.
4227  */
4228 int
dsl_dsobj_to_dsname(char * pname,uint64_t obj,char * buf)4229 dsl_dsobj_to_dsname(char *pname, uint64_t obj, char *buf)
4230 {
4231 	dsl_pool_t *dp;
4232 	dsl_dataset_t *ds;
4233 	int error;
4234 
4235 	error = dsl_pool_hold(pname, FTAG, &dp);
4236 	if (error != 0)
4237 		return (error);
4238 
4239 	error = dsl_dataset_hold_obj(dp, obj, FTAG, &ds);
4240 	if (error == 0) {
4241 		dsl_dataset_name(ds, buf);
4242 		dsl_dataset_rele(ds, FTAG);
4243 	}
4244 	dsl_pool_rele(dp, FTAG);
4245 
4246 	return (error);
4247 }
4248 
4249 int
dsl_dataset_check_quota(dsl_dataset_t * ds,boolean_t check_quota,uint64_t asize,uint64_t inflight,uint64_t * used,uint64_t * ref_rsrv)4250 dsl_dataset_check_quota(dsl_dataset_t *ds, boolean_t check_quota,
4251     uint64_t asize, uint64_t inflight, uint64_t *used, uint64_t *ref_rsrv)
4252 {
4253 	int error = 0;
4254 
4255 	ASSERT3S(asize, >, 0);
4256 
4257 	/*
4258 	 * *ref_rsrv is the portion of asize that will come from any
4259 	 * unconsumed refreservation space.
4260 	 */
4261 	*ref_rsrv = 0;
4262 
4263 	mutex_enter(&ds->ds_lock);
4264 	/*
4265 	 * Make a space adjustment for reserved bytes.
4266 	 */
4267 	if (ds->ds_reserved > dsl_dataset_phys(ds)->ds_unique_bytes) {
4268 		ASSERT3U(*used, >=,
4269 		    ds->ds_reserved - dsl_dataset_phys(ds)->ds_unique_bytes);
4270 		*used -=
4271 		    (ds->ds_reserved - dsl_dataset_phys(ds)->ds_unique_bytes);
4272 		*ref_rsrv =
4273 		    asize - MIN(asize, parent_delta(ds, asize + inflight));
4274 	}
4275 
4276 	if (!check_quota || ds->ds_quota == 0) {
4277 		mutex_exit(&ds->ds_lock);
4278 		return (0);
4279 	}
4280 	/*
4281 	 * If they are requesting more space, and our current estimate
4282 	 * is over quota, they get to try again unless the actual
4283 	 * on-disk is over quota and there are no pending changes (which
4284 	 * may free up space for us).
4285 	 */
4286 	if (dsl_dataset_phys(ds)->ds_referenced_bytes + inflight >=
4287 	    ds->ds_quota) {
4288 		if (inflight > 0 ||
4289 		    dsl_dataset_phys(ds)->ds_referenced_bytes < ds->ds_quota)
4290 			error = SET_ERROR(ERESTART);
4291 		else
4292 			error = SET_ERROR(EDQUOT);
4293 	}
4294 	mutex_exit(&ds->ds_lock);
4295 
4296 	return (error);
4297 }
4298 
4299 typedef struct dsl_dataset_set_qr_arg {
4300 	const char *ddsqra_name;
4301 	zprop_source_t ddsqra_source;
4302 	uint64_t ddsqra_value;
4303 } dsl_dataset_set_qr_arg_t;
4304 
4305 
4306 static int
dsl_dataset_set_refquota_check(void * arg,dmu_tx_t * tx)4307 dsl_dataset_set_refquota_check(void *arg, dmu_tx_t *tx)
4308 {
4309 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
4310 	dsl_pool_t *dp = dmu_tx_pool(tx);
4311 	dsl_dataset_t *ds;
4312 	int error;
4313 	uint64_t newval;
4314 
4315 	if (spa_version(dp->dp_spa) < SPA_VERSION_REFQUOTA)
4316 		return (SET_ERROR(ENOTSUP));
4317 
4318 	error = dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds);
4319 	if (error != 0)
4320 		return (error);
4321 
4322 	if (ds->ds_is_snapshot) {
4323 		dsl_dataset_rele(ds, FTAG);
4324 		return (SET_ERROR(EINVAL));
4325 	}
4326 
4327 	error = dsl_prop_predict(ds->ds_dir,
4328 	    zfs_prop_to_name(ZFS_PROP_REFQUOTA),
4329 	    ddsqra->ddsqra_source, ddsqra->ddsqra_value, &newval);
4330 	if (error != 0) {
4331 		dsl_dataset_rele(ds, FTAG);
4332 		return (error);
4333 	}
4334 
4335 	if (newval == 0) {
4336 		dsl_dataset_rele(ds, FTAG);
4337 		return (0);
4338 	}
4339 
4340 	if (newval < dsl_dataset_phys(ds)->ds_referenced_bytes ||
4341 	    newval < ds->ds_reserved) {
4342 		dsl_dataset_rele(ds, FTAG);
4343 		return (SET_ERROR(ENOSPC));
4344 	}
4345 
4346 	dsl_dataset_rele(ds, FTAG);
4347 	return (0);
4348 }
4349 
4350 static void
dsl_dataset_set_refquota_sync(void * arg,dmu_tx_t * tx)4351 dsl_dataset_set_refquota_sync(void *arg, dmu_tx_t *tx)
4352 {
4353 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
4354 	dsl_pool_t *dp = dmu_tx_pool(tx);
4355 	dsl_dataset_t *ds = NULL;
4356 	uint64_t newval;
4357 
4358 	VERIFY0(dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds));
4359 
4360 	dsl_prop_set_sync_impl(ds,
4361 	    zfs_prop_to_name(ZFS_PROP_REFQUOTA),
4362 	    ddsqra->ddsqra_source, sizeof (ddsqra->ddsqra_value), 1,
4363 	    &ddsqra->ddsqra_value, tx);
4364 
4365 	VERIFY0(dsl_prop_get_int_ds(ds,
4366 	    zfs_prop_to_name(ZFS_PROP_REFQUOTA), &newval));
4367 
4368 	if (ds->ds_quota != newval) {
4369 		dmu_buf_will_dirty(ds->ds_dbuf, tx);
4370 		ds->ds_quota = newval;
4371 	}
4372 	dsl_dataset_rele(ds, FTAG);
4373 }
4374 
4375 int
dsl_dataset_set_refquota(const char * dsname,zprop_source_t source,uint64_t refquota)4376 dsl_dataset_set_refquota(const char *dsname, zprop_source_t source,
4377     uint64_t refquota)
4378 {
4379 	dsl_dataset_set_qr_arg_t ddsqra;
4380 
4381 	ddsqra.ddsqra_name = dsname;
4382 	ddsqra.ddsqra_source = source;
4383 	ddsqra.ddsqra_value = refquota;
4384 
4385 	return (dsl_sync_task(dsname, dsl_dataset_set_refquota_check,
4386 	    dsl_dataset_set_refquota_sync, &ddsqra, 0,
4387 	    ZFS_SPACE_CHECK_EXTRA_RESERVED));
4388 }
4389 
4390 static int
dsl_dataset_set_refreservation_check(void * arg,dmu_tx_t * tx)4391 dsl_dataset_set_refreservation_check(void *arg, dmu_tx_t *tx)
4392 {
4393 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
4394 	dsl_pool_t *dp = dmu_tx_pool(tx);
4395 	dsl_dataset_t *ds;
4396 	int error;
4397 	uint64_t newval, unique;
4398 
4399 	if (spa_version(dp->dp_spa) < SPA_VERSION_REFRESERVATION)
4400 		return (SET_ERROR(ENOTSUP));
4401 
4402 	error = dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds);
4403 	if (error != 0)
4404 		return (error);
4405 
4406 	if (ds->ds_is_snapshot) {
4407 		dsl_dataset_rele(ds, FTAG);
4408 		return (SET_ERROR(EINVAL));
4409 	}
4410 
4411 	error = dsl_prop_predict(ds->ds_dir,
4412 	    zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
4413 	    ddsqra->ddsqra_source, ddsqra->ddsqra_value, &newval);
4414 	if (error != 0) {
4415 		dsl_dataset_rele(ds, FTAG);
4416 		return (error);
4417 	}
4418 
4419 	/*
4420 	 * If we are doing the preliminary check in open context, the
4421 	 * space estimates may be inaccurate.
4422 	 */
4423 	if (!dmu_tx_is_syncing(tx)) {
4424 		dsl_dataset_rele(ds, FTAG);
4425 		return (0);
4426 	}
4427 
4428 	mutex_enter(&ds->ds_lock);
4429 	if (!DS_UNIQUE_IS_ACCURATE(ds))
4430 		dsl_dataset_recalc_head_uniq(ds);
4431 	unique = dsl_dataset_phys(ds)->ds_unique_bytes;
4432 	mutex_exit(&ds->ds_lock);
4433 
4434 	if (MAX(unique, newval) > MAX(unique, ds->ds_reserved)) {
4435 		uint64_t delta = MAX(unique, newval) -
4436 		    MAX(unique, ds->ds_reserved);
4437 
4438 		if (delta >
4439 		    dsl_dir_space_available(ds->ds_dir, NULL, 0, B_TRUE) ||
4440 		    (ds->ds_quota > 0 && newval > ds->ds_quota)) {
4441 			dsl_dataset_rele(ds, FTAG);
4442 			return (SET_ERROR(ENOSPC));
4443 		}
4444 	}
4445 
4446 	dsl_dataset_rele(ds, FTAG);
4447 	return (0);
4448 }
4449 
4450 void
dsl_dataset_set_refreservation_sync_impl(dsl_dataset_t * ds,zprop_source_t source,uint64_t value,dmu_tx_t * tx)4451 dsl_dataset_set_refreservation_sync_impl(dsl_dataset_t *ds,
4452     zprop_source_t source, uint64_t value, dmu_tx_t *tx)
4453 {
4454 	uint64_t newval;
4455 	uint64_t unique;
4456 	int64_t delta;
4457 
4458 	dsl_prop_set_sync_impl(ds, zfs_prop_to_name(ZFS_PROP_REFRESERVATION),
4459 	    source, sizeof (value), 1, &value, tx);
4460 
4461 	VERIFY0(dsl_prop_get_int_ds(ds,
4462 	    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), &newval));
4463 
4464 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
4465 	mutex_enter(&ds->ds_dir->dd_lock);
4466 	mutex_enter(&ds->ds_lock);
4467 	ASSERT(DS_UNIQUE_IS_ACCURATE(ds));
4468 	unique = dsl_dataset_phys(ds)->ds_unique_bytes;
4469 	delta = MAX(0, (int64_t)(newval - unique)) -
4470 	    MAX(0, (int64_t)(ds->ds_reserved - unique));
4471 	ds->ds_reserved = newval;
4472 	mutex_exit(&ds->ds_lock);
4473 
4474 	dsl_dir_diduse_space(ds->ds_dir, DD_USED_REFRSRV, delta, 0, 0, tx);
4475 	mutex_exit(&ds->ds_dir->dd_lock);
4476 }
4477 
4478 static void
dsl_dataset_set_refreservation_sync(void * arg,dmu_tx_t * tx)4479 dsl_dataset_set_refreservation_sync(void *arg, dmu_tx_t *tx)
4480 {
4481 	dsl_dataset_set_qr_arg_t *ddsqra = arg;
4482 	dsl_pool_t *dp = dmu_tx_pool(tx);
4483 	dsl_dataset_t *ds = NULL;
4484 
4485 	VERIFY0(dsl_dataset_hold(dp, ddsqra->ddsqra_name, FTAG, &ds));
4486 	dsl_dataset_set_refreservation_sync_impl(ds,
4487 	    ddsqra->ddsqra_source, ddsqra->ddsqra_value, tx);
4488 	dsl_dataset_rele(ds, FTAG);
4489 }
4490 
4491 int
dsl_dataset_set_refreservation(const char * dsname,zprop_source_t source,uint64_t refreservation)4492 dsl_dataset_set_refreservation(const char *dsname, zprop_source_t source,
4493     uint64_t refreservation)
4494 {
4495 	dsl_dataset_set_qr_arg_t ddsqra;
4496 
4497 	ddsqra.ddsqra_name = dsname;
4498 	ddsqra.ddsqra_source = source;
4499 	ddsqra.ddsqra_value = refreservation;
4500 
4501 	return (dsl_sync_task(dsname, dsl_dataset_set_refreservation_check,
4502 	    dsl_dataset_set_refreservation_sync, &ddsqra, 0,
4503 	    ZFS_SPACE_CHECK_EXTRA_RESERVED));
4504 }
4505 
4506 typedef struct dsl_dataset_set_compression_arg {
4507 	const char *ddsca_name;
4508 	zprop_source_t ddsca_source;
4509 	uint64_t ddsca_value;
4510 } dsl_dataset_set_compression_arg_t;
4511 
4512 static int
dsl_dataset_set_compression_check(void * arg,dmu_tx_t * tx)4513 dsl_dataset_set_compression_check(void *arg, dmu_tx_t *tx)
4514 {
4515 	dsl_dataset_set_compression_arg_t *ddsca = arg;
4516 	dsl_pool_t *dp = dmu_tx_pool(tx);
4517 
4518 	uint64_t compval = ZIO_COMPRESS_ALGO(ddsca->ddsca_value);
4519 	spa_feature_t f = zio_compress_to_feature(compval);
4520 
4521 	if (f == SPA_FEATURE_NONE)
4522 		return (SET_ERROR(EINVAL));
4523 
4524 	if (!spa_feature_is_enabled(dp->dp_spa, f))
4525 		return (SET_ERROR(ENOTSUP));
4526 
4527 	return (0);
4528 }
4529 
4530 static void
dsl_dataset_set_compression_sync(void * arg,dmu_tx_t * tx)4531 dsl_dataset_set_compression_sync(void *arg, dmu_tx_t *tx)
4532 {
4533 	dsl_dataset_set_compression_arg_t *ddsca = arg;
4534 	dsl_pool_t *dp = dmu_tx_pool(tx);
4535 	dsl_dataset_t *ds = NULL;
4536 
4537 	uint64_t compval = ZIO_COMPRESS_ALGO(ddsca->ddsca_value);
4538 	spa_feature_t f = zio_compress_to_feature(compval);
4539 	ASSERT3S(spa_feature_table[f].fi_type, ==, ZFEATURE_TYPE_BOOLEAN);
4540 
4541 	VERIFY0(dsl_dataset_hold(dp, ddsca->ddsca_name, FTAG, &ds));
4542 	if (zfeature_active(f, ds->ds_feature[f]) != B_TRUE) {
4543 		ds->ds_feature_activation[f] = (void *)B_TRUE;
4544 		dsl_dataset_activate_feature(ds->ds_object, f,
4545 		    ds->ds_feature_activation[f], tx);
4546 		ds->ds_feature[f] = ds->ds_feature_activation[f];
4547 	}
4548 	dsl_dataset_rele(ds, FTAG);
4549 }
4550 
4551 int
dsl_dataset_set_compression(const char * dsname,zprop_source_t source,uint64_t compression)4552 dsl_dataset_set_compression(const char *dsname, zprop_source_t source,
4553     uint64_t compression)
4554 {
4555 	dsl_dataset_set_compression_arg_t ddsca;
4556 
4557 	/*
4558 	 * The sync task is only required for zstd in order to activate
4559 	 * the feature flag when the property is first set.
4560 	 */
4561 	if (ZIO_COMPRESS_ALGO(compression) != ZIO_COMPRESS_ZSTD)
4562 		return (0);
4563 
4564 	ddsca.ddsca_name = dsname;
4565 	ddsca.ddsca_source = source;
4566 	ddsca.ddsca_value = compression;
4567 
4568 	return (dsl_sync_task(dsname, dsl_dataset_set_compression_check,
4569 	    dsl_dataset_set_compression_sync, &ddsca, 0,
4570 	    ZFS_SPACE_CHECK_EXTRA_RESERVED));
4571 }
4572 
4573 /*
4574  * Return (in *usedp) the amount of space referenced by "new" that was not
4575  * referenced at the time the bookmark corresponds to.  "New" may be a
4576  * snapshot or a head.  The bookmark must be before new, in
4577  * new's filesystem (or its origin) -- caller verifies this.
4578  *
4579  * The written space is calculated by considering two components:  First, we
4580  * ignore any freed space, and calculate the written as new's used space
4581  * minus old's used space.  Next, we add in the amount of space that was freed
4582  * between the two time points, thus reducing new's used space relative to
4583  * old's. Specifically, this is the space that was born before
4584  * zbm_creation_txg, and freed before new (ie. on new's deadlist or a
4585  * previous deadlist).
4586  *
4587  * space freed                         [---------------------]
4588  * snapshots                       ---O-------O--------O-------O------
4589  *                                         bookmark           new
4590  *
4591  * Note, the bookmark's zbm_*_bytes_refd must be valid, but if the HAS_FBN
4592  * flag is not set, we will calculate the freed_before_next based on the
4593  * next snapshot's deadlist, rather than using zbm_*_freed_before_next_snap.
4594  */
4595 static int
dsl_dataset_space_written_impl(zfs_bookmark_phys_t * bmp,dsl_dataset_t * new,uint64_t * usedp,uint64_t * compp,uint64_t * uncompp)4596 dsl_dataset_space_written_impl(zfs_bookmark_phys_t *bmp,
4597     dsl_dataset_t *new, uint64_t *usedp, uint64_t *compp, uint64_t *uncompp)
4598 {
4599 	int err = 0;
4600 	dsl_pool_t *dp = new->ds_dir->dd_pool;
4601 
4602 	ASSERT(dsl_pool_config_held(dp));
4603 	if (dsl_dataset_is_snapshot(new)) {
4604 		ASSERT3U(bmp->zbm_creation_txg, <,
4605 		    dsl_dataset_phys(new)->ds_creation_txg);
4606 	}
4607 
4608 	*usedp = 0;
4609 	*usedp += dsl_dataset_phys(new)->ds_referenced_bytes;
4610 	*usedp -= bmp->zbm_referenced_bytes_refd;
4611 
4612 	*compp = 0;
4613 	*compp += dsl_dataset_phys(new)->ds_compressed_bytes;
4614 	*compp -= bmp->zbm_compressed_bytes_refd;
4615 
4616 	*uncompp = 0;
4617 	*uncompp += dsl_dataset_phys(new)->ds_uncompressed_bytes;
4618 	*uncompp -= bmp->zbm_uncompressed_bytes_refd;
4619 
4620 	dsl_dataset_t *snap = new;
4621 
4622 	while (dsl_dataset_phys(snap)->ds_prev_snap_txg >
4623 	    bmp->zbm_creation_txg) {
4624 		uint64_t used, comp, uncomp;
4625 
4626 		dsl_deadlist_space_range(&snap->ds_deadlist,
4627 		    0, bmp->zbm_creation_txg,
4628 		    &used, &comp, &uncomp);
4629 		*usedp += used;
4630 		*compp += comp;
4631 		*uncompp += uncomp;
4632 
4633 		uint64_t snapobj = dsl_dataset_phys(snap)->ds_prev_snap_obj;
4634 		if (snap != new)
4635 			dsl_dataset_rele(snap, FTAG);
4636 		err = dsl_dataset_hold_obj(dp, snapobj, FTAG, &snap);
4637 		if (err != 0)
4638 			break;
4639 	}
4640 
4641 	/*
4642 	 * We might not have the FBN if we are calculating written from
4643 	 * a snapshot (because we didn't know the correct "next" snapshot
4644 	 * until now).
4645 	 */
4646 	if (bmp->zbm_flags & ZBM_FLAG_HAS_FBN) {
4647 		*usedp += bmp->zbm_referenced_freed_before_next_snap;
4648 		*compp += bmp->zbm_compressed_freed_before_next_snap;
4649 		*uncompp += bmp->zbm_uncompressed_freed_before_next_snap;
4650 	} else {
4651 		ASSERT3U(dsl_dataset_phys(snap)->ds_prev_snap_txg, ==,
4652 		    bmp->zbm_creation_txg);
4653 		uint64_t used, comp, uncomp;
4654 		dsl_deadlist_space(&snap->ds_deadlist, &used, &comp, &uncomp);
4655 		*usedp += used;
4656 		*compp += comp;
4657 		*uncompp += uncomp;
4658 	}
4659 	if (snap != new)
4660 		dsl_dataset_rele(snap, FTAG);
4661 	return (err);
4662 }
4663 
4664 /*
4665  * Return (in *usedp) the amount of space written in new that was not
4666  * present at the time the bookmark corresponds to.  New may be a
4667  * snapshot or the head.  Old must be a bookmark before new, in
4668  * new's filesystem (or its origin) -- caller verifies this.
4669  */
4670 int
dsl_dataset_space_written_bookmark(zfs_bookmark_phys_t * bmp,dsl_dataset_t * new,uint64_t * usedp,uint64_t * compp,uint64_t * uncompp)4671 dsl_dataset_space_written_bookmark(zfs_bookmark_phys_t *bmp,
4672     dsl_dataset_t *new, uint64_t *usedp, uint64_t *compp, uint64_t *uncompp)
4673 {
4674 	if (!(bmp->zbm_flags & ZBM_FLAG_HAS_FBN))
4675 		return (SET_ERROR(ENOTSUP));
4676 	return (dsl_dataset_space_written_impl(bmp, new,
4677 	    usedp, compp, uncompp));
4678 }
4679 
4680 /*
4681  * Return (in *usedp) the amount of space written in new that is not
4682  * present in oldsnap.  New may be a snapshot or the head.  Old must be
4683  * a snapshot before new, in new's filesystem (or its origin).  If not then
4684  * fail and return EINVAL.
4685  */
4686 int
dsl_dataset_space_written(dsl_dataset_t * oldsnap,dsl_dataset_t * new,uint64_t * usedp,uint64_t * compp,uint64_t * uncompp)4687 dsl_dataset_space_written(dsl_dataset_t *oldsnap, dsl_dataset_t *new,
4688     uint64_t *usedp, uint64_t *compp, uint64_t *uncompp)
4689 {
4690 	if (!dsl_dataset_is_before(new, oldsnap, 0))
4691 		return (SET_ERROR(EINVAL));
4692 
4693 	zfs_bookmark_phys_t zbm = { 0 };
4694 	dsl_dataset_phys_t *dsp = dsl_dataset_phys(oldsnap);
4695 	zbm.zbm_guid = dsp->ds_guid;
4696 	zbm.zbm_creation_txg = dsp->ds_creation_txg;
4697 	zbm.zbm_creation_time = dsp->ds_creation_time;
4698 	zbm.zbm_referenced_bytes_refd = dsp->ds_referenced_bytes;
4699 	zbm.zbm_compressed_bytes_refd = dsp->ds_compressed_bytes;
4700 	zbm.zbm_uncompressed_bytes_refd = dsp->ds_uncompressed_bytes;
4701 
4702 	/*
4703 	 * If oldsnap is the origin (or origin's origin, ...) of new,
4704 	 * we can't easily calculate the effective FBN.  Therefore,
4705 	 * we do not set ZBM_FLAG_HAS_FBN, so that the _impl will calculate
4706 	 * it relative to the correct "next": the next snapshot towards "new",
4707 	 * rather than the next snapshot in oldsnap's dsl_dir.
4708 	 */
4709 	return (dsl_dataset_space_written_impl(&zbm, new,
4710 	    usedp, compp, uncompp));
4711 }
4712 
4713 /*
4714  * Return (in *usedp) the amount of space that will be reclaimed if firstsnap,
4715  * lastsnap, and all snapshots in between are deleted.
4716  *
4717  * blocks that would be freed            [---------------------------]
4718  * snapshots                       ---O-------O--------O-------O--------O
4719  *                                        firstsnap        lastsnap
4720  *
4721  * This is the set of blocks that were born after the snap before firstsnap,
4722  * (birth > firstsnap->prev_snap_txg) and died before the snap after the
4723  * last snap (ie, is on lastsnap->ds_next->ds_deadlist or an earlier deadlist).
4724  * We calculate this by iterating over the relevant deadlists (from the snap
4725  * after lastsnap, backward to the snap after firstsnap), summing up the
4726  * space on the deadlist that was born after the snap before firstsnap.
4727  */
4728 int
dsl_dataset_space_wouldfree(dsl_dataset_t * firstsnap,dsl_dataset_t * lastsnap,uint64_t * usedp,uint64_t * compp,uint64_t * uncompp)4729 dsl_dataset_space_wouldfree(dsl_dataset_t *firstsnap,
4730     dsl_dataset_t *lastsnap,
4731     uint64_t *usedp, uint64_t *compp, uint64_t *uncompp)
4732 {
4733 	int err = 0;
4734 	uint64_t snapobj;
4735 	dsl_pool_t *dp = firstsnap->ds_dir->dd_pool;
4736 
4737 	ASSERT(firstsnap->ds_is_snapshot);
4738 	ASSERT(lastsnap->ds_is_snapshot);
4739 
4740 	/*
4741 	 * Check that the snapshots are in the same dsl_dir, and firstsnap
4742 	 * is before lastsnap.
4743 	 */
4744 	if (firstsnap->ds_dir != lastsnap->ds_dir ||
4745 	    dsl_dataset_phys(firstsnap)->ds_creation_txg >
4746 	    dsl_dataset_phys(lastsnap)->ds_creation_txg)
4747 		return (SET_ERROR(EINVAL));
4748 
4749 	*usedp = *compp = *uncompp = 0;
4750 
4751 	snapobj = dsl_dataset_phys(lastsnap)->ds_next_snap_obj;
4752 	while (snapobj != firstsnap->ds_object) {
4753 		dsl_dataset_t *ds;
4754 		uint64_t used, comp, uncomp;
4755 
4756 		err = dsl_dataset_hold_obj(dp, snapobj, FTAG, &ds);
4757 		if (err != 0)
4758 			break;
4759 
4760 		dsl_deadlist_space_range(&ds->ds_deadlist,
4761 		    dsl_dataset_phys(firstsnap)->ds_prev_snap_txg, UINT64_MAX,
4762 		    &used, &comp, &uncomp);
4763 		*usedp += used;
4764 		*compp += comp;
4765 		*uncompp += uncomp;
4766 
4767 		snapobj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
4768 		ASSERT3U(snapobj, !=, 0);
4769 		dsl_dataset_rele(ds, FTAG);
4770 	}
4771 	return (err);
4772 }
4773 
4774 /*
4775  * Return TRUE if 'earlier' is an earlier snapshot in 'later's timeline.
4776  * For example, they could both be snapshots of the same filesystem, and
4777  * 'earlier' is before 'later'.  Or 'earlier' could be the origin of
4778  * 'later's filesystem.  Or 'earlier' could be an older snapshot in the origin's
4779  * filesystem.  Or 'earlier' could be the origin's origin.
4780  *
4781  * If non-zero, earlier_txg is used instead of earlier's ds_creation_txg.
4782  */
4783 boolean_t
dsl_dataset_is_before(dsl_dataset_t * later,dsl_dataset_t * earlier,uint64_t earlier_txg)4784 dsl_dataset_is_before(dsl_dataset_t *later, dsl_dataset_t *earlier,
4785     uint64_t earlier_txg)
4786 {
4787 	dsl_pool_t *dp = later->ds_dir->dd_pool;
4788 	int error;
4789 	boolean_t ret;
4790 
4791 	ASSERT(dsl_pool_config_held(dp));
4792 	ASSERT(earlier->ds_is_snapshot || earlier_txg != 0);
4793 
4794 	if (earlier_txg == 0)
4795 		earlier_txg = dsl_dataset_phys(earlier)->ds_creation_txg;
4796 
4797 	if (later->ds_is_snapshot &&
4798 	    earlier_txg >= dsl_dataset_phys(later)->ds_creation_txg)
4799 		return (B_FALSE);
4800 
4801 	if (later->ds_dir == earlier->ds_dir)
4802 		return (B_TRUE);
4803 
4804 	/*
4805 	 * We check dd_origin_obj explicitly here rather than using
4806 	 * dsl_dir_is_clone() so that we will return TRUE if "earlier"
4807 	 * is $ORIGIN@$ORIGIN.  dsl_dataset_space_written() depends on
4808 	 * this behavior.
4809 	 */
4810 	if (dsl_dir_phys(later->ds_dir)->dd_origin_obj == 0)
4811 		return (B_FALSE);
4812 
4813 	dsl_dataset_t *origin;
4814 	error = dsl_dataset_hold_obj(dp,
4815 	    dsl_dir_phys(later->ds_dir)->dd_origin_obj, FTAG, &origin);
4816 	if (error != 0)
4817 		return (B_FALSE);
4818 	if (dsl_dataset_phys(origin)->ds_creation_txg == earlier_txg &&
4819 	    origin->ds_dir == earlier->ds_dir) {
4820 		dsl_dataset_rele(origin, FTAG);
4821 		return (B_TRUE);
4822 	}
4823 	ret = dsl_dataset_is_before(origin, earlier, earlier_txg);
4824 	dsl_dataset_rele(origin, FTAG);
4825 	return (ret);
4826 }
4827 
4828 void
dsl_dataset_zapify(dsl_dataset_t * ds,dmu_tx_t * tx)4829 dsl_dataset_zapify(dsl_dataset_t *ds, dmu_tx_t *tx)
4830 {
4831 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
4832 	dmu_object_zapify(mos, ds->ds_object, DMU_OT_DSL_DATASET, tx);
4833 }
4834 
4835 boolean_t
dsl_dataset_is_zapified(dsl_dataset_t * ds)4836 dsl_dataset_is_zapified(dsl_dataset_t *ds)
4837 {
4838 	dmu_object_info_t doi;
4839 
4840 	dmu_object_info_from_db(ds->ds_dbuf, &doi);
4841 	return (doi.doi_type == DMU_OTN_ZAP_METADATA);
4842 }
4843 
4844 boolean_t
dsl_dataset_has_resume_receive_state(dsl_dataset_t * ds)4845 dsl_dataset_has_resume_receive_state(dsl_dataset_t *ds)
4846 {
4847 	return (dsl_dataset_is_zapified(ds) &&
4848 	    zap_contains(ds->ds_dir->dd_pool->dp_meta_objset,
4849 	    ds->ds_object, DS_FIELD_RESUME_TOGUID) == 0);
4850 }
4851 
4852 uint64_t
dsl_dataset_get_remap_deadlist_object(dsl_dataset_t * ds)4853 dsl_dataset_get_remap_deadlist_object(dsl_dataset_t *ds)
4854 {
4855 	uint64_t remap_deadlist_obj;
4856 	int err;
4857 
4858 	if (!dsl_dataset_is_zapified(ds))
4859 		return (0);
4860 
4861 	err = zap_lookup(ds->ds_dir->dd_pool->dp_meta_objset, ds->ds_object,
4862 	    DS_FIELD_REMAP_DEADLIST, sizeof (remap_deadlist_obj), 1,
4863 	    &remap_deadlist_obj);
4864 
4865 	if (err != 0) {
4866 		VERIFY3S(err, ==, ENOENT);
4867 		return (0);
4868 	}
4869 
4870 	ASSERT(remap_deadlist_obj != 0);
4871 	return (remap_deadlist_obj);
4872 }
4873 
4874 boolean_t
dsl_dataset_remap_deadlist_exists(dsl_dataset_t * ds)4875 dsl_dataset_remap_deadlist_exists(dsl_dataset_t *ds)
4876 {
4877 	EQUIV(dsl_deadlist_is_open(&ds->ds_remap_deadlist),
4878 	    dsl_dataset_get_remap_deadlist_object(ds) != 0);
4879 	return (dsl_deadlist_is_open(&ds->ds_remap_deadlist));
4880 }
4881 
4882 static void
dsl_dataset_set_remap_deadlist_object(dsl_dataset_t * ds,uint64_t obj,dmu_tx_t * tx)4883 dsl_dataset_set_remap_deadlist_object(dsl_dataset_t *ds, uint64_t obj,
4884     dmu_tx_t *tx)
4885 {
4886 	ASSERT(obj != 0);
4887 	dsl_dataset_zapify(ds, tx);
4888 	VERIFY0(zap_add(ds->ds_dir->dd_pool->dp_meta_objset, ds->ds_object,
4889 	    DS_FIELD_REMAP_DEADLIST, sizeof (obj), 1, &obj, tx));
4890 }
4891 
4892 static void
dsl_dataset_unset_remap_deadlist_object(dsl_dataset_t * ds,dmu_tx_t * tx)4893 dsl_dataset_unset_remap_deadlist_object(dsl_dataset_t *ds, dmu_tx_t *tx)
4894 {
4895 	VERIFY0(zap_remove(ds->ds_dir->dd_pool->dp_meta_objset,
4896 	    ds->ds_object, DS_FIELD_REMAP_DEADLIST, tx));
4897 }
4898 
4899 void
dsl_dataset_destroy_remap_deadlist(dsl_dataset_t * ds,dmu_tx_t * tx)4900 dsl_dataset_destroy_remap_deadlist(dsl_dataset_t *ds, dmu_tx_t *tx)
4901 {
4902 	uint64_t remap_deadlist_object;
4903 	spa_t *spa = ds->ds_dir->dd_pool->dp_spa;
4904 
4905 	ASSERT(dmu_tx_is_syncing(tx));
4906 	ASSERT(dsl_dataset_remap_deadlist_exists(ds));
4907 
4908 	remap_deadlist_object = ds->ds_remap_deadlist.dl_object;
4909 	dsl_deadlist_close(&ds->ds_remap_deadlist);
4910 	dsl_deadlist_free(spa_meta_objset(spa), remap_deadlist_object, tx);
4911 	dsl_dataset_unset_remap_deadlist_object(ds, tx);
4912 	spa_feature_decr(spa, SPA_FEATURE_OBSOLETE_COUNTS, tx);
4913 }
4914 
4915 void
dsl_dataset_create_remap_deadlist(dsl_dataset_t * ds,dmu_tx_t * tx)4916 dsl_dataset_create_remap_deadlist(dsl_dataset_t *ds, dmu_tx_t *tx)
4917 {
4918 	uint64_t remap_deadlist_obj;
4919 	spa_t *spa = ds->ds_dir->dd_pool->dp_spa;
4920 
4921 	ASSERT(dmu_tx_is_syncing(tx));
4922 	ASSERT(MUTEX_HELD(&ds->ds_remap_deadlist_lock));
4923 	/*
4924 	 * Currently we only create remap deadlists when there are indirect
4925 	 * vdevs with referenced mappings.
4926 	 */
4927 	ASSERT(spa_feature_is_active(spa, SPA_FEATURE_DEVICE_REMOVAL));
4928 
4929 	remap_deadlist_obj = dsl_deadlist_clone(
4930 	    &ds->ds_deadlist, UINT64_MAX,
4931 	    dsl_dataset_phys(ds)->ds_prev_snap_obj, tx);
4932 	dsl_dataset_set_remap_deadlist_object(ds,
4933 	    remap_deadlist_obj, tx);
4934 	dsl_deadlist_open(&ds->ds_remap_deadlist, spa_meta_objset(spa),
4935 	    remap_deadlist_obj);
4936 	spa_feature_incr(spa, SPA_FEATURE_OBSOLETE_COUNTS, tx);
4937 }
4938 
4939 void
dsl_dataset_activate_redaction(dsl_dataset_t * ds,uint64_t * redact_snaps,uint64_t num_redact_snaps,dmu_tx_t * tx)4940 dsl_dataset_activate_redaction(dsl_dataset_t *ds, uint64_t *redact_snaps,
4941     uint64_t num_redact_snaps, dmu_tx_t *tx)
4942 {
4943 	uint64_t dsobj = ds->ds_object;
4944 	struct feature_type_uint64_array_arg *ftuaa =
4945 	    kmem_zalloc(sizeof (*ftuaa), KM_SLEEP);
4946 	ftuaa->length = (int64_t)num_redact_snaps;
4947 	if (num_redact_snaps > 0) {
4948 		ftuaa->array = kmem_alloc(num_redact_snaps * sizeof (uint64_t),
4949 		    KM_SLEEP);
4950 		bcopy(redact_snaps, ftuaa->array, num_redact_snaps *
4951 		    sizeof (uint64_t));
4952 	}
4953 	dsl_dataset_activate_feature(dsobj, SPA_FEATURE_REDACTED_DATASETS,
4954 	    ftuaa, tx);
4955 	ds->ds_feature[SPA_FEATURE_REDACTED_DATASETS] = ftuaa;
4956 }
4957 
4958 /* BEGIN CSTYLED */
4959 #if defined(_LP64)
4960 #define	RECORDSIZE_PERM ZMOD_RW
4961 #else
4962 /* Limited to 1M on 32-bit platforms due to lack of virtual address space */
4963 #define	RECORDSIZE_PERM ZMOD_RD
4964 #endif
4965 ZFS_MODULE_PARAM(zfs, zfs_, max_recordsize, INT, RECORDSIZE_PERM,
4966 	"Max allowed record size");
4967 
4968 ZFS_MODULE_PARAM(zfs, zfs_, allow_redacted_dataset_mount, INT, ZMOD_RW,
4969 	"Allow mounting of redacted datasets");
4970 /* END CSTYLED */
4971 
4972 EXPORT_SYMBOL(dsl_dataset_hold);
4973 EXPORT_SYMBOL(dsl_dataset_hold_flags);
4974 EXPORT_SYMBOL(dsl_dataset_hold_obj);
4975 EXPORT_SYMBOL(dsl_dataset_hold_obj_flags);
4976 EXPORT_SYMBOL(dsl_dataset_own);
4977 EXPORT_SYMBOL(dsl_dataset_own_obj);
4978 EXPORT_SYMBOL(dsl_dataset_name);
4979 EXPORT_SYMBOL(dsl_dataset_rele);
4980 EXPORT_SYMBOL(dsl_dataset_rele_flags);
4981 EXPORT_SYMBOL(dsl_dataset_disown);
4982 EXPORT_SYMBOL(dsl_dataset_tryown);
4983 EXPORT_SYMBOL(dsl_dataset_create_sync);
4984 EXPORT_SYMBOL(dsl_dataset_create_sync_dd);
4985 EXPORT_SYMBOL(dsl_dataset_snapshot_check);
4986 EXPORT_SYMBOL(dsl_dataset_snapshot_sync);
4987 EXPORT_SYMBOL(dsl_dataset_promote);
4988 EXPORT_SYMBOL(dsl_dataset_user_hold);
4989 EXPORT_SYMBOL(dsl_dataset_user_release);
4990 EXPORT_SYMBOL(dsl_dataset_get_holds);
4991 EXPORT_SYMBOL(dsl_dataset_get_blkptr);
4992 EXPORT_SYMBOL(dsl_dataset_get_spa);
4993 EXPORT_SYMBOL(dsl_dataset_modified_since_snap);
4994 EXPORT_SYMBOL(dsl_dataset_space_written);
4995 EXPORT_SYMBOL(dsl_dataset_space_wouldfree);
4996 EXPORT_SYMBOL(dsl_dataset_sync);
4997 EXPORT_SYMBOL(dsl_dataset_block_born);
4998 EXPORT_SYMBOL(dsl_dataset_block_kill);
4999 EXPORT_SYMBOL(dsl_dataset_dirty);
5000 EXPORT_SYMBOL(dsl_dataset_stats);
5001 EXPORT_SYMBOL(dsl_dataset_fast_stat);
5002 EXPORT_SYMBOL(dsl_dataset_space);
5003 EXPORT_SYMBOL(dsl_dataset_fsid_guid);
5004 EXPORT_SYMBOL(dsl_dsobj_to_dsname);
5005 EXPORT_SYMBOL(dsl_dataset_check_quota);
5006 EXPORT_SYMBOL(dsl_dataset_clone_swap_check_impl);
5007 EXPORT_SYMBOL(dsl_dataset_clone_swap_sync_impl);
5008