blob: 902819d3cf41ab08b4e2edb88c0bad40c242a79b [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Arne Jansena2de7332011-03-08 14:14:00 +01002/*
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003 * Copyright (C) 2011, 2012 STRATO. All rights reserved.
Arne Jansena2de7332011-03-08 14:14:00 +01004 */
5
Arne Jansena2de7332011-03-08 14:14:00 +01006#include <linux/blkdev.h>
Jan Schmidt558540c2011-06-13 19:59:12 +02007#include <linux/ratelimit.h>
David Sterbade2491f2017-05-31 19:21:38 +02008#include <linux/sched/mm.h>
Arne Jansena2de7332011-03-08 14:14:00 +01009#include "ctree.h"
10#include "volumes.h"
11#include "disk-io.h"
12#include "ordered-data.h"
Jan Schmidt0ef8e452011-06-13 20:04:15 +020013#include "transaction.h"
Jan Schmidt558540c2011-06-13 19:59:12 +020014#include "backref.h"
Jan Schmidt5da6fcb2011-08-04 18:11:04 +020015#include "extent_io.h"
Stefan Behrensff023aa2012-11-06 11:43:11 +010016#include "dev-replace.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010017#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040018#include "rcu-string.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050019#include "raid56.h"
Arne Jansena2de7332011-03-08 14:14:00 +010020
21/*
22 * This is only the first step towards a full-features scrub. It reads all
23 * extent and super block and verifies the checksums. In case a bad checksum
24 * is found or the extent cannot be read, good data will be written back if
25 * any can be found.
26 *
27 * Future enhancements:
Arne Jansena2de7332011-03-08 14:14:00 +010028 * - In case an unrepairable extent is encountered, track which files are
29 * affected and report them
Arne Jansena2de7332011-03-08 14:14:00 +010030 * - track and record media errors, throw out bad devices
Arne Jansena2de7332011-03-08 14:14:00 +010031 * - add a mode to also read unallocated space
Arne Jansena2de7332011-03-08 14:14:00 +010032 */
33
Stefan Behrensb5d67f62012-03-27 14:21:27 -040034struct scrub_block;
Stefan Behrensd9d181c2012-11-02 09:58:09 +010035struct scrub_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +010036
Stefan Behrensff023aa2012-11-06 11:43:11 +010037/*
38 * the following three values only influence the performance.
39 * The last one configures the number of parallel and outstanding I/O
40 * operations. The first two values configure an upper limit for the number
41 * of (dynamically allocated) pages that are added to a bio.
42 */
43#define SCRUB_PAGES_PER_RD_BIO 32 /* 128k per bio */
44#define SCRUB_PAGES_PER_WR_BIO 32 /* 128k per bio */
45#define SCRUB_BIOS_PER_SCTX 64 /* 8MB per device in flight */
Stefan Behrens7a9e9982012-11-02 14:58:04 +010046
47/*
48 * the following value times PAGE_SIZE needs to be large enough to match the
49 * largest node/leaf/sector size that shall be supported.
50 * Values larger than BTRFS_STRIPE_LEN are not supported.
51 */
Stefan Behrensb5d67f62012-03-27 14:21:27 -040052#define SCRUB_MAX_PAGES_PER_BLOCK 16 /* 64k per node/leaf/sector */
Arne Jansena2de7332011-03-08 14:14:00 +010053
Miao Xieaf8e2d12014-10-23 14:42:50 +080054struct scrub_recover {
Elena Reshetova6f615012017-03-03 10:55:21 +020055 refcount_t refs;
Miao Xieaf8e2d12014-10-23 14:42:50 +080056 struct btrfs_bio *bbio;
Miao Xieaf8e2d12014-10-23 14:42:50 +080057 u64 map_length;
58};
59
Arne Jansena2de7332011-03-08 14:14:00 +010060struct scrub_page {
Stefan Behrensb5d67f62012-03-27 14:21:27 -040061 struct scrub_block *sblock;
62 struct page *page;
Stefan Behrens442a4f62012-05-25 16:06:08 +020063 struct btrfs_device *dev;
Miao Xie5a6ac9e2014-11-06 17:20:58 +080064 struct list_head list;
Arne Jansena2de7332011-03-08 14:14:00 +010065 u64 flags; /* extent flags */
66 u64 generation;
Stefan Behrensb5d67f62012-03-27 14:21:27 -040067 u64 logical;
68 u64 physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +010069 u64 physical_for_dev_replace;
Zhao Lei57019342015-01-20 15:11:45 +080070 atomic_t refs;
Stefan Behrensb5d67f62012-03-27 14:21:27 -040071 struct {
72 unsigned int mirror_num:8;
73 unsigned int have_csum:1;
74 unsigned int io_error:1;
75 };
Arne Jansena2de7332011-03-08 14:14:00 +010076 u8 csum[BTRFS_CSUM_SIZE];
Miao Xieaf8e2d12014-10-23 14:42:50 +080077
78 struct scrub_recover *recover;
Arne Jansena2de7332011-03-08 14:14:00 +010079};
80
81struct scrub_bio {
82 int index;
Stefan Behrensd9d181c2012-11-02 09:58:09 +010083 struct scrub_ctx *sctx;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +010084 struct btrfs_device *dev;
Arne Jansena2de7332011-03-08 14:14:00 +010085 struct bio *bio;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +020086 blk_status_t status;
Arne Jansena2de7332011-03-08 14:14:00 +010087 u64 logical;
88 u64 physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +010089#if SCRUB_PAGES_PER_WR_BIO >= SCRUB_PAGES_PER_RD_BIO
90 struct scrub_page *pagev[SCRUB_PAGES_PER_WR_BIO];
91#else
92 struct scrub_page *pagev[SCRUB_PAGES_PER_RD_BIO];
93#endif
Stefan Behrensb5d67f62012-03-27 14:21:27 -040094 int page_count;
Arne Jansena2de7332011-03-08 14:14:00 +010095 int next_free;
96 struct btrfs_work work;
97};
98
Stefan Behrensb5d67f62012-03-27 14:21:27 -040099struct scrub_block {
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100100 struct scrub_page *pagev[SCRUB_MAX_PAGES_PER_BLOCK];
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400101 int page_count;
102 atomic_t outstanding_pages;
Elena Reshetova186debd2017-03-03 10:55:23 +0200103 refcount_t refs; /* free mem on transition to zero */
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100104 struct scrub_ctx *sctx;
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800105 struct scrub_parity *sparity;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400106 struct {
107 unsigned int header_error:1;
108 unsigned int checksum_error:1;
109 unsigned int no_io_error_seen:1;
Stefan Behrens442a4f62012-05-25 16:06:08 +0200110 unsigned int generation_error:1; /* also sets header_error */
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800111
112 /* The following is for the data used to check parity */
113 /* It is for the data with checksum */
114 unsigned int data_corrected:1;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400115 };
Omar Sandoval73ff61d2015-06-19 11:52:51 -0700116 struct btrfs_work work;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400117};
118
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800119/* Used for the chunks with parity stripe such RAID5/6 */
120struct scrub_parity {
121 struct scrub_ctx *sctx;
122
123 struct btrfs_device *scrub_dev;
124
125 u64 logic_start;
126
127 u64 logic_end;
128
129 int nsectors;
130
Liu Bo972d7212017-04-03 13:45:33 -0700131 u64 stripe_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800132
Elena Reshetova78a76452017-03-03 10:55:24 +0200133 refcount_t refs;
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800134
135 struct list_head spages;
136
137 /* Work of parity check and repair */
138 struct btrfs_work work;
139
140 /* Mark the parity blocks which have data */
141 unsigned long *dbitmap;
142
143 /*
144 * Mark the parity blocks which have data, but errors happen when
145 * read data or check data
146 */
147 unsigned long *ebitmap;
148
149 unsigned long bitmap[0];
150};
151
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100152struct scrub_ctx {
Stefan Behrensff023aa2012-11-06 11:43:11 +0100153 struct scrub_bio *bios[SCRUB_BIOS_PER_SCTX];
Jeff Mahoneyfb456252016-06-22 18:54:56 -0400154 struct btrfs_fs_info *fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +0100155 int first_free;
156 int curr;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100157 atomic_t bios_in_flight;
158 atomic_t workers_pending;
Arne Jansena2de7332011-03-08 14:14:00 +0100159 spinlock_t list_lock;
160 wait_queue_head_t list_wait;
161 u16 csum_size;
162 struct list_head csum_list;
163 atomic_t cancel_req;
Arne Jansen86287642011-03-23 16:34:19 +0100164 int readonly;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100165 int pages_per_rd_bio;
Stefan Behrens63a212a2012-11-05 18:29:28 +0100166
167 int is_dev_replace;
David Sterba3fb99302017-05-16 19:10:32 +0200168
169 struct scrub_bio *wr_curr_bio;
170 struct mutex wr_lock;
171 int pages_per_wr_bio; /* <= SCRUB_PAGES_PER_WR_BIO */
David Sterba3fb99302017-05-16 19:10:32 +0200172 struct btrfs_device *wr_tgtdev;
David Sterba2073c4c2017-03-31 17:12:51 +0200173 bool flush_all_writes;
Stefan Behrens63a212a2012-11-05 18:29:28 +0100174
Arne Jansena2de7332011-03-08 14:14:00 +0100175 /*
176 * statistics
177 */
178 struct btrfs_scrub_progress stat;
179 spinlock_t stat_lock;
Filipe Mananaf55985f2015-02-09 21:14:24 +0000180
181 /*
182 * Use a ref counter to avoid use-after-free issues. Scrub workers
183 * decrement bios_in_flight and workers_pending and then do a wakeup
184 * on the list_wait wait queue. We must ensure the main scrub task
185 * doesn't free the scrub context before or while the workers are
186 * doing the wakeup() call.
187 */
Elena Reshetova99f4cdb2017-03-03 10:55:25 +0200188 refcount_t refs;
Arne Jansena2de7332011-03-08 14:14:00 +0100189};
190
Jan Schmidt558540c2011-06-13 19:59:12 +0200191struct scrub_warning {
192 struct btrfs_path *path;
193 u64 extent_item_size;
Jan Schmidt558540c2011-06-13 19:59:12 +0200194 const char *errstr;
David Sterba6aa21262017-10-04 17:07:07 +0200195 u64 physical;
Jan Schmidt558540c2011-06-13 19:59:12 +0200196 u64 logical;
197 struct btrfs_device *dev;
Jan Schmidt558540c2011-06-13 19:59:12 +0200198};
199
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800200struct full_stripe_lock {
201 struct rb_node node;
202 u64 logical;
203 u64 refs;
204 struct mutex mutex;
205};
206
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100207static void scrub_pending_bio_inc(struct scrub_ctx *sctx);
208static void scrub_pending_bio_dec(struct scrub_ctx *sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400209static int scrub_handle_errored_block(struct scrub_block *sblock_to_check);
Zhao Leibe50a8d2015-01-20 15:11:42 +0800210static int scrub_setup_recheck_block(struct scrub_block *original_sblock,
Stefan Behrensff023aa2012-11-06 11:43:11 +0100211 struct scrub_block *sblocks_for_recheck);
Stefan Behrens34f5c8e2012-11-02 16:16:26 +0100212static void scrub_recheck_block(struct btrfs_fs_info *fs_info,
Zhao Leiaffe4a52015-08-24 21:32:06 +0800213 struct scrub_block *sblock,
214 int retry_failed_mirror);
Zhao Leiba7cf982015-08-24 21:18:02 +0800215static void scrub_recheck_block_checksum(struct scrub_block *sblock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400216static int scrub_repair_block_from_good_copy(struct scrub_block *sblock_bad,
Zhao Lei114ab502015-01-20 15:11:36 +0800217 struct scrub_block *sblock_good);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400218static int scrub_repair_page_from_good_copy(struct scrub_block *sblock_bad,
219 struct scrub_block *sblock_good,
220 int page_num, int force_write);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100221static void scrub_write_block_to_dev_replace(struct scrub_block *sblock);
222static int scrub_write_page_to_dev_replace(struct scrub_block *sblock,
223 int page_num);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400224static int scrub_checksum_data(struct scrub_block *sblock);
225static int scrub_checksum_tree_block(struct scrub_block *sblock);
226static int scrub_checksum_super(struct scrub_block *sblock);
227static void scrub_block_get(struct scrub_block *sblock);
228static void scrub_block_put(struct scrub_block *sblock);
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100229static void scrub_page_get(struct scrub_page *spage);
230static void scrub_page_put(struct scrub_page *spage);
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800231static void scrub_parity_get(struct scrub_parity *sparity);
232static void scrub_parity_put(struct scrub_parity *sparity);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100233static int scrub_add_page_to_rd_bio(struct scrub_ctx *sctx,
234 struct scrub_page *spage);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100235static int scrub_pages(struct scrub_ctx *sctx, u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100236 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +0100237 u64 gen, int mirror_num, u8 *csum, int force,
238 u64 physical_for_dev_replace);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200239static void scrub_bio_end_io(struct bio *bio);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400240static void scrub_bio_end_io_worker(struct btrfs_work *work);
241static void scrub_block_complete(struct scrub_block *sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100242static void scrub_remap_extent(struct btrfs_fs_info *fs_info,
243 u64 extent_logical, u64 extent_len,
244 u64 *extent_physical,
245 struct btrfs_device **extent_dev,
246 int *extent_mirror_num);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100247static int scrub_add_page_to_wr_bio(struct scrub_ctx *sctx,
248 struct scrub_page *spage);
249static void scrub_wr_submit(struct scrub_ctx *sctx);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200250static void scrub_wr_bio_end_io(struct bio *bio);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100251static void scrub_wr_bio_end_io_worker(struct btrfs_work *work);
Wang Shilongcb7ab022013-12-04 21:16:53 +0800252static void __scrub_blocked_if_needed(struct btrfs_fs_info *fs_info);
Wang Shilong3cb09292013-12-04 21:15:19 +0800253static void scrub_blocked_if_needed(struct btrfs_fs_info *fs_info);
Filipe Mananaf55985f2015-02-09 21:14:24 +0000254static void scrub_put_ctx(struct scrub_ctx *sctx);
Stefan Behrens1623ede2012-03-27 14:21:26 -0400255
Liu Bo762221f2018-01-02 13:36:42 -0700256static inline int scrub_is_page_on_raid56(struct scrub_page *page)
257{
258 return page->recover &&
259 (page->recover->bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK);
260}
Stefan Behrens1623ede2012-03-27 14:21:26 -0400261
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100262static void scrub_pending_bio_inc(struct scrub_ctx *sctx)
263{
Elena Reshetova99f4cdb2017-03-03 10:55:25 +0200264 refcount_inc(&sctx->refs);
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100265 atomic_inc(&sctx->bios_in_flight);
266}
267
268static void scrub_pending_bio_dec(struct scrub_ctx *sctx)
269{
270 atomic_dec(&sctx->bios_in_flight);
271 wake_up(&sctx->list_wait);
Filipe Mananaf55985f2015-02-09 21:14:24 +0000272 scrub_put_ctx(sctx);
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100273}
274
Wang Shilongcb7ab022013-12-04 21:16:53 +0800275static void __scrub_blocked_if_needed(struct btrfs_fs_info *fs_info)
Wang Shilong3cb09292013-12-04 21:15:19 +0800276{
277 while (atomic_read(&fs_info->scrub_pause_req)) {
278 mutex_unlock(&fs_info->scrub_lock);
279 wait_event(fs_info->scrub_pause_wait,
280 atomic_read(&fs_info->scrub_pause_req) == 0);
281 mutex_lock(&fs_info->scrub_lock);
282 }
283}
284
Zhaolei0e22be82015-08-05 16:43:28 +0800285static void scrub_pause_on(struct btrfs_fs_info *fs_info)
Wang Shilongcb7ab022013-12-04 21:16:53 +0800286{
287 atomic_inc(&fs_info->scrubs_paused);
288 wake_up(&fs_info->scrub_pause_wait);
Zhaolei0e22be82015-08-05 16:43:28 +0800289}
Wang Shilongcb7ab022013-12-04 21:16:53 +0800290
Zhaolei0e22be82015-08-05 16:43:28 +0800291static void scrub_pause_off(struct btrfs_fs_info *fs_info)
292{
Wang Shilongcb7ab022013-12-04 21:16:53 +0800293 mutex_lock(&fs_info->scrub_lock);
294 __scrub_blocked_if_needed(fs_info);
295 atomic_dec(&fs_info->scrubs_paused);
296 mutex_unlock(&fs_info->scrub_lock);
297
298 wake_up(&fs_info->scrub_pause_wait);
299}
300
Zhaolei0e22be82015-08-05 16:43:28 +0800301static void scrub_blocked_if_needed(struct btrfs_fs_info *fs_info)
302{
303 scrub_pause_on(fs_info);
304 scrub_pause_off(fs_info);
305}
306
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100307/*
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800308 * Insert new full stripe lock into full stripe locks tree
309 *
310 * Return pointer to existing or newly inserted full_stripe_lock structure if
311 * everything works well.
312 * Return ERR_PTR(-ENOMEM) if we failed to allocate memory
313 *
314 * NOTE: caller must hold full_stripe_locks_root->lock before calling this
315 * function
316 */
317static struct full_stripe_lock *insert_full_stripe_lock(
318 struct btrfs_full_stripe_locks_tree *locks_root,
319 u64 fstripe_logical)
320{
321 struct rb_node **p;
322 struct rb_node *parent = NULL;
323 struct full_stripe_lock *entry;
324 struct full_stripe_lock *ret;
325
David Sterbaa32bf9a2018-03-16 02:21:22 +0100326 lockdep_assert_held(&locks_root->lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800327
328 p = &locks_root->root.rb_node;
329 while (*p) {
330 parent = *p;
331 entry = rb_entry(parent, struct full_stripe_lock, node);
332 if (fstripe_logical < entry->logical) {
333 p = &(*p)->rb_left;
334 } else if (fstripe_logical > entry->logical) {
335 p = &(*p)->rb_right;
336 } else {
337 entry->refs++;
338 return entry;
339 }
340 }
341
342 /* Insert new lock */
343 ret = kmalloc(sizeof(*ret), GFP_KERNEL);
344 if (!ret)
345 return ERR_PTR(-ENOMEM);
346 ret->logical = fstripe_logical;
347 ret->refs = 1;
348 mutex_init(&ret->mutex);
349
350 rb_link_node(&ret->node, parent, p);
351 rb_insert_color(&ret->node, &locks_root->root);
352 return ret;
353}
354
355/*
356 * Search for a full stripe lock of a block group
357 *
358 * Return pointer to existing full stripe lock if found
359 * Return NULL if not found
360 */
361static struct full_stripe_lock *search_full_stripe_lock(
362 struct btrfs_full_stripe_locks_tree *locks_root,
363 u64 fstripe_logical)
364{
365 struct rb_node *node;
366 struct full_stripe_lock *entry;
367
David Sterbaa32bf9a2018-03-16 02:21:22 +0100368 lockdep_assert_held(&locks_root->lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800369
370 node = locks_root->root.rb_node;
371 while (node) {
372 entry = rb_entry(node, struct full_stripe_lock, node);
373 if (fstripe_logical < entry->logical)
374 node = node->rb_left;
375 else if (fstripe_logical > entry->logical)
376 node = node->rb_right;
377 else
378 return entry;
379 }
380 return NULL;
381}
382
383/*
384 * Helper to get full stripe logical from a normal bytenr.
385 *
386 * Caller must ensure @cache is a RAID56 block group.
387 */
388static u64 get_full_stripe_logical(struct btrfs_block_group_cache *cache,
389 u64 bytenr)
390{
391 u64 ret;
392
393 /*
394 * Due to chunk item size limit, full stripe length should not be
395 * larger than U32_MAX. Just a sanity check here.
396 */
397 WARN_ON_ONCE(cache->full_stripe_len >= U32_MAX);
398
399 /*
400 * round_down() can only handle power of 2, while RAID56 full
401 * stripe length can be 64KiB * n, so we need to manually round down.
402 */
403 ret = div64_u64(bytenr - cache->key.objectid, cache->full_stripe_len) *
404 cache->full_stripe_len + cache->key.objectid;
405 return ret;
406}
407
408/*
409 * Lock a full stripe to avoid concurrency of recovery and read
410 *
411 * It's only used for profiles with parities (RAID5/6), for other profiles it
412 * does nothing.
413 *
414 * Return 0 if we locked full stripe covering @bytenr, with a mutex held.
415 * So caller must call unlock_full_stripe() at the same context.
416 *
417 * Return <0 if encounters error.
418 */
419static int lock_full_stripe(struct btrfs_fs_info *fs_info, u64 bytenr,
420 bool *locked_ret)
421{
422 struct btrfs_block_group_cache *bg_cache;
423 struct btrfs_full_stripe_locks_tree *locks_root;
424 struct full_stripe_lock *existing;
425 u64 fstripe_start;
426 int ret = 0;
427
428 *locked_ret = false;
429 bg_cache = btrfs_lookup_block_group(fs_info, bytenr);
430 if (!bg_cache) {
431 ASSERT(0);
432 return -ENOENT;
433 }
434
435 /* Profiles not based on parity don't need full stripe lock */
436 if (!(bg_cache->flags & BTRFS_BLOCK_GROUP_RAID56_MASK))
437 goto out;
438 locks_root = &bg_cache->full_stripe_locks_root;
439
440 fstripe_start = get_full_stripe_logical(bg_cache, bytenr);
441
442 /* Now insert the full stripe lock */
443 mutex_lock(&locks_root->lock);
444 existing = insert_full_stripe_lock(locks_root, fstripe_start);
445 mutex_unlock(&locks_root->lock);
446 if (IS_ERR(existing)) {
447 ret = PTR_ERR(existing);
448 goto out;
449 }
450 mutex_lock(&existing->mutex);
451 *locked_ret = true;
452out:
453 btrfs_put_block_group(bg_cache);
454 return ret;
455}
456
457/*
458 * Unlock a full stripe.
459 *
460 * NOTE: Caller must ensure it's the same context calling corresponding
461 * lock_full_stripe().
462 *
463 * Return 0 if we unlock full stripe without problem.
464 * Return <0 for error
465 */
466static int unlock_full_stripe(struct btrfs_fs_info *fs_info, u64 bytenr,
467 bool locked)
468{
469 struct btrfs_block_group_cache *bg_cache;
470 struct btrfs_full_stripe_locks_tree *locks_root;
471 struct full_stripe_lock *fstripe_lock;
472 u64 fstripe_start;
473 bool freeit = false;
474 int ret = 0;
475
476 /* If we didn't acquire full stripe lock, no need to continue */
477 if (!locked)
478 return 0;
479
480 bg_cache = btrfs_lookup_block_group(fs_info, bytenr);
481 if (!bg_cache) {
482 ASSERT(0);
483 return -ENOENT;
484 }
485 if (!(bg_cache->flags & BTRFS_BLOCK_GROUP_RAID56_MASK))
486 goto out;
487
488 locks_root = &bg_cache->full_stripe_locks_root;
489 fstripe_start = get_full_stripe_logical(bg_cache, bytenr);
490
491 mutex_lock(&locks_root->lock);
492 fstripe_lock = search_full_stripe_lock(locks_root, fstripe_start);
493 /* Unpaired unlock_full_stripe() detected */
494 if (!fstripe_lock) {
495 WARN_ON(1);
496 ret = -ENOENT;
497 mutex_unlock(&locks_root->lock);
498 goto out;
499 }
500
501 if (fstripe_lock->refs == 0) {
502 WARN_ON(1);
503 btrfs_warn(fs_info, "full stripe lock at %llu refcount underflow",
504 fstripe_lock->logical);
505 } else {
506 fstripe_lock->refs--;
507 }
508
509 if (fstripe_lock->refs == 0) {
510 rb_erase(&fstripe_lock->node, &locks_root->root);
511 freeit = true;
512 }
513 mutex_unlock(&locks_root->lock);
514
515 mutex_unlock(&fstripe_lock->mutex);
516 if (freeit)
517 kfree(fstripe_lock);
518out:
519 btrfs_put_block_group(bg_cache);
520 return ret;
521}
522
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100523static void scrub_free_csums(struct scrub_ctx *sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100524{
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100525 while (!list_empty(&sctx->csum_list)) {
Arne Jansena2de7332011-03-08 14:14:00 +0100526 struct btrfs_ordered_sum *sum;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100527 sum = list_first_entry(&sctx->csum_list,
Arne Jansena2de7332011-03-08 14:14:00 +0100528 struct btrfs_ordered_sum, list);
529 list_del(&sum->list);
530 kfree(sum);
531 }
532}
533
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100534static noinline_for_stack void scrub_free_ctx(struct scrub_ctx *sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100535{
536 int i;
Arne Jansena2de7332011-03-08 14:14:00 +0100537
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100538 if (!sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100539 return;
540
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400541 /* this can happen when scrub is cancelled */
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100542 if (sctx->curr != -1) {
543 struct scrub_bio *sbio = sctx->bios[sctx->curr];
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400544
545 for (i = 0; i < sbio->page_count; i++) {
Stefan Behrensff023aa2012-11-06 11:43:11 +0100546 WARN_ON(!sbio->pagev[i]->page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400547 scrub_block_put(sbio->pagev[i]->sblock);
548 }
549 bio_put(sbio->bio);
550 }
551
Stefan Behrensff023aa2012-11-06 11:43:11 +0100552 for (i = 0; i < SCRUB_BIOS_PER_SCTX; ++i) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100553 struct scrub_bio *sbio = sctx->bios[i];
Arne Jansena2de7332011-03-08 14:14:00 +0100554
555 if (!sbio)
556 break;
Arne Jansena2de7332011-03-08 14:14:00 +0100557 kfree(sbio);
558 }
559
David Sterba3fb99302017-05-16 19:10:32 +0200560 kfree(sctx->wr_curr_bio);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100561 scrub_free_csums(sctx);
562 kfree(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +0100563}
564
Filipe Mananaf55985f2015-02-09 21:14:24 +0000565static void scrub_put_ctx(struct scrub_ctx *sctx)
566{
Elena Reshetova99f4cdb2017-03-03 10:55:25 +0200567 if (refcount_dec_and_test(&sctx->refs))
Filipe Mananaf55985f2015-02-09 21:14:24 +0000568 scrub_free_ctx(sctx);
569}
570
Arne Jansena2de7332011-03-08 14:14:00 +0100571static noinline_for_stack
Stefan Behrens63a212a2012-11-05 18:29:28 +0100572struct scrub_ctx *scrub_setup_ctx(struct btrfs_device *dev, int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +0100573{
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100574 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +0100575 int i;
Jeff Mahoneyfb456252016-06-22 18:54:56 -0400576 struct btrfs_fs_info *fs_info = dev->fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +0100577
David Sterba58c4e172016-02-11 10:49:42 +0100578 sctx = kzalloc(sizeof(*sctx), GFP_KERNEL);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100579 if (!sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100580 goto nomem;
Elena Reshetova99f4cdb2017-03-03 10:55:25 +0200581 refcount_set(&sctx->refs, 1);
Stefan Behrens63a212a2012-11-05 18:29:28 +0100582 sctx->is_dev_replace = is_dev_replace;
Kent Overstreetb54ffb72015-05-19 14:31:01 +0200583 sctx->pages_per_rd_bio = SCRUB_PAGES_PER_RD_BIO;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100584 sctx->curr = -1;
Jeff Mahoneyfb456252016-06-22 18:54:56 -0400585 sctx->fs_info = dev->fs_info;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100586 for (i = 0; i < SCRUB_BIOS_PER_SCTX; ++i) {
Arne Jansena2de7332011-03-08 14:14:00 +0100587 struct scrub_bio *sbio;
588
David Sterba58c4e172016-02-11 10:49:42 +0100589 sbio = kzalloc(sizeof(*sbio), GFP_KERNEL);
Arne Jansena2de7332011-03-08 14:14:00 +0100590 if (!sbio)
591 goto nomem;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100592 sctx->bios[i] = sbio;
Arne Jansena2de7332011-03-08 14:14:00 +0100593
Arne Jansena2de7332011-03-08 14:14:00 +0100594 sbio->index = i;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100595 sbio->sctx = sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400596 sbio->page_count = 0;
Liu Bo9e0af232014-08-15 23:36:53 +0800597 btrfs_init_work(&sbio->work, btrfs_scrub_helper,
598 scrub_bio_end_io_worker, NULL, NULL);
Arne Jansena2de7332011-03-08 14:14:00 +0100599
Stefan Behrensff023aa2012-11-06 11:43:11 +0100600 if (i != SCRUB_BIOS_PER_SCTX - 1)
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100601 sctx->bios[i]->next_free = i + 1;
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200602 else
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100603 sctx->bios[i]->next_free = -1;
Arne Jansena2de7332011-03-08 14:14:00 +0100604 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100605 sctx->first_free = 0;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100606 atomic_set(&sctx->bios_in_flight, 0);
607 atomic_set(&sctx->workers_pending, 0);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100608 atomic_set(&sctx->cancel_req, 0);
609 sctx->csum_size = btrfs_super_csum_size(fs_info->super_copy);
610 INIT_LIST_HEAD(&sctx->csum_list);
Arne Jansena2de7332011-03-08 14:14:00 +0100611
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100612 spin_lock_init(&sctx->list_lock);
613 spin_lock_init(&sctx->stat_lock);
614 init_waitqueue_head(&sctx->list_wait);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100615
David Sterba3fb99302017-05-16 19:10:32 +0200616 WARN_ON(sctx->wr_curr_bio != NULL);
617 mutex_init(&sctx->wr_lock);
618 sctx->wr_curr_bio = NULL;
David Sterba8fcdac32017-05-16 19:10:23 +0200619 if (is_dev_replace) {
David Sterbaded56182017-06-26 15:19:00 +0200620 WARN_ON(!fs_info->dev_replace.tgtdev);
David Sterba3fb99302017-05-16 19:10:32 +0200621 sctx->pages_per_wr_bio = SCRUB_PAGES_PER_WR_BIO;
David Sterbaded56182017-06-26 15:19:00 +0200622 sctx->wr_tgtdev = fs_info->dev_replace.tgtdev;
David Sterba2073c4c2017-03-31 17:12:51 +0200623 sctx->flush_all_writes = false;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100624 }
David Sterba8fcdac32017-05-16 19:10:23 +0200625
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100626 return sctx;
Arne Jansena2de7332011-03-08 14:14:00 +0100627
628nomem:
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100629 scrub_free_ctx(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +0100630 return ERR_PTR(-ENOMEM);
631}
632
Stefan Behrensff023aa2012-11-06 11:43:11 +0100633static int scrub_print_warning_inode(u64 inum, u64 offset, u64 root,
634 void *warn_ctx)
Jan Schmidt558540c2011-06-13 19:59:12 +0200635{
636 u64 isize;
637 u32 nlink;
638 int ret;
639 int i;
David Sterbade2491f2017-05-31 19:21:38 +0200640 unsigned nofs_flag;
Jan Schmidt558540c2011-06-13 19:59:12 +0200641 struct extent_buffer *eb;
642 struct btrfs_inode_item *inode_item;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100643 struct scrub_warning *swarn = warn_ctx;
Jeff Mahoneyfb456252016-06-22 18:54:56 -0400644 struct btrfs_fs_info *fs_info = swarn->dev->fs_info;
Jan Schmidt558540c2011-06-13 19:59:12 +0200645 struct inode_fs_paths *ipath = NULL;
646 struct btrfs_root *local_root;
647 struct btrfs_key root_key;
David Sterba1d4c08e2015-01-02 19:36:14 +0100648 struct btrfs_key key;
Jan Schmidt558540c2011-06-13 19:59:12 +0200649
650 root_key.objectid = root;
651 root_key.type = BTRFS_ROOT_ITEM_KEY;
652 root_key.offset = (u64)-1;
653 local_root = btrfs_read_fs_root_no_name(fs_info, &root_key);
654 if (IS_ERR(local_root)) {
655 ret = PTR_ERR(local_root);
656 goto err;
657 }
658
David Sterba14692cc2015-01-02 18:55:46 +0100659 /*
660 * this makes the path point to (inum INODE_ITEM ioff)
661 */
David Sterba1d4c08e2015-01-02 19:36:14 +0100662 key.objectid = inum;
663 key.type = BTRFS_INODE_ITEM_KEY;
664 key.offset = 0;
665
666 ret = btrfs_search_slot(NULL, local_root, &key, swarn->path, 0, 0);
Jan Schmidt558540c2011-06-13 19:59:12 +0200667 if (ret) {
668 btrfs_release_path(swarn->path);
669 goto err;
670 }
671
672 eb = swarn->path->nodes[0];
673 inode_item = btrfs_item_ptr(eb, swarn->path->slots[0],
674 struct btrfs_inode_item);
675 isize = btrfs_inode_size(eb, inode_item);
676 nlink = btrfs_inode_nlink(eb, inode_item);
677 btrfs_release_path(swarn->path);
678
David Sterbade2491f2017-05-31 19:21:38 +0200679 /*
680 * init_path might indirectly call vmalloc, or use GFP_KERNEL. Scrub
681 * uses GFP_NOFS in this context, so we keep it consistent but it does
682 * not seem to be strictly necessary.
683 */
684 nofs_flag = memalloc_nofs_save();
Jan Schmidt558540c2011-06-13 19:59:12 +0200685 ipath = init_ipath(4096, local_root, swarn->path);
David Sterbade2491f2017-05-31 19:21:38 +0200686 memalloc_nofs_restore(nofs_flag);
Dan Carpenter26bdef52011-11-16 11:28:01 +0300687 if (IS_ERR(ipath)) {
688 ret = PTR_ERR(ipath);
689 ipath = NULL;
690 goto err;
691 }
Jan Schmidt558540c2011-06-13 19:59:12 +0200692 ret = paths_from_inode(inum, ipath);
693
694 if (ret < 0)
695 goto err;
696
697 /*
698 * we deliberately ignore the bit ipath might have been too small to
699 * hold all of the paths here
700 */
701 for (i = 0; i < ipath->fspath->elem_cnt; ++i)
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400702 btrfs_warn_in_rcu(fs_info,
David Sterba6aa21262017-10-04 17:07:07 +0200703"%s at logical %llu on dev %s, physical %llu, root %llu, inode %llu, offset %llu, length %llu, links %u (path: %s)",
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400704 swarn->errstr, swarn->logical,
705 rcu_str_deref(swarn->dev->name),
David Sterba6aa21262017-10-04 17:07:07 +0200706 swarn->physical,
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400707 root, inum, offset,
708 min(isize - offset, (u64)PAGE_SIZE), nlink,
709 (char *)(unsigned long)ipath->fspath->val[i]);
Jan Schmidt558540c2011-06-13 19:59:12 +0200710
711 free_ipath(ipath);
712 return 0;
713
714err:
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400715 btrfs_warn_in_rcu(fs_info,
David Sterba6aa21262017-10-04 17:07:07 +0200716 "%s at logical %llu on dev %s, physical %llu, root %llu, inode %llu, offset %llu: path resolving failed with ret=%d",
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400717 swarn->errstr, swarn->logical,
718 rcu_str_deref(swarn->dev->name),
David Sterba6aa21262017-10-04 17:07:07 +0200719 swarn->physical,
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400720 root, inum, offset, ret);
Jan Schmidt558540c2011-06-13 19:59:12 +0200721
722 free_ipath(ipath);
723 return 0;
724}
725
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400726static void scrub_print_warning(const char *errstr, struct scrub_block *sblock)
Jan Schmidt558540c2011-06-13 19:59:12 +0200727{
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100728 struct btrfs_device *dev;
729 struct btrfs_fs_info *fs_info;
Jan Schmidt558540c2011-06-13 19:59:12 +0200730 struct btrfs_path *path;
731 struct btrfs_key found_key;
732 struct extent_buffer *eb;
733 struct btrfs_extent_item *ei;
734 struct scrub_warning swarn;
Jan Schmidt558540c2011-06-13 19:59:12 +0200735 unsigned long ptr = 0;
Jan Schmidt4692cf52011-12-02 14:56:41 +0100736 u64 extent_item_pos;
Liu Bo69917e42012-09-07 20:01:28 -0600737 u64 flags = 0;
738 u64 ref_root;
739 u32 item_size;
Dan Carpenter07c9a8e2016-03-11 11:08:56 +0300740 u8 ref_level = 0;
Liu Bo69917e42012-09-07 20:01:28 -0600741 int ret;
Jan Schmidt558540c2011-06-13 19:59:12 +0200742
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100743 WARN_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100744 dev = sblock->pagev[0]->dev;
Jeff Mahoneyfb456252016-06-22 18:54:56 -0400745 fs_info = sblock->sctx->fs_info;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100746
Jan Schmidt558540c2011-06-13 19:59:12 +0200747 path = btrfs_alloc_path();
David Sterba8b9456d2014-07-30 01:25:30 +0200748 if (!path)
749 return;
Jan Schmidt558540c2011-06-13 19:59:12 +0200750
David Sterba6aa21262017-10-04 17:07:07 +0200751 swarn.physical = sblock->pagev[0]->physical;
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100752 swarn.logical = sblock->pagev[0]->logical;
Jan Schmidt558540c2011-06-13 19:59:12 +0200753 swarn.errstr = errstr;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100754 swarn.dev = NULL;
Jan Schmidt558540c2011-06-13 19:59:12 +0200755
Liu Bo69917e42012-09-07 20:01:28 -0600756 ret = extent_from_logical(fs_info, swarn.logical, path, &found_key,
757 &flags);
Jan Schmidt558540c2011-06-13 19:59:12 +0200758 if (ret < 0)
759 goto out;
760
Jan Schmidt4692cf52011-12-02 14:56:41 +0100761 extent_item_pos = swarn.logical - found_key.objectid;
Jan Schmidt558540c2011-06-13 19:59:12 +0200762 swarn.extent_item_size = found_key.offset;
763
764 eb = path->nodes[0];
765 ei = btrfs_item_ptr(eb, path->slots[0], struct btrfs_extent_item);
766 item_size = btrfs_item_size_nr(eb, path->slots[0]);
767
Liu Bo69917e42012-09-07 20:01:28 -0600768 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Jan Schmidt558540c2011-06-13 19:59:12 +0200769 do {
Liu Bo6eda71d2014-06-09 10:54:07 +0800770 ret = tree_backref_for_extent(&ptr, eb, &found_key, ei,
771 item_size, &ref_root,
772 &ref_level);
David Sterbaecaeb142015-10-08 09:01:03 +0200773 btrfs_warn_in_rcu(fs_info,
David Sterba6aa21262017-10-04 17:07:07 +0200774"%s at logical %llu on dev %s, physical %llu: metadata %s (level %d) in tree %llu",
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400775 errstr, swarn.logical,
Josef Bacik606686e2012-06-04 14:03:51 -0400776 rcu_str_deref(dev->name),
David Sterba6aa21262017-10-04 17:07:07 +0200777 swarn.physical,
Jan Schmidt558540c2011-06-13 19:59:12 +0200778 ref_level ? "node" : "leaf",
779 ret < 0 ? -1 : ref_level,
780 ret < 0 ? -1 : ref_root);
781 } while (ret != 1);
Josef Bacikd8fe29e2013-03-29 08:09:34 -0600782 btrfs_release_path(path);
Jan Schmidt558540c2011-06-13 19:59:12 +0200783 } else {
Josef Bacikd8fe29e2013-03-29 08:09:34 -0600784 btrfs_release_path(path);
Jan Schmidt558540c2011-06-13 19:59:12 +0200785 swarn.path = path;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100786 swarn.dev = dev;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +0100787 iterate_extent_inodes(fs_info, found_key.objectid,
788 extent_item_pos, 1,
Zygo Blaxellc995ab32017-09-22 13:58:45 -0400789 scrub_print_warning_inode, &swarn, false);
Jan Schmidt558540c2011-06-13 19:59:12 +0200790 }
791
792out:
793 btrfs_free_path(path);
Jan Schmidt558540c2011-06-13 19:59:12 +0200794}
795
Miao Xieaf8e2d12014-10-23 14:42:50 +0800796static inline void scrub_get_recover(struct scrub_recover *recover)
797{
Elena Reshetova6f615012017-03-03 10:55:21 +0200798 refcount_inc(&recover->refs);
Miao Xieaf8e2d12014-10-23 14:42:50 +0800799}
800
Qu Wenruoe501bfe2017-03-29 09:33:22 +0800801static inline void scrub_put_recover(struct btrfs_fs_info *fs_info,
802 struct scrub_recover *recover)
Miao Xieaf8e2d12014-10-23 14:42:50 +0800803{
Elena Reshetova6f615012017-03-03 10:55:21 +0200804 if (refcount_dec_and_test(&recover->refs)) {
Qu Wenruoe501bfe2017-03-29 09:33:22 +0800805 btrfs_bio_counter_dec(fs_info);
Zhao Lei6e9606d2015-01-20 15:11:34 +0800806 btrfs_put_bbio(recover->bbio);
Miao Xieaf8e2d12014-10-23 14:42:50 +0800807 kfree(recover);
808 }
809}
810
Arne Jansena2de7332011-03-08 14:14:00 +0100811/*
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400812 * scrub_handle_errored_block gets called when either verification of the
813 * pages failed or the bio failed to read, e.g. with EIO. In the latter
814 * case, this function handles all pages in the bio, even though only one
815 * may be bad.
816 * The goal of this function is to repair the errored block by using the
817 * contents of one of the mirrors.
Arne Jansena2de7332011-03-08 14:14:00 +0100818 */
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400819static int scrub_handle_errored_block(struct scrub_block *sblock_to_check)
Arne Jansena2de7332011-03-08 14:14:00 +0100820{
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100821 struct scrub_ctx *sctx = sblock_to_check->sctx;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100822 struct btrfs_device *dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400823 struct btrfs_fs_info *fs_info;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400824 u64 logical;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400825 unsigned int failed_mirror_index;
826 unsigned int is_metadata;
827 unsigned int have_csum;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400828 struct scrub_block *sblocks_for_recheck; /* holds one for each mirror */
829 struct scrub_block *sblock_bad;
Arne Jansena2de7332011-03-08 14:14:00 +0100830 int ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400831 int mirror_index;
832 int page_num;
833 int success;
Qu Wenruo28d70e22017-04-14 08:35:55 +0800834 bool full_stripe_locked;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400835 static DEFINE_RATELIMIT_STATE(_rs, DEFAULT_RATELIMIT_INTERVAL,
836 DEFAULT_RATELIMIT_BURST);
Arne Jansena2de7332011-03-08 14:14:00 +0100837
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400838 BUG_ON(sblock_to_check->page_count < 1);
Jeff Mahoneyfb456252016-06-22 18:54:56 -0400839 fs_info = sctx->fs_info;
Stefan Behrens4ded4f62012-11-14 18:57:29 +0000840 if (sblock_to_check->pagev[0]->flags & BTRFS_EXTENT_FLAG_SUPER) {
841 /*
842 * if we find an error in a super block, we just report it.
843 * They will get written with the next transaction commit
844 * anyway
845 */
846 spin_lock(&sctx->stat_lock);
847 ++sctx->stat.super_errors;
848 spin_unlock(&sctx->stat_lock);
849 return 0;
850 }
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100851 logical = sblock_to_check->pagev[0]->logical;
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100852 BUG_ON(sblock_to_check->pagev[0]->mirror_num < 1);
853 failed_mirror_index = sblock_to_check->pagev[0]->mirror_num - 1;
854 is_metadata = !(sblock_to_check->pagev[0]->flags &
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400855 BTRFS_EXTENT_FLAG_DATA);
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100856 have_csum = sblock_to_check->pagev[0]->have_csum;
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100857 dev = sblock_to_check->pagev[0]->dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400858
Qu Wenruo28d70e22017-04-14 08:35:55 +0800859 /*
860 * For RAID5/6, race can happen for a different device scrub thread.
861 * For data corruption, Parity and Data threads will both try
862 * to recovery the data.
863 * Race can lead to doubly added csum error, or even unrecoverable
864 * error.
865 */
866 ret = lock_full_stripe(fs_info, logical, &full_stripe_locked);
867 if (ret < 0) {
868 spin_lock(&sctx->stat_lock);
869 if (ret == -ENOMEM)
870 sctx->stat.malloc_errors++;
871 sctx->stat.read_errors++;
872 sctx->stat.uncorrectable_errors++;
873 spin_unlock(&sctx->stat_lock);
874 return ret;
875 }
876
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400877 /*
878 * read all mirrors one after the other. This includes to
879 * re-read the extent or metadata block that failed (that was
880 * the cause that this fixup code is called) another time,
881 * page by page this time in order to know which pages
882 * caused I/O errors and which ones are good (for all mirrors).
883 * It is the goal to handle the situation when more than one
884 * mirror contains I/O errors, but the errors do not
885 * overlap, i.e. the data can be repaired by selecting the
886 * pages from those mirrors without I/O error on the
887 * particular pages. One example (with blocks >= 2 * PAGE_SIZE)
888 * would be that mirror #1 has an I/O error on the first page,
889 * the second page is good, and mirror #2 has an I/O error on
890 * the second page, but the first page is good.
891 * Then the first page of the first mirror can be repaired by
892 * taking the first page of the second mirror, and the
893 * second page of the second mirror can be repaired by
894 * copying the contents of the 2nd page of the 1st mirror.
895 * One more note: if the pages of one mirror contain I/O
896 * errors, the checksum cannot be verified. In order to get
897 * the best data for repairing, the first attempt is to find
898 * a mirror without I/O errors and with a validated checksum.
899 * Only if this is not possible, the pages are picked from
900 * mirrors with I/O errors without considering the checksum.
901 * If the latter is the case, at the end, the checksum of the
902 * repaired area is verified in order to correctly maintain
903 * the statistics.
904 */
905
David Sterba31e818f2015-02-20 18:00:26 +0100906 sblocks_for_recheck = kcalloc(BTRFS_MAX_MIRRORS,
907 sizeof(*sblocks_for_recheck), GFP_NOFS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400908 if (!sblocks_for_recheck) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100909 spin_lock(&sctx->stat_lock);
910 sctx->stat.malloc_errors++;
911 sctx->stat.read_errors++;
912 sctx->stat.uncorrectable_errors++;
913 spin_unlock(&sctx->stat_lock);
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100914 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_READ_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400915 goto out;
916 }
917
918 /* setup the context, map the logical blocks and alloc the pages */
Zhao Leibe50a8d2015-01-20 15:11:42 +0800919 ret = scrub_setup_recheck_block(sblock_to_check, sblocks_for_recheck);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400920 if (ret) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100921 spin_lock(&sctx->stat_lock);
922 sctx->stat.read_errors++;
923 sctx->stat.uncorrectable_errors++;
924 spin_unlock(&sctx->stat_lock);
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100925 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_READ_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400926 goto out;
927 }
928 BUG_ON(failed_mirror_index >= BTRFS_MAX_MIRRORS);
929 sblock_bad = sblocks_for_recheck + failed_mirror_index;
930
931 /* build and submit the bios for the failed mirror, check checksums */
Zhao Leiaffe4a52015-08-24 21:32:06 +0800932 scrub_recheck_block(fs_info, sblock_bad, 1);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400933
934 if (!sblock_bad->header_error && !sblock_bad->checksum_error &&
935 sblock_bad->no_io_error_seen) {
936 /*
937 * the error disappeared after reading page by page, or
938 * the area was part of a huge bio and other parts of the
939 * bio caused I/O errors, or the block layer merged several
940 * read requests into one and the error is caused by a
941 * different bio (usually one of the two latter cases is
942 * the cause)
943 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100944 spin_lock(&sctx->stat_lock);
945 sctx->stat.unverified_errors++;
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800946 sblock_to_check->data_corrected = 1;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100947 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400948
Stefan Behrensff023aa2012-11-06 11:43:11 +0100949 if (sctx->is_dev_replace)
950 scrub_write_block_to_dev_replace(sblock_bad);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400951 goto out;
952 }
953
954 if (!sblock_bad->no_io_error_seen) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100955 spin_lock(&sctx->stat_lock);
956 sctx->stat.read_errors++;
957 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400958 if (__ratelimit(&_rs))
959 scrub_print_warning("i/o error", sblock_to_check);
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100960 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_READ_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400961 } else if (sblock_bad->checksum_error) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100962 spin_lock(&sctx->stat_lock);
963 sctx->stat.csum_errors++;
964 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400965 if (__ratelimit(&_rs))
966 scrub_print_warning("checksum error", sblock_to_check);
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100967 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +0200968 BTRFS_DEV_STAT_CORRUPTION_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400969 } else if (sblock_bad->header_error) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100970 spin_lock(&sctx->stat_lock);
971 sctx->stat.verify_errors++;
972 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400973 if (__ratelimit(&_rs))
974 scrub_print_warning("checksum/header error",
975 sblock_to_check);
Stefan Behrens442a4f62012-05-25 16:06:08 +0200976 if (sblock_bad->generation_error)
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100977 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +0200978 BTRFS_DEV_STAT_GENERATION_ERRS);
979 else
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100980 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +0200981 BTRFS_DEV_STAT_CORRUPTION_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400982 }
983
Ilya Dryomov33ef30a2013-11-03 19:06:38 +0200984 if (sctx->readonly) {
985 ASSERT(!sctx->is_dev_replace);
986 goto out;
987 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400988
Qu Wenruo665d4952018-07-11 13:41:21 +0800989 /*
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400990 * now build and submit the bios for the other mirrors, check
Stefan Behrenscb2ced72012-11-02 16:14:21 +0100991 * checksums.
992 * First try to pick the mirror which is completely without I/O
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400993 * errors and also does not have a checksum error.
994 * If one is found, and if a checksum is present, the full block
995 * that is known to contain an error is rewritten. Afterwards
996 * the block is known to be corrected.
997 * If a mirror is found which is completely correct, and no
998 * checksum is present, only those pages are rewritten that had
999 * an I/O error in the block to be repaired, since it cannot be
1000 * determined, which copy of the other pages is better (and it
1001 * could happen otherwise that a correct page would be
1002 * overwritten by a bad one).
1003 */
Liu Bo762221f2018-01-02 13:36:42 -07001004 for (mirror_index = 0; ;mirror_index++) {
Stefan Behrenscb2ced72012-11-02 16:14:21 +01001005 struct scrub_block *sblock_other;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001006
Stefan Behrenscb2ced72012-11-02 16:14:21 +01001007 if (mirror_index == failed_mirror_index)
1008 continue;
Liu Bo762221f2018-01-02 13:36:42 -07001009
1010 /* raid56's mirror can be more than BTRFS_MAX_MIRRORS */
1011 if (!scrub_is_page_on_raid56(sblock_bad->pagev[0])) {
1012 if (mirror_index >= BTRFS_MAX_MIRRORS)
1013 break;
1014 if (!sblocks_for_recheck[mirror_index].page_count)
1015 break;
1016
1017 sblock_other = sblocks_for_recheck + mirror_index;
1018 } else {
1019 struct scrub_recover *r = sblock_bad->pagev[0]->recover;
1020 int max_allowed = r->bbio->num_stripes -
1021 r->bbio->num_tgtdevs;
1022
1023 if (mirror_index >= max_allowed)
1024 break;
1025 if (!sblocks_for_recheck[1].page_count)
1026 break;
1027
1028 ASSERT(failed_mirror_index == 0);
1029 sblock_other = sblocks_for_recheck + 1;
1030 sblock_other->pagev[0]->mirror_num = 1 + mirror_index;
1031 }
Stefan Behrenscb2ced72012-11-02 16:14:21 +01001032
1033 /* build and submit the bios, check checksums */
Zhao Leiaffe4a52015-08-24 21:32:06 +08001034 scrub_recheck_block(fs_info, sblock_other, 0);
Stefan Behrens34f5c8e2012-11-02 16:16:26 +01001035
1036 if (!sblock_other->header_error &&
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001037 !sblock_other->checksum_error &&
1038 sblock_other->no_io_error_seen) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01001039 if (sctx->is_dev_replace) {
1040 scrub_write_block_to_dev_replace(sblock_other);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001041 goto corrected_error;
Zhao Lei114ab502015-01-20 15:11:36 +08001042 } else {
1043 ret = scrub_repair_block_from_good_copy(
1044 sblock_bad, sblock_other);
1045 if (!ret)
1046 goto corrected_error;
1047 }
Arne Jansena2de7332011-03-08 14:14:00 +01001048 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001049 }
1050
Zhao Leib968fed2015-01-20 15:11:41 +08001051 if (sblock_bad->no_io_error_seen && !sctx->is_dev_replace)
1052 goto did_not_correct_error;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001053
1054 /*
Stefan Behrensff023aa2012-11-06 11:43:11 +01001055 * In case of I/O errors in the area that is supposed to be
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001056 * repaired, continue by picking good copies of those pages.
1057 * Select the good pages from mirrors to rewrite bad pages from
1058 * the area to fix. Afterwards verify the checksum of the block
1059 * that is supposed to be repaired. This verification step is
1060 * only done for the purpose of statistic counting and for the
1061 * final scrub report, whether errors remain.
1062 * A perfect algorithm could make use of the checksum and try
1063 * all possible combinations of pages from the different mirrors
1064 * until the checksum verification succeeds. For example, when
1065 * the 2nd page of mirror #1 faces I/O errors, and the 2nd page
1066 * of mirror #2 is readable but the final checksum test fails,
1067 * then the 2nd page of mirror #3 could be tried, whether now
Nicholas D Steeves01327612016-05-19 21:18:45 -04001068 * the final checksum succeeds. But this would be a rare
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001069 * exception and is therefore not implemented. At least it is
1070 * avoided that the good copy is overwritten.
1071 * A more useful improvement would be to pick the sectors
1072 * without I/O error based on sector sizes (512 bytes on legacy
1073 * disks) instead of on PAGE_SIZE. Then maybe 512 byte of one
1074 * mirror could be repaired by taking 512 byte of a different
1075 * mirror, even if other 512 byte sectors in the same PAGE_SIZE
1076 * area are unreadable.
1077 */
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001078 success = 1;
Zhao Leib968fed2015-01-20 15:11:41 +08001079 for (page_num = 0; page_num < sblock_bad->page_count;
1080 page_num++) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001081 struct scrub_page *page_bad = sblock_bad->pagev[page_num];
Zhao Leib968fed2015-01-20 15:11:41 +08001082 struct scrub_block *sblock_other = NULL;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001083
Zhao Leib968fed2015-01-20 15:11:41 +08001084 /* skip no-io-error page in scrub */
1085 if (!page_bad->io_error && !sctx->is_dev_replace)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001086 continue;
1087
Liu Bo47597002018-03-02 16:10:41 -07001088 if (scrub_is_page_on_raid56(sblock_bad->pagev[0])) {
1089 /*
1090 * In case of dev replace, if raid56 rebuild process
1091 * didn't work out correct data, then copy the content
1092 * in sblock_bad to make sure target device is identical
1093 * to source device, instead of writing garbage data in
1094 * sblock_for_recheck array to target device.
1095 */
1096 sblock_other = NULL;
1097 } else if (page_bad->io_error) {
1098 /* try to find no-io-error page in mirrors */
Zhao Leib968fed2015-01-20 15:11:41 +08001099 for (mirror_index = 0;
1100 mirror_index < BTRFS_MAX_MIRRORS &&
1101 sblocks_for_recheck[mirror_index].page_count > 0;
1102 mirror_index++) {
1103 if (!sblocks_for_recheck[mirror_index].
1104 pagev[page_num]->io_error) {
1105 sblock_other = sblocks_for_recheck +
1106 mirror_index;
1107 break;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001108 }
Jan Schmidt13db62b2011-06-13 19:56:13 +02001109 }
Zhao Leib968fed2015-01-20 15:11:41 +08001110 if (!sblock_other)
1111 success = 0;
Jan Schmidt13db62b2011-06-13 19:56:13 +02001112 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001113
Zhao Leib968fed2015-01-20 15:11:41 +08001114 if (sctx->is_dev_replace) {
1115 /*
1116 * did not find a mirror to fetch the page
1117 * from. scrub_write_page_to_dev_replace()
1118 * handles this case (page->io_error), by
1119 * filling the block with zeros before
1120 * submitting the write request
1121 */
1122 if (!sblock_other)
1123 sblock_other = sblock_bad;
1124
1125 if (scrub_write_page_to_dev_replace(sblock_other,
1126 page_num) != 0) {
David Sterbae37abe92018-04-04 17:20:52 +02001127 atomic64_inc(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001128 &fs_info->dev_replace.num_write_errors);
Zhao Leib968fed2015-01-20 15:11:41 +08001129 success = 0;
1130 }
1131 } else if (sblock_other) {
1132 ret = scrub_repair_page_from_good_copy(sblock_bad,
1133 sblock_other,
1134 page_num, 0);
1135 if (0 == ret)
1136 page_bad->io_error = 0;
1137 else
1138 success = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001139 }
1140 }
1141
Zhao Leib968fed2015-01-20 15:11:41 +08001142 if (success && !sctx->is_dev_replace) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001143 if (is_metadata || have_csum) {
1144 /*
1145 * need to verify the checksum now that all
1146 * sectors on disk are repaired (the write
1147 * request for data to be repaired is on its way).
1148 * Just be lazy and use scrub_recheck_block()
1149 * which re-reads the data before the checksum
1150 * is verified, but most likely the data comes out
1151 * of the page cache.
1152 */
Zhao Leiaffe4a52015-08-24 21:32:06 +08001153 scrub_recheck_block(fs_info, sblock_bad, 1);
Stefan Behrens34f5c8e2012-11-02 16:16:26 +01001154 if (!sblock_bad->header_error &&
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001155 !sblock_bad->checksum_error &&
1156 sblock_bad->no_io_error_seen)
1157 goto corrected_error;
1158 else
1159 goto did_not_correct_error;
1160 } else {
1161corrected_error:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001162 spin_lock(&sctx->stat_lock);
1163 sctx->stat.corrected_errors++;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08001164 sblock_to_check->data_corrected = 1;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001165 spin_unlock(&sctx->stat_lock);
David Sterbab14af3b2015-10-08 10:43:10 +02001166 btrfs_err_rl_in_rcu(fs_info,
1167 "fixed up error at logical %llu on dev %s",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001168 logical, rcu_str_deref(dev->name));
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001169 }
1170 } else {
1171did_not_correct_error:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001172 spin_lock(&sctx->stat_lock);
1173 sctx->stat.uncorrectable_errors++;
1174 spin_unlock(&sctx->stat_lock);
David Sterbab14af3b2015-10-08 10:43:10 +02001175 btrfs_err_rl_in_rcu(fs_info,
1176 "unable to fixup (regular) error at logical %llu on dev %s",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001177 logical, rcu_str_deref(dev->name));
Arne Jansena2de7332011-03-08 14:14:00 +01001178 }
1179
1180out:
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001181 if (sblocks_for_recheck) {
1182 for (mirror_index = 0; mirror_index < BTRFS_MAX_MIRRORS;
1183 mirror_index++) {
1184 struct scrub_block *sblock = sblocks_for_recheck +
1185 mirror_index;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001186 struct scrub_recover *recover;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001187 int page_index;
1188
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001189 for (page_index = 0; page_index < sblock->page_count;
1190 page_index++) {
1191 sblock->pagev[page_index]->sblock = NULL;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001192 recover = sblock->pagev[page_index]->recover;
1193 if (recover) {
Qu Wenruoe501bfe2017-03-29 09:33:22 +08001194 scrub_put_recover(fs_info, recover);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001195 sblock->pagev[page_index]->recover =
1196 NULL;
1197 }
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001198 scrub_page_put(sblock->pagev[page_index]);
1199 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001200 }
1201 kfree(sblocks_for_recheck);
1202 }
1203
Qu Wenruo28d70e22017-04-14 08:35:55 +08001204 ret = unlock_full_stripe(fs_info, logical, full_stripe_locked);
1205 if (ret < 0)
1206 return ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001207 return 0;
Arne Jansena2de7332011-03-08 14:14:00 +01001208}
1209
Zhao Lei8e5cfb52015-01-20 15:11:33 +08001210static inline int scrub_nr_raid_mirrors(struct btrfs_bio *bbio)
Miao Xieaf8e2d12014-10-23 14:42:50 +08001211{
Zhao Lei10f11902015-01-20 15:11:43 +08001212 if (bbio->map_type & BTRFS_BLOCK_GROUP_RAID5)
1213 return 2;
1214 else if (bbio->map_type & BTRFS_BLOCK_GROUP_RAID6)
1215 return 3;
1216 else
Miao Xieaf8e2d12014-10-23 14:42:50 +08001217 return (int)bbio->num_stripes;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001218}
1219
Zhao Lei10f11902015-01-20 15:11:43 +08001220static inline void scrub_stripe_index_and_offset(u64 logical, u64 map_type,
1221 u64 *raid_map,
Miao Xieaf8e2d12014-10-23 14:42:50 +08001222 u64 mapped_length,
1223 int nstripes, int mirror,
1224 int *stripe_index,
1225 u64 *stripe_offset)
1226{
1227 int i;
1228
Zhao Leiffe2d202015-01-20 15:11:44 +08001229 if (map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Miao Xieaf8e2d12014-10-23 14:42:50 +08001230 /* RAID5/6 */
1231 for (i = 0; i < nstripes; i++) {
1232 if (raid_map[i] == RAID6_Q_STRIPE ||
1233 raid_map[i] == RAID5_P_STRIPE)
1234 continue;
1235
1236 if (logical >= raid_map[i] &&
1237 logical < raid_map[i] + mapped_length)
1238 break;
1239 }
1240
1241 *stripe_index = i;
1242 *stripe_offset = logical - raid_map[i];
1243 } else {
1244 /* The other RAID type */
1245 *stripe_index = mirror;
1246 *stripe_offset = 0;
1247 }
1248}
1249
Zhao Leibe50a8d2015-01-20 15:11:42 +08001250static int scrub_setup_recheck_block(struct scrub_block *original_sblock,
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001251 struct scrub_block *sblocks_for_recheck)
Arne Jansena2de7332011-03-08 14:14:00 +01001252{
Zhao Leibe50a8d2015-01-20 15:11:42 +08001253 struct scrub_ctx *sctx = original_sblock->sctx;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001254 struct btrfs_fs_info *fs_info = sctx->fs_info;
Zhao Leibe50a8d2015-01-20 15:11:42 +08001255 u64 length = original_sblock->page_count * PAGE_SIZE;
1256 u64 logical = original_sblock->pagev[0]->logical;
Zhao Lei4734b7e2015-08-19 22:39:18 +08001257 u64 generation = original_sblock->pagev[0]->generation;
1258 u64 flags = original_sblock->pagev[0]->flags;
1259 u64 have_csum = original_sblock->pagev[0]->have_csum;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001260 struct scrub_recover *recover;
1261 struct btrfs_bio *bbio;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001262 u64 sublen;
1263 u64 mapped_length;
1264 u64 stripe_offset;
1265 int stripe_index;
Zhao Leibe50a8d2015-01-20 15:11:42 +08001266 int page_index = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001267 int mirror_index;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001268 int nmirrors;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001269 int ret;
1270
1271 /*
Zhao Lei57019342015-01-20 15:11:45 +08001272 * note: the two members refs and outstanding_pages
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001273 * are not used (and not set) in the blocks that are used for
1274 * the recheck procedure
1275 */
1276
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001277 while (length > 0) {
Miao Xieaf8e2d12014-10-23 14:42:50 +08001278 sublen = min_t(u64, length, PAGE_SIZE);
1279 mapped_length = sublen;
1280 bbio = NULL;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001281
1282 /*
1283 * with a length of PAGE_SIZE, each returned stripe
1284 * represents one mirror
1285 */
Qu Wenruoe501bfe2017-03-29 09:33:22 +08001286 btrfs_bio_counter_inc_blocked(fs_info);
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02001287 ret = btrfs_map_sblock(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
David Sterba825ad4c2017-03-28 14:45:22 +02001288 logical, &mapped_length, &bbio);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001289 if (ret || !bbio || mapped_length < sublen) {
Zhao Lei6e9606d2015-01-20 15:11:34 +08001290 btrfs_put_bbio(bbio);
Qu Wenruoe501bfe2017-03-29 09:33:22 +08001291 btrfs_bio_counter_dec(fs_info);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001292 return -EIO;
1293 }
1294
Miao Xieaf8e2d12014-10-23 14:42:50 +08001295 recover = kzalloc(sizeof(struct scrub_recover), GFP_NOFS);
1296 if (!recover) {
Zhao Lei6e9606d2015-01-20 15:11:34 +08001297 btrfs_put_bbio(bbio);
Qu Wenruoe501bfe2017-03-29 09:33:22 +08001298 btrfs_bio_counter_dec(fs_info);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001299 return -ENOMEM;
1300 }
1301
Elena Reshetova6f615012017-03-03 10:55:21 +02001302 refcount_set(&recover->refs, 1);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001303 recover->bbio = bbio;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001304 recover->map_length = mapped_length;
1305
Ashish Samant24731142016-04-29 18:33:59 -07001306 BUG_ON(page_index >= SCRUB_MAX_PAGES_PER_BLOCK);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001307
Zhao Leibe50a8d2015-01-20 15:11:42 +08001308 nmirrors = min(scrub_nr_raid_mirrors(bbio), BTRFS_MAX_MIRRORS);
Zhao Lei10f11902015-01-20 15:11:43 +08001309
Miao Xieaf8e2d12014-10-23 14:42:50 +08001310 for (mirror_index = 0; mirror_index < nmirrors;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001311 mirror_index++) {
1312 struct scrub_block *sblock;
1313 struct scrub_page *page;
1314
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001315 sblock = sblocks_for_recheck + mirror_index;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001316 sblock->sctx = sctx;
Zhao Lei4734b7e2015-08-19 22:39:18 +08001317
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001318 page = kzalloc(sizeof(*page), GFP_NOFS);
1319 if (!page) {
1320leave_nomem:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001321 spin_lock(&sctx->stat_lock);
1322 sctx->stat.malloc_errors++;
1323 spin_unlock(&sctx->stat_lock);
Qu Wenruoe501bfe2017-03-29 09:33:22 +08001324 scrub_put_recover(fs_info, recover);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001325 return -ENOMEM;
1326 }
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001327 scrub_page_get(page);
1328 sblock->pagev[page_index] = page;
Zhao Lei4734b7e2015-08-19 22:39:18 +08001329 page->sblock = sblock;
1330 page->flags = flags;
1331 page->generation = generation;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001332 page->logical = logical;
Zhao Lei4734b7e2015-08-19 22:39:18 +08001333 page->have_csum = have_csum;
1334 if (have_csum)
1335 memcpy(page->csum,
1336 original_sblock->pagev[0]->csum,
1337 sctx->csum_size);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001338
Zhao Lei10f11902015-01-20 15:11:43 +08001339 scrub_stripe_index_and_offset(logical,
1340 bbio->map_type,
1341 bbio->raid_map,
Miao Xieaf8e2d12014-10-23 14:42:50 +08001342 mapped_length,
Zhao Leie34c3302015-01-20 15:11:31 +08001343 bbio->num_stripes -
1344 bbio->num_tgtdevs,
Miao Xieaf8e2d12014-10-23 14:42:50 +08001345 mirror_index,
1346 &stripe_index,
1347 &stripe_offset);
1348 page->physical = bbio->stripes[stripe_index].physical +
1349 stripe_offset;
1350 page->dev = bbio->stripes[stripe_index].dev;
1351
Stefan Behrensff023aa2012-11-06 11:43:11 +01001352 BUG_ON(page_index >= original_sblock->page_count);
1353 page->physical_for_dev_replace =
1354 original_sblock->pagev[page_index]->
1355 physical_for_dev_replace;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001356 /* for missing devices, dev->bdev is NULL */
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001357 page->mirror_num = mirror_index + 1;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001358 sblock->page_count++;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001359 page->page = alloc_page(GFP_NOFS);
1360 if (!page->page)
1361 goto leave_nomem;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001362
1363 scrub_get_recover(recover);
1364 page->recover = recover;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001365 }
Qu Wenruoe501bfe2017-03-29 09:33:22 +08001366 scrub_put_recover(fs_info, recover);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001367 length -= sublen;
1368 logical += sublen;
1369 page_index++;
1370 }
1371
1372 return 0;
1373}
1374
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001375static void scrub_bio_wait_endio(struct bio *bio)
Miao Xieaf8e2d12014-10-23 14:42:50 +08001376{
Liu Bob4ff5ad2017-11-30 17:26:39 -07001377 complete(bio->bi_private);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001378}
1379
Miao Xieaf8e2d12014-10-23 14:42:50 +08001380static int scrub_submit_raid56_bio_wait(struct btrfs_fs_info *fs_info,
1381 struct bio *bio,
1382 struct scrub_page *page)
1383{
Liu Bob4ff5ad2017-11-30 17:26:39 -07001384 DECLARE_COMPLETION_ONSTACK(done);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001385 int ret;
Liu Bo762221f2018-01-02 13:36:42 -07001386 int mirror_num;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001387
Miao Xieaf8e2d12014-10-23 14:42:50 +08001388 bio->bi_iter.bi_sector = page->logical >> 9;
1389 bio->bi_private = &done;
1390 bio->bi_end_io = scrub_bio_wait_endio;
1391
Liu Bo762221f2018-01-02 13:36:42 -07001392 mirror_num = page->sblock->pagev[0]->mirror_num;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001393 ret = raid56_parity_recover(fs_info, bio, page->recover->bbio,
Miao Xieaf8e2d12014-10-23 14:42:50 +08001394 page->recover->map_length,
Liu Bo762221f2018-01-02 13:36:42 -07001395 mirror_num, 0);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001396 if (ret)
1397 return ret;
1398
Liu Bob4ff5ad2017-11-30 17:26:39 -07001399 wait_for_completion_io(&done);
1400 return blk_status_to_errno(bio->bi_status);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001401}
1402
Liu Bo6ca17652018-03-07 12:08:09 -07001403static void scrub_recheck_block_on_raid56(struct btrfs_fs_info *fs_info,
1404 struct scrub_block *sblock)
1405{
1406 struct scrub_page *first_page = sblock->pagev[0];
1407 struct bio *bio;
1408 int page_num;
1409
1410 /* All pages in sblock belong to the same stripe on the same device. */
1411 ASSERT(first_page->dev);
1412 if (!first_page->dev->bdev)
1413 goto out;
1414
1415 bio = btrfs_io_bio_alloc(BIO_MAX_PAGES);
1416 bio_set_dev(bio, first_page->dev->bdev);
1417
1418 for (page_num = 0; page_num < sblock->page_count; page_num++) {
1419 struct scrub_page *page = sblock->pagev[page_num];
1420
1421 WARN_ON(!page->page);
1422 bio_add_page(bio, page->page, PAGE_SIZE, 0);
1423 }
1424
1425 if (scrub_submit_raid56_bio_wait(fs_info, bio, first_page)) {
1426 bio_put(bio);
1427 goto out;
1428 }
1429
1430 bio_put(bio);
1431
1432 scrub_recheck_block_checksum(sblock);
1433
1434 return;
1435out:
1436 for (page_num = 0; page_num < sblock->page_count; page_num++)
1437 sblock->pagev[page_num]->io_error = 1;
1438
1439 sblock->no_io_error_seen = 0;
1440}
1441
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001442/*
1443 * this function will check the on disk data for checksum errors, header
1444 * errors and read I/O errors. If any I/O errors happen, the exact pages
1445 * which are errored are marked as being bad. The goal is to enable scrub
1446 * to take those pages that are not errored from all the mirrors so that
1447 * the pages that are errored in the just handled mirror can be repaired.
1448 */
Stefan Behrens34f5c8e2012-11-02 16:16:26 +01001449static void scrub_recheck_block(struct btrfs_fs_info *fs_info,
Zhao Leiaffe4a52015-08-24 21:32:06 +08001450 struct scrub_block *sblock,
1451 int retry_failed_mirror)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001452{
1453 int page_num;
1454
1455 sblock->no_io_error_seen = 1;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001456
Liu Bo6ca17652018-03-07 12:08:09 -07001457 /* short cut for raid56 */
1458 if (!retry_failed_mirror && scrub_is_page_on_raid56(sblock->pagev[0]))
1459 return scrub_recheck_block_on_raid56(fs_info, sblock);
1460
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001461 for (page_num = 0; page_num < sblock->page_count; page_num++) {
1462 struct bio *bio;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001463 struct scrub_page *page = sblock->pagev[page_num];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001464
Stefan Behrens442a4f62012-05-25 16:06:08 +02001465 if (page->dev->bdev == NULL) {
Stefan Behrensea9947b2012-05-04 15:16:07 -04001466 page->io_error = 1;
1467 sblock->no_io_error_seen = 0;
1468 continue;
1469 }
1470
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001471 WARN_ON(!page->page);
David Sterbac5e4c3d2017-06-12 17:29:41 +02001472 bio = btrfs_io_bio_alloc(1);
Christoph Hellwig74d46992017-08-23 19:10:32 +02001473 bio_set_dev(bio, page->dev->bdev);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001474
Stefan Behrens34f5c8e2012-11-02 16:16:26 +01001475 bio_add_page(bio, page->page, PAGE_SIZE, 0);
Liu Bo6ca17652018-03-07 12:08:09 -07001476 bio->bi_iter.bi_sector = page->physical >> 9;
1477 bio->bi_opf = REQ_OP_READ;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001478
Liu Bo6ca17652018-03-07 12:08:09 -07001479 if (btrfsic_submit_bio_wait(bio)) {
1480 page->io_error = 1;
1481 sblock->no_io_error_seen = 0;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001482 }
Kent Overstreet33879d42013-11-23 22:33:32 -08001483
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001484 bio_put(bio);
1485 }
1486
1487 if (sblock->no_io_error_seen)
Zhao Leiba7cf982015-08-24 21:18:02 +08001488 scrub_recheck_block_checksum(sblock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001489}
1490
Miao Xie17a9be22014-07-24 11:37:08 +08001491static inline int scrub_check_fsid(u8 fsid[],
1492 struct scrub_page *spage)
1493{
1494 struct btrfs_fs_devices *fs_devices = spage->dev->fs_devices;
1495 int ret;
1496
Anand Jain44880fd2017-07-29 17:50:09 +08001497 ret = memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Miao Xie17a9be22014-07-24 11:37:08 +08001498 return !ret;
1499}
1500
Zhao Leiba7cf982015-08-24 21:18:02 +08001501static void scrub_recheck_block_checksum(struct scrub_block *sblock)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001502{
Zhao Leiba7cf982015-08-24 21:18:02 +08001503 sblock->header_error = 0;
1504 sblock->checksum_error = 0;
1505 sblock->generation_error = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001506
Zhao Leiba7cf982015-08-24 21:18:02 +08001507 if (sblock->pagev[0]->flags & BTRFS_EXTENT_FLAG_DATA)
1508 scrub_checksum_data(sblock);
1509 else
1510 scrub_checksum_tree_block(sblock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001511}
1512
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001513static int scrub_repair_block_from_good_copy(struct scrub_block *sblock_bad,
Zhao Lei114ab502015-01-20 15:11:36 +08001514 struct scrub_block *sblock_good)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001515{
1516 int page_num;
1517 int ret = 0;
1518
1519 for (page_num = 0; page_num < sblock_bad->page_count; page_num++) {
1520 int ret_sub;
1521
1522 ret_sub = scrub_repair_page_from_good_copy(sblock_bad,
1523 sblock_good,
Zhao Lei114ab502015-01-20 15:11:36 +08001524 page_num, 1);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001525 if (ret_sub)
1526 ret = ret_sub;
1527 }
1528
1529 return ret;
1530}
1531
1532static int scrub_repair_page_from_good_copy(struct scrub_block *sblock_bad,
1533 struct scrub_block *sblock_good,
1534 int page_num, int force_write)
1535{
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001536 struct scrub_page *page_bad = sblock_bad->pagev[page_num];
1537 struct scrub_page *page_good = sblock_good->pagev[page_num];
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001538 struct btrfs_fs_info *fs_info = sblock_bad->sctx->fs_info;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001539
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001540 BUG_ON(page_bad->page == NULL);
1541 BUG_ON(page_good->page == NULL);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001542 if (force_write || sblock_bad->header_error ||
1543 sblock_bad->checksum_error || page_bad->io_error) {
1544 struct bio *bio;
1545 int ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001546
Stefan Behrensff023aa2012-11-06 11:43:11 +01001547 if (!page_bad->dev->bdev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001548 btrfs_warn_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04001549 "scrub_repair_page_from_good_copy(bdev == NULL) is unexpected");
Stefan Behrensff023aa2012-11-06 11:43:11 +01001550 return -EIO;
1551 }
1552
David Sterbac5e4c3d2017-06-12 17:29:41 +02001553 bio = btrfs_io_bio_alloc(1);
Christoph Hellwig74d46992017-08-23 19:10:32 +02001554 bio_set_dev(bio, page_bad->dev->bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001555 bio->bi_iter.bi_sector = page_bad->physical >> 9;
David Sterbaebcc3262018-06-29 10:56:53 +02001556 bio->bi_opf = REQ_OP_WRITE;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001557
1558 ret = bio_add_page(bio, page_good->page, PAGE_SIZE, 0);
1559 if (PAGE_SIZE != ret) {
1560 bio_put(bio);
1561 return -EIO;
1562 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001563
Mike Christie4e49ea42016-06-05 14:31:41 -05001564 if (btrfsic_submit_bio_wait(bio)) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02001565 btrfs_dev_stat_inc_and_print(page_bad->dev,
1566 BTRFS_DEV_STAT_WRITE_ERRS);
David Sterbae37abe92018-04-04 17:20:52 +02001567 atomic64_inc(&fs_info->dev_replace.num_write_errors);
Stefan Behrens442a4f62012-05-25 16:06:08 +02001568 bio_put(bio);
1569 return -EIO;
1570 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001571 bio_put(bio);
1572 }
1573
1574 return 0;
1575}
1576
Stefan Behrensff023aa2012-11-06 11:43:11 +01001577static void scrub_write_block_to_dev_replace(struct scrub_block *sblock)
1578{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001579 struct btrfs_fs_info *fs_info = sblock->sctx->fs_info;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001580 int page_num;
1581
Miao Xie5a6ac9e2014-11-06 17:20:58 +08001582 /*
1583 * This block is used for the check of the parity on the source device,
1584 * so the data needn't be written into the destination device.
1585 */
1586 if (sblock->sparity)
1587 return;
1588
Stefan Behrensff023aa2012-11-06 11:43:11 +01001589 for (page_num = 0; page_num < sblock->page_count; page_num++) {
1590 int ret;
1591
1592 ret = scrub_write_page_to_dev_replace(sblock, page_num);
1593 if (ret)
David Sterbae37abe92018-04-04 17:20:52 +02001594 atomic64_inc(&fs_info->dev_replace.num_write_errors);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001595 }
1596}
1597
1598static int scrub_write_page_to_dev_replace(struct scrub_block *sblock,
1599 int page_num)
1600{
1601 struct scrub_page *spage = sblock->pagev[page_num];
1602
1603 BUG_ON(spage->page == NULL);
1604 if (spage->io_error) {
1605 void *mapped_buffer = kmap_atomic(spage->page);
1606
David Sterba619a9742017-03-29 20:48:44 +02001607 clear_page(mapped_buffer);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001608 flush_dcache_page(spage->page);
1609 kunmap_atomic(mapped_buffer);
1610 }
1611 return scrub_add_page_to_wr_bio(sblock->sctx, spage);
1612}
1613
1614static int scrub_add_page_to_wr_bio(struct scrub_ctx *sctx,
1615 struct scrub_page *spage)
1616{
Stefan Behrensff023aa2012-11-06 11:43:11 +01001617 struct scrub_bio *sbio;
1618 int ret;
1619
David Sterba3fb99302017-05-16 19:10:32 +02001620 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001621again:
David Sterba3fb99302017-05-16 19:10:32 +02001622 if (!sctx->wr_curr_bio) {
1623 sctx->wr_curr_bio = kzalloc(sizeof(*sctx->wr_curr_bio),
David Sterba58c4e172016-02-11 10:49:42 +01001624 GFP_KERNEL);
David Sterba3fb99302017-05-16 19:10:32 +02001625 if (!sctx->wr_curr_bio) {
1626 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001627 return -ENOMEM;
1628 }
David Sterba3fb99302017-05-16 19:10:32 +02001629 sctx->wr_curr_bio->sctx = sctx;
1630 sctx->wr_curr_bio->page_count = 0;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001631 }
David Sterba3fb99302017-05-16 19:10:32 +02001632 sbio = sctx->wr_curr_bio;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001633 if (sbio->page_count == 0) {
1634 struct bio *bio;
1635
1636 sbio->physical = spage->physical_for_dev_replace;
1637 sbio->logical = spage->logical;
David Sterba3fb99302017-05-16 19:10:32 +02001638 sbio->dev = sctx->wr_tgtdev;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001639 bio = sbio->bio;
1640 if (!bio) {
David Sterbac5e4c3d2017-06-12 17:29:41 +02001641 bio = btrfs_io_bio_alloc(sctx->pages_per_wr_bio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001642 sbio->bio = bio;
1643 }
1644
1645 bio->bi_private = sbio;
1646 bio->bi_end_io = scrub_wr_bio_end_io;
Christoph Hellwig74d46992017-08-23 19:10:32 +02001647 bio_set_dev(bio, sbio->dev->bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001648 bio->bi_iter.bi_sector = sbio->physical >> 9;
David Sterbaebcc3262018-06-29 10:56:53 +02001649 bio->bi_opf = REQ_OP_WRITE;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001650 sbio->status = 0;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001651 } else if (sbio->physical + sbio->page_count * PAGE_SIZE !=
1652 spage->physical_for_dev_replace ||
1653 sbio->logical + sbio->page_count * PAGE_SIZE !=
1654 spage->logical) {
1655 scrub_wr_submit(sctx);
1656 goto again;
1657 }
1658
1659 ret = bio_add_page(sbio->bio, spage->page, PAGE_SIZE, 0);
1660 if (ret != PAGE_SIZE) {
1661 if (sbio->page_count < 1) {
1662 bio_put(sbio->bio);
1663 sbio->bio = NULL;
David Sterba3fb99302017-05-16 19:10:32 +02001664 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001665 return -EIO;
1666 }
1667 scrub_wr_submit(sctx);
1668 goto again;
1669 }
1670
1671 sbio->pagev[sbio->page_count] = spage;
1672 scrub_page_get(spage);
1673 sbio->page_count++;
David Sterba3fb99302017-05-16 19:10:32 +02001674 if (sbio->page_count == sctx->pages_per_wr_bio)
Stefan Behrensff023aa2012-11-06 11:43:11 +01001675 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02001676 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001677
1678 return 0;
1679}
1680
1681static void scrub_wr_submit(struct scrub_ctx *sctx)
1682{
Stefan Behrensff023aa2012-11-06 11:43:11 +01001683 struct scrub_bio *sbio;
1684
David Sterba3fb99302017-05-16 19:10:32 +02001685 if (!sctx->wr_curr_bio)
Stefan Behrensff023aa2012-11-06 11:43:11 +01001686 return;
1687
David Sterba3fb99302017-05-16 19:10:32 +02001688 sbio = sctx->wr_curr_bio;
1689 sctx->wr_curr_bio = NULL;
Christoph Hellwig74d46992017-08-23 19:10:32 +02001690 WARN_ON(!sbio->bio->bi_disk);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001691 scrub_pending_bio_inc(sctx);
1692 /* process all writes in a single worker thread. Then the block layer
1693 * orders the requests before sending them to the driver which
1694 * doubled the write performance on spinning disks when measured
1695 * with Linux 3.5 */
Mike Christie4e49ea42016-06-05 14:31:41 -05001696 btrfsic_submit_bio(sbio->bio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001697}
1698
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001699static void scrub_wr_bio_end_io(struct bio *bio)
Stefan Behrensff023aa2012-11-06 11:43:11 +01001700{
1701 struct scrub_bio *sbio = bio->bi_private;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001702 struct btrfs_fs_info *fs_info = sbio->dev->fs_info;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001703
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001704 sbio->status = bio->bi_status;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001705 sbio->bio = bio;
1706
Liu Bo9e0af232014-08-15 23:36:53 +08001707 btrfs_init_work(&sbio->work, btrfs_scrubwrc_helper,
1708 scrub_wr_bio_end_io_worker, NULL, NULL);
Qu Wenruo0339ef22014-02-28 10:46:17 +08001709 btrfs_queue_work(fs_info->scrub_wr_completion_workers, &sbio->work);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001710}
1711
1712static void scrub_wr_bio_end_io_worker(struct btrfs_work *work)
1713{
1714 struct scrub_bio *sbio = container_of(work, struct scrub_bio, work);
1715 struct scrub_ctx *sctx = sbio->sctx;
1716 int i;
1717
1718 WARN_ON(sbio->page_count > SCRUB_PAGES_PER_WR_BIO);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001719 if (sbio->status) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01001720 struct btrfs_dev_replace *dev_replace =
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001721 &sbio->sctx->fs_info->dev_replace;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001722
1723 for (i = 0; i < sbio->page_count; i++) {
1724 struct scrub_page *spage = sbio->pagev[i];
1725
1726 spage->io_error = 1;
David Sterbae37abe92018-04-04 17:20:52 +02001727 atomic64_inc(&dev_replace->num_write_errors);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001728 }
1729 }
1730
1731 for (i = 0; i < sbio->page_count; i++)
1732 scrub_page_put(sbio->pagev[i]);
1733
1734 bio_put(sbio->bio);
1735 kfree(sbio);
1736 scrub_pending_bio_dec(sctx);
1737}
1738
1739static int scrub_checksum(struct scrub_block *sblock)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001740{
1741 u64 flags;
1742 int ret;
1743
Zhao Leiba7cf982015-08-24 21:18:02 +08001744 /*
1745 * No need to initialize these stats currently,
1746 * because this function only use return value
1747 * instead of these stats value.
1748 *
1749 * Todo:
1750 * always use stats
1751 */
1752 sblock->header_error = 0;
1753 sblock->generation_error = 0;
1754 sblock->checksum_error = 0;
1755
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001756 WARN_ON(sblock->page_count < 1);
1757 flags = sblock->pagev[0]->flags;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001758 ret = 0;
1759 if (flags & BTRFS_EXTENT_FLAG_DATA)
1760 ret = scrub_checksum_data(sblock);
1761 else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)
1762 ret = scrub_checksum_tree_block(sblock);
1763 else if (flags & BTRFS_EXTENT_FLAG_SUPER)
1764 (void)scrub_checksum_super(sblock);
1765 else
1766 WARN_ON(1);
1767 if (ret)
1768 scrub_handle_errored_block(sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001769
1770 return ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001771}
1772
1773static int scrub_checksum_data(struct scrub_block *sblock)
1774{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001775 struct scrub_ctx *sctx = sblock->sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01001776 u8 csum[BTRFS_CSUM_SIZE];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001777 u8 *on_disk_csum;
1778 struct page *page;
1779 void *buffer;
Arne Jansena2de7332011-03-08 14:14:00 +01001780 u32 crc = ~(u32)0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001781 u64 len;
1782 int index;
Arne Jansena2de7332011-03-08 14:14:00 +01001783
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001784 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001785 if (!sblock->pagev[0]->have_csum)
Arne Jansena2de7332011-03-08 14:14:00 +01001786 return 0;
1787
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001788 on_disk_csum = sblock->pagev[0]->csum;
1789 page = sblock->pagev[0]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001790 buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001791
David Sterba25cc1222017-05-16 19:10:41 +02001792 len = sctx->fs_info->sectorsize;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001793 index = 0;
1794 for (;;) {
1795 u64 l = min_t(u64, len, PAGE_SIZE);
1796
Liu Bob0496682013-03-14 14:57:45 +00001797 crc = btrfs_csum_data(buffer, crc, l);
Linus Torvalds9613beb2012-03-30 12:44:29 -07001798 kunmap_atomic(buffer);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001799 len -= l;
1800 if (len == 0)
1801 break;
1802 index++;
1803 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001804 BUG_ON(!sblock->pagev[index]->page);
1805 page = sblock->pagev[index]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001806 buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001807 }
1808
Arne Jansena2de7332011-03-08 14:14:00 +01001809 btrfs_csum_final(crc, csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001810 if (memcmp(csum, on_disk_csum, sctx->csum_size))
Zhao Leiba7cf982015-08-24 21:18:02 +08001811 sblock->checksum_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001812
Zhao Leiba7cf982015-08-24 21:18:02 +08001813 return sblock->checksum_error;
Arne Jansena2de7332011-03-08 14:14:00 +01001814}
1815
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001816static int scrub_checksum_tree_block(struct scrub_block *sblock)
Arne Jansena2de7332011-03-08 14:14:00 +01001817{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001818 struct scrub_ctx *sctx = sblock->sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01001819 struct btrfs_header *h;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001820 struct btrfs_fs_info *fs_info = sctx->fs_info;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001821 u8 calculated_csum[BTRFS_CSUM_SIZE];
1822 u8 on_disk_csum[BTRFS_CSUM_SIZE];
1823 struct page *page;
1824 void *mapped_buffer;
1825 u64 mapped_size;
1826 void *p;
Arne Jansena2de7332011-03-08 14:14:00 +01001827 u32 crc = ~(u32)0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001828 u64 len;
1829 int index;
1830
1831 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001832 page = sblock->pagev[0]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001833 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001834 h = (struct btrfs_header *)mapped_buffer;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001835 memcpy(on_disk_csum, h->csum, sctx->csum_size);
Arne Jansena2de7332011-03-08 14:14:00 +01001836
1837 /*
1838 * we don't use the getter functions here, as we
1839 * a) don't have an extent buffer and
1840 * b) the page is already kmapped
1841 */
Qu Wenruo3cae2102013-07-16 11:19:18 +08001842 if (sblock->pagev[0]->logical != btrfs_stack_header_bytenr(h))
Zhao Leiba7cf982015-08-24 21:18:02 +08001843 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001844
Zhao Leiba7cf982015-08-24 21:18:02 +08001845 if (sblock->pagev[0]->generation != btrfs_stack_header_generation(h)) {
1846 sblock->header_error = 1;
1847 sblock->generation_error = 1;
1848 }
Arne Jansena2de7332011-03-08 14:14:00 +01001849
Miao Xie17a9be22014-07-24 11:37:08 +08001850 if (!scrub_check_fsid(h->fsid, sblock->pagev[0]))
Zhao Leiba7cf982015-08-24 21:18:02 +08001851 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001852
1853 if (memcmp(h->chunk_tree_uuid, fs_info->chunk_tree_uuid,
1854 BTRFS_UUID_SIZE))
Zhao Leiba7cf982015-08-24 21:18:02 +08001855 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001856
David Sterba25cc1222017-05-16 19:10:41 +02001857 len = sctx->fs_info->nodesize - BTRFS_CSUM_SIZE;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001858 mapped_size = PAGE_SIZE - BTRFS_CSUM_SIZE;
1859 p = ((u8 *)mapped_buffer) + BTRFS_CSUM_SIZE;
1860 index = 0;
1861 for (;;) {
1862 u64 l = min_t(u64, len, mapped_size);
1863
Liu Bob0496682013-03-14 14:57:45 +00001864 crc = btrfs_csum_data(p, crc, l);
Linus Torvalds9613beb2012-03-30 12:44:29 -07001865 kunmap_atomic(mapped_buffer);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001866 len -= l;
1867 if (len == 0)
1868 break;
1869 index++;
1870 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001871 BUG_ON(!sblock->pagev[index]->page);
1872 page = sblock->pagev[index]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001873 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001874 mapped_size = PAGE_SIZE;
1875 p = mapped_buffer;
1876 }
1877
1878 btrfs_csum_final(crc, calculated_csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001879 if (memcmp(calculated_csum, on_disk_csum, sctx->csum_size))
Zhao Leiba7cf982015-08-24 21:18:02 +08001880 sblock->checksum_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001881
Zhao Leiba7cf982015-08-24 21:18:02 +08001882 return sblock->header_error || sblock->checksum_error;
Arne Jansena2de7332011-03-08 14:14:00 +01001883}
1884
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001885static int scrub_checksum_super(struct scrub_block *sblock)
Arne Jansena2de7332011-03-08 14:14:00 +01001886{
1887 struct btrfs_super_block *s;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001888 struct scrub_ctx *sctx = sblock->sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001889 u8 calculated_csum[BTRFS_CSUM_SIZE];
1890 u8 on_disk_csum[BTRFS_CSUM_SIZE];
1891 struct page *page;
1892 void *mapped_buffer;
1893 u64 mapped_size;
1894 void *p;
Arne Jansena2de7332011-03-08 14:14:00 +01001895 u32 crc = ~(u32)0;
Stefan Behrens442a4f62012-05-25 16:06:08 +02001896 int fail_gen = 0;
1897 int fail_cor = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001898 u64 len;
1899 int index;
Arne Jansena2de7332011-03-08 14:14:00 +01001900
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001901 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001902 page = sblock->pagev[0]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001903 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001904 s = (struct btrfs_super_block *)mapped_buffer;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001905 memcpy(on_disk_csum, s->csum, sctx->csum_size);
Arne Jansena2de7332011-03-08 14:14:00 +01001906
Qu Wenruo3cae2102013-07-16 11:19:18 +08001907 if (sblock->pagev[0]->logical != btrfs_super_bytenr(s))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001908 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001909
Qu Wenruo3cae2102013-07-16 11:19:18 +08001910 if (sblock->pagev[0]->generation != btrfs_super_generation(s))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001911 ++fail_gen;
Arne Jansena2de7332011-03-08 14:14:00 +01001912
Miao Xie17a9be22014-07-24 11:37:08 +08001913 if (!scrub_check_fsid(s->fsid, sblock->pagev[0]))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001914 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001915
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001916 len = BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE;
1917 mapped_size = PAGE_SIZE - BTRFS_CSUM_SIZE;
1918 p = ((u8 *)mapped_buffer) + BTRFS_CSUM_SIZE;
1919 index = 0;
1920 for (;;) {
1921 u64 l = min_t(u64, len, mapped_size);
1922
Liu Bob0496682013-03-14 14:57:45 +00001923 crc = btrfs_csum_data(p, crc, l);
Linus Torvalds9613beb2012-03-30 12:44:29 -07001924 kunmap_atomic(mapped_buffer);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001925 len -= l;
1926 if (len == 0)
1927 break;
1928 index++;
1929 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001930 BUG_ON(!sblock->pagev[index]->page);
1931 page = sblock->pagev[index]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001932 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001933 mapped_size = PAGE_SIZE;
1934 p = mapped_buffer;
1935 }
1936
1937 btrfs_csum_final(crc, calculated_csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001938 if (memcmp(calculated_csum, on_disk_csum, sctx->csum_size))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001939 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001940
Stefan Behrens442a4f62012-05-25 16:06:08 +02001941 if (fail_cor + fail_gen) {
Arne Jansena2de7332011-03-08 14:14:00 +01001942 /*
1943 * if we find an error in a super block, we just report it.
1944 * They will get written with the next transaction commit
1945 * anyway
1946 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001947 spin_lock(&sctx->stat_lock);
1948 ++sctx->stat.super_errors;
1949 spin_unlock(&sctx->stat_lock);
Stefan Behrens442a4f62012-05-25 16:06:08 +02001950 if (fail_cor)
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001951 btrfs_dev_stat_inc_and_print(sblock->pagev[0]->dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +02001952 BTRFS_DEV_STAT_CORRUPTION_ERRS);
1953 else
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001954 btrfs_dev_stat_inc_and_print(sblock->pagev[0]->dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +02001955 BTRFS_DEV_STAT_GENERATION_ERRS);
Arne Jansena2de7332011-03-08 14:14:00 +01001956 }
1957
Stefan Behrens442a4f62012-05-25 16:06:08 +02001958 return fail_cor + fail_gen;
Arne Jansena2de7332011-03-08 14:14:00 +01001959}
1960
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001961static void scrub_block_get(struct scrub_block *sblock)
1962{
Elena Reshetova186debd2017-03-03 10:55:23 +02001963 refcount_inc(&sblock->refs);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001964}
1965
1966static void scrub_block_put(struct scrub_block *sblock)
1967{
Elena Reshetova186debd2017-03-03 10:55:23 +02001968 if (refcount_dec_and_test(&sblock->refs)) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001969 int i;
1970
Miao Xie5a6ac9e2014-11-06 17:20:58 +08001971 if (sblock->sparity)
1972 scrub_parity_put(sblock->sparity);
1973
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001974 for (i = 0; i < sblock->page_count; i++)
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001975 scrub_page_put(sblock->pagev[i]);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001976 kfree(sblock);
1977 }
1978}
1979
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001980static void scrub_page_get(struct scrub_page *spage)
1981{
Zhao Lei57019342015-01-20 15:11:45 +08001982 atomic_inc(&spage->refs);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001983}
1984
1985static void scrub_page_put(struct scrub_page *spage)
1986{
Zhao Lei57019342015-01-20 15:11:45 +08001987 if (atomic_dec_and_test(&spage->refs)) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001988 if (spage->page)
1989 __free_page(spage->page);
1990 kfree(spage);
1991 }
1992}
1993
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001994static void scrub_submit(struct scrub_ctx *sctx)
Arne Jansena2de7332011-03-08 14:14:00 +01001995{
1996 struct scrub_bio *sbio;
1997
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001998 if (sctx->curr == -1)
Stefan Behrens1623ede2012-03-27 14:21:26 -04001999 return;
Arne Jansena2de7332011-03-08 14:14:00 +01002000
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002001 sbio = sctx->bios[sctx->curr];
2002 sctx->curr = -1;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002003 scrub_pending_bio_inc(sctx);
Mike Christie4e49ea42016-06-05 14:31:41 -05002004 btrfsic_submit_bio(sbio->bio);
Arne Jansena2de7332011-03-08 14:14:00 +01002005}
2006
Stefan Behrensff023aa2012-11-06 11:43:11 +01002007static int scrub_add_page_to_rd_bio(struct scrub_ctx *sctx,
2008 struct scrub_page *spage)
Arne Jansena2de7332011-03-08 14:14:00 +01002009{
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002010 struct scrub_block *sblock = spage->sblock;
Arne Jansena2de7332011-03-08 14:14:00 +01002011 struct scrub_bio *sbio;
Arne Jansen69f4cb52011-11-11 08:17:10 -05002012 int ret;
Arne Jansena2de7332011-03-08 14:14:00 +01002013
2014again:
2015 /*
2016 * grab a fresh bio or wait for one to become available
2017 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002018 while (sctx->curr == -1) {
2019 spin_lock(&sctx->list_lock);
2020 sctx->curr = sctx->first_free;
2021 if (sctx->curr != -1) {
2022 sctx->first_free = sctx->bios[sctx->curr]->next_free;
2023 sctx->bios[sctx->curr]->next_free = -1;
2024 sctx->bios[sctx->curr]->page_count = 0;
2025 spin_unlock(&sctx->list_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01002026 } else {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002027 spin_unlock(&sctx->list_lock);
2028 wait_event(sctx->list_wait, sctx->first_free != -1);
Arne Jansena2de7332011-03-08 14:14:00 +01002029 }
2030 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002031 sbio = sctx->bios[sctx->curr];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002032 if (sbio->page_count == 0) {
Arne Jansen69f4cb52011-11-11 08:17:10 -05002033 struct bio *bio;
2034
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002035 sbio->physical = spage->physical;
2036 sbio->logical = spage->logical;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002037 sbio->dev = spage->dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002038 bio = sbio->bio;
2039 if (!bio) {
David Sterbac5e4c3d2017-06-12 17:29:41 +02002040 bio = btrfs_io_bio_alloc(sctx->pages_per_rd_bio);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002041 sbio->bio = bio;
2042 }
Arne Jansen69f4cb52011-11-11 08:17:10 -05002043
2044 bio->bi_private = sbio;
2045 bio->bi_end_io = scrub_bio_end_io;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002046 bio_set_dev(bio, sbio->dev->bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002047 bio->bi_iter.bi_sector = sbio->physical >> 9;
David Sterbaebcc3262018-06-29 10:56:53 +02002048 bio->bi_opf = REQ_OP_READ;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002049 sbio->status = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002050 } else if (sbio->physical + sbio->page_count * PAGE_SIZE !=
2051 spage->physical ||
2052 sbio->logical + sbio->page_count * PAGE_SIZE !=
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002053 spage->logical ||
2054 sbio->dev != spage->dev) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002055 scrub_submit(sctx);
Arne Jansen69f4cb52011-11-11 08:17:10 -05002056 goto again;
2057 }
2058
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002059 sbio->pagev[sbio->page_count] = spage;
2060 ret = bio_add_page(sbio->bio, spage->page, PAGE_SIZE, 0);
2061 if (ret != PAGE_SIZE) {
2062 if (sbio->page_count < 1) {
2063 bio_put(sbio->bio);
2064 sbio->bio = NULL;
2065 return -EIO;
2066 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002067 scrub_submit(sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002068 goto again;
Arne Jansena2de7332011-03-08 14:14:00 +01002069 }
Arne Jansen1bc87792011-05-28 21:57:55 +02002070
Stefan Behrensff023aa2012-11-06 11:43:11 +01002071 scrub_block_get(sblock); /* one for the page added to the bio */
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002072 atomic_inc(&sblock->outstanding_pages);
2073 sbio->page_count++;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002074 if (sbio->page_count == sctx->pages_per_rd_bio)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002075 scrub_submit(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01002076
2077 return 0;
2078}
2079
Linus Torvalds22365972015-09-05 15:14:43 -07002080static void scrub_missing_raid56_end_io(struct bio *bio)
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002081{
2082 struct scrub_block *sblock = bio->bi_private;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002083 struct btrfs_fs_info *fs_info = sblock->sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002084
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002085 if (bio->bi_status)
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002086 sblock->no_io_error_seen = 0;
2087
Scott Talbert46732722016-05-09 09:14:28 -04002088 bio_put(bio);
2089
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002090 btrfs_queue_work(fs_info->scrub_workers, &sblock->work);
2091}
2092
2093static void scrub_missing_raid56_worker(struct btrfs_work *work)
2094{
2095 struct scrub_block *sblock = container_of(work, struct scrub_block, work);
2096 struct scrub_ctx *sctx = sblock->sctx;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002097 struct btrfs_fs_info *fs_info = sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002098 u64 logical;
2099 struct btrfs_device *dev;
2100
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002101 logical = sblock->pagev[0]->logical;
2102 dev = sblock->pagev[0]->dev;
2103
Zhao Leiaffe4a52015-08-24 21:32:06 +08002104 if (sblock->no_io_error_seen)
Zhao Leiba7cf982015-08-24 21:18:02 +08002105 scrub_recheck_block_checksum(sblock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002106
2107 if (!sblock->no_io_error_seen) {
2108 spin_lock(&sctx->stat_lock);
2109 sctx->stat.read_errors++;
2110 spin_unlock(&sctx->stat_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002111 btrfs_err_rl_in_rcu(fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02002112 "IO error rebuilding logical %llu for dev %s",
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002113 logical, rcu_str_deref(dev->name));
2114 } else if (sblock->header_error || sblock->checksum_error) {
2115 spin_lock(&sctx->stat_lock);
2116 sctx->stat.uncorrectable_errors++;
2117 spin_unlock(&sctx->stat_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002118 btrfs_err_rl_in_rcu(fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02002119 "failed to rebuild valid logical %llu for dev %s",
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002120 logical, rcu_str_deref(dev->name));
2121 } else {
2122 scrub_write_block_to_dev_replace(sblock);
2123 }
2124
2125 scrub_block_put(sblock);
2126
David Sterba2073c4c2017-03-31 17:12:51 +02002127 if (sctx->is_dev_replace && sctx->flush_all_writes) {
David Sterba3fb99302017-05-16 19:10:32 +02002128 mutex_lock(&sctx->wr_lock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002129 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02002130 mutex_unlock(&sctx->wr_lock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002131 }
2132
2133 scrub_pending_bio_dec(sctx);
2134}
2135
2136static void scrub_missing_raid56_pages(struct scrub_block *sblock)
2137{
2138 struct scrub_ctx *sctx = sblock->sctx;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002139 struct btrfs_fs_info *fs_info = sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002140 u64 length = sblock->page_count * PAGE_SIZE;
2141 u64 logical = sblock->pagev[0]->logical;
Zhao Leif1fee652016-05-17 17:37:38 +08002142 struct btrfs_bio *bbio = NULL;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002143 struct bio *bio;
2144 struct btrfs_raid_bio *rbio;
2145 int ret;
2146 int i;
2147
Qu Wenruoae6529c2017-03-29 09:33:21 +08002148 btrfs_bio_counter_inc_blocked(fs_info);
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02002149 ret = btrfs_map_sblock(fs_info, BTRFS_MAP_GET_READ_MIRRORS, logical,
David Sterba825ad4c2017-03-28 14:45:22 +02002150 &length, &bbio);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002151 if (ret || !bbio || !bbio->raid_map)
2152 goto bbio_out;
2153
2154 if (WARN_ON(!sctx->is_dev_replace ||
2155 !(bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK))) {
2156 /*
2157 * We shouldn't be scrubbing a missing device. Even for dev
2158 * replace, we should only get here for RAID 5/6. We either
2159 * managed to mount something with no mirrors remaining or
2160 * there's a bug in scrub_remap_extent()/btrfs_map_block().
2161 */
2162 goto bbio_out;
2163 }
2164
David Sterbac5e4c3d2017-06-12 17:29:41 +02002165 bio = btrfs_io_bio_alloc(0);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002166 bio->bi_iter.bi_sector = logical >> 9;
2167 bio->bi_private = sblock;
2168 bio->bi_end_io = scrub_missing_raid56_end_io;
2169
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002170 rbio = raid56_alloc_missing_rbio(fs_info, bio, bbio, length);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002171 if (!rbio)
2172 goto rbio_out;
2173
2174 for (i = 0; i < sblock->page_count; i++) {
2175 struct scrub_page *spage = sblock->pagev[i];
2176
2177 raid56_add_scrub_pages(rbio, spage->page, spage->logical);
2178 }
2179
2180 btrfs_init_work(&sblock->work, btrfs_scrub_helper,
2181 scrub_missing_raid56_worker, NULL, NULL);
2182 scrub_block_get(sblock);
2183 scrub_pending_bio_inc(sctx);
2184 raid56_submit_missing_rbio(rbio);
2185 return;
2186
2187rbio_out:
2188 bio_put(bio);
2189bbio_out:
Qu Wenruoae6529c2017-03-29 09:33:21 +08002190 btrfs_bio_counter_dec(fs_info);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002191 btrfs_put_bbio(bbio);
2192 spin_lock(&sctx->stat_lock);
2193 sctx->stat.malloc_errors++;
2194 spin_unlock(&sctx->stat_lock);
2195}
2196
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002197static int scrub_pages(struct scrub_ctx *sctx, u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002198 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002199 u64 gen, int mirror_num, u8 *csum, int force,
2200 u64 physical_for_dev_replace)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002201{
2202 struct scrub_block *sblock;
2203 int index;
2204
David Sterba58c4e172016-02-11 10:49:42 +01002205 sblock = kzalloc(sizeof(*sblock), GFP_KERNEL);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002206 if (!sblock) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002207 spin_lock(&sctx->stat_lock);
2208 sctx->stat.malloc_errors++;
2209 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002210 return -ENOMEM;
2211 }
2212
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002213 /* one ref inside this function, plus one for each page added to
2214 * a bio later on */
Elena Reshetova186debd2017-03-03 10:55:23 +02002215 refcount_set(&sblock->refs, 1);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002216 sblock->sctx = sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002217 sblock->no_io_error_seen = 1;
2218
2219 for (index = 0; len > 0; index++) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002220 struct scrub_page *spage;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002221 u64 l = min_t(u64, len, PAGE_SIZE);
2222
David Sterba58c4e172016-02-11 10:49:42 +01002223 spage = kzalloc(sizeof(*spage), GFP_KERNEL);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002224 if (!spage) {
2225leave_nomem:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002226 spin_lock(&sctx->stat_lock);
2227 sctx->stat.malloc_errors++;
2228 spin_unlock(&sctx->stat_lock);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002229 scrub_block_put(sblock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002230 return -ENOMEM;
2231 }
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002232 BUG_ON(index >= SCRUB_MAX_PAGES_PER_BLOCK);
2233 scrub_page_get(spage);
2234 sblock->pagev[index] = spage;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002235 spage->sblock = sblock;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002236 spage->dev = dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002237 spage->flags = flags;
2238 spage->generation = gen;
2239 spage->logical = logical;
2240 spage->physical = physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002241 spage->physical_for_dev_replace = physical_for_dev_replace;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002242 spage->mirror_num = mirror_num;
2243 if (csum) {
2244 spage->have_csum = 1;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002245 memcpy(spage->csum, csum, sctx->csum_size);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002246 } else {
2247 spage->have_csum = 0;
2248 }
2249 sblock->page_count++;
David Sterba58c4e172016-02-11 10:49:42 +01002250 spage->page = alloc_page(GFP_KERNEL);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002251 if (!spage->page)
2252 goto leave_nomem;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002253 len -= l;
2254 logical += l;
2255 physical += l;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002256 physical_for_dev_replace += l;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002257 }
2258
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002259 WARN_ON(sblock->page_count == 0);
Anand Jaine6e674b2017-12-04 12:54:54 +08002260 if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state)) {
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002261 /*
2262 * This case should only be hit for RAID 5/6 device replace. See
2263 * the comment in scrub_missing_raid56_pages() for details.
2264 */
2265 scrub_missing_raid56_pages(sblock);
2266 } else {
2267 for (index = 0; index < sblock->page_count; index++) {
2268 struct scrub_page *spage = sblock->pagev[index];
2269 int ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002270
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002271 ret = scrub_add_page_to_rd_bio(sctx, spage);
2272 if (ret) {
2273 scrub_block_put(sblock);
2274 return ret;
2275 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002276 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002277
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002278 if (force)
2279 scrub_submit(sctx);
2280 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002281
2282 /* last one frees, either here or in bio completion for last page */
2283 scrub_block_put(sblock);
2284 return 0;
2285}
2286
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002287static void scrub_bio_end_io(struct bio *bio)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002288{
2289 struct scrub_bio *sbio = bio->bi_private;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002290 struct btrfs_fs_info *fs_info = sbio->dev->fs_info;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002291
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002292 sbio->status = bio->bi_status;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002293 sbio->bio = bio;
2294
Qu Wenruo0339ef22014-02-28 10:46:17 +08002295 btrfs_queue_work(fs_info->scrub_workers, &sbio->work);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002296}
2297
2298static void scrub_bio_end_io_worker(struct btrfs_work *work)
2299{
2300 struct scrub_bio *sbio = container_of(work, struct scrub_bio, work);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002301 struct scrub_ctx *sctx = sbio->sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002302 int i;
2303
Stefan Behrensff023aa2012-11-06 11:43:11 +01002304 BUG_ON(sbio->page_count > SCRUB_PAGES_PER_RD_BIO);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002305 if (sbio->status) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002306 for (i = 0; i < sbio->page_count; i++) {
2307 struct scrub_page *spage = sbio->pagev[i];
2308
2309 spage->io_error = 1;
2310 spage->sblock->no_io_error_seen = 0;
2311 }
2312 }
2313
2314 /* now complete the scrub_block items that have all pages completed */
2315 for (i = 0; i < sbio->page_count; i++) {
2316 struct scrub_page *spage = sbio->pagev[i];
2317 struct scrub_block *sblock = spage->sblock;
2318
2319 if (atomic_dec_and_test(&sblock->outstanding_pages))
2320 scrub_block_complete(sblock);
2321 scrub_block_put(sblock);
2322 }
2323
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002324 bio_put(sbio->bio);
2325 sbio->bio = NULL;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002326 spin_lock(&sctx->list_lock);
2327 sbio->next_free = sctx->first_free;
2328 sctx->first_free = sbio->index;
2329 spin_unlock(&sctx->list_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002330
David Sterba2073c4c2017-03-31 17:12:51 +02002331 if (sctx->is_dev_replace && sctx->flush_all_writes) {
David Sterba3fb99302017-05-16 19:10:32 +02002332 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002333 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02002334 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002335 }
2336
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002337 scrub_pending_bio_dec(sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002338}
2339
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002340static inline void __scrub_mark_bitmap(struct scrub_parity *sparity,
2341 unsigned long *bitmap,
2342 u64 start, u64 len)
2343{
Liu Bo972d7212017-04-03 13:45:33 -07002344 u64 offset;
David Sterba7736b0a2017-03-31 18:02:48 +02002345 u64 nsectors64;
2346 u32 nsectors;
Jeff Mahoneyda170662016-06-15 09:22:56 -04002347 int sectorsize = sparity->sctx->fs_info->sectorsize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002348
2349 if (len >= sparity->stripe_len) {
2350 bitmap_set(bitmap, 0, sparity->nsectors);
2351 return;
2352 }
2353
2354 start -= sparity->logic_start;
Liu Bo972d7212017-04-03 13:45:33 -07002355 start = div64_u64_rem(start, sparity->stripe_len, &offset);
2356 offset = div_u64(offset, sectorsize);
David Sterba7736b0a2017-03-31 18:02:48 +02002357 nsectors64 = div_u64(len, sectorsize);
2358
2359 ASSERT(nsectors64 < UINT_MAX);
2360 nsectors = (u32)nsectors64;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002361
2362 if (offset + nsectors <= sparity->nsectors) {
2363 bitmap_set(bitmap, offset, nsectors);
2364 return;
2365 }
2366
2367 bitmap_set(bitmap, offset, sparity->nsectors - offset);
2368 bitmap_set(bitmap, 0, nsectors - (sparity->nsectors - offset));
2369}
2370
2371static inline void scrub_parity_mark_sectors_error(struct scrub_parity *sparity,
2372 u64 start, u64 len)
2373{
2374 __scrub_mark_bitmap(sparity, sparity->ebitmap, start, len);
2375}
2376
2377static inline void scrub_parity_mark_sectors_data(struct scrub_parity *sparity,
2378 u64 start, u64 len)
2379{
2380 __scrub_mark_bitmap(sparity, sparity->dbitmap, start, len);
2381}
2382
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002383static void scrub_block_complete(struct scrub_block *sblock)
2384{
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002385 int corrupted = 0;
2386
Stefan Behrensff023aa2012-11-06 11:43:11 +01002387 if (!sblock->no_io_error_seen) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002388 corrupted = 1;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002389 scrub_handle_errored_block(sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002390 } else {
2391 /*
2392 * if has checksum error, write via repair mechanism in
2393 * dev replace case, otherwise write here in dev replace
2394 * case.
2395 */
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002396 corrupted = scrub_checksum(sblock);
2397 if (!corrupted && sblock->sctx->is_dev_replace)
Stefan Behrensff023aa2012-11-06 11:43:11 +01002398 scrub_write_block_to_dev_replace(sblock);
2399 }
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002400
2401 if (sblock->sparity && corrupted && !sblock->data_corrected) {
2402 u64 start = sblock->pagev[0]->logical;
2403 u64 end = sblock->pagev[sblock->page_count - 1]->logical +
2404 PAGE_SIZE;
2405
2406 scrub_parity_mark_sectors_error(sblock->sparity,
2407 start, end - start);
2408 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002409}
2410
Zhao Lei3b5753e2015-08-24 22:03:02 +08002411static int scrub_find_csum(struct scrub_ctx *sctx, u64 logical, u8 *csum)
Arne Jansena2de7332011-03-08 14:14:00 +01002412{
2413 struct btrfs_ordered_sum *sum = NULL;
Miao Xief51a4a12013-06-19 10:36:09 +08002414 unsigned long index;
Arne Jansena2de7332011-03-08 14:14:00 +01002415 unsigned long num_sectors;
Arne Jansena2de7332011-03-08 14:14:00 +01002416
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002417 while (!list_empty(&sctx->csum_list)) {
2418 sum = list_first_entry(&sctx->csum_list,
Arne Jansena2de7332011-03-08 14:14:00 +01002419 struct btrfs_ordered_sum, list);
2420 if (sum->bytenr > logical)
2421 return 0;
2422 if (sum->bytenr + sum->len > logical)
2423 break;
2424
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002425 ++sctx->stat.csum_discards;
Arne Jansena2de7332011-03-08 14:14:00 +01002426 list_del(&sum->list);
2427 kfree(sum);
2428 sum = NULL;
2429 }
2430 if (!sum)
2431 return 0;
2432
David Sterba1d1bf922017-03-31 18:02:48 +02002433 index = div_u64(logical - sum->bytenr, sctx->fs_info->sectorsize);
2434 ASSERT(index < UINT_MAX);
2435
David Sterba25cc1222017-05-16 19:10:41 +02002436 num_sectors = sum->len / sctx->fs_info->sectorsize;
Miao Xief51a4a12013-06-19 10:36:09 +08002437 memcpy(csum, sum->sums + index, sctx->csum_size);
2438 if (index == num_sectors - 1) {
Arne Jansena2de7332011-03-08 14:14:00 +01002439 list_del(&sum->list);
2440 kfree(sum);
2441 }
Miao Xief51a4a12013-06-19 10:36:09 +08002442 return 1;
Arne Jansena2de7332011-03-08 14:14:00 +01002443}
2444
2445/* scrub extent tries to collect up to 64 kB for each bio */
Liu Bo6ca17652018-03-07 12:08:09 -07002446static int scrub_extent(struct scrub_ctx *sctx, struct map_lookup *map,
2447 u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002448 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002449 u64 gen, int mirror_num, u64 physical_for_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01002450{
2451 int ret;
2452 u8 csum[BTRFS_CSUM_SIZE];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002453 u32 blocksize;
2454
2455 if (flags & BTRFS_EXTENT_FLAG_DATA) {
Liu Bo6ca17652018-03-07 12:08:09 -07002456 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
2457 blocksize = map->stripe_len;
2458 else
2459 blocksize = sctx->fs_info->sectorsize;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002460 spin_lock(&sctx->stat_lock);
2461 sctx->stat.data_extents_scrubbed++;
2462 sctx->stat.data_bytes_scrubbed += len;
2463 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002464 } else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Liu Bo6ca17652018-03-07 12:08:09 -07002465 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
2466 blocksize = map->stripe_len;
2467 else
2468 blocksize = sctx->fs_info->nodesize;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002469 spin_lock(&sctx->stat_lock);
2470 sctx->stat.tree_extents_scrubbed++;
2471 sctx->stat.tree_bytes_scrubbed += len;
2472 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002473 } else {
David Sterba25cc1222017-05-16 19:10:41 +02002474 blocksize = sctx->fs_info->sectorsize;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002475 WARN_ON(1);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002476 }
Arne Jansena2de7332011-03-08 14:14:00 +01002477
2478 while (len) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002479 u64 l = min_t(u64, len, blocksize);
Arne Jansena2de7332011-03-08 14:14:00 +01002480 int have_csum = 0;
2481
2482 if (flags & BTRFS_EXTENT_FLAG_DATA) {
2483 /* push csums to sbio */
Zhao Lei3b5753e2015-08-24 22:03:02 +08002484 have_csum = scrub_find_csum(sctx, logical, csum);
Arne Jansena2de7332011-03-08 14:14:00 +01002485 if (have_csum == 0)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002486 ++sctx->stat.no_csum;
Arne Jansena2de7332011-03-08 14:14:00 +01002487 }
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002488 ret = scrub_pages(sctx, logical, l, physical, dev, flags, gen,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002489 mirror_num, have_csum ? csum : NULL, 0,
2490 physical_for_dev_replace);
Arne Jansena2de7332011-03-08 14:14:00 +01002491 if (ret)
2492 return ret;
2493 len -= l;
2494 logical += l;
2495 physical += l;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002496 physical_for_dev_replace += l;
Arne Jansena2de7332011-03-08 14:14:00 +01002497 }
2498 return 0;
2499}
2500
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002501static int scrub_pages_for_parity(struct scrub_parity *sparity,
2502 u64 logical, u64 len,
2503 u64 physical, struct btrfs_device *dev,
2504 u64 flags, u64 gen, int mirror_num, u8 *csum)
2505{
2506 struct scrub_ctx *sctx = sparity->sctx;
2507 struct scrub_block *sblock;
2508 int index;
2509
David Sterba58c4e172016-02-11 10:49:42 +01002510 sblock = kzalloc(sizeof(*sblock), GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002511 if (!sblock) {
2512 spin_lock(&sctx->stat_lock);
2513 sctx->stat.malloc_errors++;
2514 spin_unlock(&sctx->stat_lock);
2515 return -ENOMEM;
2516 }
2517
2518 /* one ref inside this function, plus one for each page added to
2519 * a bio later on */
Elena Reshetova186debd2017-03-03 10:55:23 +02002520 refcount_set(&sblock->refs, 1);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002521 sblock->sctx = sctx;
2522 sblock->no_io_error_seen = 1;
2523 sblock->sparity = sparity;
2524 scrub_parity_get(sparity);
2525
2526 for (index = 0; len > 0; index++) {
2527 struct scrub_page *spage;
2528 u64 l = min_t(u64, len, PAGE_SIZE);
2529
David Sterba58c4e172016-02-11 10:49:42 +01002530 spage = kzalloc(sizeof(*spage), GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002531 if (!spage) {
2532leave_nomem:
2533 spin_lock(&sctx->stat_lock);
2534 sctx->stat.malloc_errors++;
2535 spin_unlock(&sctx->stat_lock);
2536 scrub_block_put(sblock);
2537 return -ENOMEM;
2538 }
2539 BUG_ON(index >= SCRUB_MAX_PAGES_PER_BLOCK);
2540 /* For scrub block */
2541 scrub_page_get(spage);
2542 sblock->pagev[index] = spage;
2543 /* For scrub parity */
2544 scrub_page_get(spage);
2545 list_add_tail(&spage->list, &sparity->spages);
2546 spage->sblock = sblock;
2547 spage->dev = dev;
2548 spage->flags = flags;
2549 spage->generation = gen;
2550 spage->logical = logical;
2551 spage->physical = physical;
2552 spage->mirror_num = mirror_num;
2553 if (csum) {
2554 spage->have_csum = 1;
2555 memcpy(spage->csum, csum, sctx->csum_size);
2556 } else {
2557 spage->have_csum = 0;
2558 }
2559 sblock->page_count++;
David Sterba58c4e172016-02-11 10:49:42 +01002560 spage->page = alloc_page(GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002561 if (!spage->page)
2562 goto leave_nomem;
2563 len -= l;
2564 logical += l;
2565 physical += l;
2566 }
2567
2568 WARN_ON(sblock->page_count == 0);
2569 for (index = 0; index < sblock->page_count; index++) {
2570 struct scrub_page *spage = sblock->pagev[index];
2571 int ret;
2572
2573 ret = scrub_add_page_to_rd_bio(sctx, spage);
2574 if (ret) {
2575 scrub_block_put(sblock);
2576 return ret;
2577 }
2578 }
2579
2580 /* last one frees, either here or in bio completion for last page */
2581 scrub_block_put(sblock);
2582 return 0;
2583}
2584
2585static int scrub_extent_for_parity(struct scrub_parity *sparity,
2586 u64 logical, u64 len,
2587 u64 physical, struct btrfs_device *dev,
2588 u64 flags, u64 gen, int mirror_num)
2589{
2590 struct scrub_ctx *sctx = sparity->sctx;
2591 int ret;
2592 u8 csum[BTRFS_CSUM_SIZE];
2593 u32 blocksize;
2594
Anand Jaine6e674b2017-12-04 12:54:54 +08002595 if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state)) {
Omar Sandoval4a770892015-06-19 11:52:52 -07002596 scrub_parity_mark_sectors_error(sparity, logical, len);
2597 return 0;
2598 }
2599
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002600 if (flags & BTRFS_EXTENT_FLAG_DATA) {
Liu Bo6ca17652018-03-07 12:08:09 -07002601 blocksize = sparity->stripe_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002602 } else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Liu Bo6ca17652018-03-07 12:08:09 -07002603 blocksize = sparity->stripe_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002604 } else {
David Sterba25cc1222017-05-16 19:10:41 +02002605 blocksize = sctx->fs_info->sectorsize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002606 WARN_ON(1);
2607 }
2608
2609 while (len) {
2610 u64 l = min_t(u64, len, blocksize);
2611 int have_csum = 0;
2612
2613 if (flags & BTRFS_EXTENT_FLAG_DATA) {
2614 /* push csums to sbio */
Zhao Lei3b5753e2015-08-24 22:03:02 +08002615 have_csum = scrub_find_csum(sctx, logical, csum);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002616 if (have_csum == 0)
2617 goto skip;
2618 }
2619 ret = scrub_pages_for_parity(sparity, logical, l, physical, dev,
2620 flags, gen, mirror_num,
2621 have_csum ? csum : NULL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002622 if (ret)
2623 return ret;
Dan Carpenter6b6d24b2014-12-12 22:30:00 +03002624skip:
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002625 len -= l;
2626 logical += l;
2627 physical += l;
2628 }
2629 return 0;
2630}
2631
Wang Shilong3b080b22014-04-01 18:01:43 +08002632/*
2633 * Given a physical address, this will calculate it's
2634 * logical offset. if this is a parity stripe, it will return
2635 * the most left data stripe's logical offset.
2636 *
2637 * return 0 if it is a data stripe, 1 means parity stripe.
2638 */
2639static int get_raid56_logic_offset(u64 physical, int num,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002640 struct map_lookup *map, u64 *offset,
2641 u64 *stripe_start)
Wang Shilong3b080b22014-04-01 18:01:43 +08002642{
2643 int i;
2644 int j = 0;
2645 u64 stripe_nr;
2646 u64 last_offset;
David Sterba9d644a62015-02-20 18:42:11 +01002647 u32 stripe_index;
2648 u32 rot;
Wang Shilong3b080b22014-04-01 18:01:43 +08002649
2650 last_offset = (physical - map->stripes[num].physical) *
2651 nr_data_stripes(map);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002652 if (stripe_start)
2653 *stripe_start = last_offset;
2654
Wang Shilong3b080b22014-04-01 18:01:43 +08002655 *offset = last_offset;
2656 for (i = 0; i < nr_data_stripes(map); i++) {
2657 *offset = last_offset + i * map->stripe_len;
2658
Liu Bo42c61ab2017-04-03 13:45:24 -07002659 stripe_nr = div64_u64(*offset, map->stripe_len);
David Sterbab8b93ad2015-01-16 17:26:13 +01002660 stripe_nr = div_u64(stripe_nr, nr_data_stripes(map));
Wang Shilong3b080b22014-04-01 18:01:43 +08002661
2662 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01002663 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, &rot);
Wang Shilong3b080b22014-04-01 18:01:43 +08002664 /* calculate which stripe this data locates */
2665 rot += i;
Wang Shilonge4fbaee2014-04-11 18:32:25 +08002666 stripe_index = rot % map->num_stripes;
Wang Shilong3b080b22014-04-01 18:01:43 +08002667 if (stripe_index == num)
2668 return 0;
2669 if (stripe_index < num)
2670 j++;
2671 }
2672 *offset = last_offset + j * map->stripe_len;
2673 return 1;
2674}
2675
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002676static void scrub_free_parity(struct scrub_parity *sparity)
2677{
2678 struct scrub_ctx *sctx = sparity->sctx;
2679 struct scrub_page *curr, *next;
2680 int nbits;
2681
2682 nbits = bitmap_weight(sparity->ebitmap, sparity->nsectors);
2683 if (nbits) {
2684 spin_lock(&sctx->stat_lock);
2685 sctx->stat.read_errors += nbits;
2686 sctx->stat.uncorrectable_errors += nbits;
2687 spin_unlock(&sctx->stat_lock);
2688 }
2689
2690 list_for_each_entry_safe(curr, next, &sparity->spages, list) {
2691 list_del_init(&curr->list);
2692 scrub_page_put(curr);
2693 }
2694
2695 kfree(sparity);
2696}
2697
Zhao Lei20b2e302015-06-04 20:09:15 +08002698static void scrub_parity_bio_endio_worker(struct btrfs_work *work)
2699{
2700 struct scrub_parity *sparity = container_of(work, struct scrub_parity,
2701 work);
2702 struct scrub_ctx *sctx = sparity->sctx;
2703
2704 scrub_free_parity(sparity);
2705 scrub_pending_bio_dec(sctx);
2706}
2707
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002708static void scrub_parity_bio_endio(struct bio *bio)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002709{
2710 struct scrub_parity *sparity = (struct scrub_parity *)bio->bi_private;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002711 struct btrfs_fs_info *fs_info = sparity->sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002712
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002713 if (bio->bi_status)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002714 bitmap_or(sparity->ebitmap, sparity->ebitmap, sparity->dbitmap,
2715 sparity->nsectors);
2716
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002717 bio_put(bio);
Zhao Lei20b2e302015-06-04 20:09:15 +08002718
2719 btrfs_init_work(&sparity->work, btrfs_scrubparity_helper,
2720 scrub_parity_bio_endio_worker, NULL, NULL);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002721 btrfs_queue_work(fs_info->scrub_parity_workers, &sparity->work);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002722}
2723
2724static void scrub_parity_check_and_repair(struct scrub_parity *sparity)
2725{
2726 struct scrub_ctx *sctx = sparity->sctx;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002727 struct btrfs_fs_info *fs_info = sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002728 struct bio *bio;
2729 struct btrfs_raid_bio *rbio;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002730 struct btrfs_bio *bbio = NULL;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002731 u64 length;
2732 int ret;
2733
2734 if (!bitmap_andnot(sparity->dbitmap, sparity->dbitmap, sparity->ebitmap,
2735 sparity->nsectors))
2736 goto out;
2737
Zhao Leia0dd59d2015-07-21 15:42:26 +08002738 length = sparity->logic_end - sparity->logic_start;
Qu Wenruoae6529c2017-03-29 09:33:21 +08002739
2740 btrfs_bio_counter_inc_blocked(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002741 ret = btrfs_map_sblock(fs_info, BTRFS_MAP_WRITE, sparity->logic_start,
David Sterba825ad4c2017-03-28 14:45:22 +02002742 &length, &bbio);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08002743 if (ret || !bbio || !bbio->raid_map)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002744 goto bbio_out;
2745
David Sterbac5e4c3d2017-06-12 17:29:41 +02002746 bio = btrfs_io_bio_alloc(0);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002747 bio->bi_iter.bi_sector = sparity->logic_start >> 9;
2748 bio->bi_private = sparity;
2749 bio->bi_end_io = scrub_parity_bio_endio;
2750
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002751 rbio = raid56_parity_alloc_scrub_rbio(fs_info, bio, bbio,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08002752 length, sparity->scrub_dev,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002753 sparity->dbitmap,
2754 sparity->nsectors);
2755 if (!rbio)
2756 goto rbio_out;
2757
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002758 scrub_pending_bio_inc(sctx);
2759 raid56_parity_submit_scrub_rbio(rbio);
2760 return;
2761
2762rbio_out:
2763 bio_put(bio);
2764bbio_out:
Qu Wenruoae6529c2017-03-29 09:33:21 +08002765 btrfs_bio_counter_dec(fs_info);
Zhao Lei6e9606d2015-01-20 15:11:34 +08002766 btrfs_put_bbio(bbio);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002767 bitmap_or(sparity->ebitmap, sparity->ebitmap, sparity->dbitmap,
2768 sparity->nsectors);
2769 spin_lock(&sctx->stat_lock);
2770 sctx->stat.malloc_errors++;
2771 spin_unlock(&sctx->stat_lock);
2772out:
2773 scrub_free_parity(sparity);
2774}
2775
2776static inline int scrub_calc_parity_bitmap_len(int nsectors)
2777{
Zhao Leibfca9a62014-12-08 19:55:57 +08002778 return DIV_ROUND_UP(nsectors, BITS_PER_LONG) * sizeof(long);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002779}
2780
2781static void scrub_parity_get(struct scrub_parity *sparity)
2782{
Elena Reshetova78a76452017-03-03 10:55:24 +02002783 refcount_inc(&sparity->refs);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002784}
2785
2786static void scrub_parity_put(struct scrub_parity *sparity)
2787{
Elena Reshetova78a76452017-03-03 10:55:24 +02002788 if (!refcount_dec_and_test(&sparity->refs))
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002789 return;
2790
2791 scrub_parity_check_and_repair(sparity);
2792}
2793
2794static noinline_for_stack int scrub_raid56_parity(struct scrub_ctx *sctx,
2795 struct map_lookup *map,
2796 struct btrfs_device *sdev,
2797 struct btrfs_path *path,
2798 u64 logic_start,
2799 u64 logic_end)
2800{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002801 struct btrfs_fs_info *fs_info = sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002802 struct btrfs_root *root = fs_info->extent_root;
2803 struct btrfs_root *csum_root = fs_info->csum_root;
2804 struct btrfs_extent_item *extent;
Omar Sandoval4a770892015-06-19 11:52:52 -07002805 struct btrfs_bio *bbio = NULL;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002806 u64 flags;
2807 int ret;
2808 int slot;
2809 struct extent_buffer *l;
2810 struct btrfs_key key;
2811 u64 generation;
2812 u64 extent_logical;
2813 u64 extent_physical;
2814 u64 extent_len;
Omar Sandoval4a770892015-06-19 11:52:52 -07002815 u64 mapped_length;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002816 struct btrfs_device *extent_dev;
2817 struct scrub_parity *sparity;
2818 int nsectors;
2819 int bitmap_len;
2820 int extent_mirror_num;
2821 int stop_loop = 0;
2822
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002823 nsectors = div_u64(map->stripe_len, fs_info->sectorsize);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002824 bitmap_len = scrub_calc_parity_bitmap_len(nsectors);
2825 sparity = kzalloc(sizeof(struct scrub_parity) + 2 * bitmap_len,
2826 GFP_NOFS);
2827 if (!sparity) {
2828 spin_lock(&sctx->stat_lock);
2829 sctx->stat.malloc_errors++;
2830 spin_unlock(&sctx->stat_lock);
2831 return -ENOMEM;
2832 }
2833
2834 sparity->stripe_len = map->stripe_len;
2835 sparity->nsectors = nsectors;
2836 sparity->sctx = sctx;
2837 sparity->scrub_dev = sdev;
2838 sparity->logic_start = logic_start;
2839 sparity->logic_end = logic_end;
Elena Reshetova78a76452017-03-03 10:55:24 +02002840 refcount_set(&sparity->refs, 1);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002841 INIT_LIST_HEAD(&sparity->spages);
2842 sparity->dbitmap = sparity->bitmap;
2843 sparity->ebitmap = (void *)sparity->bitmap + bitmap_len;
2844
2845 ret = 0;
2846 while (logic_start < logic_end) {
2847 if (btrfs_fs_incompat(fs_info, SKINNY_METADATA))
2848 key.type = BTRFS_METADATA_ITEM_KEY;
2849 else
2850 key.type = BTRFS_EXTENT_ITEM_KEY;
2851 key.objectid = logic_start;
2852 key.offset = (u64)-1;
2853
2854 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2855 if (ret < 0)
2856 goto out;
2857
2858 if (ret > 0) {
2859 ret = btrfs_previous_extent_item(root, path, 0);
2860 if (ret < 0)
2861 goto out;
2862 if (ret > 0) {
2863 btrfs_release_path(path);
2864 ret = btrfs_search_slot(NULL, root, &key,
2865 path, 0, 0);
2866 if (ret < 0)
2867 goto out;
2868 }
2869 }
2870
2871 stop_loop = 0;
2872 while (1) {
2873 u64 bytes;
2874
2875 l = path->nodes[0];
2876 slot = path->slots[0];
2877 if (slot >= btrfs_header_nritems(l)) {
2878 ret = btrfs_next_leaf(root, path);
2879 if (ret == 0)
2880 continue;
2881 if (ret < 0)
2882 goto out;
2883
2884 stop_loop = 1;
2885 break;
2886 }
2887 btrfs_item_key_to_cpu(l, &key, slot);
2888
Zhao Leid7cad232015-07-22 13:14:48 +08002889 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
2890 key.type != BTRFS_METADATA_ITEM_KEY)
2891 goto next;
2892
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002893 if (key.type == BTRFS_METADATA_ITEM_KEY)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002894 bytes = fs_info->nodesize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002895 else
2896 bytes = key.offset;
2897
2898 if (key.objectid + bytes <= logic_start)
2899 goto next;
2900
Zhao Leia0dd59d2015-07-21 15:42:26 +08002901 if (key.objectid >= logic_end) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002902 stop_loop = 1;
2903 break;
2904 }
2905
2906 while (key.objectid >= logic_start + map->stripe_len)
2907 logic_start += map->stripe_len;
2908
2909 extent = btrfs_item_ptr(l, slot,
2910 struct btrfs_extent_item);
2911 flags = btrfs_extent_flags(l, extent);
2912 generation = btrfs_extent_generation(l, extent);
2913
Zhao Leia323e812015-07-23 12:29:49 +08002914 if ((flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) &&
2915 (key.objectid < logic_start ||
2916 key.objectid + bytes >
2917 logic_start + map->stripe_len)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002918 btrfs_err(fs_info,
2919 "scrub: tree block %llu spanning stripes, ignored. logical=%llu",
Zhao Leia323e812015-07-23 12:29:49 +08002920 key.objectid, logic_start);
Zhao Lei9799d2c32015-08-25 21:31:40 +08002921 spin_lock(&sctx->stat_lock);
2922 sctx->stat.uncorrectable_errors++;
2923 spin_unlock(&sctx->stat_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002924 goto next;
2925 }
2926again:
2927 extent_logical = key.objectid;
2928 extent_len = bytes;
2929
2930 if (extent_logical < logic_start) {
2931 extent_len -= logic_start - extent_logical;
2932 extent_logical = logic_start;
2933 }
2934
2935 if (extent_logical + extent_len >
2936 logic_start + map->stripe_len)
2937 extent_len = logic_start + map->stripe_len -
2938 extent_logical;
2939
2940 scrub_parity_mark_sectors_data(sparity, extent_logical,
2941 extent_len);
2942
Omar Sandoval4a770892015-06-19 11:52:52 -07002943 mapped_length = extent_len;
Zhao Leif1fee652016-05-17 17:37:38 +08002944 bbio = NULL;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02002945 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ,
2946 extent_logical, &mapped_length, &bbio,
2947 0);
Omar Sandoval4a770892015-06-19 11:52:52 -07002948 if (!ret) {
2949 if (!bbio || mapped_length < extent_len)
2950 ret = -EIO;
2951 }
2952 if (ret) {
2953 btrfs_put_bbio(bbio);
2954 goto out;
2955 }
2956 extent_physical = bbio->stripes[0].physical;
2957 extent_mirror_num = bbio->mirror_num;
2958 extent_dev = bbio->stripes[0].dev;
2959 btrfs_put_bbio(bbio);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002960
2961 ret = btrfs_lookup_csums_range(csum_root,
2962 extent_logical,
2963 extent_logical + extent_len - 1,
2964 &sctx->csum_list, 1);
2965 if (ret)
2966 goto out;
2967
2968 ret = scrub_extent_for_parity(sparity, extent_logical,
2969 extent_len,
2970 extent_physical,
2971 extent_dev, flags,
2972 generation,
2973 extent_mirror_num);
Zhao Lei6fa96d72015-07-21 12:22:30 +08002974
2975 scrub_free_csums(sctx);
2976
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002977 if (ret)
2978 goto out;
2979
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002980 if (extent_logical + extent_len <
2981 key.objectid + bytes) {
2982 logic_start += map->stripe_len;
2983
2984 if (logic_start >= logic_end) {
2985 stop_loop = 1;
2986 break;
2987 }
2988
2989 if (logic_start < key.objectid + bytes) {
2990 cond_resched();
2991 goto again;
2992 }
2993 }
2994next:
2995 path->slots[0]++;
2996 }
2997
2998 btrfs_release_path(path);
2999
3000 if (stop_loop)
3001 break;
3002
3003 logic_start += map->stripe_len;
3004 }
3005out:
3006 if (ret < 0)
3007 scrub_parity_mark_sectors_error(sparity, logic_start,
Zhao Leia0dd59d2015-07-21 15:42:26 +08003008 logic_end - logic_start);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003009 scrub_parity_put(sparity);
3010 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003011 mutex_lock(&sctx->wr_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003012 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003013 mutex_unlock(&sctx->wr_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003014
3015 btrfs_release_path(path);
3016 return ret < 0 ? ret : 0;
3017}
3018
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003019static noinline_for_stack int scrub_stripe(struct scrub_ctx *sctx,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003020 struct map_lookup *map,
3021 struct btrfs_device *scrub_dev,
Omar Sandoval32934282018-08-14 11:09:52 -07003022 int num, u64 base, u64 length)
Arne Jansena2de7332011-03-08 14:14:00 +01003023{
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003024 struct btrfs_path *path, *ppath;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04003025 struct btrfs_fs_info *fs_info = sctx->fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +01003026 struct btrfs_root *root = fs_info->extent_root;
3027 struct btrfs_root *csum_root = fs_info->csum_root;
3028 struct btrfs_extent_item *extent;
Arne Jansene7786c32011-05-28 20:58:38 +00003029 struct blk_plug plug;
Arne Jansena2de7332011-03-08 14:14:00 +01003030 u64 flags;
3031 int ret;
3032 int slot;
Arne Jansena2de7332011-03-08 14:14:00 +01003033 u64 nstripes;
Arne Jansena2de7332011-03-08 14:14:00 +01003034 struct extent_buffer *l;
Arne Jansena2de7332011-03-08 14:14:00 +01003035 u64 physical;
3036 u64 logical;
Liu Bo625f1c8d2013-04-27 02:56:57 +00003037 u64 logic_end;
Wang Shilong3b080b22014-04-01 18:01:43 +08003038 u64 physical_end;
Arne Jansena2de7332011-03-08 14:14:00 +01003039 u64 generation;
Jan Schmidte12fa9c2011-06-17 15:55:21 +02003040 int mirror_num;
Arne Jansen7a262852011-06-10 12:39:23 +02003041 struct reada_control *reada1;
3042 struct reada_control *reada2;
David Sterbae6c11f92016-03-24 18:00:53 +01003043 struct btrfs_key key;
Arne Jansen7a262852011-06-10 12:39:23 +02003044 struct btrfs_key key_end;
Arne Jansena2de7332011-03-08 14:14:00 +01003045 u64 increment = map->stripe_len;
3046 u64 offset;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003047 u64 extent_logical;
3048 u64 extent_physical;
3049 u64 extent_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003050 u64 stripe_logical;
3051 u64 stripe_end;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003052 struct btrfs_device *extent_dev;
3053 int extent_mirror_num;
Wang Shilong3b080b22014-04-01 18:01:43 +08003054 int stop_loop = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05003055
Wang Shilong3b080b22014-04-01 18:01:43 +08003056 physical = map->stripes[num].physical;
Arne Jansena2de7332011-03-08 14:14:00 +01003057 offset = 0;
Liu Bo42c61ab2017-04-03 13:45:24 -07003058 nstripes = div64_u64(length, map->stripe_len);
Arne Jansena2de7332011-03-08 14:14:00 +01003059 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
3060 offset = map->stripe_len * num;
3061 increment = map->stripe_len * map->num_stripes;
Jan Schmidt193ea742011-06-13 19:56:54 +02003062 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003063 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
3064 int factor = map->num_stripes / map->sub_stripes;
3065 offset = map->stripe_len * (num / map->sub_stripes);
3066 increment = map->stripe_len * factor;
Jan Schmidt193ea742011-06-13 19:56:54 +02003067 mirror_num = num % map->sub_stripes + 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003068 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
3069 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003070 mirror_num = num % map->num_stripes + 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003071 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
3072 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003073 mirror_num = num % map->num_stripes + 1;
Zhao Leiffe2d202015-01-20 15:11:44 +08003074 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003075 get_raid56_logic_offset(physical, num, map, &offset, NULL);
Wang Shilong3b080b22014-04-01 18:01:43 +08003076 increment = map->stripe_len * nr_data_stripes(map);
3077 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003078 } else {
3079 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003080 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003081 }
3082
3083 path = btrfs_alloc_path();
3084 if (!path)
3085 return -ENOMEM;
3086
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003087 ppath = btrfs_alloc_path();
3088 if (!ppath) {
Tsutomu Itoh379d6852015-01-09 17:37:52 +09003089 btrfs_free_path(path);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003090 return -ENOMEM;
3091 }
3092
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003093 /*
3094 * work on commit root. The related disk blocks are static as
3095 * long as COW is applied. This means, it is save to rewrite
3096 * them to repair disk errors without any race conditions
3097 */
Arne Jansena2de7332011-03-08 14:14:00 +01003098 path->search_commit_root = 1;
3099 path->skip_locking = 1;
3100
Gui Hecheng063c54d2015-01-09 09:39:40 +08003101 ppath->search_commit_root = 1;
3102 ppath->skip_locking = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003103 /*
Arne Jansen7a262852011-06-10 12:39:23 +02003104 * trigger the readahead for extent tree csum tree and wait for
3105 * completion. During readahead, the scrub is officially paused
3106 * to not hold off transaction commits
Arne Jansena2de7332011-03-08 14:14:00 +01003107 */
3108 logical = base + offset;
Wang Shilong3b080b22014-04-01 18:01:43 +08003109 physical_end = physical + nstripes * map->stripe_len;
Zhao Leiffe2d202015-01-20 15:11:44 +08003110 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Wang Shilong3b080b22014-04-01 18:01:43 +08003111 get_raid56_logic_offset(physical_end, num,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003112 map, &logic_end, NULL);
Wang Shilong3b080b22014-04-01 18:01:43 +08003113 logic_end += base;
3114 } else {
3115 logic_end = logical + increment * nstripes;
3116 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003117 wait_event(sctx->list_wait,
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003118 atomic_read(&sctx->bios_in_flight) == 0);
Wang Shilongcb7ab022013-12-04 21:16:53 +08003119 scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003120
Arne Jansen7a262852011-06-10 12:39:23 +02003121 /* FIXME it might be better to start readahead at commit root */
David Sterbae6c11f92016-03-24 18:00:53 +01003122 key.objectid = logical;
3123 key.type = BTRFS_EXTENT_ITEM_KEY;
3124 key.offset = (u64)0;
Wang Shilong3b080b22014-04-01 18:01:43 +08003125 key_end.objectid = logic_end;
Josef Bacik3173a182013-03-07 14:22:04 -05003126 key_end.type = BTRFS_METADATA_ITEM_KEY;
3127 key_end.offset = (u64)-1;
David Sterbae6c11f92016-03-24 18:00:53 +01003128 reada1 = btrfs_reada_add(root, &key, &key_end);
Arne Jansena2de7332011-03-08 14:14:00 +01003129
David Sterbae6c11f92016-03-24 18:00:53 +01003130 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
3131 key.type = BTRFS_EXTENT_CSUM_KEY;
3132 key.offset = logical;
Arne Jansen7a262852011-06-10 12:39:23 +02003133 key_end.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
3134 key_end.type = BTRFS_EXTENT_CSUM_KEY;
Wang Shilong3b080b22014-04-01 18:01:43 +08003135 key_end.offset = logic_end;
David Sterbae6c11f92016-03-24 18:00:53 +01003136 reada2 = btrfs_reada_add(csum_root, &key, &key_end);
Arne Jansena2de7332011-03-08 14:14:00 +01003137
Arne Jansen7a262852011-06-10 12:39:23 +02003138 if (!IS_ERR(reada1))
3139 btrfs_reada_wait(reada1);
3140 if (!IS_ERR(reada2))
3141 btrfs_reada_wait(reada2);
Arne Jansena2de7332011-03-08 14:14:00 +01003142
Arne Jansena2de7332011-03-08 14:14:00 +01003143
3144 /*
3145 * collect all data csums for the stripe to avoid seeking during
3146 * the scrub. This might currently (crc32) end up to be about 1MB
3147 */
Arne Jansene7786c32011-05-28 20:58:38 +00003148 blk_start_plug(&plug);
Arne Jansena2de7332011-03-08 14:14:00 +01003149
Arne Jansena2de7332011-03-08 14:14:00 +01003150 /*
3151 * now find all extents for each stripe and scrub them
3152 */
Arne Jansena2de7332011-03-08 14:14:00 +01003153 ret = 0;
Wang Shilong3b080b22014-04-01 18:01:43 +08003154 while (physical < physical_end) {
Arne Jansena2de7332011-03-08 14:14:00 +01003155 /*
3156 * canceled?
3157 */
3158 if (atomic_read(&fs_info->scrub_cancel_req) ||
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003159 atomic_read(&sctx->cancel_req)) {
Arne Jansena2de7332011-03-08 14:14:00 +01003160 ret = -ECANCELED;
3161 goto out;
3162 }
3163 /*
3164 * check to see if we have to pause
3165 */
3166 if (atomic_read(&fs_info->scrub_pause_req)) {
3167 /* push queued extents */
David Sterba2073c4c2017-03-31 17:12:51 +02003168 sctx->flush_all_writes = true;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003169 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003170 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003171 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003172 mutex_unlock(&sctx->wr_lock);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003173 wait_event(sctx->list_wait,
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003174 atomic_read(&sctx->bios_in_flight) == 0);
David Sterba2073c4c2017-03-31 17:12:51 +02003175 sctx->flush_all_writes = false;
Wang Shilong3cb09292013-12-04 21:15:19 +08003176 scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003177 }
3178
Zhao Leif2f66a22015-07-21 12:22:29 +08003179 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
3180 ret = get_raid56_logic_offset(physical, num, map,
3181 &logical,
3182 &stripe_logical);
3183 logical += base;
3184 if (ret) {
Zhao Lei79553232015-08-18 17:54:30 +08003185 /* it is parity strip */
Zhao Leif2f66a22015-07-21 12:22:29 +08003186 stripe_logical += base;
Zhao Leia0dd59d2015-07-21 15:42:26 +08003187 stripe_end = stripe_logical + increment;
Zhao Leif2f66a22015-07-21 12:22:29 +08003188 ret = scrub_raid56_parity(sctx, map, scrub_dev,
3189 ppath, stripe_logical,
3190 stripe_end);
3191 if (ret)
3192 goto out;
3193 goto skip;
3194 }
3195 }
3196
Wang Shilong7c76edb2014-01-12 21:38:32 +08003197 if (btrfs_fs_incompat(fs_info, SKINNY_METADATA))
3198 key.type = BTRFS_METADATA_ITEM_KEY;
3199 else
3200 key.type = BTRFS_EXTENT_ITEM_KEY;
Arne Jansena2de7332011-03-08 14:14:00 +01003201 key.objectid = logical;
Liu Bo625f1c8d2013-04-27 02:56:57 +00003202 key.offset = (u64)-1;
Arne Jansena2de7332011-03-08 14:14:00 +01003203
3204 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3205 if (ret < 0)
3206 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05003207
Arne Jansen8c510322011-06-03 10:09:26 +02003208 if (ret > 0) {
Wang Shilongade2e0b2014-01-12 21:38:33 +08003209 ret = btrfs_previous_extent_item(root, path, 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003210 if (ret < 0)
3211 goto out;
Arne Jansen8c510322011-06-03 10:09:26 +02003212 if (ret > 0) {
3213 /* there's no smaller item, so stick with the
3214 * larger one */
3215 btrfs_release_path(path);
3216 ret = btrfs_search_slot(NULL, root, &key,
3217 path, 0, 0);
3218 if (ret < 0)
3219 goto out;
3220 }
Arne Jansena2de7332011-03-08 14:14:00 +01003221 }
3222
Liu Bo625f1c8d2013-04-27 02:56:57 +00003223 stop_loop = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01003224 while (1) {
Josef Bacik3173a182013-03-07 14:22:04 -05003225 u64 bytes;
3226
Arne Jansena2de7332011-03-08 14:14:00 +01003227 l = path->nodes[0];
3228 slot = path->slots[0];
3229 if (slot >= btrfs_header_nritems(l)) {
3230 ret = btrfs_next_leaf(root, path);
3231 if (ret == 0)
3232 continue;
3233 if (ret < 0)
3234 goto out;
3235
Liu Bo625f1c8d2013-04-27 02:56:57 +00003236 stop_loop = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003237 break;
3238 }
3239 btrfs_item_key_to_cpu(l, &key, slot);
3240
Zhao Leid7cad232015-07-22 13:14:48 +08003241 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
3242 key.type != BTRFS_METADATA_ITEM_KEY)
3243 goto next;
3244
Josef Bacik3173a182013-03-07 14:22:04 -05003245 if (key.type == BTRFS_METADATA_ITEM_KEY)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003246 bytes = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05003247 else
3248 bytes = key.offset;
3249
3250 if (key.objectid + bytes <= logical)
Arne Jansena2de7332011-03-08 14:14:00 +01003251 goto next;
3252
Liu Bo625f1c8d2013-04-27 02:56:57 +00003253 if (key.objectid >= logical + map->stripe_len) {
3254 /* out of this device extent */
3255 if (key.objectid >= logic_end)
3256 stop_loop = 1;
3257 break;
3258 }
Arne Jansena2de7332011-03-08 14:14:00 +01003259
3260 extent = btrfs_item_ptr(l, slot,
3261 struct btrfs_extent_item);
3262 flags = btrfs_extent_flags(l, extent);
3263 generation = btrfs_extent_generation(l, extent);
3264
Zhao Leia323e812015-07-23 12:29:49 +08003265 if ((flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) &&
3266 (key.objectid < logical ||
3267 key.objectid + bytes >
3268 logical + map->stripe_len)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003269 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003270 "scrub: tree block %llu spanning stripes, ignored. logical=%llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003271 key.objectid, logical);
Zhao Lei9799d2c32015-08-25 21:31:40 +08003272 spin_lock(&sctx->stat_lock);
3273 sctx->stat.uncorrectable_errors++;
3274 spin_unlock(&sctx->stat_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003275 goto next;
3276 }
3277
Liu Bo625f1c8d2013-04-27 02:56:57 +00003278again:
3279 extent_logical = key.objectid;
3280 extent_len = bytes;
3281
Arne Jansena2de7332011-03-08 14:14:00 +01003282 /*
3283 * trim extent to this stripe
3284 */
Liu Bo625f1c8d2013-04-27 02:56:57 +00003285 if (extent_logical < logical) {
3286 extent_len -= logical - extent_logical;
3287 extent_logical = logical;
Arne Jansena2de7332011-03-08 14:14:00 +01003288 }
Liu Bo625f1c8d2013-04-27 02:56:57 +00003289 if (extent_logical + extent_len >
Arne Jansena2de7332011-03-08 14:14:00 +01003290 logical + map->stripe_len) {
Liu Bo625f1c8d2013-04-27 02:56:57 +00003291 extent_len = logical + map->stripe_len -
3292 extent_logical;
Arne Jansena2de7332011-03-08 14:14:00 +01003293 }
3294
Liu Bo625f1c8d2013-04-27 02:56:57 +00003295 extent_physical = extent_logical - logical + physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003296 extent_dev = scrub_dev;
3297 extent_mirror_num = mirror_num;
Omar Sandoval32934282018-08-14 11:09:52 -07003298 if (sctx->is_dev_replace)
Stefan Behrensff023aa2012-11-06 11:43:11 +01003299 scrub_remap_extent(fs_info, extent_logical,
3300 extent_len, &extent_physical,
3301 &extent_dev,
3302 &extent_mirror_num);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003303
Zhao Leife8cf652015-07-22 13:14:47 +08003304 ret = btrfs_lookup_csums_range(csum_root,
3305 extent_logical,
3306 extent_logical +
3307 extent_len - 1,
3308 &sctx->csum_list, 1);
Arne Jansena2de7332011-03-08 14:14:00 +01003309 if (ret)
3310 goto out;
3311
Liu Bo6ca17652018-03-07 12:08:09 -07003312 ret = scrub_extent(sctx, map, extent_logical, extent_len,
Liu Bo625f1c8d2013-04-27 02:56:57 +00003313 extent_physical, extent_dev, flags,
3314 generation, extent_mirror_num,
Stefan Behrens115930c2013-07-04 16:14:23 +02003315 extent_logical - logical + physical);
Zhao Lei6fa96d72015-07-21 12:22:30 +08003316
3317 scrub_free_csums(sctx);
3318
Liu Bo625f1c8d2013-04-27 02:56:57 +00003319 if (ret)
3320 goto out;
3321
3322 if (extent_logical + extent_len <
3323 key.objectid + bytes) {
Zhao Leiffe2d202015-01-20 15:11:44 +08003324 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Wang Shilong3b080b22014-04-01 18:01:43 +08003325 /*
3326 * loop until we find next data stripe
3327 * or we have finished all stripes.
3328 */
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003329loop:
3330 physical += map->stripe_len;
3331 ret = get_raid56_logic_offset(physical,
3332 num, map, &logical,
3333 &stripe_logical);
3334 logical += base;
3335
3336 if (ret && physical < physical_end) {
3337 stripe_logical += base;
3338 stripe_end = stripe_logical +
Zhao Leia0dd59d2015-07-21 15:42:26 +08003339 increment;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003340 ret = scrub_raid56_parity(sctx,
3341 map, scrub_dev, ppath,
3342 stripe_logical,
3343 stripe_end);
3344 if (ret)
3345 goto out;
3346 goto loop;
3347 }
Wang Shilong3b080b22014-04-01 18:01:43 +08003348 } else {
3349 physical += map->stripe_len;
3350 logical += increment;
3351 }
Liu Bo625f1c8d2013-04-27 02:56:57 +00003352 if (logical < key.objectid + bytes) {
3353 cond_resched();
3354 goto again;
3355 }
3356
Wang Shilong3b080b22014-04-01 18:01:43 +08003357 if (physical >= physical_end) {
Liu Bo625f1c8d2013-04-27 02:56:57 +00003358 stop_loop = 1;
3359 break;
3360 }
3361 }
Arne Jansena2de7332011-03-08 14:14:00 +01003362next:
3363 path->slots[0]++;
3364 }
Chris Mason71267332011-05-23 06:30:52 -04003365 btrfs_release_path(path);
Wang Shilong3b080b22014-04-01 18:01:43 +08003366skip:
Arne Jansena2de7332011-03-08 14:14:00 +01003367 logical += increment;
3368 physical += map->stripe_len;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003369 spin_lock(&sctx->stat_lock);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003370 if (stop_loop)
3371 sctx->stat.last_physical = map->stripes[num].physical +
3372 length;
3373 else
3374 sctx->stat.last_physical = physical;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003375 spin_unlock(&sctx->stat_lock);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003376 if (stop_loop)
3377 break;
Arne Jansena2de7332011-03-08 14:14:00 +01003378 }
Stefan Behrensff023aa2012-11-06 11:43:11 +01003379out:
Arne Jansena2de7332011-03-08 14:14:00 +01003380 /* push queued extents */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003381 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003382 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003383 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003384 mutex_unlock(&sctx->wr_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003385
Arne Jansene7786c32011-05-28 20:58:38 +00003386 blk_finish_plug(&plug);
Arne Jansena2de7332011-03-08 14:14:00 +01003387 btrfs_free_path(path);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003388 btrfs_free_path(ppath);
Arne Jansena2de7332011-03-08 14:14:00 +01003389 return ret < 0 ? ret : 0;
3390}
3391
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003392static noinline_for_stack int scrub_chunk(struct scrub_ctx *sctx,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003393 struct btrfs_device *scrub_dev,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003394 u64 chunk_offset, u64 length,
Filipe Manana020d5b72015-11-19 10:57:20 +00003395 u64 dev_offset,
Omar Sandoval32934282018-08-14 11:09:52 -07003396 struct btrfs_block_group_cache *cache)
Arne Jansena2de7332011-03-08 14:14:00 +01003397{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04003398 struct btrfs_fs_info *fs_info = sctx->fs_info;
3399 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Arne Jansena2de7332011-03-08 14:14:00 +01003400 struct map_lookup *map;
3401 struct extent_map *em;
3402 int i;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003403 int ret = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01003404
3405 read_lock(&map_tree->map_tree.lock);
3406 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
3407 read_unlock(&map_tree->map_tree.lock);
3408
Filipe Manana020d5b72015-11-19 10:57:20 +00003409 if (!em) {
3410 /*
3411 * Might have been an unused block group deleted by the cleaner
3412 * kthread or relocation.
3413 */
3414 spin_lock(&cache->lock);
3415 if (!cache->removed)
3416 ret = -EINVAL;
3417 spin_unlock(&cache->lock);
3418
3419 return ret;
3420 }
Arne Jansena2de7332011-03-08 14:14:00 +01003421
Jeff Mahoney95617d62015-06-03 10:55:48 -04003422 map = em->map_lookup;
Arne Jansena2de7332011-03-08 14:14:00 +01003423 if (em->start != chunk_offset)
3424 goto out;
3425
3426 if (em->len < length)
3427 goto out;
3428
3429 for (i = 0; i < map->num_stripes; ++i) {
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003430 if (map->stripes[i].dev->bdev == scrub_dev->bdev &&
Arne Jansen859acaf2012-02-09 15:09:02 +01003431 map->stripes[i].physical == dev_offset) {
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003432 ret = scrub_stripe(sctx, map, scrub_dev, i,
Omar Sandoval32934282018-08-14 11:09:52 -07003433 chunk_offset, length);
Arne Jansena2de7332011-03-08 14:14:00 +01003434 if (ret)
3435 goto out;
3436 }
3437 }
3438out:
3439 free_extent_map(em);
3440
3441 return ret;
3442}
3443
3444static noinline_for_stack
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003445int scrub_enumerate_chunks(struct scrub_ctx *sctx,
Omar Sandoval32934282018-08-14 11:09:52 -07003446 struct btrfs_device *scrub_dev, u64 start, u64 end)
Arne Jansena2de7332011-03-08 14:14:00 +01003447{
3448 struct btrfs_dev_extent *dev_extent = NULL;
3449 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003450 struct btrfs_fs_info *fs_info = sctx->fs_info;
3451 struct btrfs_root *root = fs_info->dev_root;
Arne Jansena2de7332011-03-08 14:14:00 +01003452 u64 length;
Arne Jansena2de7332011-03-08 14:14:00 +01003453 u64 chunk_offset;
Zhaolei55e3a602015-08-05 16:43:30 +08003454 int ret = 0;
Zhaolei76a8efa2015-11-17 18:46:17 +08003455 int ro_set;
Arne Jansena2de7332011-03-08 14:14:00 +01003456 int slot;
3457 struct extent_buffer *l;
3458 struct btrfs_key key;
3459 struct btrfs_key found_key;
3460 struct btrfs_block_group_cache *cache;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003461 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
Arne Jansena2de7332011-03-08 14:14:00 +01003462
3463 path = btrfs_alloc_path();
3464 if (!path)
3465 return -ENOMEM;
3466
David Sterbae4058b52015-11-27 16:31:35 +01003467 path->reada = READA_FORWARD;
Arne Jansena2de7332011-03-08 14:14:00 +01003468 path->search_commit_root = 1;
3469 path->skip_locking = 1;
3470
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003471 key.objectid = scrub_dev->devid;
Arne Jansena2de7332011-03-08 14:14:00 +01003472 key.offset = 0ull;
3473 key.type = BTRFS_DEV_EXTENT_KEY;
3474
Arne Jansena2de7332011-03-08 14:14:00 +01003475 while (1) {
3476 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3477 if (ret < 0)
Arne Jansen8c510322011-06-03 10:09:26 +02003478 break;
3479 if (ret > 0) {
3480 if (path->slots[0] >=
3481 btrfs_header_nritems(path->nodes[0])) {
3482 ret = btrfs_next_leaf(root, path);
Zhaolei55e3a602015-08-05 16:43:30 +08003483 if (ret < 0)
Arne Jansen8c510322011-06-03 10:09:26 +02003484 break;
Zhaolei55e3a602015-08-05 16:43:30 +08003485 if (ret > 0) {
3486 ret = 0;
3487 break;
3488 }
3489 } else {
3490 ret = 0;
Arne Jansen8c510322011-06-03 10:09:26 +02003491 }
3492 }
Arne Jansena2de7332011-03-08 14:14:00 +01003493
3494 l = path->nodes[0];
3495 slot = path->slots[0];
3496
3497 btrfs_item_key_to_cpu(l, &found_key, slot);
3498
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003499 if (found_key.objectid != scrub_dev->devid)
Arne Jansena2de7332011-03-08 14:14:00 +01003500 break;
3501
David Sterba962a2982014-06-04 18:41:45 +02003502 if (found_key.type != BTRFS_DEV_EXTENT_KEY)
Arne Jansena2de7332011-03-08 14:14:00 +01003503 break;
3504
3505 if (found_key.offset >= end)
3506 break;
3507
3508 if (found_key.offset < key.offset)
3509 break;
3510
3511 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
3512 length = btrfs_dev_extent_length(l, dev_extent);
3513
Qu Wenruoced96ed2014-06-19 10:42:51 +08003514 if (found_key.offset + length <= start)
3515 goto skip;
Arne Jansena2de7332011-03-08 14:14:00 +01003516
Arne Jansena2de7332011-03-08 14:14:00 +01003517 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
3518
3519 /*
3520 * get a reference on the corresponding block group to prevent
3521 * the chunk from going away while we scrub it
3522 */
3523 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
Qu Wenruoced96ed2014-06-19 10:42:51 +08003524
3525 /* some chunks are removed but not committed to disk yet,
3526 * continue scrubbing */
3527 if (!cache)
3528 goto skip;
3529
Zhaolei55e3a602015-08-05 16:43:30 +08003530 /*
3531 * we need call btrfs_inc_block_group_ro() with scrubs_paused,
3532 * to avoid deadlock caused by:
3533 * btrfs_inc_block_group_ro()
3534 * -> btrfs_wait_for_commit()
3535 * -> btrfs_commit_transaction()
3536 * -> btrfs_scrub_pause()
3537 */
3538 scrub_pause_on(fs_info);
Nikolay Borisovc83488a2018-06-20 15:49:14 +03003539 ret = btrfs_inc_block_group_ro(cache);
Omar Sandoval32934282018-08-14 11:09:52 -07003540 if (!ret && sctx->is_dev_replace) {
Filipe Mananaf0e9b7d2016-05-14 09:12:53 +01003541 /*
3542 * If we are doing a device replace wait for any tasks
3543 * that started dellaloc right before we set the block
3544 * group to RO mode, as they might have just allocated
3545 * an extent from it or decided they could do a nocow
3546 * write. And if any such tasks did that, wait for their
3547 * ordered extents to complete and then commit the
3548 * current transaction, so that we can later see the new
3549 * extent items in the extent tree - the ordered extents
3550 * create delayed data references (for cow writes) when
3551 * they complete, which will be run and insert the
3552 * corresponding extent items into the extent tree when
3553 * we commit the transaction they used when running
3554 * inode.c:btrfs_finish_ordered_io(). We later use
3555 * the commit root of the extent tree to find extents
3556 * to copy from the srcdev into the tgtdev, and we don't
3557 * want to miss any new extents.
3558 */
3559 btrfs_wait_block_group_reservations(cache);
3560 btrfs_wait_nocow_writers(cache);
Chris Mason6374e57a2017-06-23 09:48:21 -07003561 ret = btrfs_wait_ordered_roots(fs_info, U64_MAX,
Filipe Mananaf0e9b7d2016-05-14 09:12:53 +01003562 cache->key.objectid,
3563 cache->key.offset);
3564 if (ret > 0) {
3565 struct btrfs_trans_handle *trans;
3566
3567 trans = btrfs_join_transaction(root);
3568 if (IS_ERR(trans))
3569 ret = PTR_ERR(trans);
3570 else
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003571 ret = btrfs_commit_transaction(trans);
Filipe Mananaf0e9b7d2016-05-14 09:12:53 +01003572 if (ret) {
3573 scrub_pause_off(fs_info);
3574 btrfs_put_block_group(cache);
3575 break;
3576 }
3577 }
3578 }
Zhaolei55e3a602015-08-05 16:43:30 +08003579 scrub_pause_off(fs_info);
Zhaolei76a8efa2015-11-17 18:46:17 +08003580
3581 if (ret == 0) {
3582 ro_set = 1;
3583 } else if (ret == -ENOSPC) {
3584 /*
3585 * btrfs_inc_block_group_ro return -ENOSPC when it
3586 * failed in creating new chunk for metadata.
3587 * It is not a problem for scrub/replace, because
3588 * metadata are always cowed, and our scrub paused
3589 * commit_transactions.
3590 */
3591 ro_set = 0;
3592 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003593 btrfs_warn(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02003594 "failed setting block group ro: %d", ret);
Zhaolei55e3a602015-08-05 16:43:30 +08003595 btrfs_put_block_group(cache);
3596 break;
3597 }
3598
David Sterba7e79cb82018-03-24 02:11:38 +01003599 btrfs_dev_replace_write_lock(&fs_info->dev_replace);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003600 dev_replace->cursor_right = found_key.offset + length;
3601 dev_replace->cursor_left = found_key.offset;
3602 dev_replace->item_needs_writeback = 1;
David Sterba7e79cb82018-03-24 02:11:38 +01003603 btrfs_dev_replace_write_unlock(&fs_info->dev_replace);
Zhao Lei8c204c92015-08-19 15:02:40 +08003604 ret = scrub_chunk(sctx, scrub_dev, chunk_offset, length,
Omar Sandoval32934282018-08-14 11:09:52 -07003605 found_key.offset, cache);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003606
3607 /*
3608 * flush, submit all pending read and write bios, afterwards
3609 * wait for them.
3610 * Note that in the dev replace case, a read request causes
3611 * write requests that are submitted in the read completion
3612 * worker. Therefore in the current situation, it is required
3613 * that all write requests are flushed, so that all read and
3614 * write requests are really completed when bios_in_flight
3615 * changes to 0.
3616 */
David Sterba2073c4c2017-03-31 17:12:51 +02003617 sctx->flush_all_writes = true;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003618 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003619 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003620 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003621 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003622
3623 wait_event(sctx->list_wait,
3624 atomic_read(&sctx->bios_in_flight) == 0);
Zhaoleib708ce92015-08-05 16:43:29 +08003625
3626 scrub_pause_on(fs_info);
Wang Shilong12cf9372014-02-19 19:24:17 +08003627
3628 /*
3629 * must be called before we decrease @scrub_paused.
3630 * make sure we don't block transaction commit while
3631 * we are waiting pending workers finished.
3632 */
Stefan Behrensff023aa2012-11-06 11:43:11 +01003633 wait_event(sctx->list_wait,
3634 atomic_read(&sctx->workers_pending) == 0);
David Sterba2073c4c2017-03-31 17:12:51 +02003635 sctx->flush_all_writes = false;
Wang Shilong12cf9372014-02-19 19:24:17 +08003636
Zhaoleib708ce92015-08-05 16:43:29 +08003637 scrub_pause_off(fs_info);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003638
David Sterba7e79cb82018-03-24 02:11:38 +01003639 btrfs_dev_replace_write_lock(&fs_info->dev_replace);
Filipe Manana1a1a8b72016-05-14 19:44:40 +01003640 dev_replace->cursor_left = dev_replace->cursor_right;
3641 dev_replace->item_needs_writeback = 1;
David Sterba7e79cb82018-03-24 02:11:38 +01003642 btrfs_dev_replace_write_unlock(&fs_info->dev_replace);
Filipe Manana1a1a8b72016-05-14 19:44:40 +01003643
Zhaolei76a8efa2015-11-17 18:46:17 +08003644 if (ro_set)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003645 btrfs_dec_block_group_ro(cache);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003646
Filipe Manana758f2df2015-11-19 11:45:48 +00003647 /*
3648 * We might have prevented the cleaner kthread from deleting
3649 * this block group if it was already unused because we raced
3650 * and set it to RO mode first. So add it back to the unused
3651 * list, otherwise it might not ever be deleted unless a manual
3652 * balance is triggered or it becomes used and unused again.
3653 */
3654 spin_lock(&cache->lock);
3655 if (!cache->removed && !cache->ro && cache->reserved == 0 &&
3656 btrfs_block_group_used(&cache->item) == 0) {
3657 spin_unlock(&cache->lock);
Qu Wenruo031f24d2018-05-22 16:43:47 +08003658 btrfs_mark_bg_unused(cache);
Filipe Manana758f2df2015-11-19 11:45:48 +00003659 } else {
3660 spin_unlock(&cache->lock);
3661 }
3662
Arne Jansena2de7332011-03-08 14:14:00 +01003663 btrfs_put_block_group(cache);
3664 if (ret)
3665 break;
Omar Sandoval32934282018-08-14 11:09:52 -07003666 if (sctx->is_dev_replace &&
Stefan Behrensaf1be4f2012-11-27 17:39:51 +00003667 atomic64_read(&dev_replace->num_write_errors) > 0) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01003668 ret = -EIO;
3669 break;
3670 }
3671 if (sctx->stat.malloc_errors > 0) {
3672 ret = -ENOMEM;
3673 break;
3674 }
Qu Wenruoced96ed2014-06-19 10:42:51 +08003675skip:
Arne Jansena2de7332011-03-08 14:14:00 +01003676 key.offset = found_key.offset + length;
Chris Mason71267332011-05-23 06:30:52 -04003677 btrfs_release_path(path);
Arne Jansena2de7332011-03-08 14:14:00 +01003678 }
3679
Arne Jansena2de7332011-03-08 14:14:00 +01003680 btrfs_free_path(path);
Arne Jansen8c510322011-06-03 10:09:26 +02003681
Zhaolei55e3a602015-08-05 16:43:30 +08003682 return ret;
Arne Jansena2de7332011-03-08 14:14:00 +01003683}
3684
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003685static noinline_for_stack int scrub_supers(struct scrub_ctx *sctx,
3686 struct btrfs_device *scrub_dev)
Arne Jansena2de7332011-03-08 14:14:00 +01003687{
3688 int i;
3689 u64 bytenr;
3690 u64 gen;
3691 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003692 struct btrfs_fs_info *fs_info = sctx->fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +01003693
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003694 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003695 return -EIO;
3696
Miao Xie5f546062014-07-24 11:37:09 +08003697 /* Seed devices of a new filesystem has their own generation. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003698 if (scrub_dev->fs_devices != fs_info->fs_devices)
Miao Xie5f546062014-07-24 11:37:09 +08003699 gen = scrub_dev->generation;
3700 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003701 gen = fs_info->last_trans_committed;
Arne Jansena2de7332011-03-08 14:14:00 +01003702
3703 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
3704 bytenr = btrfs_sb_offset(i);
Miao Xie935e5cc2014-09-03 21:35:33 +08003705 if (bytenr + BTRFS_SUPER_INFO_SIZE >
3706 scrub_dev->commit_total_bytes)
Arne Jansena2de7332011-03-08 14:14:00 +01003707 break;
3708
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003709 ret = scrub_pages(sctx, bytenr, BTRFS_SUPER_INFO_SIZE, bytenr,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003710 scrub_dev, BTRFS_EXTENT_FLAG_SUPER, gen, i,
Stefan Behrensff023aa2012-11-06 11:43:11 +01003711 NULL, 1, bytenr);
Arne Jansena2de7332011-03-08 14:14:00 +01003712 if (ret)
3713 return ret;
3714 }
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003715 wait_event(sctx->list_wait, atomic_read(&sctx->bios_in_flight) == 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003716
3717 return 0;
3718}
3719
3720/*
3721 * get a reference count on fs_info->scrub_workers. start worker if necessary
3722 */
Stefan Behrensff023aa2012-11-06 11:43:11 +01003723static noinline_for_stack int scrub_workers_get(struct btrfs_fs_info *fs_info,
3724 int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01003725{
David Sterba6f011052015-02-16 18:34:01 +01003726 unsigned int flags = WQ_FREEZABLE | WQ_UNBOUND;
Qu Wenruo0339ef22014-02-28 10:46:17 +08003727 int max_active = fs_info->thread_pool_size;
Arne Jansena2de7332011-03-08 14:14:00 +01003728
Arne Jansen632dd772011-06-10 12:07:07 +02003729 if (fs_info->scrub_workers_refcnt == 0) {
David Sterbaaf1cbe02017-03-31 18:42:57 +02003730 fs_info->scrub_workers = btrfs_alloc_workqueue(fs_info, "scrub",
3731 flags, is_dev_replace ? 1 : max_active, 4);
Zhao Leie82afc52015-06-12 20:36:58 +08003732 if (!fs_info->scrub_workers)
3733 goto fail_scrub_workers;
3734
Qu Wenruo0339ef22014-02-28 10:46:17 +08003735 fs_info->scrub_wr_completion_workers =
Jeff Mahoneycb001092016-06-09 16:22:11 -04003736 btrfs_alloc_workqueue(fs_info, "scrubwrc", flags,
Qu Wenruo0339ef22014-02-28 10:46:17 +08003737 max_active, 2);
Zhao Leie82afc52015-06-12 20:36:58 +08003738 if (!fs_info->scrub_wr_completion_workers)
3739 goto fail_scrub_wr_completion_workers;
3740
Zhao Lei20b2e302015-06-04 20:09:15 +08003741 fs_info->scrub_parity_workers =
Jeff Mahoneycb001092016-06-09 16:22:11 -04003742 btrfs_alloc_workqueue(fs_info, "scrubparity", flags,
Zhao Lei20b2e302015-06-04 20:09:15 +08003743 max_active, 2);
Zhao Leie82afc52015-06-12 20:36:58 +08003744 if (!fs_info->scrub_parity_workers)
3745 goto fail_scrub_parity_workers;
Arne Jansen632dd772011-06-10 12:07:07 +02003746 }
Arne Jansena2de7332011-03-08 14:14:00 +01003747 ++fs_info->scrub_workers_refcnt;
Zhao Leie82afc52015-06-12 20:36:58 +08003748 return 0;
3749
3750fail_scrub_parity_workers:
Zhao Leie82afc52015-06-12 20:36:58 +08003751 btrfs_destroy_workqueue(fs_info->scrub_wr_completion_workers);
3752fail_scrub_wr_completion_workers:
3753 btrfs_destroy_workqueue(fs_info->scrub_workers);
3754fail_scrub_workers:
3755 return -ENOMEM;
Arne Jansena2de7332011-03-08 14:14:00 +01003756}
3757
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003758static noinline_for_stack void scrub_workers_put(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003759{
Stefan Behrensff023aa2012-11-06 11:43:11 +01003760 if (--fs_info->scrub_workers_refcnt == 0) {
Qu Wenruo0339ef22014-02-28 10:46:17 +08003761 btrfs_destroy_workqueue(fs_info->scrub_workers);
3762 btrfs_destroy_workqueue(fs_info->scrub_wr_completion_workers);
Zhao Lei20b2e302015-06-04 20:09:15 +08003763 btrfs_destroy_workqueue(fs_info->scrub_parity_workers);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003764 }
Arne Jansena2de7332011-03-08 14:14:00 +01003765 WARN_ON(fs_info->scrub_workers_refcnt < 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003766}
3767
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003768int btrfs_scrub_dev(struct btrfs_fs_info *fs_info, u64 devid, u64 start,
3769 u64 end, struct btrfs_scrub_progress *progress,
Stefan Behrens63a212a2012-11-05 18:29:28 +01003770 int readonly, int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01003771{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003772 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003773 int ret;
3774 struct btrfs_device *dev;
3775
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003776 if (btrfs_fs_closing(fs_info))
Arne Jansena2de7332011-03-08 14:14:00 +01003777 return -EINVAL;
3778
Jeff Mahoneyda170662016-06-15 09:22:56 -04003779 if (fs_info->nodesize > BTRFS_STRIPE_LEN) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003780 /*
3781 * in this case scrub is unable to calculate the checksum
3782 * the way scrub is implemented. Do not handle this
3783 * situation at all because it won't ever happen.
3784 */
Frank Holtonefe120a2013-12-20 11:37:06 -05003785 btrfs_err(fs_info,
3786 "scrub: size assumption nodesize <= BTRFS_STRIPE_LEN (%d <= %d) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003787 fs_info->nodesize,
3788 BTRFS_STRIPE_LEN);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003789 return -EINVAL;
3790 }
3791
Jeff Mahoneyda170662016-06-15 09:22:56 -04003792 if (fs_info->sectorsize != PAGE_SIZE) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003793 /* not supported for data w/o checksums */
Chandan Rajendra751bebbe2016-07-04 10:04:39 +05303794 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003795 "scrub: size assumption sectorsize != PAGE_SIZE (%d != %lu) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003796 fs_info->sectorsize, PAGE_SIZE);
Arne Jansena2de7332011-03-08 14:14:00 +01003797 return -EINVAL;
3798 }
3799
Jeff Mahoneyda170662016-06-15 09:22:56 -04003800 if (fs_info->nodesize >
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003801 PAGE_SIZE * SCRUB_MAX_PAGES_PER_BLOCK ||
Jeff Mahoneyda170662016-06-15 09:22:56 -04003802 fs_info->sectorsize > PAGE_SIZE * SCRUB_MAX_PAGES_PER_BLOCK) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003803 /*
3804 * would exhaust the array bounds of pagev member in
3805 * struct scrub_block
3806 */
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003807 btrfs_err(fs_info,
3808 "scrub: size assumption nodesize and sectorsize <= SCRUB_MAX_PAGES_PER_BLOCK (%d <= %d && %d <= %d) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003809 fs_info->nodesize,
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003810 SCRUB_MAX_PAGES_PER_BLOCK,
Jeff Mahoneyda170662016-06-15 09:22:56 -04003811 fs_info->sectorsize,
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003812 SCRUB_MAX_PAGES_PER_BLOCK);
3813 return -EINVAL;
3814 }
3815
Arne Jansena2de7332011-03-08 14:14:00 +01003816
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003817 mutex_lock(&fs_info->fs_devices->device_list_mutex);
3818 dev = btrfs_find_device(fs_info, devid, NULL, NULL);
Anand Jaine6e674b2017-12-04 12:54:54 +08003819 if (!dev || (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) &&
3820 !is_dev_replace)) {
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003821 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Arne Jansena2de7332011-03-08 14:14:00 +01003822 return -ENODEV;
3823 }
Arne Jansena2de7332011-03-08 14:14:00 +01003824
Anand Jainebbede42017-12-04 12:54:52 +08003825 if (!is_dev_replace && !readonly &&
3826 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Miao Xie5d68da32014-07-24 11:37:07 +08003827 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Misono Tomohiro672d5992018-08-02 16:19:07 +09003828 btrfs_err_in_rcu(fs_info, "scrub: device %s is not writable",
3829 rcu_str_deref(dev->name));
Miao Xie5d68da32014-07-24 11:37:07 +08003830 return -EROFS;
3831 }
3832
Wang Shilong3b7a0162013-10-12 02:11:12 +08003833 mutex_lock(&fs_info->scrub_lock);
Anand Jaine12c9622017-12-04 12:54:53 +08003834 if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &dev->dev_state) ||
Anand Jain401e29c2017-12-04 12:54:55 +08003835 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &dev->dev_state)) {
Arne Jansena2de7332011-03-08 14:14:00 +01003836 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003837 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003838 return -EIO;
Arne Jansena2de7332011-03-08 14:14:00 +01003839 }
3840
David Sterba7e79cb82018-03-24 02:11:38 +01003841 btrfs_dev_replace_read_lock(&fs_info->dev_replace);
Anand Jaincadbc0a2018-01-03 16:08:30 +08003842 if (dev->scrub_ctx ||
Stefan Behrens8dabb742012-11-06 13:15:27 +01003843 (!is_dev_replace &&
3844 btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))) {
David Sterba7e79cb82018-03-24 02:11:38 +01003845 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
Arne Jansena2de7332011-03-08 14:14:00 +01003846 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003847 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Arne Jansena2de7332011-03-08 14:14:00 +01003848 return -EINPROGRESS;
3849 }
David Sterba7e79cb82018-03-24 02:11:38 +01003850 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
Wang Shilong3b7a0162013-10-12 02:11:12 +08003851
3852 ret = scrub_workers_get(fs_info, is_dev_replace);
3853 if (ret) {
3854 mutex_unlock(&fs_info->scrub_lock);
3855 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
3856 return ret;
3857 }
3858
Stefan Behrens63a212a2012-11-05 18:29:28 +01003859 sctx = scrub_setup_ctx(dev, is_dev_replace);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003860 if (IS_ERR(sctx)) {
Arne Jansena2de7332011-03-08 14:14:00 +01003861 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003862 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
3863 scrub_workers_put(fs_info);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003864 return PTR_ERR(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01003865 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003866 sctx->readonly = readonly;
Anand Jaincadbc0a2018-01-03 16:08:30 +08003867 dev->scrub_ctx = sctx;
Wang Shilong3cb09292013-12-04 21:15:19 +08003868 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Arne Jansena2de7332011-03-08 14:14:00 +01003869
Wang Shilong3cb09292013-12-04 21:15:19 +08003870 /*
3871 * checking @scrub_pause_req here, we can avoid
3872 * race between committing transaction and scrubbing.
3873 */
Wang Shilongcb7ab022013-12-04 21:16:53 +08003874 __scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003875 atomic_inc(&fs_info->scrubs_running);
3876 mutex_unlock(&fs_info->scrub_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003877
Stefan Behrensff023aa2012-11-06 11:43:11 +01003878 if (!is_dev_replace) {
Wang Shilong9b011ad2013-10-25 19:12:02 +08003879 /*
3880 * by holding device list mutex, we can
3881 * kick off writing super in log tree sync.
3882 */
Wang Shilong3cb09292013-12-04 21:15:19 +08003883 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003884 ret = scrub_supers(sctx, dev);
Wang Shilong3cb09292013-12-04 21:15:19 +08003885 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003886 }
Arne Jansena2de7332011-03-08 14:14:00 +01003887
3888 if (!ret)
Omar Sandoval32934282018-08-14 11:09:52 -07003889 ret = scrub_enumerate_chunks(sctx, dev, start, end);
Arne Jansena2de7332011-03-08 14:14:00 +01003890
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003891 wait_event(sctx->list_wait, atomic_read(&sctx->bios_in_flight) == 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003892 atomic_dec(&fs_info->scrubs_running);
3893 wake_up(&fs_info->scrub_pause_wait);
3894
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003895 wait_event(sctx->list_wait, atomic_read(&sctx->workers_pending) == 0);
Jan Schmidt0ef8e452011-06-13 20:04:15 +02003896
Arne Jansena2de7332011-03-08 14:14:00 +01003897 if (progress)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003898 memcpy(progress, &sctx->stat, sizeof(*progress));
Arne Jansena2de7332011-03-08 14:14:00 +01003899
3900 mutex_lock(&fs_info->scrub_lock);
Anand Jaincadbc0a2018-01-03 16:08:30 +08003901 dev->scrub_ctx = NULL;
Wang Shilong3b7a0162013-10-12 02:11:12 +08003902 scrub_workers_put(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003903 mutex_unlock(&fs_info->scrub_lock);
3904
Filipe Mananaf55985f2015-02-09 21:14:24 +00003905 scrub_put_ctx(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01003906
3907 return ret;
3908}
3909
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003910void btrfs_scrub_pause(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003911{
Arne Jansena2de7332011-03-08 14:14:00 +01003912 mutex_lock(&fs_info->scrub_lock);
3913 atomic_inc(&fs_info->scrub_pause_req);
3914 while (atomic_read(&fs_info->scrubs_paused) !=
3915 atomic_read(&fs_info->scrubs_running)) {
3916 mutex_unlock(&fs_info->scrub_lock);
3917 wait_event(fs_info->scrub_pause_wait,
3918 atomic_read(&fs_info->scrubs_paused) ==
3919 atomic_read(&fs_info->scrubs_running));
3920 mutex_lock(&fs_info->scrub_lock);
3921 }
3922 mutex_unlock(&fs_info->scrub_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003923}
3924
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003925void btrfs_scrub_continue(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003926{
Arne Jansena2de7332011-03-08 14:14:00 +01003927 atomic_dec(&fs_info->scrub_pause_req);
3928 wake_up(&fs_info->scrub_pause_wait);
Arne Jansena2de7332011-03-08 14:14:00 +01003929}
3930
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003931int btrfs_scrub_cancel(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003932{
Arne Jansena2de7332011-03-08 14:14:00 +01003933 mutex_lock(&fs_info->scrub_lock);
3934 if (!atomic_read(&fs_info->scrubs_running)) {
3935 mutex_unlock(&fs_info->scrub_lock);
3936 return -ENOTCONN;
3937 }
3938
3939 atomic_inc(&fs_info->scrub_cancel_req);
3940 while (atomic_read(&fs_info->scrubs_running)) {
3941 mutex_unlock(&fs_info->scrub_lock);
3942 wait_event(fs_info->scrub_pause_wait,
3943 atomic_read(&fs_info->scrubs_running) == 0);
3944 mutex_lock(&fs_info->scrub_lock);
3945 }
3946 atomic_dec(&fs_info->scrub_cancel_req);
3947 mutex_unlock(&fs_info->scrub_lock);
3948
3949 return 0;
3950}
3951
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003952int btrfs_scrub_cancel_dev(struct btrfs_fs_info *fs_info,
3953 struct btrfs_device *dev)
Jeff Mahoney49b25e02012-03-01 17:24:58 +01003954{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003955 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003956
3957 mutex_lock(&fs_info->scrub_lock);
Anand Jaincadbc0a2018-01-03 16:08:30 +08003958 sctx = dev->scrub_ctx;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003959 if (!sctx) {
Arne Jansena2de7332011-03-08 14:14:00 +01003960 mutex_unlock(&fs_info->scrub_lock);
3961 return -ENOTCONN;
3962 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003963 atomic_inc(&sctx->cancel_req);
Anand Jaincadbc0a2018-01-03 16:08:30 +08003964 while (dev->scrub_ctx) {
Arne Jansena2de7332011-03-08 14:14:00 +01003965 mutex_unlock(&fs_info->scrub_lock);
3966 wait_event(fs_info->scrub_pause_wait,
Anand Jaincadbc0a2018-01-03 16:08:30 +08003967 dev->scrub_ctx == NULL);
Arne Jansena2de7332011-03-08 14:14:00 +01003968 mutex_lock(&fs_info->scrub_lock);
3969 }
3970 mutex_unlock(&fs_info->scrub_lock);
3971
3972 return 0;
3973}
Stefan Behrens1623ede2012-03-27 14:21:26 -04003974
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003975int btrfs_scrub_progress(struct btrfs_fs_info *fs_info, u64 devid,
Arne Jansena2de7332011-03-08 14:14:00 +01003976 struct btrfs_scrub_progress *progress)
3977{
3978 struct btrfs_device *dev;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003979 struct scrub_ctx *sctx = NULL;
Arne Jansena2de7332011-03-08 14:14:00 +01003980
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003981 mutex_lock(&fs_info->fs_devices->device_list_mutex);
3982 dev = btrfs_find_device(fs_info, devid, NULL, NULL);
Arne Jansena2de7332011-03-08 14:14:00 +01003983 if (dev)
Anand Jaincadbc0a2018-01-03 16:08:30 +08003984 sctx = dev->scrub_ctx;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003985 if (sctx)
3986 memcpy(progress, &sctx->stat, sizeof(*progress));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003987 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Arne Jansena2de7332011-03-08 14:14:00 +01003988
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003989 return dev ? (sctx ? 0 : -ENOTCONN) : -ENODEV;
Arne Jansena2de7332011-03-08 14:14:00 +01003990}
Stefan Behrensff023aa2012-11-06 11:43:11 +01003991
3992static void scrub_remap_extent(struct btrfs_fs_info *fs_info,
3993 u64 extent_logical, u64 extent_len,
3994 u64 *extent_physical,
3995 struct btrfs_device **extent_dev,
3996 int *extent_mirror_num)
3997{
3998 u64 mapped_length;
3999 struct btrfs_bio *bbio = NULL;
4000 int ret;
4001
4002 mapped_length = extent_len;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02004003 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, extent_logical,
Stefan Behrensff023aa2012-11-06 11:43:11 +01004004 &mapped_length, &bbio, 0);
4005 if (ret || !bbio || mapped_length < extent_len ||
4006 !bbio->stripes[0].dev->bdev) {
Zhao Lei6e9606d2015-01-20 15:11:34 +08004007 btrfs_put_bbio(bbio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01004008 return;
4009 }
4010
4011 *extent_physical = bbio->stripes[0].physical;
4012 *extent_mirror_num = bbio->mirror_num;
4013 *extent_dev = bbio->stripes[0].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08004014 btrfs_put_bbio(bbio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01004015}