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