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