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