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