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