]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - zfs/module/zfs/dmu_traverse.c
UBUNTU: Ubuntu-4.10.0-37.41
[mirror_ubuntu-zesty-kernel.git] / zfs / module / zfs / dmu_traverse.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) 2012, 2016 by Delphix. All rights reserved.
24 */
25
26 #include <sys/zfs_context.h>
27 #include <sys/dmu_objset.h>
28 #include <sys/dmu_traverse.h>
29 #include <sys/dsl_dataset.h>
30 #include <sys/dsl_dir.h>
31 #include <sys/dsl_pool.h>
32 #include <sys/dnode.h>
33 #include <sys/spa.h>
34 #include <sys/zio.h>
35 #include <sys/dmu_impl.h>
36 #include <sys/sa.h>
37 #include <sys/sa_impl.h>
38 #include <sys/callb.h>
39 #include <sys/zfeature.h>
40
41 int32_t zfs_pd_bytes_max = 50 * 1024 * 1024; /* 50MB */
42 int32_t ignore_hole_birth = 1;
43
44 typedef struct prefetch_data {
45 kmutex_t pd_mtx;
46 kcondvar_t pd_cv;
47 int32_t pd_bytes_fetched;
48 int pd_flags;
49 boolean_t pd_cancel;
50 boolean_t pd_exited;
51 } prefetch_data_t;
52
53 typedef struct traverse_data {
54 spa_t *td_spa;
55 uint64_t td_objset;
56 blkptr_t *td_rootbp;
57 uint64_t td_min_txg;
58 zbookmark_phys_t *td_resume;
59 int td_flags;
60 prefetch_data_t *td_pfd;
61 boolean_t td_paused;
62 uint64_t td_hole_birth_enabled_txg;
63 blkptr_cb_t *td_func;
64 void *td_arg;
65 boolean_t td_realloc_possible;
66 } traverse_data_t;
67
68 static int traverse_dnode(traverse_data_t *td, const dnode_phys_t *dnp,
69 uint64_t objset, uint64_t object);
70 static void prefetch_dnode_metadata(traverse_data_t *td, const dnode_phys_t *,
71 uint64_t objset, uint64_t object);
72
73 static int
74 traverse_zil_block(zilog_t *zilog, blkptr_t *bp, void *arg, uint64_t claim_txg)
75 {
76 traverse_data_t *td = arg;
77 zbookmark_phys_t zb;
78
79 if (BP_IS_HOLE(bp))
80 return (0);
81
82 if (claim_txg == 0 && bp->blk_birth >= spa_first_txg(td->td_spa))
83 return (0);
84
85 SET_BOOKMARK(&zb, td->td_objset, ZB_ZIL_OBJECT, ZB_ZIL_LEVEL,
86 bp->blk_cksum.zc_word[ZIL_ZC_SEQ]);
87
88 (void) td->td_func(td->td_spa, zilog, bp, &zb, NULL, td->td_arg);
89
90 return (0);
91 }
92
93 static int
94 traverse_zil_record(zilog_t *zilog, lr_t *lrc, void *arg, uint64_t claim_txg)
95 {
96 traverse_data_t *td = arg;
97
98 if (lrc->lrc_txtype == TX_WRITE) {
99 lr_write_t *lr = (lr_write_t *)lrc;
100 blkptr_t *bp = &lr->lr_blkptr;
101 zbookmark_phys_t zb;
102
103 if (BP_IS_HOLE(bp))
104 return (0);
105
106 if (claim_txg == 0 || bp->blk_birth < claim_txg)
107 return (0);
108
109 SET_BOOKMARK(&zb, td->td_objset, lr->lr_foid,
110 ZB_ZIL_LEVEL, lr->lr_offset / BP_GET_LSIZE(bp));
111
112 (void) td->td_func(td->td_spa, zilog, bp, &zb, NULL,
113 td->td_arg);
114 }
115 return (0);
116 }
117
118 static void
119 traverse_zil(traverse_data_t *td, zil_header_t *zh)
120 {
121 uint64_t claim_txg = zh->zh_claim_txg;
122 zilog_t *zilog;
123
124 /*
125 * We only want to visit blocks that have been claimed but not yet
126 * replayed; plus, in read-only mode, blocks that are already stable.
127 */
128 if (claim_txg == 0 && spa_writeable(td->td_spa))
129 return;
130
131 zilog = zil_alloc(spa_get_dsl(td->td_spa)->dp_meta_objset, zh);
132
133 (void) zil_parse(zilog, traverse_zil_block, traverse_zil_record, td,
134 claim_txg);
135
136 zil_free(zilog);
137 }
138
139 typedef enum resume_skip {
140 RESUME_SKIP_ALL,
141 RESUME_SKIP_NONE,
142 RESUME_SKIP_CHILDREN
143 } resume_skip_t;
144
145 /*
146 * Returns RESUME_SKIP_ALL if td indicates that we are resuming a traversal and
147 * the block indicated by zb does not need to be visited at all. Returns
148 * RESUME_SKIP_CHILDREN if we are resuming a post traversal and we reach the
149 * resume point. This indicates that this block should be visited but not its
150 * children (since they must have been visited in a previous traversal).
151 * Otherwise returns RESUME_SKIP_NONE.
152 */
153 static resume_skip_t
154 resume_skip_check(traverse_data_t *td, const dnode_phys_t *dnp,
155 const zbookmark_phys_t *zb)
156 {
157 if (td->td_resume != NULL && !ZB_IS_ZERO(td->td_resume)) {
158 /*
159 * If we already visited this bp & everything below,
160 * don't bother doing it again.
161 */
162 if (zbookmark_is_before(dnp, zb, td->td_resume))
163 return (RESUME_SKIP_ALL);
164
165 /*
166 * If we found the block we're trying to resume from, zero
167 * the bookmark out to indicate that we have resumed.
168 */
169 if (bcmp(zb, td->td_resume, sizeof (*zb)) == 0) {
170 bzero(td->td_resume, sizeof (*zb));
171 if (td->td_flags & TRAVERSE_POST)
172 return (RESUME_SKIP_CHILDREN);
173 }
174 }
175 return (RESUME_SKIP_NONE);
176 }
177
178 static void
179 traverse_prefetch_metadata(traverse_data_t *td,
180 const blkptr_t *bp, const zbookmark_phys_t *zb)
181 {
182 arc_flags_t flags = ARC_FLAG_NOWAIT | ARC_FLAG_PREFETCH;
183
184 if (!(td->td_flags & TRAVERSE_PREFETCH_METADATA))
185 return;
186 /*
187 * If we are in the process of resuming, don't prefetch, because
188 * some children will not be needed (and in fact may have already
189 * been freed).
190 */
191 if (td->td_resume != NULL && !ZB_IS_ZERO(td->td_resume))
192 return;
193 if (BP_IS_HOLE(bp) || bp->blk_birth <= td->td_min_txg)
194 return;
195 if (BP_GET_LEVEL(bp) == 0 && BP_GET_TYPE(bp) != DMU_OT_DNODE)
196 return;
197
198 (void) arc_read(NULL, td->td_spa, bp, NULL, NULL,
199 ZIO_PRIORITY_ASYNC_READ, ZIO_FLAG_CANFAIL, &flags, zb);
200 }
201
202 static boolean_t
203 prefetch_needed(prefetch_data_t *pfd, const blkptr_t *bp)
204 {
205 ASSERT(pfd->pd_flags & TRAVERSE_PREFETCH_DATA);
206 if (BP_IS_HOLE(bp) || BP_IS_EMBEDDED(bp) ||
207 BP_GET_TYPE(bp) == DMU_OT_INTENT_LOG)
208 return (B_FALSE);
209 return (B_TRUE);
210 }
211
212 static int
213 traverse_visitbp(traverse_data_t *td, const dnode_phys_t *dnp,
214 const blkptr_t *bp, const zbookmark_phys_t *zb)
215 {
216 int err = 0;
217 arc_buf_t *buf = NULL;
218 prefetch_data_t *pd = td->td_pfd;
219
220 switch (resume_skip_check(td, dnp, zb)) {
221 case RESUME_SKIP_ALL:
222 return (0);
223 case RESUME_SKIP_CHILDREN:
224 goto post;
225 case RESUME_SKIP_NONE:
226 break;
227 default:
228 ASSERT(0);
229 }
230
231 if (bp->blk_birth == 0) {
232 /*
233 * Since this block has a birth time of 0 it must be one of
234 * two things: a hole created before the
235 * SPA_FEATURE_HOLE_BIRTH feature was enabled, or a hole
236 * which has always been a hole in an object.
237 *
238 * If a file is written sparsely, then the unwritten parts of
239 * the file were "always holes" -- that is, they have been
240 * holes since this object was allocated. However, we (and
241 * our callers) can not necessarily tell when an object was
242 * allocated. Therefore, if it's possible that this object
243 * was freed and then its object number reused, we need to
244 * visit all the holes with birth==0.
245 *
246 * If it isn't possible that the object number was reused,
247 * then if SPA_FEATURE_HOLE_BIRTH was enabled before we wrote
248 * all the blocks we will visit as part of this traversal,
249 * then this hole must have always existed, so we can skip
250 * it. We visit blocks born after (exclusive) td_min_txg.
251 *
252 * Note that the meta-dnode cannot be reallocated.
253 */
254 if (!ignore_hole_birth && (!td->td_realloc_possible ||
255 zb->zb_object == DMU_META_DNODE_OBJECT) &&
256 td->td_hole_birth_enabled_txg <= td->td_min_txg)
257 return (0);
258 } else if (bp->blk_birth <= td->td_min_txg) {
259 return (0);
260 }
261
262 if (pd != NULL && !pd->pd_exited && prefetch_needed(pd, bp)) {
263 uint64_t size = BP_GET_LSIZE(bp);
264 mutex_enter(&pd->pd_mtx);
265 ASSERT(pd->pd_bytes_fetched >= 0);
266 while (pd->pd_bytes_fetched < size && !pd->pd_exited)
267 cv_wait_sig(&pd->pd_cv, &pd->pd_mtx);
268 pd->pd_bytes_fetched -= size;
269 cv_broadcast(&pd->pd_cv);
270 mutex_exit(&pd->pd_mtx);
271 }
272
273 if (BP_IS_HOLE(bp)) {
274 err = td->td_func(td->td_spa, NULL, bp, zb, dnp, td->td_arg);
275 if (err != 0)
276 goto post;
277 return (0);
278 }
279
280 if (td->td_flags & TRAVERSE_PRE) {
281 err = td->td_func(td->td_spa, NULL, bp, zb, dnp,
282 td->td_arg);
283 if (err == TRAVERSE_VISIT_NO_CHILDREN)
284 return (0);
285 if (err != 0)
286 goto post;
287 }
288
289 if (BP_GET_LEVEL(bp) > 0) {
290 uint32_t flags = ARC_FLAG_WAIT;
291 int32_t i;
292 int32_t epb = BP_GET_LSIZE(bp) >> SPA_BLKPTRSHIFT;
293 zbookmark_phys_t *czb;
294
295 err = arc_read(NULL, td->td_spa, bp, arc_getbuf_func, &buf,
296 ZIO_PRIORITY_ASYNC_READ, ZIO_FLAG_CANFAIL, &flags, zb);
297 if (err != 0)
298 goto post;
299
300 czb = kmem_alloc(sizeof (zbookmark_phys_t), KM_SLEEP);
301
302 for (i = 0; i < epb; i++) {
303 SET_BOOKMARK(czb, zb->zb_objset, zb->zb_object,
304 zb->zb_level - 1,
305 zb->zb_blkid * epb + i);
306 traverse_prefetch_metadata(td,
307 &((blkptr_t *)buf->b_data)[i], czb);
308 }
309
310 /* recursively visitbp() blocks below this */
311 for (i = 0; i < epb; i++) {
312 SET_BOOKMARK(czb, zb->zb_objset, zb->zb_object,
313 zb->zb_level - 1,
314 zb->zb_blkid * epb + i);
315 err = traverse_visitbp(td, dnp,
316 &((blkptr_t *)buf->b_data)[i], czb);
317 if (err != 0)
318 break;
319 }
320
321 kmem_free(czb, sizeof (zbookmark_phys_t));
322
323 } else if (BP_GET_TYPE(bp) == DMU_OT_DNODE) {
324 uint32_t flags = ARC_FLAG_WAIT;
325 int32_t i;
326 int32_t epb = BP_GET_LSIZE(bp) >> DNODE_SHIFT;
327 dnode_phys_t *cdnp;
328
329 err = arc_read(NULL, td->td_spa, bp, arc_getbuf_func, &buf,
330 ZIO_PRIORITY_ASYNC_READ, ZIO_FLAG_CANFAIL, &flags, zb);
331 if (err != 0)
332 goto post;
333 cdnp = buf->b_data;
334
335 for (i = 0; i < epb; i++) {
336 prefetch_dnode_metadata(td, &cdnp[i], zb->zb_objset,
337 zb->zb_blkid * epb + i);
338 }
339
340 /* recursively visitbp() blocks below this */
341 for (i = 0; i < epb; i++) {
342 err = traverse_dnode(td, &cdnp[i], zb->zb_objset,
343 zb->zb_blkid * epb + i);
344 if (err != 0)
345 break;
346 }
347 } else if (BP_GET_TYPE(bp) == DMU_OT_OBJSET) {
348 arc_flags_t flags = ARC_FLAG_WAIT;
349 objset_phys_t *osp;
350 dnode_phys_t *mdnp, *gdnp, *udnp;
351
352 err = arc_read(NULL, td->td_spa, bp, arc_getbuf_func, &buf,
353 ZIO_PRIORITY_ASYNC_READ, ZIO_FLAG_CANFAIL, &flags, zb);
354 if (err != 0)
355 goto post;
356
357 osp = buf->b_data;
358 mdnp = &osp->os_meta_dnode;
359 gdnp = &osp->os_groupused_dnode;
360 udnp = &osp->os_userused_dnode;
361
362 prefetch_dnode_metadata(td, mdnp, zb->zb_objset,
363 DMU_META_DNODE_OBJECT);
364 /*
365 * See the block comment above for the goal of this variable.
366 * If the maxblkid of the meta-dnode is 0, then we know that
367 * we've never had more than DNODES_PER_BLOCK objects in the
368 * dataset, which means we can't have reused any object ids.
369 */
370 if (osp->os_meta_dnode.dn_maxblkid == 0)
371 td->td_realloc_possible = B_FALSE;
372
373 if (arc_buf_size(buf) >= sizeof (objset_phys_t)) {
374 prefetch_dnode_metadata(td, gdnp, zb->zb_objset,
375 DMU_GROUPUSED_OBJECT);
376 prefetch_dnode_metadata(td, udnp, zb->zb_objset,
377 DMU_USERUSED_OBJECT);
378 }
379
380 err = traverse_dnode(td, mdnp, zb->zb_objset,
381 DMU_META_DNODE_OBJECT);
382 if (err == 0 && arc_buf_size(buf) >= sizeof (objset_phys_t)) {
383 err = traverse_dnode(td, gdnp, zb->zb_objset,
384 DMU_GROUPUSED_OBJECT);
385 }
386 if (err == 0 && arc_buf_size(buf) >= sizeof (objset_phys_t)) {
387 err = traverse_dnode(td, udnp, zb->zb_objset,
388 DMU_USERUSED_OBJECT);
389 }
390 }
391
392 if (buf)
393 (void) arc_buf_remove_ref(buf, &buf);
394
395 post:
396 if (err == 0 && (td->td_flags & TRAVERSE_POST))
397 err = td->td_func(td->td_spa, NULL, bp, zb, dnp, td->td_arg);
398
399 if ((td->td_flags & TRAVERSE_HARD) && (err == EIO || err == ECKSUM)) {
400 /*
401 * Ignore this disk error as requested by the HARD flag,
402 * and continue traversal.
403 */
404 err = 0;
405 }
406
407 /*
408 * If we are stopping here, set td_resume.
409 */
410 if (td->td_resume != NULL && err != 0 && !td->td_paused) {
411 td->td_resume->zb_objset = zb->zb_objset;
412 td->td_resume->zb_object = zb->zb_object;
413 td->td_resume->zb_level = 0;
414 /*
415 * If we have stopped on an indirect block (e.g. due to
416 * i/o error), we have not visited anything below it.
417 * Set the bookmark to the first level-0 block that we need
418 * to visit. This way, the resuming code does not need to
419 * deal with resuming from indirect blocks.
420 */
421 td->td_resume->zb_blkid = zb->zb_blkid <<
422 (zb->zb_level * (dnp->dn_indblkshift - SPA_BLKPTRSHIFT));
423 td->td_paused = B_TRUE;
424 }
425
426 return (err);
427 }
428
429 static void
430 prefetch_dnode_metadata(traverse_data_t *td, const dnode_phys_t *dnp,
431 uint64_t objset, uint64_t object)
432 {
433 int j;
434 zbookmark_phys_t czb;
435
436 for (j = 0; j < dnp->dn_nblkptr; j++) {
437 SET_BOOKMARK(&czb, objset, object, dnp->dn_nlevels - 1, j);
438 traverse_prefetch_metadata(td, &dnp->dn_blkptr[j], &czb);
439 }
440
441 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) {
442 SET_BOOKMARK(&czb, objset, object, 0, DMU_SPILL_BLKID);
443 traverse_prefetch_metadata(td, &dnp->dn_spill, &czb);
444 }
445 }
446
447 static int
448 traverse_dnode(traverse_data_t *td, const dnode_phys_t *dnp,
449 uint64_t objset, uint64_t object)
450 {
451 int j, err = 0;
452 zbookmark_phys_t czb;
453
454 for (j = 0; j < dnp->dn_nblkptr; j++) {
455 SET_BOOKMARK(&czb, objset, object, dnp->dn_nlevels - 1, j);
456 err = traverse_visitbp(td, dnp, &dnp->dn_blkptr[j], &czb);
457 if (err != 0)
458 break;
459 }
460
461 if (err == 0 && dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) {
462 SET_BOOKMARK(&czb, objset, object, 0, DMU_SPILL_BLKID);
463 err = traverse_visitbp(td, dnp, &dnp->dn_spill, &czb);
464 }
465 return (err);
466 }
467
468 /* ARGSUSED */
469 static int
470 traverse_prefetcher(spa_t *spa, zilog_t *zilog, const blkptr_t *bp,
471 const zbookmark_phys_t *zb, const dnode_phys_t *dnp, void *arg)
472 {
473 prefetch_data_t *pfd = arg;
474 arc_flags_t aflags = ARC_FLAG_NOWAIT | ARC_FLAG_PREFETCH;
475
476 ASSERT(pfd->pd_bytes_fetched >= 0);
477 if (pfd->pd_cancel)
478 return (SET_ERROR(EINTR));
479
480 if (!prefetch_needed(pfd, bp))
481 return (0);
482
483 mutex_enter(&pfd->pd_mtx);
484 while (!pfd->pd_cancel && pfd->pd_bytes_fetched >= zfs_pd_bytes_max)
485 cv_wait_sig(&pfd->pd_cv, &pfd->pd_mtx);
486 pfd->pd_bytes_fetched += BP_GET_LSIZE(bp);
487 cv_broadcast(&pfd->pd_cv);
488 mutex_exit(&pfd->pd_mtx);
489
490 (void) arc_read(NULL, spa, bp, NULL, NULL, ZIO_PRIORITY_ASYNC_READ,
491 ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE, &aflags, zb);
492
493 return (0);
494 }
495
496 static void
497 traverse_prefetch_thread(void *arg)
498 {
499 traverse_data_t *td_main = arg;
500 traverse_data_t td = *td_main;
501 zbookmark_phys_t czb;
502 fstrans_cookie_t cookie = spl_fstrans_mark();
503
504 td.td_func = traverse_prefetcher;
505 td.td_arg = td_main->td_pfd;
506 td.td_pfd = NULL;
507
508 SET_BOOKMARK(&czb, td.td_objset,
509 ZB_ROOT_OBJECT, ZB_ROOT_LEVEL, ZB_ROOT_BLKID);
510 (void) traverse_visitbp(&td, NULL, td.td_rootbp, &czb);
511
512 mutex_enter(&td_main->td_pfd->pd_mtx);
513 td_main->td_pfd->pd_exited = B_TRUE;
514 cv_broadcast(&td_main->td_pfd->pd_cv);
515 mutex_exit(&td_main->td_pfd->pd_mtx);
516 spl_fstrans_unmark(cookie);
517 }
518
519 /*
520 * NB: dataset must not be changing on-disk (eg, is a snapshot or we are
521 * in syncing context).
522 */
523 static int
524 traverse_impl(spa_t *spa, dsl_dataset_t *ds, uint64_t objset, blkptr_t *rootbp,
525 uint64_t txg_start, zbookmark_phys_t *resume, int flags,
526 blkptr_cb_t func, void *arg)
527 {
528 traverse_data_t *td;
529 prefetch_data_t *pd;
530 zbookmark_phys_t *czb;
531 int err;
532
533 ASSERT(ds == NULL || objset == ds->ds_object);
534 ASSERT(!(flags & TRAVERSE_PRE) || !(flags & TRAVERSE_POST));
535
536 /*
537 * The data prefetching mechanism (the prefetch thread) is incompatible
538 * with resuming from a bookmark.
539 */
540 ASSERT(resume == NULL || !(flags & TRAVERSE_PREFETCH_DATA));
541
542 td = kmem_alloc(sizeof (traverse_data_t), KM_SLEEP);
543 pd = kmem_zalloc(sizeof (prefetch_data_t), KM_SLEEP);
544 czb = kmem_alloc(sizeof (zbookmark_phys_t), KM_SLEEP);
545
546 td->td_spa = spa;
547 td->td_objset = objset;
548 td->td_rootbp = rootbp;
549 td->td_min_txg = txg_start;
550 td->td_resume = resume;
551 td->td_func = func;
552 td->td_arg = arg;
553 td->td_pfd = pd;
554 td->td_flags = flags;
555 td->td_paused = B_FALSE;
556 td->td_realloc_possible = (txg_start == 0 ? B_FALSE : B_TRUE);
557
558 if (spa_feature_is_active(spa, SPA_FEATURE_HOLE_BIRTH)) {
559 VERIFY(spa_feature_enabled_txg(spa,
560 SPA_FEATURE_HOLE_BIRTH, &td->td_hole_birth_enabled_txg));
561 } else {
562 td->td_hole_birth_enabled_txg = UINT64_MAX;
563 }
564
565 pd->pd_flags = flags;
566 mutex_init(&pd->pd_mtx, NULL, MUTEX_DEFAULT, NULL);
567 cv_init(&pd->pd_cv, NULL, CV_DEFAULT, NULL);
568
569 SET_BOOKMARK(czb, td->td_objset,
570 ZB_ROOT_OBJECT, ZB_ROOT_LEVEL, ZB_ROOT_BLKID);
571
572 /* See comment on ZIL traversal in dsl_scan_visitds. */
573 if (ds != NULL && !ds->ds_is_snapshot && !BP_IS_HOLE(rootbp)) {
574 uint32_t flags = ARC_FLAG_WAIT;
575 objset_phys_t *osp;
576 arc_buf_t *buf;
577
578 err = arc_read(NULL, td->td_spa, rootbp,
579 arc_getbuf_func, &buf,
580 ZIO_PRIORITY_ASYNC_READ, ZIO_FLAG_CANFAIL, &flags, czb);
581 if (err != 0)
582 return (err);
583
584 osp = buf->b_data;
585 traverse_zil(td, &osp->os_zil_header);
586 (void) arc_buf_remove_ref(buf, &buf);
587 }
588
589 if (!(flags & TRAVERSE_PREFETCH_DATA) ||
590 0 == taskq_dispatch(system_taskq, traverse_prefetch_thread,
591 td, TQ_NOQUEUE))
592 pd->pd_exited = B_TRUE;
593
594 err = traverse_visitbp(td, NULL, rootbp, czb);
595
596 mutex_enter(&pd->pd_mtx);
597 pd->pd_cancel = B_TRUE;
598 cv_broadcast(&pd->pd_cv);
599 while (!pd->pd_exited)
600 cv_wait_sig(&pd->pd_cv, &pd->pd_mtx);
601 mutex_exit(&pd->pd_mtx);
602
603 mutex_destroy(&pd->pd_mtx);
604 cv_destroy(&pd->pd_cv);
605
606 kmem_free(czb, sizeof (zbookmark_phys_t));
607 kmem_free(pd, sizeof (struct prefetch_data));
608 kmem_free(td, sizeof (struct traverse_data));
609
610 return (err);
611 }
612
613 /*
614 * NB: dataset must not be changing on-disk (eg, is a snapshot or we are
615 * in syncing context).
616 */
617 int
618 traverse_dataset(dsl_dataset_t *ds, uint64_t txg_start, int flags,
619 blkptr_cb_t func, void *arg)
620 {
621 return (traverse_impl(ds->ds_dir->dd_pool->dp_spa, ds, ds->ds_object,
622 &dsl_dataset_phys(ds)->ds_bp, txg_start, NULL, flags, func, arg));
623 }
624
625 int
626 traverse_dataset_destroyed(spa_t *spa, blkptr_t *blkptr,
627 uint64_t txg_start, zbookmark_phys_t *resume, int flags,
628 blkptr_cb_t func, void *arg)
629 {
630 return (traverse_impl(spa, NULL, ZB_DESTROYED_OBJSET,
631 blkptr, txg_start, resume, flags, func, arg));
632 }
633
634 /*
635 * NB: pool must not be changing on-disk (eg, from zdb or sync context).
636 */
637 int
638 traverse_pool(spa_t *spa, uint64_t txg_start, int flags,
639 blkptr_cb_t func, void *arg)
640 {
641 int err;
642 uint64_t obj;
643 dsl_pool_t *dp = spa_get_dsl(spa);
644 objset_t *mos = dp->dp_meta_objset;
645 boolean_t hard = (flags & TRAVERSE_HARD);
646
647 /* visit the MOS */
648 err = traverse_impl(spa, NULL, 0, spa_get_rootblkptr(spa),
649 txg_start, NULL, flags, func, arg);
650 if (err != 0)
651 return (err);
652
653 /* visit each dataset */
654 for (obj = 1; err == 0;
655 err = dmu_object_next(mos, &obj, FALSE, txg_start)) {
656 dmu_object_info_t doi;
657
658 err = dmu_object_info(mos, obj, &doi);
659 if (err != 0) {
660 if (hard)
661 continue;
662 break;
663 }
664
665 if (doi.doi_bonus_type == DMU_OT_DSL_DATASET) {
666 dsl_dataset_t *ds;
667 uint64_t txg = txg_start;
668
669 dsl_pool_config_enter(dp, FTAG);
670 err = dsl_dataset_hold_obj(dp, obj, FTAG, &ds);
671 dsl_pool_config_exit(dp, FTAG);
672 if (err != 0) {
673 if (hard)
674 continue;
675 break;
676 }
677 if (dsl_dataset_phys(ds)->ds_prev_snap_txg > txg)
678 txg = dsl_dataset_phys(ds)->ds_prev_snap_txg;
679 err = traverse_dataset(ds, txg, flags, func, arg);
680 dsl_dataset_rele(ds, FTAG);
681 if (err != 0)
682 break;
683 }
684 }
685 if (err == ESRCH)
686 err = 0;
687 return (err);
688 }
689
690 #if defined(_KERNEL) && defined(HAVE_SPL)
691 EXPORT_SYMBOL(traverse_dataset);
692 EXPORT_SYMBOL(traverse_pool);
693
694 module_param(zfs_pd_bytes_max, int, 0644);
695 MODULE_PARM_DESC(zfs_pd_bytes_max, "Max number of bytes to prefetch");
696
697 module_param(ignore_hole_birth, int, 0644);
698 MODULE_PARM_DESC(ignore_hole_birth, "Ignore hole_birth txg for send");
699 #endif