blob: abb39c5255d275e7c9ad7a29e7b25bea5a48c6b2 [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>
Johannes Thumshirnd5178572019-06-03 16:58:57 +02009#include <crypto/hash.h>
Arne Jansena2de7332011-03-08 14:14:00 +010010#include "ctree.h"
Dennis Zhou6e80d4f2019-12-13 16:22:15 -080011#include "discard.h"
Arne Jansena2de7332011-03-08 14:14:00 +010012#include "volumes.h"
13#include "disk-io.h"
14#include "ordered-data.h"
Jan Schmidt0ef8e452011-06-13 20:04:15 +020015#include "transaction.h"
Jan Schmidt558540c2011-06-13 19:59:12 +020016#include "backref.h"
Jan Schmidt5da6fcb2011-08-04 18:11:04 +020017#include "extent_io.h"
Stefan Behrensff023aa2012-11-06 11:43:11 +010018#include "dev-replace.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010019#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040020#include "rcu-string.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050021#include "raid56.h"
Josef Bacikaac00232019-06-20 15:37:44 -040022#include "block-group.h"
Arne Jansena2de7332011-03-08 14:14:00 +010023
24/*
25 * This is only the first step towards a full-features scrub. It reads all
26 * extent and super block and verifies the checksums. In case a bad checksum
27 * is found or the extent cannot be read, good data will be written back if
28 * any can be found.
29 *
30 * Future enhancements:
Arne Jansena2de7332011-03-08 14:14:00 +010031 * - In case an unrepairable extent is encountered, track which files are
32 * affected and report them
Arne Jansena2de7332011-03-08 14:14:00 +010033 * - track and record media errors, throw out bad devices
Arne Jansena2de7332011-03-08 14:14:00 +010034 * - add a mode to also read unallocated space
Arne Jansena2de7332011-03-08 14:14:00 +010035 */
36
Stefan Behrensb5d67f62012-03-27 14:21:27 -040037struct scrub_block;
Stefan Behrensd9d181c2012-11-02 09:58:09 +010038struct scrub_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +010039
Stefan Behrensff023aa2012-11-06 11:43:11 +010040/*
41 * the following three values only influence the performance.
42 * The last one configures the number of parallel and outstanding I/O
43 * operations. The first two values configure an upper limit for the number
44 * of (dynamically allocated) pages that are added to a bio.
45 */
46#define SCRUB_PAGES_PER_RD_BIO 32 /* 128k per bio */
47#define SCRUB_PAGES_PER_WR_BIO 32 /* 128k per bio */
48#define SCRUB_BIOS_PER_SCTX 64 /* 8MB per device in flight */
Stefan Behrens7a9e9982012-11-02 14:58:04 +010049
50/*
51 * the following value times PAGE_SIZE needs to be large enough to match the
52 * largest node/leaf/sector size that shall be supported.
53 * Values larger than BTRFS_STRIPE_LEN are not supported.
54 */
Stefan Behrensb5d67f62012-03-27 14:21:27 -040055#define SCRUB_MAX_PAGES_PER_BLOCK 16 /* 64k per node/leaf/sector */
Arne Jansena2de7332011-03-08 14:14:00 +010056
Miao Xieaf8e2d12014-10-23 14:42:50 +080057struct scrub_recover {
Elena Reshetova6f615012017-03-03 10:55:21 +020058 refcount_t refs;
Miao Xieaf8e2d12014-10-23 14:42:50 +080059 struct btrfs_bio *bbio;
Miao Xieaf8e2d12014-10-23 14:42:50 +080060 u64 map_length;
61};
62
Arne Jansena2de7332011-03-08 14:14:00 +010063struct scrub_page {
Stefan Behrensb5d67f62012-03-27 14:21:27 -040064 struct scrub_block *sblock;
65 struct page *page;
Stefan Behrens442a4f62012-05-25 16:06:08 +020066 struct btrfs_device *dev;
Miao Xie5a6ac9e2014-11-06 17:20:58 +080067 struct list_head list;
Arne Jansena2de7332011-03-08 14:14:00 +010068 u64 flags; /* extent flags */
69 u64 generation;
Stefan Behrensb5d67f62012-03-27 14:21:27 -040070 u64 logical;
71 u64 physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +010072 u64 physical_for_dev_replace;
Zhao Lei57019342015-01-20 15:11:45 +080073 atomic_t refs;
Stefan Behrensb5d67f62012-03-27 14:21:27 -040074 struct {
75 unsigned int mirror_num:8;
76 unsigned int have_csum:1;
77 unsigned int io_error:1;
78 };
Arne Jansena2de7332011-03-08 14:14:00 +010079 u8 csum[BTRFS_CSUM_SIZE];
Miao Xieaf8e2d12014-10-23 14:42:50 +080080
81 struct scrub_recover *recover;
Arne Jansena2de7332011-03-08 14:14:00 +010082};
83
84struct scrub_bio {
85 int index;
Stefan Behrensd9d181c2012-11-02 09:58:09 +010086 struct scrub_ctx *sctx;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +010087 struct btrfs_device *dev;
Arne Jansena2de7332011-03-08 14:14:00 +010088 struct bio *bio;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +020089 blk_status_t status;
Arne Jansena2de7332011-03-08 14:14:00 +010090 u64 logical;
91 u64 physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +010092#if SCRUB_PAGES_PER_WR_BIO >= SCRUB_PAGES_PER_RD_BIO
93 struct scrub_page *pagev[SCRUB_PAGES_PER_WR_BIO];
94#else
95 struct scrub_page *pagev[SCRUB_PAGES_PER_RD_BIO];
96#endif
Stefan Behrensb5d67f62012-03-27 14:21:27 -040097 int page_count;
Arne Jansena2de7332011-03-08 14:14:00 +010098 int next_free;
99 struct btrfs_work work;
100};
101
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400102struct scrub_block {
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100103 struct scrub_page *pagev[SCRUB_MAX_PAGES_PER_BLOCK];
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400104 int page_count;
105 atomic_t outstanding_pages;
Elena Reshetova186debd2017-03-03 10:55:23 +0200106 refcount_t refs; /* free mem on transition to zero */
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100107 struct scrub_ctx *sctx;
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800108 struct scrub_parity *sparity;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400109 struct {
110 unsigned int header_error:1;
111 unsigned int checksum_error:1;
112 unsigned int no_io_error_seen:1;
Stefan Behrens442a4f62012-05-25 16:06:08 +0200113 unsigned int generation_error:1; /* also sets header_error */
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800114
115 /* The following is for the data used to check parity */
116 /* It is for the data with checksum */
117 unsigned int data_corrected:1;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400118 };
Omar Sandoval73ff61d2015-06-19 11:52:51 -0700119 struct btrfs_work work;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400120};
121
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800122/* Used for the chunks with parity stripe such RAID5/6 */
123struct scrub_parity {
124 struct scrub_ctx *sctx;
125
126 struct btrfs_device *scrub_dev;
127
128 u64 logic_start;
129
130 u64 logic_end;
131
132 int nsectors;
133
Liu Bo972d7212017-04-03 13:45:33 -0700134 u64 stripe_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800135
Elena Reshetova78a76452017-03-03 10:55:24 +0200136 refcount_t refs;
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800137
138 struct list_head spages;
139
140 /* Work of parity check and repair */
141 struct btrfs_work work;
142
143 /* Mark the parity blocks which have data */
144 unsigned long *dbitmap;
145
146 /*
147 * Mark the parity blocks which have data, but errors happen when
148 * read data or check data
149 */
150 unsigned long *ebitmap;
151
Gustavo A. R. Silvaa8753ee2020-03-06 16:13:33 -0600152 unsigned long bitmap[];
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800153};
154
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100155struct scrub_ctx {
Stefan Behrensff023aa2012-11-06 11:43:11 +0100156 struct scrub_bio *bios[SCRUB_BIOS_PER_SCTX];
Jeff Mahoneyfb456252016-06-22 18:54:56 -0400157 struct btrfs_fs_info *fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +0100158 int first_free;
159 int curr;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100160 atomic_t bios_in_flight;
161 atomic_t workers_pending;
Arne Jansena2de7332011-03-08 14:14:00 +0100162 spinlock_t list_lock;
163 wait_queue_head_t list_wait;
164 u16 csum_size;
165 struct list_head csum_list;
166 atomic_t cancel_req;
Arne Jansen86287642011-03-23 16:34:19 +0100167 int readonly;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100168 int pages_per_rd_bio;
Stefan Behrens63a212a2012-11-05 18:29:28 +0100169
170 int is_dev_replace;
David Sterba3fb99302017-05-16 19:10:32 +0200171
172 struct scrub_bio *wr_curr_bio;
173 struct mutex wr_lock;
174 int pages_per_wr_bio; /* <= SCRUB_PAGES_PER_WR_BIO */
David Sterba3fb99302017-05-16 19:10:32 +0200175 struct btrfs_device *wr_tgtdev;
David Sterba2073c4c2017-03-31 17:12:51 +0200176 bool flush_all_writes;
Stefan Behrens63a212a2012-11-05 18:29:28 +0100177
Arne Jansena2de7332011-03-08 14:14:00 +0100178 /*
179 * statistics
180 */
181 struct btrfs_scrub_progress stat;
182 spinlock_t stat_lock;
Filipe Mananaf55985f2015-02-09 21:14:24 +0000183
184 /*
185 * Use a ref counter to avoid use-after-free issues. Scrub workers
186 * decrement bios_in_flight and workers_pending and then do a wakeup
187 * on the list_wait wait queue. We must ensure the main scrub task
188 * doesn't free the scrub context before or while the workers are
189 * doing the wakeup() call.
190 */
Elena Reshetova99f4cdb2017-03-03 10:55:25 +0200191 refcount_t refs;
Arne Jansena2de7332011-03-08 14:14:00 +0100192};
193
Jan Schmidt558540c2011-06-13 19:59:12 +0200194struct scrub_warning {
195 struct btrfs_path *path;
196 u64 extent_item_size;
Jan Schmidt558540c2011-06-13 19:59:12 +0200197 const char *errstr;
David Sterba6aa21262017-10-04 17:07:07 +0200198 u64 physical;
Jan Schmidt558540c2011-06-13 19:59:12 +0200199 u64 logical;
200 struct btrfs_device *dev;
Jan Schmidt558540c2011-06-13 19:59:12 +0200201};
202
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800203struct full_stripe_lock {
204 struct rb_node node;
205 u64 logical;
206 u64 refs;
207 struct mutex mutex;
208};
209
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100210static void scrub_pending_bio_inc(struct scrub_ctx *sctx);
211static void scrub_pending_bio_dec(struct scrub_ctx *sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400212static int scrub_handle_errored_block(struct scrub_block *sblock_to_check);
Zhao Leibe50a8d2015-01-20 15:11:42 +0800213static int scrub_setup_recheck_block(struct scrub_block *original_sblock,
Stefan Behrensff023aa2012-11-06 11:43:11 +0100214 struct scrub_block *sblocks_for_recheck);
Stefan Behrens34f5c8e2012-11-02 16:16:26 +0100215static void scrub_recheck_block(struct btrfs_fs_info *fs_info,
Zhao Leiaffe4a52015-08-24 21:32:06 +0800216 struct scrub_block *sblock,
217 int retry_failed_mirror);
Zhao Leiba7cf982015-08-24 21:18:02 +0800218static void scrub_recheck_block_checksum(struct scrub_block *sblock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400219static int scrub_repair_block_from_good_copy(struct scrub_block *sblock_bad,
Zhao Lei114ab502015-01-20 15:11:36 +0800220 struct scrub_block *sblock_good);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400221static int scrub_repair_page_from_good_copy(struct scrub_block *sblock_bad,
222 struct scrub_block *sblock_good,
223 int page_num, int force_write);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100224static void scrub_write_block_to_dev_replace(struct scrub_block *sblock);
225static int scrub_write_page_to_dev_replace(struct scrub_block *sblock,
226 int page_num);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400227static int scrub_checksum_data(struct scrub_block *sblock);
228static int scrub_checksum_tree_block(struct scrub_block *sblock);
229static int scrub_checksum_super(struct scrub_block *sblock);
230static void scrub_block_get(struct scrub_block *sblock);
231static void scrub_block_put(struct scrub_block *sblock);
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100232static void scrub_page_get(struct scrub_page *spage);
233static void scrub_page_put(struct scrub_page *spage);
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800234static void scrub_parity_get(struct scrub_parity *sparity);
235static void scrub_parity_put(struct scrub_parity *sparity);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100236static int scrub_add_page_to_rd_bio(struct scrub_ctx *sctx,
237 struct scrub_page *spage);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100238static int scrub_pages(struct scrub_ctx *sctx, u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100239 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +0100240 u64 gen, int mirror_num, u8 *csum, int force,
241 u64 physical_for_dev_replace);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200242static void scrub_bio_end_io(struct bio *bio);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400243static void scrub_bio_end_io_worker(struct btrfs_work *work);
244static void scrub_block_complete(struct scrub_block *sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100245static void scrub_remap_extent(struct btrfs_fs_info *fs_info,
246 u64 extent_logical, u64 extent_len,
247 u64 *extent_physical,
248 struct btrfs_device **extent_dev,
249 int *extent_mirror_num);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100250static int scrub_add_page_to_wr_bio(struct scrub_ctx *sctx,
251 struct scrub_page *spage);
252static void scrub_wr_submit(struct scrub_ctx *sctx);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200253static void scrub_wr_bio_end_io(struct bio *bio);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100254static void scrub_wr_bio_end_io_worker(struct btrfs_work *work);
Wang Shilongcb7ab022013-12-04 21:16:53 +0800255static void __scrub_blocked_if_needed(struct btrfs_fs_info *fs_info);
Wang Shilong3cb09292013-12-04 21:15:19 +0800256static void scrub_blocked_if_needed(struct btrfs_fs_info *fs_info);
Filipe Mananaf55985f2015-02-09 21:14:24 +0000257static void scrub_put_ctx(struct scrub_ctx *sctx);
Stefan Behrens1623ede2012-03-27 14:21:26 -0400258
Liu Bo762221f2018-01-02 13:36:42 -0700259static inline int scrub_is_page_on_raid56(struct scrub_page *page)
260{
261 return page->recover &&
262 (page->recover->bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK);
263}
Stefan Behrens1623ede2012-03-27 14:21:26 -0400264
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100265static void scrub_pending_bio_inc(struct scrub_ctx *sctx)
266{
Elena Reshetova99f4cdb2017-03-03 10:55:25 +0200267 refcount_inc(&sctx->refs);
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100268 atomic_inc(&sctx->bios_in_flight);
269}
270
271static void scrub_pending_bio_dec(struct scrub_ctx *sctx)
272{
273 atomic_dec(&sctx->bios_in_flight);
274 wake_up(&sctx->list_wait);
Filipe Mananaf55985f2015-02-09 21:14:24 +0000275 scrub_put_ctx(sctx);
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100276}
277
Wang Shilongcb7ab022013-12-04 21:16:53 +0800278static void __scrub_blocked_if_needed(struct btrfs_fs_info *fs_info)
Wang Shilong3cb09292013-12-04 21:15:19 +0800279{
280 while (atomic_read(&fs_info->scrub_pause_req)) {
281 mutex_unlock(&fs_info->scrub_lock);
282 wait_event(fs_info->scrub_pause_wait,
283 atomic_read(&fs_info->scrub_pause_req) == 0);
284 mutex_lock(&fs_info->scrub_lock);
285 }
286}
287
Zhaolei0e22be82015-08-05 16:43:28 +0800288static void scrub_pause_on(struct btrfs_fs_info *fs_info)
Wang Shilongcb7ab022013-12-04 21:16:53 +0800289{
290 atomic_inc(&fs_info->scrubs_paused);
291 wake_up(&fs_info->scrub_pause_wait);
Zhaolei0e22be82015-08-05 16:43:28 +0800292}
Wang Shilongcb7ab022013-12-04 21:16:53 +0800293
Zhaolei0e22be82015-08-05 16:43:28 +0800294static void scrub_pause_off(struct btrfs_fs_info *fs_info)
295{
Wang Shilongcb7ab022013-12-04 21:16:53 +0800296 mutex_lock(&fs_info->scrub_lock);
297 __scrub_blocked_if_needed(fs_info);
298 atomic_dec(&fs_info->scrubs_paused);
299 mutex_unlock(&fs_info->scrub_lock);
300
301 wake_up(&fs_info->scrub_pause_wait);
302}
303
Zhaolei0e22be82015-08-05 16:43:28 +0800304static void scrub_blocked_if_needed(struct btrfs_fs_info *fs_info)
305{
306 scrub_pause_on(fs_info);
307 scrub_pause_off(fs_info);
308}
309
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100310/*
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800311 * Insert new full stripe lock into full stripe locks tree
312 *
313 * Return pointer to existing or newly inserted full_stripe_lock structure if
314 * everything works well.
315 * Return ERR_PTR(-ENOMEM) if we failed to allocate memory
316 *
317 * NOTE: caller must hold full_stripe_locks_root->lock before calling this
318 * function
319 */
320static struct full_stripe_lock *insert_full_stripe_lock(
321 struct btrfs_full_stripe_locks_tree *locks_root,
322 u64 fstripe_logical)
323{
324 struct rb_node **p;
325 struct rb_node *parent = NULL;
326 struct full_stripe_lock *entry;
327 struct full_stripe_lock *ret;
328
David Sterbaa32bf9a2018-03-16 02:21:22 +0100329 lockdep_assert_held(&locks_root->lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800330
331 p = &locks_root->root.rb_node;
332 while (*p) {
333 parent = *p;
334 entry = rb_entry(parent, struct full_stripe_lock, node);
335 if (fstripe_logical < entry->logical) {
336 p = &(*p)->rb_left;
337 } else if (fstripe_logical > entry->logical) {
338 p = &(*p)->rb_right;
339 } else {
340 entry->refs++;
341 return entry;
342 }
343 }
344
Filipe Mananaa5fb1142018-11-26 20:07:17 +0000345 /*
346 * Insert new lock.
Filipe Mananaa5fb1142018-11-26 20:07:17 +0000347 */
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800348 ret = kmalloc(sizeof(*ret), GFP_KERNEL);
349 if (!ret)
350 return ERR_PTR(-ENOMEM);
351 ret->logical = fstripe_logical;
352 ret->refs = 1;
353 mutex_init(&ret->mutex);
354
355 rb_link_node(&ret->node, parent, p);
356 rb_insert_color(&ret->node, &locks_root->root);
357 return ret;
358}
359
360/*
361 * Search for a full stripe lock of a block group
362 *
363 * Return pointer to existing full stripe lock if found
364 * Return NULL if not found
365 */
366static struct full_stripe_lock *search_full_stripe_lock(
367 struct btrfs_full_stripe_locks_tree *locks_root,
368 u64 fstripe_logical)
369{
370 struct rb_node *node;
371 struct full_stripe_lock *entry;
372
David Sterbaa32bf9a2018-03-16 02:21:22 +0100373 lockdep_assert_held(&locks_root->lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800374
375 node = locks_root->root.rb_node;
376 while (node) {
377 entry = rb_entry(node, struct full_stripe_lock, node);
378 if (fstripe_logical < entry->logical)
379 node = node->rb_left;
380 else if (fstripe_logical > entry->logical)
381 node = node->rb_right;
382 else
383 return entry;
384 }
385 return NULL;
386}
387
388/*
389 * Helper to get full stripe logical from a normal bytenr.
390 *
391 * Caller must ensure @cache is a RAID56 block group.
392 */
David Sterba32da53862019-10-29 19:20:18 +0100393static u64 get_full_stripe_logical(struct btrfs_block_group *cache, u64 bytenr)
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800394{
395 u64 ret;
396
397 /*
398 * Due to chunk item size limit, full stripe length should not be
399 * larger than U32_MAX. Just a sanity check here.
400 */
401 WARN_ON_ONCE(cache->full_stripe_len >= U32_MAX);
402
403 /*
404 * round_down() can only handle power of 2, while RAID56 full
405 * stripe length can be 64KiB * n, so we need to manually round down.
406 */
David Sterbab3470b52019-10-23 18:48:22 +0200407 ret = div64_u64(bytenr - cache->start, cache->full_stripe_len) *
408 cache->full_stripe_len + cache->start;
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800409 return ret;
410}
411
412/*
413 * Lock a full stripe to avoid concurrency of recovery and read
414 *
415 * It's only used for profiles with parities (RAID5/6), for other profiles it
416 * does nothing.
417 *
418 * Return 0 if we locked full stripe covering @bytenr, with a mutex held.
419 * So caller must call unlock_full_stripe() at the same context.
420 *
421 * Return <0 if encounters error.
422 */
423static int lock_full_stripe(struct btrfs_fs_info *fs_info, u64 bytenr,
424 bool *locked_ret)
425{
David Sterba32da53862019-10-29 19:20:18 +0100426 struct btrfs_block_group *bg_cache;
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800427 struct btrfs_full_stripe_locks_tree *locks_root;
428 struct full_stripe_lock *existing;
429 u64 fstripe_start;
430 int ret = 0;
431
432 *locked_ret = false;
433 bg_cache = btrfs_lookup_block_group(fs_info, bytenr);
434 if (!bg_cache) {
435 ASSERT(0);
436 return -ENOENT;
437 }
438
439 /* Profiles not based on parity don't need full stripe lock */
440 if (!(bg_cache->flags & BTRFS_BLOCK_GROUP_RAID56_MASK))
441 goto out;
442 locks_root = &bg_cache->full_stripe_locks_root;
443
444 fstripe_start = get_full_stripe_logical(bg_cache, bytenr);
445
446 /* Now insert the full stripe lock */
447 mutex_lock(&locks_root->lock);
448 existing = insert_full_stripe_lock(locks_root, fstripe_start);
449 mutex_unlock(&locks_root->lock);
450 if (IS_ERR(existing)) {
451 ret = PTR_ERR(existing);
452 goto out;
453 }
454 mutex_lock(&existing->mutex);
455 *locked_ret = true;
456out:
457 btrfs_put_block_group(bg_cache);
458 return ret;
459}
460
461/*
462 * Unlock a full stripe.
463 *
464 * NOTE: Caller must ensure it's the same context calling corresponding
465 * lock_full_stripe().
466 *
467 * Return 0 if we unlock full stripe without problem.
468 * Return <0 for error
469 */
470static int unlock_full_stripe(struct btrfs_fs_info *fs_info, u64 bytenr,
471 bool locked)
472{
David Sterba32da53862019-10-29 19:20:18 +0100473 struct btrfs_block_group *bg_cache;
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800474 struct btrfs_full_stripe_locks_tree *locks_root;
475 struct full_stripe_lock *fstripe_lock;
476 u64 fstripe_start;
477 bool freeit = false;
478 int ret = 0;
479
480 /* If we didn't acquire full stripe lock, no need to continue */
481 if (!locked)
482 return 0;
483
484 bg_cache = btrfs_lookup_block_group(fs_info, bytenr);
485 if (!bg_cache) {
486 ASSERT(0);
487 return -ENOENT;
488 }
489 if (!(bg_cache->flags & BTRFS_BLOCK_GROUP_RAID56_MASK))
490 goto out;
491
492 locks_root = &bg_cache->full_stripe_locks_root;
493 fstripe_start = get_full_stripe_logical(bg_cache, bytenr);
494
495 mutex_lock(&locks_root->lock);
496 fstripe_lock = search_full_stripe_lock(locks_root, fstripe_start);
497 /* Unpaired unlock_full_stripe() detected */
498 if (!fstripe_lock) {
499 WARN_ON(1);
500 ret = -ENOENT;
501 mutex_unlock(&locks_root->lock);
502 goto out;
503 }
504
505 if (fstripe_lock->refs == 0) {
506 WARN_ON(1);
507 btrfs_warn(fs_info, "full stripe lock at %llu refcount underflow",
508 fstripe_lock->logical);
509 } else {
510 fstripe_lock->refs--;
511 }
512
513 if (fstripe_lock->refs == 0) {
514 rb_erase(&fstripe_lock->node, &locks_root->root);
515 freeit = true;
516 }
517 mutex_unlock(&locks_root->lock);
518
519 mutex_unlock(&fstripe_lock->mutex);
520 if (freeit)
521 kfree(fstripe_lock);
522out:
523 btrfs_put_block_group(bg_cache);
524 return ret;
525}
526
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100527static void scrub_free_csums(struct scrub_ctx *sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100528{
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100529 while (!list_empty(&sctx->csum_list)) {
Arne Jansena2de7332011-03-08 14:14:00 +0100530 struct btrfs_ordered_sum *sum;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100531 sum = list_first_entry(&sctx->csum_list,
Arne Jansena2de7332011-03-08 14:14:00 +0100532 struct btrfs_ordered_sum, list);
533 list_del(&sum->list);
534 kfree(sum);
535 }
536}
537
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100538static noinline_for_stack void scrub_free_ctx(struct scrub_ctx *sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100539{
540 int i;
Arne Jansena2de7332011-03-08 14:14:00 +0100541
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100542 if (!sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100543 return;
544
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400545 /* this can happen when scrub is cancelled */
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100546 if (sctx->curr != -1) {
547 struct scrub_bio *sbio = sctx->bios[sctx->curr];
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400548
549 for (i = 0; i < sbio->page_count; i++) {
Stefan Behrensff023aa2012-11-06 11:43:11 +0100550 WARN_ON(!sbio->pagev[i]->page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400551 scrub_block_put(sbio->pagev[i]->sblock);
552 }
553 bio_put(sbio->bio);
554 }
555
Stefan Behrensff023aa2012-11-06 11:43:11 +0100556 for (i = 0; i < SCRUB_BIOS_PER_SCTX; ++i) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100557 struct scrub_bio *sbio = sctx->bios[i];
Arne Jansena2de7332011-03-08 14:14:00 +0100558
559 if (!sbio)
560 break;
Arne Jansena2de7332011-03-08 14:14:00 +0100561 kfree(sbio);
562 }
563
David Sterba3fb99302017-05-16 19:10:32 +0200564 kfree(sctx->wr_curr_bio);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100565 scrub_free_csums(sctx);
566 kfree(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +0100567}
568
Filipe Mananaf55985f2015-02-09 21:14:24 +0000569static void scrub_put_ctx(struct scrub_ctx *sctx)
570{
Elena Reshetova99f4cdb2017-03-03 10:55:25 +0200571 if (refcount_dec_and_test(&sctx->refs))
Filipe Mananaf55985f2015-02-09 21:14:24 +0000572 scrub_free_ctx(sctx);
573}
574
David Sterba92f7ba42018-12-04 16:11:55 +0100575static noinline_for_stack struct scrub_ctx *scrub_setup_ctx(
576 struct btrfs_fs_info *fs_info, int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +0100577{
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100578 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +0100579 int i;
Arne Jansena2de7332011-03-08 14:14:00 +0100580
David Sterba58c4e172016-02-11 10:49:42 +0100581 sctx = kzalloc(sizeof(*sctx), GFP_KERNEL);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100582 if (!sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100583 goto nomem;
Elena Reshetova99f4cdb2017-03-03 10:55:25 +0200584 refcount_set(&sctx->refs, 1);
Stefan Behrens63a212a2012-11-05 18:29:28 +0100585 sctx->is_dev_replace = is_dev_replace;
Kent Overstreetb54ffb72015-05-19 14:31:01 +0200586 sctx->pages_per_rd_bio = SCRUB_PAGES_PER_RD_BIO;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100587 sctx->curr = -1;
David Sterba92f7ba42018-12-04 16:11:55 +0100588 sctx->fs_info = fs_info;
Dan Robertsone49be142019-02-19 02:56:43 +0000589 INIT_LIST_HEAD(&sctx->csum_list);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100590 for (i = 0; i < SCRUB_BIOS_PER_SCTX; ++i) {
Arne Jansena2de7332011-03-08 14:14:00 +0100591 struct scrub_bio *sbio;
592
David Sterba58c4e172016-02-11 10:49:42 +0100593 sbio = kzalloc(sizeof(*sbio), GFP_KERNEL);
Arne Jansena2de7332011-03-08 14:14:00 +0100594 if (!sbio)
595 goto nomem;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100596 sctx->bios[i] = sbio;
Arne Jansena2de7332011-03-08 14:14:00 +0100597
Arne Jansena2de7332011-03-08 14:14:00 +0100598 sbio->index = i;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100599 sbio->sctx = sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400600 sbio->page_count = 0;
Omar Sandovala0cac0e2019-09-16 11:30:57 -0700601 btrfs_init_work(&sbio->work, scrub_bio_end_io_worker, NULL,
602 NULL);
Arne Jansena2de7332011-03-08 14:14:00 +0100603
Stefan Behrensff023aa2012-11-06 11:43:11 +0100604 if (i != SCRUB_BIOS_PER_SCTX - 1)
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100605 sctx->bios[i]->next_free = i + 1;
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200606 else
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100607 sctx->bios[i]->next_free = -1;
Arne Jansena2de7332011-03-08 14:14:00 +0100608 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100609 sctx->first_free = 0;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100610 atomic_set(&sctx->bios_in_flight, 0);
611 atomic_set(&sctx->workers_pending, 0);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100612 atomic_set(&sctx->cancel_req, 0);
613 sctx->csum_size = btrfs_super_csum_size(fs_info->super_copy);
Arne Jansena2de7332011-03-08 14:14:00 +0100614
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100615 spin_lock_init(&sctx->list_lock);
616 spin_lock_init(&sctx->stat_lock);
617 init_waitqueue_head(&sctx->list_wait);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100618
David Sterba3fb99302017-05-16 19:10:32 +0200619 WARN_ON(sctx->wr_curr_bio != NULL);
620 mutex_init(&sctx->wr_lock);
621 sctx->wr_curr_bio = NULL;
David Sterba8fcdac32017-05-16 19:10:23 +0200622 if (is_dev_replace) {
David Sterbaded56182017-06-26 15:19:00 +0200623 WARN_ON(!fs_info->dev_replace.tgtdev);
David Sterba3fb99302017-05-16 19:10:32 +0200624 sctx->pages_per_wr_bio = SCRUB_PAGES_PER_WR_BIO;
David Sterbaded56182017-06-26 15:19:00 +0200625 sctx->wr_tgtdev = fs_info->dev_replace.tgtdev;
David Sterba2073c4c2017-03-31 17:12:51 +0200626 sctx->flush_all_writes = false;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100627 }
David Sterba8fcdac32017-05-16 19:10:23 +0200628
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100629 return sctx;
Arne Jansena2de7332011-03-08 14:14:00 +0100630
631nomem:
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100632 scrub_free_ctx(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +0100633 return ERR_PTR(-ENOMEM);
634}
635
Stefan Behrensff023aa2012-11-06 11:43:11 +0100636static int scrub_print_warning_inode(u64 inum, u64 offset, u64 root,
637 void *warn_ctx)
Jan Schmidt558540c2011-06-13 19:59:12 +0200638{
639 u64 isize;
640 u32 nlink;
641 int ret;
642 int i;
David Sterbade2491f2017-05-31 19:21:38 +0200643 unsigned nofs_flag;
Jan Schmidt558540c2011-06-13 19:59:12 +0200644 struct extent_buffer *eb;
645 struct btrfs_inode_item *inode_item;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100646 struct scrub_warning *swarn = warn_ctx;
Jeff Mahoneyfb456252016-06-22 18:54:56 -0400647 struct btrfs_fs_info *fs_info = swarn->dev->fs_info;
Jan Schmidt558540c2011-06-13 19:59:12 +0200648 struct inode_fs_paths *ipath = NULL;
649 struct btrfs_root *local_root;
David Sterba1d4c08e2015-01-02 19:36:14 +0100650 struct btrfs_key key;
Jan Schmidt558540c2011-06-13 19:59:12 +0200651
David Sterba56e93572020-05-15 19:35:55 +0200652 local_root = btrfs_get_fs_root(fs_info, root, true);
Jan Schmidt558540c2011-06-13 19:59:12 +0200653 if (IS_ERR(local_root)) {
654 ret = PTR_ERR(local_root);
655 goto err;
656 }
657
David Sterba14692cc2015-01-02 18:55:46 +0100658 /*
659 * this makes the path point to (inum INODE_ITEM ioff)
660 */
David Sterba1d4c08e2015-01-02 19:36:14 +0100661 key.objectid = inum;
662 key.type = BTRFS_INODE_ITEM_KEY;
663 key.offset = 0;
664
665 ret = btrfs_search_slot(NULL, local_root, &key, swarn->path, 0, 0);
Jan Schmidt558540c2011-06-13 19:59:12 +0200666 if (ret) {
Josef Bacik00246522020-01-24 09:33:01 -0500667 btrfs_put_root(local_root);
Jan Schmidt558540c2011-06-13 19:59:12 +0200668 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)) {
Josef Bacik00246522020-01-24 09:33:01 -0500688 btrfs_put_root(local_root);
Dan Carpenter26bdef52011-11-16 11:28:01 +0300689 ret = PTR_ERR(ipath);
690 ipath = NULL;
691 goto err;
692 }
Jan Schmidt558540c2011-06-13 19:59:12 +0200693 ret = paths_from_inode(inum, ipath);
694
695 if (ret < 0)
696 goto err;
697
698 /*
699 * we deliberately ignore the bit ipath might have been too small to
700 * hold all of the paths here
701 */
702 for (i = 0; i < ipath->fspath->elem_cnt; ++i)
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400703 btrfs_warn_in_rcu(fs_info,
David Sterba6aa21262017-10-04 17:07:07 +0200704"%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 -0400705 swarn->errstr, swarn->logical,
706 rcu_str_deref(swarn->dev->name),
David Sterba6aa21262017-10-04 17:07:07 +0200707 swarn->physical,
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400708 root, inum, offset,
709 min(isize - offset, (u64)PAGE_SIZE), nlink,
710 (char *)(unsigned long)ipath->fspath->val[i]);
Jan Schmidt558540c2011-06-13 19:59:12 +0200711
Josef Bacik00246522020-01-24 09:33:01 -0500712 btrfs_put_root(local_root);
Jan Schmidt558540c2011-06-13 19:59:12 +0200713 free_ipath(ipath);
714 return 0;
715
716err:
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400717 btrfs_warn_in_rcu(fs_info,
David Sterba6aa21262017-10-04 17:07:07 +0200718 "%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 -0400719 swarn->errstr, swarn->logical,
720 rcu_str_deref(swarn->dev->name),
David Sterba6aa21262017-10-04 17:07:07 +0200721 swarn->physical,
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400722 root, inum, offset, ret);
Jan Schmidt558540c2011-06-13 19:59:12 +0200723
724 free_ipath(ipath);
725 return 0;
726}
727
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400728static void scrub_print_warning(const char *errstr, struct scrub_block *sblock)
Jan Schmidt558540c2011-06-13 19:59:12 +0200729{
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100730 struct btrfs_device *dev;
731 struct btrfs_fs_info *fs_info;
Jan Schmidt558540c2011-06-13 19:59:12 +0200732 struct btrfs_path *path;
733 struct btrfs_key found_key;
734 struct extent_buffer *eb;
735 struct btrfs_extent_item *ei;
736 struct scrub_warning swarn;
Jan Schmidt558540c2011-06-13 19:59:12 +0200737 unsigned long ptr = 0;
Jan Schmidt4692cf52011-12-02 14:56:41 +0100738 u64 extent_item_pos;
Liu Bo69917e42012-09-07 20:01:28 -0600739 u64 flags = 0;
740 u64 ref_root;
741 u32 item_size;
Dan Carpenter07c9a8e2016-03-11 11:08:56 +0300742 u8 ref_level = 0;
Liu Bo69917e42012-09-07 20:01:28 -0600743 int ret;
Jan Schmidt558540c2011-06-13 19:59:12 +0200744
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100745 WARN_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100746 dev = sblock->pagev[0]->dev;
Jeff Mahoneyfb456252016-06-22 18:54:56 -0400747 fs_info = sblock->sctx->fs_info;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100748
Jan Schmidt558540c2011-06-13 19:59:12 +0200749 path = btrfs_alloc_path();
David Sterba8b9456d2014-07-30 01:25:30 +0200750 if (!path)
751 return;
Jan Schmidt558540c2011-06-13 19:59:12 +0200752
David Sterba6aa21262017-10-04 17:07:07 +0200753 swarn.physical = sblock->pagev[0]->physical;
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100754 swarn.logical = sblock->pagev[0]->logical;
Jan Schmidt558540c2011-06-13 19:59:12 +0200755 swarn.errstr = errstr;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100756 swarn.dev = NULL;
Jan Schmidt558540c2011-06-13 19:59:12 +0200757
Liu Bo69917e42012-09-07 20:01:28 -0600758 ret = extent_from_logical(fs_info, swarn.logical, path, &found_key,
759 &flags);
Jan Schmidt558540c2011-06-13 19:59:12 +0200760 if (ret < 0)
761 goto out;
762
Jan Schmidt4692cf52011-12-02 14:56:41 +0100763 extent_item_pos = swarn.logical - found_key.objectid;
Jan Schmidt558540c2011-06-13 19:59:12 +0200764 swarn.extent_item_size = found_key.offset;
765
766 eb = path->nodes[0];
767 ei = btrfs_item_ptr(eb, path->slots[0], struct btrfs_extent_item);
768 item_size = btrfs_item_size_nr(eb, path->slots[0]);
769
Liu Bo69917e42012-09-07 20:01:28 -0600770 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Jan Schmidt558540c2011-06-13 19:59:12 +0200771 do {
Liu Bo6eda71d2014-06-09 10:54:07 +0800772 ret = tree_backref_for_extent(&ptr, eb, &found_key, ei,
773 item_size, &ref_root,
774 &ref_level);
David Sterbaecaeb142015-10-08 09:01:03 +0200775 btrfs_warn_in_rcu(fs_info,
David Sterba6aa21262017-10-04 17:07:07 +0200776"%s at logical %llu on dev %s, physical %llu: metadata %s (level %d) in tree %llu",
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400777 errstr, swarn.logical,
Josef Bacik606686e2012-06-04 14:03:51 -0400778 rcu_str_deref(dev->name),
David Sterba6aa21262017-10-04 17:07:07 +0200779 swarn.physical,
Jan Schmidt558540c2011-06-13 19:59:12 +0200780 ref_level ? "node" : "leaf",
781 ret < 0 ? -1 : ref_level,
782 ret < 0 ? -1 : ref_root);
783 } while (ret != 1);
Josef Bacikd8fe29e2013-03-29 08:09:34 -0600784 btrfs_release_path(path);
Jan Schmidt558540c2011-06-13 19:59:12 +0200785 } else {
Josef Bacikd8fe29e2013-03-29 08:09:34 -0600786 btrfs_release_path(path);
Jan Schmidt558540c2011-06-13 19:59:12 +0200787 swarn.path = path;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100788 swarn.dev = dev;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +0100789 iterate_extent_inodes(fs_info, found_key.objectid,
790 extent_item_pos, 1,
Zygo Blaxellc995ab32017-09-22 13:58:45 -0400791 scrub_print_warning_inode, &swarn, false);
Jan Schmidt558540c2011-06-13 19:59:12 +0200792 }
793
794out:
795 btrfs_free_path(path);
Jan Schmidt558540c2011-06-13 19:59:12 +0200796}
797
Miao Xieaf8e2d12014-10-23 14:42:50 +0800798static inline void scrub_get_recover(struct scrub_recover *recover)
799{
Elena Reshetova6f615012017-03-03 10:55:21 +0200800 refcount_inc(&recover->refs);
Miao Xieaf8e2d12014-10-23 14:42:50 +0800801}
802
Qu Wenruoe501bfe2017-03-29 09:33:22 +0800803static inline void scrub_put_recover(struct btrfs_fs_info *fs_info,
804 struct scrub_recover *recover)
Miao Xieaf8e2d12014-10-23 14:42:50 +0800805{
Elena Reshetova6f615012017-03-03 10:55:21 +0200806 if (refcount_dec_and_test(&recover->refs)) {
Qu Wenruoe501bfe2017-03-29 09:33:22 +0800807 btrfs_bio_counter_dec(fs_info);
Zhao Lei6e9606d2015-01-20 15:11:34 +0800808 btrfs_put_bbio(recover->bbio);
Miao Xieaf8e2d12014-10-23 14:42:50 +0800809 kfree(recover);
810 }
811}
812
Arne Jansena2de7332011-03-08 14:14:00 +0100813/*
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400814 * scrub_handle_errored_block gets called when either verification of the
815 * pages failed or the bio failed to read, e.g. with EIO. In the latter
816 * case, this function handles all pages in the bio, even though only one
817 * may be bad.
818 * The goal of this function is to repair the errored block by using the
819 * contents of one of the mirrors.
Arne Jansena2de7332011-03-08 14:14:00 +0100820 */
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400821static int scrub_handle_errored_block(struct scrub_block *sblock_to_check)
Arne Jansena2de7332011-03-08 14:14:00 +0100822{
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100823 struct scrub_ctx *sctx = sblock_to_check->sctx;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100824 struct btrfs_device *dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400825 struct btrfs_fs_info *fs_info;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400826 u64 logical;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400827 unsigned int failed_mirror_index;
828 unsigned int is_metadata;
829 unsigned int have_csum;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400830 struct scrub_block *sblocks_for_recheck; /* holds one for each mirror */
831 struct scrub_block *sblock_bad;
Arne Jansena2de7332011-03-08 14:14:00 +0100832 int ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400833 int mirror_index;
834 int page_num;
835 int success;
Qu Wenruo28d70e22017-04-14 08:35:55 +0800836 bool full_stripe_locked;
Filipe Manana7c3c7cb2018-12-07 13:23:32 +0000837 unsigned int nofs_flag;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400838 static DEFINE_RATELIMIT_STATE(_rs, DEFAULT_RATELIMIT_INTERVAL,
839 DEFAULT_RATELIMIT_BURST);
Arne Jansena2de7332011-03-08 14:14:00 +0100840
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400841 BUG_ON(sblock_to_check->page_count < 1);
Jeff Mahoneyfb456252016-06-22 18:54:56 -0400842 fs_info = sctx->fs_info;
Stefan Behrens4ded4f62012-11-14 18:57:29 +0000843 if (sblock_to_check->pagev[0]->flags & BTRFS_EXTENT_FLAG_SUPER) {
844 /*
845 * if we find an error in a super block, we just report it.
846 * They will get written with the next transaction commit
847 * anyway
848 */
849 spin_lock(&sctx->stat_lock);
850 ++sctx->stat.super_errors;
851 spin_unlock(&sctx->stat_lock);
852 return 0;
853 }
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100854 logical = sblock_to_check->pagev[0]->logical;
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100855 BUG_ON(sblock_to_check->pagev[0]->mirror_num < 1);
856 failed_mirror_index = sblock_to_check->pagev[0]->mirror_num - 1;
857 is_metadata = !(sblock_to_check->pagev[0]->flags &
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400858 BTRFS_EXTENT_FLAG_DATA);
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100859 have_csum = sblock_to_check->pagev[0]->have_csum;
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100860 dev = sblock_to_check->pagev[0]->dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400861
Qu Wenruo28d70e22017-04-14 08:35:55 +0800862 /*
Filipe Manana7c3c7cb2018-12-07 13:23:32 +0000863 * We must use GFP_NOFS because the scrub task might be waiting for a
864 * worker task executing this function and in turn a transaction commit
865 * might be waiting the scrub task to pause (which needs to wait for all
866 * the worker tasks to complete before pausing).
867 * We do allocations in the workers through insert_full_stripe_lock()
868 * and scrub_add_page_to_wr_bio(), which happens down the call chain of
869 * this function.
870 */
871 nofs_flag = memalloc_nofs_save();
872 /*
Qu Wenruo28d70e22017-04-14 08:35:55 +0800873 * For RAID5/6, race can happen for a different device scrub thread.
874 * For data corruption, Parity and Data threads will both try
875 * to recovery the data.
876 * Race can lead to doubly added csum error, or even unrecoverable
877 * error.
878 */
879 ret = lock_full_stripe(fs_info, logical, &full_stripe_locked);
880 if (ret < 0) {
Filipe Manana7c3c7cb2018-12-07 13:23:32 +0000881 memalloc_nofs_restore(nofs_flag);
Qu Wenruo28d70e22017-04-14 08:35:55 +0800882 spin_lock(&sctx->stat_lock);
883 if (ret == -ENOMEM)
884 sctx->stat.malloc_errors++;
885 sctx->stat.read_errors++;
886 sctx->stat.uncorrectable_errors++;
887 spin_unlock(&sctx->stat_lock);
888 return ret;
889 }
890
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400891 /*
892 * read all mirrors one after the other. This includes to
893 * re-read the extent or metadata block that failed (that was
894 * the cause that this fixup code is called) another time,
895 * page by page this time in order to know which pages
896 * caused I/O errors and which ones are good (for all mirrors).
897 * It is the goal to handle the situation when more than one
898 * mirror contains I/O errors, but the errors do not
899 * overlap, i.e. the data can be repaired by selecting the
900 * pages from those mirrors without I/O error on the
901 * particular pages. One example (with blocks >= 2 * PAGE_SIZE)
902 * would be that mirror #1 has an I/O error on the first page,
903 * the second page is good, and mirror #2 has an I/O error on
904 * the second page, but the first page is good.
905 * Then the first page of the first mirror can be repaired by
906 * taking the first page of the second mirror, and the
907 * second page of the second mirror can be repaired by
908 * copying the contents of the 2nd page of the 1st mirror.
909 * One more note: if the pages of one mirror contain I/O
910 * errors, the checksum cannot be verified. In order to get
911 * the best data for repairing, the first attempt is to find
912 * a mirror without I/O errors and with a validated checksum.
913 * Only if this is not possible, the pages are picked from
914 * mirrors with I/O errors without considering the checksum.
915 * If the latter is the case, at the end, the checksum of the
916 * repaired area is verified in order to correctly maintain
917 * the statistics.
918 */
919
David Sterba31e818f2015-02-20 18:00:26 +0100920 sblocks_for_recheck = kcalloc(BTRFS_MAX_MIRRORS,
Filipe Manana7c3c7cb2018-12-07 13:23:32 +0000921 sizeof(*sblocks_for_recheck), GFP_KERNEL);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400922 if (!sblocks_for_recheck) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100923 spin_lock(&sctx->stat_lock);
924 sctx->stat.malloc_errors++;
925 sctx->stat.read_errors++;
926 sctx->stat.uncorrectable_errors++;
927 spin_unlock(&sctx->stat_lock);
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100928 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_READ_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400929 goto out;
930 }
931
932 /* setup the context, map the logical blocks and alloc the pages */
Zhao Leibe50a8d2015-01-20 15:11:42 +0800933 ret = scrub_setup_recheck_block(sblock_to_check, sblocks_for_recheck);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400934 if (ret) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100935 spin_lock(&sctx->stat_lock);
936 sctx->stat.read_errors++;
937 sctx->stat.uncorrectable_errors++;
938 spin_unlock(&sctx->stat_lock);
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100939 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_READ_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400940 goto out;
941 }
942 BUG_ON(failed_mirror_index >= BTRFS_MAX_MIRRORS);
943 sblock_bad = sblocks_for_recheck + failed_mirror_index;
944
945 /* build and submit the bios for the failed mirror, check checksums */
Zhao Leiaffe4a52015-08-24 21:32:06 +0800946 scrub_recheck_block(fs_info, sblock_bad, 1);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400947
948 if (!sblock_bad->header_error && !sblock_bad->checksum_error &&
949 sblock_bad->no_io_error_seen) {
950 /*
951 * the error disappeared after reading page by page, or
952 * the area was part of a huge bio and other parts of the
953 * bio caused I/O errors, or the block layer merged several
954 * read requests into one and the error is caused by a
955 * different bio (usually one of the two latter cases is
956 * the cause)
957 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100958 spin_lock(&sctx->stat_lock);
959 sctx->stat.unverified_errors++;
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800960 sblock_to_check->data_corrected = 1;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100961 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400962
Stefan Behrensff023aa2012-11-06 11:43:11 +0100963 if (sctx->is_dev_replace)
964 scrub_write_block_to_dev_replace(sblock_bad);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400965 goto out;
966 }
967
968 if (!sblock_bad->no_io_error_seen) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100969 spin_lock(&sctx->stat_lock);
970 sctx->stat.read_errors++;
971 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400972 if (__ratelimit(&_rs))
973 scrub_print_warning("i/o error", sblock_to_check);
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100974 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_READ_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400975 } else if (sblock_bad->checksum_error) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100976 spin_lock(&sctx->stat_lock);
977 sctx->stat.csum_errors++;
978 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400979 if (__ratelimit(&_rs))
980 scrub_print_warning("checksum error", sblock_to_check);
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100981 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +0200982 BTRFS_DEV_STAT_CORRUPTION_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400983 } else if (sblock_bad->header_error) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100984 spin_lock(&sctx->stat_lock);
985 sctx->stat.verify_errors++;
986 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400987 if (__ratelimit(&_rs))
988 scrub_print_warning("checksum/header error",
989 sblock_to_check);
Stefan Behrens442a4f62012-05-25 16:06:08 +0200990 if (sblock_bad->generation_error)
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100991 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +0200992 BTRFS_DEV_STAT_GENERATION_ERRS);
993 else
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100994 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +0200995 BTRFS_DEV_STAT_CORRUPTION_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400996 }
997
Ilya Dryomov33ef30a2013-11-03 19:06:38 +0200998 if (sctx->readonly) {
999 ASSERT(!sctx->is_dev_replace);
1000 goto out;
1001 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001002
Qu Wenruo665d4952018-07-11 13:41:21 +08001003 /*
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001004 * now build and submit the bios for the other mirrors, check
Stefan Behrenscb2ced72012-11-02 16:14:21 +01001005 * checksums.
1006 * First try to pick the mirror which is completely without I/O
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001007 * errors and also does not have a checksum error.
1008 * If one is found, and if a checksum is present, the full block
1009 * that is known to contain an error is rewritten. Afterwards
1010 * the block is known to be corrected.
1011 * If a mirror is found which is completely correct, and no
1012 * checksum is present, only those pages are rewritten that had
1013 * an I/O error in the block to be repaired, since it cannot be
1014 * determined, which copy of the other pages is better (and it
1015 * could happen otherwise that a correct page would be
1016 * overwritten by a bad one).
1017 */
Liu Bo762221f2018-01-02 13:36:42 -07001018 for (mirror_index = 0; ;mirror_index++) {
Stefan Behrenscb2ced72012-11-02 16:14:21 +01001019 struct scrub_block *sblock_other;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001020
Stefan Behrenscb2ced72012-11-02 16:14:21 +01001021 if (mirror_index == failed_mirror_index)
1022 continue;
Liu Bo762221f2018-01-02 13:36:42 -07001023
1024 /* raid56's mirror can be more than BTRFS_MAX_MIRRORS */
1025 if (!scrub_is_page_on_raid56(sblock_bad->pagev[0])) {
1026 if (mirror_index >= BTRFS_MAX_MIRRORS)
1027 break;
1028 if (!sblocks_for_recheck[mirror_index].page_count)
1029 break;
1030
1031 sblock_other = sblocks_for_recheck + mirror_index;
1032 } else {
1033 struct scrub_recover *r = sblock_bad->pagev[0]->recover;
1034 int max_allowed = r->bbio->num_stripes -
1035 r->bbio->num_tgtdevs;
1036
1037 if (mirror_index >= max_allowed)
1038 break;
1039 if (!sblocks_for_recheck[1].page_count)
1040 break;
1041
1042 ASSERT(failed_mirror_index == 0);
1043 sblock_other = sblocks_for_recheck + 1;
1044 sblock_other->pagev[0]->mirror_num = 1 + mirror_index;
1045 }
Stefan Behrenscb2ced72012-11-02 16:14:21 +01001046
1047 /* build and submit the bios, check checksums */
Zhao Leiaffe4a52015-08-24 21:32:06 +08001048 scrub_recheck_block(fs_info, sblock_other, 0);
Stefan Behrens34f5c8e2012-11-02 16:16:26 +01001049
1050 if (!sblock_other->header_error &&
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001051 !sblock_other->checksum_error &&
1052 sblock_other->no_io_error_seen) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01001053 if (sctx->is_dev_replace) {
1054 scrub_write_block_to_dev_replace(sblock_other);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001055 goto corrected_error;
Zhao Lei114ab502015-01-20 15:11:36 +08001056 } else {
1057 ret = scrub_repair_block_from_good_copy(
1058 sblock_bad, sblock_other);
1059 if (!ret)
1060 goto corrected_error;
1061 }
Arne Jansena2de7332011-03-08 14:14:00 +01001062 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001063 }
1064
Zhao Leib968fed2015-01-20 15:11:41 +08001065 if (sblock_bad->no_io_error_seen && !sctx->is_dev_replace)
1066 goto did_not_correct_error;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001067
1068 /*
Stefan Behrensff023aa2012-11-06 11:43:11 +01001069 * In case of I/O errors in the area that is supposed to be
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001070 * repaired, continue by picking good copies of those pages.
1071 * Select the good pages from mirrors to rewrite bad pages from
1072 * the area to fix. Afterwards verify the checksum of the block
1073 * that is supposed to be repaired. This verification step is
1074 * only done for the purpose of statistic counting and for the
1075 * final scrub report, whether errors remain.
1076 * A perfect algorithm could make use of the checksum and try
1077 * all possible combinations of pages from the different mirrors
1078 * until the checksum verification succeeds. For example, when
1079 * the 2nd page of mirror #1 faces I/O errors, and the 2nd page
1080 * of mirror #2 is readable but the final checksum test fails,
1081 * then the 2nd page of mirror #3 could be tried, whether now
Nicholas D Steeves01327612016-05-19 21:18:45 -04001082 * the final checksum succeeds. But this would be a rare
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001083 * exception and is therefore not implemented. At least it is
1084 * avoided that the good copy is overwritten.
1085 * A more useful improvement would be to pick the sectors
1086 * without I/O error based on sector sizes (512 bytes on legacy
1087 * disks) instead of on PAGE_SIZE. Then maybe 512 byte of one
1088 * mirror could be repaired by taking 512 byte of a different
1089 * mirror, even if other 512 byte sectors in the same PAGE_SIZE
1090 * area are unreadable.
1091 */
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001092 success = 1;
Zhao Leib968fed2015-01-20 15:11:41 +08001093 for (page_num = 0; page_num < sblock_bad->page_count;
1094 page_num++) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001095 struct scrub_page *page_bad = sblock_bad->pagev[page_num];
Zhao Leib968fed2015-01-20 15:11:41 +08001096 struct scrub_block *sblock_other = NULL;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001097
Zhao Leib968fed2015-01-20 15:11:41 +08001098 /* skip no-io-error page in scrub */
1099 if (!page_bad->io_error && !sctx->is_dev_replace)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001100 continue;
1101
Liu Bo47597002018-03-02 16:10:41 -07001102 if (scrub_is_page_on_raid56(sblock_bad->pagev[0])) {
1103 /*
1104 * In case of dev replace, if raid56 rebuild process
1105 * didn't work out correct data, then copy the content
1106 * in sblock_bad to make sure target device is identical
1107 * to source device, instead of writing garbage data in
1108 * sblock_for_recheck array to target device.
1109 */
1110 sblock_other = NULL;
1111 } else if (page_bad->io_error) {
1112 /* try to find no-io-error page in mirrors */
Zhao Leib968fed2015-01-20 15:11:41 +08001113 for (mirror_index = 0;
1114 mirror_index < BTRFS_MAX_MIRRORS &&
1115 sblocks_for_recheck[mirror_index].page_count > 0;
1116 mirror_index++) {
1117 if (!sblocks_for_recheck[mirror_index].
1118 pagev[page_num]->io_error) {
1119 sblock_other = sblocks_for_recheck +
1120 mirror_index;
1121 break;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001122 }
Jan Schmidt13db62b2011-06-13 19:56:13 +02001123 }
Zhao Leib968fed2015-01-20 15:11:41 +08001124 if (!sblock_other)
1125 success = 0;
Jan Schmidt13db62b2011-06-13 19:56:13 +02001126 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001127
Zhao Leib968fed2015-01-20 15:11:41 +08001128 if (sctx->is_dev_replace) {
1129 /*
1130 * did not find a mirror to fetch the page
1131 * from. scrub_write_page_to_dev_replace()
1132 * handles this case (page->io_error), by
1133 * filling the block with zeros before
1134 * submitting the write request
1135 */
1136 if (!sblock_other)
1137 sblock_other = sblock_bad;
1138
1139 if (scrub_write_page_to_dev_replace(sblock_other,
1140 page_num) != 0) {
David Sterbae37abe92018-04-04 17:20:52 +02001141 atomic64_inc(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001142 &fs_info->dev_replace.num_write_errors);
Zhao Leib968fed2015-01-20 15:11:41 +08001143 success = 0;
1144 }
1145 } else if (sblock_other) {
1146 ret = scrub_repair_page_from_good_copy(sblock_bad,
1147 sblock_other,
1148 page_num, 0);
1149 if (0 == ret)
1150 page_bad->io_error = 0;
1151 else
1152 success = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001153 }
1154 }
1155
Zhao Leib968fed2015-01-20 15:11:41 +08001156 if (success && !sctx->is_dev_replace) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001157 if (is_metadata || have_csum) {
1158 /*
1159 * need to verify the checksum now that all
1160 * sectors on disk are repaired (the write
1161 * request for data to be repaired is on its way).
1162 * Just be lazy and use scrub_recheck_block()
1163 * which re-reads the data before the checksum
1164 * is verified, but most likely the data comes out
1165 * of the page cache.
1166 */
Zhao Leiaffe4a52015-08-24 21:32:06 +08001167 scrub_recheck_block(fs_info, sblock_bad, 1);
Stefan Behrens34f5c8e2012-11-02 16:16:26 +01001168 if (!sblock_bad->header_error &&
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001169 !sblock_bad->checksum_error &&
1170 sblock_bad->no_io_error_seen)
1171 goto corrected_error;
1172 else
1173 goto did_not_correct_error;
1174 } else {
1175corrected_error:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001176 spin_lock(&sctx->stat_lock);
1177 sctx->stat.corrected_errors++;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08001178 sblock_to_check->data_corrected = 1;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001179 spin_unlock(&sctx->stat_lock);
David Sterbab14af3b2015-10-08 10:43:10 +02001180 btrfs_err_rl_in_rcu(fs_info,
1181 "fixed up error at logical %llu on dev %s",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001182 logical, rcu_str_deref(dev->name));
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001183 }
1184 } else {
1185did_not_correct_error:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001186 spin_lock(&sctx->stat_lock);
1187 sctx->stat.uncorrectable_errors++;
1188 spin_unlock(&sctx->stat_lock);
David Sterbab14af3b2015-10-08 10:43:10 +02001189 btrfs_err_rl_in_rcu(fs_info,
1190 "unable to fixup (regular) error at logical %llu on dev %s",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001191 logical, rcu_str_deref(dev->name));
Arne Jansena2de7332011-03-08 14:14:00 +01001192 }
1193
1194out:
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001195 if (sblocks_for_recheck) {
1196 for (mirror_index = 0; mirror_index < BTRFS_MAX_MIRRORS;
1197 mirror_index++) {
1198 struct scrub_block *sblock = sblocks_for_recheck +
1199 mirror_index;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001200 struct scrub_recover *recover;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001201 int page_index;
1202
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001203 for (page_index = 0; page_index < sblock->page_count;
1204 page_index++) {
1205 sblock->pagev[page_index]->sblock = NULL;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001206 recover = sblock->pagev[page_index]->recover;
1207 if (recover) {
Qu Wenruoe501bfe2017-03-29 09:33:22 +08001208 scrub_put_recover(fs_info, recover);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001209 sblock->pagev[page_index]->recover =
1210 NULL;
1211 }
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001212 scrub_page_put(sblock->pagev[page_index]);
1213 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001214 }
1215 kfree(sblocks_for_recheck);
1216 }
1217
Qu Wenruo28d70e22017-04-14 08:35:55 +08001218 ret = unlock_full_stripe(fs_info, logical, full_stripe_locked);
Filipe Manana7c3c7cb2018-12-07 13:23:32 +00001219 memalloc_nofs_restore(nofs_flag);
Qu Wenruo28d70e22017-04-14 08:35:55 +08001220 if (ret < 0)
1221 return ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001222 return 0;
Arne Jansena2de7332011-03-08 14:14:00 +01001223}
1224
Zhao Lei8e5cfb52015-01-20 15:11:33 +08001225static inline int scrub_nr_raid_mirrors(struct btrfs_bio *bbio)
Miao Xieaf8e2d12014-10-23 14:42:50 +08001226{
Zhao Lei10f11902015-01-20 15:11:43 +08001227 if (bbio->map_type & BTRFS_BLOCK_GROUP_RAID5)
1228 return 2;
1229 else if (bbio->map_type & BTRFS_BLOCK_GROUP_RAID6)
1230 return 3;
1231 else
Miao Xieaf8e2d12014-10-23 14:42:50 +08001232 return (int)bbio->num_stripes;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001233}
1234
Zhao Lei10f11902015-01-20 15:11:43 +08001235static inline void scrub_stripe_index_and_offset(u64 logical, u64 map_type,
1236 u64 *raid_map,
Miao Xieaf8e2d12014-10-23 14:42:50 +08001237 u64 mapped_length,
1238 int nstripes, int mirror,
1239 int *stripe_index,
1240 u64 *stripe_offset)
1241{
1242 int i;
1243
Zhao Leiffe2d202015-01-20 15:11:44 +08001244 if (map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Miao Xieaf8e2d12014-10-23 14:42:50 +08001245 /* RAID5/6 */
1246 for (i = 0; i < nstripes; i++) {
1247 if (raid_map[i] == RAID6_Q_STRIPE ||
1248 raid_map[i] == RAID5_P_STRIPE)
1249 continue;
1250
1251 if (logical >= raid_map[i] &&
1252 logical < raid_map[i] + mapped_length)
1253 break;
1254 }
1255
1256 *stripe_index = i;
1257 *stripe_offset = logical - raid_map[i];
1258 } else {
1259 /* The other RAID type */
1260 *stripe_index = mirror;
1261 *stripe_offset = 0;
1262 }
1263}
1264
Zhao Leibe50a8d2015-01-20 15:11:42 +08001265static int scrub_setup_recheck_block(struct scrub_block *original_sblock,
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001266 struct scrub_block *sblocks_for_recheck)
Arne Jansena2de7332011-03-08 14:14:00 +01001267{
Zhao Leibe50a8d2015-01-20 15:11:42 +08001268 struct scrub_ctx *sctx = original_sblock->sctx;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001269 struct btrfs_fs_info *fs_info = sctx->fs_info;
Zhao Leibe50a8d2015-01-20 15:11:42 +08001270 u64 length = original_sblock->page_count * PAGE_SIZE;
1271 u64 logical = original_sblock->pagev[0]->logical;
Zhao Lei4734b7e2015-08-19 22:39:18 +08001272 u64 generation = original_sblock->pagev[0]->generation;
1273 u64 flags = original_sblock->pagev[0]->flags;
1274 u64 have_csum = original_sblock->pagev[0]->have_csum;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001275 struct scrub_recover *recover;
1276 struct btrfs_bio *bbio;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001277 u64 sublen;
1278 u64 mapped_length;
1279 u64 stripe_offset;
1280 int stripe_index;
Zhao Leibe50a8d2015-01-20 15:11:42 +08001281 int page_index = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001282 int mirror_index;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001283 int nmirrors;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001284 int ret;
1285
1286 /*
Zhao Lei57019342015-01-20 15:11:45 +08001287 * note: the two members refs and outstanding_pages
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001288 * are not used (and not set) in the blocks that are used for
1289 * the recheck procedure
1290 */
1291
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001292 while (length > 0) {
Miao Xieaf8e2d12014-10-23 14:42:50 +08001293 sublen = min_t(u64, length, PAGE_SIZE);
1294 mapped_length = sublen;
1295 bbio = NULL;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001296
1297 /*
1298 * with a length of PAGE_SIZE, each returned stripe
1299 * represents one mirror
1300 */
Qu Wenruoe501bfe2017-03-29 09:33:22 +08001301 btrfs_bio_counter_inc_blocked(fs_info);
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02001302 ret = btrfs_map_sblock(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
David Sterba825ad4c2017-03-28 14:45:22 +02001303 logical, &mapped_length, &bbio);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001304 if (ret || !bbio || mapped_length < sublen) {
Zhao Lei6e9606d2015-01-20 15:11:34 +08001305 btrfs_put_bbio(bbio);
Qu Wenruoe501bfe2017-03-29 09:33:22 +08001306 btrfs_bio_counter_dec(fs_info);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001307 return -EIO;
1308 }
1309
Miao Xieaf8e2d12014-10-23 14:42:50 +08001310 recover = kzalloc(sizeof(struct scrub_recover), GFP_NOFS);
1311 if (!recover) {
Zhao Lei6e9606d2015-01-20 15:11:34 +08001312 btrfs_put_bbio(bbio);
Qu Wenruoe501bfe2017-03-29 09:33:22 +08001313 btrfs_bio_counter_dec(fs_info);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001314 return -ENOMEM;
1315 }
1316
Elena Reshetova6f615012017-03-03 10:55:21 +02001317 refcount_set(&recover->refs, 1);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001318 recover->bbio = bbio;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001319 recover->map_length = mapped_length;
1320
Ashish Samant24731142016-04-29 18:33:59 -07001321 BUG_ON(page_index >= SCRUB_MAX_PAGES_PER_BLOCK);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001322
Zhao Leibe50a8d2015-01-20 15:11:42 +08001323 nmirrors = min(scrub_nr_raid_mirrors(bbio), BTRFS_MAX_MIRRORS);
Zhao Lei10f11902015-01-20 15:11:43 +08001324
Miao Xieaf8e2d12014-10-23 14:42:50 +08001325 for (mirror_index = 0; mirror_index < nmirrors;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001326 mirror_index++) {
1327 struct scrub_block *sblock;
1328 struct scrub_page *page;
1329
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001330 sblock = sblocks_for_recheck + mirror_index;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001331 sblock->sctx = sctx;
Zhao Lei4734b7e2015-08-19 22:39:18 +08001332
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001333 page = kzalloc(sizeof(*page), GFP_NOFS);
1334 if (!page) {
1335leave_nomem:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001336 spin_lock(&sctx->stat_lock);
1337 sctx->stat.malloc_errors++;
1338 spin_unlock(&sctx->stat_lock);
Qu Wenruoe501bfe2017-03-29 09:33:22 +08001339 scrub_put_recover(fs_info, recover);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001340 return -ENOMEM;
1341 }
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001342 scrub_page_get(page);
1343 sblock->pagev[page_index] = page;
Zhao Lei4734b7e2015-08-19 22:39:18 +08001344 page->sblock = sblock;
1345 page->flags = flags;
1346 page->generation = generation;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001347 page->logical = logical;
Zhao Lei4734b7e2015-08-19 22:39:18 +08001348 page->have_csum = have_csum;
1349 if (have_csum)
1350 memcpy(page->csum,
1351 original_sblock->pagev[0]->csum,
1352 sctx->csum_size);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001353
Zhao Lei10f11902015-01-20 15:11:43 +08001354 scrub_stripe_index_and_offset(logical,
1355 bbio->map_type,
1356 bbio->raid_map,
Miao Xieaf8e2d12014-10-23 14:42:50 +08001357 mapped_length,
Zhao Leie34c3302015-01-20 15:11:31 +08001358 bbio->num_stripes -
1359 bbio->num_tgtdevs,
Miao Xieaf8e2d12014-10-23 14:42:50 +08001360 mirror_index,
1361 &stripe_index,
1362 &stripe_offset);
1363 page->physical = bbio->stripes[stripe_index].physical +
1364 stripe_offset;
1365 page->dev = bbio->stripes[stripe_index].dev;
1366
Stefan Behrensff023aa2012-11-06 11:43:11 +01001367 BUG_ON(page_index >= original_sblock->page_count);
1368 page->physical_for_dev_replace =
1369 original_sblock->pagev[page_index]->
1370 physical_for_dev_replace;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001371 /* for missing devices, dev->bdev is NULL */
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001372 page->mirror_num = mirror_index + 1;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001373 sblock->page_count++;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001374 page->page = alloc_page(GFP_NOFS);
1375 if (!page->page)
1376 goto leave_nomem;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001377
1378 scrub_get_recover(recover);
1379 page->recover = recover;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001380 }
Qu Wenruoe501bfe2017-03-29 09:33:22 +08001381 scrub_put_recover(fs_info, recover);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001382 length -= sublen;
1383 logical += sublen;
1384 page_index++;
1385 }
1386
1387 return 0;
1388}
1389
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001390static void scrub_bio_wait_endio(struct bio *bio)
Miao Xieaf8e2d12014-10-23 14:42:50 +08001391{
Liu Bob4ff5ad2017-11-30 17:26:39 -07001392 complete(bio->bi_private);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001393}
1394
Miao Xieaf8e2d12014-10-23 14:42:50 +08001395static int scrub_submit_raid56_bio_wait(struct btrfs_fs_info *fs_info,
1396 struct bio *bio,
1397 struct scrub_page *page)
1398{
Liu Bob4ff5ad2017-11-30 17:26:39 -07001399 DECLARE_COMPLETION_ONSTACK(done);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001400 int ret;
Liu Bo762221f2018-01-02 13:36:42 -07001401 int mirror_num;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001402
Miao Xieaf8e2d12014-10-23 14:42:50 +08001403 bio->bi_iter.bi_sector = page->logical >> 9;
1404 bio->bi_private = &done;
1405 bio->bi_end_io = scrub_bio_wait_endio;
1406
Liu Bo762221f2018-01-02 13:36:42 -07001407 mirror_num = page->sblock->pagev[0]->mirror_num;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001408 ret = raid56_parity_recover(fs_info, bio, page->recover->bbio,
Miao Xieaf8e2d12014-10-23 14:42:50 +08001409 page->recover->map_length,
Liu Bo762221f2018-01-02 13:36:42 -07001410 mirror_num, 0);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001411 if (ret)
1412 return ret;
1413
Liu Bob4ff5ad2017-11-30 17:26:39 -07001414 wait_for_completion_io(&done);
1415 return blk_status_to_errno(bio->bi_status);
Miao Xieaf8e2d12014-10-23 14:42:50 +08001416}
1417
Liu Bo6ca17652018-03-07 12:08:09 -07001418static void scrub_recheck_block_on_raid56(struct btrfs_fs_info *fs_info,
1419 struct scrub_block *sblock)
1420{
1421 struct scrub_page *first_page = sblock->pagev[0];
1422 struct bio *bio;
1423 int page_num;
1424
1425 /* All pages in sblock belong to the same stripe on the same device. */
1426 ASSERT(first_page->dev);
1427 if (!first_page->dev->bdev)
1428 goto out;
1429
1430 bio = btrfs_io_bio_alloc(BIO_MAX_PAGES);
1431 bio_set_dev(bio, first_page->dev->bdev);
1432
1433 for (page_num = 0; page_num < sblock->page_count; page_num++) {
1434 struct scrub_page *page = sblock->pagev[page_num];
1435
1436 WARN_ON(!page->page);
1437 bio_add_page(bio, page->page, PAGE_SIZE, 0);
1438 }
1439
1440 if (scrub_submit_raid56_bio_wait(fs_info, bio, first_page)) {
1441 bio_put(bio);
1442 goto out;
1443 }
1444
1445 bio_put(bio);
1446
1447 scrub_recheck_block_checksum(sblock);
1448
1449 return;
1450out:
1451 for (page_num = 0; page_num < sblock->page_count; page_num++)
1452 sblock->pagev[page_num]->io_error = 1;
1453
1454 sblock->no_io_error_seen = 0;
1455}
1456
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001457/*
1458 * this function will check the on disk data for checksum errors, header
1459 * errors and read I/O errors. If any I/O errors happen, the exact pages
1460 * which are errored are marked as being bad. The goal is to enable scrub
1461 * to take those pages that are not errored from all the mirrors so that
1462 * the pages that are errored in the just handled mirror can be repaired.
1463 */
Stefan Behrens34f5c8e2012-11-02 16:16:26 +01001464static void scrub_recheck_block(struct btrfs_fs_info *fs_info,
Zhao Leiaffe4a52015-08-24 21:32:06 +08001465 struct scrub_block *sblock,
1466 int retry_failed_mirror)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001467{
1468 int page_num;
1469
1470 sblock->no_io_error_seen = 1;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001471
Liu Bo6ca17652018-03-07 12:08:09 -07001472 /* short cut for raid56 */
1473 if (!retry_failed_mirror && scrub_is_page_on_raid56(sblock->pagev[0]))
1474 return scrub_recheck_block_on_raid56(fs_info, sblock);
1475
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001476 for (page_num = 0; page_num < sblock->page_count; page_num++) {
1477 struct bio *bio;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001478 struct scrub_page *page = sblock->pagev[page_num];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001479
Stefan Behrens442a4f62012-05-25 16:06:08 +02001480 if (page->dev->bdev == NULL) {
Stefan Behrensea9947b2012-05-04 15:16:07 -04001481 page->io_error = 1;
1482 sblock->no_io_error_seen = 0;
1483 continue;
1484 }
1485
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001486 WARN_ON(!page->page);
David Sterbac5e4c3d2017-06-12 17:29:41 +02001487 bio = btrfs_io_bio_alloc(1);
Christoph Hellwig74d46992017-08-23 19:10:32 +02001488 bio_set_dev(bio, page->dev->bdev);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001489
Stefan Behrens34f5c8e2012-11-02 16:16:26 +01001490 bio_add_page(bio, page->page, PAGE_SIZE, 0);
Liu Bo6ca17652018-03-07 12:08:09 -07001491 bio->bi_iter.bi_sector = page->physical >> 9;
1492 bio->bi_opf = REQ_OP_READ;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001493
Liu Bo6ca17652018-03-07 12:08:09 -07001494 if (btrfsic_submit_bio_wait(bio)) {
1495 page->io_error = 1;
1496 sblock->no_io_error_seen = 0;
Miao Xieaf8e2d12014-10-23 14:42:50 +08001497 }
Kent Overstreet33879d42013-11-23 22:33:32 -08001498
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001499 bio_put(bio);
1500 }
1501
1502 if (sblock->no_io_error_seen)
Zhao Leiba7cf982015-08-24 21:18:02 +08001503 scrub_recheck_block_checksum(sblock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001504}
1505
Miao Xie17a9be22014-07-24 11:37:08 +08001506static inline int scrub_check_fsid(u8 fsid[],
1507 struct scrub_page *spage)
1508{
1509 struct btrfs_fs_devices *fs_devices = spage->dev->fs_devices;
1510 int ret;
1511
Anand Jain44880fd2017-07-29 17:50:09 +08001512 ret = memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Miao Xie17a9be22014-07-24 11:37:08 +08001513 return !ret;
1514}
1515
Zhao Leiba7cf982015-08-24 21:18:02 +08001516static void scrub_recheck_block_checksum(struct scrub_block *sblock)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001517{
Zhao Leiba7cf982015-08-24 21:18:02 +08001518 sblock->header_error = 0;
1519 sblock->checksum_error = 0;
1520 sblock->generation_error = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001521
Zhao Leiba7cf982015-08-24 21:18:02 +08001522 if (sblock->pagev[0]->flags & BTRFS_EXTENT_FLAG_DATA)
1523 scrub_checksum_data(sblock);
1524 else
1525 scrub_checksum_tree_block(sblock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001526}
1527
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001528static int scrub_repair_block_from_good_copy(struct scrub_block *sblock_bad,
Zhao Lei114ab502015-01-20 15:11:36 +08001529 struct scrub_block *sblock_good)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001530{
1531 int page_num;
1532 int ret = 0;
1533
1534 for (page_num = 0; page_num < sblock_bad->page_count; page_num++) {
1535 int ret_sub;
1536
1537 ret_sub = scrub_repair_page_from_good_copy(sblock_bad,
1538 sblock_good,
Zhao Lei114ab502015-01-20 15:11:36 +08001539 page_num, 1);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001540 if (ret_sub)
1541 ret = ret_sub;
1542 }
1543
1544 return ret;
1545}
1546
1547static int scrub_repair_page_from_good_copy(struct scrub_block *sblock_bad,
1548 struct scrub_block *sblock_good,
1549 int page_num, int force_write)
1550{
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001551 struct scrub_page *page_bad = sblock_bad->pagev[page_num];
1552 struct scrub_page *page_good = sblock_good->pagev[page_num];
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001553 struct btrfs_fs_info *fs_info = sblock_bad->sctx->fs_info;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001554
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001555 BUG_ON(page_bad->page == NULL);
1556 BUG_ON(page_good->page == NULL);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001557 if (force_write || sblock_bad->header_error ||
1558 sblock_bad->checksum_error || page_bad->io_error) {
1559 struct bio *bio;
1560 int ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001561
Stefan Behrensff023aa2012-11-06 11:43:11 +01001562 if (!page_bad->dev->bdev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001563 btrfs_warn_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04001564 "scrub_repair_page_from_good_copy(bdev == NULL) is unexpected");
Stefan Behrensff023aa2012-11-06 11:43:11 +01001565 return -EIO;
1566 }
1567
David Sterbac5e4c3d2017-06-12 17:29:41 +02001568 bio = btrfs_io_bio_alloc(1);
Christoph Hellwig74d46992017-08-23 19:10:32 +02001569 bio_set_dev(bio, page_bad->dev->bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001570 bio->bi_iter.bi_sector = page_bad->physical >> 9;
David Sterbaebcc3262018-06-29 10:56:53 +02001571 bio->bi_opf = REQ_OP_WRITE;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001572
1573 ret = bio_add_page(bio, page_good->page, PAGE_SIZE, 0);
1574 if (PAGE_SIZE != ret) {
1575 bio_put(bio);
1576 return -EIO;
1577 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001578
Mike Christie4e49ea42016-06-05 14:31:41 -05001579 if (btrfsic_submit_bio_wait(bio)) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02001580 btrfs_dev_stat_inc_and_print(page_bad->dev,
1581 BTRFS_DEV_STAT_WRITE_ERRS);
David Sterbae37abe92018-04-04 17:20:52 +02001582 atomic64_inc(&fs_info->dev_replace.num_write_errors);
Stefan Behrens442a4f62012-05-25 16:06:08 +02001583 bio_put(bio);
1584 return -EIO;
1585 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001586 bio_put(bio);
1587 }
1588
1589 return 0;
1590}
1591
Stefan Behrensff023aa2012-11-06 11:43:11 +01001592static void scrub_write_block_to_dev_replace(struct scrub_block *sblock)
1593{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001594 struct btrfs_fs_info *fs_info = sblock->sctx->fs_info;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001595 int page_num;
1596
Miao Xie5a6ac9e2014-11-06 17:20:58 +08001597 /*
1598 * This block is used for the check of the parity on the source device,
1599 * so the data needn't be written into the destination device.
1600 */
1601 if (sblock->sparity)
1602 return;
1603
Stefan Behrensff023aa2012-11-06 11:43:11 +01001604 for (page_num = 0; page_num < sblock->page_count; page_num++) {
1605 int ret;
1606
1607 ret = scrub_write_page_to_dev_replace(sblock, page_num);
1608 if (ret)
David Sterbae37abe92018-04-04 17:20:52 +02001609 atomic64_inc(&fs_info->dev_replace.num_write_errors);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001610 }
1611}
1612
1613static int scrub_write_page_to_dev_replace(struct scrub_block *sblock,
1614 int page_num)
1615{
1616 struct scrub_page *spage = sblock->pagev[page_num];
1617
1618 BUG_ON(spage->page == NULL);
David Sterbaa8b3a892020-05-29 15:26:07 +02001619 if (spage->io_error)
1620 clear_page(page_address(spage->page));
Stefan Behrensff023aa2012-11-06 11:43:11 +01001621
Stefan Behrensff023aa2012-11-06 11:43:11 +01001622 return scrub_add_page_to_wr_bio(sblock->sctx, spage);
1623}
1624
1625static int scrub_add_page_to_wr_bio(struct scrub_ctx *sctx,
1626 struct scrub_page *spage)
1627{
Stefan Behrensff023aa2012-11-06 11:43:11 +01001628 struct scrub_bio *sbio;
1629 int ret;
1630
David Sterba3fb99302017-05-16 19:10:32 +02001631 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001632again:
David Sterba3fb99302017-05-16 19:10:32 +02001633 if (!sctx->wr_curr_bio) {
1634 sctx->wr_curr_bio = kzalloc(sizeof(*sctx->wr_curr_bio),
David Sterba58c4e172016-02-11 10:49:42 +01001635 GFP_KERNEL);
David Sterba3fb99302017-05-16 19:10:32 +02001636 if (!sctx->wr_curr_bio) {
1637 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001638 return -ENOMEM;
1639 }
David Sterba3fb99302017-05-16 19:10:32 +02001640 sctx->wr_curr_bio->sctx = sctx;
1641 sctx->wr_curr_bio->page_count = 0;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001642 }
David Sterba3fb99302017-05-16 19:10:32 +02001643 sbio = sctx->wr_curr_bio;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001644 if (sbio->page_count == 0) {
1645 struct bio *bio;
1646
1647 sbio->physical = spage->physical_for_dev_replace;
1648 sbio->logical = spage->logical;
David Sterba3fb99302017-05-16 19:10:32 +02001649 sbio->dev = sctx->wr_tgtdev;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001650 bio = sbio->bio;
1651 if (!bio) {
David Sterbac5e4c3d2017-06-12 17:29:41 +02001652 bio = btrfs_io_bio_alloc(sctx->pages_per_wr_bio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001653 sbio->bio = bio;
1654 }
1655
1656 bio->bi_private = sbio;
1657 bio->bi_end_io = scrub_wr_bio_end_io;
Christoph Hellwig74d46992017-08-23 19:10:32 +02001658 bio_set_dev(bio, sbio->dev->bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001659 bio->bi_iter.bi_sector = sbio->physical >> 9;
David Sterbaebcc3262018-06-29 10:56:53 +02001660 bio->bi_opf = REQ_OP_WRITE;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001661 sbio->status = 0;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001662 } else if (sbio->physical + sbio->page_count * PAGE_SIZE !=
1663 spage->physical_for_dev_replace ||
1664 sbio->logical + sbio->page_count * PAGE_SIZE !=
1665 spage->logical) {
1666 scrub_wr_submit(sctx);
1667 goto again;
1668 }
1669
1670 ret = bio_add_page(sbio->bio, spage->page, PAGE_SIZE, 0);
1671 if (ret != PAGE_SIZE) {
1672 if (sbio->page_count < 1) {
1673 bio_put(sbio->bio);
1674 sbio->bio = NULL;
David Sterba3fb99302017-05-16 19:10:32 +02001675 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001676 return -EIO;
1677 }
1678 scrub_wr_submit(sctx);
1679 goto again;
1680 }
1681
1682 sbio->pagev[sbio->page_count] = spage;
1683 scrub_page_get(spage);
1684 sbio->page_count++;
David Sterba3fb99302017-05-16 19:10:32 +02001685 if (sbio->page_count == sctx->pages_per_wr_bio)
Stefan Behrensff023aa2012-11-06 11:43:11 +01001686 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02001687 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001688
1689 return 0;
1690}
1691
1692static void scrub_wr_submit(struct scrub_ctx *sctx)
1693{
Stefan Behrensff023aa2012-11-06 11:43:11 +01001694 struct scrub_bio *sbio;
1695
David Sterba3fb99302017-05-16 19:10:32 +02001696 if (!sctx->wr_curr_bio)
Stefan Behrensff023aa2012-11-06 11:43:11 +01001697 return;
1698
David Sterba3fb99302017-05-16 19:10:32 +02001699 sbio = sctx->wr_curr_bio;
1700 sctx->wr_curr_bio = NULL;
Christoph Hellwig74d46992017-08-23 19:10:32 +02001701 WARN_ON(!sbio->bio->bi_disk);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001702 scrub_pending_bio_inc(sctx);
1703 /* process all writes in a single worker thread. Then the block layer
1704 * orders the requests before sending them to the driver which
1705 * doubled the write performance on spinning disks when measured
1706 * with Linux 3.5 */
Mike Christie4e49ea42016-06-05 14:31:41 -05001707 btrfsic_submit_bio(sbio->bio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001708}
1709
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001710static void scrub_wr_bio_end_io(struct bio *bio)
Stefan Behrensff023aa2012-11-06 11:43:11 +01001711{
1712 struct scrub_bio *sbio = bio->bi_private;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001713 struct btrfs_fs_info *fs_info = sbio->dev->fs_info;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001714
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001715 sbio->status = bio->bi_status;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001716 sbio->bio = bio;
1717
Omar Sandovala0cac0e2019-09-16 11:30:57 -07001718 btrfs_init_work(&sbio->work, scrub_wr_bio_end_io_worker, NULL, NULL);
Qu Wenruo0339ef22014-02-28 10:46:17 +08001719 btrfs_queue_work(fs_info->scrub_wr_completion_workers, &sbio->work);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001720}
1721
1722static void scrub_wr_bio_end_io_worker(struct btrfs_work *work)
1723{
1724 struct scrub_bio *sbio = container_of(work, struct scrub_bio, work);
1725 struct scrub_ctx *sctx = sbio->sctx;
1726 int i;
1727
1728 WARN_ON(sbio->page_count > SCRUB_PAGES_PER_WR_BIO);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001729 if (sbio->status) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01001730 struct btrfs_dev_replace *dev_replace =
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001731 &sbio->sctx->fs_info->dev_replace;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001732
1733 for (i = 0; i < sbio->page_count; i++) {
1734 struct scrub_page *spage = sbio->pagev[i];
1735
1736 spage->io_error = 1;
David Sterbae37abe92018-04-04 17:20:52 +02001737 atomic64_inc(&dev_replace->num_write_errors);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001738 }
1739 }
1740
1741 for (i = 0; i < sbio->page_count; i++)
1742 scrub_page_put(sbio->pagev[i]);
1743
1744 bio_put(sbio->bio);
1745 kfree(sbio);
1746 scrub_pending_bio_dec(sctx);
1747}
1748
1749static int scrub_checksum(struct scrub_block *sblock)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001750{
1751 u64 flags;
1752 int ret;
1753
Zhao Leiba7cf982015-08-24 21:18:02 +08001754 /*
1755 * No need to initialize these stats currently,
1756 * because this function only use return value
1757 * instead of these stats value.
1758 *
1759 * Todo:
1760 * always use stats
1761 */
1762 sblock->header_error = 0;
1763 sblock->generation_error = 0;
1764 sblock->checksum_error = 0;
1765
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001766 WARN_ON(sblock->page_count < 1);
1767 flags = sblock->pagev[0]->flags;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001768 ret = 0;
1769 if (flags & BTRFS_EXTENT_FLAG_DATA)
1770 ret = scrub_checksum_data(sblock);
1771 else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)
1772 ret = scrub_checksum_tree_block(sblock);
1773 else if (flags & BTRFS_EXTENT_FLAG_SUPER)
1774 (void)scrub_checksum_super(sblock);
1775 else
1776 WARN_ON(1);
1777 if (ret)
1778 scrub_handle_errored_block(sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001779
1780 return ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001781}
1782
1783static int scrub_checksum_data(struct scrub_block *sblock)
1784{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001785 struct scrub_ctx *sctx = sblock->sctx;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001786 struct btrfs_fs_info *fs_info = sctx->fs_info;
1787 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Arne Jansena2de7332011-03-08 14:14:00 +01001788 u8 csum[BTRFS_CSUM_SIZE];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001789 u8 *on_disk_csum;
1790 struct page *page;
David Sterbab0485252020-05-29 15:32:51 +02001791 char *kaddr;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001792 u64 len;
1793 int index;
Arne Jansena2de7332011-03-08 14:14:00 +01001794
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001795 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001796 if (!sblock->pagev[0]->have_csum)
Arne Jansena2de7332011-03-08 14:14:00 +01001797 return 0;
1798
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001799 shash->tfm = fs_info->csum_shash;
1800 crypto_shash_init(shash);
1801
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001802 on_disk_csum = sblock->pagev[0]->csum;
1803 page = sblock->pagev[0]->page;
David Sterbab0485252020-05-29 15:32:51 +02001804 kaddr = page_address(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001805
David Sterba25cc1222017-05-16 19:10:41 +02001806 len = sctx->fs_info->sectorsize;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001807 index = 0;
1808 for (;;) {
1809 u64 l = min_t(u64, len, PAGE_SIZE);
1810
David Sterbab0485252020-05-29 15:32:51 +02001811 crypto_shash_update(shash, kaddr, l);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001812 len -= l;
1813 if (len == 0)
1814 break;
1815 index++;
1816 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001817 BUG_ON(!sblock->pagev[index]->page);
1818 page = sblock->pagev[index]->page;
David Sterbab0485252020-05-29 15:32:51 +02001819 kaddr = page_address(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001820 }
1821
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001822 crypto_shash_final(shash, csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001823 if (memcmp(csum, on_disk_csum, sctx->csum_size))
Zhao Leiba7cf982015-08-24 21:18:02 +08001824 sblock->checksum_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001825
Zhao Leiba7cf982015-08-24 21:18:02 +08001826 return sblock->checksum_error;
Arne Jansena2de7332011-03-08 14:14:00 +01001827}
1828
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001829static int scrub_checksum_tree_block(struct scrub_block *sblock)
Arne Jansena2de7332011-03-08 14:14:00 +01001830{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001831 struct scrub_ctx *sctx = sblock->sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01001832 struct btrfs_header *h;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001833 struct btrfs_fs_info *fs_info = sctx->fs_info;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001834 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001835 u8 calculated_csum[BTRFS_CSUM_SIZE];
1836 u8 on_disk_csum[BTRFS_CSUM_SIZE];
1837 struct page *page;
David Sterbab0485252020-05-29 15:32:51 +02001838 char *kaddr;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001839 u64 mapped_size;
1840 void *p;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001841 u64 len;
1842 int index;
1843
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001844 shash->tfm = fs_info->csum_shash;
1845 crypto_shash_init(shash);
1846
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001847 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001848 page = sblock->pagev[0]->page;
David Sterbab0485252020-05-29 15:32:51 +02001849 kaddr = page_address(page);
1850 h = (struct btrfs_header *)kaddr;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001851 memcpy(on_disk_csum, h->csum, sctx->csum_size);
Arne Jansena2de7332011-03-08 14:14:00 +01001852
1853 /*
1854 * we don't use the getter functions here, as we
1855 * a) don't have an extent buffer and
1856 * b) the page is already kmapped
1857 */
Qu Wenruo3cae2102013-07-16 11:19:18 +08001858 if (sblock->pagev[0]->logical != btrfs_stack_header_bytenr(h))
Zhao Leiba7cf982015-08-24 21:18:02 +08001859 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001860
Zhao Leiba7cf982015-08-24 21:18:02 +08001861 if (sblock->pagev[0]->generation != btrfs_stack_header_generation(h)) {
1862 sblock->header_error = 1;
1863 sblock->generation_error = 1;
1864 }
Arne Jansena2de7332011-03-08 14:14:00 +01001865
Miao Xie17a9be22014-07-24 11:37:08 +08001866 if (!scrub_check_fsid(h->fsid, sblock->pagev[0]))
Zhao Leiba7cf982015-08-24 21:18:02 +08001867 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001868
1869 if (memcmp(h->chunk_tree_uuid, fs_info->chunk_tree_uuid,
1870 BTRFS_UUID_SIZE))
Zhao Leiba7cf982015-08-24 21:18:02 +08001871 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001872
David Sterba25cc1222017-05-16 19:10:41 +02001873 len = sctx->fs_info->nodesize - BTRFS_CSUM_SIZE;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001874 mapped_size = PAGE_SIZE - BTRFS_CSUM_SIZE;
David Sterbab0485252020-05-29 15:32:51 +02001875 p = kaddr + BTRFS_CSUM_SIZE;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001876 index = 0;
1877 for (;;) {
1878 u64 l = min_t(u64, len, mapped_size);
1879
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001880 crypto_shash_update(shash, p, l);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001881 len -= l;
1882 if (len == 0)
1883 break;
1884 index++;
1885 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001886 BUG_ON(!sblock->pagev[index]->page);
1887 page = sblock->pagev[index]->page;
David Sterbab0485252020-05-29 15:32:51 +02001888 kaddr = page_address(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001889 mapped_size = PAGE_SIZE;
David Sterbab0485252020-05-29 15:32:51 +02001890 p = kaddr;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001891 }
1892
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001893 crypto_shash_final(shash, calculated_csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001894 if (memcmp(calculated_csum, on_disk_csum, sctx->csum_size))
Zhao Leiba7cf982015-08-24 21:18:02 +08001895 sblock->checksum_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001896
Zhao Leiba7cf982015-08-24 21:18:02 +08001897 return sblock->header_error || sblock->checksum_error;
Arne Jansena2de7332011-03-08 14:14:00 +01001898}
1899
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001900static int scrub_checksum_super(struct scrub_block *sblock)
Arne Jansena2de7332011-03-08 14:14:00 +01001901{
1902 struct btrfs_super_block *s;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001903 struct scrub_ctx *sctx = sblock->sctx;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001904 struct btrfs_fs_info *fs_info = sctx->fs_info;
1905 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001906 u8 calculated_csum[BTRFS_CSUM_SIZE];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001907 struct page *page;
David Sterbab0485252020-05-29 15:32:51 +02001908 char *kaddr;
Stefan Behrens442a4f62012-05-25 16:06:08 +02001909 int fail_gen = 0;
1910 int fail_cor = 0;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001911
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001912 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001913 page = sblock->pagev[0]->page;
David Sterbab0485252020-05-29 15:32:51 +02001914 kaddr = page_address(page);
1915 s = (struct btrfs_super_block *)kaddr;
Arne Jansena2de7332011-03-08 14:14:00 +01001916
Qu Wenruo3cae2102013-07-16 11:19:18 +08001917 if (sblock->pagev[0]->logical != btrfs_super_bytenr(s))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001918 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001919
Qu Wenruo3cae2102013-07-16 11:19:18 +08001920 if (sblock->pagev[0]->generation != btrfs_super_generation(s))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001921 ++fail_gen;
Arne Jansena2de7332011-03-08 14:14:00 +01001922
Miao Xie17a9be22014-07-24 11:37:08 +08001923 if (!scrub_check_fsid(s->fsid, sblock->pagev[0]))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001924 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001925
David Sterba83cf6d52020-05-29 15:40:36 +02001926 shash->tfm = fs_info->csum_shash;
1927 crypto_shash_init(shash);
1928 crypto_shash_digest(shash, kaddr + BTRFS_CSUM_SIZE,
1929 BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE, calculated_csum);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001930
David Sterba74710cf2020-05-29 15:43:14 +02001931 if (memcmp(calculated_csum, s->csum, sctx->csum_size))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001932 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001933
Stefan Behrens442a4f62012-05-25 16:06:08 +02001934 if (fail_cor + fail_gen) {
Arne Jansena2de7332011-03-08 14:14:00 +01001935 /*
1936 * if we find an error in a super block, we just report it.
1937 * They will get written with the next transaction commit
1938 * anyway
1939 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001940 spin_lock(&sctx->stat_lock);
1941 ++sctx->stat.super_errors;
1942 spin_unlock(&sctx->stat_lock);
Stefan Behrens442a4f62012-05-25 16:06:08 +02001943 if (fail_cor)
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001944 btrfs_dev_stat_inc_and_print(sblock->pagev[0]->dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +02001945 BTRFS_DEV_STAT_CORRUPTION_ERRS);
1946 else
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001947 btrfs_dev_stat_inc_and_print(sblock->pagev[0]->dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +02001948 BTRFS_DEV_STAT_GENERATION_ERRS);
Arne Jansena2de7332011-03-08 14:14:00 +01001949 }
1950
Stefan Behrens442a4f62012-05-25 16:06:08 +02001951 return fail_cor + fail_gen;
Arne Jansena2de7332011-03-08 14:14:00 +01001952}
1953
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001954static void scrub_block_get(struct scrub_block *sblock)
1955{
Elena Reshetova186debd2017-03-03 10:55:23 +02001956 refcount_inc(&sblock->refs);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001957}
1958
1959static void scrub_block_put(struct scrub_block *sblock)
1960{
Elena Reshetova186debd2017-03-03 10:55:23 +02001961 if (refcount_dec_and_test(&sblock->refs)) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001962 int i;
1963
Miao Xie5a6ac9e2014-11-06 17:20:58 +08001964 if (sblock->sparity)
1965 scrub_parity_put(sblock->sparity);
1966
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001967 for (i = 0; i < sblock->page_count; i++)
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001968 scrub_page_put(sblock->pagev[i]);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001969 kfree(sblock);
1970 }
1971}
1972
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001973static void scrub_page_get(struct scrub_page *spage)
1974{
Zhao Lei57019342015-01-20 15:11:45 +08001975 atomic_inc(&spage->refs);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001976}
1977
1978static void scrub_page_put(struct scrub_page *spage)
1979{
Zhao Lei57019342015-01-20 15:11:45 +08001980 if (atomic_dec_and_test(&spage->refs)) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001981 if (spage->page)
1982 __free_page(spage->page);
1983 kfree(spage);
1984 }
1985}
1986
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001987static void scrub_submit(struct scrub_ctx *sctx)
Arne Jansena2de7332011-03-08 14:14:00 +01001988{
1989 struct scrub_bio *sbio;
1990
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001991 if (sctx->curr == -1)
Stefan Behrens1623ede2012-03-27 14:21:26 -04001992 return;
Arne Jansena2de7332011-03-08 14:14:00 +01001993
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001994 sbio = sctx->bios[sctx->curr];
1995 sctx->curr = -1;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01001996 scrub_pending_bio_inc(sctx);
Mike Christie4e49ea42016-06-05 14:31:41 -05001997 btrfsic_submit_bio(sbio->bio);
Arne Jansena2de7332011-03-08 14:14:00 +01001998}
1999
Stefan Behrensff023aa2012-11-06 11:43:11 +01002000static int scrub_add_page_to_rd_bio(struct scrub_ctx *sctx,
2001 struct scrub_page *spage)
Arne Jansena2de7332011-03-08 14:14:00 +01002002{
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002003 struct scrub_block *sblock = spage->sblock;
Arne Jansena2de7332011-03-08 14:14:00 +01002004 struct scrub_bio *sbio;
Arne Jansen69f4cb52011-11-11 08:17:10 -05002005 int ret;
Arne Jansena2de7332011-03-08 14:14:00 +01002006
2007again:
2008 /*
2009 * grab a fresh bio or wait for one to become available
2010 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002011 while (sctx->curr == -1) {
2012 spin_lock(&sctx->list_lock);
2013 sctx->curr = sctx->first_free;
2014 if (sctx->curr != -1) {
2015 sctx->first_free = sctx->bios[sctx->curr]->next_free;
2016 sctx->bios[sctx->curr]->next_free = -1;
2017 sctx->bios[sctx->curr]->page_count = 0;
2018 spin_unlock(&sctx->list_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01002019 } else {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002020 spin_unlock(&sctx->list_lock);
2021 wait_event(sctx->list_wait, sctx->first_free != -1);
Arne Jansena2de7332011-03-08 14:14:00 +01002022 }
2023 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002024 sbio = sctx->bios[sctx->curr];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002025 if (sbio->page_count == 0) {
Arne Jansen69f4cb52011-11-11 08:17:10 -05002026 struct bio *bio;
2027
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002028 sbio->physical = spage->physical;
2029 sbio->logical = spage->logical;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002030 sbio->dev = spage->dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002031 bio = sbio->bio;
2032 if (!bio) {
David Sterbac5e4c3d2017-06-12 17:29:41 +02002033 bio = btrfs_io_bio_alloc(sctx->pages_per_rd_bio);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002034 sbio->bio = bio;
2035 }
Arne Jansen69f4cb52011-11-11 08:17:10 -05002036
2037 bio->bi_private = sbio;
2038 bio->bi_end_io = scrub_bio_end_io;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002039 bio_set_dev(bio, sbio->dev->bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002040 bio->bi_iter.bi_sector = sbio->physical >> 9;
David Sterbaebcc3262018-06-29 10:56:53 +02002041 bio->bi_opf = REQ_OP_READ;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002042 sbio->status = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002043 } else if (sbio->physical + sbio->page_count * PAGE_SIZE !=
2044 spage->physical ||
2045 sbio->logical + sbio->page_count * PAGE_SIZE !=
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002046 spage->logical ||
2047 sbio->dev != spage->dev) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002048 scrub_submit(sctx);
Arne Jansen69f4cb52011-11-11 08:17:10 -05002049 goto again;
2050 }
2051
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002052 sbio->pagev[sbio->page_count] = spage;
2053 ret = bio_add_page(sbio->bio, spage->page, PAGE_SIZE, 0);
2054 if (ret != PAGE_SIZE) {
2055 if (sbio->page_count < 1) {
2056 bio_put(sbio->bio);
2057 sbio->bio = NULL;
2058 return -EIO;
2059 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002060 scrub_submit(sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002061 goto again;
Arne Jansena2de7332011-03-08 14:14:00 +01002062 }
Arne Jansen1bc87792011-05-28 21:57:55 +02002063
Stefan Behrensff023aa2012-11-06 11:43:11 +01002064 scrub_block_get(sblock); /* one for the page added to the bio */
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002065 atomic_inc(&sblock->outstanding_pages);
2066 sbio->page_count++;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002067 if (sbio->page_count == sctx->pages_per_rd_bio)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002068 scrub_submit(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01002069
2070 return 0;
2071}
2072
Linus Torvalds22365972015-09-05 15:14:43 -07002073static void scrub_missing_raid56_end_io(struct bio *bio)
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002074{
2075 struct scrub_block *sblock = bio->bi_private;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002076 struct btrfs_fs_info *fs_info = sblock->sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002077
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002078 if (bio->bi_status)
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002079 sblock->no_io_error_seen = 0;
2080
Scott Talbert46732722016-05-09 09:14:28 -04002081 bio_put(bio);
2082
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002083 btrfs_queue_work(fs_info->scrub_workers, &sblock->work);
2084}
2085
2086static void scrub_missing_raid56_worker(struct btrfs_work *work)
2087{
2088 struct scrub_block *sblock = container_of(work, struct scrub_block, work);
2089 struct scrub_ctx *sctx = sblock->sctx;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002090 struct btrfs_fs_info *fs_info = sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002091 u64 logical;
2092 struct btrfs_device *dev;
2093
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002094 logical = sblock->pagev[0]->logical;
2095 dev = sblock->pagev[0]->dev;
2096
Zhao Leiaffe4a52015-08-24 21:32:06 +08002097 if (sblock->no_io_error_seen)
Zhao Leiba7cf982015-08-24 21:18:02 +08002098 scrub_recheck_block_checksum(sblock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002099
2100 if (!sblock->no_io_error_seen) {
2101 spin_lock(&sctx->stat_lock);
2102 sctx->stat.read_errors++;
2103 spin_unlock(&sctx->stat_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002104 btrfs_err_rl_in_rcu(fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02002105 "IO error rebuilding logical %llu for dev %s",
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002106 logical, rcu_str_deref(dev->name));
2107 } else if (sblock->header_error || sblock->checksum_error) {
2108 spin_lock(&sctx->stat_lock);
2109 sctx->stat.uncorrectable_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 "failed to rebuild valid logical %llu for dev %s",
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002113 logical, rcu_str_deref(dev->name));
2114 } else {
2115 scrub_write_block_to_dev_replace(sblock);
2116 }
2117
David Sterba2073c4c2017-03-31 17:12:51 +02002118 if (sctx->is_dev_replace && sctx->flush_all_writes) {
David Sterba3fb99302017-05-16 19:10:32 +02002119 mutex_lock(&sctx->wr_lock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002120 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02002121 mutex_unlock(&sctx->wr_lock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002122 }
2123
Omar Sandoval57d4f0b2019-09-16 11:30:56 -07002124 scrub_block_put(sblock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002125 scrub_pending_bio_dec(sctx);
2126}
2127
2128static void scrub_missing_raid56_pages(struct scrub_block *sblock)
2129{
2130 struct scrub_ctx *sctx = sblock->sctx;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002131 struct btrfs_fs_info *fs_info = sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002132 u64 length = sblock->page_count * PAGE_SIZE;
2133 u64 logical = sblock->pagev[0]->logical;
Zhao Leif1fee652016-05-17 17:37:38 +08002134 struct btrfs_bio *bbio = NULL;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002135 struct bio *bio;
2136 struct btrfs_raid_bio *rbio;
2137 int ret;
2138 int i;
2139
Qu Wenruoae6529c2017-03-29 09:33:21 +08002140 btrfs_bio_counter_inc_blocked(fs_info);
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02002141 ret = btrfs_map_sblock(fs_info, BTRFS_MAP_GET_READ_MIRRORS, logical,
David Sterba825ad4c2017-03-28 14:45:22 +02002142 &length, &bbio);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002143 if (ret || !bbio || !bbio->raid_map)
2144 goto bbio_out;
2145
2146 if (WARN_ON(!sctx->is_dev_replace ||
2147 !(bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK))) {
2148 /*
2149 * We shouldn't be scrubbing a missing device. Even for dev
2150 * replace, we should only get here for RAID 5/6. We either
2151 * managed to mount something with no mirrors remaining or
2152 * there's a bug in scrub_remap_extent()/btrfs_map_block().
2153 */
2154 goto bbio_out;
2155 }
2156
David Sterbac5e4c3d2017-06-12 17:29:41 +02002157 bio = btrfs_io_bio_alloc(0);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002158 bio->bi_iter.bi_sector = logical >> 9;
2159 bio->bi_private = sblock;
2160 bio->bi_end_io = scrub_missing_raid56_end_io;
2161
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002162 rbio = raid56_alloc_missing_rbio(fs_info, bio, bbio, length);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002163 if (!rbio)
2164 goto rbio_out;
2165
2166 for (i = 0; i < sblock->page_count; i++) {
2167 struct scrub_page *spage = sblock->pagev[i];
2168
2169 raid56_add_scrub_pages(rbio, spage->page, spage->logical);
2170 }
2171
Omar Sandovala0cac0e2019-09-16 11:30:57 -07002172 btrfs_init_work(&sblock->work, scrub_missing_raid56_worker, NULL, NULL);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002173 scrub_block_get(sblock);
2174 scrub_pending_bio_inc(sctx);
2175 raid56_submit_missing_rbio(rbio);
2176 return;
2177
2178rbio_out:
2179 bio_put(bio);
2180bbio_out:
Qu Wenruoae6529c2017-03-29 09:33:21 +08002181 btrfs_bio_counter_dec(fs_info);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002182 btrfs_put_bbio(bbio);
2183 spin_lock(&sctx->stat_lock);
2184 sctx->stat.malloc_errors++;
2185 spin_unlock(&sctx->stat_lock);
2186}
2187
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002188static int scrub_pages(struct scrub_ctx *sctx, u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002189 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002190 u64 gen, int mirror_num, u8 *csum, int force,
2191 u64 physical_for_dev_replace)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002192{
2193 struct scrub_block *sblock;
2194 int index;
2195
David Sterba58c4e172016-02-11 10:49:42 +01002196 sblock = kzalloc(sizeof(*sblock), GFP_KERNEL);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002197 if (!sblock) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002198 spin_lock(&sctx->stat_lock);
2199 sctx->stat.malloc_errors++;
2200 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002201 return -ENOMEM;
2202 }
2203
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002204 /* one ref inside this function, plus one for each page added to
2205 * a bio later on */
Elena Reshetova186debd2017-03-03 10:55:23 +02002206 refcount_set(&sblock->refs, 1);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002207 sblock->sctx = sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002208 sblock->no_io_error_seen = 1;
2209
2210 for (index = 0; len > 0; index++) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002211 struct scrub_page *spage;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002212 u64 l = min_t(u64, len, PAGE_SIZE);
2213
David Sterba58c4e172016-02-11 10:49:42 +01002214 spage = kzalloc(sizeof(*spage), GFP_KERNEL);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002215 if (!spage) {
2216leave_nomem:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002217 spin_lock(&sctx->stat_lock);
2218 sctx->stat.malloc_errors++;
2219 spin_unlock(&sctx->stat_lock);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002220 scrub_block_put(sblock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002221 return -ENOMEM;
2222 }
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002223 BUG_ON(index >= SCRUB_MAX_PAGES_PER_BLOCK);
2224 scrub_page_get(spage);
2225 sblock->pagev[index] = spage;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002226 spage->sblock = sblock;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002227 spage->dev = dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002228 spage->flags = flags;
2229 spage->generation = gen;
2230 spage->logical = logical;
2231 spage->physical = physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002232 spage->physical_for_dev_replace = physical_for_dev_replace;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002233 spage->mirror_num = mirror_num;
2234 if (csum) {
2235 spage->have_csum = 1;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002236 memcpy(spage->csum, csum, sctx->csum_size);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002237 } else {
2238 spage->have_csum = 0;
2239 }
2240 sblock->page_count++;
David Sterba58c4e172016-02-11 10:49:42 +01002241 spage->page = alloc_page(GFP_KERNEL);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002242 if (!spage->page)
2243 goto leave_nomem;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002244 len -= l;
2245 logical += l;
2246 physical += l;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002247 physical_for_dev_replace += l;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002248 }
2249
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002250 WARN_ON(sblock->page_count == 0);
Anand Jaine6e674b2017-12-04 12:54:54 +08002251 if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state)) {
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002252 /*
2253 * This case should only be hit for RAID 5/6 device replace. See
2254 * the comment in scrub_missing_raid56_pages() for details.
2255 */
2256 scrub_missing_raid56_pages(sblock);
2257 } else {
2258 for (index = 0; index < sblock->page_count; index++) {
2259 struct scrub_page *spage = sblock->pagev[index];
2260 int ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002261
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002262 ret = scrub_add_page_to_rd_bio(sctx, spage);
2263 if (ret) {
2264 scrub_block_put(sblock);
2265 return ret;
2266 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002267 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002268
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002269 if (force)
2270 scrub_submit(sctx);
2271 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002272
2273 /* last one frees, either here or in bio completion for last page */
2274 scrub_block_put(sblock);
2275 return 0;
2276}
2277
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002278static void scrub_bio_end_io(struct bio *bio)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002279{
2280 struct scrub_bio *sbio = bio->bi_private;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002281 struct btrfs_fs_info *fs_info = sbio->dev->fs_info;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002282
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002283 sbio->status = bio->bi_status;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002284 sbio->bio = bio;
2285
Qu Wenruo0339ef22014-02-28 10:46:17 +08002286 btrfs_queue_work(fs_info->scrub_workers, &sbio->work);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002287}
2288
2289static void scrub_bio_end_io_worker(struct btrfs_work *work)
2290{
2291 struct scrub_bio *sbio = container_of(work, struct scrub_bio, work);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002292 struct scrub_ctx *sctx = sbio->sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002293 int i;
2294
Stefan Behrensff023aa2012-11-06 11:43:11 +01002295 BUG_ON(sbio->page_count > SCRUB_PAGES_PER_RD_BIO);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002296 if (sbio->status) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002297 for (i = 0; i < sbio->page_count; i++) {
2298 struct scrub_page *spage = sbio->pagev[i];
2299
2300 spage->io_error = 1;
2301 spage->sblock->no_io_error_seen = 0;
2302 }
2303 }
2304
2305 /* now complete the scrub_block items that have all pages completed */
2306 for (i = 0; i < sbio->page_count; i++) {
2307 struct scrub_page *spage = sbio->pagev[i];
2308 struct scrub_block *sblock = spage->sblock;
2309
2310 if (atomic_dec_and_test(&sblock->outstanding_pages))
2311 scrub_block_complete(sblock);
2312 scrub_block_put(sblock);
2313 }
2314
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002315 bio_put(sbio->bio);
2316 sbio->bio = NULL;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002317 spin_lock(&sctx->list_lock);
2318 sbio->next_free = sctx->first_free;
2319 sctx->first_free = sbio->index;
2320 spin_unlock(&sctx->list_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002321
David Sterba2073c4c2017-03-31 17:12:51 +02002322 if (sctx->is_dev_replace && sctx->flush_all_writes) {
David Sterba3fb99302017-05-16 19:10:32 +02002323 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002324 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02002325 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002326 }
2327
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002328 scrub_pending_bio_dec(sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002329}
2330
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002331static inline void __scrub_mark_bitmap(struct scrub_parity *sparity,
2332 unsigned long *bitmap,
2333 u64 start, u64 len)
2334{
Liu Bo972d7212017-04-03 13:45:33 -07002335 u64 offset;
David Sterba7736b0a2017-03-31 18:02:48 +02002336 u64 nsectors64;
2337 u32 nsectors;
Jeff Mahoneyda170662016-06-15 09:22:56 -04002338 int sectorsize = sparity->sctx->fs_info->sectorsize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002339
2340 if (len >= sparity->stripe_len) {
2341 bitmap_set(bitmap, 0, sparity->nsectors);
2342 return;
2343 }
2344
2345 start -= sparity->logic_start;
Liu Bo972d7212017-04-03 13:45:33 -07002346 start = div64_u64_rem(start, sparity->stripe_len, &offset);
2347 offset = div_u64(offset, sectorsize);
David Sterba7736b0a2017-03-31 18:02:48 +02002348 nsectors64 = div_u64(len, sectorsize);
2349
2350 ASSERT(nsectors64 < UINT_MAX);
2351 nsectors = (u32)nsectors64;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002352
2353 if (offset + nsectors <= sparity->nsectors) {
2354 bitmap_set(bitmap, offset, nsectors);
2355 return;
2356 }
2357
2358 bitmap_set(bitmap, offset, sparity->nsectors - offset);
2359 bitmap_set(bitmap, 0, nsectors - (sparity->nsectors - offset));
2360}
2361
2362static inline void scrub_parity_mark_sectors_error(struct scrub_parity *sparity,
2363 u64 start, u64 len)
2364{
2365 __scrub_mark_bitmap(sparity, sparity->ebitmap, start, len);
2366}
2367
2368static inline void scrub_parity_mark_sectors_data(struct scrub_parity *sparity,
2369 u64 start, u64 len)
2370{
2371 __scrub_mark_bitmap(sparity, sparity->dbitmap, start, len);
2372}
2373
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002374static void scrub_block_complete(struct scrub_block *sblock)
2375{
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002376 int corrupted = 0;
2377
Stefan Behrensff023aa2012-11-06 11:43:11 +01002378 if (!sblock->no_io_error_seen) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002379 corrupted = 1;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002380 scrub_handle_errored_block(sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002381 } else {
2382 /*
2383 * if has checksum error, write via repair mechanism in
2384 * dev replace case, otherwise write here in dev replace
2385 * case.
2386 */
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002387 corrupted = scrub_checksum(sblock);
2388 if (!corrupted && sblock->sctx->is_dev_replace)
Stefan Behrensff023aa2012-11-06 11:43:11 +01002389 scrub_write_block_to_dev_replace(sblock);
2390 }
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002391
2392 if (sblock->sparity && corrupted && !sblock->data_corrected) {
2393 u64 start = sblock->pagev[0]->logical;
2394 u64 end = sblock->pagev[sblock->page_count - 1]->logical +
2395 PAGE_SIZE;
2396
2397 scrub_parity_mark_sectors_error(sblock->sparity,
2398 start, end - start);
2399 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002400}
2401
Zhao Lei3b5753e2015-08-24 22:03:02 +08002402static int scrub_find_csum(struct scrub_ctx *sctx, u64 logical, u8 *csum)
Arne Jansena2de7332011-03-08 14:14:00 +01002403{
2404 struct btrfs_ordered_sum *sum = NULL;
Miao Xief51a4a12013-06-19 10:36:09 +08002405 unsigned long index;
Arne Jansena2de7332011-03-08 14:14:00 +01002406 unsigned long num_sectors;
Arne Jansena2de7332011-03-08 14:14:00 +01002407
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002408 while (!list_empty(&sctx->csum_list)) {
2409 sum = list_first_entry(&sctx->csum_list,
Arne Jansena2de7332011-03-08 14:14:00 +01002410 struct btrfs_ordered_sum, list);
2411 if (sum->bytenr > logical)
2412 return 0;
2413 if (sum->bytenr + sum->len > logical)
2414 break;
2415
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002416 ++sctx->stat.csum_discards;
Arne Jansena2de7332011-03-08 14:14:00 +01002417 list_del(&sum->list);
2418 kfree(sum);
2419 sum = NULL;
2420 }
2421 if (!sum)
2422 return 0;
2423
David Sterba1d1bf922017-03-31 18:02:48 +02002424 index = div_u64(logical - sum->bytenr, sctx->fs_info->sectorsize);
2425 ASSERT(index < UINT_MAX);
2426
David Sterba25cc1222017-05-16 19:10:41 +02002427 num_sectors = sum->len / sctx->fs_info->sectorsize;
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +02002428 memcpy(csum, sum->sums + index * sctx->csum_size, sctx->csum_size);
Miao Xief51a4a12013-06-19 10:36:09 +08002429 if (index == num_sectors - 1) {
Arne Jansena2de7332011-03-08 14:14:00 +01002430 list_del(&sum->list);
2431 kfree(sum);
2432 }
Miao Xief51a4a12013-06-19 10:36:09 +08002433 return 1;
Arne Jansena2de7332011-03-08 14:14:00 +01002434}
2435
2436/* scrub extent tries to collect up to 64 kB for each bio */
Liu Bo6ca17652018-03-07 12:08:09 -07002437static int scrub_extent(struct scrub_ctx *sctx, struct map_lookup *map,
2438 u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002439 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002440 u64 gen, int mirror_num, u64 physical_for_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01002441{
2442 int ret;
2443 u8 csum[BTRFS_CSUM_SIZE];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002444 u32 blocksize;
2445
2446 if (flags & BTRFS_EXTENT_FLAG_DATA) {
Liu Bo6ca17652018-03-07 12:08:09 -07002447 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
2448 blocksize = map->stripe_len;
2449 else
2450 blocksize = sctx->fs_info->sectorsize;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002451 spin_lock(&sctx->stat_lock);
2452 sctx->stat.data_extents_scrubbed++;
2453 sctx->stat.data_bytes_scrubbed += len;
2454 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002455 } else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
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->nodesize;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002460 spin_lock(&sctx->stat_lock);
2461 sctx->stat.tree_extents_scrubbed++;
2462 sctx->stat.tree_bytes_scrubbed += len;
2463 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002464 } else {
David Sterba25cc1222017-05-16 19:10:41 +02002465 blocksize = sctx->fs_info->sectorsize;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002466 WARN_ON(1);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002467 }
Arne Jansena2de7332011-03-08 14:14:00 +01002468
2469 while (len) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002470 u64 l = min_t(u64, len, blocksize);
Arne Jansena2de7332011-03-08 14:14:00 +01002471 int have_csum = 0;
2472
2473 if (flags & BTRFS_EXTENT_FLAG_DATA) {
2474 /* push csums to sbio */
Zhao Lei3b5753e2015-08-24 22:03:02 +08002475 have_csum = scrub_find_csum(sctx, logical, csum);
Arne Jansena2de7332011-03-08 14:14:00 +01002476 if (have_csum == 0)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002477 ++sctx->stat.no_csum;
Arne Jansena2de7332011-03-08 14:14:00 +01002478 }
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002479 ret = scrub_pages(sctx, logical, l, physical, dev, flags, gen,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002480 mirror_num, have_csum ? csum : NULL, 0,
2481 physical_for_dev_replace);
Arne Jansena2de7332011-03-08 14:14:00 +01002482 if (ret)
2483 return ret;
2484 len -= l;
2485 logical += l;
2486 physical += l;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002487 physical_for_dev_replace += l;
Arne Jansena2de7332011-03-08 14:14:00 +01002488 }
2489 return 0;
2490}
2491
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002492static int scrub_pages_for_parity(struct scrub_parity *sparity,
2493 u64 logical, u64 len,
2494 u64 physical, struct btrfs_device *dev,
2495 u64 flags, u64 gen, int mirror_num, u8 *csum)
2496{
2497 struct scrub_ctx *sctx = sparity->sctx;
2498 struct scrub_block *sblock;
2499 int index;
2500
David Sterba58c4e172016-02-11 10:49:42 +01002501 sblock = kzalloc(sizeof(*sblock), GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002502 if (!sblock) {
2503 spin_lock(&sctx->stat_lock);
2504 sctx->stat.malloc_errors++;
2505 spin_unlock(&sctx->stat_lock);
2506 return -ENOMEM;
2507 }
2508
2509 /* one ref inside this function, plus one for each page added to
2510 * a bio later on */
Elena Reshetova186debd2017-03-03 10:55:23 +02002511 refcount_set(&sblock->refs, 1);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002512 sblock->sctx = sctx;
2513 sblock->no_io_error_seen = 1;
2514 sblock->sparity = sparity;
2515 scrub_parity_get(sparity);
2516
2517 for (index = 0; len > 0; index++) {
2518 struct scrub_page *spage;
2519 u64 l = min_t(u64, len, PAGE_SIZE);
2520
David Sterba58c4e172016-02-11 10:49:42 +01002521 spage = kzalloc(sizeof(*spage), GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002522 if (!spage) {
2523leave_nomem:
2524 spin_lock(&sctx->stat_lock);
2525 sctx->stat.malloc_errors++;
2526 spin_unlock(&sctx->stat_lock);
2527 scrub_block_put(sblock);
2528 return -ENOMEM;
2529 }
2530 BUG_ON(index >= SCRUB_MAX_PAGES_PER_BLOCK);
2531 /* For scrub block */
2532 scrub_page_get(spage);
2533 sblock->pagev[index] = spage;
2534 /* For scrub parity */
2535 scrub_page_get(spage);
2536 list_add_tail(&spage->list, &sparity->spages);
2537 spage->sblock = sblock;
2538 spage->dev = dev;
2539 spage->flags = flags;
2540 spage->generation = gen;
2541 spage->logical = logical;
2542 spage->physical = physical;
2543 spage->mirror_num = mirror_num;
2544 if (csum) {
2545 spage->have_csum = 1;
2546 memcpy(spage->csum, csum, sctx->csum_size);
2547 } else {
2548 spage->have_csum = 0;
2549 }
2550 sblock->page_count++;
David Sterba58c4e172016-02-11 10:49:42 +01002551 spage->page = alloc_page(GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002552 if (!spage->page)
2553 goto leave_nomem;
2554 len -= l;
2555 logical += l;
2556 physical += l;
2557 }
2558
2559 WARN_ON(sblock->page_count == 0);
2560 for (index = 0; index < sblock->page_count; index++) {
2561 struct scrub_page *spage = sblock->pagev[index];
2562 int ret;
2563
2564 ret = scrub_add_page_to_rd_bio(sctx, spage);
2565 if (ret) {
2566 scrub_block_put(sblock);
2567 return ret;
2568 }
2569 }
2570
2571 /* last one frees, either here or in bio completion for last page */
2572 scrub_block_put(sblock);
2573 return 0;
2574}
2575
2576static int scrub_extent_for_parity(struct scrub_parity *sparity,
2577 u64 logical, u64 len,
2578 u64 physical, struct btrfs_device *dev,
2579 u64 flags, u64 gen, int mirror_num)
2580{
2581 struct scrub_ctx *sctx = sparity->sctx;
2582 int ret;
2583 u8 csum[BTRFS_CSUM_SIZE];
2584 u32 blocksize;
2585
Anand Jaine6e674b2017-12-04 12:54:54 +08002586 if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state)) {
Omar Sandoval4a770892015-06-19 11:52:52 -07002587 scrub_parity_mark_sectors_error(sparity, logical, len);
2588 return 0;
2589 }
2590
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002591 if (flags & BTRFS_EXTENT_FLAG_DATA) {
Liu Bo6ca17652018-03-07 12:08:09 -07002592 blocksize = sparity->stripe_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002593 } else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Liu Bo6ca17652018-03-07 12:08:09 -07002594 blocksize = sparity->stripe_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002595 } else {
David Sterba25cc1222017-05-16 19:10:41 +02002596 blocksize = sctx->fs_info->sectorsize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002597 WARN_ON(1);
2598 }
2599
2600 while (len) {
2601 u64 l = min_t(u64, len, blocksize);
2602 int have_csum = 0;
2603
2604 if (flags & BTRFS_EXTENT_FLAG_DATA) {
2605 /* push csums to sbio */
Zhao Lei3b5753e2015-08-24 22:03:02 +08002606 have_csum = scrub_find_csum(sctx, logical, csum);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002607 if (have_csum == 0)
2608 goto skip;
2609 }
2610 ret = scrub_pages_for_parity(sparity, logical, l, physical, dev,
2611 flags, gen, mirror_num,
2612 have_csum ? csum : NULL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002613 if (ret)
2614 return ret;
Dan Carpenter6b6d24b2014-12-12 22:30:00 +03002615skip:
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002616 len -= l;
2617 logical += l;
2618 physical += l;
2619 }
2620 return 0;
2621}
2622
Wang Shilong3b080b22014-04-01 18:01:43 +08002623/*
2624 * Given a physical address, this will calculate it's
2625 * logical offset. if this is a parity stripe, it will return
2626 * the most left data stripe's logical offset.
2627 *
2628 * return 0 if it is a data stripe, 1 means parity stripe.
2629 */
2630static int get_raid56_logic_offset(u64 physical, int num,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002631 struct map_lookup *map, u64 *offset,
2632 u64 *stripe_start)
Wang Shilong3b080b22014-04-01 18:01:43 +08002633{
2634 int i;
2635 int j = 0;
2636 u64 stripe_nr;
2637 u64 last_offset;
David Sterba9d644a62015-02-20 18:42:11 +01002638 u32 stripe_index;
2639 u32 rot;
David Sterbacff82672019-05-17 11:43:45 +02002640 const int data_stripes = nr_data_stripes(map);
Wang Shilong3b080b22014-04-01 18:01:43 +08002641
David Sterbacff82672019-05-17 11:43:45 +02002642 last_offset = (physical - map->stripes[num].physical) * data_stripes;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002643 if (stripe_start)
2644 *stripe_start = last_offset;
2645
Wang Shilong3b080b22014-04-01 18:01:43 +08002646 *offset = last_offset;
David Sterbacff82672019-05-17 11:43:45 +02002647 for (i = 0; i < data_stripes; i++) {
Wang Shilong3b080b22014-04-01 18:01:43 +08002648 *offset = last_offset + i * map->stripe_len;
2649
Liu Bo42c61ab2017-04-03 13:45:24 -07002650 stripe_nr = div64_u64(*offset, map->stripe_len);
David Sterbacff82672019-05-17 11:43:45 +02002651 stripe_nr = div_u64(stripe_nr, data_stripes);
Wang Shilong3b080b22014-04-01 18:01:43 +08002652
2653 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01002654 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, &rot);
Wang Shilong3b080b22014-04-01 18:01:43 +08002655 /* calculate which stripe this data locates */
2656 rot += i;
Wang Shilonge4fbaee2014-04-11 18:32:25 +08002657 stripe_index = rot % map->num_stripes;
Wang Shilong3b080b22014-04-01 18:01:43 +08002658 if (stripe_index == num)
2659 return 0;
2660 if (stripe_index < num)
2661 j++;
2662 }
2663 *offset = last_offset + j * map->stripe_len;
2664 return 1;
2665}
2666
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002667static void scrub_free_parity(struct scrub_parity *sparity)
2668{
2669 struct scrub_ctx *sctx = sparity->sctx;
2670 struct scrub_page *curr, *next;
2671 int nbits;
2672
2673 nbits = bitmap_weight(sparity->ebitmap, sparity->nsectors);
2674 if (nbits) {
2675 spin_lock(&sctx->stat_lock);
2676 sctx->stat.read_errors += nbits;
2677 sctx->stat.uncorrectable_errors += nbits;
2678 spin_unlock(&sctx->stat_lock);
2679 }
2680
2681 list_for_each_entry_safe(curr, next, &sparity->spages, list) {
2682 list_del_init(&curr->list);
2683 scrub_page_put(curr);
2684 }
2685
2686 kfree(sparity);
2687}
2688
Zhao Lei20b2e302015-06-04 20:09:15 +08002689static void scrub_parity_bio_endio_worker(struct btrfs_work *work)
2690{
2691 struct scrub_parity *sparity = container_of(work, struct scrub_parity,
2692 work);
2693 struct scrub_ctx *sctx = sparity->sctx;
2694
2695 scrub_free_parity(sparity);
2696 scrub_pending_bio_dec(sctx);
2697}
2698
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002699static void scrub_parity_bio_endio(struct bio *bio)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002700{
2701 struct scrub_parity *sparity = (struct scrub_parity *)bio->bi_private;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002702 struct btrfs_fs_info *fs_info = sparity->sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002703
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002704 if (bio->bi_status)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002705 bitmap_or(sparity->ebitmap, sparity->ebitmap, sparity->dbitmap,
2706 sparity->nsectors);
2707
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002708 bio_put(bio);
Zhao Lei20b2e302015-06-04 20:09:15 +08002709
Omar Sandovala0cac0e2019-09-16 11:30:57 -07002710 btrfs_init_work(&sparity->work, scrub_parity_bio_endio_worker, NULL,
2711 NULL);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002712 btrfs_queue_work(fs_info->scrub_parity_workers, &sparity->work);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002713}
2714
2715static void scrub_parity_check_and_repair(struct scrub_parity *sparity)
2716{
2717 struct scrub_ctx *sctx = sparity->sctx;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002718 struct btrfs_fs_info *fs_info = sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002719 struct bio *bio;
2720 struct btrfs_raid_bio *rbio;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002721 struct btrfs_bio *bbio = NULL;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002722 u64 length;
2723 int ret;
2724
2725 if (!bitmap_andnot(sparity->dbitmap, sparity->dbitmap, sparity->ebitmap,
2726 sparity->nsectors))
2727 goto out;
2728
Zhao Leia0dd59d2015-07-21 15:42:26 +08002729 length = sparity->logic_end - sparity->logic_start;
Qu Wenruoae6529c2017-03-29 09:33:21 +08002730
2731 btrfs_bio_counter_inc_blocked(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002732 ret = btrfs_map_sblock(fs_info, BTRFS_MAP_WRITE, sparity->logic_start,
David Sterba825ad4c2017-03-28 14:45:22 +02002733 &length, &bbio);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08002734 if (ret || !bbio || !bbio->raid_map)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002735 goto bbio_out;
2736
David Sterbac5e4c3d2017-06-12 17:29:41 +02002737 bio = btrfs_io_bio_alloc(0);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002738 bio->bi_iter.bi_sector = sparity->logic_start >> 9;
2739 bio->bi_private = sparity;
2740 bio->bi_end_io = scrub_parity_bio_endio;
2741
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002742 rbio = raid56_parity_alloc_scrub_rbio(fs_info, bio, bbio,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08002743 length, sparity->scrub_dev,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002744 sparity->dbitmap,
2745 sparity->nsectors);
2746 if (!rbio)
2747 goto rbio_out;
2748
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002749 scrub_pending_bio_inc(sctx);
2750 raid56_parity_submit_scrub_rbio(rbio);
2751 return;
2752
2753rbio_out:
2754 bio_put(bio);
2755bbio_out:
Qu Wenruoae6529c2017-03-29 09:33:21 +08002756 btrfs_bio_counter_dec(fs_info);
Zhao Lei6e9606d2015-01-20 15:11:34 +08002757 btrfs_put_bbio(bbio);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002758 bitmap_or(sparity->ebitmap, sparity->ebitmap, sparity->dbitmap,
2759 sparity->nsectors);
2760 spin_lock(&sctx->stat_lock);
2761 sctx->stat.malloc_errors++;
2762 spin_unlock(&sctx->stat_lock);
2763out:
2764 scrub_free_parity(sparity);
2765}
2766
2767static inline int scrub_calc_parity_bitmap_len(int nsectors)
2768{
Zhao Leibfca9a62014-12-08 19:55:57 +08002769 return DIV_ROUND_UP(nsectors, BITS_PER_LONG) * sizeof(long);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002770}
2771
2772static void scrub_parity_get(struct scrub_parity *sparity)
2773{
Elena Reshetova78a76452017-03-03 10:55:24 +02002774 refcount_inc(&sparity->refs);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002775}
2776
2777static void scrub_parity_put(struct scrub_parity *sparity)
2778{
Elena Reshetova78a76452017-03-03 10:55:24 +02002779 if (!refcount_dec_and_test(&sparity->refs))
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002780 return;
2781
2782 scrub_parity_check_and_repair(sparity);
2783}
2784
2785static noinline_for_stack int scrub_raid56_parity(struct scrub_ctx *sctx,
2786 struct map_lookup *map,
2787 struct btrfs_device *sdev,
2788 struct btrfs_path *path,
2789 u64 logic_start,
2790 u64 logic_end)
2791{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002792 struct btrfs_fs_info *fs_info = sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002793 struct btrfs_root *root = fs_info->extent_root;
2794 struct btrfs_root *csum_root = fs_info->csum_root;
2795 struct btrfs_extent_item *extent;
Omar Sandoval4a770892015-06-19 11:52:52 -07002796 struct btrfs_bio *bbio = NULL;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002797 u64 flags;
2798 int ret;
2799 int slot;
2800 struct extent_buffer *l;
2801 struct btrfs_key key;
2802 u64 generation;
2803 u64 extent_logical;
2804 u64 extent_physical;
2805 u64 extent_len;
Omar Sandoval4a770892015-06-19 11:52:52 -07002806 u64 mapped_length;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002807 struct btrfs_device *extent_dev;
2808 struct scrub_parity *sparity;
2809 int nsectors;
2810 int bitmap_len;
2811 int extent_mirror_num;
2812 int stop_loop = 0;
2813
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002814 nsectors = div_u64(map->stripe_len, fs_info->sectorsize);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002815 bitmap_len = scrub_calc_parity_bitmap_len(nsectors);
2816 sparity = kzalloc(sizeof(struct scrub_parity) + 2 * bitmap_len,
2817 GFP_NOFS);
2818 if (!sparity) {
2819 spin_lock(&sctx->stat_lock);
2820 sctx->stat.malloc_errors++;
2821 spin_unlock(&sctx->stat_lock);
2822 return -ENOMEM;
2823 }
2824
2825 sparity->stripe_len = map->stripe_len;
2826 sparity->nsectors = nsectors;
2827 sparity->sctx = sctx;
2828 sparity->scrub_dev = sdev;
2829 sparity->logic_start = logic_start;
2830 sparity->logic_end = logic_end;
Elena Reshetova78a76452017-03-03 10:55:24 +02002831 refcount_set(&sparity->refs, 1);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002832 INIT_LIST_HEAD(&sparity->spages);
2833 sparity->dbitmap = sparity->bitmap;
2834 sparity->ebitmap = (void *)sparity->bitmap + bitmap_len;
2835
2836 ret = 0;
2837 while (logic_start < logic_end) {
2838 if (btrfs_fs_incompat(fs_info, SKINNY_METADATA))
2839 key.type = BTRFS_METADATA_ITEM_KEY;
2840 else
2841 key.type = BTRFS_EXTENT_ITEM_KEY;
2842 key.objectid = logic_start;
2843 key.offset = (u64)-1;
2844
2845 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2846 if (ret < 0)
2847 goto out;
2848
2849 if (ret > 0) {
2850 ret = btrfs_previous_extent_item(root, path, 0);
2851 if (ret < 0)
2852 goto out;
2853 if (ret > 0) {
2854 btrfs_release_path(path);
2855 ret = btrfs_search_slot(NULL, root, &key,
2856 path, 0, 0);
2857 if (ret < 0)
2858 goto out;
2859 }
2860 }
2861
2862 stop_loop = 0;
2863 while (1) {
2864 u64 bytes;
2865
2866 l = path->nodes[0];
2867 slot = path->slots[0];
2868 if (slot >= btrfs_header_nritems(l)) {
2869 ret = btrfs_next_leaf(root, path);
2870 if (ret == 0)
2871 continue;
2872 if (ret < 0)
2873 goto out;
2874
2875 stop_loop = 1;
2876 break;
2877 }
2878 btrfs_item_key_to_cpu(l, &key, slot);
2879
Zhao Leid7cad232015-07-22 13:14:48 +08002880 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
2881 key.type != BTRFS_METADATA_ITEM_KEY)
2882 goto next;
2883
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002884 if (key.type == BTRFS_METADATA_ITEM_KEY)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002885 bytes = fs_info->nodesize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002886 else
2887 bytes = key.offset;
2888
2889 if (key.objectid + bytes <= logic_start)
2890 goto next;
2891
Zhao Leia0dd59d2015-07-21 15:42:26 +08002892 if (key.objectid >= logic_end) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002893 stop_loop = 1;
2894 break;
2895 }
2896
2897 while (key.objectid >= logic_start + map->stripe_len)
2898 logic_start += map->stripe_len;
2899
2900 extent = btrfs_item_ptr(l, slot,
2901 struct btrfs_extent_item);
2902 flags = btrfs_extent_flags(l, extent);
2903 generation = btrfs_extent_generation(l, extent);
2904
Zhao Leia323e812015-07-23 12:29:49 +08002905 if ((flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) &&
2906 (key.objectid < logic_start ||
2907 key.objectid + bytes >
2908 logic_start + map->stripe_len)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002909 btrfs_err(fs_info,
2910 "scrub: tree block %llu spanning stripes, ignored. logical=%llu",
Zhao Leia323e812015-07-23 12:29:49 +08002911 key.objectid, logic_start);
Zhao Lei9799d2c32015-08-25 21:31:40 +08002912 spin_lock(&sctx->stat_lock);
2913 sctx->stat.uncorrectable_errors++;
2914 spin_unlock(&sctx->stat_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002915 goto next;
2916 }
2917again:
2918 extent_logical = key.objectid;
2919 extent_len = bytes;
2920
2921 if (extent_logical < logic_start) {
2922 extent_len -= logic_start - extent_logical;
2923 extent_logical = logic_start;
2924 }
2925
2926 if (extent_logical + extent_len >
2927 logic_start + map->stripe_len)
2928 extent_len = logic_start + map->stripe_len -
2929 extent_logical;
2930
2931 scrub_parity_mark_sectors_data(sparity, extent_logical,
2932 extent_len);
2933
Omar Sandoval4a770892015-06-19 11:52:52 -07002934 mapped_length = extent_len;
Zhao Leif1fee652016-05-17 17:37:38 +08002935 bbio = NULL;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02002936 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ,
2937 extent_logical, &mapped_length, &bbio,
2938 0);
Omar Sandoval4a770892015-06-19 11:52:52 -07002939 if (!ret) {
2940 if (!bbio || mapped_length < extent_len)
2941 ret = -EIO;
2942 }
2943 if (ret) {
2944 btrfs_put_bbio(bbio);
2945 goto out;
2946 }
2947 extent_physical = bbio->stripes[0].physical;
2948 extent_mirror_num = bbio->mirror_num;
2949 extent_dev = bbio->stripes[0].dev;
2950 btrfs_put_bbio(bbio);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002951
2952 ret = btrfs_lookup_csums_range(csum_root,
2953 extent_logical,
2954 extent_logical + extent_len - 1,
2955 &sctx->csum_list, 1);
2956 if (ret)
2957 goto out;
2958
2959 ret = scrub_extent_for_parity(sparity, extent_logical,
2960 extent_len,
2961 extent_physical,
2962 extent_dev, flags,
2963 generation,
2964 extent_mirror_num);
Zhao Lei6fa96d72015-07-21 12:22:30 +08002965
2966 scrub_free_csums(sctx);
2967
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002968 if (ret)
2969 goto out;
2970
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002971 if (extent_logical + extent_len <
2972 key.objectid + bytes) {
2973 logic_start += map->stripe_len;
2974
2975 if (logic_start >= logic_end) {
2976 stop_loop = 1;
2977 break;
2978 }
2979
2980 if (logic_start < key.objectid + bytes) {
2981 cond_resched();
2982 goto again;
2983 }
2984 }
2985next:
2986 path->slots[0]++;
2987 }
2988
2989 btrfs_release_path(path);
2990
2991 if (stop_loop)
2992 break;
2993
2994 logic_start += map->stripe_len;
2995 }
2996out:
2997 if (ret < 0)
2998 scrub_parity_mark_sectors_error(sparity, logic_start,
Zhao Leia0dd59d2015-07-21 15:42:26 +08002999 logic_end - logic_start);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003000 scrub_parity_put(sparity);
3001 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003002 mutex_lock(&sctx->wr_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003003 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003004 mutex_unlock(&sctx->wr_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003005
3006 btrfs_release_path(path);
3007 return ret < 0 ? ret : 0;
3008}
3009
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003010static noinline_for_stack int scrub_stripe(struct scrub_ctx *sctx,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003011 struct map_lookup *map,
3012 struct btrfs_device *scrub_dev,
Filipe Manana2473d242020-05-08 11:01:10 +01003013 int num, u64 base, u64 length,
3014 struct btrfs_block_group *cache)
Arne Jansena2de7332011-03-08 14:14:00 +01003015{
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003016 struct btrfs_path *path, *ppath;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04003017 struct btrfs_fs_info *fs_info = sctx->fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +01003018 struct btrfs_root *root = fs_info->extent_root;
3019 struct btrfs_root *csum_root = fs_info->csum_root;
3020 struct btrfs_extent_item *extent;
Arne Jansene7786c32011-05-28 20:58:38 +00003021 struct blk_plug plug;
Arne Jansena2de7332011-03-08 14:14:00 +01003022 u64 flags;
3023 int ret;
3024 int slot;
Arne Jansena2de7332011-03-08 14:14:00 +01003025 u64 nstripes;
Arne Jansena2de7332011-03-08 14:14:00 +01003026 struct extent_buffer *l;
Arne Jansena2de7332011-03-08 14:14:00 +01003027 u64 physical;
3028 u64 logical;
Liu Bo625f1c8d2013-04-27 02:56:57 +00003029 u64 logic_end;
Wang Shilong3b080b22014-04-01 18:01:43 +08003030 u64 physical_end;
Arne Jansena2de7332011-03-08 14:14:00 +01003031 u64 generation;
Jan Schmidte12fa9c2011-06-17 15:55:21 +02003032 int mirror_num;
Arne Jansen7a262852011-06-10 12:39:23 +02003033 struct reada_control *reada1;
3034 struct reada_control *reada2;
David Sterbae6c11f92016-03-24 18:00:53 +01003035 struct btrfs_key key;
Arne Jansen7a262852011-06-10 12:39:23 +02003036 struct btrfs_key key_end;
Arne Jansena2de7332011-03-08 14:14:00 +01003037 u64 increment = map->stripe_len;
3038 u64 offset;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003039 u64 extent_logical;
3040 u64 extent_physical;
3041 u64 extent_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003042 u64 stripe_logical;
3043 u64 stripe_end;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003044 struct btrfs_device *extent_dev;
3045 int extent_mirror_num;
Wang Shilong3b080b22014-04-01 18:01:43 +08003046 int stop_loop = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05003047
Wang Shilong3b080b22014-04-01 18:01:43 +08003048 physical = map->stripes[num].physical;
Arne Jansena2de7332011-03-08 14:14:00 +01003049 offset = 0;
Liu Bo42c61ab2017-04-03 13:45:24 -07003050 nstripes = div64_u64(length, map->stripe_len);
Arne Jansena2de7332011-03-08 14:14:00 +01003051 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
3052 offset = map->stripe_len * num;
3053 increment = map->stripe_len * map->num_stripes;
Jan Schmidt193ea742011-06-13 19:56:54 +02003054 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003055 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
3056 int factor = map->num_stripes / map->sub_stripes;
3057 offset = map->stripe_len * (num / map->sub_stripes);
3058 increment = map->stripe_len * factor;
Jan Schmidt193ea742011-06-13 19:56:54 +02003059 mirror_num = num % map->sub_stripes + 1;
David Sterbac7369b32019-05-31 15:39:31 +02003060 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1_MASK) {
Arne Jansena2de7332011-03-08 14:14:00 +01003061 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003062 mirror_num = num % map->num_stripes + 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003063 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
3064 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003065 mirror_num = num % map->num_stripes + 1;
Zhao Leiffe2d202015-01-20 15:11:44 +08003066 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003067 get_raid56_logic_offset(physical, num, map, &offset, NULL);
Wang Shilong3b080b22014-04-01 18:01:43 +08003068 increment = map->stripe_len * nr_data_stripes(map);
3069 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003070 } else {
3071 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003072 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003073 }
3074
3075 path = btrfs_alloc_path();
3076 if (!path)
3077 return -ENOMEM;
3078
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003079 ppath = btrfs_alloc_path();
3080 if (!ppath) {
Tsutomu Itoh379d6852015-01-09 17:37:52 +09003081 btrfs_free_path(path);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003082 return -ENOMEM;
3083 }
3084
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003085 /*
3086 * work on commit root. The related disk blocks are static as
3087 * long as COW is applied. This means, it is save to rewrite
3088 * them to repair disk errors without any race conditions
3089 */
Arne Jansena2de7332011-03-08 14:14:00 +01003090 path->search_commit_root = 1;
3091 path->skip_locking = 1;
3092
Gui Hecheng063c54d2015-01-09 09:39:40 +08003093 ppath->search_commit_root = 1;
3094 ppath->skip_locking = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003095 /*
Arne Jansen7a262852011-06-10 12:39:23 +02003096 * trigger the readahead for extent tree csum tree and wait for
3097 * completion. During readahead, the scrub is officially paused
3098 * to not hold off transaction commits
Arne Jansena2de7332011-03-08 14:14:00 +01003099 */
3100 logical = base + offset;
Wang Shilong3b080b22014-04-01 18:01:43 +08003101 physical_end = physical + nstripes * map->stripe_len;
Zhao Leiffe2d202015-01-20 15:11:44 +08003102 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Wang Shilong3b080b22014-04-01 18:01:43 +08003103 get_raid56_logic_offset(physical_end, num,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003104 map, &logic_end, NULL);
Wang Shilong3b080b22014-04-01 18:01:43 +08003105 logic_end += base;
3106 } else {
3107 logic_end = logical + increment * nstripes;
3108 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003109 wait_event(sctx->list_wait,
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003110 atomic_read(&sctx->bios_in_flight) == 0);
Wang Shilongcb7ab022013-12-04 21:16:53 +08003111 scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003112
Arne Jansen7a262852011-06-10 12:39:23 +02003113 /* FIXME it might be better to start readahead at commit root */
David Sterbae6c11f92016-03-24 18:00:53 +01003114 key.objectid = logical;
3115 key.type = BTRFS_EXTENT_ITEM_KEY;
3116 key.offset = (u64)0;
Wang Shilong3b080b22014-04-01 18:01:43 +08003117 key_end.objectid = logic_end;
Josef Bacik3173a182013-03-07 14:22:04 -05003118 key_end.type = BTRFS_METADATA_ITEM_KEY;
3119 key_end.offset = (u64)-1;
David Sterbae6c11f92016-03-24 18:00:53 +01003120 reada1 = btrfs_reada_add(root, &key, &key_end);
Arne Jansena2de7332011-03-08 14:14:00 +01003121
David Sterbae6c11f92016-03-24 18:00:53 +01003122 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
3123 key.type = BTRFS_EXTENT_CSUM_KEY;
3124 key.offset = logical;
Arne Jansen7a262852011-06-10 12:39:23 +02003125 key_end.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
3126 key_end.type = BTRFS_EXTENT_CSUM_KEY;
Wang Shilong3b080b22014-04-01 18:01:43 +08003127 key_end.offset = logic_end;
David Sterbae6c11f92016-03-24 18:00:53 +01003128 reada2 = btrfs_reada_add(csum_root, &key, &key_end);
Arne Jansena2de7332011-03-08 14:14:00 +01003129
Arne Jansen7a262852011-06-10 12:39:23 +02003130 if (!IS_ERR(reada1))
3131 btrfs_reada_wait(reada1);
3132 if (!IS_ERR(reada2))
3133 btrfs_reada_wait(reada2);
Arne Jansena2de7332011-03-08 14:14:00 +01003134
Arne Jansena2de7332011-03-08 14:14:00 +01003135
3136 /*
3137 * collect all data csums for the stripe to avoid seeking during
3138 * the scrub. This might currently (crc32) end up to be about 1MB
3139 */
Arne Jansene7786c32011-05-28 20:58:38 +00003140 blk_start_plug(&plug);
Arne Jansena2de7332011-03-08 14:14:00 +01003141
Arne Jansena2de7332011-03-08 14:14:00 +01003142 /*
3143 * now find all extents for each stripe and scrub them
3144 */
Arne Jansena2de7332011-03-08 14:14:00 +01003145 ret = 0;
Wang Shilong3b080b22014-04-01 18:01:43 +08003146 while (physical < physical_end) {
Arne Jansena2de7332011-03-08 14:14:00 +01003147 /*
3148 * canceled?
3149 */
3150 if (atomic_read(&fs_info->scrub_cancel_req) ||
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003151 atomic_read(&sctx->cancel_req)) {
Arne Jansena2de7332011-03-08 14:14:00 +01003152 ret = -ECANCELED;
3153 goto out;
3154 }
3155 /*
3156 * check to see if we have to pause
3157 */
3158 if (atomic_read(&fs_info->scrub_pause_req)) {
3159 /* push queued extents */
David Sterba2073c4c2017-03-31 17:12:51 +02003160 sctx->flush_all_writes = true;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003161 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003162 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003163 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003164 mutex_unlock(&sctx->wr_lock);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003165 wait_event(sctx->list_wait,
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003166 atomic_read(&sctx->bios_in_flight) == 0);
David Sterba2073c4c2017-03-31 17:12:51 +02003167 sctx->flush_all_writes = false;
Wang Shilong3cb09292013-12-04 21:15:19 +08003168 scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003169 }
3170
Zhao Leif2f66a22015-07-21 12:22:29 +08003171 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
3172 ret = get_raid56_logic_offset(physical, num, map,
3173 &logical,
3174 &stripe_logical);
3175 logical += base;
3176 if (ret) {
Zhao Lei79553232015-08-18 17:54:30 +08003177 /* it is parity strip */
Zhao Leif2f66a22015-07-21 12:22:29 +08003178 stripe_logical += base;
Zhao Leia0dd59d2015-07-21 15:42:26 +08003179 stripe_end = stripe_logical + increment;
Zhao Leif2f66a22015-07-21 12:22:29 +08003180 ret = scrub_raid56_parity(sctx, map, scrub_dev,
3181 ppath, stripe_logical,
3182 stripe_end);
3183 if (ret)
3184 goto out;
3185 goto skip;
3186 }
3187 }
3188
Wang Shilong7c76edb2014-01-12 21:38:32 +08003189 if (btrfs_fs_incompat(fs_info, SKINNY_METADATA))
3190 key.type = BTRFS_METADATA_ITEM_KEY;
3191 else
3192 key.type = BTRFS_EXTENT_ITEM_KEY;
Arne Jansena2de7332011-03-08 14:14:00 +01003193 key.objectid = logical;
Liu Bo625f1c8d2013-04-27 02:56:57 +00003194 key.offset = (u64)-1;
Arne Jansena2de7332011-03-08 14:14:00 +01003195
3196 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3197 if (ret < 0)
3198 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05003199
Arne Jansen8c510322011-06-03 10:09:26 +02003200 if (ret > 0) {
Wang Shilongade2e0b2014-01-12 21:38:33 +08003201 ret = btrfs_previous_extent_item(root, path, 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003202 if (ret < 0)
3203 goto out;
Arne Jansen8c510322011-06-03 10:09:26 +02003204 if (ret > 0) {
3205 /* there's no smaller item, so stick with the
3206 * larger one */
3207 btrfs_release_path(path);
3208 ret = btrfs_search_slot(NULL, root, &key,
3209 path, 0, 0);
3210 if (ret < 0)
3211 goto out;
3212 }
Arne Jansena2de7332011-03-08 14:14:00 +01003213 }
3214
Liu Bo625f1c8d2013-04-27 02:56:57 +00003215 stop_loop = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01003216 while (1) {
Josef Bacik3173a182013-03-07 14:22:04 -05003217 u64 bytes;
3218
Arne Jansena2de7332011-03-08 14:14:00 +01003219 l = path->nodes[0];
3220 slot = path->slots[0];
3221 if (slot >= btrfs_header_nritems(l)) {
3222 ret = btrfs_next_leaf(root, path);
3223 if (ret == 0)
3224 continue;
3225 if (ret < 0)
3226 goto out;
3227
Liu Bo625f1c8d2013-04-27 02:56:57 +00003228 stop_loop = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003229 break;
3230 }
3231 btrfs_item_key_to_cpu(l, &key, slot);
3232
Zhao Leid7cad232015-07-22 13:14:48 +08003233 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
3234 key.type != BTRFS_METADATA_ITEM_KEY)
3235 goto next;
3236
Josef Bacik3173a182013-03-07 14:22:04 -05003237 if (key.type == BTRFS_METADATA_ITEM_KEY)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003238 bytes = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05003239 else
3240 bytes = key.offset;
3241
3242 if (key.objectid + bytes <= logical)
Arne Jansena2de7332011-03-08 14:14:00 +01003243 goto next;
3244
Liu Bo625f1c8d2013-04-27 02:56:57 +00003245 if (key.objectid >= logical + map->stripe_len) {
3246 /* out of this device extent */
3247 if (key.objectid >= logic_end)
3248 stop_loop = 1;
3249 break;
3250 }
Arne Jansena2de7332011-03-08 14:14:00 +01003251
Filipe Manana2473d242020-05-08 11:01:10 +01003252 /*
3253 * If our block group was removed in the meanwhile, just
3254 * stop scrubbing since there is no point in continuing.
3255 * Continuing would prevent reusing its device extents
3256 * for new block groups for a long time.
3257 */
3258 spin_lock(&cache->lock);
3259 if (cache->removed) {
3260 spin_unlock(&cache->lock);
3261 ret = 0;
3262 goto out;
3263 }
3264 spin_unlock(&cache->lock);
3265
Arne Jansena2de7332011-03-08 14:14:00 +01003266 extent = btrfs_item_ptr(l, slot,
3267 struct btrfs_extent_item);
3268 flags = btrfs_extent_flags(l, extent);
3269 generation = btrfs_extent_generation(l, extent);
3270
Zhao Leia323e812015-07-23 12:29:49 +08003271 if ((flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) &&
3272 (key.objectid < logical ||
3273 key.objectid + bytes >
3274 logical + map->stripe_len)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003275 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003276 "scrub: tree block %llu spanning stripes, ignored. logical=%llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003277 key.objectid, logical);
Zhao Lei9799d2c32015-08-25 21:31:40 +08003278 spin_lock(&sctx->stat_lock);
3279 sctx->stat.uncorrectable_errors++;
3280 spin_unlock(&sctx->stat_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003281 goto next;
3282 }
3283
Liu Bo625f1c8d2013-04-27 02:56:57 +00003284again:
3285 extent_logical = key.objectid;
3286 extent_len = bytes;
3287
Arne Jansena2de7332011-03-08 14:14:00 +01003288 /*
3289 * trim extent to this stripe
3290 */
Liu Bo625f1c8d2013-04-27 02:56:57 +00003291 if (extent_logical < logical) {
3292 extent_len -= logical - extent_logical;
3293 extent_logical = logical;
Arne Jansena2de7332011-03-08 14:14:00 +01003294 }
Liu Bo625f1c8d2013-04-27 02:56:57 +00003295 if (extent_logical + extent_len >
Arne Jansena2de7332011-03-08 14:14:00 +01003296 logical + map->stripe_len) {
Liu Bo625f1c8d2013-04-27 02:56:57 +00003297 extent_len = logical + map->stripe_len -
3298 extent_logical;
Arne Jansena2de7332011-03-08 14:14:00 +01003299 }
3300
Liu Bo625f1c8d2013-04-27 02:56:57 +00003301 extent_physical = extent_logical - logical + physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003302 extent_dev = scrub_dev;
3303 extent_mirror_num = mirror_num;
Omar Sandoval32934282018-08-14 11:09:52 -07003304 if (sctx->is_dev_replace)
Stefan Behrensff023aa2012-11-06 11:43:11 +01003305 scrub_remap_extent(fs_info, extent_logical,
3306 extent_len, &extent_physical,
3307 &extent_dev,
3308 &extent_mirror_num);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003309
Filipe Manana89490302020-05-08 11:02:07 +01003310 if (flags & BTRFS_EXTENT_FLAG_DATA) {
3311 ret = btrfs_lookup_csums_range(csum_root,
3312 extent_logical,
3313 extent_logical + extent_len - 1,
3314 &sctx->csum_list, 1);
3315 if (ret)
3316 goto out;
3317 }
Arne Jansena2de7332011-03-08 14:14:00 +01003318
Liu Bo6ca17652018-03-07 12:08:09 -07003319 ret = scrub_extent(sctx, map, extent_logical, extent_len,
Liu Bo625f1c8d2013-04-27 02:56:57 +00003320 extent_physical, extent_dev, flags,
3321 generation, extent_mirror_num,
Stefan Behrens115930c2013-07-04 16:14:23 +02003322 extent_logical - logical + physical);
Zhao Lei6fa96d72015-07-21 12:22:30 +08003323
3324 scrub_free_csums(sctx);
3325
Liu Bo625f1c8d2013-04-27 02:56:57 +00003326 if (ret)
3327 goto out;
3328
3329 if (extent_logical + extent_len <
3330 key.objectid + bytes) {
Zhao Leiffe2d202015-01-20 15:11:44 +08003331 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Wang Shilong3b080b22014-04-01 18:01:43 +08003332 /*
3333 * loop until we find next data stripe
3334 * or we have finished all stripes.
3335 */
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003336loop:
3337 physical += map->stripe_len;
3338 ret = get_raid56_logic_offset(physical,
3339 num, map, &logical,
3340 &stripe_logical);
3341 logical += base;
3342
3343 if (ret && physical < physical_end) {
3344 stripe_logical += base;
3345 stripe_end = stripe_logical +
Zhao Leia0dd59d2015-07-21 15:42:26 +08003346 increment;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003347 ret = scrub_raid56_parity(sctx,
3348 map, scrub_dev, ppath,
3349 stripe_logical,
3350 stripe_end);
3351 if (ret)
3352 goto out;
3353 goto loop;
3354 }
Wang Shilong3b080b22014-04-01 18:01:43 +08003355 } else {
3356 physical += map->stripe_len;
3357 logical += increment;
3358 }
Liu Bo625f1c8d2013-04-27 02:56:57 +00003359 if (logical < key.objectid + bytes) {
3360 cond_resched();
3361 goto again;
3362 }
3363
Wang Shilong3b080b22014-04-01 18:01:43 +08003364 if (physical >= physical_end) {
Liu Bo625f1c8d2013-04-27 02:56:57 +00003365 stop_loop = 1;
3366 break;
3367 }
3368 }
Arne Jansena2de7332011-03-08 14:14:00 +01003369next:
3370 path->slots[0]++;
3371 }
Chris Mason71267332011-05-23 06:30:52 -04003372 btrfs_release_path(path);
Wang Shilong3b080b22014-04-01 18:01:43 +08003373skip:
Arne Jansena2de7332011-03-08 14:14:00 +01003374 logical += increment;
3375 physical += map->stripe_len;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003376 spin_lock(&sctx->stat_lock);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003377 if (stop_loop)
3378 sctx->stat.last_physical = map->stripes[num].physical +
3379 length;
3380 else
3381 sctx->stat.last_physical = physical;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003382 spin_unlock(&sctx->stat_lock);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003383 if (stop_loop)
3384 break;
Arne Jansena2de7332011-03-08 14:14:00 +01003385 }
Stefan Behrensff023aa2012-11-06 11:43:11 +01003386out:
Arne Jansena2de7332011-03-08 14:14:00 +01003387 /* push queued extents */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003388 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003389 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003390 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003391 mutex_unlock(&sctx->wr_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003392
Arne Jansene7786c32011-05-28 20:58:38 +00003393 blk_finish_plug(&plug);
Arne Jansena2de7332011-03-08 14:14:00 +01003394 btrfs_free_path(path);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003395 btrfs_free_path(ppath);
Arne Jansena2de7332011-03-08 14:14:00 +01003396 return ret < 0 ? ret : 0;
3397}
3398
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003399static noinline_for_stack int scrub_chunk(struct scrub_ctx *sctx,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003400 struct btrfs_device *scrub_dev,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003401 u64 chunk_offset, u64 length,
Filipe Manana020d5b72015-11-19 10:57:20 +00003402 u64 dev_offset,
David Sterba32da53862019-10-29 19:20:18 +01003403 struct btrfs_block_group *cache)
Arne Jansena2de7332011-03-08 14:14:00 +01003404{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04003405 struct btrfs_fs_info *fs_info = sctx->fs_info;
David Sterbac8bf1b62019-05-17 11:43:17 +02003406 struct extent_map_tree *map_tree = &fs_info->mapping_tree;
Arne Jansena2de7332011-03-08 14:14:00 +01003407 struct map_lookup *map;
3408 struct extent_map *em;
3409 int i;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003410 int ret = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01003411
David Sterbac8bf1b62019-05-17 11:43:17 +02003412 read_lock(&map_tree->lock);
3413 em = lookup_extent_mapping(map_tree, chunk_offset, 1);
3414 read_unlock(&map_tree->lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003415
Filipe Manana020d5b72015-11-19 10:57:20 +00003416 if (!em) {
3417 /*
3418 * Might have been an unused block group deleted by the cleaner
3419 * kthread or relocation.
3420 */
3421 spin_lock(&cache->lock);
3422 if (!cache->removed)
3423 ret = -EINVAL;
3424 spin_unlock(&cache->lock);
3425
3426 return ret;
3427 }
Arne Jansena2de7332011-03-08 14:14:00 +01003428
Jeff Mahoney95617d62015-06-03 10:55:48 -04003429 map = em->map_lookup;
Arne Jansena2de7332011-03-08 14:14:00 +01003430 if (em->start != chunk_offset)
3431 goto out;
3432
3433 if (em->len < length)
3434 goto out;
3435
3436 for (i = 0; i < map->num_stripes; ++i) {
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003437 if (map->stripes[i].dev->bdev == scrub_dev->bdev &&
Arne Jansen859acaf2012-02-09 15:09:02 +01003438 map->stripes[i].physical == dev_offset) {
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003439 ret = scrub_stripe(sctx, map, scrub_dev, i,
Filipe Manana2473d242020-05-08 11:01:10 +01003440 chunk_offset, length, cache);
Arne Jansena2de7332011-03-08 14:14:00 +01003441 if (ret)
3442 goto out;
3443 }
3444 }
3445out:
3446 free_extent_map(em);
3447
3448 return ret;
3449}
3450
3451static noinline_for_stack
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003452int scrub_enumerate_chunks(struct scrub_ctx *sctx,
Omar Sandoval32934282018-08-14 11:09:52 -07003453 struct btrfs_device *scrub_dev, u64 start, u64 end)
Arne Jansena2de7332011-03-08 14:14:00 +01003454{
3455 struct btrfs_dev_extent *dev_extent = NULL;
3456 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003457 struct btrfs_fs_info *fs_info = sctx->fs_info;
3458 struct btrfs_root *root = fs_info->dev_root;
Arne Jansena2de7332011-03-08 14:14:00 +01003459 u64 length;
Arne Jansena2de7332011-03-08 14:14:00 +01003460 u64 chunk_offset;
Zhaolei55e3a602015-08-05 16:43:30 +08003461 int ret = 0;
Zhaolei76a8efa2015-11-17 18:46:17 +08003462 int ro_set;
Arne Jansena2de7332011-03-08 14:14:00 +01003463 int slot;
3464 struct extent_buffer *l;
3465 struct btrfs_key key;
3466 struct btrfs_key found_key;
David Sterba32da53862019-10-29 19:20:18 +01003467 struct btrfs_block_group *cache;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003468 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
Arne Jansena2de7332011-03-08 14:14:00 +01003469
3470 path = btrfs_alloc_path();
3471 if (!path)
3472 return -ENOMEM;
3473
David Sterbae4058b52015-11-27 16:31:35 +01003474 path->reada = READA_FORWARD;
Arne Jansena2de7332011-03-08 14:14:00 +01003475 path->search_commit_root = 1;
3476 path->skip_locking = 1;
3477
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003478 key.objectid = scrub_dev->devid;
Arne Jansena2de7332011-03-08 14:14:00 +01003479 key.offset = 0ull;
3480 key.type = BTRFS_DEV_EXTENT_KEY;
3481
Arne Jansena2de7332011-03-08 14:14:00 +01003482 while (1) {
3483 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3484 if (ret < 0)
Arne Jansen8c510322011-06-03 10:09:26 +02003485 break;
3486 if (ret > 0) {
3487 if (path->slots[0] >=
3488 btrfs_header_nritems(path->nodes[0])) {
3489 ret = btrfs_next_leaf(root, path);
Zhaolei55e3a602015-08-05 16:43:30 +08003490 if (ret < 0)
Arne Jansen8c510322011-06-03 10:09:26 +02003491 break;
Zhaolei55e3a602015-08-05 16:43:30 +08003492 if (ret > 0) {
3493 ret = 0;
3494 break;
3495 }
3496 } else {
3497 ret = 0;
Arne Jansen8c510322011-06-03 10:09:26 +02003498 }
3499 }
Arne Jansena2de7332011-03-08 14:14:00 +01003500
3501 l = path->nodes[0];
3502 slot = path->slots[0];
3503
3504 btrfs_item_key_to_cpu(l, &found_key, slot);
3505
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003506 if (found_key.objectid != scrub_dev->devid)
Arne Jansena2de7332011-03-08 14:14:00 +01003507 break;
3508
David Sterba962a2982014-06-04 18:41:45 +02003509 if (found_key.type != BTRFS_DEV_EXTENT_KEY)
Arne Jansena2de7332011-03-08 14:14:00 +01003510 break;
3511
3512 if (found_key.offset >= end)
3513 break;
3514
3515 if (found_key.offset < key.offset)
3516 break;
3517
3518 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
3519 length = btrfs_dev_extent_length(l, dev_extent);
3520
Qu Wenruoced96ed2014-06-19 10:42:51 +08003521 if (found_key.offset + length <= start)
3522 goto skip;
Arne Jansena2de7332011-03-08 14:14:00 +01003523
Arne Jansena2de7332011-03-08 14:14:00 +01003524 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
3525
3526 /*
3527 * get a reference on the corresponding block group to prevent
3528 * the chunk from going away while we scrub it
3529 */
3530 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
Qu Wenruoced96ed2014-06-19 10:42:51 +08003531
3532 /* some chunks are removed but not committed to disk yet,
3533 * continue scrubbing */
3534 if (!cache)
3535 goto skip;
3536
Zhaolei55e3a602015-08-05 16:43:30 +08003537 /*
Filipe Manana2473d242020-05-08 11:01:10 +01003538 * Make sure that while we are scrubbing the corresponding block
3539 * group doesn't get its logical address and its device extents
3540 * reused for another block group, which can possibly be of a
3541 * different type and different profile. We do this to prevent
3542 * false error detections and crashes due to bogus attempts to
3543 * repair extents.
3544 */
3545 spin_lock(&cache->lock);
3546 if (cache->removed) {
3547 spin_unlock(&cache->lock);
3548 btrfs_put_block_group(cache);
3549 goto skip;
3550 }
Filipe Manana6b7304a2020-05-08 11:01:47 +01003551 btrfs_freeze_block_group(cache);
Filipe Manana2473d242020-05-08 11:01:10 +01003552 spin_unlock(&cache->lock);
3553
3554 /*
Zhaolei55e3a602015-08-05 16:43:30 +08003555 * we need call btrfs_inc_block_group_ro() with scrubs_paused,
3556 * to avoid deadlock caused by:
3557 * btrfs_inc_block_group_ro()
3558 * -> btrfs_wait_for_commit()
3559 * -> btrfs_commit_transaction()
3560 * -> btrfs_scrub_pause()
3561 */
3562 scrub_pause_on(fs_info);
Qu Wenruob12de522019-11-15 10:09:00 +08003563
3564 /*
3565 * Don't do chunk preallocation for scrub.
3566 *
3567 * This is especially important for SYSTEM bgs, or we can hit
3568 * -EFBIG from btrfs_finish_chunk_alloc() like:
3569 * 1. The only SYSTEM bg is marked RO.
3570 * Since SYSTEM bg is small, that's pretty common.
3571 * 2. New SYSTEM bg will be allocated
3572 * Due to regular version will allocate new chunk.
3573 * 3. New SYSTEM bg is empty and will get cleaned up
3574 * Before cleanup really happens, it's marked RO again.
3575 * 4. Empty SYSTEM bg get scrubbed
3576 * We go back to 2.
3577 *
3578 * This can easily boost the amount of SYSTEM chunks if cleaner
3579 * thread can't be triggered fast enough, and use up all space
3580 * of btrfs_super_block::sys_chunk_array
Qu Wenruo1bbb97b2020-01-24 07:58:20 +08003581 *
3582 * While for dev replace, we need to try our best to mark block
3583 * group RO, to prevent race between:
3584 * - Write duplication
3585 * Contains latest data
3586 * - Scrub copy
3587 * Contains data from commit tree
3588 *
3589 * If target block group is not marked RO, nocow writes can
3590 * be overwritten by scrub copy, causing data corruption.
3591 * So for dev-replace, it's not allowed to continue if a block
3592 * group is not RO.
Qu Wenruob12de522019-11-15 10:09:00 +08003593 */
Qu Wenruo1bbb97b2020-01-24 07:58:20 +08003594 ret = btrfs_inc_block_group_ro(cache, sctx->is_dev_replace);
Zhaolei76a8efa2015-11-17 18:46:17 +08003595 if (ret == 0) {
3596 ro_set = 1;
Qu Wenruo1bbb97b2020-01-24 07:58:20 +08003597 } else if (ret == -ENOSPC && !sctx->is_dev_replace) {
Zhaolei76a8efa2015-11-17 18:46:17 +08003598 /*
3599 * btrfs_inc_block_group_ro return -ENOSPC when it
3600 * failed in creating new chunk for metadata.
Qu Wenruo1bbb97b2020-01-24 07:58:20 +08003601 * It is not a problem for scrub, because
Zhaolei76a8efa2015-11-17 18:46:17 +08003602 * metadata are always cowed, and our scrub paused
3603 * commit_transactions.
3604 */
3605 ro_set = 0;
3606 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003607 btrfs_warn(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02003608 "failed setting block group ro: %d", ret);
Filipe Manana6b7304a2020-05-08 11:01:47 +01003609 btrfs_unfreeze_block_group(cache);
Zhaolei55e3a602015-08-05 16:43:30 +08003610 btrfs_put_block_group(cache);
Qu Wenruo1bbb97b2020-01-24 07:58:20 +08003611 scrub_pause_off(fs_info);
Zhaolei55e3a602015-08-05 16:43:30 +08003612 break;
3613 }
3614
Qu Wenruo1bbb97b2020-01-24 07:58:20 +08003615 /*
3616 * Now the target block is marked RO, wait for nocow writes to
3617 * finish before dev-replace.
3618 * COW is fine, as COW never overwrites extents in commit tree.
3619 */
3620 if (sctx->is_dev_replace) {
3621 btrfs_wait_nocow_writers(cache);
3622 btrfs_wait_ordered_roots(fs_info, U64_MAX, cache->start,
3623 cache->length);
3624 }
3625
3626 scrub_pause_off(fs_info);
Dan Carpenter3ec17a62019-10-31 13:55:01 +03003627 down_write(&dev_replace->rwsem);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003628 dev_replace->cursor_right = found_key.offset + length;
3629 dev_replace->cursor_left = found_key.offset;
3630 dev_replace->item_needs_writeback = 1;
David Sterbacb5583d2018-09-07 16:11:23 +02003631 up_write(&dev_replace->rwsem);
3632
Zhao Lei8c204c92015-08-19 15:02:40 +08003633 ret = scrub_chunk(sctx, scrub_dev, chunk_offset, length,
Omar Sandoval32934282018-08-14 11:09:52 -07003634 found_key.offset, cache);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003635
3636 /*
3637 * flush, submit all pending read and write bios, afterwards
3638 * wait for them.
3639 * Note that in the dev replace case, a read request causes
3640 * write requests that are submitted in the read completion
3641 * worker. Therefore in the current situation, it is required
3642 * that all write requests are flushed, so that all read and
3643 * write requests are really completed when bios_in_flight
3644 * changes to 0.
3645 */
David Sterba2073c4c2017-03-31 17:12:51 +02003646 sctx->flush_all_writes = true;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003647 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003648 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003649 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003650 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003651
3652 wait_event(sctx->list_wait,
3653 atomic_read(&sctx->bios_in_flight) == 0);
Zhaoleib708ce92015-08-05 16:43:29 +08003654
3655 scrub_pause_on(fs_info);
Wang Shilong12cf9372014-02-19 19:24:17 +08003656
3657 /*
3658 * must be called before we decrease @scrub_paused.
3659 * make sure we don't block transaction commit while
3660 * we are waiting pending workers finished.
3661 */
Stefan Behrensff023aa2012-11-06 11:43:11 +01003662 wait_event(sctx->list_wait,
3663 atomic_read(&sctx->workers_pending) == 0);
David Sterba2073c4c2017-03-31 17:12:51 +02003664 sctx->flush_all_writes = false;
Wang Shilong12cf9372014-02-19 19:24:17 +08003665
Zhaoleib708ce92015-08-05 16:43:29 +08003666 scrub_pause_off(fs_info);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003667
Dan Carpenter3ec17a62019-10-31 13:55:01 +03003668 down_write(&dev_replace->rwsem);
Filipe Manana1a1a8b72016-05-14 19:44:40 +01003669 dev_replace->cursor_left = dev_replace->cursor_right;
3670 dev_replace->item_needs_writeback = 1;
Dan Carpenter3ec17a62019-10-31 13:55:01 +03003671 up_write(&dev_replace->rwsem);
Filipe Manana1a1a8b72016-05-14 19:44:40 +01003672
Zhaolei76a8efa2015-11-17 18:46:17 +08003673 if (ro_set)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003674 btrfs_dec_block_group_ro(cache);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003675
Filipe Manana758f2df2015-11-19 11:45:48 +00003676 /*
3677 * We might have prevented the cleaner kthread from deleting
3678 * this block group if it was already unused because we raced
3679 * and set it to RO mode first. So add it back to the unused
3680 * list, otherwise it might not ever be deleted unless a manual
3681 * balance is triggered or it becomes used and unused again.
3682 */
3683 spin_lock(&cache->lock);
3684 if (!cache->removed && !cache->ro && cache->reserved == 0 &&
David Sterbabf38be62019-10-23 18:48:11 +02003685 cache->used == 0) {
Filipe Manana758f2df2015-11-19 11:45:48 +00003686 spin_unlock(&cache->lock);
Dennis Zhou6e80d4f2019-12-13 16:22:15 -08003687 if (btrfs_test_opt(fs_info, DISCARD_ASYNC))
3688 btrfs_discard_queue_work(&fs_info->discard_ctl,
3689 cache);
3690 else
3691 btrfs_mark_bg_unused(cache);
Filipe Manana758f2df2015-11-19 11:45:48 +00003692 } else {
3693 spin_unlock(&cache->lock);
3694 }
3695
Filipe Manana6b7304a2020-05-08 11:01:47 +01003696 btrfs_unfreeze_block_group(cache);
Arne Jansena2de7332011-03-08 14:14:00 +01003697 btrfs_put_block_group(cache);
3698 if (ret)
3699 break;
Omar Sandoval32934282018-08-14 11:09:52 -07003700 if (sctx->is_dev_replace &&
Stefan Behrensaf1be4f2012-11-27 17:39:51 +00003701 atomic64_read(&dev_replace->num_write_errors) > 0) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01003702 ret = -EIO;
3703 break;
3704 }
3705 if (sctx->stat.malloc_errors > 0) {
3706 ret = -ENOMEM;
3707 break;
3708 }
Qu Wenruoced96ed2014-06-19 10:42:51 +08003709skip:
Arne Jansena2de7332011-03-08 14:14:00 +01003710 key.offset = found_key.offset + length;
Chris Mason71267332011-05-23 06:30:52 -04003711 btrfs_release_path(path);
Arne Jansena2de7332011-03-08 14:14:00 +01003712 }
3713
Arne Jansena2de7332011-03-08 14:14:00 +01003714 btrfs_free_path(path);
Arne Jansen8c510322011-06-03 10:09:26 +02003715
Zhaolei55e3a602015-08-05 16:43:30 +08003716 return ret;
Arne Jansena2de7332011-03-08 14:14:00 +01003717}
3718
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003719static noinline_for_stack int scrub_supers(struct scrub_ctx *sctx,
3720 struct btrfs_device *scrub_dev)
Arne Jansena2de7332011-03-08 14:14:00 +01003721{
3722 int i;
3723 u64 bytenr;
3724 u64 gen;
3725 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003726 struct btrfs_fs_info *fs_info = sctx->fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +01003727
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003728 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003729 return -EIO;
3730
Miao Xie5f546062014-07-24 11:37:09 +08003731 /* Seed devices of a new filesystem has their own generation. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003732 if (scrub_dev->fs_devices != fs_info->fs_devices)
Miao Xie5f546062014-07-24 11:37:09 +08003733 gen = scrub_dev->generation;
3734 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003735 gen = fs_info->last_trans_committed;
Arne Jansena2de7332011-03-08 14:14:00 +01003736
3737 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
3738 bytenr = btrfs_sb_offset(i);
Miao Xie935e5cc2014-09-03 21:35:33 +08003739 if (bytenr + BTRFS_SUPER_INFO_SIZE >
3740 scrub_dev->commit_total_bytes)
Arne Jansena2de7332011-03-08 14:14:00 +01003741 break;
3742
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003743 ret = scrub_pages(sctx, bytenr, BTRFS_SUPER_INFO_SIZE, bytenr,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003744 scrub_dev, BTRFS_EXTENT_FLAG_SUPER, gen, i,
Stefan Behrensff023aa2012-11-06 11:43:11 +01003745 NULL, 1, bytenr);
Arne Jansena2de7332011-03-08 14:14:00 +01003746 if (ret)
3747 return ret;
3748 }
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003749 wait_event(sctx->list_wait, atomic_read(&sctx->bios_in_flight) == 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003750
3751 return 0;
3752}
3753
3754/*
3755 * get a reference count on fs_info->scrub_workers. start worker if necessary
3756 */
Stefan Behrensff023aa2012-11-06 11:43:11 +01003757static noinline_for_stack int scrub_workers_get(struct btrfs_fs_info *fs_info,
3758 int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01003759{
David Sterba6f011052015-02-16 18:34:01 +01003760 unsigned int flags = WQ_FREEZABLE | WQ_UNBOUND;
Qu Wenruo0339ef22014-02-28 10:46:17 +08003761 int max_active = fs_info->thread_pool_size;
Arne Jansena2de7332011-03-08 14:14:00 +01003762
Anand Jaineb4318e2019-01-30 14:45:01 +08003763 lockdep_assert_held(&fs_info->scrub_lock);
3764
Anand Jainff09c4c2019-01-30 14:45:02 +08003765 if (refcount_read(&fs_info->scrub_workers_refcnt) == 0) {
David Sterbac8352942019-02-12 16:51:18 +01003766 ASSERT(fs_info->scrub_workers == NULL);
David Sterbaaf1cbe02017-03-31 18:42:57 +02003767 fs_info->scrub_workers = btrfs_alloc_workqueue(fs_info, "scrub",
3768 flags, is_dev_replace ? 1 : max_active, 4);
Zhao Leie82afc52015-06-12 20:36:58 +08003769 if (!fs_info->scrub_workers)
3770 goto fail_scrub_workers;
3771
David Sterbac8352942019-02-12 16:51:18 +01003772 ASSERT(fs_info->scrub_wr_completion_workers == NULL);
Qu Wenruo0339ef22014-02-28 10:46:17 +08003773 fs_info->scrub_wr_completion_workers =
Jeff Mahoneycb001092016-06-09 16:22:11 -04003774 btrfs_alloc_workqueue(fs_info, "scrubwrc", flags,
Qu Wenruo0339ef22014-02-28 10:46:17 +08003775 max_active, 2);
Zhao Leie82afc52015-06-12 20:36:58 +08003776 if (!fs_info->scrub_wr_completion_workers)
3777 goto fail_scrub_wr_completion_workers;
3778
David Sterbac8352942019-02-12 16:51:18 +01003779 ASSERT(fs_info->scrub_parity_workers == NULL);
Zhao Lei20b2e302015-06-04 20:09:15 +08003780 fs_info->scrub_parity_workers =
Jeff Mahoneycb001092016-06-09 16:22:11 -04003781 btrfs_alloc_workqueue(fs_info, "scrubparity", flags,
Zhao Lei20b2e302015-06-04 20:09:15 +08003782 max_active, 2);
Zhao Leie82afc52015-06-12 20:36:58 +08003783 if (!fs_info->scrub_parity_workers)
3784 goto fail_scrub_parity_workers;
Anand Jainff09c4c2019-01-30 14:45:02 +08003785
3786 refcount_set(&fs_info->scrub_workers_refcnt, 1);
3787 } else {
3788 refcount_inc(&fs_info->scrub_workers_refcnt);
Arne Jansen632dd772011-06-10 12:07:07 +02003789 }
Zhao Leie82afc52015-06-12 20:36:58 +08003790 return 0;
3791
3792fail_scrub_parity_workers:
Zhao Leie82afc52015-06-12 20:36:58 +08003793 btrfs_destroy_workqueue(fs_info->scrub_wr_completion_workers);
3794fail_scrub_wr_completion_workers:
3795 btrfs_destroy_workqueue(fs_info->scrub_workers);
3796fail_scrub_workers:
3797 return -ENOMEM;
Arne Jansena2de7332011-03-08 14:14:00 +01003798}
3799
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003800int btrfs_scrub_dev(struct btrfs_fs_info *fs_info, u64 devid, u64 start,
3801 u64 end, struct btrfs_scrub_progress *progress,
Stefan Behrens63a212a2012-11-05 18:29:28 +01003802 int readonly, int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01003803{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003804 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003805 int ret;
3806 struct btrfs_device *dev;
Filipe Mananaa5fb1142018-11-26 20:07:17 +00003807 unsigned int nofs_flag;
Anand Jain1cec3f272019-01-30 14:45:00 +08003808 struct btrfs_workqueue *scrub_workers = NULL;
3809 struct btrfs_workqueue *scrub_wr_comp = NULL;
3810 struct btrfs_workqueue *scrub_parity = NULL;
Arne Jansena2de7332011-03-08 14:14:00 +01003811
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003812 if (btrfs_fs_closing(fs_info))
David Sterba6c3abed2019-02-25 19:57:41 +01003813 return -EAGAIN;
Arne Jansena2de7332011-03-08 14:14:00 +01003814
Jeff Mahoneyda170662016-06-15 09:22:56 -04003815 if (fs_info->nodesize > BTRFS_STRIPE_LEN) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003816 /*
3817 * in this case scrub is unable to calculate the checksum
3818 * the way scrub is implemented. Do not handle this
3819 * situation at all because it won't ever happen.
3820 */
Frank Holtonefe120a2013-12-20 11:37:06 -05003821 btrfs_err(fs_info,
3822 "scrub: size assumption nodesize <= BTRFS_STRIPE_LEN (%d <= %d) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003823 fs_info->nodesize,
3824 BTRFS_STRIPE_LEN);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003825 return -EINVAL;
3826 }
3827
Jeff Mahoneyda170662016-06-15 09:22:56 -04003828 if (fs_info->sectorsize != PAGE_SIZE) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003829 /* not supported for data w/o checksums */
Chandan Rajendra751bebb2016-07-04 10:04:39 +05303830 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003831 "scrub: size assumption sectorsize != PAGE_SIZE (%d != %lu) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003832 fs_info->sectorsize, PAGE_SIZE);
Arne Jansena2de7332011-03-08 14:14:00 +01003833 return -EINVAL;
3834 }
3835
Jeff Mahoneyda170662016-06-15 09:22:56 -04003836 if (fs_info->nodesize >
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003837 PAGE_SIZE * SCRUB_MAX_PAGES_PER_BLOCK ||
Jeff Mahoneyda170662016-06-15 09:22:56 -04003838 fs_info->sectorsize > PAGE_SIZE * SCRUB_MAX_PAGES_PER_BLOCK) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003839 /*
3840 * would exhaust the array bounds of pagev member in
3841 * struct scrub_block
3842 */
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003843 btrfs_err(fs_info,
3844 "scrub: size assumption nodesize and sectorsize <= SCRUB_MAX_PAGES_PER_BLOCK (%d <= %d && %d <= %d) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003845 fs_info->nodesize,
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003846 SCRUB_MAX_PAGES_PER_BLOCK,
Jeff Mahoneyda170662016-06-15 09:22:56 -04003847 fs_info->sectorsize,
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003848 SCRUB_MAX_PAGES_PER_BLOCK);
3849 return -EINVAL;
3850 }
3851
David Sterba0e94c4f42018-12-04 16:11:56 +01003852 /* Allocate outside of device_list_mutex */
3853 sctx = scrub_setup_ctx(fs_info, is_dev_replace);
3854 if (IS_ERR(sctx))
3855 return PTR_ERR(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01003856
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003857 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jain09ba3bc2019-01-19 14:48:55 +08003858 dev = btrfs_find_device(fs_info->fs_devices, devid, NULL, NULL, true);
Anand Jaine6e674b2017-12-04 12:54:54 +08003859 if (!dev || (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) &&
3860 !is_dev_replace)) {
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003861 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003862 ret = -ENODEV;
3863 goto out_free_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003864 }
Arne Jansena2de7332011-03-08 14:14:00 +01003865
Anand Jainebbede42017-12-04 12:54:52 +08003866 if (!is_dev_replace && !readonly &&
3867 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Miao Xie5d68da32014-07-24 11:37:07 +08003868 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Misono Tomohiro672d5992018-08-02 16:19:07 +09003869 btrfs_err_in_rcu(fs_info, "scrub: device %s is not writable",
3870 rcu_str_deref(dev->name));
David Sterba0e94c4f42018-12-04 16:11:56 +01003871 ret = -EROFS;
3872 goto out_free_ctx;
Miao Xie5d68da32014-07-24 11:37:07 +08003873 }
3874
Wang Shilong3b7a0162013-10-12 02:11:12 +08003875 mutex_lock(&fs_info->scrub_lock);
Anand Jaine12c9622017-12-04 12:54:53 +08003876 if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &dev->dev_state) ||
Anand Jain401e29c2017-12-04 12:54:55 +08003877 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &dev->dev_state)) {
Arne Jansena2de7332011-03-08 14:14:00 +01003878 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003879 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003880 ret = -EIO;
3881 goto out_free_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003882 }
3883
David Sterbacb5583d2018-09-07 16:11:23 +02003884 down_read(&fs_info->dev_replace.rwsem);
Anand Jaincadbc0a2018-01-03 16:08:30 +08003885 if (dev->scrub_ctx ||
Stefan Behrens8dabb742012-11-06 13:15:27 +01003886 (!is_dev_replace &&
3887 btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))) {
David Sterbacb5583d2018-09-07 16:11:23 +02003888 up_read(&fs_info->dev_replace.rwsem);
Arne Jansena2de7332011-03-08 14:14:00 +01003889 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003890 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003891 ret = -EINPROGRESS;
3892 goto out_free_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003893 }
David Sterbacb5583d2018-09-07 16:11:23 +02003894 up_read(&fs_info->dev_replace.rwsem);
Wang Shilong3b7a0162013-10-12 02:11:12 +08003895
3896 ret = scrub_workers_get(fs_info, is_dev_replace);
3897 if (ret) {
3898 mutex_unlock(&fs_info->scrub_lock);
3899 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003900 goto out_free_ctx;
Wang Shilong3b7a0162013-10-12 02:11:12 +08003901 }
3902
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003903 sctx->readonly = readonly;
Anand Jaincadbc0a2018-01-03 16:08:30 +08003904 dev->scrub_ctx = sctx;
Wang Shilong3cb09292013-12-04 21:15:19 +08003905 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Arne Jansena2de7332011-03-08 14:14:00 +01003906
Wang Shilong3cb09292013-12-04 21:15:19 +08003907 /*
3908 * checking @scrub_pause_req here, we can avoid
3909 * race between committing transaction and scrubbing.
3910 */
Wang Shilongcb7ab022013-12-04 21:16:53 +08003911 __scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003912 atomic_inc(&fs_info->scrubs_running);
3913 mutex_unlock(&fs_info->scrub_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003914
Filipe Mananaa5fb1142018-11-26 20:07:17 +00003915 /*
3916 * In order to avoid deadlock with reclaim when there is a transaction
3917 * trying to pause scrub, make sure we use GFP_NOFS for all the
3918 * allocations done at btrfs_scrub_pages() and scrub_pages_for_parity()
3919 * invoked by our callees. The pausing request is done when the
3920 * transaction commit starts, and it blocks the transaction until scrub
3921 * is paused (done at specific points at scrub_stripe() or right above
3922 * before incrementing fs_info->scrubs_running).
3923 */
3924 nofs_flag = memalloc_nofs_save();
Stefan Behrensff023aa2012-11-06 11:43:11 +01003925 if (!is_dev_replace) {
Anand Jaind1e14422019-01-03 16:17:40 +08003926 btrfs_info(fs_info, "scrub: started on devid %llu", devid);
Wang Shilong9b011ad2013-10-25 19:12:02 +08003927 /*
3928 * by holding device list mutex, we can
3929 * kick off writing super in log tree sync.
3930 */
Wang Shilong3cb09292013-12-04 21:15:19 +08003931 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003932 ret = scrub_supers(sctx, dev);
Wang Shilong3cb09292013-12-04 21:15:19 +08003933 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003934 }
Arne Jansena2de7332011-03-08 14:14:00 +01003935
3936 if (!ret)
Omar Sandoval32934282018-08-14 11:09:52 -07003937 ret = scrub_enumerate_chunks(sctx, dev, start, end);
Filipe Mananaa5fb1142018-11-26 20:07:17 +00003938 memalloc_nofs_restore(nofs_flag);
Arne Jansena2de7332011-03-08 14:14:00 +01003939
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003940 wait_event(sctx->list_wait, atomic_read(&sctx->bios_in_flight) == 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003941 atomic_dec(&fs_info->scrubs_running);
3942 wake_up(&fs_info->scrub_pause_wait);
3943
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003944 wait_event(sctx->list_wait, atomic_read(&sctx->workers_pending) == 0);
Jan Schmidt0ef8e452011-06-13 20:04:15 +02003945
Arne Jansena2de7332011-03-08 14:14:00 +01003946 if (progress)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003947 memcpy(progress, &sctx->stat, sizeof(*progress));
Arne Jansena2de7332011-03-08 14:14:00 +01003948
Anand Jaind1e14422019-01-03 16:17:40 +08003949 if (!is_dev_replace)
3950 btrfs_info(fs_info, "scrub: %s on devid %llu with status: %d",
3951 ret ? "not finished" : "finished", devid, ret);
3952
Arne Jansena2de7332011-03-08 14:14:00 +01003953 mutex_lock(&fs_info->scrub_lock);
Anand Jaincadbc0a2018-01-03 16:08:30 +08003954 dev->scrub_ctx = NULL;
Anand Jainff09c4c2019-01-30 14:45:02 +08003955 if (refcount_dec_and_test(&fs_info->scrub_workers_refcnt)) {
Anand Jain1cec3f272019-01-30 14:45:00 +08003956 scrub_workers = fs_info->scrub_workers;
3957 scrub_wr_comp = fs_info->scrub_wr_completion_workers;
3958 scrub_parity = fs_info->scrub_parity_workers;
David Sterbac8352942019-02-12 16:51:18 +01003959
3960 fs_info->scrub_workers = NULL;
3961 fs_info->scrub_wr_completion_workers = NULL;
3962 fs_info->scrub_parity_workers = NULL;
Anand Jain1cec3f272019-01-30 14:45:00 +08003963 }
Arne Jansena2de7332011-03-08 14:14:00 +01003964 mutex_unlock(&fs_info->scrub_lock);
3965
Anand Jain1cec3f272019-01-30 14:45:00 +08003966 btrfs_destroy_workqueue(scrub_workers);
3967 btrfs_destroy_workqueue(scrub_wr_comp);
3968 btrfs_destroy_workqueue(scrub_parity);
Filipe Mananaf55985f2015-02-09 21:14:24 +00003969 scrub_put_ctx(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01003970
3971 return ret;
David Sterba0e94c4f42018-12-04 16:11:56 +01003972
3973out_free_ctx:
3974 scrub_free_ctx(sctx);
3975
3976 return ret;
Arne Jansena2de7332011-03-08 14:14:00 +01003977}
3978
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003979void btrfs_scrub_pause(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003980{
Arne Jansena2de7332011-03-08 14:14:00 +01003981 mutex_lock(&fs_info->scrub_lock);
3982 atomic_inc(&fs_info->scrub_pause_req);
3983 while (atomic_read(&fs_info->scrubs_paused) !=
3984 atomic_read(&fs_info->scrubs_running)) {
3985 mutex_unlock(&fs_info->scrub_lock);
3986 wait_event(fs_info->scrub_pause_wait,
3987 atomic_read(&fs_info->scrubs_paused) ==
3988 atomic_read(&fs_info->scrubs_running));
3989 mutex_lock(&fs_info->scrub_lock);
3990 }
3991 mutex_unlock(&fs_info->scrub_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003992}
3993
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003994void btrfs_scrub_continue(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003995{
Arne Jansena2de7332011-03-08 14:14:00 +01003996 atomic_dec(&fs_info->scrub_pause_req);
3997 wake_up(&fs_info->scrub_pause_wait);
Arne Jansena2de7332011-03-08 14:14:00 +01003998}
3999
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004000int btrfs_scrub_cancel(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01004001{
Arne Jansena2de7332011-03-08 14:14:00 +01004002 mutex_lock(&fs_info->scrub_lock);
4003 if (!atomic_read(&fs_info->scrubs_running)) {
4004 mutex_unlock(&fs_info->scrub_lock);
4005 return -ENOTCONN;
4006 }
4007
4008 atomic_inc(&fs_info->scrub_cancel_req);
4009 while (atomic_read(&fs_info->scrubs_running)) {
4010 mutex_unlock(&fs_info->scrub_lock);
4011 wait_event(fs_info->scrub_pause_wait,
4012 atomic_read(&fs_info->scrubs_running) == 0);
4013 mutex_lock(&fs_info->scrub_lock);
4014 }
4015 atomic_dec(&fs_info->scrub_cancel_req);
4016 mutex_unlock(&fs_info->scrub_lock);
4017
4018 return 0;
4019}
4020
David Sterba163e97e2019-03-20 16:32:55 +01004021int btrfs_scrub_cancel_dev(struct btrfs_device *dev)
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004022{
David Sterba163e97e2019-03-20 16:32:55 +01004023 struct btrfs_fs_info *fs_info = dev->fs_info;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004024 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01004025
4026 mutex_lock(&fs_info->scrub_lock);
Anand Jaincadbc0a2018-01-03 16:08:30 +08004027 sctx = dev->scrub_ctx;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004028 if (!sctx) {
Arne Jansena2de7332011-03-08 14:14:00 +01004029 mutex_unlock(&fs_info->scrub_lock);
4030 return -ENOTCONN;
4031 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004032 atomic_inc(&sctx->cancel_req);
Anand Jaincadbc0a2018-01-03 16:08:30 +08004033 while (dev->scrub_ctx) {
Arne Jansena2de7332011-03-08 14:14:00 +01004034 mutex_unlock(&fs_info->scrub_lock);
4035 wait_event(fs_info->scrub_pause_wait,
Anand Jaincadbc0a2018-01-03 16:08:30 +08004036 dev->scrub_ctx == NULL);
Arne Jansena2de7332011-03-08 14:14:00 +01004037 mutex_lock(&fs_info->scrub_lock);
4038 }
4039 mutex_unlock(&fs_info->scrub_lock);
4040
4041 return 0;
4042}
Stefan Behrens1623ede2012-03-27 14:21:26 -04004043
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004044int btrfs_scrub_progress(struct btrfs_fs_info *fs_info, u64 devid,
Arne Jansena2de7332011-03-08 14:14:00 +01004045 struct btrfs_scrub_progress *progress)
4046{
4047 struct btrfs_device *dev;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004048 struct scrub_ctx *sctx = NULL;
Arne Jansena2de7332011-03-08 14:14:00 +01004049
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004050 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jain09ba3bc2019-01-19 14:48:55 +08004051 dev = btrfs_find_device(fs_info->fs_devices, devid, NULL, NULL, true);
Arne Jansena2de7332011-03-08 14:14:00 +01004052 if (dev)
Anand Jaincadbc0a2018-01-03 16:08:30 +08004053 sctx = dev->scrub_ctx;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004054 if (sctx)
4055 memcpy(progress, &sctx->stat, sizeof(*progress));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004056 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Arne Jansena2de7332011-03-08 14:14:00 +01004057
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004058 return dev ? (sctx ? 0 : -ENOTCONN) : -ENODEV;
Arne Jansena2de7332011-03-08 14:14:00 +01004059}
Stefan Behrensff023aa2012-11-06 11:43:11 +01004060
4061static void scrub_remap_extent(struct btrfs_fs_info *fs_info,
4062 u64 extent_logical, u64 extent_len,
4063 u64 *extent_physical,
4064 struct btrfs_device **extent_dev,
4065 int *extent_mirror_num)
4066{
4067 u64 mapped_length;
4068 struct btrfs_bio *bbio = NULL;
4069 int ret;
4070
4071 mapped_length = extent_len;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02004072 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, extent_logical,
Stefan Behrensff023aa2012-11-06 11:43:11 +01004073 &mapped_length, &bbio, 0);
4074 if (ret || !bbio || mapped_length < extent_len ||
4075 !bbio->stripes[0].dev->bdev) {
Zhao Lei6e9606d2015-01-20 15:11:34 +08004076 btrfs_put_bbio(bbio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01004077 return;
4078 }
4079
4080 *extent_physical = bbio->stripes[0].physical;
4081 *extent_mirror_num = bbio->mirror_num;
4082 *extent_dev = bbio->stripes[0].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08004083 btrfs_put_bbio(bbio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01004084}