]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c
MFC r268079: MFV r267566:
[FreeBSD/stable/10.git] / sys / cddl / contrib / opensolaris / uts / common / fs / 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) 2013 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 int zfs_pd_blks_max = 100;
42
43 typedef struct prefetch_data {
44         kmutex_t pd_mtx;
45         kcondvar_t pd_cv;
46         int pd_blks_max;
47         int pd_blks_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_t *td_resume;
59         int td_flags;
60         prefetch_data_t *td_pfd;
61         boolean_t td_paused;
62         blkptr_cb_t *td_func;
63         void *td_arg;
64 } traverse_data_t;
65
66 static int traverse_dnode(traverse_data_t *td, const dnode_phys_t *dnp,
67     uint64_t objset, uint64_t object);
68 static void prefetch_dnode_metadata(traverse_data_t *td, const dnode_phys_t *,
69     uint64_t objset, uint64_t object);
70
71 static int
72 traverse_zil_block(zilog_t *zilog, blkptr_t *bp, void *arg, uint64_t claim_txg)
73 {
74         traverse_data_t *td = arg;
75         zbookmark_t zb;
76
77         if (BP_IS_HOLE(bp))
78                 return (0);
79
80         if (claim_txg == 0 && bp->blk_birth >= spa_first_txg(td->td_spa))
81                 return (0);
82
83         SET_BOOKMARK(&zb, td->td_objset, ZB_ZIL_OBJECT, ZB_ZIL_LEVEL,
84             bp->blk_cksum.zc_word[ZIL_ZC_SEQ]);
85
86         (void) td->td_func(td->td_spa, zilog, bp, &zb, NULL, td->td_arg);
87
88         return (0);
89 }
90
91 static int
92 traverse_zil_record(zilog_t *zilog, lr_t *lrc, void *arg, uint64_t claim_txg)
93 {
94         traverse_data_t *td = arg;
95
96         if (lrc->lrc_txtype == TX_WRITE) {
97                 lr_write_t *lr = (lr_write_t *)lrc;
98                 blkptr_t *bp = &lr->lr_blkptr;
99                 zbookmark_t zb;
100
101                 if (BP_IS_HOLE(bp))
102                         return (0);
103
104                 if (claim_txg == 0 || bp->blk_birth < claim_txg)
105                         return (0);
106
107                 SET_BOOKMARK(&zb, td->td_objset, lr->lr_foid,
108                     ZB_ZIL_LEVEL, lr->lr_offset / BP_GET_LSIZE(bp));
109
110                 (void) td->td_func(td->td_spa, zilog, bp, &zb, NULL,
111                     td->td_arg);
112         }
113         return (0);
114 }
115
116 static void
117 traverse_zil(traverse_data_t *td, zil_header_t *zh)
118 {
119         uint64_t claim_txg = zh->zh_claim_txg;
120         zilog_t *zilog;
121
122         /*
123          * We only want to visit blocks that have been claimed but not yet
124          * replayed; plus, in read-only mode, blocks that are already stable.
125          */
126         if (claim_txg == 0 && spa_writeable(td->td_spa))
127                 return;
128
129         zilog = zil_alloc(spa_get_dsl(td->td_spa)->dp_meta_objset, zh);
130
131         (void) zil_parse(zilog, traverse_zil_block, traverse_zil_record, td,
132             claim_txg);
133
134         zil_free(zilog);
135 }
136
137 typedef enum resume_skip {
138         RESUME_SKIP_ALL,
139         RESUME_SKIP_NONE,
140         RESUME_SKIP_CHILDREN
141 } resume_skip_t;
142
143 /*
144  * Returns RESUME_SKIP_ALL if td indicates that we are resuming a traversal and
145  * the block indicated by zb does not need to be visited at all. Returns
146  * RESUME_SKIP_CHILDREN if we are resuming a post traversal and we reach the
147  * resume point. This indicates that this block should be visited but not its
148  * children (since they must have been visited in a previous traversal).
149  * Otherwise returns RESUME_SKIP_NONE.
150  */
151 static resume_skip_t
152 resume_skip_check(traverse_data_t *td, const dnode_phys_t *dnp,
153     const zbookmark_t *zb)
154 {
155         if (td->td_resume != NULL && !ZB_IS_ZERO(td->td_resume)) {
156                 /*
157                  * If we already visited this bp & everything below,
158                  * don't bother doing it again.
159                  */
160                 if (zbookmark_is_before(dnp, zb, td->td_resume))
161                         return (RESUME_SKIP_ALL);
162
163                 /*
164                  * If we found the block we're trying to resume from, zero
165                  * the bookmark out to indicate that we have resumed.
166                  */
167                 if (bcmp(zb, td->td_resume, sizeof (*zb)) == 0) {
168                         bzero(td->td_resume, sizeof (*zb));
169                         if (td->td_flags & TRAVERSE_POST)
170                                 return (RESUME_SKIP_CHILDREN);
171                 }
172         }
173         return (RESUME_SKIP_NONE);
174 }
175
176 static void
177 traverse_prefetch_metadata(traverse_data_t *td,
178     const blkptr_t *bp, const zbookmark_t *zb)
179 {
180         uint32_t flags = ARC_NOWAIT | ARC_PREFETCH;
181
182         if (!(td->td_flags & TRAVERSE_PREFETCH_METADATA))
183                 return;
184         /*
185          * If we are in the process of resuming, don't prefetch, because
186          * some children will not be needed (and in fact may have already
187          * been freed).
188          */
189         if (td->td_resume != NULL && !ZB_IS_ZERO(td->td_resume))
190                 return;
191         if (BP_IS_HOLE(bp) || bp->blk_birth <= td->td_min_txg)
192                 return;
193         if (BP_GET_LEVEL(bp) == 0 && BP_GET_TYPE(bp) != DMU_OT_DNODE)
194                 return;
195
196         (void) arc_read(NULL, td->td_spa, bp, NULL, NULL,
197             ZIO_PRIORITY_ASYNC_READ, ZIO_FLAG_CANFAIL, &flags, zb);
198 }
199
200 static int
201 traverse_visitbp(traverse_data_t *td, const dnode_phys_t *dnp,
202     const blkptr_t *bp, const zbookmark_t *zb)
203 {
204         zbookmark_t czb;
205         int err = 0;
206         arc_buf_t *buf = NULL;
207         prefetch_data_t *pd = td->td_pfd;
208         boolean_t hard = td->td_flags & TRAVERSE_HARD;
209
210         switch (resume_skip_check(td, dnp, zb)) {
211         case RESUME_SKIP_ALL:
212                 return (0);
213         case RESUME_SKIP_CHILDREN:
214                 goto post;
215         case RESUME_SKIP_NONE:
216                 break;
217         default:
218                 ASSERT(0);
219         }
220
221         if (bp->blk_birth == 0) {
222                 if (spa_feature_is_active(td->td_spa, SPA_FEATURE_HOLE_BIRTH)) {
223                         /*
224                          * Since this block has a birth time of 0 it must be a
225                          * hole created before the SPA_FEATURE_HOLE_BIRTH
226                          * feature was enabled.  If SPA_FEATURE_HOLE_BIRTH
227                          * was enabled before the min_txg for this traveral we
228                          * know the hole must have been created before the
229                          * min_txg for this traveral, so we can skip it. If
230                          * SPA_FEATURE_HOLE_BIRTH was enabled after the min_txg
231                          * for this traveral we cannot tell if the hole was
232                          * created before or after the min_txg for this
233                          * traversal, so we cannot skip it.
234                          */
235                         uint64_t hole_birth_enabled_txg;
236                         VERIFY(spa_feature_enabled_txg(td->td_spa,
237                             SPA_FEATURE_HOLE_BIRTH, &hole_birth_enabled_txg));
238                         if (hole_birth_enabled_txg < td->td_min_txg)
239                                 return (0);
240                 }
241         } else if (bp->blk_birth <= td->td_min_txg) {
242                 return (0);
243         }
244
245         if (BP_IS_HOLE(bp)) {
246                 err = td->td_func(td->td_spa, NULL, bp, zb, dnp, td->td_arg);
247                 if (err != 0)
248                         goto post;
249                 return (0);
250         }
251
252         if (pd && !pd->pd_exited &&
253             ((pd->pd_flags & TRAVERSE_PREFETCH_DATA) ||
254             BP_GET_TYPE(bp) == DMU_OT_DNODE || BP_GET_LEVEL(bp) > 0)) {
255                 mutex_enter(&pd->pd_mtx);
256                 ASSERT(pd->pd_blks_fetched >= 0);
257                 while (pd->pd_blks_fetched == 0 && !pd->pd_exited)
258                         cv_wait(&pd->pd_cv, &pd->pd_mtx);
259                 pd->pd_blks_fetched--;
260                 cv_broadcast(&pd->pd_cv);
261                 mutex_exit(&pd->pd_mtx);
262         }
263
264         if (td->td_flags & TRAVERSE_PRE) {
265                 err = td->td_func(td->td_spa, NULL, bp, zb, dnp,
266                     td->td_arg);
267                 if (err == TRAVERSE_VISIT_NO_CHILDREN)
268                         return (0);
269                 if (err != 0)
270                         goto post;
271         }
272
273         if (BP_GET_LEVEL(bp) > 0) {
274                 uint32_t flags = ARC_WAIT;
275                 int i;
276                 blkptr_t *cbp;
277                 int epb = BP_GET_LSIZE(bp) >> SPA_BLKPTRSHIFT;
278
279                 err = arc_read(NULL, td->td_spa, bp, arc_getbuf_func, &buf,
280                     ZIO_PRIORITY_ASYNC_READ, ZIO_FLAG_CANFAIL, &flags, zb);
281                 if (err != 0)
282                         goto post;
283                 cbp = buf->b_data;
284
285                 for (i = 0; i < epb; i++) {
286                         SET_BOOKMARK(&czb, zb->zb_objset, zb->zb_object,
287                             zb->zb_level - 1,
288                             zb->zb_blkid * epb + i);
289                         traverse_prefetch_metadata(td, &cbp[i], &czb);
290                 }
291
292                 /* recursively visitbp() blocks below this */
293                 for (i = 0; i < epb; i++) {
294                         SET_BOOKMARK(&czb, zb->zb_objset, zb->zb_object,
295                             zb->zb_level - 1,
296                             zb->zb_blkid * epb + i);
297                         err = traverse_visitbp(td, dnp, &cbp[i], &czb);
298                         if (err != 0)
299                                 break;
300                 }
301         } else if (BP_GET_TYPE(bp) == DMU_OT_DNODE) {
302                 uint32_t flags = ARC_WAIT;
303                 int i;
304                 int epb = BP_GET_LSIZE(bp) >> DNODE_SHIFT;
305
306                 err = arc_read(NULL, td->td_spa, bp, arc_getbuf_func, &buf,
307                     ZIO_PRIORITY_ASYNC_READ, ZIO_FLAG_CANFAIL, &flags, zb);
308                 if (err != 0)
309                         goto post;
310                 dnp = buf->b_data;
311
312                 for (i = 0; i < epb; i++) {
313                         prefetch_dnode_metadata(td, &dnp[i], zb->zb_objset,
314                             zb->zb_blkid * epb + i);
315                 }
316
317                 /* recursively visitbp() blocks below this */
318                 for (i = 0; i < epb; i++) {
319                         err = traverse_dnode(td, &dnp[i], zb->zb_objset,
320                             zb->zb_blkid * epb + i);
321                         if (err != 0)
322                                 break;
323                 }
324         } else if (BP_GET_TYPE(bp) == DMU_OT_OBJSET) {
325                 uint32_t flags = ARC_WAIT;
326                 objset_phys_t *osp;
327                 dnode_phys_t *dnp;
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
334                 osp = buf->b_data;
335                 dnp = &osp->os_meta_dnode;
336                 prefetch_dnode_metadata(td, dnp, zb->zb_objset,
337                     DMU_META_DNODE_OBJECT);
338                 if (arc_buf_size(buf) >= sizeof (objset_phys_t)) {
339                         prefetch_dnode_metadata(td, &osp->os_groupused_dnode,
340                             zb->zb_objset, DMU_GROUPUSED_OBJECT);
341                         prefetch_dnode_metadata(td, &osp->os_userused_dnode,
342                             zb->zb_objset, DMU_USERUSED_OBJECT);
343                 }
344
345                 err = traverse_dnode(td, dnp, zb->zb_objset,
346                     DMU_META_DNODE_OBJECT);
347                 if (err == 0 && arc_buf_size(buf) >= sizeof (objset_phys_t)) {
348                         dnp = &osp->os_groupused_dnode;
349                         err = traverse_dnode(td, dnp, zb->zb_objset,
350                             DMU_GROUPUSED_OBJECT);
351                 }
352                 if (err == 0 && arc_buf_size(buf) >= sizeof (objset_phys_t)) {
353                         dnp = &osp->os_userused_dnode;
354                         err = traverse_dnode(td, dnp, zb->zb_objset,
355                             DMU_USERUSED_OBJECT);
356                 }
357         }
358
359         if (buf)
360                 (void) arc_buf_remove_ref(buf, &buf);
361
362 post:
363         if (err == 0 && (td->td_flags & TRAVERSE_POST))
364                 err = td->td_func(td->td_spa, NULL, bp, zb, dnp, td->td_arg);
365
366         if (hard && (err == EIO || err == ECKSUM)) {
367                 /*
368                  * Ignore this disk error as requested by the HARD flag,
369                  * and continue traversal.
370                  */
371                 err = 0;
372         }
373
374         /*
375          * If we are stopping here, set td_resume.
376          */
377         if (td->td_resume != NULL && err != 0 && !td->td_paused) {
378                 td->td_resume->zb_objset = zb->zb_objset;
379                 td->td_resume->zb_object = zb->zb_object;
380                 td->td_resume->zb_level = 0;
381                 /*
382                  * If we have stopped on an indirect block (e.g. due to
383                  * i/o error), we have not visited anything below it.
384                  * Set the bookmark to the first level-0 block that we need
385                  * to visit.  This way, the resuming code does not need to
386                  * deal with resuming from indirect blocks.
387                  */
388                 td->td_resume->zb_blkid = zb->zb_blkid <<
389                     (zb->zb_level * (dnp->dn_indblkshift - SPA_BLKPTRSHIFT));
390                 td->td_paused = B_TRUE;
391         }
392
393         return (err);
394 }
395
396 static void
397 prefetch_dnode_metadata(traverse_data_t *td, const dnode_phys_t *dnp,
398     uint64_t objset, uint64_t object)
399 {
400         int j;
401         zbookmark_t czb;
402
403         for (j = 0; j < dnp->dn_nblkptr; j++) {
404                 SET_BOOKMARK(&czb, objset, object, dnp->dn_nlevels - 1, j);
405                 traverse_prefetch_metadata(td, &dnp->dn_blkptr[j], &czb);
406         }
407
408         if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) {
409                 SET_BOOKMARK(&czb, objset, object, 0, DMU_SPILL_BLKID);
410                 traverse_prefetch_metadata(td, &dnp->dn_spill, &czb);
411         }
412 }
413
414 static int
415 traverse_dnode(traverse_data_t *td, const dnode_phys_t *dnp,
416     uint64_t objset, uint64_t object)
417 {
418         int j, err = 0;
419         zbookmark_t czb;
420
421         for (j = 0; j < dnp->dn_nblkptr; j++) {
422                 SET_BOOKMARK(&czb, objset, object, dnp->dn_nlevels - 1, j);
423                 err = traverse_visitbp(td, dnp, &dnp->dn_blkptr[j], &czb);
424                 if (err != 0)
425                         break;
426         }
427
428         if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) {
429                 SET_BOOKMARK(&czb, objset, object, 0, DMU_SPILL_BLKID);
430                 err = traverse_visitbp(td, dnp, &dnp->dn_spill, &czb);
431         }
432         return (err);
433 }
434
435 /* ARGSUSED */
436 static int
437 traverse_prefetcher(spa_t *spa, zilog_t *zilog, const blkptr_t *bp,
438     const zbookmark_t *zb, const dnode_phys_t *dnp, void *arg)
439 {
440         prefetch_data_t *pfd = arg;
441         uint32_t aflags = ARC_NOWAIT | ARC_PREFETCH;
442
443         ASSERT(pfd->pd_blks_fetched >= 0);
444         if (pfd->pd_cancel)
445                 return (SET_ERROR(EINTR));
446
447         if (BP_IS_HOLE(bp) || BP_IS_EMBEDDED(bp) ||
448             !((pfd->pd_flags & TRAVERSE_PREFETCH_DATA) ||
449             BP_GET_TYPE(bp) == DMU_OT_DNODE || BP_GET_LEVEL(bp) > 0) ||
450             BP_GET_TYPE(bp) == DMU_OT_INTENT_LOG)
451                 return (0);
452
453         mutex_enter(&pfd->pd_mtx);
454         while (!pfd->pd_cancel && pfd->pd_blks_fetched >= pfd->pd_blks_max)
455                 cv_wait(&pfd->pd_cv, &pfd->pd_mtx);
456         pfd->pd_blks_fetched++;
457         cv_broadcast(&pfd->pd_cv);
458         mutex_exit(&pfd->pd_mtx);
459
460         (void) arc_read(NULL, spa, bp, NULL, NULL, ZIO_PRIORITY_ASYNC_READ,
461             ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE, &aflags, zb);
462
463         return (0);
464 }
465
466 static void
467 traverse_prefetch_thread(void *arg)
468 {
469         traverse_data_t *td_main = arg;
470         traverse_data_t td = *td_main;
471         zbookmark_t czb;
472
473         td.td_func = traverse_prefetcher;
474         td.td_arg = td_main->td_pfd;
475         td.td_pfd = NULL;
476
477         SET_BOOKMARK(&czb, td.td_objset,
478             ZB_ROOT_OBJECT, ZB_ROOT_LEVEL, ZB_ROOT_BLKID);
479         (void) traverse_visitbp(&td, NULL, td.td_rootbp, &czb);
480
481         mutex_enter(&td_main->td_pfd->pd_mtx);
482         td_main->td_pfd->pd_exited = B_TRUE;
483         cv_broadcast(&td_main->td_pfd->pd_cv);
484         mutex_exit(&td_main->td_pfd->pd_mtx);
485 }
486
487 /*
488  * NB: dataset must not be changing on-disk (eg, is a snapshot or we are
489  * in syncing context).
490  */
491 static int
492 traverse_impl(spa_t *spa, dsl_dataset_t *ds, uint64_t objset, blkptr_t *rootbp,
493     uint64_t txg_start, zbookmark_t *resume, int flags,
494     blkptr_cb_t func, void *arg)
495 {
496         traverse_data_t td;
497         prefetch_data_t pd = { 0 };
498         zbookmark_t czb;
499         int err;
500
501         ASSERT(ds == NULL || objset == ds->ds_object);
502         ASSERT(!(flags & TRAVERSE_PRE) || !(flags & TRAVERSE_POST));
503
504         /*
505          * The data prefetching mechanism (the prefetch thread) is incompatible
506          * with resuming from a bookmark.
507          */
508         ASSERT(resume == NULL || !(flags & TRAVERSE_PREFETCH_DATA));
509
510         td.td_spa = spa;
511         td.td_objset = objset;
512         td.td_rootbp = rootbp;
513         td.td_min_txg = txg_start;
514         td.td_resume = resume;
515         td.td_func = func;
516         td.td_arg = arg;
517         td.td_pfd = &pd;
518         td.td_flags = flags;
519         td.td_paused = B_FALSE;
520
521         pd.pd_blks_max = zfs_pd_blks_max;
522         pd.pd_flags = flags;
523         mutex_init(&pd.pd_mtx, NULL, MUTEX_DEFAULT, NULL);
524         cv_init(&pd.pd_cv, NULL, CV_DEFAULT, NULL);
525
526         /* See comment on ZIL traversal in dsl_scan_visitds. */
527         if (ds != NULL && !dsl_dataset_is_snapshot(ds) && !BP_IS_HOLE(rootbp)) {
528                 uint32_t flags = ARC_WAIT;
529                 objset_phys_t *osp;
530                 arc_buf_t *buf;
531
532                 err = arc_read(NULL, td.td_spa, rootbp,
533                     arc_getbuf_func, &buf,
534                     ZIO_PRIORITY_ASYNC_READ, ZIO_FLAG_CANFAIL, &flags, NULL);
535                 if (err != 0)
536                         return (err);
537
538                 osp = buf->b_data;
539                 traverse_zil(&td, &osp->os_zil_header);
540                 (void) arc_buf_remove_ref(buf, &buf);
541         }
542
543         if (!(flags & TRAVERSE_PREFETCH_DATA) ||
544             0 == taskq_dispatch(system_taskq, traverse_prefetch_thread,
545             &td, TQ_NOQUEUE))
546                 pd.pd_exited = B_TRUE;
547
548         SET_BOOKMARK(&czb, td.td_objset,
549             ZB_ROOT_OBJECT, ZB_ROOT_LEVEL, ZB_ROOT_BLKID);
550         err = traverse_visitbp(&td, NULL, rootbp, &czb);
551
552         mutex_enter(&pd.pd_mtx);
553         pd.pd_cancel = B_TRUE;
554         cv_broadcast(&pd.pd_cv);
555         while (!pd.pd_exited)
556                 cv_wait(&pd.pd_cv, &pd.pd_mtx);
557         mutex_exit(&pd.pd_mtx);
558
559         mutex_destroy(&pd.pd_mtx);
560         cv_destroy(&pd.pd_cv);
561
562         return (err);
563 }
564
565 /*
566  * NB: dataset must not be changing on-disk (eg, is a snapshot or we are
567  * in syncing context).
568  */
569 int
570 traverse_dataset(dsl_dataset_t *ds, uint64_t txg_start, int flags,
571     blkptr_cb_t func, void *arg)
572 {
573         return (traverse_impl(ds->ds_dir->dd_pool->dp_spa, ds, ds->ds_object,
574             &ds->ds_phys->ds_bp, txg_start, NULL, flags, func, arg));
575 }
576
577 int
578 traverse_dataset_destroyed(spa_t *spa, blkptr_t *blkptr,
579     uint64_t txg_start, zbookmark_t *resume, int flags,
580     blkptr_cb_t func, void *arg)
581 {
582         return (traverse_impl(spa, NULL, ZB_DESTROYED_OBJSET,
583             blkptr, txg_start, resume, flags, func, arg));
584 }
585
586 /*
587  * NB: pool must not be changing on-disk (eg, from zdb or sync context).
588  */
589 int
590 traverse_pool(spa_t *spa, uint64_t txg_start, int flags,
591     blkptr_cb_t func, void *arg)
592 {
593         int err;
594         uint64_t obj;
595         dsl_pool_t *dp = spa_get_dsl(spa);
596         objset_t *mos = dp->dp_meta_objset;
597         boolean_t hard = (flags & TRAVERSE_HARD);
598
599         /* visit the MOS */
600         err = traverse_impl(spa, NULL, 0, spa_get_rootblkptr(spa),
601             txg_start, NULL, flags, func, arg);
602         if (err != 0)
603                 return (err);
604
605         /* visit each dataset */
606         for (obj = 1; err == 0;
607             err = dmu_object_next(mos, &obj, FALSE, txg_start)) {
608                 dmu_object_info_t doi;
609
610                 err = dmu_object_info(mos, obj, &doi);
611                 if (err != 0) {
612                         if (hard)
613                                 continue;
614                         break;
615                 }
616
617                 if (doi.doi_bonus_type == DMU_OT_DSL_DATASET) {
618                         dsl_dataset_t *ds;
619                         uint64_t txg = txg_start;
620
621                         dsl_pool_config_enter(dp, FTAG);
622                         err = dsl_dataset_hold_obj(dp, obj, FTAG, &ds);
623                         dsl_pool_config_exit(dp, FTAG);
624                         if (err != 0) {
625                                 if (hard)
626                                         continue;
627                                 break;
628                         }
629                         if (ds->ds_phys->ds_prev_snap_txg > txg)
630                                 txg = ds->ds_phys->ds_prev_snap_txg;
631                         err = traverse_dataset(ds, txg, flags, func, arg);
632                         dsl_dataset_rele(ds, FTAG);
633                         if (err != 0)
634                                 break;
635                 }
636         }
637         if (err == ESRCH)
638                 err = 0;
639         return (err);
640 }