1 // SPDX-License-Identifier: CDDL-1.0
2 /*
3 * CDDL HEADER START
4 *
5 * The contents of this file are subject to the terms of the
6 * Common Development and Distribution License (the "License").
7 * You may not use this file except in compliance with the License.
8 *
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or https://opensource.org/licenses/CDDL-1.0.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
13 *
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
19 *
20 * CDDL HEADER END
21 */
22 /*
23 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Copyright (c) 2011, 2021 by Delphix. All rights reserved.
25 * Copyright 2016 Gary Mills
26 * Copyright (c) 2017, 2019, Datto Inc. All rights reserved.
27 * Copyright (c) 2015, Nexenta Systems, Inc. All rights reserved.
28 * Copyright 2019 Joyent, Inc.
29 */
30
31 #include <sys/dsl_scan.h>
32 #include <sys/dsl_pool.h>
33 #include <sys/dsl_dataset.h>
34 #include <sys/dsl_prop.h>
35 #include <sys/dsl_dir.h>
36 #include <sys/dsl_synctask.h>
37 #include <sys/dnode.h>
38 #include <sys/dmu_tx.h>
39 #include <sys/dmu_objset.h>
40 #include <sys/arc.h>
41 #include <sys/arc_impl.h>
42 #include <sys/zap.h>
43 #include <sys/zio.h>
44 #include <sys/zfs_context.h>
45 #include <sys/fs/zfs.h>
46 #include <sys/zfs_znode.h>
47 #include <sys/spa_impl.h>
48 #include <sys/vdev_impl.h>
49 #include <sys/zil_impl.h>
50 #include <sys/zio_checksum.h>
51 #include <sys/brt.h>
52 #include <sys/ddt.h>
53 #include <sys/sa.h>
54 #include <sys/sa_impl.h>
55 #include <sys/zfeature.h>
56 #include <sys/abd.h>
57 #include <sys/range_tree.h>
58 #include <sys/dbuf.h>
59 #ifdef _KERNEL
60 #include <sys/zfs_vfsops.h>
61 #endif
62
63 /*
64 * Grand theory statement on scan queue sorting
65 *
66 * Scanning is implemented by recursively traversing all indirection levels
67 * in an object and reading all blocks referenced from said objects. This
68 * results in us approximately traversing the object from lowest logical
69 * offset to the highest. For best performance, we would want the logical
70 * blocks to be physically contiguous. However, this is frequently not the
71 * case with pools given the allocation patterns of copy-on-write filesystems.
72 * So instead, we put the I/Os into a reordering queue and issue them in a
73 * way that will most benefit physical disks (LBA-order).
74 *
75 * Queue management:
76 *
77 * Ideally, we would want to scan all metadata and queue up all block I/O
78 * prior to starting to issue it, because that allows us to do an optimal
79 * sorting job. This can however consume large amounts of memory. Therefore
80 * we continuously monitor the size of the queues and constrain them to 5%
81 * (zfs_scan_mem_lim_fact) of physmem. If the queues grow larger than this
82 * limit, we clear out a few of the largest extents at the head of the queues
83 * to make room for more scanning. Hopefully, these extents will be fairly
84 * large and contiguous, allowing us to approach sequential I/O throughput
85 * even without a fully sorted tree.
86 *
87 * Metadata scanning takes place in dsl_scan_visit(), which is called from
88 * dsl_scan_sync() every spa_sync(). If we have either fully scanned all
89 * metadata on the pool, or we need to make room in memory because our
90 * queues are too large, dsl_scan_visit() is postponed and
91 * scan_io_queues_run() is called from dsl_scan_sync() instead. This implies
92 * that metadata scanning and queued I/O issuing are mutually exclusive. This
93 * allows us to provide maximum sequential I/O throughput for the majority of
94 * I/O's issued since sequential I/O performance is significantly negatively
95 * impacted if it is interleaved with random I/O.
96 *
97 * Implementation Notes
98 *
99 * One side effect of the queued scanning algorithm is that the scanning code
100 * needs to be notified whenever a block is freed. This is needed to allow
101 * the scanning code to remove these I/Os from the issuing queue. Additionally,
102 * we do not attempt to queue gang blocks to be issued sequentially since this
103 * is very hard to do and would have an extremely limited performance benefit.
104 * Instead, we simply issue gang I/Os as soon as we find them using the legacy
105 * algorithm.
106 *
107 * Backwards compatibility
108 *
109 * This new algorithm is backwards compatible with the legacy on-disk data
110 * structures (and therefore does not require a new feature flag).
111 * Periodically during scanning (see zfs_scan_checkpoint_intval), the scan
112 * will stop scanning metadata (in logical order) and wait for all outstanding
113 * sorted I/O to complete. Once this is done, we write out a checkpoint
114 * bookmark, indicating that we have scanned everything logically before it.
115 * If the pool is imported on a machine without the new sorting algorithm,
116 * the scan simply resumes from the last checkpoint using the legacy algorithm.
117 */
118
119 typedef int (scan_cb_t)(dsl_pool_t *, const blkptr_t *,
120 const zbookmark_phys_t *);
121
122 static scan_cb_t dsl_scan_scrub_cb;
123
124 static int scan_ds_queue_compare(const void *a, const void *b);
125 static int scan_prefetch_queue_compare(const void *a, const void *b);
126 static void scan_ds_queue_clear(dsl_scan_t *scn);
127 static void scan_ds_prefetch_queue_clear(dsl_scan_t *scn);
128 static boolean_t scan_ds_queue_contains(dsl_scan_t *scn, uint64_t dsobj,
129 uint64_t *txg);
130 static void scan_ds_queue_insert(dsl_scan_t *scn, uint64_t dsobj, uint64_t txg);
131 static void scan_ds_queue_remove(dsl_scan_t *scn, uint64_t dsobj);
132 static void scan_ds_queue_sync(dsl_scan_t *scn, dmu_tx_t *tx);
133 static uint64_t dsl_scan_count_data_disks(spa_t *spa);
134 static void read_by_block_level(dsl_scan_t *scn, zbookmark_phys_t zb);
135
136 extern uint_t zfs_vdev_async_write_active_min_dirty_percent;
137 static int zfs_scan_blkstats = 0;
138
139 /*
140 * 'zpool status' uses bytes processed per pass to report throughput and
141 * estimate time remaining. We define a pass to start when the scanning
142 * phase completes for a sequential resilver. Optionally, this value
143 * may be used to reset the pass statistics every N txgs to provide an
144 * estimated completion time based on currently observed performance.
145 */
146 static uint_t zfs_scan_report_txgs = 0;
147
148 /*
149 * By default zfs will check to ensure it is not over the hard memory
150 * limit before each txg. If finer-grained control of this is needed
151 * this value can be set to 1 to enable checking before scanning each
152 * block.
153 */
154 static int zfs_scan_strict_mem_lim = B_FALSE;
155
156 /*
157 * Maximum number of parallelly executed bytes per leaf vdev. We attempt
158 * to strike a balance here between keeping the vdev queues full of I/Os
159 * at all times and not overflowing the queues to cause long latency,
160 * which would cause long txg sync times. No matter what, we will not
161 * overload the drives with I/O, since that is protected by
162 * zfs_vdev_scrub_max_active.
163 */
164 static uint64_t zfs_scan_vdev_limit = 16 << 20;
165
166 static uint_t zfs_scan_issue_strategy = 0;
167
168 /* don't queue & sort zios, go direct */
169 static int zfs_scan_legacy = B_FALSE;
170 static uint64_t zfs_scan_max_ext_gap = 2 << 20; /* in bytes */
171
172 /*
173 * fill_weight is non-tunable at runtime, so we copy it at module init from
174 * zfs_scan_fill_weight. Runtime adjustments to zfs_scan_fill_weight would
175 * break queue sorting.
176 */
177 static uint_t zfs_scan_fill_weight = 3;
178 static uint64_t fill_weight;
179
180 /* See dsl_scan_should_clear() for details on the memory limit tunables */
181 static const uint64_t zfs_scan_mem_lim_min = 16 << 20; /* bytes */
182 static const uint64_t zfs_scan_mem_lim_soft_max = 128 << 20; /* bytes */
183
184
185 /* fraction of physmem */
186 static uint_t zfs_scan_mem_lim_fact = 20;
187
188 /* fraction of mem lim above */
189 static uint_t zfs_scan_mem_lim_soft_fact = 20;
190
191 /* minimum milliseconds to scrub per txg */
192 static uint_t zfs_scrub_min_time_ms = 750;
193
194 /* minimum milliseconds to obsolete per txg */
195 static uint_t zfs_obsolete_min_time_ms = 500;
196
197 /* minimum milliseconds to free per txg */
198 static uint_t zfs_free_min_time_ms = 500;
199
200 /* minimum milliseconds to resilver per txg */
201 static uint_t zfs_resilver_min_time_ms = 1500;
202
203 static uint_t zfs_scan_checkpoint_intval = 7200; /* in seconds */
204 int zfs_scan_suspend_progress = 0; /* set to prevent scans from progressing */
205 static int zfs_no_scrub_io = B_FALSE; /* set to disable scrub i/o */
206 static int zfs_no_scrub_prefetch = B_FALSE; /* set to disable scrub prefetch */
207 static const ddt_class_t zfs_scrub_ddt_class_max = DDT_CLASS_DUPLICATE;
208 /* max number of blocks to free in a single TXG */
209 static uint64_t zfs_async_block_max_blocks = UINT64_MAX;
210 /* max number of dedup blocks to free in a single TXG */
211 static uint64_t zfs_max_async_dedup_frees = 250000;
212
213 /*
214 * After freeing this many async ZIOs (dedup, clone, gang blocks), wait for
215 * them to complete before continuing. This prevents unbounded I/O queueing.
216 */
217 static uint64_t zfs_async_free_zio_wait_interval = 2000;
218
219 /* set to disable resilver deferring */
220 static int zfs_resilver_disable_defer = B_FALSE;
221
222 /* Don't defer a resilver if the one in progress only got this far: */
223 static uint_t zfs_resilver_defer_percent = 10;
224
225 /*
226 * Number of TXGs to wait after importing before starting background
227 * work (async destroys, scan/scrub/resilver operations). This allows
228 * the import command and filesystem mounts to complete quickly without
229 * being delayed by background activities. The value is somewhat arbitrary
230 * since userspace triggers filesystem mounts asynchronously, but 5 TXGs
231 * provides a reasonable window for import completion in most cases.
232 */
233 static uint_t zfs_import_defer_txgs = 5;
234
235 #define DSL_SCAN_IS_SCRUB_RESILVER(scn) \
236 ((scn)->scn_phys.scn_func == POOL_SCAN_SCRUB || \
237 (scn)->scn_phys.scn_func == POOL_SCAN_RESILVER)
238
239 #define DSL_SCAN_IS_SCRUB(scn) \
240 ((scn)->scn_phys.scn_func == POOL_SCAN_SCRUB)
241
242 #define DSL_SCAN_IS_RESILVER(scn) \
243 ((scn)->scn_phys.scn_func == POOL_SCAN_RESILVER)
244
245 /*
246 * Enable/disable the processing of the free_bpobj object.
247 */
248 static int zfs_free_bpobj_enabled = 1;
249
250 /* Error blocks to be scrubbed in one txg. */
251 static uint_t zfs_scrub_error_blocks_per_txg = 1 << 12;
252
253 /* the order has to match pool_scan_type */
254 static scan_cb_t *scan_funcs[POOL_SCAN_FUNCS] = {
255 NULL,
256 dsl_scan_scrub_cb, /* POOL_SCAN_SCRUB */
257 dsl_scan_scrub_cb, /* POOL_SCAN_RESILVER */
258 };
259
260 /* In core node for the scn->scn_queue. Represents a dataset to be scanned */
261 typedef struct {
262 uint64_t sds_dsobj;
263 uint64_t sds_txg;
264 avl_node_t sds_node;
265 } scan_ds_t;
266
267 /*
268 * This controls what conditions are placed on dsl_scan_sync_state():
269 * SYNC_OPTIONAL) write out scn_phys iff scn_queues_pending == 0
270 * SYNC_MANDATORY) write out scn_phys always. scn_queues_pending must be 0.
271 * SYNC_CACHED) if scn_queues_pending == 0, write out scn_phys. Otherwise
272 * write out the scn_phys_cached version.
273 * See dsl_scan_sync_state for details.
274 */
275 typedef enum {
276 SYNC_OPTIONAL,
277 SYNC_MANDATORY,
278 SYNC_CACHED
279 } state_sync_type_t;
280
281 /*
282 * This struct represents the minimum information needed to reconstruct a
283 * zio for sequential scanning. This is useful because many of these will
284 * accumulate in the sequential IO queues before being issued, so saving
285 * memory matters here.
286 */
287 typedef struct scan_io {
288 /* fields from blkptr_t */
289 uint64_t sio_blk_prop;
290 uint64_t sio_phys_birth;
291 uint64_t sio_birth;
292 zio_cksum_t sio_cksum;
293 uint32_t sio_nr_dvas;
294
295 /* fields from zio_t */
296 uint32_t sio_flags;
297 zbookmark_phys_t sio_zb;
298
299 /* members for queue sorting */
300 union {
301 avl_node_t sio_addr_node; /* link into issuing queue */
302 list_node_t sio_list_node; /* link for issuing to disk */
303 } sio_nodes;
304
305 /*
306 * There may be up to SPA_DVAS_PER_BP DVAs here from the bp,
307 * depending on how many were in the original bp. Only the
308 * first DVA is really used for sorting and issuing purposes.
309 * The other DVAs (if provided) simply exist so that the zio
310 * layer can find additional copies to repair from in the
311 * event of an error. This array must go at the end of the
312 * struct to allow this for the variable number of elements.
313 */
314 dva_t sio_dva[];
315 } scan_io_t;
316
317 #define SIO_SET_OFFSET(sio, x) DVA_SET_OFFSET(&(sio)->sio_dva[0], x)
318 #define SIO_SET_ASIZE(sio, x) DVA_SET_ASIZE(&(sio)->sio_dva[0], x)
319 #define SIO_GET_OFFSET(sio) DVA_GET_OFFSET(&(sio)->sio_dva[0])
320 #define SIO_GET_ASIZE(sio) DVA_GET_ASIZE(&(sio)->sio_dva[0])
321 #define SIO_GET_END_OFFSET(sio) \
322 (SIO_GET_OFFSET(sio) + SIO_GET_ASIZE(sio))
323 #define SIO_GET_MUSED(sio) \
324 (sizeof (scan_io_t) + ((sio)->sio_nr_dvas * sizeof (dva_t)))
325
326 struct dsl_scan_io_queue {
327 dsl_scan_t *q_scn; /* associated dsl_scan_t */
328 vdev_t *q_vd; /* top-level vdev that this queue represents */
329 zio_t *q_zio; /* scn_zio_root child for waiting on IO */
330
331 /* trees used for sorting I/Os and extents of I/Os */
332 zfs_range_tree_t *q_exts_by_addr;
333 zfs_btree_t q_exts_by_size;
334 avl_tree_t q_sios_by_addr;
335 uint64_t q_sio_memused;
336 uint64_t q_last_ext_addr;
337
338 /* members for zio rate limiting */
339 uint64_t q_maxinflight_bytes;
340 uint64_t q_inflight_bytes;
341 kcondvar_t q_zio_cv; /* used under vd->vdev_scan_io_queue_lock */
342
343 /* per txg statistics */
344 uint64_t q_total_seg_size_this_txg;
345 uint64_t q_segs_this_txg;
346 uint64_t q_total_zio_size_this_txg;
347 uint64_t q_zios_this_txg;
348 };
349
350 /* private data for dsl_scan_prefetch_cb() */
351 typedef struct scan_prefetch_ctx {
352 zfs_refcount_t spc_refcnt; /* refcount for memory management */
353 dsl_scan_t *spc_scn; /* dsl_scan_t for the pool */
354 boolean_t spc_root; /* is this prefetch for an objset? */
355 uint8_t spc_indblkshift; /* dn_indblkshift of current dnode */
356 uint16_t spc_datablkszsec; /* dn_idatablkszsec of current dnode */
357 } scan_prefetch_ctx_t;
358
359 /* private data for dsl_scan_prefetch() */
360 typedef struct scan_prefetch_issue_ctx {
361 avl_node_t spic_avl_node; /* link into scn->scn_prefetch_queue */
362 scan_prefetch_ctx_t *spic_spc; /* spc for the callback */
363 blkptr_t spic_bp; /* bp to prefetch */
364 zbookmark_phys_t spic_zb; /* bookmark to prefetch */
365 } scan_prefetch_issue_ctx_t;
366
367 static void scan_exec_io(dsl_pool_t *dp, const blkptr_t *bp, int zio_flags,
368 const zbookmark_phys_t *zb, dsl_scan_io_queue_t *queue);
369 static void scan_io_queue_insert_impl(dsl_scan_io_queue_t *queue,
370 scan_io_t *sio);
371
372 static dsl_scan_io_queue_t *scan_io_queue_create(vdev_t *vd);
373 static void scan_io_queues_destroy(dsl_scan_t *scn);
374
375 static kmem_cache_t *sio_cache[SPA_DVAS_PER_BP];
376
377 /* sio->sio_nr_dvas must be set so we know which cache to free from */
378 static void
sio_free(scan_io_t * sio)379 sio_free(scan_io_t *sio)
380 {
381 ASSERT3U(sio->sio_nr_dvas, >, 0);
382 ASSERT3U(sio->sio_nr_dvas, <=, SPA_DVAS_PER_BP);
383
384 kmem_cache_free(sio_cache[sio->sio_nr_dvas - 1], sio);
385 }
386
387 /* It is up to the caller to set sio->sio_nr_dvas for freeing */
388 static scan_io_t *
sio_alloc(unsigned short nr_dvas)389 sio_alloc(unsigned short nr_dvas)
390 {
391 ASSERT3U(nr_dvas, >, 0);
392 ASSERT3U(nr_dvas, <=, SPA_DVAS_PER_BP);
393
394 return (kmem_cache_alloc(sio_cache[nr_dvas - 1], KM_SLEEP));
395 }
396
397 void
scan_init(void)398 scan_init(void)
399 {
400 /*
401 * This is used in ext_size_compare() to weight segments
402 * based on how sparse they are. This cannot be changed
403 * mid-scan and the tree comparison functions don't currently
404 * have a mechanism for passing additional context to the
405 * compare functions. Thus we store this value globally and
406 * we only allow it to be set at module initialization time
407 */
408 fill_weight = zfs_scan_fill_weight;
409
410 for (int i = 0; i < SPA_DVAS_PER_BP; i++) {
411 char name[36];
412
413 (void) snprintf(name, sizeof (name), "sio_cache_%d", i);
414 sio_cache[i] = kmem_cache_create(name,
415 (sizeof (scan_io_t) + ((i + 1) * sizeof (dva_t))),
416 0, NULL, NULL, NULL, NULL, NULL, 0);
417 }
418 }
419
420 void
scan_fini(void)421 scan_fini(void)
422 {
423 for (int i = 0; i < SPA_DVAS_PER_BP; i++) {
424 kmem_cache_destroy(sio_cache[i]);
425 }
426 }
427
428 static inline boolean_t
dsl_scan_is_running(const dsl_scan_t * scn)429 dsl_scan_is_running(const dsl_scan_t *scn)
430 {
431 return (scn->scn_phys.scn_state == DSS_SCANNING);
432 }
433
434 boolean_t
dsl_scan_resilvering(dsl_pool_t * dp)435 dsl_scan_resilvering(dsl_pool_t *dp)
436 {
437 return (dsl_scan_is_running(dp->dp_scan) &&
438 dp->dp_scan->scn_phys.scn_func == POOL_SCAN_RESILVER);
439 }
440
441 static inline void
sio2bp(const scan_io_t * sio,blkptr_t * bp)442 sio2bp(const scan_io_t *sio, blkptr_t *bp)
443 {
444 memset(bp, 0, sizeof (*bp));
445 bp->blk_prop = sio->sio_blk_prop;
446 BP_SET_PHYSICAL_BIRTH(bp, sio->sio_phys_birth);
447 BP_SET_LOGICAL_BIRTH(bp, sio->sio_birth);
448 bp->blk_fill = 1; /* we always only work with data pointers */
449 bp->blk_cksum = sio->sio_cksum;
450
451 ASSERT3U(sio->sio_nr_dvas, >, 0);
452 ASSERT3U(sio->sio_nr_dvas, <=, SPA_DVAS_PER_BP);
453
454 memcpy(bp->blk_dva, sio->sio_dva, sio->sio_nr_dvas * sizeof (dva_t));
455 }
456
457 static inline void
bp2sio(const blkptr_t * bp,scan_io_t * sio,int dva_i)458 bp2sio(const blkptr_t *bp, scan_io_t *sio, int dva_i)
459 {
460 sio->sio_blk_prop = bp->blk_prop;
461 sio->sio_phys_birth = BP_GET_RAW_PHYSICAL_BIRTH(bp);
462 sio->sio_birth = BP_GET_LOGICAL_BIRTH(bp);
463 sio->sio_cksum = bp->blk_cksum;
464 sio->sio_nr_dvas = BP_GET_NDVAS(bp);
465
466 /*
467 * Copy the DVAs to the sio. We need all copies of the block so
468 * that the self healing code can use the alternate copies if the
469 * first is corrupted. We want the DVA at index dva_i to be first
470 * in the sio since this is the primary one that we want to issue.
471 */
472 for (int i = 0, j = dva_i; i < sio->sio_nr_dvas; i++, j++) {
473 sio->sio_dva[i] = bp->blk_dva[j % sio->sio_nr_dvas];
474 }
475 }
476
477 int
dsl_scan_init(dsl_pool_t * dp,uint64_t txg)478 dsl_scan_init(dsl_pool_t *dp, uint64_t txg)
479 {
480 int err;
481 dsl_scan_t *scn;
482 spa_t *spa = dp->dp_spa;
483 uint64_t f;
484
485 scn = dp->dp_scan = kmem_zalloc(sizeof (dsl_scan_t), KM_SLEEP);
486 scn->scn_dp = dp;
487
488 /*
489 * It's possible that we're resuming a scan after a reboot so
490 * make sure that the scan_async_destroying flag is initialized
491 * appropriately.
492 */
493 ASSERT(!scn->scn_async_destroying);
494 scn->scn_async_destroying = spa_feature_is_active(dp->dp_spa,
495 SPA_FEATURE_ASYNC_DESTROY);
496
497 /*
498 * Calculate the max number of in-flight bytes for pool-wide
499 * scanning operations (minimum 1MB, maximum 1/4 of arc_c_max).
500 * Limits for the issuing phase are done per top-level vdev and
501 * are handled separately.
502 */
503 scn->scn_maxinflight_bytes = MIN(arc_c_max / 4, MAX(1ULL << 20,
504 zfs_scan_vdev_limit * dsl_scan_count_data_disks(spa)));
505
506 avl_create(&scn->scn_queue, scan_ds_queue_compare, sizeof (scan_ds_t),
507 offsetof(scan_ds_t, sds_node));
508 mutex_init(&scn->scn_queue_lock, NULL, MUTEX_DEFAULT, NULL);
509 avl_create(&scn->scn_prefetch_queue, scan_prefetch_queue_compare,
510 sizeof (scan_prefetch_issue_ctx_t),
511 offsetof(scan_prefetch_issue_ctx_t, spic_avl_node));
512
513 err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
514 "scrub_func", sizeof (uint64_t), 1, &f);
515 if (err == 0) {
516 /*
517 * There was an old-style scrub in progress. Restart a
518 * new-style scrub from the beginning.
519 */
520 scn->scn_restart_txg = txg;
521 zfs_dbgmsg("old-style scrub was in progress for %s; "
522 "restarting new-style scrub in txg %llu",
523 spa->spa_name,
524 (longlong_t)scn->scn_restart_txg);
525
526 /*
527 * Load the queue obj from the old location so that it
528 * can be freed by dsl_scan_done().
529 */
530 (void) zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
531 "scrub_queue", sizeof (uint64_t), 1,
532 &scn->scn_phys.scn_queue_obj);
533 } else {
534 err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
535 DMU_POOL_ERRORSCRUB, sizeof (uint64_t),
536 ERRORSCRUB_PHYS_NUMINTS, &scn->errorscrub_phys);
537
538 if (err != 0 && err != ENOENT)
539 return (err);
540
541 err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
542 DMU_POOL_SCAN, sizeof (uint64_t), SCAN_PHYS_NUMINTS,
543 &scn->scn_phys);
544
545 /*
546 * Detect if the pool contains the signature of #2094. If it
547 * does properly update the scn->scn_phys structure and notify
548 * the administrator by setting an errata for the pool.
549 */
550 if (err == EOVERFLOW) {
551 uint64_t zaptmp[SCAN_PHYS_NUMINTS + 1];
552 VERIFY3S(SCAN_PHYS_NUMINTS, ==, 24);
553 VERIFY3S(offsetof(dsl_scan_phys_t, scn_flags), ==,
554 (23 * sizeof (uint64_t)));
555
556 err = zap_lookup(dp->dp_meta_objset,
557 DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_SCAN,
558 sizeof (uint64_t), SCAN_PHYS_NUMINTS + 1, &zaptmp);
559 if (err == 0) {
560 uint64_t overflow = zaptmp[SCAN_PHYS_NUMINTS];
561
562 if (overflow & ~DSL_SCAN_FLAGS_MASK ||
563 scn->scn_async_destroying) {
564 spa->spa_errata =
565 ZPOOL_ERRATA_ZOL_2094_ASYNC_DESTROY;
566 return (EOVERFLOW);
567 }
568
569 memcpy(&scn->scn_phys, zaptmp,
570 SCAN_PHYS_NUMINTS * sizeof (uint64_t));
571 scn->scn_phys.scn_flags = overflow;
572
573 /* Required scrub already in progress. */
574 if (scn->scn_phys.scn_state == DSS_FINISHED ||
575 scn->scn_phys.scn_state == DSS_CANCELED)
576 spa->spa_errata =
577 ZPOOL_ERRATA_ZOL_2094_SCRUB;
578 }
579 }
580
581 if (err == ENOENT)
582 return (0);
583 else if (err)
584 return (err);
585
586 /*
587 * We might be restarting after a reboot, so jump the issued
588 * counter to how far we've scanned. We know we're consistent
589 * up to here.
590 */
591 scn->scn_issued_before_pass = scn->scn_phys.scn_examined -
592 scn->scn_phys.scn_skipped;
593
594 if (dsl_scan_is_running(scn) &&
595 spa_prev_software_version(dp->dp_spa) < SPA_VERSION_SCAN) {
596 /*
597 * A new-type scrub was in progress on an old
598 * pool, and the pool was accessed by old
599 * software. Restart from the beginning, since
600 * the old software may have changed the pool in
601 * the meantime.
602 */
603 scn->scn_restart_txg = txg;
604 zfs_dbgmsg("new-style scrub for %s was modified "
605 "by old software; restarting in txg %llu",
606 spa->spa_name,
607 (longlong_t)scn->scn_restart_txg);
608 } else if (dsl_scan_resilvering(dp)) {
609 /*
610 * If a resilver is in progress and there are already
611 * errors, restart it instead of finishing this scan and
612 * then restarting it. If there haven't been any errors
613 * then remember that the incore DTL is valid.
614 */
615 if (scn->scn_phys.scn_errors > 0) {
616 scn->scn_restart_txg = txg;
617 zfs_dbgmsg("resilver can't excise DTL_MISSING "
618 "when finished; restarting on %s in txg "
619 "%llu",
620 spa->spa_name,
621 (u_longlong_t)scn->scn_restart_txg);
622 } else {
623 /* it's safe to excise DTL when finished */
624 spa->spa_scrub_started = B_TRUE;
625 }
626 }
627 }
628
629 memcpy(&scn->scn_phys_cached, &scn->scn_phys, sizeof (scn->scn_phys));
630
631 /* reload the queue into the in-core state */
632 if (scn->scn_phys.scn_queue_obj != 0) {
633 zap_cursor_t zc;
634 zap_attribute_t *za = zap_attribute_alloc();
635
636 for (zap_cursor_init(&zc, dp->dp_meta_objset,
637 scn->scn_phys.scn_queue_obj);
638 zap_cursor_retrieve(&zc, za) == 0;
639 (void) zap_cursor_advance(&zc)) {
640 scan_ds_queue_insert(scn,
641 zfs_strtonum(za->za_name, NULL),
642 za->za_first_integer);
643 }
644 zap_cursor_fini(&zc);
645 zap_attribute_free(za);
646 }
647
648 ddt_walk_init(spa, scn->scn_phys.scn_max_txg);
649
650 spa_scan_stat_init(spa);
651 vdev_scan_stat_init(spa->spa_root_vdev);
652
653 return (0);
654 }
655
656 void
dsl_scan_fini(dsl_pool_t * dp)657 dsl_scan_fini(dsl_pool_t *dp)
658 {
659 if (dp->dp_scan != NULL) {
660 dsl_scan_t *scn = dp->dp_scan;
661
662 if (scn->scn_taskq != NULL)
663 taskq_destroy(scn->scn_taskq);
664
665 scan_ds_queue_clear(scn);
666 avl_destroy(&scn->scn_queue);
667 mutex_destroy(&scn->scn_queue_lock);
668 scan_ds_prefetch_queue_clear(scn);
669 avl_destroy(&scn->scn_prefetch_queue);
670
671 kmem_free(dp->dp_scan, sizeof (dsl_scan_t));
672 dp->dp_scan = NULL;
673 }
674 }
675
676 static boolean_t
dsl_scan_restarting(dsl_scan_t * scn,dmu_tx_t * tx)677 dsl_scan_restarting(dsl_scan_t *scn, dmu_tx_t *tx)
678 {
679 return (scn->scn_restart_txg != 0 &&
680 scn->scn_restart_txg <= tx->tx_txg);
681 }
682
683 boolean_t
dsl_scan_resilver_scheduled(dsl_pool_t * dp)684 dsl_scan_resilver_scheduled(dsl_pool_t *dp)
685 {
686 return ((dp->dp_scan && dp->dp_scan->scn_restart_txg != 0) ||
687 (spa_async_tasks(dp->dp_spa) & SPA_ASYNC_RESILVER));
688 }
689
690 boolean_t
dsl_scan_scrubbing(const dsl_pool_t * dp)691 dsl_scan_scrubbing(const dsl_pool_t *dp)
692 {
693 dsl_scan_phys_t *scn_phys = &dp->dp_scan->scn_phys;
694
695 return (scn_phys->scn_state == DSS_SCANNING &&
696 scn_phys->scn_func == POOL_SCAN_SCRUB);
697 }
698
699 boolean_t
dsl_errorscrubbing(const dsl_pool_t * dp)700 dsl_errorscrubbing(const dsl_pool_t *dp)
701 {
702 dsl_errorscrub_phys_t *errorscrub_phys = &dp->dp_scan->errorscrub_phys;
703
704 return (errorscrub_phys->dep_state == DSS_ERRORSCRUBBING &&
705 errorscrub_phys->dep_func == POOL_SCAN_ERRORSCRUB);
706 }
707
708 boolean_t
dsl_errorscrub_is_paused(const dsl_scan_t * scn)709 dsl_errorscrub_is_paused(const dsl_scan_t *scn)
710 {
711 return (dsl_errorscrubbing(scn->scn_dp) &&
712 scn->errorscrub_phys.dep_paused_flags);
713 }
714
715 boolean_t
dsl_scan_is_paused_scrub(const dsl_scan_t * scn)716 dsl_scan_is_paused_scrub(const dsl_scan_t *scn)
717 {
718 return (dsl_scan_scrubbing(scn->scn_dp) &&
719 scn->scn_phys.scn_flags & DSF_SCRUB_PAUSED);
720 }
721
722 static void
dsl_errorscrub_sync_state(dsl_scan_t * scn,dmu_tx_t * tx)723 dsl_errorscrub_sync_state(dsl_scan_t *scn, dmu_tx_t *tx)
724 {
725 scn->errorscrub_phys.dep_cursor =
726 zap_cursor_serialize(&scn->errorscrub_cursor);
727
728 VERIFY0(zap_update(scn->scn_dp->dp_meta_objset,
729 DMU_POOL_DIRECTORY_OBJECT,
730 DMU_POOL_ERRORSCRUB, sizeof (uint64_t), ERRORSCRUB_PHYS_NUMINTS,
731 &scn->errorscrub_phys, tx));
732 }
733
734 static void
dsl_errorscrub_setup_sync(void * arg,dmu_tx_t * tx)735 dsl_errorscrub_setup_sync(void *arg, dmu_tx_t *tx)
736 {
737 dsl_scan_t *scn = dmu_tx_pool(tx)->dp_scan;
738 pool_scan_func_t *funcp = arg;
739 dsl_pool_t *dp = scn->scn_dp;
740 spa_t *spa = dp->dp_spa;
741
742 ASSERT(!dsl_scan_is_running(scn));
743 ASSERT(!dsl_errorscrubbing(scn->scn_dp));
744 ASSERT(*funcp > POOL_SCAN_NONE && *funcp < POOL_SCAN_FUNCS);
745
746 memset(&scn->errorscrub_phys, 0, sizeof (scn->errorscrub_phys));
747 scn->errorscrub_phys.dep_func = *funcp;
748 scn->errorscrub_phys.dep_state = DSS_ERRORSCRUBBING;
749 scn->errorscrub_phys.dep_start_time = gethrestime_sec();
750 scn->errorscrub_phys.dep_to_examine = spa_get_last_errlog_size(spa);
751 scn->errorscrub_phys.dep_examined = 0;
752 scn->errorscrub_phys.dep_errors = 0;
753 scn->errorscrub_phys.dep_cursor = 0;
754 zap_cursor_init_serialized(&scn->errorscrub_cursor,
755 spa->spa_meta_objset, spa->spa_errlog_last,
756 scn->errorscrub_phys.dep_cursor);
757
758 vdev_config_dirty(spa->spa_root_vdev);
759 spa_event_notify(spa, NULL, NULL, ESC_ZFS_ERRORSCRUB_START);
760
761 dsl_errorscrub_sync_state(scn, tx);
762
763 spa_history_log_internal(spa, "error scrub setup", tx,
764 "func=%u mintxg=%u maxtxg=%llu",
765 *funcp, 0, (u_longlong_t)tx->tx_txg);
766 }
767
768 static int
dsl_errorscrub_setup_check(void * arg,dmu_tx_t * tx)769 dsl_errorscrub_setup_check(void *arg, dmu_tx_t *tx)
770 {
771 (void) arg;
772 dsl_scan_t *scn = dmu_tx_pool(tx)->dp_scan;
773
774 if (dsl_scan_is_running(scn) || (dsl_errorscrubbing(scn->scn_dp))) {
775 return (SET_ERROR(EBUSY));
776 }
777
778 if (spa_get_last_errlog_size(scn->scn_dp->dp_spa) == 0) {
779 return (ECANCELED);
780 }
781 return (0);
782 }
783
784 /*
785 * Writes out a persistent dsl_scan_phys_t record to the pool directory.
786 * Because we can be running in the block sorting algorithm, we do not always
787 * want to write out the record, only when it is "safe" to do so. This safety
788 * condition is achieved by making sure that the sorting queues are empty
789 * (scn_queues_pending == 0). When this condition is not true, the sync'd state
790 * is inconsistent with how much actual scanning progress has been made. The
791 * kind of sync to be performed is specified by the sync_type argument. If the
792 * sync is optional, we only sync if the queues are empty. If the sync is
793 * mandatory, we do a hard ASSERT to make sure that the queues are empty. The
794 * third possible state is a "cached" sync. This is done in response to:
795 * 1) The dataset that was in the last sync'd dsl_scan_phys_t having been
796 * destroyed, so we wouldn't be able to restart scanning from it.
797 * 2) The snapshot that was in the last sync'd dsl_scan_phys_t having been
798 * superseded by a newer snapshot.
799 * 3) The dataset that was in the last sync'd dsl_scan_phys_t having been
800 * swapped with its clone.
801 * In all cases, a cached sync simply rewrites the last record we've written,
802 * just slightly modified. For the modifications that are performed to the
803 * last written dsl_scan_phys_t, see dsl_scan_ds_destroyed,
804 * dsl_scan_ds_snapshotted and dsl_scan_ds_clone_swapped.
805 */
806 static void
dsl_scan_sync_state(dsl_scan_t * scn,dmu_tx_t * tx,state_sync_type_t sync_type)807 dsl_scan_sync_state(dsl_scan_t *scn, dmu_tx_t *tx, state_sync_type_t sync_type)
808 {
809 int i;
810 spa_t *spa = scn->scn_dp->dp_spa;
811
812 ASSERT(sync_type != SYNC_MANDATORY || scn->scn_queues_pending == 0);
813 if (scn->scn_queues_pending == 0) {
814 for (i = 0; i < spa->spa_root_vdev->vdev_children; i++) {
815 vdev_t *vd = spa->spa_root_vdev->vdev_child[i];
816 dsl_scan_io_queue_t *q = vd->vdev_scan_io_queue;
817
818 if (q == NULL)
819 continue;
820
821 mutex_enter(&vd->vdev_scan_io_queue_lock);
822 ASSERT3P(avl_first(&q->q_sios_by_addr), ==, NULL);
823 ASSERT3P(zfs_btree_first(&q->q_exts_by_size, NULL), ==,
824 NULL);
825 ASSERT3P(zfs_range_tree_first(q->q_exts_by_addr), ==,
826 NULL);
827 mutex_exit(&vd->vdev_scan_io_queue_lock);
828 }
829
830 if (scn->scn_phys.scn_queue_obj != 0)
831 scan_ds_queue_sync(scn, tx);
832 VERIFY0(zap_update(scn->scn_dp->dp_meta_objset,
833 DMU_POOL_DIRECTORY_OBJECT,
834 DMU_POOL_SCAN, sizeof (uint64_t), SCAN_PHYS_NUMINTS,
835 &scn->scn_phys, tx));
836 memcpy(&scn->scn_phys_cached, &scn->scn_phys,
837 sizeof (scn->scn_phys));
838
839 if (scn->scn_checkpointing)
840 zfs_dbgmsg("finish scan checkpoint for %s",
841 spa->spa_name);
842
843 scn->scn_checkpointing = B_FALSE;
844 scn->scn_last_checkpoint = ddi_get_lbolt();
845 } else if (sync_type == SYNC_CACHED) {
846 VERIFY0(zap_update(scn->scn_dp->dp_meta_objset,
847 DMU_POOL_DIRECTORY_OBJECT,
848 DMU_POOL_SCAN, sizeof (uint64_t), SCAN_PHYS_NUMINTS,
849 &scn->scn_phys_cached, tx));
850 }
851 }
852
853 int
dsl_scan_setup_check(void * arg,dmu_tx_t * tx)854 dsl_scan_setup_check(void *arg, dmu_tx_t *tx)
855 {
856 (void) arg;
857 dsl_scan_t *scn = dmu_tx_pool(tx)->dp_scan;
858 vdev_t *rvd = scn->scn_dp->dp_spa->spa_root_vdev;
859
860 if (dsl_scan_is_running(scn) || vdev_rebuild_active(rvd) ||
861 dsl_errorscrubbing(scn->scn_dp))
862 return (SET_ERROR(EBUSY));
863
864 return (0);
865 }
866
867 void
dsl_scan_setup_sync(void * arg,dmu_tx_t * tx)868 dsl_scan_setup_sync(void *arg, dmu_tx_t *tx)
869 {
870 setup_sync_arg_t *setup_sync_arg = (setup_sync_arg_t *)arg;
871 dsl_scan_t *scn = dmu_tx_pool(tx)->dp_scan;
872 dmu_object_type_t ot = 0;
873 dsl_pool_t *dp = scn->scn_dp;
874 spa_t *spa = dp->dp_spa;
875
876 ASSERT(!dsl_scan_is_running(scn));
877 ASSERT3U(setup_sync_arg->func, >, POOL_SCAN_NONE);
878 ASSERT3U(setup_sync_arg->func, <, POOL_SCAN_FUNCS);
879 memset(&scn->scn_phys, 0, sizeof (scn->scn_phys));
880
881 /*
882 * If we are starting a fresh scrub, we erase the error scrub
883 * information from disk.
884 */
885 memset(&scn->errorscrub_phys, 0, sizeof (scn->errorscrub_phys));
886 dsl_errorscrub_sync_state(scn, tx);
887
888 scn->scn_phys.scn_func = setup_sync_arg->func;
889 scn->scn_phys.scn_state = DSS_SCANNING;
890 scn->scn_phys.scn_min_txg = setup_sync_arg->txgstart;
891 if (setup_sync_arg->txgend == 0) {
892 scn->scn_phys.scn_max_txg = tx->tx_txg;
893 } else {
894 scn->scn_phys.scn_max_txg = setup_sync_arg->txgend;
895 }
896 scn->scn_phys.scn_ddt_class_max = DDT_CLASSES - 1; /* the entire DDT */
897 scn->scn_phys.scn_start_time = gethrestime_sec();
898 scn->scn_phys.scn_errors = 0;
899 scn->scn_phys.scn_to_examine = spa->spa_root_vdev->vdev_stat.vs_alloc;
900 scn->scn_issued_before_pass = 0;
901 scn->scn_restart_txg = 0;
902 scn->scn_done_txg = 0;
903 scn->scn_last_checkpoint = 0;
904 scn->scn_checkpointing = B_FALSE;
905 spa_scan_stat_init(spa);
906 vdev_scan_stat_init(spa->spa_root_vdev);
907
908 if (DSL_SCAN_IS_SCRUB_RESILVER(scn)) {
909 scn->scn_phys.scn_ddt_class_max = zfs_scrub_ddt_class_max;
910
911 /* rewrite all disk labels */
912 vdev_config_dirty(spa->spa_root_vdev);
913
914 if (vdev_resilver_needed(spa->spa_root_vdev,
915 &scn->scn_phys.scn_min_txg, &scn->scn_phys.scn_max_txg)) {
916 nvlist_t *aux = fnvlist_alloc();
917 fnvlist_add_string(aux, ZFS_EV_RESILVER_TYPE,
918 "healing");
919 spa_event_notify(spa, NULL, aux,
920 ESC_ZFS_RESILVER_START);
921 nvlist_free(aux);
922 } else {
923 spa_event_notify(spa, NULL, NULL, ESC_ZFS_SCRUB_START);
924 }
925
926 spa->spa_scrub_started = B_TRUE;
927 /*
928 * If this is an incremental scrub, limit the DDT scrub phase
929 * to just the auto-ditto class (for correctness); the rest
930 * of the scrub should go faster using top-down pruning.
931 */
932 if (scn->scn_phys.scn_min_txg > TXG_INITIAL)
933 scn->scn_phys.scn_ddt_class_max = DDT_CLASS_DITTO;
934
935 /*
936 * When starting a resilver clear any existing rebuild state.
937 * This is required to prevent stale rebuild status from
938 * being reported when a rebuild is run, then a resilver and
939 * finally a scrub. In which case only the scrub status
940 * should be reported by 'zpool status'.
941 */
942 if (scn->scn_phys.scn_func == POOL_SCAN_RESILVER) {
943 vdev_t *rvd = spa->spa_root_vdev;
944 for (uint64_t i = 0; i < rvd->vdev_children; i++) {
945 vdev_t *vd = rvd->vdev_child[i];
946 vdev_rebuild_clear_sync(
947 (void *)(uintptr_t)vd->vdev_id, tx);
948 }
949 }
950 }
951
952 /* back to the generic stuff */
953
954 if (zfs_scan_blkstats) {
955 if (dp->dp_blkstats == NULL) {
956 dp->dp_blkstats =
957 vmem_alloc(sizeof (zfs_all_blkstats_t), KM_SLEEP);
958 }
959 memset(&dp->dp_blkstats->zab_type, 0,
960 sizeof (dp->dp_blkstats->zab_type));
961 } else {
962 if (dp->dp_blkstats) {
963 vmem_free(dp->dp_blkstats, sizeof (zfs_all_blkstats_t));
964 dp->dp_blkstats = NULL;
965 }
966 }
967
968 if (spa_version(spa) < SPA_VERSION_DSL_SCRUB)
969 ot = DMU_OT_ZAP_OTHER;
970
971 scn->scn_phys.scn_queue_obj = zap_create(dp->dp_meta_objset,
972 ot ? ot : DMU_OT_SCAN_QUEUE, DMU_OT_NONE, 0, tx);
973
974 memcpy(&scn->scn_phys_cached, &scn->scn_phys, sizeof (scn->scn_phys));
975
976 ddt_walk_init(spa, scn->scn_phys.scn_max_txg);
977
978 dsl_scan_sync_state(scn, tx, SYNC_MANDATORY);
979
980 spa_history_log_internal(spa, "scan setup", tx,
981 "func=%u mintxg=%llu maxtxg=%llu",
982 setup_sync_arg->func, (u_longlong_t)scn->scn_phys.scn_min_txg,
983 (u_longlong_t)scn->scn_phys.scn_max_txg);
984 }
985
986 /*
987 * Called by ZFS_IOC_POOL_SCRUB and ZFS_IOC_POOL_SCAN ioctl to start a scrub,
988 * error scrub or resilver. Can also be called to resume a paused scrub or
989 * error scrub.
990 */
991 int
dsl_scan(dsl_pool_t * dp,pool_scan_func_t func,uint64_t txgstart,uint64_t txgend)992 dsl_scan(dsl_pool_t *dp, pool_scan_func_t func, uint64_t txgstart,
993 uint64_t txgend)
994 {
995 spa_t *spa = dp->dp_spa;
996 dsl_scan_t *scn = dp->dp_scan;
997 setup_sync_arg_t setup_sync_arg;
998
999 if (func != POOL_SCAN_SCRUB && (txgstart != 0 || txgend != 0)) {
1000 return (EINVAL);
1001 }
1002
1003 /*
1004 * Purge all vdev caches and probe all devices. We do this here
1005 * rather than in sync context because this requires a writer lock
1006 * on the spa_config lock, which we can't do from sync context. The
1007 * spa_scrub_reopen flag indicates that vdev_open() should not
1008 * attempt to start another scrub.
1009 */
1010 spa_vdev_state_enter(spa, SCL_NONE);
1011 spa->spa_scrub_reopen = B_TRUE;
1012 vdev_reopen(spa->spa_root_vdev);
1013 spa->spa_scrub_reopen = B_FALSE;
1014 (void) spa_vdev_state_exit(spa, NULL, 0);
1015
1016 if (func == POOL_SCAN_RESILVER) {
1017 dsl_scan_restart_resilver(spa->spa_dsl_pool, 0);
1018 return (0);
1019 }
1020
1021 if (func == POOL_SCAN_ERRORSCRUB) {
1022 if (dsl_errorscrub_is_paused(dp->dp_scan)) {
1023 /*
1024 * got error scrub start cmd, resume paused error scrub.
1025 */
1026 int err = dsl_scrub_set_pause_resume(scn->scn_dp,
1027 POOL_SCRUB_NORMAL);
1028 if (err == 0) {
1029 spa_event_notify(spa, NULL, NULL,
1030 ESC_ZFS_ERRORSCRUB_RESUME);
1031 return (0);
1032 }
1033 return (SET_ERROR(err));
1034 }
1035
1036 return (dsl_sync_task(spa_name(dp->dp_spa),
1037 dsl_errorscrub_setup_check, dsl_errorscrub_setup_sync,
1038 &func, 0, ZFS_SPACE_CHECK_RESERVED));
1039 }
1040
1041 if (func == POOL_SCAN_SCRUB && dsl_scan_is_paused_scrub(scn)) {
1042 /* got scrub start cmd, resume paused scrub */
1043 int err = dsl_scrub_set_pause_resume(scn->scn_dp,
1044 POOL_SCRUB_NORMAL);
1045 if (err == 0) {
1046 spa_event_notify(spa, NULL, NULL, ESC_ZFS_SCRUB_RESUME);
1047 return (0);
1048 }
1049 return (SET_ERROR(err));
1050 }
1051
1052 setup_sync_arg.func = func;
1053 setup_sync_arg.txgstart = txgstart;
1054 setup_sync_arg.txgend = txgend;
1055
1056 return (dsl_sync_task(spa_name(spa), dsl_scan_setup_check,
1057 dsl_scan_setup_sync, &setup_sync_arg, 0,
1058 ZFS_SPACE_CHECK_EXTRA_RESERVED));
1059 }
1060
1061 static void
dsl_errorscrub_done(dsl_scan_t * scn,boolean_t complete,dmu_tx_t * tx)1062 dsl_errorscrub_done(dsl_scan_t *scn, boolean_t complete, dmu_tx_t *tx)
1063 {
1064 dsl_pool_t *dp = scn->scn_dp;
1065 spa_t *spa = dp->dp_spa;
1066
1067 if (complete) {
1068 spa_event_notify(spa, NULL, NULL, ESC_ZFS_ERRORSCRUB_FINISH);
1069 spa_history_log_internal(spa, "error scrub done", tx,
1070 "errors=%llu", (u_longlong_t)spa_approx_errlog_size(spa));
1071 } else {
1072 spa_history_log_internal(spa, "error scrub canceled", tx,
1073 "errors=%llu", (u_longlong_t)spa_approx_errlog_size(spa));
1074 }
1075
1076 scn->errorscrub_phys.dep_state = complete ? DSS_FINISHED : DSS_CANCELED;
1077 spa->spa_scrub_active = B_FALSE;
1078 spa_errlog_rotate(spa);
1079 scn->errorscrub_phys.dep_end_time = gethrestime_sec();
1080 zap_cursor_fini(&scn->errorscrub_cursor);
1081
1082 if (spa->spa_errata == ZPOOL_ERRATA_ZOL_2094_SCRUB)
1083 spa->spa_errata = 0;
1084
1085 ASSERT(!dsl_errorscrubbing(scn->scn_dp));
1086 }
1087
1088 static void
dsl_scan_done(dsl_scan_t * scn,boolean_t complete,dmu_tx_t * tx)1089 dsl_scan_done(dsl_scan_t *scn, boolean_t complete, dmu_tx_t *tx)
1090 {
1091 static const char *old_names[] = {
1092 "scrub_bookmark",
1093 "scrub_ddt_bookmark",
1094 "scrub_ddt_class_max",
1095 "scrub_queue",
1096 "scrub_min_txg",
1097 "scrub_max_txg",
1098 "scrub_func",
1099 "scrub_errors",
1100 NULL
1101 };
1102
1103 dsl_pool_t *dp = scn->scn_dp;
1104 spa_t *spa = dp->dp_spa;
1105 int i;
1106
1107 /* Remove any remnants of an old-style scrub. */
1108 for (i = 0; old_names[i]; i++) {
1109 (void) zap_remove(dp->dp_meta_objset,
1110 DMU_POOL_DIRECTORY_OBJECT, old_names[i], tx);
1111 }
1112
1113 if (scn->scn_phys.scn_queue_obj != 0) {
1114 VERIFY0(dmu_object_free(dp->dp_meta_objset,
1115 scn->scn_phys.scn_queue_obj, tx));
1116 scn->scn_phys.scn_queue_obj = 0;
1117 }
1118 scan_ds_queue_clear(scn);
1119 scan_ds_prefetch_queue_clear(scn);
1120
1121 scn->scn_phys.scn_flags &= ~DSF_SCRUB_PAUSED;
1122
1123 /*
1124 * If we were "restarted" from a stopped state, don't bother
1125 * with anything else.
1126 */
1127 if (!dsl_scan_is_running(scn)) {
1128 ASSERT(!scn->scn_is_sorted);
1129 return;
1130 }
1131
1132 if (scn->scn_is_sorted) {
1133 scan_io_queues_destroy(scn);
1134 scn->scn_is_sorted = B_FALSE;
1135
1136 if (scn->scn_taskq != NULL) {
1137 taskq_destroy(scn->scn_taskq);
1138 scn->scn_taskq = NULL;
1139 }
1140 }
1141
1142 if (dsl_scan_restarting(scn, tx)) {
1143 spa_history_log_internal(spa, "scan aborted, restarting", tx,
1144 "errors=%llu", (u_longlong_t)spa_approx_errlog_size(spa));
1145 } else if (!complete) {
1146 spa_history_log_internal(spa, "scan cancelled", tx,
1147 "errors=%llu", (u_longlong_t)spa_approx_errlog_size(spa));
1148 } else {
1149 spa_history_log_internal(spa, "scan done", tx,
1150 "errors=%llu", (u_longlong_t)spa_approx_errlog_size(spa));
1151 if (DSL_SCAN_IS_SCRUB(scn)) {
1152 VERIFY0(zap_update(dp->dp_meta_objset,
1153 DMU_POOL_DIRECTORY_OBJECT,
1154 DMU_POOL_LAST_SCRUBBED_TXG,
1155 sizeof (uint64_t), 1,
1156 &scn->scn_phys.scn_max_txg, tx));
1157 spa->spa_scrubbed_last_txg = scn->scn_phys.scn_max_txg;
1158 }
1159 }
1160
1161 if (DSL_SCAN_IS_SCRUB_RESILVER(scn)) {
1162 spa->spa_scrub_active = B_FALSE;
1163
1164 /*
1165 * If the scrub/resilver completed, update all DTLs to
1166 * reflect this. Whether it succeeded or not, vacate
1167 * all temporary scrub DTLs.
1168 *
1169 * As the scrub does not currently support traversing
1170 * data that have been freed but are part of a checkpoint,
1171 * we don't mark the scrub as done in the DTLs as faults
1172 * may still exist in those vdevs.
1173 */
1174 if (complete &&
1175 !spa_feature_is_active(spa, SPA_FEATURE_POOL_CHECKPOINT)) {
1176 vdev_dtl_reassess(spa->spa_root_vdev, tx->tx_txg,
1177 scn->scn_phys.scn_max_txg, B_TRUE, B_FALSE);
1178
1179 if (DSL_SCAN_IS_RESILVER(scn)) {
1180 nvlist_t *aux = fnvlist_alloc();
1181 fnvlist_add_string(aux, ZFS_EV_RESILVER_TYPE,
1182 "healing");
1183 spa_event_notify(spa, NULL, aux,
1184 ESC_ZFS_RESILVER_FINISH);
1185 nvlist_free(aux);
1186 } else {
1187 spa_event_notify(spa, NULL, NULL,
1188 ESC_ZFS_SCRUB_FINISH);
1189 }
1190 } else {
1191 vdev_dtl_reassess(spa->spa_root_vdev, tx->tx_txg,
1192 0, B_TRUE, B_FALSE);
1193 }
1194 spa_errlog_rotate(spa);
1195
1196 /*
1197 * Don't clear flag until after vdev_dtl_reassess to ensure that
1198 * DTL_MISSING will get updated when possible.
1199 */
1200 scn->scn_phys.scn_state = complete ? DSS_FINISHED :
1201 DSS_CANCELED;
1202 scn->scn_phys.scn_end_time = gethrestime_sec();
1203 spa->spa_scrub_started = B_FALSE;
1204
1205 /*
1206 * We may have finished replacing a device.
1207 * Let the async thread assess this and handle the detach.
1208 */
1209 spa_async_request(spa, SPA_ASYNC_RESILVER_DONE);
1210
1211 /*
1212 * Clear any resilver_deferred flags in the config.
1213 * If there are drives that need resilvering, kick
1214 * off an asynchronous request to start resilver.
1215 * vdev_clear_resilver_deferred() may update the config
1216 * before the resilver can restart. In the event of
1217 * a crash during this period, the spa loading code
1218 * will find the drives that need to be resilvered
1219 * and start the resilver then.
1220 */
1221 if (spa_feature_is_enabled(spa, SPA_FEATURE_RESILVER_DEFER) &&
1222 vdev_clear_resilver_deferred(spa->spa_root_vdev, tx)) {
1223 spa_history_log_internal(spa,
1224 "starting deferred resilver", tx, "errors=%llu",
1225 (u_longlong_t)spa_approx_errlog_size(spa));
1226 spa_async_request(spa, SPA_ASYNC_RESILVER);
1227 }
1228
1229 /* Clear recent error events (i.e. duplicate events tracking) */
1230 if (complete)
1231 zfs_ereport_clear(spa, NULL);
1232 } else {
1233 scn->scn_phys.scn_state = complete ? DSS_FINISHED :
1234 DSS_CANCELED;
1235 scn->scn_phys.scn_end_time = gethrestime_sec();
1236 }
1237
1238 spa_notify_waiters(spa);
1239
1240 if (spa->spa_errata == ZPOOL_ERRATA_ZOL_2094_SCRUB)
1241 spa->spa_errata = 0;
1242
1243 ASSERT(!dsl_scan_is_running(scn));
1244 }
1245
1246 static int
dsl_errorscrub_pause_resume_check(void * arg,dmu_tx_t * tx)1247 dsl_errorscrub_pause_resume_check(void *arg, dmu_tx_t *tx)
1248 {
1249 pool_scrub_cmd_t *cmd = arg;
1250 dsl_pool_t *dp = dmu_tx_pool(tx);
1251 dsl_scan_t *scn = dp->dp_scan;
1252
1253 if (*cmd == POOL_SCRUB_PAUSE) {
1254 /*
1255 * can't pause a error scrub when there is no in-progress
1256 * error scrub.
1257 */
1258 if (!dsl_errorscrubbing(dp))
1259 return (SET_ERROR(ENOENT));
1260
1261 /* can't pause a paused error scrub */
1262 if (dsl_errorscrub_is_paused(scn))
1263 return (SET_ERROR(EBUSY));
1264 } else if (*cmd != POOL_SCRUB_NORMAL) {
1265 return (SET_ERROR(ENOTSUP));
1266 }
1267
1268 return (0);
1269 }
1270
1271 static void
dsl_errorscrub_pause_resume_sync(void * arg,dmu_tx_t * tx)1272 dsl_errorscrub_pause_resume_sync(void *arg, dmu_tx_t *tx)
1273 {
1274 pool_scrub_cmd_t *cmd = arg;
1275 dsl_pool_t *dp = dmu_tx_pool(tx);
1276 spa_t *spa = dp->dp_spa;
1277 dsl_scan_t *scn = dp->dp_scan;
1278
1279 if (*cmd == POOL_SCRUB_PAUSE) {
1280 spa->spa_scan_pass_errorscrub_pause = gethrestime_sec();
1281 scn->errorscrub_phys.dep_paused_flags = B_TRUE;
1282 dsl_errorscrub_sync_state(scn, tx);
1283 zap_cursor_fini(&scn->errorscrub_cursor);
1284 spa_event_notify(spa, NULL, NULL, ESC_ZFS_ERRORSCRUB_PAUSED);
1285 } else {
1286 ASSERT3U(*cmd, ==, POOL_SCRUB_NORMAL);
1287 if (dsl_errorscrub_is_paused(scn)) {
1288 /*
1289 * We need to keep track of how much time we spend
1290 * paused per pass so that we can adjust the error scrub
1291 * rate shown in the output of 'zpool status'.
1292 */
1293 spa->spa_scan_pass_errorscrub_spent_paused +=
1294 gethrestime_sec() -
1295 spa->spa_scan_pass_errorscrub_pause;
1296
1297 spa->spa_scan_pass_errorscrub_pause = 0;
1298 scn->errorscrub_phys.dep_paused_flags = B_FALSE;
1299
1300 zap_cursor_init_serialized(
1301 &scn->errorscrub_cursor,
1302 spa->spa_meta_objset, spa->spa_errlog_last,
1303 scn->errorscrub_phys.dep_cursor);
1304
1305 dsl_errorscrub_sync_state(scn, tx);
1306 }
1307 }
1308 }
1309
1310 static int
dsl_errorscrub_cancel_check(void * arg,dmu_tx_t * tx)1311 dsl_errorscrub_cancel_check(void *arg, dmu_tx_t *tx)
1312 {
1313 (void) arg;
1314 dsl_scan_t *scn = dmu_tx_pool(tx)->dp_scan;
1315 /* can't cancel a error scrub when there is no one in-progress */
1316 if (!dsl_errorscrubbing(scn->scn_dp))
1317 return (SET_ERROR(ENOENT));
1318 return (0);
1319 }
1320
1321 static void
dsl_errorscrub_cancel_sync(void * arg,dmu_tx_t * tx)1322 dsl_errorscrub_cancel_sync(void *arg, dmu_tx_t *tx)
1323 {
1324 (void) arg;
1325 dsl_scan_t *scn = dmu_tx_pool(tx)->dp_scan;
1326
1327 dsl_errorscrub_done(scn, B_FALSE, tx);
1328 dsl_errorscrub_sync_state(scn, tx);
1329 spa_event_notify(scn->scn_dp->dp_spa, NULL, NULL,
1330 ESC_ZFS_ERRORSCRUB_ABORT);
1331 }
1332
1333 static int
dsl_scan_cancel_check(void * arg,dmu_tx_t * tx)1334 dsl_scan_cancel_check(void *arg, dmu_tx_t *tx)
1335 {
1336 (void) arg;
1337 dsl_scan_t *scn = dmu_tx_pool(tx)->dp_scan;
1338
1339 if (!dsl_scan_is_running(scn))
1340 return (SET_ERROR(ENOENT));
1341 return (0);
1342 }
1343
1344 static void
dsl_scan_cancel_sync(void * arg,dmu_tx_t * tx)1345 dsl_scan_cancel_sync(void *arg, dmu_tx_t *tx)
1346 {
1347 (void) arg;
1348 dsl_scan_t *scn = dmu_tx_pool(tx)->dp_scan;
1349
1350 dsl_scan_done(scn, B_FALSE, tx);
1351 dsl_scan_sync_state(scn, tx, SYNC_MANDATORY);
1352 spa_event_notify(scn->scn_dp->dp_spa, NULL, NULL, ESC_ZFS_SCRUB_ABORT);
1353 }
1354
1355 int
dsl_scan_cancel(dsl_pool_t * dp)1356 dsl_scan_cancel(dsl_pool_t *dp)
1357 {
1358 if (dsl_errorscrubbing(dp)) {
1359 return (dsl_sync_task(spa_name(dp->dp_spa),
1360 dsl_errorscrub_cancel_check, dsl_errorscrub_cancel_sync,
1361 NULL, 3, ZFS_SPACE_CHECK_RESERVED));
1362 }
1363 return (dsl_sync_task(spa_name(dp->dp_spa), dsl_scan_cancel_check,
1364 dsl_scan_cancel_sync, NULL, 3, ZFS_SPACE_CHECK_RESERVED));
1365 }
1366
1367 static int
dsl_scrub_pause_resume_check(void * arg,dmu_tx_t * tx)1368 dsl_scrub_pause_resume_check(void *arg, dmu_tx_t *tx)
1369 {
1370 pool_scrub_cmd_t *cmd = arg;
1371 dsl_pool_t *dp = dmu_tx_pool(tx);
1372 dsl_scan_t *scn = dp->dp_scan;
1373
1374 if (*cmd == POOL_SCRUB_PAUSE) {
1375 /* can't pause a scrub when there is no in-progress scrub */
1376 if (!dsl_scan_scrubbing(dp))
1377 return (SET_ERROR(ENOENT));
1378
1379 /* can't pause a paused scrub */
1380 if (dsl_scan_is_paused_scrub(scn))
1381 return (SET_ERROR(EBUSY));
1382 } else if (*cmd != POOL_SCRUB_NORMAL) {
1383 return (SET_ERROR(ENOTSUP));
1384 }
1385
1386 return (0);
1387 }
1388
1389 static void
dsl_scrub_pause_resume_sync(void * arg,dmu_tx_t * tx)1390 dsl_scrub_pause_resume_sync(void *arg, dmu_tx_t *tx)
1391 {
1392 pool_scrub_cmd_t *cmd = arg;
1393 dsl_pool_t *dp = dmu_tx_pool(tx);
1394 spa_t *spa = dp->dp_spa;
1395 dsl_scan_t *scn = dp->dp_scan;
1396
1397 if (*cmd == POOL_SCRUB_PAUSE) {
1398 /* can't pause a scrub when there is no in-progress scrub */
1399 spa->spa_scan_pass_scrub_pause = gethrestime_sec();
1400 scn->scn_phys.scn_flags |= DSF_SCRUB_PAUSED;
1401 scn->scn_phys_cached.scn_flags |= DSF_SCRUB_PAUSED;
1402 dsl_scan_sync_state(scn, tx, SYNC_CACHED);
1403 spa_event_notify(spa, NULL, NULL, ESC_ZFS_SCRUB_PAUSED);
1404 spa_notify_waiters(spa);
1405 } else {
1406 ASSERT3U(*cmd, ==, POOL_SCRUB_NORMAL);
1407 if (dsl_scan_is_paused_scrub(scn)) {
1408 /*
1409 * We need to keep track of how much time we spend
1410 * paused per pass so that we can adjust the scrub rate
1411 * shown in the output of 'zpool status'
1412 */
1413 spa->spa_scan_pass_scrub_spent_paused +=
1414 gethrestime_sec() - spa->spa_scan_pass_scrub_pause;
1415 spa->spa_scan_pass_scrub_pause = 0;
1416 scn->scn_phys.scn_flags &= ~DSF_SCRUB_PAUSED;
1417 scn->scn_phys_cached.scn_flags &= ~DSF_SCRUB_PAUSED;
1418 dsl_scan_sync_state(scn, tx, SYNC_CACHED);
1419 }
1420 }
1421 }
1422
1423 /*
1424 * Set scrub pause/resume state if it makes sense to do so
1425 */
1426 int
dsl_scrub_set_pause_resume(const dsl_pool_t * dp,pool_scrub_cmd_t cmd)1427 dsl_scrub_set_pause_resume(const dsl_pool_t *dp, pool_scrub_cmd_t cmd)
1428 {
1429 if (dsl_errorscrubbing(dp)) {
1430 return (dsl_sync_task(spa_name(dp->dp_spa),
1431 dsl_errorscrub_pause_resume_check,
1432 dsl_errorscrub_pause_resume_sync, &cmd, 3,
1433 ZFS_SPACE_CHECK_RESERVED));
1434 }
1435 return (dsl_sync_task(spa_name(dp->dp_spa),
1436 dsl_scrub_pause_resume_check, dsl_scrub_pause_resume_sync, &cmd, 3,
1437 ZFS_SPACE_CHECK_RESERVED));
1438 }
1439
1440
1441 /* start a new scan, or restart an existing one. */
1442 void
dsl_scan_restart_resilver(dsl_pool_t * dp,uint64_t txg)1443 dsl_scan_restart_resilver(dsl_pool_t *dp, uint64_t txg)
1444 {
1445 if (txg == 0) {
1446 dmu_tx_t *tx;
1447 tx = dmu_tx_create_dd(dp->dp_mos_dir);
1448 VERIFY0(dmu_tx_assign(tx, DMU_TX_WAIT | DMU_TX_SUSPEND));
1449
1450 txg = dmu_tx_get_txg(tx);
1451 dp->dp_scan->scn_restart_txg = txg;
1452 dmu_tx_commit(tx);
1453 } else {
1454 dp->dp_scan->scn_restart_txg = txg;
1455 }
1456 zfs_dbgmsg("restarting resilver for %s at txg=%llu",
1457 dp->dp_spa->spa_name, (longlong_t)txg);
1458 }
1459
1460 void
dsl_free(dsl_pool_t * dp,uint64_t txg,const blkptr_t * bp)1461 dsl_free(dsl_pool_t *dp, uint64_t txg, const blkptr_t *bp)
1462 {
1463 zio_free(dp->dp_spa, txg, bp);
1464 }
1465
1466 void
dsl_free_sync(zio_t * pio,dsl_pool_t * dp,uint64_t txg,const blkptr_t * bpp)1467 dsl_free_sync(zio_t *pio, dsl_pool_t *dp, uint64_t txg, const blkptr_t *bpp)
1468 {
1469 ASSERT(dsl_pool_sync_context(dp));
1470 zio_nowait(zio_free_sync(pio, dp->dp_spa, txg, bpp, pio->io_flags));
1471 }
1472
1473 static int
scan_ds_queue_compare(const void * a,const void * b)1474 scan_ds_queue_compare(const void *a, const void *b)
1475 {
1476 const scan_ds_t *sds_a = a, *sds_b = b;
1477 return (TREE_CMP(sds_a->sds_dsobj, sds_b->sds_dsobj));
1478 }
1479
1480 static void
scan_ds_queue_clear(dsl_scan_t * scn)1481 scan_ds_queue_clear(dsl_scan_t *scn)
1482 {
1483 void *cookie = NULL;
1484 scan_ds_t *sds;
1485 while ((sds = avl_destroy_nodes(&scn->scn_queue, &cookie)) != NULL) {
1486 kmem_free(sds, sizeof (*sds));
1487 }
1488 }
1489
1490 static boolean_t
scan_ds_queue_contains(dsl_scan_t * scn,uint64_t dsobj,uint64_t * txg)1491 scan_ds_queue_contains(dsl_scan_t *scn, uint64_t dsobj, uint64_t *txg)
1492 {
1493 scan_ds_t srch, *sds;
1494
1495 srch.sds_dsobj = dsobj;
1496 sds = avl_find(&scn->scn_queue, &srch, NULL);
1497 if (sds != NULL && txg != NULL)
1498 *txg = sds->sds_txg;
1499 return (sds != NULL);
1500 }
1501
1502 static void
scan_ds_queue_insert(dsl_scan_t * scn,uint64_t dsobj,uint64_t txg)1503 scan_ds_queue_insert(dsl_scan_t *scn, uint64_t dsobj, uint64_t txg)
1504 {
1505 scan_ds_t *sds;
1506 avl_index_t where;
1507
1508 sds = kmem_zalloc(sizeof (*sds), KM_SLEEP);
1509 sds->sds_dsobj = dsobj;
1510 sds->sds_txg = txg;
1511
1512 VERIFY3P(avl_find(&scn->scn_queue, sds, &where), ==, NULL);
1513 avl_insert(&scn->scn_queue, sds, where);
1514 }
1515
1516 static void
scan_ds_queue_remove(dsl_scan_t * scn,uint64_t dsobj)1517 scan_ds_queue_remove(dsl_scan_t *scn, uint64_t dsobj)
1518 {
1519 scan_ds_t srch, *sds;
1520
1521 srch.sds_dsobj = dsobj;
1522
1523 sds = avl_find(&scn->scn_queue, &srch, NULL);
1524 VERIFY(sds != NULL);
1525 avl_remove(&scn->scn_queue, sds);
1526 kmem_free(sds, sizeof (*sds));
1527 }
1528
1529 static void
scan_ds_queue_sync(dsl_scan_t * scn,dmu_tx_t * tx)1530 scan_ds_queue_sync(dsl_scan_t *scn, dmu_tx_t *tx)
1531 {
1532 dsl_pool_t *dp = scn->scn_dp;
1533 spa_t *spa = dp->dp_spa;
1534 dmu_object_type_t ot = (spa_version(spa) >= SPA_VERSION_DSL_SCRUB) ?
1535 DMU_OT_SCAN_QUEUE : DMU_OT_ZAP_OTHER;
1536
1537 ASSERT0(scn->scn_queues_pending);
1538 ASSERT(scn->scn_phys.scn_queue_obj != 0);
1539
1540 VERIFY0(dmu_object_free(dp->dp_meta_objset,
1541 scn->scn_phys.scn_queue_obj, tx));
1542 scn->scn_phys.scn_queue_obj = zap_create(dp->dp_meta_objset, ot,
1543 DMU_OT_NONE, 0, tx);
1544 for (scan_ds_t *sds = avl_first(&scn->scn_queue);
1545 sds != NULL; sds = AVL_NEXT(&scn->scn_queue, sds)) {
1546 VERIFY0(zap_add_int_key(dp->dp_meta_objset,
1547 scn->scn_phys.scn_queue_obj, sds->sds_dsobj,
1548 sds->sds_txg, tx));
1549 }
1550 }
1551
1552 /*
1553 * Computes the memory limit state that we're currently in. A sorted scan
1554 * needs quite a bit of memory to hold the sorting queue, so we need to
1555 * reasonably constrain the size so it doesn't impact overall system
1556 * performance. We compute two limits:
1557 * 1) Hard memory limit: if the amount of memory used by the sorting
1558 * queues on a pool gets above this value, we stop the metadata
1559 * scanning portion and start issuing the queued up and sorted
1560 * I/Os to reduce memory usage.
1561 * This limit is calculated as a fraction of physmem (by default 5%).
1562 * We constrain the lower bound of the hard limit to an absolute
1563 * minimum of zfs_scan_mem_lim_min (default: 16 MiB). We also constrain
1564 * the upper bound to 5% of the total pool size - no chance we'll
1565 * ever need that much memory, but just to keep the value in check.
1566 * 2) Soft memory limit: once we hit the hard memory limit, we start
1567 * issuing I/O to reduce queue memory usage, but we don't want to
1568 * completely empty out the queues, since we might be able to find I/Os
1569 * that will fill in the gaps of our non-sequential IOs at some point
1570 * in the future. So we stop the issuing of I/Os once the amount of
1571 * memory used drops below the soft limit (at which point we stop issuing
1572 * I/O and start scanning metadata again).
1573 *
1574 * This limit is calculated by subtracting a fraction of the hard
1575 * limit from the hard limit. By default this fraction is 5%, so
1576 * the soft limit is 95% of the hard limit. We cap the size of the
1577 * difference between the hard and soft limits at an absolute
1578 * maximum of zfs_scan_mem_lim_soft_max (default: 128 MiB) - this is
1579 * sufficient to not cause too frequent switching between the
1580 * metadata scan and I/O issue (even at 2k recordsize, 128 MiB's
1581 * worth of queues is about 1.2 GiB of on-pool data, so scanning
1582 * that should take at least a decent fraction of a second).
1583 */
1584 static boolean_t
dsl_scan_should_clear(dsl_scan_t * scn)1585 dsl_scan_should_clear(dsl_scan_t *scn)
1586 {
1587 spa_t *spa = scn->scn_dp->dp_spa;
1588 vdev_t *rvd = scn->scn_dp->dp_spa->spa_root_vdev;
1589 uint64_t alloc, mlim_hard, mlim_soft, mused;
1590
1591 alloc = metaslab_class_get_alloc(spa_normal_class(spa));
1592 alloc += metaslab_class_get_alloc(spa_special_class(spa));
1593 alloc += metaslab_class_get_alloc(spa_dedup_class(spa));
1594
1595 mlim_hard = MAX((physmem / zfs_scan_mem_lim_fact) * PAGESIZE,
1596 zfs_scan_mem_lim_min);
1597 mlim_hard = MIN(mlim_hard, alloc / 20);
1598 mlim_soft = mlim_hard - MIN(mlim_hard / zfs_scan_mem_lim_soft_fact,
1599 zfs_scan_mem_lim_soft_max);
1600 mused = 0;
1601 for (uint64_t i = 0; i < rvd->vdev_children; i++) {
1602 vdev_t *tvd = rvd->vdev_child[i];
1603 dsl_scan_io_queue_t *queue;
1604
1605 mutex_enter(&tvd->vdev_scan_io_queue_lock);
1606 queue = tvd->vdev_scan_io_queue;
1607 if (queue != NULL) {
1608 /*
1609 * # of extents in exts_by_addr = # in exts_by_size.
1610 * B-tree efficiency is ~75%, but can be as low as 50%.
1611 */
1612 mused += zfs_btree_numnodes(&queue->q_exts_by_size) * ((
1613 sizeof (zfs_range_seg_gap_t) + sizeof (uint64_t)) *
1614 3 / 2) + queue->q_sio_memused;
1615 }
1616 mutex_exit(&tvd->vdev_scan_io_queue_lock);
1617 }
1618
1619 dprintf("current scan memory usage: %llu bytes\n", (longlong_t)mused);
1620
1621 if (mused == 0)
1622 ASSERT0(scn->scn_queues_pending);
1623
1624 /*
1625 * If we are above our hard limit, we need to clear out memory.
1626 * If we are below our soft limit, we need to accumulate sequential IOs.
1627 * Otherwise, we should keep doing whatever we are currently doing.
1628 */
1629 if (mused >= mlim_hard)
1630 return (B_TRUE);
1631 else if (mused < mlim_soft)
1632 return (B_FALSE);
1633 else
1634 return (scn->scn_clearing);
1635 }
1636
1637 static boolean_t
dsl_scan_check_suspend(dsl_scan_t * scn,const zbookmark_phys_t * zb)1638 dsl_scan_check_suspend(dsl_scan_t *scn, const zbookmark_phys_t *zb)
1639 {
1640 /* we never skip user/group accounting objects */
1641 if (zb && (int64_t)zb->zb_object < 0)
1642 return (B_FALSE);
1643
1644 if (scn->scn_suspending)
1645 return (B_TRUE); /* we're already suspending */
1646
1647 if (!ZB_IS_ZERO(&scn->scn_phys.scn_bookmark))
1648 return (B_FALSE); /* we're resuming */
1649
1650 /* We only know how to resume from level-0 and objset blocks. */
1651 if (zb && (zb->zb_level != 0 && zb->zb_level != ZB_ROOT_LEVEL))
1652 return (B_FALSE);
1653
1654 /*
1655 * We suspend if:
1656 * - we have scanned for at least the minimum time (default 1 sec
1657 * for scrub, 3 sec for resilver), and either we have sufficient
1658 * dirty data that we are starting to write more quickly
1659 * (default 30%), someone is explicitly waiting for this txg
1660 * to complete, or we have used up all of the time in the txg
1661 * timeout (default 5 sec).
1662 * or
1663 * - the spa is shutting down because this pool is being exported
1664 * or the machine is rebooting.
1665 * or
1666 * - the scan queue has reached its memory use limit
1667 */
1668 uint64_t curr_time_ns = getlrtime();
1669 uint64_t scan_time_ns = curr_time_ns - scn->scn_sync_start_time;
1670 uint64_t sync_time_ns = curr_time_ns -
1671 scn->scn_dp->dp_spa->spa_sync_starttime;
1672 uint64_t dirty_min_bytes = zfs_dirty_data_max *
1673 zfs_vdev_async_write_active_min_dirty_percent / 100;
1674 uint_t mintime = (scn->scn_phys.scn_func == POOL_SCAN_RESILVER) ?
1675 zfs_resilver_min_time_ms : zfs_scrub_min_time_ms;
1676
1677 if ((NSEC2MSEC(scan_time_ns) > mintime &&
1678 (scn->scn_dp->dp_dirty_total >= dirty_min_bytes ||
1679 txg_sync_waiting(scn->scn_dp) ||
1680 NSEC2SEC(sync_time_ns) >= zfs_txg_timeout)) ||
1681 spa_shutting_down(scn->scn_dp->dp_spa) ||
1682 (zfs_scan_strict_mem_lim && dsl_scan_should_clear(scn)) ||
1683 !ddt_walk_ready(scn->scn_dp->dp_spa)) {
1684 if (zb && zb->zb_level == ZB_ROOT_LEVEL) {
1685 dprintf("suspending at first available bookmark "
1686 "%llx/%llx/%llx/%llx\n",
1687 (longlong_t)zb->zb_objset,
1688 (longlong_t)zb->zb_object,
1689 (longlong_t)zb->zb_level,
1690 (longlong_t)zb->zb_blkid);
1691 SET_BOOKMARK(&scn->scn_phys.scn_bookmark,
1692 zb->zb_objset, 0, 0, 0);
1693 } else if (zb != NULL) {
1694 dprintf("suspending at bookmark %llx/%llx/%llx/%llx\n",
1695 (longlong_t)zb->zb_objset,
1696 (longlong_t)zb->zb_object,
1697 (longlong_t)zb->zb_level,
1698 (longlong_t)zb->zb_blkid);
1699 scn->scn_phys.scn_bookmark = *zb;
1700 } else {
1701 #ifdef ZFS_DEBUG
1702 dsl_scan_phys_t *scnp = &scn->scn_phys;
1703 dprintf("suspending at at DDT bookmark "
1704 "%llx/%llx/%llx/%llx\n",
1705 (longlong_t)scnp->scn_ddt_bookmark.ddb_class,
1706 (longlong_t)scnp->scn_ddt_bookmark.ddb_type,
1707 (longlong_t)scnp->scn_ddt_bookmark.ddb_checksum,
1708 (longlong_t)scnp->scn_ddt_bookmark.ddb_cursor);
1709 #endif
1710 }
1711 scn->scn_suspending = B_TRUE;
1712 return (B_TRUE);
1713 }
1714 return (B_FALSE);
1715 }
1716
1717 static boolean_t
dsl_error_scrub_check_suspend(dsl_scan_t * scn,const zbookmark_phys_t * zb)1718 dsl_error_scrub_check_suspend(dsl_scan_t *scn, const zbookmark_phys_t *zb)
1719 {
1720 /*
1721 * We suspend if:
1722 * - we have scrubbed for at least the minimum time (default 1 sec
1723 * for error scrub), someone is explicitly waiting for this txg
1724 * to complete, or we have used up all of the time in the txg
1725 * timeout (default 5 sec).
1726 * or
1727 * - the spa is shutting down because this pool is being exported
1728 * or the machine is rebooting.
1729 */
1730 uint64_t curr_time_ns = getlrtime();
1731 uint64_t error_scrub_time_ns = curr_time_ns - scn->scn_sync_start_time;
1732 uint64_t sync_time_ns = curr_time_ns -
1733 scn->scn_dp->dp_spa->spa_sync_starttime;
1734 int mintime = zfs_scrub_min_time_ms;
1735
1736 if ((NSEC2MSEC(error_scrub_time_ns) > mintime &&
1737 (txg_sync_waiting(scn->scn_dp) ||
1738 NSEC2SEC(sync_time_ns) >= zfs_txg_timeout)) ||
1739 spa_shutting_down(scn->scn_dp->dp_spa)) {
1740 if (zb) {
1741 dprintf("error scrub suspending at bookmark "
1742 "%llx/%llx/%llx/%llx\n",
1743 (longlong_t)zb->zb_objset,
1744 (longlong_t)zb->zb_object,
1745 (longlong_t)zb->zb_level,
1746 (longlong_t)zb->zb_blkid);
1747 }
1748 return (B_TRUE);
1749 }
1750 return (B_FALSE);
1751 }
1752
1753 typedef struct zil_scan_arg {
1754 dsl_pool_t *zsa_dp;
1755 zil_header_t *zsa_zh;
1756 } zil_scan_arg_t;
1757
1758 static int
dsl_scan_zil_block(zilog_t * zilog,const blkptr_t * bp,void * arg,uint64_t claim_txg)1759 dsl_scan_zil_block(zilog_t *zilog, const blkptr_t *bp, void *arg,
1760 uint64_t claim_txg)
1761 {
1762 (void) zilog;
1763 zil_scan_arg_t *zsa = arg;
1764 dsl_pool_t *dp = zsa->zsa_dp;
1765 dsl_scan_t *scn = dp->dp_scan;
1766 zil_header_t *zh = zsa->zsa_zh;
1767 zbookmark_phys_t zb;
1768
1769 ASSERT(!BP_IS_REDACTED(bp));
1770 if (BP_IS_HOLE(bp) ||
1771 BP_GET_BIRTH(bp) <= scn->scn_phys.scn_cur_min_txg)
1772 return (0);
1773
1774 /*
1775 * One block ("stubby") can be allocated a long time ago; we
1776 * want to visit that one because it has been allocated
1777 * (on-disk) even if it hasn't been claimed (even though for
1778 * scrub there's nothing to do to it).
1779 */
1780 if (claim_txg == 0 &&
1781 BP_GET_BIRTH(bp) >= spa_min_claim_txg(dp->dp_spa))
1782 return (0);
1783
1784 SET_BOOKMARK(&zb, zh->zh_log.blk_cksum.zc_word[ZIL_ZC_OBJSET],
1785 ZB_ZIL_OBJECT, ZB_ZIL_LEVEL, bp->blk_cksum.zc_word[ZIL_ZC_SEQ]);
1786
1787 VERIFY0(scan_funcs[scn->scn_phys.scn_func](dp, bp, &zb));
1788 return (0);
1789 }
1790
1791 static int
dsl_scan_zil_record(zilog_t * zilog,const lr_t * lrc,void * arg,uint64_t claim_txg)1792 dsl_scan_zil_record(zilog_t *zilog, const lr_t *lrc, void *arg,
1793 uint64_t claim_txg)
1794 {
1795 (void) zilog;
1796 if (lrc->lrc_txtype == TX_WRITE) {
1797 zil_scan_arg_t *zsa = arg;
1798 dsl_pool_t *dp = zsa->zsa_dp;
1799 dsl_scan_t *scn = dp->dp_scan;
1800 zil_header_t *zh = zsa->zsa_zh;
1801 const lr_write_t *lr = (const lr_write_t *)lrc;
1802 const blkptr_t *bp = &lr->lr_blkptr;
1803 zbookmark_phys_t zb;
1804
1805 ASSERT(!BP_IS_REDACTED(bp));
1806 if (BP_IS_HOLE(bp) ||
1807 BP_GET_BIRTH(bp) <= scn->scn_phys.scn_cur_min_txg)
1808 return (0);
1809
1810 /*
1811 * birth can be < claim_txg if this record's txg is
1812 * already txg sync'ed (but this log block contains
1813 * other records that are not synced)
1814 */
1815 if (claim_txg == 0 || BP_GET_BIRTH(bp) < claim_txg)
1816 return (0);
1817
1818 ASSERT3U(BP_GET_LSIZE(bp), !=, 0);
1819 SET_BOOKMARK(&zb, zh->zh_log.blk_cksum.zc_word[ZIL_ZC_OBJSET],
1820 lr->lr_foid, ZB_ZIL_LEVEL,
1821 lr->lr_offset / BP_GET_LSIZE(bp));
1822
1823 VERIFY0(scan_funcs[scn->scn_phys.scn_func](dp, bp, &zb));
1824 }
1825 return (0);
1826 }
1827
1828 static void
dsl_scan_zil(dsl_pool_t * dp,zil_header_t * zh)1829 dsl_scan_zil(dsl_pool_t *dp, zil_header_t *zh)
1830 {
1831 uint64_t claim_txg = zh->zh_claim_txg;
1832 zil_scan_arg_t zsa = { dp, zh };
1833 zilog_t *zilog;
1834
1835 ASSERT(spa_writeable(dp->dp_spa));
1836
1837 /*
1838 * We only want to visit blocks that have been claimed but not yet
1839 * replayed (or, in read-only mode, blocks that *would* be claimed).
1840 */
1841 if (claim_txg == 0)
1842 return;
1843
1844 zilog = zil_alloc(dp->dp_meta_objset, zh);
1845
1846 (void) zil_parse(zilog, dsl_scan_zil_block, dsl_scan_zil_record, &zsa,
1847 claim_txg, B_FALSE);
1848
1849 zil_free(zilog);
1850 }
1851
1852 /*
1853 * We compare scan_prefetch_issue_ctx_t's based on their bookmarks. The idea
1854 * here is to sort the AVL tree by the order each block will be needed.
1855 */
1856 static int
scan_prefetch_queue_compare(const void * a,const void * b)1857 scan_prefetch_queue_compare(const void *a, const void *b)
1858 {
1859 const scan_prefetch_issue_ctx_t *spic_a = a, *spic_b = b;
1860 const scan_prefetch_ctx_t *spc_a = spic_a->spic_spc;
1861 const scan_prefetch_ctx_t *spc_b = spic_b->spic_spc;
1862
1863 return (zbookmark_compare(spc_a->spc_datablkszsec,
1864 spc_a->spc_indblkshift, spc_b->spc_datablkszsec,
1865 spc_b->spc_indblkshift, &spic_a->spic_zb, &spic_b->spic_zb));
1866 }
1867
1868 static void
scan_prefetch_ctx_rele(scan_prefetch_ctx_t * spc,const void * tag)1869 scan_prefetch_ctx_rele(scan_prefetch_ctx_t *spc, const void *tag)
1870 {
1871 if (zfs_refcount_remove(&spc->spc_refcnt, tag) == 0) {
1872 zfs_refcount_destroy(&spc->spc_refcnt);
1873 kmem_free(spc, sizeof (scan_prefetch_ctx_t));
1874 }
1875 }
1876
1877 static scan_prefetch_ctx_t *
scan_prefetch_ctx_create(dsl_scan_t * scn,dnode_phys_t * dnp,const void * tag)1878 scan_prefetch_ctx_create(dsl_scan_t *scn, dnode_phys_t *dnp, const void *tag)
1879 {
1880 scan_prefetch_ctx_t *spc;
1881
1882 spc = kmem_alloc(sizeof (scan_prefetch_ctx_t), KM_SLEEP);
1883 zfs_refcount_create(&spc->spc_refcnt);
1884 zfs_refcount_add(&spc->spc_refcnt, tag);
1885 spc->spc_scn = scn;
1886 if (dnp != NULL) {
1887 spc->spc_datablkszsec = dnp->dn_datablkszsec;
1888 spc->spc_indblkshift = dnp->dn_indblkshift;
1889 spc->spc_root = B_FALSE;
1890 } else {
1891 spc->spc_datablkszsec = 0;
1892 spc->spc_indblkshift = 0;
1893 spc->spc_root = B_TRUE;
1894 }
1895
1896 return (spc);
1897 }
1898
1899 static void
scan_prefetch_ctx_add_ref(scan_prefetch_ctx_t * spc,const void * tag)1900 scan_prefetch_ctx_add_ref(scan_prefetch_ctx_t *spc, const void *tag)
1901 {
1902 zfs_refcount_add(&spc->spc_refcnt, tag);
1903 }
1904
1905 static void
scan_ds_prefetch_queue_clear(dsl_scan_t * scn)1906 scan_ds_prefetch_queue_clear(dsl_scan_t *scn)
1907 {
1908 spa_t *spa = scn->scn_dp->dp_spa;
1909 void *cookie = NULL;
1910 scan_prefetch_issue_ctx_t *spic = NULL;
1911
1912 mutex_enter(&spa->spa_scrub_lock);
1913 while ((spic = avl_destroy_nodes(&scn->scn_prefetch_queue,
1914 &cookie)) != NULL) {
1915 scan_prefetch_ctx_rele(spic->spic_spc, scn);
1916 kmem_free(spic, sizeof (scan_prefetch_issue_ctx_t));
1917 }
1918 mutex_exit(&spa->spa_scrub_lock);
1919 }
1920
1921 static boolean_t
dsl_scan_check_prefetch_resume(scan_prefetch_ctx_t * spc,const zbookmark_phys_t * zb)1922 dsl_scan_check_prefetch_resume(scan_prefetch_ctx_t *spc,
1923 const zbookmark_phys_t *zb)
1924 {
1925 zbookmark_phys_t *last_zb = &spc->spc_scn->scn_prefetch_bookmark;
1926 dnode_phys_t tmp_dnp;
1927 dnode_phys_t *dnp = (spc->spc_root) ? NULL : &tmp_dnp;
1928
1929 if (zb->zb_objset != last_zb->zb_objset)
1930 return (B_TRUE);
1931 if ((int64_t)zb->zb_object < 0)
1932 return (B_FALSE);
1933
1934 tmp_dnp.dn_datablkszsec = spc->spc_datablkszsec;
1935 tmp_dnp.dn_indblkshift = spc->spc_indblkshift;
1936
1937 if (zbookmark_subtree_completed(dnp, zb, last_zb))
1938 return (B_TRUE);
1939
1940 return (B_FALSE);
1941 }
1942
1943 static void
dsl_scan_prefetch(scan_prefetch_ctx_t * spc,blkptr_t * bp,zbookmark_phys_t * zb)1944 dsl_scan_prefetch(scan_prefetch_ctx_t *spc, blkptr_t *bp, zbookmark_phys_t *zb)
1945 {
1946 avl_index_t idx;
1947 dsl_scan_t *scn = spc->spc_scn;
1948 spa_t *spa = scn->scn_dp->dp_spa;
1949 scan_prefetch_issue_ctx_t *spic;
1950
1951 if (zfs_no_scrub_prefetch || BP_IS_REDACTED(bp))
1952 return;
1953
1954 if (BP_IS_HOLE(bp) ||
1955 BP_GET_BIRTH(bp) <= scn->scn_phys.scn_cur_min_txg ||
1956 (BP_GET_LEVEL(bp) == 0 && BP_GET_TYPE(bp) != DMU_OT_DNODE &&
1957 BP_GET_TYPE(bp) != DMU_OT_OBJSET))
1958 return;
1959
1960 if (dsl_scan_check_prefetch_resume(spc, zb))
1961 return;
1962
1963 scan_prefetch_ctx_add_ref(spc, scn);
1964 spic = kmem_alloc(sizeof (scan_prefetch_issue_ctx_t), KM_SLEEP);
1965 spic->spic_spc = spc;
1966 spic->spic_bp = *bp;
1967 spic->spic_zb = *zb;
1968
1969 /*
1970 * Add the IO to the queue of blocks to prefetch. This allows us to
1971 * prioritize blocks that we will need first for the main traversal
1972 * thread.
1973 */
1974 mutex_enter(&spa->spa_scrub_lock);
1975 if (avl_find(&scn->scn_prefetch_queue, spic, &idx) != NULL) {
1976 /* this block is already queued for prefetch */
1977 kmem_free(spic, sizeof (scan_prefetch_issue_ctx_t));
1978 scan_prefetch_ctx_rele(spc, scn);
1979 mutex_exit(&spa->spa_scrub_lock);
1980 return;
1981 }
1982
1983 avl_insert(&scn->scn_prefetch_queue, spic, idx);
1984 cv_broadcast(&spa->spa_scrub_io_cv);
1985 mutex_exit(&spa->spa_scrub_lock);
1986 }
1987
1988 static void
dsl_scan_prefetch_dnode(dsl_scan_t * scn,dnode_phys_t * dnp,uint64_t objset,uint64_t object)1989 dsl_scan_prefetch_dnode(dsl_scan_t *scn, dnode_phys_t *dnp,
1990 uint64_t objset, uint64_t object)
1991 {
1992 int i;
1993 zbookmark_phys_t zb;
1994 scan_prefetch_ctx_t *spc;
1995
1996 if (dnp->dn_nblkptr == 0 && !(dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR))
1997 return;
1998
1999 SET_BOOKMARK(&zb, objset, object, 0, 0);
2000
2001 spc = scan_prefetch_ctx_create(scn, dnp, FTAG);
2002
2003 for (i = 0; i < dnp->dn_nblkptr; i++) {
2004 zb.zb_level = BP_GET_LEVEL(&dnp->dn_blkptr[i]);
2005 zb.zb_blkid = i;
2006 dsl_scan_prefetch(spc, &dnp->dn_blkptr[i], &zb);
2007 }
2008
2009 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) {
2010 zb.zb_level = 0;
2011 zb.zb_blkid = DMU_SPILL_BLKID;
2012 dsl_scan_prefetch(spc, DN_SPILL_BLKPTR(dnp), &zb);
2013 }
2014
2015 scan_prefetch_ctx_rele(spc, FTAG);
2016 }
2017
2018 static void
dsl_scan_prefetch_cb(zio_t * zio,const zbookmark_phys_t * zb,const blkptr_t * bp,arc_buf_t * buf,void * private)2019 dsl_scan_prefetch_cb(zio_t *zio, const zbookmark_phys_t *zb, const blkptr_t *bp,
2020 arc_buf_t *buf, void *private)
2021 {
2022 (void) zio;
2023 scan_prefetch_ctx_t *spc = private;
2024 dsl_scan_t *scn = spc->spc_scn;
2025 spa_t *spa = scn->scn_dp->dp_spa;
2026
2027 /* broadcast that the IO has completed for rate limiting purposes */
2028 mutex_enter(&spa->spa_scrub_lock);
2029 ASSERT3U(spa->spa_scrub_inflight, >=, BP_GET_PSIZE(bp));
2030 spa->spa_scrub_inflight -= BP_GET_PSIZE(bp);
2031 cv_broadcast(&spa->spa_scrub_io_cv);
2032 mutex_exit(&spa->spa_scrub_lock);
2033
2034 /* if there was an error or we are done prefetching, just cleanup */
2035 if (buf == NULL || scn->scn_prefetch_stop)
2036 goto out;
2037
2038 if (BP_GET_LEVEL(bp) > 0) {
2039 int i;
2040 blkptr_t *cbp;
2041 int epb = BP_GET_LSIZE(bp) >> SPA_BLKPTRSHIFT;
2042 zbookmark_phys_t czb;
2043
2044 for (i = 0, cbp = buf->b_data; i < epb; i++, cbp++) {
2045 SET_BOOKMARK(&czb, zb->zb_objset, zb->zb_object,
2046 zb->zb_level - 1, zb->zb_blkid * epb + i);
2047 dsl_scan_prefetch(spc, cbp, &czb);
2048 }
2049 } else if (BP_GET_TYPE(bp) == DMU_OT_DNODE) {
2050 dnode_phys_t *cdnp;
2051 int i;
2052 int epb = BP_GET_LSIZE(bp) >> DNODE_SHIFT;
2053
2054 for (i = 0, cdnp = buf->b_data; i < epb;
2055 i += cdnp->dn_extra_slots + 1,
2056 cdnp += cdnp->dn_extra_slots + 1) {
2057 dsl_scan_prefetch_dnode(scn, cdnp,
2058 zb->zb_objset, zb->zb_blkid * epb + i);
2059 }
2060 } else if (BP_GET_TYPE(bp) == DMU_OT_OBJSET) {
2061 objset_phys_t *osp = buf->b_data;
2062
2063 dsl_scan_prefetch_dnode(scn, &osp->os_meta_dnode,
2064 zb->zb_objset, DMU_META_DNODE_OBJECT);
2065
2066 if (OBJSET_BUF_HAS_USERUSED(buf)) {
2067 if (OBJSET_BUF_HAS_PROJECTUSED(buf)) {
2068 dsl_scan_prefetch_dnode(scn,
2069 &osp->os_projectused_dnode, zb->zb_objset,
2070 DMU_PROJECTUSED_OBJECT);
2071 }
2072 dsl_scan_prefetch_dnode(scn,
2073 &osp->os_groupused_dnode, zb->zb_objset,
2074 DMU_GROUPUSED_OBJECT);
2075 dsl_scan_prefetch_dnode(scn,
2076 &osp->os_userused_dnode, zb->zb_objset,
2077 DMU_USERUSED_OBJECT);
2078 }
2079 }
2080
2081 out:
2082 if (buf != NULL)
2083 arc_buf_destroy(buf, private);
2084 scan_prefetch_ctx_rele(spc, scn);
2085 }
2086
2087 static void
dsl_scan_prefetch_thread(void * arg)2088 dsl_scan_prefetch_thread(void *arg)
2089 {
2090 dsl_scan_t *scn = arg;
2091 spa_t *spa = scn->scn_dp->dp_spa;
2092 scan_prefetch_issue_ctx_t *spic;
2093
2094 /* loop until we are told to stop */
2095 while (!scn->scn_prefetch_stop) {
2096 arc_flags_t flags = ARC_FLAG_NOWAIT |
2097 ARC_FLAG_PRESCIENT_PREFETCH | ARC_FLAG_PREFETCH;
2098 int zio_flags = ZIO_FLAG_CANFAIL | ZIO_FLAG_SCAN_THREAD;
2099
2100 mutex_enter(&spa->spa_scrub_lock);
2101
2102 /*
2103 * Wait until we have an IO to issue and are not above our
2104 * maximum in flight limit.
2105 */
2106 while (!scn->scn_prefetch_stop &&
2107 (avl_numnodes(&scn->scn_prefetch_queue) == 0 ||
2108 spa->spa_scrub_inflight >= scn->scn_maxinflight_bytes)) {
2109 cv_wait(&spa->spa_scrub_io_cv, &spa->spa_scrub_lock);
2110 }
2111
2112 /* recheck if we should stop since we waited for the cv */
2113 if (scn->scn_prefetch_stop) {
2114 mutex_exit(&spa->spa_scrub_lock);
2115 break;
2116 }
2117
2118 /* remove the prefetch IO from the tree */
2119 spic = avl_first(&scn->scn_prefetch_queue);
2120 spa->spa_scrub_inflight += BP_GET_PSIZE(&spic->spic_bp);
2121 avl_remove(&scn->scn_prefetch_queue, spic);
2122
2123 mutex_exit(&spa->spa_scrub_lock);
2124
2125 if (BP_IS_PROTECTED(&spic->spic_bp)) {
2126 ASSERT(BP_GET_TYPE(&spic->spic_bp) == DMU_OT_DNODE ||
2127 BP_GET_TYPE(&spic->spic_bp) == DMU_OT_OBJSET);
2128 ASSERT3U(BP_GET_LEVEL(&spic->spic_bp), ==, 0);
2129 zio_flags |= ZIO_FLAG_RAW;
2130 }
2131
2132 /* We don't need data L1 buffer since we do not prefetch L0. */
2133 blkptr_t *bp = &spic->spic_bp;
2134 if (BP_GET_LEVEL(bp) == 1 && BP_GET_TYPE(bp) != DMU_OT_DNODE &&
2135 BP_GET_TYPE(bp) != DMU_OT_OBJSET)
2136 flags |= ARC_FLAG_NO_BUF;
2137
2138 /* issue the prefetch asynchronously */
2139 (void) arc_read(scn->scn_zio_root, spa, bp,
2140 dsl_scan_prefetch_cb, spic->spic_spc, ZIO_PRIORITY_SCRUB,
2141 zio_flags, &flags, &spic->spic_zb);
2142
2143 kmem_free(spic, sizeof (scan_prefetch_issue_ctx_t));
2144 }
2145
2146 ASSERT(scn->scn_prefetch_stop);
2147
2148 /* free any prefetches we didn't get to complete */
2149 mutex_enter(&spa->spa_scrub_lock);
2150 while ((spic = avl_first(&scn->scn_prefetch_queue)) != NULL) {
2151 avl_remove(&scn->scn_prefetch_queue, spic);
2152 scan_prefetch_ctx_rele(spic->spic_spc, scn);
2153 kmem_free(spic, sizeof (scan_prefetch_issue_ctx_t));
2154 }
2155 ASSERT0(avl_numnodes(&scn->scn_prefetch_queue));
2156 mutex_exit(&spa->spa_scrub_lock);
2157 }
2158
2159 static boolean_t
dsl_scan_check_resume(dsl_scan_t * scn,const dnode_phys_t * dnp,const zbookmark_phys_t * zb)2160 dsl_scan_check_resume(dsl_scan_t *scn, const dnode_phys_t *dnp,
2161 const zbookmark_phys_t *zb)
2162 {
2163 /*
2164 * We never skip over user/group accounting objects (obj<0)
2165 */
2166 if (!ZB_IS_ZERO(&scn->scn_phys.scn_bookmark) &&
2167 (int64_t)zb->zb_object >= 0) {
2168 /*
2169 * If we already visited this bp & everything below (in
2170 * a prior txg sync), don't bother doing it again.
2171 */
2172 if (zbookmark_subtree_completed(dnp, zb,
2173 &scn->scn_phys.scn_bookmark))
2174 return (B_TRUE);
2175
2176 /*
2177 * If we found the block we're trying to resume from, or
2178 * we went past it, zero it out to indicate that it's OK
2179 * to start checking for suspending again.
2180 */
2181 if (zbookmark_subtree_tbd(dnp, zb,
2182 &scn->scn_phys.scn_bookmark)) {
2183 dprintf("resuming at %llx/%llx/%llx/%llx\n",
2184 (longlong_t)zb->zb_objset,
2185 (longlong_t)zb->zb_object,
2186 (longlong_t)zb->zb_level,
2187 (longlong_t)zb->zb_blkid);
2188 memset(&scn->scn_phys.scn_bookmark, 0, sizeof (*zb));
2189 }
2190 }
2191 return (B_FALSE);
2192 }
2193
2194 static void dsl_scan_visitbp(const blkptr_t *bp, const zbookmark_phys_t *zb,
2195 dnode_phys_t *dnp, dsl_dataset_t *ds, dsl_scan_t *scn,
2196 dmu_objset_type_t ostype, dmu_tx_t *tx);
2197 inline __attribute__((always_inline)) static void dsl_scan_visitdnode(
2198 dsl_scan_t *, dsl_dataset_t *ds, dmu_objset_type_t ostype,
2199 dnode_phys_t *dnp, uint64_t object, dmu_tx_t *tx);
2200
2201 /*
2202 * Return nonzero on i/o error.
2203 * Return new buf to write out in *bufp.
2204 */
2205 inline __attribute__((always_inline)) static int
dsl_scan_recurse(dsl_scan_t * scn,dsl_dataset_t * ds,dmu_objset_type_t ostype,dnode_phys_t * dnp,const blkptr_t * bp,const zbookmark_phys_t * zb,dmu_tx_t * tx)2206 dsl_scan_recurse(dsl_scan_t *scn, dsl_dataset_t *ds, dmu_objset_type_t ostype,
2207 dnode_phys_t *dnp, const blkptr_t *bp,
2208 const zbookmark_phys_t *zb, dmu_tx_t *tx)
2209 {
2210 dsl_pool_t *dp = scn->scn_dp;
2211 spa_t *spa = dp->dp_spa;
2212 int zio_flags = ZIO_FLAG_CANFAIL | ZIO_FLAG_SCAN_THREAD;
2213 int err;
2214
2215 ASSERT(!BP_IS_REDACTED(bp));
2216
2217 /*
2218 * There is an unlikely case of encountering dnodes with contradicting
2219 * dn_bonuslen and DNODE_FLAG_SPILL_BLKPTR flag before in files created
2220 * or modified before commit 4254acb was merged. As it is not possible
2221 * to know which of the two is correct, report an error.
2222 */
2223 if (dnp != NULL &&
2224 dnp->dn_bonuslen > DN_MAX_BONUS_LEN(dnp)) {
2225 scn->scn_phys.scn_errors++;
2226 spa_log_error(spa, zb, BP_GET_PHYSICAL_BIRTH(bp));
2227 return (SET_ERROR(EINVAL));
2228 }
2229
2230 if (BP_GET_LEVEL(bp) > 0) {
2231 arc_flags_t flags = ARC_FLAG_WAIT;
2232 int i;
2233 blkptr_t *cbp;
2234 int epb = BP_GET_LSIZE(bp) >> SPA_BLKPTRSHIFT;
2235 arc_buf_t *buf;
2236
2237 err = arc_read(NULL, spa, bp, arc_getbuf_func, &buf,
2238 ZIO_PRIORITY_SCRUB, zio_flags, &flags, zb);
2239 if (err) {
2240 scn->scn_phys.scn_errors++;
2241 return (err);
2242 }
2243 for (i = 0, cbp = buf->b_data; i < epb; i++, cbp++) {
2244 zbookmark_phys_t czb;
2245
2246 SET_BOOKMARK(&czb, zb->zb_objset, zb->zb_object,
2247 zb->zb_level - 1,
2248 zb->zb_blkid * epb + i);
2249 dsl_scan_visitbp(cbp, &czb, dnp,
2250 ds, scn, ostype, tx);
2251 }
2252 arc_buf_destroy(buf, &buf);
2253 } else if (BP_GET_TYPE(bp) == DMU_OT_DNODE) {
2254 arc_flags_t flags = ARC_FLAG_WAIT;
2255 dnode_phys_t *cdnp;
2256 int i;
2257 int epb = BP_GET_LSIZE(bp) >> DNODE_SHIFT;
2258 arc_buf_t *buf;
2259
2260 if (BP_IS_PROTECTED(bp)) {
2261 ASSERT3U(BP_GET_COMPRESS(bp), ==, ZIO_COMPRESS_OFF);
2262 zio_flags |= ZIO_FLAG_RAW;
2263 }
2264
2265 err = arc_read(NULL, spa, bp, arc_getbuf_func, &buf,
2266 ZIO_PRIORITY_SCRUB, zio_flags, &flags, zb);
2267 if (err) {
2268 scn->scn_phys.scn_errors++;
2269 return (err);
2270 }
2271 for (i = 0, cdnp = buf->b_data; i < epb;
2272 i += cdnp->dn_extra_slots + 1,
2273 cdnp += cdnp->dn_extra_slots + 1) {
2274 dsl_scan_visitdnode(scn, ds, ostype,
2275 cdnp, zb->zb_blkid * epb + i, tx);
2276 }
2277
2278 arc_buf_destroy(buf, &buf);
2279 } else if (BP_GET_TYPE(bp) == DMU_OT_OBJSET) {
2280 arc_flags_t flags = ARC_FLAG_WAIT;
2281 objset_phys_t *osp;
2282 arc_buf_t *buf;
2283
2284 err = arc_read(NULL, spa, bp, arc_getbuf_func, &buf,
2285 ZIO_PRIORITY_SCRUB, zio_flags, &flags, zb);
2286 if (err) {
2287 scn->scn_phys.scn_errors++;
2288 return (err);
2289 }
2290
2291 osp = buf->b_data;
2292
2293 dsl_scan_visitdnode(scn, ds, osp->os_type,
2294 &osp->os_meta_dnode, DMU_META_DNODE_OBJECT, tx);
2295
2296 if (OBJSET_BUF_HAS_USERUSED(buf)) {
2297 /*
2298 * We also always visit user/group/project accounting
2299 * objects, and never skip them, even if we are
2300 * suspending. This is necessary so that the
2301 * space deltas from this txg get integrated.
2302 */
2303 if (OBJSET_BUF_HAS_PROJECTUSED(buf))
2304 dsl_scan_visitdnode(scn, ds, osp->os_type,
2305 &osp->os_projectused_dnode,
2306 DMU_PROJECTUSED_OBJECT, tx);
2307 dsl_scan_visitdnode(scn, ds, osp->os_type,
2308 &osp->os_groupused_dnode,
2309 DMU_GROUPUSED_OBJECT, tx);
2310 dsl_scan_visitdnode(scn, ds, osp->os_type,
2311 &osp->os_userused_dnode,
2312 DMU_USERUSED_OBJECT, tx);
2313 }
2314 arc_buf_destroy(buf, &buf);
2315 } else if (zfs_blkptr_verify(spa, bp,
2316 BLK_CONFIG_NEEDED, BLK_VERIFY_LOG)) {
2317 /*
2318 * Sanity check the block pointer contents, this is handled
2319 * by arc_read() for the cases above.
2320 */
2321 scn->scn_phys.scn_errors++;
2322 spa_log_error(spa, zb, BP_GET_PHYSICAL_BIRTH(bp));
2323 return (SET_ERROR(EINVAL));
2324 }
2325
2326 return (0);
2327 }
2328
2329 inline __attribute__((always_inline)) static void
dsl_scan_visitdnode(dsl_scan_t * scn,dsl_dataset_t * ds,dmu_objset_type_t ostype,dnode_phys_t * dnp,uint64_t object,dmu_tx_t * tx)2330 dsl_scan_visitdnode(dsl_scan_t *scn, dsl_dataset_t *ds,
2331 dmu_objset_type_t ostype, dnode_phys_t *dnp,
2332 uint64_t object, dmu_tx_t *tx)
2333 {
2334 int j;
2335
2336 for (j = 0; j < dnp->dn_nblkptr; j++) {
2337 zbookmark_phys_t czb;
2338
2339 SET_BOOKMARK(&czb, ds ? ds->ds_object : 0, object,
2340 dnp->dn_nlevels - 1, j);
2341 dsl_scan_visitbp(&dnp->dn_blkptr[j],
2342 &czb, dnp, ds, scn, ostype, tx);
2343 }
2344
2345 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) {
2346 zbookmark_phys_t czb;
2347 SET_BOOKMARK(&czb, ds ? ds->ds_object : 0, object,
2348 0, DMU_SPILL_BLKID);
2349 dsl_scan_visitbp(DN_SPILL_BLKPTR(dnp),
2350 &czb, dnp, ds, scn, ostype, tx);
2351 }
2352 }
2353
2354 /*
2355 * The arguments are in this order because mdb can only print the
2356 * first 5; we want them to be useful.
2357 */
2358 static void
dsl_scan_visitbp(const blkptr_t * bp,const zbookmark_phys_t * zb,dnode_phys_t * dnp,dsl_dataset_t * ds,dsl_scan_t * scn,dmu_objset_type_t ostype,dmu_tx_t * tx)2359 dsl_scan_visitbp(const blkptr_t *bp, const zbookmark_phys_t *zb,
2360 dnode_phys_t *dnp, dsl_dataset_t *ds, dsl_scan_t *scn,
2361 dmu_objset_type_t ostype, dmu_tx_t *tx)
2362 {
2363 dsl_pool_t *dp = scn->scn_dp;
2364
2365 if (dsl_scan_check_suspend(scn, zb))
2366 return;
2367
2368 if (dsl_scan_check_resume(scn, dnp, zb))
2369 return;
2370
2371 scn->scn_visited_this_txg++;
2372
2373 if (BP_IS_HOLE(bp)) {
2374 scn->scn_holes_this_txg++;
2375 return;
2376 }
2377
2378 if (BP_IS_REDACTED(bp)) {
2379 ASSERT(dsl_dataset_feature_is_active(ds,
2380 SPA_FEATURE_REDACTED_DATASETS));
2381 return;
2382 }
2383
2384 /*
2385 * Check if this block contradicts any filesystem flags.
2386 */
2387 spa_feature_t f = SPA_FEATURE_LARGE_BLOCKS;
2388 if (BP_GET_LSIZE(bp) > SPA_OLD_MAXBLOCKSIZE)
2389 ASSERT(dsl_dataset_feature_is_active(ds, f));
2390
2391 f = zio_checksum_to_feature(BP_GET_CHECKSUM(bp));
2392 if (f != SPA_FEATURE_NONE)
2393 ASSERT(dsl_dataset_feature_is_active(ds, f));
2394
2395 f = zio_compress_to_feature(BP_GET_COMPRESS(bp));
2396 if (f != SPA_FEATURE_NONE)
2397 ASSERT(dsl_dataset_feature_is_active(ds, f));
2398
2399 /*
2400 * Recurse any blocks that were written either logically or physically
2401 * at or after cur_min_txg. About logical birth we care for traversal,
2402 * looking for any changes, while about physical for the actual scan.
2403 */
2404 if (BP_GET_BIRTH(bp) <= scn->scn_phys.scn_cur_min_txg) {
2405 scn->scn_lt_min_this_txg++;
2406 return;
2407 }
2408
2409 if (dsl_scan_recurse(scn, ds, ostype, dnp, bp, zb, tx) != 0)
2410 return;
2411
2412 /*
2413 * If dsl_scan_ddt() has already visited this block, it will have
2414 * already done any translations or scrubbing, so don't call the
2415 * callback again.
2416 */
2417 if (ddt_class_contains(dp->dp_spa,
2418 scn->scn_phys.scn_ddt_class_max, bp)) {
2419 scn->scn_ddt_contained_this_txg++;
2420 return;
2421 }
2422
2423 /*
2424 * If this block is from the future (after cur_max_txg), then we
2425 * are doing this on behalf of a deleted snapshot, and we will
2426 * revisit the future block on the next pass of this dataset.
2427 * Don't scan it now unless we need to because something
2428 * under it was modified.
2429 */
2430 if (BP_GET_PHYSICAL_BIRTH(bp) > scn->scn_phys.scn_cur_max_txg) {
2431 scn->scn_gt_max_this_txg++;
2432 return;
2433 }
2434
2435 scan_funcs[scn->scn_phys.scn_func](dp, bp, zb);
2436 }
2437
2438 static void
dsl_scan_visit_rootbp(dsl_scan_t * scn,dsl_dataset_t * ds,blkptr_t * bp,dmu_tx_t * tx)2439 dsl_scan_visit_rootbp(dsl_scan_t *scn, dsl_dataset_t *ds, blkptr_t *bp,
2440 dmu_tx_t *tx)
2441 {
2442 zbookmark_phys_t zb;
2443 scan_prefetch_ctx_t *spc;
2444
2445 SET_BOOKMARK(&zb, ds ? ds->ds_object : DMU_META_OBJSET,
2446 ZB_ROOT_OBJECT, ZB_ROOT_LEVEL, ZB_ROOT_BLKID);
2447
2448 if (ZB_IS_ZERO(&scn->scn_phys.scn_bookmark)) {
2449 SET_BOOKMARK(&scn->scn_prefetch_bookmark,
2450 zb.zb_objset, 0, 0, 0);
2451 } else {
2452 scn->scn_prefetch_bookmark = scn->scn_phys.scn_bookmark;
2453 }
2454
2455 scn->scn_objsets_visited_this_txg++;
2456
2457 spc = scan_prefetch_ctx_create(scn, NULL, FTAG);
2458 dsl_scan_prefetch(spc, bp, &zb);
2459 scan_prefetch_ctx_rele(spc, FTAG);
2460
2461 dsl_scan_visitbp(bp, &zb, NULL, ds, scn, DMU_OST_NONE, tx);
2462
2463 dprintf_ds(ds, "finished scan%s", "");
2464 }
2465
2466 static void
ds_destroyed_scn_phys(dsl_dataset_t * ds,dsl_scan_phys_t * scn_phys)2467 ds_destroyed_scn_phys(dsl_dataset_t *ds, dsl_scan_phys_t *scn_phys)
2468 {
2469 if (scn_phys->scn_bookmark.zb_objset == ds->ds_object) {
2470 if (ds->ds_is_snapshot) {
2471 /*
2472 * Note:
2473 * - scn_cur_{min,max}_txg stays the same.
2474 * - Setting the flag is not really necessary if
2475 * scn_cur_max_txg == scn_max_txg, because there
2476 * is nothing after this snapshot that we care
2477 * about. However, we set it anyway and then
2478 * ignore it when we retraverse it in
2479 * dsl_scan_visitds().
2480 */
2481 scn_phys->scn_bookmark.zb_objset =
2482 dsl_dataset_phys(ds)->ds_next_snap_obj;
2483 zfs_dbgmsg("destroying ds %llu on %s; currently "
2484 "traversing; reset zb_objset to %llu",
2485 (u_longlong_t)ds->ds_object,
2486 ds->ds_dir->dd_pool->dp_spa->spa_name,
2487 (u_longlong_t)dsl_dataset_phys(ds)->
2488 ds_next_snap_obj);
2489 scn_phys->scn_flags |= DSF_VISIT_DS_AGAIN;
2490 } else {
2491 SET_BOOKMARK(&scn_phys->scn_bookmark,
2492 ZB_DESTROYED_OBJSET, 0, 0, 0);
2493 zfs_dbgmsg("destroying ds %llu on %s; currently "
2494 "traversing; reset bookmark to -1,0,0,0",
2495 (u_longlong_t)ds->ds_object,
2496 ds->ds_dir->dd_pool->dp_spa->spa_name);
2497 }
2498 }
2499 }
2500
2501 /*
2502 * Invoked when a dataset is destroyed. We need to make sure that:
2503 *
2504 * 1) If it is the dataset that was currently being scanned, we write
2505 * a new dsl_scan_phys_t and marking the objset reference in it
2506 * as destroyed.
2507 * 2) Remove it from the work queue, if it was present.
2508 *
2509 * If the dataset was actually a snapshot, instead of marking the dataset
2510 * as destroyed, we instead substitute the next snapshot in line.
2511 */
2512 void
dsl_scan_ds_destroyed(dsl_dataset_t * ds,dmu_tx_t * tx)2513 dsl_scan_ds_destroyed(dsl_dataset_t *ds, dmu_tx_t *tx)
2514 {
2515 dsl_pool_t *dp = ds->ds_dir->dd_pool;
2516 dsl_scan_t *scn = dp->dp_scan;
2517 uint64_t mintxg;
2518
2519 if (!dsl_scan_is_running(scn))
2520 return;
2521
2522 ds_destroyed_scn_phys(ds, &scn->scn_phys);
2523 ds_destroyed_scn_phys(ds, &scn->scn_phys_cached);
2524
2525 if (scan_ds_queue_contains(scn, ds->ds_object, &mintxg)) {
2526 scan_ds_queue_remove(scn, ds->ds_object);
2527 if (ds->ds_is_snapshot)
2528 scan_ds_queue_insert(scn,
2529 dsl_dataset_phys(ds)->ds_next_snap_obj, mintxg);
2530 }
2531
2532 if (zap_lookup_int_key(dp->dp_meta_objset, scn->scn_phys.scn_queue_obj,
2533 ds->ds_object, &mintxg) == 0) {
2534 ASSERT3U(dsl_dataset_phys(ds)->ds_num_children, <=, 1);
2535 VERIFY3U(0, ==, zap_remove_int(dp->dp_meta_objset,
2536 scn->scn_phys.scn_queue_obj, ds->ds_object, tx));
2537 if (ds->ds_is_snapshot) {
2538 /*
2539 * We keep the same mintxg; it could be >
2540 * ds_creation_txg if the previous snapshot was
2541 * deleted too.
2542 */
2543 VERIFY(zap_add_int_key(dp->dp_meta_objset,
2544 scn->scn_phys.scn_queue_obj,
2545 dsl_dataset_phys(ds)->ds_next_snap_obj,
2546 mintxg, tx) == 0);
2547 zfs_dbgmsg("destroying ds %llu on %s; in queue; "
2548 "replacing with %llu",
2549 (u_longlong_t)ds->ds_object,
2550 dp->dp_spa->spa_name,
2551 (u_longlong_t)dsl_dataset_phys(ds)->
2552 ds_next_snap_obj);
2553 } else {
2554 zfs_dbgmsg("destroying ds %llu on %s; in queue; "
2555 "removing",
2556 (u_longlong_t)ds->ds_object,
2557 dp->dp_spa->spa_name);
2558 }
2559 }
2560
2561 /*
2562 * dsl_scan_sync() should be called after this, and should sync
2563 * out our changed state, but just to be safe, do it here.
2564 */
2565 dsl_scan_sync_state(scn, tx, SYNC_CACHED);
2566 }
2567
2568 static void
ds_snapshotted_bookmark(dsl_dataset_t * ds,zbookmark_phys_t * scn_bookmark)2569 ds_snapshotted_bookmark(dsl_dataset_t *ds, zbookmark_phys_t *scn_bookmark)
2570 {
2571 if (scn_bookmark->zb_objset == ds->ds_object) {
2572 scn_bookmark->zb_objset =
2573 dsl_dataset_phys(ds)->ds_prev_snap_obj;
2574 zfs_dbgmsg("snapshotting ds %llu on %s; currently traversing; "
2575 "reset zb_objset to %llu",
2576 (u_longlong_t)ds->ds_object,
2577 ds->ds_dir->dd_pool->dp_spa->spa_name,
2578 (u_longlong_t)dsl_dataset_phys(ds)->ds_prev_snap_obj);
2579 }
2580 }
2581
2582 /*
2583 * Called when a dataset is snapshotted. If we were currently traversing
2584 * this snapshot, we reset our bookmark to point at the newly created
2585 * snapshot. We also modify our work queue to remove the old snapshot and
2586 * replace with the new one.
2587 */
2588 void
dsl_scan_ds_snapshotted(dsl_dataset_t * ds,dmu_tx_t * tx)2589 dsl_scan_ds_snapshotted(dsl_dataset_t *ds, dmu_tx_t *tx)
2590 {
2591 dsl_pool_t *dp = ds->ds_dir->dd_pool;
2592 dsl_scan_t *scn = dp->dp_scan;
2593 uint64_t mintxg;
2594
2595 if (!dsl_scan_is_running(scn))
2596 return;
2597
2598 ASSERT(dsl_dataset_phys(ds)->ds_prev_snap_obj != 0);
2599
2600 ds_snapshotted_bookmark(ds, &scn->scn_phys.scn_bookmark);
2601 ds_snapshotted_bookmark(ds, &scn->scn_phys_cached.scn_bookmark);
2602
2603 if (scan_ds_queue_contains(scn, ds->ds_object, &mintxg)) {
2604 scan_ds_queue_remove(scn, ds->ds_object);
2605 scan_ds_queue_insert(scn,
2606 dsl_dataset_phys(ds)->ds_prev_snap_obj, mintxg);
2607 }
2608
2609 if (zap_lookup_int_key(dp->dp_meta_objset, scn->scn_phys.scn_queue_obj,
2610 ds->ds_object, &mintxg) == 0) {
2611 VERIFY3U(0, ==, zap_remove_int(dp->dp_meta_objset,
2612 scn->scn_phys.scn_queue_obj, ds->ds_object, tx));
2613 VERIFY(zap_add_int_key(dp->dp_meta_objset,
2614 scn->scn_phys.scn_queue_obj,
2615 dsl_dataset_phys(ds)->ds_prev_snap_obj, mintxg, tx) == 0);
2616 zfs_dbgmsg("snapshotting ds %llu on %s; in queue; "
2617 "replacing with %llu",
2618 (u_longlong_t)ds->ds_object,
2619 dp->dp_spa->spa_name,
2620 (u_longlong_t)dsl_dataset_phys(ds)->ds_prev_snap_obj);
2621 }
2622
2623 dsl_scan_sync_state(scn, tx, SYNC_CACHED);
2624 }
2625
2626 static void
ds_clone_swapped_bookmark(dsl_dataset_t * ds1,dsl_dataset_t * ds2,zbookmark_phys_t * scn_bookmark)2627 ds_clone_swapped_bookmark(dsl_dataset_t *ds1, dsl_dataset_t *ds2,
2628 zbookmark_phys_t *scn_bookmark)
2629 {
2630 if (scn_bookmark->zb_objset == ds1->ds_object) {
2631 scn_bookmark->zb_objset = ds2->ds_object;
2632 zfs_dbgmsg("clone_swap ds %llu on %s; currently traversing; "
2633 "reset zb_objset to %llu",
2634 (u_longlong_t)ds1->ds_object,
2635 ds1->ds_dir->dd_pool->dp_spa->spa_name,
2636 (u_longlong_t)ds2->ds_object);
2637 } else if (scn_bookmark->zb_objset == ds2->ds_object) {
2638 scn_bookmark->zb_objset = ds1->ds_object;
2639 zfs_dbgmsg("clone_swap ds %llu on %s; currently traversing; "
2640 "reset zb_objset to %llu",
2641 (u_longlong_t)ds2->ds_object,
2642 ds2->ds_dir->dd_pool->dp_spa->spa_name,
2643 (u_longlong_t)ds1->ds_object);
2644 }
2645 }
2646
2647 /*
2648 * Called when an origin dataset and its clone are swapped. If we were
2649 * currently traversing the dataset, we need to switch to traversing the
2650 * newly promoted clone.
2651 */
2652 void
dsl_scan_ds_clone_swapped(dsl_dataset_t * ds1,dsl_dataset_t * ds2,dmu_tx_t * tx)2653 dsl_scan_ds_clone_swapped(dsl_dataset_t *ds1, dsl_dataset_t *ds2, dmu_tx_t *tx)
2654 {
2655 dsl_pool_t *dp = ds1->ds_dir->dd_pool;
2656 dsl_scan_t *scn = dp->dp_scan;
2657 uint64_t mintxg1, mintxg2;
2658 boolean_t ds1_queued, ds2_queued;
2659
2660 if (!dsl_scan_is_running(scn))
2661 return;
2662
2663 ds_clone_swapped_bookmark(ds1, ds2, &scn->scn_phys.scn_bookmark);
2664 ds_clone_swapped_bookmark(ds1, ds2, &scn->scn_phys_cached.scn_bookmark);
2665
2666 /*
2667 * Handle the in-memory scan queue.
2668 */
2669 ds1_queued = scan_ds_queue_contains(scn, ds1->ds_object, &mintxg1);
2670 ds2_queued = scan_ds_queue_contains(scn, ds2->ds_object, &mintxg2);
2671
2672 /* Sanity checking. */
2673 if (ds1_queued) {
2674 ASSERT3U(mintxg1, ==, dsl_dataset_phys(ds1)->ds_prev_snap_txg);
2675 ASSERT3U(mintxg1, ==, dsl_dataset_phys(ds2)->ds_prev_snap_txg);
2676 }
2677 if (ds2_queued) {
2678 ASSERT3U(mintxg2, ==, dsl_dataset_phys(ds1)->ds_prev_snap_txg);
2679 ASSERT3U(mintxg2, ==, dsl_dataset_phys(ds2)->ds_prev_snap_txg);
2680 }
2681
2682 if (ds1_queued && ds2_queued) {
2683 /*
2684 * If both are queued, we don't need to do anything.
2685 * The swapping code below would not handle this case correctly,
2686 * since we can't insert ds2 if it is already there. That's
2687 * because scan_ds_queue_insert() prohibits a duplicate insert
2688 * and panics.
2689 */
2690 } else if (ds1_queued) {
2691 scan_ds_queue_remove(scn, ds1->ds_object);
2692 scan_ds_queue_insert(scn, ds2->ds_object, mintxg1);
2693 } else if (ds2_queued) {
2694 scan_ds_queue_remove(scn, ds2->ds_object);
2695 scan_ds_queue_insert(scn, ds1->ds_object, mintxg2);
2696 }
2697
2698 /*
2699 * Handle the on-disk scan queue.
2700 * The on-disk state is an out-of-date version of the in-memory state,
2701 * so the in-memory and on-disk values for ds1_queued and ds2_queued may
2702 * be different. Therefore we need to apply the swap logic to the
2703 * on-disk state independently of the in-memory state.
2704 */
2705 ds1_queued = zap_lookup_int_key(dp->dp_meta_objset,
2706 scn->scn_phys.scn_queue_obj, ds1->ds_object, &mintxg1) == 0;
2707 ds2_queued = zap_lookup_int_key(dp->dp_meta_objset,
2708 scn->scn_phys.scn_queue_obj, ds2->ds_object, &mintxg2) == 0;
2709
2710 /* Sanity checking. */
2711 if (ds1_queued) {
2712 ASSERT3U(mintxg1, ==, dsl_dataset_phys(ds1)->ds_prev_snap_txg);
2713 ASSERT3U(mintxg1, ==, dsl_dataset_phys(ds2)->ds_prev_snap_txg);
2714 }
2715 if (ds2_queued) {
2716 ASSERT3U(mintxg2, ==, dsl_dataset_phys(ds1)->ds_prev_snap_txg);
2717 ASSERT3U(mintxg2, ==, dsl_dataset_phys(ds2)->ds_prev_snap_txg);
2718 }
2719
2720 if (ds1_queued && ds2_queued) {
2721 /*
2722 * If both are queued, we don't need to do anything.
2723 * Alternatively, we could check for EEXIST from
2724 * zap_add_int_key() and back out to the original state, but
2725 * that would be more work than checking for this case upfront.
2726 */
2727 } else if (ds1_queued) {
2728 VERIFY3S(0, ==, zap_remove_int(dp->dp_meta_objset,
2729 scn->scn_phys.scn_queue_obj, ds1->ds_object, tx));
2730 VERIFY3S(0, ==, zap_add_int_key(dp->dp_meta_objset,
2731 scn->scn_phys.scn_queue_obj, ds2->ds_object, mintxg1, tx));
2732 zfs_dbgmsg("clone_swap ds %llu on %s; in queue; "
2733 "replacing with %llu",
2734 (u_longlong_t)ds1->ds_object,
2735 dp->dp_spa->spa_name,
2736 (u_longlong_t)ds2->ds_object);
2737 } else if (ds2_queued) {
2738 VERIFY3S(0, ==, zap_remove_int(dp->dp_meta_objset,
2739 scn->scn_phys.scn_queue_obj, ds2->ds_object, tx));
2740 VERIFY3S(0, ==, zap_add_int_key(dp->dp_meta_objset,
2741 scn->scn_phys.scn_queue_obj, ds1->ds_object, mintxg2, tx));
2742 zfs_dbgmsg("clone_swap ds %llu on %s; in queue; "
2743 "replacing with %llu",
2744 (u_longlong_t)ds2->ds_object,
2745 dp->dp_spa->spa_name,
2746 (u_longlong_t)ds1->ds_object);
2747 }
2748
2749 dsl_scan_sync_state(scn, tx, SYNC_CACHED);
2750 }
2751
2752 static int
enqueue_clones_cb(dsl_pool_t * dp,dsl_dataset_t * hds,void * arg)2753 enqueue_clones_cb(dsl_pool_t *dp, dsl_dataset_t *hds, void *arg)
2754 {
2755 uint64_t originobj = *(uint64_t *)arg;
2756 dsl_dataset_t *ds;
2757 int err;
2758 dsl_scan_t *scn = dp->dp_scan;
2759
2760 if (dsl_dir_phys(hds->ds_dir)->dd_origin_obj != originobj)
2761 return (0);
2762
2763 err = dsl_dataset_hold_obj(dp, hds->ds_object, FTAG, &ds);
2764 if (err)
2765 return (err);
2766
2767 while (dsl_dataset_phys(ds)->ds_prev_snap_obj != originobj) {
2768 dsl_dataset_t *prev;
2769 err = dsl_dataset_hold_obj(dp,
2770 dsl_dataset_phys(ds)->ds_prev_snap_obj, FTAG, &prev);
2771
2772 dsl_dataset_rele(ds, FTAG);
2773 if (err)
2774 return (err);
2775 ds = prev;
2776 }
2777 mutex_enter(&scn->scn_queue_lock);
2778 scan_ds_queue_insert(scn, ds->ds_object,
2779 dsl_dataset_phys(ds)->ds_prev_snap_txg);
2780 mutex_exit(&scn->scn_queue_lock);
2781 dsl_dataset_rele(ds, FTAG);
2782 return (0);
2783 }
2784
2785 static void
dsl_scan_visitds(dsl_scan_t * scn,uint64_t dsobj,dmu_tx_t * tx)2786 dsl_scan_visitds(dsl_scan_t *scn, uint64_t dsobj, dmu_tx_t *tx)
2787 {
2788 dsl_pool_t *dp = scn->scn_dp;
2789 dsl_dataset_t *ds;
2790
2791 VERIFY3U(0, ==, dsl_dataset_hold_obj(dp, dsobj, FTAG, &ds));
2792
2793 if (scn->scn_phys.scn_cur_min_txg >=
2794 scn->scn_phys.scn_max_txg) {
2795 /*
2796 * This can happen if this snapshot was created after the
2797 * scan started, and we already completed a previous snapshot
2798 * that was created after the scan started. This snapshot
2799 * only references blocks with:
2800 *
2801 * birth < our ds_creation_txg
2802 * cur_min_txg is no less than ds_creation_txg.
2803 * We have already visited these blocks.
2804 * or
2805 * birth > scn_max_txg
2806 * The scan requested not to visit these blocks.
2807 *
2808 * Subsequent snapshots (and clones) can reference our
2809 * blocks, or blocks with even higher birth times.
2810 * Therefore we do not need to visit them either,
2811 * so we do not add them to the work queue.
2812 *
2813 * Note that checking for cur_min_txg >= cur_max_txg
2814 * is not sufficient, because in that case we may need to
2815 * visit subsequent snapshots. This happens when min_txg > 0,
2816 * which raises cur_min_txg. In this case we will visit
2817 * this dataset but skip all of its blocks, because the
2818 * rootbp's birth time is < cur_min_txg. Then we will
2819 * add the next snapshots/clones to the work queue.
2820 */
2821 char *dsname = kmem_alloc(ZFS_MAX_DATASET_NAME_LEN, KM_SLEEP);
2822 dsl_dataset_name(ds, dsname);
2823 zfs_dbgmsg("scanning dataset %llu (%s) is unnecessary because "
2824 "cur_min_txg (%llu) >= max_txg (%llu)",
2825 (longlong_t)dsobj, dsname,
2826 (longlong_t)scn->scn_phys.scn_cur_min_txg,
2827 (longlong_t)scn->scn_phys.scn_max_txg);
2828 kmem_free(dsname, MAXNAMELEN);
2829
2830 goto out;
2831 }
2832
2833 /*
2834 * Only the ZIL in the head (non-snapshot) is valid. Even though
2835 * snapshots can have ZIL block pointers (which may be the same
2836 * BP as in the head), they must be ignored. In addition, $ORIGIN
2837 * doesn't have a objset (i.e. its ds_bp is a hole) so we don't
2838 * need to look for a ZIL in it either. So we traverse the ZIL here,
2839 * rather than in scan_recurse(), because the regular snapshot
2840 * block-sharing rules don't apply to it.
2841 */
2842 if (!dsl_dataset_is_snapshot(ds) &&
2843 (dp->dp_origin_snap == NULL ||
2844 ds->ds_dir != dp->dp_origin_snap->ds_dir)) {
2845 objset_t *os;
2846 if (dmu_objset_from_ds(ds, &os) != 0) {
2847 goto out;
2848 }
2849 dsl_scan_zil(dp, &os->os_zil_header);
2850 }
2851
2852 /*
2853 * Iterate over the bps in this ds.
2854 */
2855 dmu_buf_will_dirty(ds->ds_dbuf, tx);
2856 rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
2857 dsl_scan_visit_rootbp(scn, ds, &dsl_dataset_phys(ds)->ds_bp, tx);
2858 rrw_exit(&ds->ds_bp_rwlock, FTAG);
2859
2860 char *dsname = kmem_alloc(ZFS_MAX_DATASET_NAME_LEN, KM_SLEEP);
2861 dsl_dataset_name(ds, dsname);
2862 zfs_dbgmsg("scanned dataset %llu (%s) with min=%llu max=%llu; "
2863 "suspending=%u",
2864 (longlong_t)dsobj, dsname,
2865 (longlong_t)scn->scn_phys.scn_cur_min_txg,
2866 (longlong_t)scn->scn_phys.scn_cur_max_txg,
2867 (int)scn->scn_suspending);
2868 kmem_free(dsname, ZFS_MAX_DATASET_NAME_LEN);
2869
2870 if (scn->scn_suspending)
2871 goto out;
2872
2873 /*
2874 * We've finished this pass over this dataset.
2875 */
2876
2877 /*
2878 * If we did not completely visit this dataset, do another pass.
2879 */
2880 if (scn->scn_phys.scn_flags & DSF_VISIT_DS_AGAIN) {
2881 zfs_dbgmsg("incomplete pass on %s; visiting again",
2882 dp->dp_spa->spa_name);
2883 scn->scn_phys.scn_flags &= ~DSF_VISIT_DS_AGAIN;
2884 scan_ds_queue_insert(scn, ds->ds_object,
2885 scn->scn_phys.scn_cur_max_txg);
2886 goto out;
2887 }
2888
2889 /*
2890 * Add descendant datasets to work queue.
2891 */
2892 if (dsl_dataset_phys(ds)->ds_next_snap_obj != 0) {
2893 scan_ds_queue_insert(scn,
2894 dsl_dataset_phys(ds)->ds_next_snap_obj,
2895 dsl_dataset_phys(ds)->ds_creation_txg);
2896 }
2897 if (dsl_dataset_phys(ds)->ds_num_children > 1) {
2898 boolean_t usenext = B_FALSE;
2899 if (dsl_dataset_phys(ds)->ds_next_clones_obj != 0) {
2900 uint64_t count;
2901 /*
2902 * A bug in a previous version of the code could
2903 * cause upgrade_clones_cb() to not set
2904 * ds_next_snap_obj when it should, leading to a
2905 * missing entry. Therefore we can only use the
2906 * next_clones_obj when its count is correct.
2907 */
2908 int err = zap_count(dp->dp_meta_objset,
2909 dsl_dataset_phys(ds)->ds_next_clones_obj, &count);
2910 if (err == 0 &&
2911 count == dsl_dataset_phys(ds)->ds_num_children - 1)
2912 usenext = B_TRUE;
2913 }
2914
2915 if (usenext) {
2916 zap_cursor_t zc;
2917 zap_attribute_t *za = zap_attribute_alloc();
2918 for (zap_cursor_init(&zc, dp->dp_meta_objset,
2919 dsl_dataset_phys(ds)->ds_next_clones_obj);
2920 zap_cursor_retrieve(&zc, za) == 0;
2921 (void) zap_cursor_advance(&zc)) {
2922 scan_ds_queue_insert(scn,
2923 zfs_strtonum(za->za_name, NULL),
2924 dsl_dataset_phys(ds)->ds_creation_txg);
2925 }
2926 zap_cursor_fini(&zc);
2927 zap_attribute_free(za);
2928 } else {
2929 VERIFY0(dmu_objset_find_dp(dp, dp->dp_root_dir_obj,
2930 enqueue_clones_cb, &ds->ds_object,
2931 DS_FIND_CHILDREN));
2932 }
2933 }
2934
2935 out:
2936 dsl_dataset_rele(ds, FTAG);
2937 }
2938
2939 static int
enqueue_cb(dsl_pool_t * dp,dsl_dataset_t * hds,void * arg)2940 enqueue_cb(dsl_pool_t *dp, dsl_dataset_t *hds, void *arg)
2941 {
2942 (void) arg;
2943 dsl_dataset_t *ds;
2944 int err;
2945 dsl_scan_t *scn = dp->dp_scan;
2946
2947 err = dsl_dataset_hold_obj(dp, hds->ds_object, FTAG, &ds);
2948 if (err)
2949 return (err);
2950
2951 while (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0) {
2952 dsl_dataset_t *prev;
2953 err = dsl_dataset_hold_obj(dp,
2954 dsl_dataset_phys(ds)->ds_prev_snap_obj, FTAG, &prev);
2955 if (err) {
2956 dsl_dataset_rele(ds, FTAG);
2957 return (err);
2958 }
2959
2960 /*
2961 * If this is a clone, we don't need to worry about it for now.
2962 */
2963 if (dsl_dataset_phys(prev)->ds_next_snap_obj != ds->ds_object) {
2964 dsl_dataset_rele(ds, FTAG);
2965 dsl_dataset_rele(prev, FTAG);
2966 return (0);
2967 }
2968 dsl_dataset_rele(ds, FTAG);
2969 ds = prev;
2970 }
2971
2972 mutex_enter(&scn->scn_queue_lock);
2973 scan_ds_queue_insert(scn, ds->ds_object,
2974 dsl_dataset_phys(ds)->ds_prev_snap_txg);
2975 mutex_exit(&scn->scn_queue_lock);
2976 dsl_dataset_rele(ds, FTAG);
2977 return (0);
2978 }
2979
2980 void
dsl_scan_ddt_entry(dsl_scan_t * scn,enum zio_checksum checksum,ddt_t * ddt,ddt_lightweight_entry_t * ddlwe,dmu_tx_t * tx)2981 dsl_scan_ddt_entry(dsl_scan_t *scn, enum zio_checksum checksum,
2982 ddt_t *ddt, ddt_lightweight_entry_t *ddlwe, dmu_tx_t *tx)
2983 {
2984 (void) tx;
2985 const ddt_key_t *ddk = &ddlwe->ddlwe_key;
2986 blkptr_t bp;
2987 zbookmark_phys_t zb = { 0 };
2988
2989 if (!dsl_scan_is_running(scn))
2990 return;
2991
2992 /*
2993 * This function is special because it is the only thing
2994 * that can add scan_io_t's to the vdev scan queues from
2995 * outside dsl_scan_sync(). For the most part this is ok
2996 * as long as it is called from within syncing context.
2997 * However, dsl_scan_sync() expects that no new sio's will
2998 * be added between when all the work for a scan is done
2999 * and the next txg when the scan is actually marked as
3000 * completed. This check ensures we do not issue new sio's
3001 * during this period.
3002 */
3003 if (scn->scn_done_txg != 0)
3004 return;
3005
3006 for (int p = 0; p < DDT_NPHYS(ddt); p++) {
3007 ddt_phys_variant_t v = DDT_PHYS_VARIANT(ddt, p);
3008 uint64_t phys_birth = ddt_phys_birth(&ddlwe->ddlwe_phys, v);
3009
3010 if (phys_birth == 0 || phys_birth > scn->scn_phys.scn_max_txg)
3011 continue;
3012 ddt_bp_create(checksum, ddk, &ddlwe->ddlwe_phys, v, &bp);
3013
3014 scn->scn_visited_this_txg++;
3015 scan_funcs[scn->scn_phys.scn_func](scn->scn_dp, &bp, &zb);
3016 }
3017 }
3018
3019 /*
3020 * Scrub/dedup interaction.
3021 *
3022 * If there are N references to a deduped block, we don't want to scrub it
3023 * N times -- ideally, we should scrub it exactly once.
3024 *
3025 * We leverage the fact that the dde's replication class (ddt_class_t)
3026 * is ordered from highest replication class (DDT_CLASS_DITTO) to lowest
3027 * (DDT_CLASS_UNIQUE) so that we may walk the DDT in that order.
3028 *
3029 * To prevent excess scrubbing, the scrub begins by walking the DDT
3030 * to find all blocks with refcnt > 1, and scrubs each of these once.
3031 * Since there are two replication classes which contain blocks with
3032 * refcnt > 1, we scrub the highest replication class (DDT_CLASS_DITTO) first.
3033 * Finally the top-down scrub begins, only visiting blocks with refcnt == 1.
3034 *
3035 * There would be nothing more to say if a block's refcnt couldn't change
3036 * during a scrub, but of course it can so we must account for changes
3037 * in a block's replication class.
3038 *
3039 * Here's an example of what can occur:
3040 *
3041 * If a block has refcnt > 1 during the DDT scrub phase, but has refcnt == 1
3042 * when visited during the top-down scrub phase, it will be scrubbed twice.
3043 * This negates our scrub optimization, but is otherwise harmless.
3044 *
3045 * If a block has refcnt == 1 during the DDT scrub phase, but has refcnt > 1
3046 * on each visit during the top-down scrub phase, it will never be scrubbed.
3047 * To catch this, ddt_sync_entry() notifies the scrub code whenever a block's
3048 * reference class transitions to a higher level (i.e DDT_CLASS_UNIQUE to
3049 * DDT_CLASS_DUPLICATE); if it transitions from refcnt == 1 to refcnt > 1
3050 * while a scrub is in progress, it scrubs the block right then.
3051 */
3052 static void
dsl_scan_ddt(dsl_scan_t * scn,dmu_tx_t * tx)3053 dsl_scan_ddt(dsl_scan_t *scn, dmu_tx_t *tx)
3054 {
3055 ddt_bookmark_t *ddb = &scn->scn_phys.scn_ddt_bookmark;
3056 ddt_lightweight_entry_t ddlwe = {0};
3057 int error;
3058 uint64_t n = 0;
3059
3060 while ((error = ddt_walk(scn->scn_dp->dp_spa, ddb, &ddlwe)) == 0) {
3061 ddt_t *ddt;
3062
3063 if (ddb->ddb_class > scn->scn_phys.scn_ddt_class_max)
3064 break;
3065 dprintf("visiting ddb=%llu/%llu/%llu/%llx\n",
3066 (longlong_t)ddb->ddb_class,
3067 (longlong_t)ddb->ddb_type,
3068 (longlong_t)ddb->ddb_checksum,
3069 (longlong_t)ddb->ddb_cursor);
3070
3071 /* There should be no pending changes to the dedup table */
3072 ddt = scn->scn_dp->dp_spa->spa_ddt[ddb->ddb_checksum];
3073 ASSERT(avl_first(&ddt->ddt_tree) == NULL);
3074
3075 dsl_scan_ddt_entry(scn, ddb->ddb_checksum, ddt, &ddlwe, tx);
3076 n++;
3077
3078 if (dsl_scan_check_suspend(scn, NULL))
3079 break;
3080 }
3081
3082 if (error == EAGAIN) {
3083 dsl_scan_check_suspend(scn, NULL);
3084 error = 0;
3085
3086 zfs_dbgmsg("waiting for ddt to become ready for scan "
3087 "on %s with class_max = %u; suspending=%u",
3088 scn->scn_dp->dp_spa->spa_name,
3089 (int)scn->scn_phys.scn_ddt_class_max,
3090 (int)scn->scn_suspending);
3091 } else
3092 zfs_dbgmsg("scanned %llu ddt entries on %s with "
3093 "class_max = %u; suspending=%u", (longlong_t)n,
3094 scn->scn_dp->dp_spa->spa_name,
3095 (int)scn->scn_phys.scn_ddt_class_max,
3096 (int)scn->scn_suspending);
3097
3098 ASSERT(error == 0 || error == ENOENT);
3099 ASSERT(error != ENOENT ||
3100 ddb->ddb_class > scn->scn_phys.scn_ddt_class_max);
3101 }
3102
3103 static uint64_t
dsl_scan_ds_maxtxg(dsl_dataset_t * ds)3104 dsl_scan_ds_maxtxg(dsl_dataset_t *ds)
3105 {
3106 uint64_t smt = ds->ds_dir->dd_pool->dp_scan->scn_phys.scn_max_txg;
3107 if (ds->ds_is_snapshot)
3108 return (MIN(smt, dsl_dataset_phys(ds)->ds_creation_txg));
3109 return (smt);
3110 }
3111
3112 static void
dsl_scan_visit(dsl_scan_t * scn,dmu_tx_t * tx)3113 dsl_scan_visit(dsl_scan_t *scn, dmu_tx_t *tx)
3114 {
3115 scan_ds_t *sds;
3116 dsl_pool_t *dp = scn->scn_dp;
3117
3118 if (scn->scn_phys.scn_ddt_bookmark.ddb_class <=
3119 scn->scn_phys.scn_ddt_class_max) {
3120 scn->scn_phys.scn_cur_min_txg = scn->scn_phys.scn_min_txg;
3121 scn->scn_phys.scn_cur_max_txg = scn->scn_phys.scn_max_txg;
3122 dsl_scan_ddt(scn, tx);
3123 if (scn->scn_suspending)
3124 return;
3125 }
3126
3127 if (scn->scn_phys.scn_bookmark.zb_objset == DMU_META_OBJSET) {
3128 /* First do the MOS & ORIGIN */
3129
3130 scn->scn_phys.scn_cur_min_txg = scn->scn_phys.scn_min_txg;
3131 scn->scn_phys.scn_cur_max_txg = scn->scn_phys.scn_max_txg;
3132 dsl_scan_visit_rootbp(scn, NULL,
3133 &dp->dp_meta_rootbp, tx);
3134 if (scn->scn_suspending)
3135 return;
3136
3137 if (spa_version(dp->dp_spa) < SPA_VERSION_DSL_SCRUB) {
3138 VERIFY0(dmu_objset_find_dp(dp, dp->dp_root_dir_obj,
3139 enqueue_cb, NULL, DS_FIND_CHILDREN));
3140 } else {
3141 dsl_scan_visitds(scn,
3142 dp->dp_origin_snap->ds_object, tx);
3143 }
3144 ASSERT(!scn->scn_suspending);
3145 } else if (scn->scn_phys.scn_bookmark.zb_objset !=
3146 ZB_DESTROYED_OBJSET) {
3147 uint64_t dsobj = scn->scn_phys.scn_bookmark.zb_objset;
3148 /*
3149 * If we were suspended, continue from here. Note if the
3150 * ds we were suspended on was deleted, the zb_objset may
3151 * be -1, so we will skip this and find a new objset
3152 * below.
3153 */
3154 dsl_scan_visitds(scn, dsobj, tx);
3155 if (scn->scn_suspending)
3156 return;
3157 }
3158
3159 /*
3160 * In case we suspended right at the end of the ds, zero the
3161 * bookmark so we don't think that we're still trying to resume.
3162 */
3163 memset(&scn->scn_phys.scn_bookmark, 0, sizeof (zbookmark_phys_t));
3164
3165 /*
3166 * Keep pulling things out of the dataset avl queue. Updates to the
3167 * persistent zap-object-as-queue happen only at checkpoints.
3168 */
3169 while ((sds = avl_first(&scn->scn_queue)) != NULL) {
3170 dsl_dataset_t *ds;
3171 uint64_t dsobj = sds->sds_dsobj;
3172 uint64_t txg = sds->sds_txg;
3173
3174 /* dequeue and free the ds from the queue */
3175 scan_ds_queue_remove(scn, dsobj);
3176 sds = NULL;
3177
3178 /* set up min / max txg */
3179 VERIFY3U(0, ==, dsl_dataset_hold_obj(dp, dsobj, FTAG, &ds));
3180 if (txg != 0) {
3181 scn->scn_phys.scn_cur_min_txg =
3182 MAX(scn->scn_phys.scn_min_txg, txg);
3183 } else {
3184 scn->scn_phys.scn_cur_min_txg =
3185 MAX(scn->scn_phys.scn_min_txg,
3186 dsl_dataset_phys(ds)->ds_prev_snap_txg);
3187 }
3188 scn->scn_phys.scn_cur_max_txg = dsl_scan_ds_maxtxg(ds);
3189 dsl_dataset_rele(ds, FTAG);
3190
3191 dsl_scan_visitds(scn, dsobj, tx);
3192 if (scn->scn_suspending)
3193 return;
3194 }
3195
3196 /* No more objsets to fetch, we're done */
3197 scn->scn_phys.scn_bookmark.zb_objset = ZB_DESTROYED_OBJSET;
3198 ASSERT0(scn->scn_suspending);
3199 }
3200
3201 static uint64_t
dsl_scan_count_data_disks(spa_t * spa)3202 dsl_scan_count_data_disks(spa_t *spa)
3203 {
3204 vdev_t *rvd = spa->spa_root_vdev;
3205 uint64_t i, leaves = 0;
3206
3207 for (i = 0; i < rvd->vdev_children; i++) {
3208 vdev_t *vd = rvd->vdev_child[i];
3209 if (vd->vdev_islog || vd->vdev_isspare || vd->vdev_isl2cache)
3210 continue;
3211 leaves += vdev_get_ndisks(vd) - vdev_get_nparity(vd);
3212 }
3213 return (leaves);
3214 }
3215
3216 static void
scan_io_queues_update_zio_stats(dsl_scan_io_queue_t * q,const blkptr_t * bp)3217 scan_io_queues_update_zio_stats(dsl_scan_io_queue_t *q, const blkptr_t *bp)
3218 {
3219 int i;
3220 uint64_t cur_size = 0;
3221
3222 for (i = 0; i < BP_GET_NDVAS(bp); i++) {
3223 cur_size += DVA_GET_ASIZE(&bp->blk_dva[i]);
3224 }
3225
3226 q->q_total_zio_size_this_txg += cur_size;
3227 q->q_zios_this_txg++;
3228 }
3229
3230 static void
scan_io_queues_update_seg_stats(dsl_scan_io_queue_t * q,uint64_t start,uint64_t end)3231 scan_io_queues_update_seg_stats(dsl_scan_io_queue_t *q, uint64_t start,
3232 uint64_t end)
3233 {
3234 q->q_total_seg_size_this_txg += end - start;
3235 q->q_segs_this_txg++;
3236 }
3237
3238 static boolean_t
scan_io_queue_check_suspend(dsl_scan_t * scn)3239 scan_io_queue_check_suspend(dsl_scan_t *scn)
3240 {
3241 /* See comment in dsl_scan_check_suspend() */
3242 uint64_t curr_time_ns = getlrtime();
3243 uint64_t scan_time_ns = curr_time_ns - scn->scn_sync_start_time;
3244 uint64_t sync_time_ns = curr_time_ns -
3245 scn->scn_dp->dp_spa->spa_sync_starttime;
3246 uint64_t dirty_min_bytes = zfs_dirty_data_max *
3247 zfs_vdev_async_write_active_min_dirty_percent / 100;
3248 uint_t mintime = (scn->scn_phys.scn_func == POOL_SCAN_RESILVER) ?
3249 zfs_resilver_min_time_ms : zfs_scrub_min_time_ms;
3250
3251 return ((NSEC2MSEC(scan_time_ns) > mintime &&
3252 (scn->scn_dp->dp_dirty_total >= dirty_min_bytes ||
3253 txg_sync_waiting(scn->scn_dp) ||
3254 NSEC2SEC(sync_time_ns) >= zfs_txg_timeout)) ||
3255 spa_shutting_down(scn->scn_dp->dp_spa));
3256 }
3257
3258 /*
3259 * Given a list of scan_io_t's in io_list, this issues the I/Os out to
3260 * disk. This consumes the io_list and frees the scan_io_t's. This is
3261 * called when emptying queues, either when we're up against the memory
3262 * limit or when we have finished scanning. Returns B_TRUE if we stopped
3263 * processing the list before we finished. Any sios that were not issued
3264 * will remain in the io_list.
3265 */
3266 static boolean_t
scan_io_queue_issue(dsl_scan_io_queue_t * queue,list_t * io_list)3267 scan_io_queue_issue(dsl_scan_io_queue_t *queue, list_t *io_list)
3268 {
3269 dsl_scan_t *scn = queue->q_scn;
3270 scan_io_t *sio;
3271 boolean_t suspended = B_FALSE;
3272
3273 while ((sio = list_head(io_list)) != NULL) {
3274 blkptr_t bp;
3275
3276 if (scan_io_queue_check_suspend(scn)) {
3277 suspended = B_TRUE;
3278 break;
3279 }
3280
3281 sio2bp(sio, &bp);
3282 scan_exec_io(scn->scn_dp, &bp, sio->sio_flags,
3283 &sio->sio_zb, queue);
3284 (void) list_remove_head(io_list);
3285 scan_io_queues_update_zio_stats(queue, &bp);
3286 sio_free(sio);
3287 }
3288 return (suspended);
3289 }
3290
3291 /*
3292 * This function removes sios from an IO queue which reside within a given
3293 * zfs_range_seg_t and inserts them (in offset order) into a list. Note that
3294 * we only ever return a maximum of 32 sios at once. If there are more sios
3295 * to process within this segment that did not make it onto the list we
3296 * return B_TRUE and otherwise B_FALSE.
3297 */
3298 static boolean_t
scan_io_queue_gather(dsl_scan_io_queue_t * queue,zfs_range_seg_t * rs,list_t * list)3299 scan_io_queue_gather(dsl_scan_io_queue_t *queue, zfs_range_seg_t *rs,
3300 list_t *list)
3301 {
3302 scan_io_t *srch_sio, *sio, *next_sio;
3303 avl_index_t idx;
3304 uint_t num_sios = 0;
3305 int64_t bytes_issued = 0;
3306
3307 ASSERT(rs != NULL);
3308 ASSERT(MUTEX_HELD(&queue->q_vd->vdev_scan_io_queue_lock));
3309
3310 srch_sio = sio_alloc(1);
3311 srch_sio->sio_nr_dvas = 1;
3312 SIO_SET_OFFSET(srch_sio, zfs_rs_get_start(rs, queue->q_exts_by_addr));
3313
3314 /*
3315 * The exact start of the extent might not contain any matching zios,
3316 * so if that's the case, examine the next one in the tree.
3317 */
3318 sio = avl_find(&queue->q_sios_by_addr, srch_sio, &idx);
3319 sio_free(srch_sio);
3320
3321 if (sio == NULL)
3322 sio = avl_nearest(&queue->q_sios_by_addr, idx, AVL_AFTER);
3323
3324 while (sio != NULL && SIO_GET_OFFSET(sio) < zfs_rs_get_end(rs,
3325 queue->q_exts_by_addr) && num_sios <= 32) {
3326 ASSERT3U(SIO_GET_OFFSET(sio), >=, zfs_rs_get_start(rs,
3327 queue->q_exts_by_addr));
3328 ASSERT3U(SIO_GET_END_OFFSET(sio), <=, zfs_rs_get_end(rs,
3329 queue->q_exts_by_addr));
3330
3331 next_sio = AVL_NEXT(&queue->q_sios_by_addr, sio);
3332 avl_remove(&queue->q_sios_by_addr, sio);
3333 if (avl_is_empty(&queue->q_sios_by_addr))
3334 atomic_add_64(&queue->q_scn->scn_queues_pending, -1);
3335 queue->q_sio_memused -= SIO_GET_MUSED(sio);
3336
3337 bytes_issued += SIO_GET_ASIZE(sio);
3338 num_sios++;
3339 list_insert_tail(list, sio);
3340 sio = next_sio;
3341 }
3342
3343 /*
3344 * We limit the number of sios we process at once to 32 to avoid
3345 * biting off more than we can chew. If we didn't take everything
3346 * in the segment we update it to reflect the work we were able to
3347 * complete. Otherwise, we remove it from the range tree entirely.
3348 */
3349 if (sio != NULL && SIO_GET_OFFSET(sio) < zfs_rs_get_end(rs,
3350 queue->q_exts_by_addr)) {
3351 zfs_range_tree_adjust_fill(queue->q_exts_by_addr, rs,
3352 -bytes_issued);
3353 zfs_range_tree_resize_segment(queue->q_exts_by_addr, rs,
3354 SIO_GET_OFFSET(sio), zfs_rs_get_end(rs,
3355 queue->q_exts_by_addr) - SIO_GET_OFFSET(sio));
3356 queue->q_last_ext_addr = SIO_GET_OFFSET(sio);
3357 return (B_TRUE);
3358 } else {
3359 uint64_t rstart = zfs_rs_get_start(rs, queue->q_exts_by_addr);
3360 uint64_t rend = zfs_rs_get_end(rs, queue->q_exts_by_addr);
3361 zfs_range_tree_remove(queue->q_exts_by_addr, rstart, rend -
3362 rstart);
3363 queue->q_last_ext_addr = -1;
3364 return (B_FALSE);
3365 }
3366 }
3367
3368 /*
3369 * This is called from the queue emptying thread and selects the next
3370 * extent from which we are to issue I/Os. The behavior of this function
3371 * depends on the state of the scan, the current memory consumption and
3372 * whether or not we are performing a scan shutdown.
3373 * 1) We select extents in an elevator algorithm (LBA-order) if the scan
3374 * needs to perform a checkpoint
3375 * 2) We select the largest available extent if we are up against the
3376 * memory limit.
3377 * 3) Otherwise we don't select any extents.
3378 */
3379 static zfs_range_seg_t *
scan_io_queue_fetch_ext(dsl_scan_io_queue_t * queue)3380 scan_io_queue_fetch_ext(dsl_scan_io_queue_t *queue)
3381 {
3382 dsl_scan_t *scn = queue->q_scn;
3383 zfs_range_tree_t *rt = queue->q_exts_by_addr;
3384
3385 ASSERT(MUTEX_HELD(&queue->q_vd->vdev_scan_io_queue_lock));
3386 ASSERT(scn->scn_is_sorted);
3387
3388 if (!scn->scn_checkpointing && !scn->scn_clearing)
3389 return (NULL);
3390
3391 /*
3392 * During normal clearing, we want to issue our largest segments
3393 * first, keeping IO as sequential as possible, and leaving the
3394 * smaller extents for later with the hope that they might eventually
3395 * grow to larger sequential segments. However, when the scan is
3396 * checkpointing, no new extents will be added to the sorting queue,
3397 * so the way we are sorted now is as good as it will ever get.
3398 * In this case, we instead switch to issuing extents in LBA order.
3399 */
3400 if ((zfs_scan_issue_strategy < 1 && scn->scn_checkpointing) ||
3401 zfs_scan_issue_strategy == 1)
3402 return (zfs_range_tree_first(rt));
3403
3404 /*
3405 * Try to continue previous extent if it is not completed yet. After
3406 * shrink in scan_io_queue_gather() it may no longer be the best, but
3407 * otherwise we leave shorter remnant every txg.
3408 */
3409 uint64_t start;
3410 uint64_t size = 1ULL << rt->rt_shift;
3411 zfs_range_seg_t *addr_rs;
3412 if (queue->q_last_ext_addr != -1) {
3413 start = queue->q_last_ext_addr;
3414 addr_rs = zfs_range_tree_find(rt, start, size);
3415 if (addr_rs != NULL)
3416 return (addr_rs);
3417 }
3418
3419 /*
3420 * Nothing to continue, so find new best extent.
3421 */
3422 uint64_t *v = zfs_btree_first(&queue->q_exts_by_size, NULL);
3423 if (v == NULL)
3424 return (NULL);
3425 queue->q_last_ext_addr = start = *v << rt->rt_shift;
3426
3427 /*
3428 * We need to get the original entry in the by_addr tree so we can
3429 * modify it.
3430 */
3431 addr_rs = zfs_range_tree_find(rt, start, size);
3432 ASSERT3P(addr_rs, !=, NULL);
3433 ASSERT3U(zfs_rs_get_start(addr_rs, rt), ==, start);
3434 ASSERT3U(zfs_rs_get_end(addr_rs, rt), >, start);
3435 return (addr_rs);
3436 }
3437
3438 static void
scan_io_queues_run_one(void * arg)3439 scan_io_queues_run_one(void *arg)
3440 {
3441 dsl_scan_io_queue_t *queue = arg;
3442 kmutex_t *q_lock = &queue->q_vd->vdev_scan_io_queue_lock;
3443 boolean_t suspended = B_FALSE;
3444 zfs_range_seg_t *rs;
3445 scan_io_t *sio;
3446 zio_t *zio;
3447 list_t sio_list;
3448
3449 ASSERT(queue->q_scn->scn_is_sorted);
3450
3451 list_create(&sio_list, sizeof (scan_io_t),
3452 offsetof(scan_io_t, sio_nodes.sio_list_node));
3453 zio = zio_null(queue->q_scn->scn_zio_root, queue->q_scn->scn_dp->dp_spa,
3454 NULL, NULL, NULL, ZIO_FLAG_CANFAIL);
3455 mutex_enter(q_lock);
3456 queue->q_zio = zio;
3457
3458 /* Calculate maximum in-flight bytes for this vdev. */
3459 queue->q_maxinflight_bytes = MAX(1, zfs_scan_vdev_limit *
3460 (vdev_get_ndisks(queue->q_vd) - vdev_get_nparity(queue->q_vd)));
3461
3462 /* reset per-queue scan statistics for this txg */
3463 queue->q_total_seg_size_this_txg = 0;
3464 queue->q_segs_this_txg = 0;
3465 queue->q_total_zio_size_this_txg = 0;
3466 queue->q_zios_this_txg = 0;
3467
3468 /* loop until we run out of time or sios */
3469 while ((rs = scan_io_queue_fetch_ext(queue)) != NULL) {
3470 uint64_t seg_start = 0, seg_end = 0;
3471 boolean_t more_left;
3472
3473 ASSERT(list_is_empty(&sio_list));
3474
3475 /* loop while we still have sios left to process in this rs */
3476 do {
3477 scan_io_t *first_sio, *last_sio;
3478
3479 /*
3480 * We have selected which extent needs to be
3481 * processed next. Gather up the corresponding sios.
3482 */
3483 more_left = scan_io_queue_gather(queue, rs, &sio_list);
3484 ASSERT(!list_is_empty(&sio_list));
3485 first_sio = list_head(&sio_list);
3486 last_sio = list_tail(&sio_list);
3487
3488 seg_end = SIO_GET_END_OFFSET(last_sio);
3489 if (seg_start == 0)
3490 seg_start = SIO_GET_OFFSET(first_sio);
3491
3492 /*
3493 * Issuing sios can take a long time so drop the
3494 * queue lock. The sio queue won't be updated by
3495 * other threads since we're in syncing context so
3496 * we can be sure that our trees will remain exactly
3497 * as we left them.
3498 */
3499 mutex_exit(q_lock);
3500 suspended = scan_io_queue_issue(queue, &sio_list);
3501 mutex_enter(q_lock);
3502
3503 if (suspended)
3504 break;
3505 } while (more_left);
3506
3507 /* update statistics for debugging purposes */
3508 scan_io_queues_update_seg_stats(queue, seg_start, seg_end);
3509
3510 if (suspended)
3511 break;
3512 }
3513
3514 /*
3515 * If we were suspended in the middle of processing,
3516 * requeue any unfinished sios and exit.
3517 */
3518 while ((sio = list_remove_head(&sio_list)) != NULL)
3519 scan_io_queue_insert_impl(queue, sio);
3520
3521 queue->q_zio = NULL;
3522 mutex_exit(q_lock);
3523 zio_nowait(zio);
3524 list_destroy(&sio_list);
3525 }
3526
3527 /*
3528 * Performs an emptying run on all scan queues in the pool. This just
3529 * punches out one thread per top-level vdev, each of which processes
3530 * only that vdev's scan queue. We can parallelize the I/O here because
3531 * we know that each queue's I/Os only affect its own top-level vdev.
3532 *
3533 * This function waits for the queue runs to complete, and must be
3534 * called from dsl_scan_sync (or in general, syncing context).
3535 */
3536 static void
scan_io_queues_run(dsl_scan_t * scn)3537 scan_io_queues_run(dsl_scan_t *scn)
3538 {
3539 spa_t *spa = scn->scn_dp->dp_spa;
3540
3541 ASSERT(scn->scn_is_sorted);
3542 ASSERT(spa_config_held(spa, SCL_CONFIG, RW_READER));
3543
3544 if (scn->scn_queues_pending == 0)
3545 return;
3546
3547 if (scn->scn_taskq == NULL) {
3548 int nthreads = spa->spa_root_vdev->vdev_children;
3549
3550 /*
3551 * We need to make this taskq *always* execute as many
3552 * threads in parallel as we have top-level vdevs and no
3553 * less, otherwise strange serialization of the calls to
3554 * scan_io_queues_run_one can occur during spa_sync runs
3555 * and that significantly impacts performance.
3556 */
3557 scn->scn_taskq = taskq_create("dsl_scan_iss", nthreads,
3558 minclsyspri, nthreads, nthreads, TASKQ_PREPOPULATE);
3559 }
3560
3561 for (uint64_t i = 0; i < spa->spa_root_vdev->vdev_children; i++) {
3562 vdev_t *vd = spa->spa_root_vdev->vdev_child[i];
3563
3564 mutex_enter(&vd->vdev_scan_io_queue_lock);
3565 if (vd->vdev_scan_io_queue != NULL) {
3566 VERIFY(taskq_dispatch(scn->scn_taskq,
3567 scan_io_queues_run_one, vd->vdev_scan_io_queue,
3568 TQ_SLEEP) != TASKQID_INVALID);
3569 }
3570 mutex_exit(&vd->vdev_scan_io_queue_lock);
3571 }
3572
3573 /*
3574 * Wait for the queues to finish issuing their IOs for this run
3575 * before we return. There may still be IOs in flight at this
3576 * point.
3577 */
3578 taskq_wait(scn->scn_taskq);
3579 }
3580
3581 static boolean_t
dsl_scan_async_block_should_pause(dsl_scan_t * scn)3582 dsl_scan_async_block_should_pause(dsl_scan_t *scn)
3583 {
3584 uint64_t elapsed_nanosecs;
3585
3586 if (zfs_recover)
3587 return (B_FALSE);
3588
3589 if (zfs_async_block_max_blocks != 0 &&
3590 scn->scn_visited_this_txg >= zfs_async_block_max_blocks) {
3591 return (B_TRUE);
3592 }
3593
3594 if (zfs_max_async_dedup_frees != 0 &&
3595 scn->scn_async_frees_this_txg >= zfs_max_async_dedup_frees) {
3596 return (B_TRUE);
3597 }
3598
3599 elapsed_nanosecs = getlrtime() - scn->scn_sync_start_time;
3600 return (elapsed_nanosecs / (NANOSEC / 2) > zfs_txg_timeout ||
3601 (NSEC2MSEC(elapsed_nanosecs) > scn->scn_async_block_min_time_ms &&
3602 txg_sync_waiting(scn->scn_dp)) ||
3603 spa_shutting_down(scn->scn_dp->dp_spa));
3604 }
3605
3606 static int
dsl_scan_free_block_cb(void * arg,const blkptr_t * bp,dmu_tx_t * tx)3607 dsl_scan_free_block_cb(void *arg, const blkptr_t *bp, dmu_tx_t *tx)
3608 {
3609 dsl_scan_t *scn = arg;
3610
3611 if (!scn->scn_is_bptree ||
3612 (BP_GET_LEVEL(bp) == 0 && BP_GET_TYPE(bp) != DMU_OT_OBJSET)) {
3613 if (dsl_scan_async_block_should_pause(scn))
3614 return (SET_ERROR(ERESTART));
3615 }
3616
3617 zio_t *zio = zio_free_sync(scn->scn_zio_root, scn->scn_dp->dp_spa,
3618 dmu_tx_get_txg(tx), bp, 0);
3619 dsl_dir_diduse_space(tx->tx_pool->dp_free_dir, DD_USED_HEAD,
3620 -bp_get_dsize_sync(scn->scn_dp->dp_spa, bp),
3621 -BP_GET_PSIZE(bp), -BP_GET_UCSIZE(bp), tx);
3622 scn->scn_visited_this_txg++;
3623 if (zio != NULL) {
3624 /*
3625 * zio_free_sync() returned a ZIO, meaning this is an
3626 * async I/O (dedup, clone or gang block).
3627 */
3628 scn->scn_async_frees_this_txg++;
3629 zio_nowait(zio);
3630
3631 /*
3632 * After issuing N async ZIOs, wait for them to complete.
3633 * This makes time limits work with actual I/O completion
3634 * times, not just queuing times.
3635 */
3636 uint64_t i = zfs_async_free_zio_wait_interval;
3637 if (i != 0 && (scn->scn_async_frees_this_txg % i) == 0) {
3638 VERIFY0(zio_wait(scn->scn_zio_root));
3639 scn->scn_zio_root = zio_root(scn->scn_dp->dp_spa, NULL,
3640 NULL, ZIO_FLAG_MUSTSUCCEED);
3641 }
3642 }
3643 return (0);
3644 }
3645
3646 static void
dsl_scan_update_stats(dsl_scan_t * scn)3647 dsl_scan_update_stats(dsl_scan_t *scn)
3648 {
3649 spa_t *spa = scn->scn_dp->dp_spa;
3650 uint64_t i;
3651 uint64_t seg_size_total = 0, zio_size_total = 0;
3652 uint64_t seg_count_total = 0, zio_count_total = 0;
3653
3654 for (i = 0; i < spa->spa_root_vdev->vdev_children; i++) {
3655 vdev_t *vd = spa->spa_root_vdev->vdev_child[i];
3656 dsl_scan_io_queue_t *queue = vd->vdev_scan_io_queue;
3657
3658 if (queue == NULL)
3659 continue;
3660
3661 seg_size_total += queue->q_total_seg_size_this_txg;
3662 zio_size_total += queue->q_total_zio_size_this_txg;
3663 seg_count_total += queue->q_segs_this_txg;
3664 zio_count_total += queue->q_zios_this_txg;
3665 }
3666
3667 if (seg_count_total == 0 || zio_count_total == 0) {
3668 scn->scn_avg_seg_size_this_txg = 0;
3669 scn->scn_avg_zio_size_this_txg = 0;
3670 scn->scn_segs_this_txg = 0;
3671 scn->scn_zios_this_txg = 0;
3672 return;
3673 }
3674
3675 scn->scn_avg_seg_size_this_txg = seg_size_total / seg_count_total;
3676 scn->scn_avg_zio_size_this_txg = zio_size_total / zio_count_total;
3677 scn->scn_segs_this_txg = seg_count_total;
3678 scn->scn_zios_this_txg = zio_count_total;
3679 }
3680
3681 static int
bpobj_dsl_scan_free_block_cb(void * arg,const blkptr_t * bp,boolean_t bp_freed,dmu_tx_t * tx)3682 bpobj_dsl_scan_free_block_cb(void *arg, const blkptr_t *bp, boolean_t bp_freed,
3683 dmu_tx_t *tx)
3684 {
3685 ASSERT(!bp_freed);
3686 return (dsl_scan_free_block_cb(arg, bp, tx));
3687 }
3688
3689 static int
dsl_scan_obsolete_block_cb(void * arg,const blkptr_t * bp,boolean_t bp_freed,dmu_tx_t * tx)3690 dsl_scan_obsolete_block_cb(void *arg, const blkptr_t *bp, boolean_t bp_freed,
3691 dmu_tx_t *tx)
3692 {
3693 ASSERT(!bp_freed);
3694 dsl_scan_t *scn = arg;
3695 const dva_t *dva = &bp->blk_dva[0];
3696
3697 if (dsl_scan_async_block_should_pause(scn))
3698 return (SET_ERROR(ERESTART));
3699
3700 spa_vdev_indirect_mark_obsolete(scn->scn_dp->dp_spa,
3701 DVA_GET_VDEV(dva), DVA_GET_OFFSET(dva),
3702 DVA_GET_ASIZE(dva), tx);
3703 scn->scn_visited_this_txg++;
3704 return (0);
3705 }
3706
3707 boolean_t
dsl_scan_active(dsl_scan_t * scn)3708 dsl_scan_active(dsl_scan_t *scn)
3709 {
3710 spa_t *spa = scn->scn_dp->dp_spa;
3711 uint64_t used = 0, comp, uncomp;
3712 boolean_t clones_left;
3713
3714 if (spa->spa_load_state != SPA_LOAD_NONE)
3715 return (B_FALSE);
3716 if (spa_shutting_down(spa))
3717 return (B_FALSE);
3718 if ((dsl_scan_is_running(scn) && !dsl_scan_is_paused_scrub(scn)) ||
3719 (scn->scn_async_destroying && !scn->scn_async_stalled))
3720 return (B_TRUE);
3721
3722 if (spa_version(scn->scn_dp->dp_spa) >= SPA_VERSION_DEADLISTS) {
3723 (void) bpobj_space(&scn->scn_dp->dp_free_bpobj,
3724 &used, &comp, &uncomp);
3725 }
3726 clones_left = spa_livelist_delete_check(spa);
3727 return ((used != 0) || (clones_left));
3728 }
3729
3730 boolean_t
dsl_errorscrub_active(dsl_scan_t * scn)3731 dsl_errorscrub_active(dsl_scan_t *scn)
3732 {
3733 spa_t *spa = scn->scn_dp->dp_spa;
3734 if (spa->spa_load_state != SPA_LOAD_NONE)
3735 return (B_FALSE);
3736 if (spa_shutting_down(spa))
3737 return (B_FALSE);
3738 if (dsl_errorscrubbing(scn->scn_dp))
3739 return (B_TRUE);
3740 return (B_FALSE);
3741 }
3742
3743 static boolean_t
dsl_scan_check_deferred(vdev_t * vd)3744 dsl_scan_check_deferred(vdev_t *vd)
3745 {
3746 boolean_t need_resilver = B_FALSE;
3747
3748 for (int c = 0; c < vd->vdev_children; c++) {
3749 need_resilver |=
3750 dsl_scan_check_deferred(vd->vdev_child[c]);
3751 }
3752
3753 if (!vdev_is_concrete(vd) || vd->vdev_aux ||
3754 !vd->vdev_ops->vdev_op_leaf)
3755 return (need_resilver);
3756
3757 if (!vd->vdev_resilver_deferred)
3758 need_resilver = B_TRUE;
3759
3760 return (need_resilver);
3761 }
3762
3763 static boolean_t
dsl_scan_need_resilver(spa_t * spa,const dva_t * dva,size_t psize,uint64_t phys_birth)3764 dsl_scan_need_resilver(spa_t *spa, const dva_t *dva, size_t psize,
3765 uint64_t phys_birth)
3766 {
3767 vdev_t *vd;
3768
3769 vd = vdev_lookup_top(spa, DVA_GET_VDEV(dva));
3770
3771 if (vd->vdev_ops == &vdev_indirect_ops) {
3772 /*
3773 * The indirect vdev can point to multiple
3774 * vdevs. For simplicity, always create
3775 * the resilver zio_t. zio_vdev_io_start()
3776 * will bypass the child resilver i/o's if
3777 * they are on vdevs that don't have DTL's.
3778 */
3779 return (B_TRUE);
3780 }
3781
3782 if (DVA_GET_GANG(dva)) {
3783 /*
3784 * Gang members may be spread across multiple
3785 * vdevs, so the best estimate we have is the
3786 * scrub range, which has already been checked.
3787 * XXX -- it would be better to change our
3788 * allocation policy to ensure that all
3789 * gang members reside on the same vdev.
3790 */
3791 return (B_TRUE);
3792 }
3793
3794 /*
3795 * Check if the top-level vdev must resilver this offset.
3796 * When the offset does not intersect with a dirty leaf DTL
3797 * then it may be possible to skip the resilver IO. The psize
3798 * is provided instead of asize to simplify the check for RAIDZ.
3799 */
3800 if (!vdev_dtl_need_resilver(vd, dva, psize, phys_birth))
3801 return (B_FALSE);
3802
3803 /*
3804 * Check that this top-level vdev has a device under it which
3805 * is resilvering and is not deferred.
3806 */
3807 if (!dsl_scan_check_deferred(vd))
3808 return (B_FALSE);
3809
3810 return (B_TRUE);
3811 }
3812
3813 static int
dsl_process_async_destroys(dsl_pool_t * dp,dmu_tx_t * tx)3814 dsl_process_async_destroys(dsl_pool_t *dp, dmu_tx_t *tx)
3815 {
3816 dsl_scan_t *scn = dp->dp_scan;
3817 spa_t *spa = dp->dp_spa;
3818 int err = 0;
3819
3820 if (spa_suspend_async_destroy(spa))
3821 return (0);
3822
3823 if (zfs_free_bpobj_enabled &&
3824 spa_version(spa) >= SPA_VERSION_DEADLISTS) {
3825 scn->scn_is_bptree = B_FALSE;
3826 scn->scn_async_block_min_time_ms = zfs_free_min_time_ms;
3827 scn->scn_zio_root = zio_root(spa, NULL,
3828 NULL, ZIO_FLAG_MUSTSUCCEED);
3829 err = bpobj_iterate(&dp->dp_free_bpobj,
3830 bpobj_dsl_scan_free_block_cb, scn, tx);
3831 VERIFY0(zio_wait(scn->scn_zio_root));
3832 scn->scn_zio_root = NULL;
3833
3834 if (err != 0 && err != ERESTART)
3835 zfs_panic_recover("error %u from bpobj_iterate()", err);
3836 }
3837
3838 if (err == 0 && spa_feature_is_active(spa, SPA_FEATURE_ASYNC_DESTROY)) {
3839 ASSERT(scn->scn_async_destroying);
3840 scn->scn_is_bptree = B_TRUE;
3841 scn->scn_zio_root = zio_root(spa, NULL,
3842 NULL, ZIO_FLAG_MUSTSUCCEED);
3843 err = bptree_iterate(dp->dp_meta_objset,
3844 dp->dp_bptree_obj, B_TRUE, dsl_scan_free_block_cb, scn, tx);
3845 VERIFY0(zio_wait(scn->scn_zio_root));
3846 scn->scn_zio_root = NULL;
3847
3848 if (err == EIO || err == ECKSUM) {
3849 err = 0;
3850 } else if (err != 0 && err != ERESTART) {
3851 zfs_panic_recover("error %u from "
3852 "traverse_dataset_destroyed()", err);
3853 }
3854
3855 if (bptree_is_empty(dp->dp_meta_objset, dp->dp_bptree_obj)) {
3856 /* finished; deactivate async destroy feature */
3857 spa_feature_decr(spa, SPA_FEATURE_ASYNC_DESTROY, tx);
3858 ASSERT(!spa_feature_is_active(spa,
3859 SPA_FEATURE_ASYNC_DESTROY));
3860 VERIFY0(zap_remove(dp->dp_meta_objset,
3861 DMU_POOL_DIRECTORY_OBJECT,
3862 DMU_POOL_BPTREE_OBJ, tx));
3863 VERIFY0(bptree_free(dp->dp_meta_objset,
3864 dp->dp_bptree_obj, tx));
3865 dp->dp_bptree_obj = 0;
3866 scn->scn_async_destroying = B_FALSE;
3867 scn->scn_async_stalled = B_FALSE;
3868 } else {
3869 /*
3870 * If we didn't make progress, mark the async
3871 * destroy as stalled, so that we will not initiate
3872 * a spa_sync() on its behalf. Note that we only
3873 * check this if we are not finished, because if the
3874 * bptree had no blocks for us to visit, we can
3875 * finish without "making progress".
3876 */
3877 scn->scn_async_stalled =
3878 (scn->scn_visited_this_txg == 0);
3879 }
3880 }
3881 if (scn->scn_visited_this_txg) {
3882 zfs_dbgmsg("freed %llu blocks in %llums from "
3883 "free_bpobj/bptree on %s in txg %llu; err=%u",
3884 (longlong_t)scn->scn_visited_this_txg,
3885 (longlong_t)
3886 NSEC2MSEC(getlrtime() - scn->scn_sync_start_time),
3887 spa->spa_name, (longlong_t)tx->tx_txg, err);
3888 scn->scn_visited_this_txg = 0;
3889 scn->scn_async_frees_this_txg = 0;
3890
3891 /*
3892 * Write out changes to the DDT and the BRT that may be required
3893 * as a result of the blocks freed. This ensures that the DDT
3894 * and the BRT are clean when a scrub/resilver runs.
3895 */
3896 ddt_sync(spa, tx->tx_txg);
3897 brt_sync(spa, tx->tx_txg);
3898 }
3899 if (err != 0)
3900 return (err);
3901 if (dp->dp_free_dir != NULL && !scn->scn_async_destroying &&
3902 zfs_free_leak_on_eio &&
3903 (dsl_dir_phys(dp->dp_free_dir)->dd_used_bytes != 0 ||
3904 dsl_dir_phys(dp->dp_free_dir)->dd_compressed_bytes != 0 ||
3905 dsl_dir_phys(dp->dp_free_dir)->dd_uncompressed_bytes != 0)) {
3906 /*
3907 * We have finished background destroying, but there is still
3908 * some space left in the dp_free_dir. Transfer this leaked
3909 * space to the dp_leak_dir.
3910 */
3911 if (dp->dp_leak_dir == NULL) {
3912 rrw_enter(&dp->dp_config_rwlock, RW_WRITER, FTAG);
3913 (void) dsl_dir_create_sync(dp, dp->dp_root_dir,
3914 LEAK_DIR_NAME, tx);
3915 VERIFY0(dsl_pool_open_special_dir(dp,
3916 LEAK_DIR_NAME, &dp->dp_leak_dir));
3917 rrw_exit(&dp->dp_config_rwlock, FTAG);
3918 }
3919 dsl_dir_diduse_space(dp->dp_leak_dir, DD_USED_HEAD,
3920 dsl_dir_phys(dp->dp_free_dir)->dd_used_bytes,
3921 dsl_dir_phys(dp->dp_free_dir)->dd_compressed_bytes,
3922 dsl_dir_phys(dp->dp_free_dir)->dd_uncompressed_bytes, tx);
3923 dsl_dir_diduse_space(dp->dp_free_dir, DD_USED_HEAD,
3924 -dsl_dir_phys(dp->dp_free_dir)->dd_used_bytes,
3925 -dsl_dir_phys(dp->dp_free_dir)->dd_compressed_bytes,
3926 -dsl_dir_phys(dp->dp_free_dir)->dd_uncompressed_bytes, tx);
3927 }
3928
3929 if (dp->dp_free_dir != NULL && !scn->scn_async_destroying &&
3930 !spa_livelist_delete_check(spa)) {
3931 /* finished; verify that space accounting went to zero */
3932 ASSERT0(dsl_dir_phys(dp->dp_free_dir)->dd_used_bytes);
3933 ASSERT0(dsl_dir_phys(dp->dp_free_dir)->dd_compressed_bytes);
3934 ASSERT0(dsl_dir_phys(dp->dp_free_dir)->dd_uncompressed_bytes);
3935 }
3936
3937 spa_notify_waiters(spa);
3938
3939 EQUIV(bpobj_is_open(&dp->dp_obsolete_bpobj),
3940 0 == zap_contains(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
3941 DMU_POOL_OBSOLETE_BPOBJ));
3942 if (err == 0 && bpobj_is_open(&dp->dp_obsolete_bpobj)) {
3943 ASSERT(spa_feature_is_active(dp->dp_spa,
3944 SPA_FEATURE_OBSOLETE_COUNTS));
3945
3946 scn->scn_is_bptree = B_FALSE;
3947 scn->scn_async_block_min_time_ms = zfs_obsolete_min_time_ms;
3948 err = bpobj_iterate(&dp->dp_obsolete_bpobj,
3949 dsl_scan_obsolete_block_cb, scn, tx);
3950 if (err != 0 && err != ERESTART)
3951 zfs_panic_recover("error %u from bpobj_iterate()", err);
3952
3953 if (bpobj_is_empty(&dp->dp_obsolete_bpobj))
3954 dsl_pool_destroy_obsolete_bpobj(dp, tx);
3955 }
3956 return (0);
3957 }
3958
3959 static void
name_to_bookmark(char * buf,zbookmark_phys_t * zb)3960 name_to_bookmark(char *buf, zbookmark_phys_t *zb)
3961 {
3962 zb->zb_objset = zfs_strtonum(buf, &buf);
3963 ASSERT(*buf == ':');
3964 zb->zb_object = zfs_strtonum(buf + 1, &buf);
3965 ASSERT(*buf == ':');
3966 zb->zb_level = (int)zfs_strtonum(buf + 1, &buf);
3967 ASSERT(*buf == ':');
3968 zb->zb_blkid = zfs_strtonum(buf + 1, &buf);
3969 ASSERT(*buf == '\0');
3970 }
3971
3972 static void
name_to_object(char * buf,uint64_t * obj)3973 name_to_object(char *buf, uint64_t *obj)
3974 {
3975 *obj = zfs_strtonum(buf, &buf);
3976 ASSERT(*buf == '\0');
3977 }
3978
3979 static void
read_by_block_level(dsl_scan_t * scn,zbookmark_phys_t zb)3980 read_by_block_level(dsl_scan_t *scn, zbookmark_phys_t zb)
3981 {
3982 dsl_pool_t *dp = scn->scn_dp;
3983 dsl_dataset_t *ds;
3984 objset_t *os;
3985 if (dsl_dataset_hold_obj(dp, zb.zb_objset, FTAG, &ds) != 0)
3986 return;
3987
3988 if (dmu_objset_from_ds(ds, &os) != 0) {
3989 dsl_dataset_rele(ds, FTAG);
3990 return;
3991 }
3992
3993 /*
3994 * If the key is not loaded dbuf_dnode_findbp() will error out with
3995 * EACCES. However in that case dnode_hold() will eventually call
3996 * dbuf_read()->zio_wait() which may call spa_log_error(). This will
3997 * lead to a deadlock due to us holding the mutex spa_errlist_lock.
3998 * Avoid this by checking here if the keys are loaded, if not return.
3999 * If the keys are not loaded the head_errlog feature is meaningless
4000 * as we cannot figure out the birth txg of the block pointer.
4001 */
4002 if (dsl_dataset_get_keystatus(ds->ds_dir) ==
4003 ZFS_KEYSTATUS_UNAVAILABLE) {
4004 dsl_dataset_rele(ds, FTAG);
4005 return;
4006 }
4007
4008 dnode_t *dn;
4009 blkptr_t bp;
4010
4011 if (dnode_hold(os, zb.zb_object, FTAG, &dn) != 0) {
4012 dsl_dataset_rele(ds, FTAG);
4013 return;
4014 }
4015
4016 rw_enter(&dn->dn_struct_rwlock, RW_READER);
4017 int error = dbuf_dnode_findbp(dn, zb.zb_level, zb.zb_blkid, &bp, NULL,
4018 NULL);
4019
4020 if (error) {
4021 rw_exit(&dn->dn_struct_rwlock);
4022 dnode_rele(dn, FTAG);
4023 dsl_dataset_rele(ds, FTAG);
4024 return;
4025 }
4026
4027 if (!error && BP_IS_HOLE(&bp)) {
4028 rw_exit(&dn->dn_struct_rwlock);
4029 dnode_rele(dn, FTAG);
4030 dsl_dataset_rele(ds, FTAG);
4031 return;
4032 }
4033
4034 int zio_flags = ZIO_FLAG_SCAN_THREAD | ZIO_FLAG_RAW |
4035 ZIO_FLAG_CANFAIL | ZIO_FLAG_SCRUB;
4036
4037 /* If it's an intent log block, failure is expected. */
4038 if (zb.zb_level == ZB_ZIL_LEVEL)
4039 zio_flags |= ZIO_FLAG_SPECULATIVE;
4040
4041 ASSERT(!BP_IS_EMBEDDED(&bp));
4042 scan_exec_io(dp, &bp, zio_flags, &zb, NULL);
4043 rw_exit(&dn->dn_struct_rwlock);
4044 dnode_rele(dn, FTAG);
4045 dsl_dataset_rele(ds, FTAG);
4046 }
4047
4048 /*
4049 * We keep track of the scrubbed error blocks in "count". This will be used
4050 * when deciding whether we exceeded zfs_scrub_error_blocks_per_txg. This
4051 * function is modelled after check_filesystem().
4052 */
4053 static int
scrub_filesystem(spa_t * spa,uint64_t fs,zbookmark_err_phys_t * zep,int * count)4054 scrub_filesystem(spa_t *spa, uint64_t fs, zbookmark_err_phys_t *zep,
4055 int *count)
4056 {
4057 dsl_dataset_t *ds;
4058 dsl_pool_t *dp = spa->spa_dsl_pool;
4059 dsl_scan_t *scn = dp->dp_scan;
4060
4061 int error = dsl_dataset_hold_obj(dp, fs, FTAG, &ds);
4062 if (error != 0)
4063 return (error);
4064
4065 uint64_t latest_txg;
4066 uint64_t txg_to_consider = spa->spa_syncing_txg;
4067 boolean_t check_snapshot = B_TRUE;
4068
4069 error = find_birth_txg(ds, zep, &latest_txg);
4070
4071 /*
4072 * If find_birth_txg() errors out, then err on the side of caution and
4073 * proceed. In worst case scenario scrub all objects. If zep->zb_birth
4074 * is 0 (e.g. in case of encryption with unloaded keys) also proceed to
4075 * scrub all objects.
4076 */
4077 if (error == 0 && zep->zb_birth == latest_txg) {
4078 /* Block neither free nor re written. */
4079 zbookmark_phys_t zb;
4080 zep_to_zb(fs, zep, &zb);
4081 scn->scn_zio_root = zio_root(spa, NULL, NULL,
4082 ZIO_FLAG_CANFAIL);
4083 /* We have already acquired the config lock for spa */
4084 read_by_block_level(scn, zb);
4085
4086 (void) zio_wait(scn->scn_zio_root);
4087 scn->scn_zio_root = NULL;
4088
4089 scn->errorscrub_phys.dep_examined++;
4090 scn->errorscrub_phys.dep_to_examine--;
4091 (*count)++;
4092 if ((*count) == zfs_scrub_error_blocks_per_txg ||
4093 dsl_error_scrub_check_suspend(scn, &zb)) {
4094 dsl_dataset_rele(ds, FTAG);
4095 return (SET_ERROR(EFAULT));
4096 }
4097
4098 check_snapshot = B_FALSE;
4099 } else if (error == 0) {
4100 txg_to_consider = latest_txg;
4101 }
4102
4103 /*
4104 * Retrieve the number of snapshots if the dataset is not a snapshot.
4105 */
4106 uint64_t snap_count = 0;
4107 if (dsl_dataset_phys(ds)->ds_snapnames_zapobj != 0) {
4108
4109 error = zap_count(spa->spa_meta_objset,
4110 dsl_dataset_phys(ds)->ds_snapnames_zapobj, &snap_count);
4111
4112 if (error != 0) {
4113 dsl_dataset_rele(ds, FTAG);
4114 return (error);
4115 }
4116 }
4117
4118 if (snap_count == 0) {
4119 /* Filesystem without snapshots. */
4120 dsl_dataset_rele(ds, FTAG);
4121 return (0);
4122 }
4123
4124 uint64_t snap_obj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
4125 uint64_t snap_obj_txg = dsl_dataset_phys(ds)->ds_prev_snap_txg;
4126
4127 dsl_dataset_rele(ds, FTAG);
4128
4129 /* Check only snapshots created from this file system. */
4130 while (snap_obj != 0 && zep->zb_birth < snap_obj_txg &&
4131 snap_obj_txg <= txg_to_consider) {
4132
4133 error = dsl_dataset_hold_obj(dp, snap_obj, FTAG, &ds);
4134 if (error != 0)
4135 return (error);
4136
4137 if (dsl_dir_phys(ds->ds_dir)->dd_head_dataset_obj != fs) {
4138 snap_obj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
4139 snap_obj_txg = dsl_dataset_phys(ds)->ds_prev_snap_txg;
4140 dsl_dataset_rele(ds, FTAG);
4141 continue;
4142 }
4143
4144 boolean_t affected = B_TRUE;
4145 if (check_snapshot) {
4146 uint64_t blk_txg;
4147 error = find_birth_txg(ds, zep, &blk_txg);
4148
4149 /*
4150 * Scrub the snapshot also when zb_birth == 0 or when
4151 * find_birth_txg() returns an error.
4152 */
4153 affected = (error == 0 && zep->zb_birth == blk_txg) ||
4154 (error != 0) || (zep->zb_birth == 0);
4155 }
4156
4157 /* Scrub snapshots. */
4158 if (affected) {
4159 zbookmark_phys_t zb;
4160 zep_to_zb(snap_obj, zep, &zb);
4161 scn->scn_zio_root = zio_root(spa, NULL, NULL,
4162 ZIO_FLAG_CANFAIL);
4163 /* We have already acquired the config lock for spa */
4164 read_by_block_level(scn, zb);
4165
4166 (void) zio_wait(scn->scn_zio_root);
4167 scn->scn_zio_root = NULL;
4168
4169 scn->errorscrub_phys.dep_examined++;
4170 scn->errorscrub_phys.dep_to_examine--;
4171 (*count)++;
4172 if ((*count) == zfs_scrub_error_blocks_per_txg ||
4173 dsl_error_scrub_check_suspend(scn, &zb)) {
4174 dsl_dataset_rele(ds, FTAG);
4175 return (EFAULT);
4176 }
4177 }
4178 snap_obj_txg = dsl_dataset_phys(ds)->ds_prev_snap_txg;
4179 snap_obj = dsl_dataset_phys(ds)->ds_prev_snap_obj;
4180 dsl_dataset_rele(ds, FTAG);
4181 }
4182 return (0);
4183 }
4184
4185 void
dsl_errorscrub_sync(dsl_pool_t * dp,dmu_tx_t * tx)4186 dsl_errorscrub_sync(dsl_pool_t *dp, dmu_tx_t *tx)
4187 {
4188 spa_t *spa = dp->dp_spa;
4189 dsl_scan_t *scn = dp->dp_scan;
4190
4191 /*
4192 * Only process scans in sync pass 1.
4193 */
4194
4195 if (spa_sync_pass(spa) > 1)
4196 return;
4197
4198 /*
4199 * If the spa is shutting down, then stop scanning. This will
4200 * ensure that the scan does not dirty any new data during the
4201 * shutdown phase.
4202 */
4203 if (spa_shutting_down(spa))
4204 return;
4205
4206 if (!dsl_errorscrub_active(scn) || dsl_errorscrub_is_paused(scn)) {
4207 return;
4208 }
4209
4210 if (dsl_scan_resilvering(scn->scn_dp)) {
4211 /* cancel the error scrub if resilver started */
4212 dsl_scan_cancel(scn->scn_dp);
4213 return;
4214 }
4215
4216 spa->spa_scrub_active = B_TRUE;
4217 scn->scn_sync_start_time = getlrtime();
4218
4219 /*
4220 * zfs_scan_suspend_progress can be set to disable scrub progress.
4221 * See more detailed comment in dsl_scan_sync().
4222 */
4223 if (zfs_scan_suspend_progress) {
4224 uint64_t scan_time_ns = getlrtime() - scn->scn_sync_start_time;
4225 int mintime = zfs_scrub_min_time_ms;
4226
4227 while (zfs_scan_suspend_progress &&
4228 !txg_sync_waiting(scn->scn_dp) &&
4229 !spa_shutting_down(scn->scn_dp->dp_spa) &&
4230 NSEC2MSEC(scan_time_ns) < mintime) {
4231 delay(hz);
4232 scan_time_ns = getlrtime() - scn->scn_sync_start_time;
4233 }
4234 return;
4235 }
4236
4237 int i = 0;
4238 zap_attribute_t *za;
4239 zbookmark_phys_t *zb;
4240 boolean_t limit_exceeded = B_FALSE;
4241
4242 za = zap_attribute_alloc();
4243 zb = kmem_zalloc(sizeof (zbookmark_phys_t), KM_SLEEP);
4244
4245 if (!spa_feature_is_enabled(spa, SPA_FEATURE_HEAD_ERRLOG)) {
4246 for (; zap_cursor_retrieve(&scn->errorscrub_cursor, za) == 0;
4247 zap_cursor_advance(&scn->errorscrub_cursor)) {
4248 name_to_bookmark(za->za_name, zb);
4249
4250 scn->scn_zio_root = zio_root(dp->dp_spa, NULL,
4251 NULL, ZIO_FLAG_CANFAIL);
4252 dsl_pool_config_enter(dp, FTAG);
4253 read_by_block_level(scn, *zb);
4254 dsl_pool_config_exit(dp, FTAG);
4255
4256 (void) zio_wait(scn->scn_zio_root);
4257 scn->scn_zio_root = NULL;
4258
4259 scn->errorscrub_phys.dep_examined += 1;
4260 scn->errorscrub_phys.dep_to_examine -= 1;
4261 i++;
4262 if (i == zfs_scrub_error_blocks_per_txg ||
4263 dsl_error_scrub_check_suspend(scn, zb)) {
4264 limit_exceeded = B_TRUE;
4265 break;
4266 }
4267 }
4268
4269 if (!limit_exceeded)
4270 dsl_errorscrub_done(scn, B_TRUE, tx);
4271
4272 dsl_errorscrub_sync_state(scn, tx);
4273 zap_attribute_free(za);
4274 kmem_free(zb, sizeof (*zb));
4275 return;
4276 }
4277
4278 int error = 0;
4279 for (; zap_cursor_retrieve(&scn->errorscrub_cursor, za) == 0;
4280 zap_cursor_advance(&scn->errorscrub_cursor)) {
4281
4282 zap_cursor_t *head_ds_cursor;
4283 zap_attribute_t *head_ds_attr;
4284 zbookmark_err_phys_t head_ds_block;
4285
4286 head_ds_cursor = kmem_zalloc(sizeof (zap_cursor_t), KM_SLEEP);
4287 head_ds_attr = zap_attribute_alloc();
4288
4289 uint64_t head_ds_err_obj = za->za_first_integer;
4290 uint64_t head_ds;
4291 name_to_object(za->za_name, &head_ds);
4292 boolean_t config_held = B_FALSE;
4293 uint64_t top_affected_fs;
4294
4295 for (zap_cursor_init(head_ds_cursor, spa->spa_meta_objset,
4296 head_ds_err_obj); zap_cursor_retrieve(head_ds_cursor,
4297 head_ds_attr) == 0; zap_cursor_advance(head_ds_cursor)) {
4298
4299 name_to_errphys(head_ds_attr->za_name, &head_ds_block);
4300
4301 /*
4302 * In case we are called from spa_sync the pool
4303 * config is already held.
4304 */
4305 if (!dsl_pool_config_held(dp)) {
4306 dsl_pool_config_enter(dp, FTAG);
4307 config_held = B_TRUE;
4308 }
4309
4310 error = find_top_affected_fs(spa,
4311 head_ds, &head_ds_block, &top_affected_fs);
4312 if (error)
4313 break;
4314
4315 error = scrub_filesystem(spa, top_affected_fs,
4316 &head_ds_block, &i);
4317
4318 if (error == SET_ERROR(EFAULT)) {
4319 limit_exceeded = B_TRUE;
4320 break;
4321 }
4322 }
4323
4324 zap_cursor_fini(head_ds_cursor);
4325 kmem_free(head_ds_cursor, sizeof (*head_ds_cursor));
4326 zap_attribute_free(head_ds_attr);
4327
4328 if (config_held)
4329 dsl_pool_config_exit(dp, FTAG);
4330 }
4331
4332 zap_attribute_free(za);
4333 kmem_free(zb, sizeof (*zb));
4334 if (!limit_exceeded)
4335 dsl_errorscrub_done(scn, B_TRUE, tx);
4336
4337 dsl_errorscrub_sync_state(scn, tx);
4338 }
4339
4340 /*
4341 * This is the primary entry point for scans that is called from syncing
4342 * context. Scans must happen entirely during syncing context so that we
4343 * can guarantee that blocks we are currently scanning will not change out
4344 * from under us. While a scan is active, this function controls how quickly
4345 * transaction groups proceed, instead of the normal handling provided by
4346 * txg_sync_thread().
4347 */
4348 void
dsl_scan_sync(dsl_pool_t * dp,dmu_tx_t * tx)4349 dsl_scan_sync(dsl_pool_t *dp, dmu_tx_t *tx)
4350 {
4351 int err = 0;
4352 dsl_scan_t *scn = dp->dp_scan;
4353 spa_t *spa = dp->dp_spa;
4354 state_sync_type_t sync_type = SYNC_OPTIONAL;
4355 int restart_early = 0;
4356
4357 if (spa->spa_resilver_deferred) {
4358 uint64_t to_issue, issued;
4359
4360 if (!spa_feature_is_active(dp->dp_spa,
4361 SPA_FEATURE_RESILVER_DEFER))
4362 spa_feature_incr(spa, SPA_FEATURE_RESILVER_DEFER, tx);
4363
4364 /*
4365 * See print_scan_scrub_resilver_status() issued/total_i
4366 * @ cmd/zpool/zpool_main.c
4367 */
4368 to_issue =
4369 scn->scn_phys.scn_to_examine - scn->scn_phys.scn_skipped;
4370 issued =
4371 scn->scn_issued_before_pass + spa->spa_scan_pass_issued;
4372 restart_early =
4373 zfs_resilver_disable_defer ||
4374 (issued < (to_issue * zfs_resilver_defer_percent / 100));
4375 }
4376
4377 /*
4378 * Only process scans in sync pass 1.
4379 */
4380 if (spa_sync_pass(spa) > 1)
4381 return;
4382
4383
4384 /*
4385 * Check for scn_restart_txg before checking spa_load_state, so
4386 * that we can restart an old-style scan while the pool is being
4387 * imported (see dsl_scan_init). We also restart scans if there
4388 * is a deferred resilver and the user has manually disabled
4389 * deferred resilvers via zfs_resilver_disable_defer, or if the
4390 * current scan progress is below zfs_resilver_defer_percent.
4391 */
4392 if (dsl_scan_restarting(scn, tx) || restart_early) {
4393 setup_sync_arg_t setup_sync_arg = {
4394 .func = POOL_SCAN_SCRUB,
4395 .txgstart = 0,
4396 .txgend = 0,
4397 };
4398 dsl_scan_done(scn, B_FALSE, tx);
4399 if (vdev_resilver_needed(spa->spa_root_vdev, NULL, NULL))
4400 setup_sync_arg.func = POOL_SCAN_RESILVER;
4401 zfs_dbgmsg("restarting scan func=%u on %s txg=%llu early=%d",
4402 setup_sync_arg.func, dp->dp_spa->spa_name,
4403 (longlong_t)tx->tx_txg, restart_early);
4404 dsl_scan_setup_sync(&setup_sync_arg, tx);
4405 }
4406
4407 /*
4408 * If the spa is shutting down, then stop scanning. This will
4409 * ensure that the scan does not dirty any new data during the
4410 * shutdown phase.
4411 */
4412 if (spa_shutting_down(spa))
4413 return;
4414
4415 /*
4416 * Wait a few txgs after importing before doing background work
4417 * (async destroys and scanning). This should help the import
4418 * command to complete quickly.
4419 */
4420 if (spa->spa_syncing_txg < spa->spa_first_txg + zfs_import_defer_txgs)
4421 return;
4422
4423 /*
4424 * If the scan is inactive due to a stalled async destroy, try again.
4425 */
4426 if (!scn->scn_async_stalled && !dsl_scan_active(scn))
4427 return;
4428
4429 /* reset scan statistics */
4430 scn->scn_visited_this_txg = 0;
4431 scn->scn_async_frees_this_txg = 0;
4432 scn->scn_holes_this_txg = 0;
4433 scn->scn_lt_min_this_txg = 0;
4434 scn->scn_gt_max_this_txg = 0;
4435 scn->scn_ddt_contained_this_txg = 0;
4436 scn->scn_objsets_visited_this_txg = 0;
4437 scn->scn_avg_seg_size_this_txg = 0;
4438 scn->scn_segs_this_txg = 0;
4439 scn->scn_avg_zio_size_this_txg = 0;
4440 scn->scn_zios_this_txg = 0;
4441 scn->scn_suspending = B_FALSE;
4442 scn->scn_sync_start_time = getlrtime();
4443 spa->spa_scrub_active = B_TRUE;
4444
4445 /*
4446 * First process the async destroys. If we suspend, don't do
4447 * any scrubbing or resilvering. This ensures that there are no
4448 * async destroys while we are scanning, so the scan code doesn't
4449 * have to worry about traversing it. It is also faster to free the
4450 * blocks than to scrub them.
4451 */
4452 err = dsl_process_async_destroys(dp, tx);
4453 if (err != 0)
4454 return;
4455
4456 if (!dsl_scan_is_running(scn) || dsl_scan_is_paused_scrub(scn))
4457 return;
4458
4459 /*
4460 * zfs_scan_suspend_progress can be set to disable scan progress.
4461 * We don't want to spin the txg_sync thread, so we add a delay
4462 * here to simulate the time spent doing a scan. This is mostly
4463 * useful for testing and debugging.
4464 */
4465 if (zfs_scan_suspend_progress) {
4466 uint64_t scan_time_ns = getlrtime() - scn->scn_sync_start_time;
4467 uint_t mintime = (scn->scn_phys.scn_func ==
4468 POOL_SCAN_RESILVER) ? zfs_resilver_min_time_ms :
4469 zfs_scrub_min_time_ms;
4470
4471 while (zfs_scan_suspend_progress &&
4472 !txg_sync_waiting(scn->scn_dp) &&
4473 !spa_shutting_down(scn->scn_dp->dp_spa) &&
4474 NSEC2MSEC(scan_time_ns) < mintime) {
4475 delay(hz);
4476 scan_time_ns = getlrtime() - scn->scn_sync_start_time;
4477 }
4478 return;
4479 }
4480
4481 /*
4482 * Disabled by default, set zfs_scan_report_txgs to report
4483 * average performance over the last zfs_scan_report_txgs TXGs.
4484 */
4485 if (zfs_scan_report_txgs != 0 &&
4486 tx->tx_txg % zfs_scan_report_txgs == 0) {
4487 scn->scn_issued_before_pass += spa->spa_scan_pass_issued;
4488 spa_scan_stat_init(spa);
4489 }
4490
4491 /*
4492 * It is possible to switch from unsorted to sorted at any time,
4493 * but afterwards the scan will remain sorted unless reloaded from
4494 * a checkpoint after a reboot.
4495 */
4496 if (!zfs_scan_legacy) {
4497 scn->scn_is_sorted = B_TRUE;
4498 if (scn->scn_last_checkpoint == 0)
4499 scn->scn_last_checkpoint = ddi_get_lbolt();
4500 }
4501
4502 /*
4503 * For sorted scans, determine what kind of work we will be doing
4504 * this txg based on our memory limitations and whether or not we
4505 * need to perform a checkpoint.
4506 */
4507 if (scn->scn_is_sorted) {
4508 /*
4509 * If we are over our checkpoint interval, set scn_clearing
4510 * so that we can begin checkpointing immediately. The
4511 * checkpoint allows us to save a consistent bookmark
4512 * representing how much data we have scrubbed so far.
4513 * Otherwise, use the memory limit to determine if we should
4514 * scan for metadata or start issue scrub IOs. We accumulate
4515 * metadata until we hit our hard memory limit at which point
4516 * we issue scrub IOs until we are at our soft memory limit.
4517 */
4518 if (scn->scn_checkpointing ||
4519 ddi_get_lbolt() - scn->scn_last_checkpoint >
4520 SEC_TO_TICK(zfs_scan_checkpoint_intval)) {
4521 if (!scn->scn_checkpointing)
4522 zfs_dbgmsg("begin scan checkpoint for %s",
4523 spa->spa_name);
4524
4525 scn->scn_checkpointing = B_TRUE;
4526 scn->scn_clearing = B_TRUE;
4527 } else {
4528 boolean_t should_clear = dsl_scan_should_clear(scn);
4529 if (should_clear && !scn->scn_clearing) {
4530 zfs_dbgmsg("begin scan clearing for %s",
4531 spa->spa_name);
4532 scn->scn_clearing = B_TRUE;
4533 } else if (!should_clear && scn->scn_clearing) {
4534 zfs_dbgmsg("finish scan clearing for %s",
4535 spa->spa_name);
4536 scn->scn_clearing = B_FALSE;
4537 }
4538 }
4539 } else {
4540 ASSERT0(scn->scn_checkpointing);
4541 ASSERT0(scn->scn_clearing);
4542 }
4543
4544 if (!scn->scn_clearing && scn->scn_done_txg == 0) {
4545 /* Need to scan metadata for more blocks to scrub */
4546 dsl_scan_phys_t *scnp = &scn->scn_phys;
4547 taskqid_t prefetch_tqid;
4548
4549 /*
4550 * Calculate the max number of in-flight bytes for pool-wide
4551 * scanning operations (minimum 1MB, maximum 1/4 of arc_c_max).
4552 * Limits for the issuing phase are done per top-level vdev and
4553 * are handled separately.
4554 */
4555 scn->scn_maxinflight_bytes = MIN(arc_c_max / 4, MAX(1ULL << 20,
4556 zfs_scan_vdev_limit * dsl_scan_count_data_disks(spa)));
4557
4558 if (scnp->scn_ddt_bookmark.ddb_class <=
4559 scnp->scn_ddt_class_max) {
4560 ASSERT(ZB_IS_ZERO(&scnp->scn_bookmark));
4561 zfs_dbgmsg("doing scan sync for %s txg %llu; "
4562 "ddt bm=%llu/%llu/%llu/%llx",
4563 spa->spa_name,
4564 (longlong_t)tx->tx_txg,
4565 (longlong_t)scnp->scn_ddt_bookmark.ddb_class,
4566 (longlong_t)scnp->scn_ddt_bookmark.ddb_type,
4567 (longlong_t)scnp->scn_ddt_bookmark.ddb_checksum,
4568 (longlong_t)scnp->scn_ddt_bookmark.ddb_cursor);
4569 } else {
4570 zfs_dbgmsg("doing scan sync for %s txg %llu; "
4571 "bm=%llu/%llu/%llu/%llu",
4572 spa->spa_name,
4573 (longlong_t)tx->tx_txg,
4574 (longlong_t)scnp->scn_bookmark.zb_objset,
4575 (longlong_t)scnp->scn_bookmark.zb_object,
4576 (longlong_t)scnp->scn_bookmark.zb_level,
4577 (longlong_t)scnp->scn_bookmark.zb_blkid);
4578 }
4579
4580 scn->scn_zio_root = zio_root(dp->dp_spa, NULL,
4581 NULL, ZIO_FLAG_CANFAIL);
4582
4583 scn->scn_prefetch_stop = B_FALSE;
4584 prefetch_tqid = taskq_dispatch(dp->dp_sync_taskq,
4585 dsl_scan_prefetch_thread, scn, TQ_SLEEP);
4586 ASSERT(prefetch_tqid != TASKQID_INVALID);
4587
4588 dsl_pool_config_enter(dp, FTAG);
4589 dsl_scan_visit(scn, tx);
4590 dsl_pool_config_exit(dp, FTAG);
4591
4592 mutex_enter(&dp->dp_spa->spa_scrub_lock);
4593 scn->scn_prefetch_stop = B_TRUE;
4594 cv_broadcast(&spa->spa_scrub_io_cv);
4595 mutex_exit(&dp->dp_spa->spa_scrub_lock);
4596
4597 taskq_wait_id(dp->dp_sync_taskq, prefetch_tqid);
4598 (void) zio_wait(scn->scn_zio_root);
4599 scn->scn_zio_root = NULL;
4600
4601 zfs_dbgmsg("scan visited %llu blocks of %s in %llums "
4602 "(%llu os's, %llu holes, %llu < mintxg, "
4603 "%llu in ddt, %llu > maxtxg)",
4604 (longlong_t)scn->scn_visited_this_txg,
4605 spa->spa_name,
4606 (longlong_t)NSEC2MSEC(getlrtime() -
4607 scn->scn_sync_start_time),
4608 (longlong_t)scn->scn_objsets_visited_this_txg,
4609 (longlong_t)scn->scn_holes_this_txg,
4610 (longlong_t)scn->scn_lt_min_this_txg,
4611 (longlong_t)scn->scn_ddt_contained_this_txg,
4612 (longlong_t)scn->scn_gt_max_this_txg);
4613
4614 if (!scn->scn_suspending) {
4615 ASSERT0(avl_numnodes(&scn->scn_queue));
4616 scn->scn_done_txg = tx->tx_txg + 1;
4617 if (scn->scn_is_sorted) {
4618 scn->scn_checkpointing = B_TRUE;
4619 scn->scn_clearing = B_TRUE;
4620 scn->scn_issued_before_pass +=
4621 spa->spa_scan_pass_issued;
4622 spa_scan_stat_init(spa);
4623 }
4624 zfs_dbgmsg("scan complete for %s txg %llu",
4625 spa->spa_name,
4626 (longlong_t)tx->tx_txg);
4627 }
4628 } else if (scn->scn_is_sorted && scn->scn_queues_pending != 0) {
4629 ASSERT(scn->scn_clearing);
4630
4631 /* need to issue scrubbing IOs from per-vdev queues */
4632 scn->scn_zio_root = zio_root(dp->dp_spa, NULL,
4633 NULL, ZIO_FLAG_CANFAIL);
4634 scan_io_queues_run(scn);
4635 (void) zio_wait(scn->scn_zio_root);
4636 scn->scn_zio_root = NULL;
4637
4638 /* calculate and dprintf the current memory usage */
4639 (void) dsl_scan_should_clear(scn);
4640 dsl_scan_update_stats(scn);
4641
4642 zfs_dbgmsg("scan issued %llu blocks for %s (%llu segs) "
4643 "in %llums (avg_block_size = %llu, avg_seg_size = %llu)",
4644 (longlong_t)scn->scn_zios_this_txg,
4645 spa->spa_name,
4646 (longlong_t)scn->scn_segs_this_txg,
4647 (longlong_t)NSEC2MSEC(getlrtime() -
4648 scn->scn_sync_start_time),
4649 (longlong_t)scn->scn_avg_zio_size_this_txg,
4650 (longlong_t)scn->scn_avg_seg_size_this_txg);
4651 } else if (scn->scn_done_txg != 0 && scn->scn_done_txg <= tx->tx_txg) {
4652 /* Finished with everything. Mark the scrub as complete */
4653 zfs_dbgmsg("scan issuing complete txg %llu for %s",
4654 (longlong_t)tx->tx_txg,
4655 spa->spa_name);
4656 ASSERT3U(scn->scn_done_txg, !=, 0);
4657 ASSERT0(spa->spa_scrub_inflight);
4658 ASSERT0(scn->scn_queues_pending);
4659 dsl_scan_done(scn, B_TRUE, tx);
4660 sync_type = SYNC_MANDATORY;
4661 }
4662
4663 dsl_scan_sync_state(scn, tx, sync_type);
4664 }
4665
4666 static void
count_block_issued(spa_t * spa,const blkptr_t * bp,boolean_t all)4667 count_block_issued(spa_t *spa, const blkptr_t *bp, boolean_t all)
4668 {
4669 /*
4670 * Don't count embedded bp's, since we already did the work of
4671 * scanning these when we scanned the containing block.
4672 */
4673 if (BP_IS_EMBEDDED(bp))
4674 return;
4675
4676 /*
4677 * Update the spa's stats on how many bytes we have issued.
4678 * Sequential scrubs create a zio for each DVA of the bp. Each
4679 * of these will include all DVAs for repair purposes, but the
4680 * zio code will only try the first one unless there is an issue.
4681 * Therefore, we should only count the first DVA for these IOs.
4682 */
4683 atomic_add_64(&spa->spa_scan_pass_issued,
4684 all ? BP_GET_ASIZE(bp) : DVA_GET_ASIZE(&bp->blk_dva[0]));
4685 }
4686
4687 static void
count_block_skipped(dsl_scan_t * scn,const blkptr_t * bp,boolean_t all)4688 count_block_skipped(dsl_scan_t *scn, const blkptr_t *bp, boolean_t all)
4689 {
4690 if (BP_IS_EMBEDDED(bp))
4691 return;
4692 atomic_add_64(&scn->scn_phys.scn_skipped,
4693 all ? BP_GET_ASIZE(bp) : DVA_GET_ASIZE(&bp->blk_dva[0]));
4694 }
4695
4696 static void
count_block(zfs_all_blkstats_t * zab,const blkptr_t * bp)4697 count_block(zfs_all_blkstats_t *zab, const blkptr_t *bp)
4698 {
4699 /*
4700 * If we resume after a reboot, zab will be NULL; don't record
4701 * incomplete stats in that case.
4702 */
4703 if (zab == NULL)
4704 return;
4705
4706 for (int i = 0; i < 4; i++) {
4707 int l = (i < 2) ? BP_GET_LEVEL(bp) : DN_MAX_LEVELS;
4708 int t = (i & 1) ? BP_GET_TYPE(bp) : DMU_OT_TOTAL;
4709
4710 if (t & DMU_OT_NEWTYPE)
4711 t = DMU_OT_OTHER;
4712 zfs_blkstat_t *zb = &zab->zab_type[l][t];
4713 int equal;
4714
4715 zb->zb_count++;
4716 zb->zb_asize += BP_GET_ASIZE(bp);
4717 zb->zb_lsize += BP_GET_LSIZE(bp);
4718 zb->zb_psize += BP_GET_PSIZE(bp);
4719 zb->zb_gangs += BP_COUNT_GANG(bp);
4720
4721 switch (BP_GET_NDVAS(bp)) {
4722 case 2:
4723 if (DVA_GET_VDEV(&bp->blk_dva[0]) ==
4724 DVA_GET_VDEV(&bp->blk_dva[1]))
4725 zb->zb_ditto_2_of_2_samevdev++;
4726 break;
4727 case 3:
4728 equal = (DVA_GET_VDEV(&bp->blk_dva[0]) ==
4729 DVA_GET_VDEV(&bp->blk_dva[1])) +
4730 (DVA_GET_VDEV(&bp->blk_dva[0]) ==
4731 DVA_GET_VDEV(&bp->blk_dva[2])) +
4732 (DVA_GET_VDEV(&bp->blk_dva[1]) ==
4733 DVA_GET_VDEV(&bp->blk_dva[2]));
4734 if (equal == 1)
4735 zb->zb_ditto_2_of_3_samevdev++;
4736 else if (equal == 3)
4737 zb->zb_ditto_3_of_3_samevdev++;
4738 break;
4739 }
4740 }
4741 }
4742
4743 static void
scan_io_queue_insert_impl(dsl_scan_io_queue_t * queue,scan_io_t * sio)4744 scan_io_queue_insert_impl(dsl_scan_io_queue_t *queue, scan_io_t *sio)
4745 {
4746 avl_index_t idx;
4747 dsl_scan_t *scn = queue->q_scn;
4748
4749 ASSERT(MUTEX_HELD(&queue->q_vd->vdev_scan_io_queue_lock));
4750
4751 if (unlikely(avl_is_empty(&queue->q_sios_by_addr)))
4752 atomic_add_64(&scn->scn_queues_pending, 1);
4753 if (avl_find(&queue->q_sios_by_addr, sio, &idx) != NULL) {
4754 /* block is already scheduled for reading */
4755 sio_free(sio);
4756 return;
4757 }
4758 avl_insert(&queue->q_sios_by_addr, sio, idx);
4759 queue->q_sio_memused += SIO_GET_MUSED(sio);
4760 zfs_range_tree_add(queue->q_exts_by_addr, SIO_GET_OFFSET(sio),
4761 SIO_GET_ASIZE(sio));
4762 }
4763
4764 /*
4765 * Given all the info we got from our metadata scanning process, we
4766 * construct a scan_io_t and insert it into the scan sorting queue. The
4767 * I/O must already be suitable for us to process. This is controlled
4768 * by dsl_scan_enqueue().
4769 */
4770 static void
scan_io_queue_insert(dsl_scan_io_queue_t * queue,const blkptr_t * bp,int dva_i,int zio_flags,const zbookmark_phys_t * zb)4771 scan_io_queue_insert(dsl_scan_io_queue_t *queue, const blkptr_t *bp, int dva_i,
4772 int zio_flags, const zbookmark_phys_t *zb)
4773 {
4774 scan_io_t *sio = sio_alloc(BP_GET_NDVAS(bp));
4775
4776 ASSERT0(BP_IS_GANG(bp));
4777 ASSERT(MUTEX_HELD(&queue->q_vd->vdev_scan_io_queue_lock));
4778
4779 bp2sio(bp, sio, dva_i);
4780 sio->sio_flags = zio_flags;
4781 sio->sio_zb = *zb;
4782
4783 queue->q_last_ext_addr = -1;
4784 scan_io_queue_insert_impl(queue, sio);
4785 }
4786
4787 /*
4788 * Given a set of I/O parameters as discovered by the metadata traversal
4789 * process, attempts to place the I/O into the sorted queues (if allowed),
4790 * or immediately executes the I/O.
4791 */
4792 static void
dsl_scan_enqueue(dsl_pool_t * dp,const blkptr_t * bp,int zio_flags,const zbookmark_phys_t * zb)4793 dsl_scan_enqueue(dsl_pool_t *dp, const blkptr_t *bp, int zio_flags,
4794 const zbookmark_phys_t *zb)
4795 {
4796 spa_t *spa = dp->dp_spa;
4797
4798 ASSERT(!BP_IS_EMBEDDED(bp));
4799
4800 /*
4801 * Gang blocks are hard to issue sequentially, so we just issue them
4802 * here immediately instead of queuing them.
4803 */
4804 if (!dp->dp_scan->scn_is_sorted || BP_IS_GANG(bp)) {
4805 scan_exec_io(dp, bp, zio_flags, zb, NULL);
4806 return;
4807 }
4808
4809 for (int i = 0; i < BP_GET_NDVAS(bp); i++) {
4810 dva_t dva;
4811 vdev_t *vdev;
4812
4813 dva = bp->blk_dva[i];
4814 vdev = vdev_lookup_top(spa, DVA_GET_VDEV(&dva));
4815 ASSERT(vdev != NULL);
4816
4817 mutex_enter(&vdev->vdev_scan_io_queue_lock);
4818 if (vdev->vdev_scan_io_queue == NULL)
4819 vdev->vdev_scan_io_queue = scan_io_queue_create(vdev);
4820 ASSERT(dp->dp_scan != NULL);
4821 scan_io_queue_insert(vdev->vdev_scan_io_queue, bp,
4822 i, zio_flags, zb);
4823 mutex_exit(&vdev->vdev_scan_io_queue_lock);
4824 }
4825 }
4826
4827 static int
dsl_scan_scrub_cb(dsl_pool_t * dp,const blkptr_t * bp,const zbookmark_phys_t * zb)4828 dsl_scan_scrub_cb(dsl_pool_t *dp,
4829 const blkptr_t *bp, const zbookmark_phys_t *zb)
4830 {
4831 dsl_scan_t *scn = dp->dp_scan;
4832 spa_t *spa = dp->dp_spa;
4833 uint64_t phys_birth = BP_GET_PHYSICAL_BIRTH(bp);
4834 size_t psize = BP_GET_PSIZE(bp);
4835 boolean_t needs_io = B_FALSE;
4836 int zio_flags = ZIO_FLAG_SCAN_THREAD | ZIO_FLAG_RAW | ZIO_FLAG_CANFAIL;
4837
4838 count_block(dp->dp_blkstats, bp);
4839 if (phys_birth <= scn->scn_phys.scn_min_txg ||
4840 phys_birth >= scn->scn_phys.scn_max_txg) {
4841 count_block_skipped(scn, bp, B_TRUE);
4842 return (0);
4843 }
4844
4845 /* Embedded BP's have phys_birth==0, so we reject them above. */
4846 ASSERT(!BP_IS_EMBEDDED(bp));
4847
4848 ASSERT(DSL_SCAN_IS_SCRUB_RESILVER(scn));
4849 if (scn->scn_phys.scn_func == POOL_SCAN_SCRUB) {
4850 zio_flags |= ZIO_FLAG_SCRUB;
4851 needs_io = B_TRUE;
4852 } else {
4853 ASSERT3U(scn->scn_phys.scn_func, ==, POOL_SCAN_RESILVER);
4854 zio_flags |= ZIO_FLAG_RESILVER;
4855 needs_io = B_FALSE;
4856 }
4857
4858 /* If it's an intent log block, failure is expected. */
4859 if (zb->zb_level == ZB_ZIL_LEVEL)
4860 zio_flags |= ZIO_FLAG_SPECULATIVE;
4861
4862 for (int d = 0; d < BP_GET_NDVAS(bp); d++) {
4863 const dva_t *dva = &bp->blk_dva[d];
4864
4865 /*
4866 * Keep track of how much data we've examined so that
4867 * zpool(8) status can make useful progress reports.
4868 */
4869 uint64_t asize = DVA_GET_ASIZE(dva);
4870 scn->scn_phys.scn_examined += asize;
4871 spa->spa_scan_pass_exam += asize;
4872
4873 /* if it's a resilver, this may not be in the target range */
4874 if (!needs_io)
4875 needs_io = dsl_scan_need_resilver(spa, dva, psize,
4876 phys_birth);
4877 }
4878
4879 if (needs_io && !zfs_no_scrub_io) {
4880 dsl_scan_enqueue(dp, bp, zio_flags, zb);
4881 } else {
4882 count_block_skipped(scn, bp, B_TRUE);
4883 }
4884
4885 /* do not relocate this block */
4886 return (0);
4887 }
4888
4889 static void
dsl_scan_scrub_done(zio_t * zio)4890 dsl_scan_scrub_done(zio_t *zio)
4891 {
4892 spa_t *spa = zio->io_spa;
4893 blkptr_t *bp = zio->io_bp;
4894 dsl_scan_io_queue_t *queue = zio->io_private;
4895
4896 abd_free(zio->io_abd);
4897
4898 if (queue == NULL) {
4899 mutex_enter(&spa->spa_scrub_lock);
4900 ASSERT3U(spa->spa_scrub_inflight, >=, BP_GET_PSIZE(bp));
4901 spa->spa_scrub_inflight -= BP_GET_PSIZE(bp);
4902 cv_broadcast(&spa->spa_scrub_io_cv);
4903 mutex_exit(&spa->spa_scrub_lock);
4904 } else {
4905 mutex_enter(&queue->q_vd->vdev_scan_io_queue_lock);
4906 ASSERT3U(queue->q_inflight_bytes, >=, BP_GET_PSIZE(bp));
4907 queue->q_inflight_bytes -= BP_GET_PSIZE(bp);
4908 cv_broadcast(&queue->q_zio_cv);
4909 mutex_exit(&queue->q_vd->vdev_scan_io_queue_lock);
4910 }
4911
4912 if (zio->io_error && (zio->io_error != ECKSUM ||
4913 !(zio->io_flags & ZIO_FLAG_SPECULATIVE))) {
4914 if (dsl_errorscrubbing(spa->spa_dsl_pool) &&
4915 !dsl_errorscrub_is_paused(spa->spa_dsl_pool->dp_scan)) {
4916 atomic_inc_64(&spa->spa_dsl_pool->dp_scan
4917 ->errorscrub_phys.dep_errors);
4918 } else {
4919 atomic_inc_64(&spa->spa_dsl_pool->dp_scan->scn_phys
4920 .scn_errors);
4921 }
4922 }
4923 }
4924
4925 /*
4926 * Given a scanning zio's information, executes the zio. The zio need
4927 * not necessarily be only sortable, this function simply executes the
4928 * zio, no matter what it is. The optional queue argument allows the
4929 * caller to specify that they want per top level vdev IO rate limiting
4930 * instead of the legacy global limiting.
4931 */
4932 static void
scan_exec_io(dsl_pool_t * dp,const blkptr_t * bp,int zio_flags,const zbookmark_phys_t * zb,dsl_scan_io_queue_t * queue)4933 scan_exec_io(dsl_pool_t *dp, const blkptr_t *bp, int zio_flags,
4934 const zbookmark_phys_t *zb, dsl_scan_io_queue_t *queue)
4935 {
4936 spa_t *spa = dp->dp_spa;
4937 dsl_scan_t *scn = dp->dp_scan;
4938 size_t size = BP_GET_PSIZE(bp);
4939 abd_t *data = abd_alloc_for_io(size, B_FALSE);
4940 zio_t *pio;
4941
4942 if (queue == NULL) {
4943 ASSERT3U(scn->scn_maxinflight_bytes, >, 0);
4944 mutex_enter(&spa->spa_scrub_lock);
4945 while (spa->spa_scrub_inflight >= scn->scn_maxinflight_bytes)
4946 cv_wait(&spa->spa_scrub_io_cv, &spa->spa_scrub_lock);
4947 spa->spa_scrub_inflight += BP_GET_PSIZE(bp);
4948 mutex_exit(&spa->spa_scrub_lock);
4949 pio = scn->scn_zio_root;
4950 } else {
4951 kmutex_t *q_lock = &queue->q_vd->vdev_scan_io_queue_lock;
4952
4953 ASSERT3U(queue->q_maxinflight_bytes, >, 0);
4954 mutex_enter(q_lock);
4955 while (queue->q_inflight_bytes >= queue->q_maxinflight_bytes)
4956 cv_wait(&queue->q_zio_cv, q_lock);
4957 queue->q_inflight_bytes += BP_GET_PSIZE(bp);
4958 pio = queue->q_zio;
4959 mutex_exit(q_lock);
4960 }
4961
4962 ASSERT(pio != NULL);
4963 count_block_issued(spa, bp, queue == NULL);
4964 zio_nowait(zio_read(pio, spa, bp, data, size, dsl_scan_scrub_done,
4965 queue, ZIO_PRIORITY_SCRUB, zio_flags, zb));
4966 }
4967
4968 /*
4969 * This is the primary extent sorting algorithm. We balance two parameters:
4970 * 1) how many bytes of I/O are in an extent
4971 * 2) how well the extent is filled with I/O (as a fraction of its total size)
4972 * Since we allow extents to have gaps between their constituent I/Os, it's
4973 * possible to have a fairly large extent that contains the same amount of
4974 * I/O bytes than a much smaller extent, which just packs the I/O more tightly.
4975 * The algorithm sorts based on a score calculated from the extent's size,
4976 * the relative fill volume (in %) and a "fill weight" parameter that controls
4977 * the split between whether we prefer larger extents or more well populated
4978 * extents:
4979 *
4980 * SCORE = FILL_IN_BYTES + (FILL_IN_PERCENT * FILL_IN_BYTES * FILL_WEIGHT)
4981 *
4982 * Example:
4983 * 1) assume extsz = 64 MiB
4984 * 2) assume fill = 32 MiB (extent is half full)
4985 * 3) assume fill_weight = 3
4986 * 4) SCORE = 32M + (((32M * 100) / 64M) * 3 * 32M) / 100
4987 * SCORE = 32M + (50 * 3 * 32M) / 100
4988 * SCORE = 32M + (4800M / 100)
4989 * SCORE = 32M + 48M
4990 * ^ ^
4991 * | +--- final total relative fill-based score
4992 * +--------- final total fill-based score
4993 * SCORE = 80M
4994 *
4995 * As can be seen, at fill_ratio=3, the algorithm is slightly biased towards
4996 * extents that are more completely filled (in a 3:2 ratio) vs just larger.
4997 * Note that as an optimization, we replace multiplication and division by
4998 * 100 with bitshifting by 7 (which effectively multiplies and divides by 128).
4999 *
5000 * Since we do not care if one extent is only few percent better than another,
5001 * compress the score into 6 bits via binary logarithm AKA highbit64() and
5002 * put into otherwise unused due to ashift high bits of offset. This allows
5003 * to reduce q_exts_by_size B-tree elements to only 64 bits and compare them
5004 * with single operation. Plus it makes scrubs more sequential and reduces
5005 * chances that minor extent change move it within the B-tree.
5006 */
5007 __attribute__((always_inline)) inline
5008 static int
ext_size_compare(const void * x,const void * y)5009 ext_size_compare(const void *x, const void *y)
5010 {
5011 const uint64_t *a = x, *b = y;
5012
5013 return (TREE_CMP(*a, *b));
5014 }
5015
ZFS_BTREE_FIND_IN_BUF_FUNC(ext_size_find_in_buf,uint64_t,ext_size_compare)5016 ZFS_BTREE_FIND_IN_BUF_FUNC(ext_size_find_in_buf, uint64_t,
5017 ext_size_compare)
5018
5019 static void
5020 ext_size_create(zfs_range_tree_t *rt, void *arg)
5021 {
5022 (void) rt;
5023 zfs_btree_t *size_tree = arg;
5024
5025 zfs_btree_create(size_tree, ext_size_compare, ext_size_find_in_buf,
5026 sizeof (uint64_t));
5027 }
5028
5029 static void
ext_size_destroy(zfs_range_tree_t * rt,void * arg)5030 ext_size_destroy(zfs_range_tree_t *rt, void *arg)
5031 {
5032 (void) rt;
5033 zfs_btree_t *size_tree = arg;
5034 ASSERT0(zfs_btree_numnodes(size_tree));
5035
5036 zfs_btree_destroy(size_tree);
5037 }
5038
5039 static uint64_t
ext_size_value(zfs_range_tree_t * rt,zfs_range_seg_gap_t * rsg)5040 ext_size_value(zfs_range_tree_t *rt, zfs_range_seg_gap_t *rsg)
5041 {
5042 (void) rt;
5043 uint64_t size = rsg->rs_end - rsg->rs_start;
5044 uint64_t score = rsg->rs_fill + ((((rsg->rs_fill << 7) / size) *
5045 fill_weight * rsg->rs_fill) >> 7);
5046 ASSERT3U(rt->rt_shift, >=, 8);
5047 return (((uint64_t)(64 - highbit64(score)) << 56) | rsg->rs_start);
5048 }
5049
5050 static void
ext_size_add(zfs_range_tree_t * rt,zfs_range_seg_t * rs,void * arg)5051 ext_size_add(zfs_range_tree_t *rt, zfs_range_seg_t *rs, void *arg)
5052 {
5053 zfs_btree_t *size_tree = arg;
5054 ASSERT3U(rt->rt_type, ==, ZFS_RANGE_SEG_GAP);
5055 uint64_t v = ext_size_value(rt, (zfs_range_seg_gap_t *)rs);
5056 zfs_btree_add(size_tree, &v);
5057 }
5058
5059 static void
ext_size_remove(zfs_range_tree_t * rt,zfs_range_seg_t * rs,void * arg)5060 ext_size_remove(zfs_range_tree_t *rt, zfs_range_seg_t *rs, void *arg)
5061 {
5062 zfs_btree_t *size_tree = arg;
5063 ASSERT3U(rt->rt_type, ==, ZFS_RANGE_SEG_GAP);
5064 uint64_t v = ext_size_value(rt, (zfs_range_seg_gap_t *)rs);
5065 zfs_btree_remove(size_tree, &v);
5066 }
5067
5068 static void
ext_size_vacate(zfs_range_tree_t * rt,void * arg)5069 ext_size_vacate(zfs_range_tree_t *rt, void *arg)
5070 {
5071 zfs_btree_t *size_tree = arg;
5072 zfs_btree_clear(size_tree);
5073 zfs_btree_destroy(size_tree);
5074
5075 ext_size_create(rt, arg);
5076 }
5077
5078 static const zfs_range_tree_ops_t ext_size_ops = {
5079 .rtop_create = ext_size_create,
5080 .rtop_destroy = ext_size_destroy,
5081 .rtop_add = ext_size_add,
5082 .rtop_remove = ext_size_remove,
5083 .rtop_vacate = ext_size_vacate
5084 };
5085
5086 /*
5087 * Comparator for the q_sios_by_addr tree. Sorting is simply performed
5088 * based on LBA-order (from lowest to highest).
5089 */
5090 static int
sio_addr_compare(const void * x,const void * y)5091 sio_addr_compare(const void *x, const void *y)
5092 {
5093 const scan_io_t *a = x, *b = y;
5094
5095 return (TREE_CMP(SIO_GET_OFFSET(a), SIO_GET_OFFSET(b)));
5096 }
5097
5098 /* IO queues are created on demand when they are needed. */
5099 static dsl_scan_io_queue_t *
scan_io_queue_create(vdev_t * vd)5100 scan_io_queue_create(vdev_t *vd)
5101 {
5102 dsl_scan_t *scn = vd->vdev_spa->spa_dsl_pool->dp_scan;
5103 dsl_scan_io_queue_t *q = kmem_zalloc(sizeof (*q), KM_SLEEP);
5104
5105 q->q_scn = scn;
5106 q->q_vd = vd;
5107 q->q_sio_memused = 0;
5108 q->q_last_ext_addr = -1;
5109 cv_init(&q->q_zio_cv, NULL, CV_DEFAULT, NULL);
5110 q->q_exts_by_addr = zfs_range_tree_create_gap(&ext_size_ops,
5111 ZFS_RANGE_SEG_GAP, &q->q_exts_by_size, 0, vd->vdev_ashift,
5112 zfs_scan_max_ext_gap);
5113 avl_create(&q->q_sios_by_addr, sio_addr_compare,
5114 sizeof (scan_io_t), offsetof(scan_io_t, sio_nodes.sio_addr_node));
5115
5116 return (q);
5117 }
5118
5119 /*
5120 * Destroys a scan queue and all segments and scan_io_t's contained in it.
5121 * No further execution of I/O occurs, anything pending in the queue is
5122 * simply freed without being executed.
5123 */
5124 void
dsl_scan_io_queue_destroy(dsl_scan_io_queue_t * queue)5125 dsl_scan_io_queue_destroy(dsl_scan_io_queue_t *queue)
5126 {
5127 dsl_scan_t *scn = queue->q_scn;
5128 scan_io_t *sio;
5129 void *cookie = NULL;
5130
5131 ASSERT(MUTEX_HELD(&queue->q_vd->vdev_scan_io_queue_lock));
5132
5133 if (!avl_is_empty(&queue->q_sios_by_addr))
5134 atomic_add_64(&scn->scn_queues_pending, -1);
5135 while ((sio = avl_destroy_nodes(&queue->q_sios_by_addr, &cookie)) !=
5136 NULL) {
5137 ASSERT(zfs_range_tree_contains(queue->q_exts_by_addr,
5138 SIO_GET_OFFSET(sio), SIO_GET_ASIZE(sio)));
5139 queue->q_sio_memused -= SIO_GET_MUSED(sio);
5140 sio_free(sio);
5141 }
5142
5143 ASSERT0(queue->q_sio_memused);
5144 zfs_range_tree_vacate(queue->q_exts_by_addr, NULL, queue);
5145 zfs_range_tree_destroy(queue->q_exts_by_addr);
5146 avl_destroy(&queue->q_sios_by_addr);
5147 cv_destroy(&queue->q_zio_cv);
5148
5149 kmem_free(queue, sizeof (*queue));
5150 }
5151
5152 /*
5153 * Properly transfers a dsl_scan_queue_t from `svd' to `tvd'. This is
5154 * called on behalf of vdev_top_transfer when creating or destroying
5155 * a mirror vdev due to zpool attach/detach.
5156 */
5157 void
dsl_scan_io_queue_vdev_xfer(vdev_t * svd,vdev_t * tvd)5158 dsl_scan_io_queue_vdev_xfer(vdev_t *svd, vdev_t *tvd)
5159 {
5160 mutex_enter(&svd->vdev_scan_io_queue_lock);
5161 mutex_enter(&tvd->vdev_scan_io_queue_lock);
5162
5163 VERIFY0P(tvd->vdev_scan_io_queue);
5164 tvd->vdev_scan_io_queue = svd->vdev_scan_io_queue;
5165 svd->vdev_scan_io_queue = NULL;
5166 if (tvd->vdev_scan_io_queue != NULL)
5167 tvd->vdev_scan_io_queue->q_vd = tvd;
5168
5169 mutex_exit(&tvd->vdev_scan_io_queue_lock);
5170 mutex_exit(&svd->vdev_scan_io_queue_lock);
5171 }
5172
5173 static void
scan_io_queues_destroy(dsl_scan_t * scn)5174 scan_io_queues_destroy(dsl_scan_t *scn)
5175 {
5176 vdev_t *rvd = scn->scn_dp->dp_spa->spa_root_vdev;
5177
5178 for (uint64_t i = 0; i < rvd->vdev_children; i++) {
5179 vdev_t *tvd = rvd->vdev_child[i];
5180
5181 mutex_enter(&tvd->vdev_scan_io_queue_lock);
5182 if (tvd->vdev_scan_io_queue != NULL)
5183 dsl_scan_io_queue_destroy(tvd->vdev_scan_io_queue);
5184 tvd->vdev_scan_io_queue = NULL;
5185 mutex_exit(&tvd->vdev_scan_io_queue_lock);
5186 }
5187 }
5188
5189 static void
dsl_scan_freed_dva(spa_t * spa,const blkptr_t * bp,int dva_i)5190 dsl_scan_freed_dva(spa_t *spa, const blkptr_t *bp, int dva_i)
5191 {
5192 dsl_pool_t *dp = spa->spa_dsl_pool;
5193 dsl_scan_t *scn = dp->dp_scan;
5194 vdev_t *vdev;
5195 kmutex_t *q_lock;
5196 dsl_scan_io_queue_t *queue;
5197 scan_io_t *srch_sio, *sio;
5198 avl_index_t idx;
5199 uint64_t start, size;
5200
5201 vdev = vdev_lookup_top(spa, DVA_GET_VDEV(&bp->blk_dva[dva_i]));
5202 ASSERT(vdev != NULL);
5203 q_lock = &vdev->vdev_scan_io_queue_lock;
5204 queue = vdev->vdev_scan_io_queue;
5205
5206 mutex_enter(q_lock);
5207 if (queue == NULL) {
5208 mutex_exit(q_lock);
5209 return;
5210 }
5211
5212 srch_sio = sio_alloc(BP_GET_NDVAS(bp));
5213 bp2sio(bp, srch_sio, dva_i);
5214 start = SIO_GET_OFFSET(srch_sio);
5215 size = SIO_GET_ASIZE(srch_sio);
5216
5217 /*
5218 * We can find the zio in two states:
5219 * 1) Cold, just sitting in the queue of zio's to be issued at
5220 * some point in the future. In this case, all we do is
5221 * remove the zio from the q_sios_by_addr tree, decrement
5222 * its data volume from the containing zfs_range_seg_t and
5223 * resort the q_exts_by_size tree to reflect that the
5224 * zfs_range_seg_t has lost some of its 'fill'. We don't shorten
5225 * the zfs_range_seg_t - this is usually rare enough not to be
5226 * worth the extra hassle of trying keep track of precise
5227 * extent boundaries.
5228 * 2) Hot, where the zio is currently in-flight in
5229 * dsl_scan_issue_ios. In this case, we can't simply
5230 * reach in and stop the in-flight zio's, so we instead
5231 * block the caller. Eventually, dsl_scan_issue_ios will
5232 * be done with issuing the zio's it gathered and will
5233 * signal us.
5234 */
5235 sio = avl_find(&queue->q_sios_by_addr, srch_sio, &idx);
5236 sio_free(srch_sio);
5237
5238 if (sio != NULL) {
5239 blkptr_t tmpbp;
5240
5241 /* Got it while it was cold in the queue */
5242 ASSERT3U(start, ==, SIO_GET_OFFSET(sio));
5243 ASSERT3U(size, ==, SIO_GET_ASIZE(sio));
5244 avl_remove(&queue->q_sios_by_addr, sio);
5245 if (avl_is_empty(&queue->q_sios_by_addr))
5246 atomic_add_64(&scn->scn_queues_pending, -1);
5247 queue->q_sio_memused -= SIO_GET_MUSED(sio);
5248
5249 ASSERT(zfs_range_tree_contains(queue->q_exts_by_addr, start,
5250 size));
5251 zfs_range_tree_remove_fill(queue->q_exts_by_addr, start, size);
5252
5253 /* count the block as though we skipped it */
5254 sio2bp(sio, &tmpbp);
5255 count_block_skipped(scn, &tmpbp, B_FALSE);
5256
5257 sio_free(sio);
5258 }
5259 mutex_exit(q_lock);
5260 }
5261
5262 /*
5263 * Callback invoked when a zio_free() zio is executing. This needs to be
5264 * intercepted to prevent the zio from deallocating a particular portion
5265 * of disk space and it then getting reallocated and written to, while we
5266 * still have it queued up for processing.
5267 */
5268 void
dsl_scan_freed(spa_t * spa,const blkptr_t * bp)5269 dsl_scan_freed(spa_t *spa, const blkptr_t *bp)
5270 {
5271 dsl_pool_t *dp = spa->spa_dsl_pool;
5272 dsl_scan_t *scn = dp->dp_scan;
5273
5274 ASSERT(!BP_IS_EMBEDDED(bp));
5275 ASSERT(scn != NULL);
5276 if (!dsl_scan_is_running(scn))
5277 return;
5278
5279 for (int i = 0; i < BP_GET_NDVAS(bp); i++)
5280 dsl_scan_freed_dva(spa, bp, i);
5281 }
5282
5283 /*
5284 * Check if a vdev needs resilvering (non-empty DTL), if so, and resilver has
5285 * not started, start it. Otherwise, only restart if max txg in DTL range is
5286 * greater than the max txg in the current scan. If the DTL max is less than
5287 * the scan max, then the vdev has not missed any new data since the resilver
5288 * started, so a restart is not needed.
5289 */
5290 void
dsl_scan_assess_vdev(dsl_pool_t * dp,vdev_t * vd)5291 dsl_scan_assess_vdev(dsl_pool_t *dp, vdev_t *vd)
5292 {
5293 uint64_t min, max;
5294
5295 if (!vdev_resilver_needed(vd, &min, &max))
5296 return;
5297
5298 if (!dsl_scan_resilvering(dp)) {
5299 spa_async_request(dp->dp_spa, SPA_ASYNC_RESILVER);
5300 return;
5301 }
5302
5303 if (max <= dp->dp_scan->scn_phys.scn_max_txg)
5304 return;
5305
5306 /* restart is needed, check if it can be deferred */
5307 if (spa_feature_is_enabled(dp->dp_spa, SPA_FEATURE_RESILVER_DEFER))
5308 vdev_defer_resilver(vd);
5309 else
5310 spa_async_request(dp->dp_spa, SPA_ASYNC_RESILVER);
5311 }
5312
5313 ZFS_MODULE_PARAM(zfs, zfs_, scan_vdev_limit, U64, ZMOD_RW,
5314 "Max bytes in flight per leaf vdev for scrubs and resilvers");
5315
5316 ZFS_MODULE_PARAM(zfs, zfs_, scrub_min_time_ms, UINT, ZMOD_RW,
5317 "Min millisecs to scrub per txg");
5318
5319 ZFS_MODULE_PARAM(zfs, zfs_, obsolete_min_time_ms, UINT, ZMOD_RW,
5320 "Min millisecs to obsolete per txg");
5321
5322 ZFS_MODULE_PARAM(zfs, zfs_, free_min_time_ms, UINT, ZMOD_RW,
5323 "Min millisecs to free per txg");
5324
5325 ZFS_MODULE_PARAM(zfs, zfs_, resilver_min_time_ms, UINT, ZMOD_RW,
5326 "Min millisecs to resilver per txg");
5327
5328 ZFS_MODULE_PARAM(zfs, zfs_, scan_suspend_progress, INT, ZMOD_RW,
5329 "Set to prevent scans from progressing");
5330
5331 ZFS_MODULE_PARAM(zfs, zfs_, no_scrub_io, INT, ZMOD_RW,
5332 "Set to disable scrub I/O");
5333
5334 ZFS_MODULE_PARAM(zfs, zfs_, no_scrub_prefetch, INT, ZMOD_RW,
5335 "Set to disable scrub prefetching");
5336
5337 ZFS_MODULE_PARAM(zfs, zfs_, async_block_max_blocks, U64, ZMOD_RW,
5338 "Max number of blocks freed in one txg");
5339
5340 ZFS_MODULE_PARAM(zfs, zfs_, max_async_dedup_frees, U64, ZMOD_RW,
5341 "Max number of dedup, clone or gang blocks freed in one txg");
5342
5343 ZFS_MODULE_PARAM(zfs, zfs_, async_free_zio_wait_interval, U64, ZMOD_RW,
5344 "Wait for pending free I/Os after issuing this many asynchronously");
5345
5346 ZFS_MODULE_PARAM(zfs, zfs_, free_bpobj_enabled, INT, ZMOD_RW,
5347 "Enable processing of the free_bpobj");
5348
5349 ZFS_MODULE_PARAM(zfs, zfs_, scan_blkstats, INT, ZMOD_RW,
5350 "Enable block statistics calculation during scrub");
5351
5352 ZFS_MODULE_PARAM(zfs, zfs_, scan_mem_lim_fact, UINT, ZMOD_RW,
5353 "Fraction of RAM for scan hard limit");
5354
5355 ZFS_MODULE_PARAM(zfs, zfs_, scan_issue_strategy, UINT, ZMOD_RW,
5356 "IO issuing strategy during scrubbing. 0 = default, 1 = LBA, 2 = size");
5357
5358 ZFS_MODULE_PARAM(zfs, zfs_, scan_legacy, INT, ZMOD_RW,
5359 "Scrub using legacy non-sequential method");
5360
5361 ZFS_MODULE_PARAM(zfs, zfs_, import_defer_txgs, UINT, ZMOD_RW,
5362 "Number of TXGs to defer background work after pool import");
5363
5364 ZFS_MODULE_PARAM(zfs, zfs_, scan_checkpoint_intval, UINT, ZMOD_RW,
5365 "Scan progress on-disk checkpointing interval");
5366
5367 ZFS_MODULE_PARAM(zfs, zfs_, scan_max_ext_gap, U64, ZMOD_RW,
5368 "Max gap in bytes between sequential scrub / resilver I/Os");
5369
5370 ZFS_MODULE_PARAM(zfs, zfs_, scan_mem_lim_soft_fact, UINT, ZMOD_RW,
5371 "Fraction of hard limit used as soft limit");
5372
5373 ZFS_MODULE_PARAM(zfs, zfs_, scan_strict_mem_lim, INT, ZMOD_RW,
5374 "Tunable to attempt to reduce lock contention");
5375
5376 ZFS_MODULE_PARAM(zfs, zfs_, scan_fill_weight, UINT, ZMOD_RW,
5377 "Tunable to adjust bias towards more filled segments during scans");
5378
5379 ZFS_MODULE_PARAM(zfs, zfs_, scan_report_txgs, UINT, ZMOD_RW,
5380 "Tunable to report resilver performance over the last N txgs");
5381
5382 ZFS_MODULE_PARAM(zfs, zfs_, resilver_disable_defer, INT, ZMOD_RW,
5383 "Process all resilvers immediately");
5384
5385 ZFS_MODULE_PARAM(zfs, zfs_, resilver_defer_percent, UINT, ZMOD_RW,
5386 "Issued IO percent complete after which resilvers are deferred");
5387
5388 ZFS_MODULE_PARAM(zfs, zfs_, scrub_error_blocks_per_txg, UINT, ZMOD_RW,
5389 "Error blocks to be scrubbed in one txg");
5390