blob: 19a64c72f38e38245b0347878b570cdd5344dabf [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];
David Sterbad41ebef2020-05-29 16:20:35 +02001789 struct scrub_page *spage;
David Sterbab0485252020-05-29 15:32:51 +02001790 char *kaddr;
Arne Jansena2de7332011-03-08 14:14:00 +01001791
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001792 BUG_ON(sblock->page_count < 1);
David Sterbad41ebef2020-05-29 16:20:35 +02001793 spage = sblock->pagev[0];
1794 if (!spage->have_csum)
Arne Jansena2de7332011-03-08 14:14:00 +01001795 return 0;
1796
David Sterbad41ebef2020-05-29 16:20:35 +02001797 kaddr = page_address(spage->page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001798
David Sterba771aba02020-05-29 15:54:41 +02001799 shash->tfm = fs_info->csum_shash;
1800 crypto_shash_init(shash);
1801 crypto_shash_digest(shash, kaddr, PAGE_SIZE, csum);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001802
David Sterbad41ebef2020-05-29 16:20:35 +02001803 if (memcmp(csum, spage->csum, sctx->csum_size))
Zhao Leiba7cf982015-08-24 21:18:02 +08001804 sblock->checksum_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001805
Zhao Leiba7cf982015-08-24 21:18:02 +08001806 return sblock->checksum_error;
Arne Jansena2de7332011-03-08 14:14:00 +01001807}
1808
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001809static int scrub_checksum_tree_block(struct scrub_block *sblock)
Arne Jansena2de7332011-03-08 14:14:00 +01001810{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001811 struct scrub_ctx *sctx = sblock->sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01001812 struct btrfs_header *h;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001813 struct btrfs_fs_info *fs_info = sctx->fs_info;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001814 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001815 u8 calculated_csum[BTRFS_CSUM_SIZE];
1816 u8 on_disk_csum[BTRFS_CSUM_SIZE];
1817 struct page *page;
David Sterbab0485252020-05-29 15:32:51 +02001818 char *kaddr;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001819 u64 mapped_size;
1820 void *p;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001821 u64 len;
1822 int index;
1823
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001824 shash->tfm = fs_info->csum_shash;
1825 crypto_shash_init(shash);
1826
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001827 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001828 page = sblock->pagev[0]->page;
David Sterbab0485252020-05-29 15:32:51 +02001829 kaddr = page_address(page);
1830 h = (struct btrfs_header *)kaddr;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001831 memcpy(on_disk_csum, h->csum, sctx->csum_size);
Arne Jansena2de7332011-03-08 14:14:00 +01001832
1833 /*
1834 * we don't use the getter functions here, as we
1835 * a) don't have an extent buffer and
1836 * b) the page is already kmapped
1837 */
Qu Wenruo3cae2102013-07-16 11:19:18 +08001838 if (sblock->pagev[0]->logical != btrfs_stack_header_bytenr(h))
Zhao Leiba7cf982015-08-24 21:18:02 +08001839 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001840
Zhao Leiba7cf982015-08-24 21:18:02 +08001841 if (sblock->pagev[0]->generation != btrfs_stack_header_generation(h)) {
1842 sblock->header_error = 1;
1843 sblock->generation_error = 1;
1844 }
Arne Jansena2de7332011-03-08 14:14:00 +01001845
Miao Xie17a9be22014-07-24 11:37:08 +08001846 if (!scrub_check_fsid(h->fsid, sblock->pagev[0]))
Zhao Leiba7cf982015-08-24 21:18:02 +08001847 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001848
1849 if (memcmp(h->chunk_tree_uuid, fs_info->chunk_tree_uuid,
1850 BTRFS_UUID_SIZE))
Zhao Leiba7cf982015-08-24 21:18:02 +08001851 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001852
David Sterba25cc1222017-05-16 19:10:41 +02001853 len = sctx->fs_info->nodesize - BTRFS_CSUM_SIZE;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001854 mapped_size = PAGE_SIZE - BTRFS_CSUM_SIZE;
David Sterbab0485252020-05-29 15:32:51 +02001855 p = kaddr + BTRFS_CSUM_SIZE;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001856 index = 0;
1857 for (;;) {
1858 u64 l = min_t(u64, len, mapped_size);
1859
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001860 crypto_shash_update(shash, p, l);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001861 len -= l;
1862 if (len == 0)
1863 break;
1864 index++;
1865 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001866 BUG_ON(!sblock->pagev[index]->page);
1867 page = sblock->pagev[index]->page;
David Sterbab0485252020-05-29 15:32:51 +02001868 kaddr = page_address(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001869 mapped_size = PAGE_SIZE;
David Sterbab0485252020-05-29 15:32:51 +02001870 p = kaddr;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001871 }
1872
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001873 crypto_shash_final(shash, calculated_csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001874 if (memcmp(calculated_csum, on_disk_csum, sctx->csum_size))
Zhao Leiba7cf982015-08-24 21:18:02 +08001875 sblock->checksum_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001876
Zhao Leiba7cf982015-08-24 21:18:02 +08001877 return sblock->header_error || sblock->checksum_error;
Arne Jansena2de7332011-03-08 14:14:00 +01001878}
1879
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001880static int scrub_checksum_super(struct scrub_block *sblock)
Arne Jansena2de7332011-03-08 14:14:00 +01001881{
1882 struct btrfs_super_block *s;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001883 struct scrub_ctx *sctx = sblock->sctx;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001884 struct btrfs_fs_info *fs_info = sctx->fs_info;
1885 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001886 u8 calculated_csum[BTRFS_CSUM_SIZE];
David Sterbac7460542020-05-29 15:47:05 +02001887 struct scrub_page *spage;
David Sterbab0485252020-05-29 15:32:51 +02001888 char *kaddr;
Stefan Behrens442a4f62012-05-25 16:06:08 +02001889 int fail_gen = 0;
1890 int fail_cor = 0;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001891
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001892 BUG_ON(sblock->page_count < 1);
David Sterbac7460542020-05-29 15:47:05 +02001893 spage = sblock->pagev[0];
1894 kaddr = page_address(spage->page);
David Sterbab0485252020-05-29 15:32:51 +02001895 s = (struct btrfs_super_block *)kaddr;
Arne Jansena2de7332011-03-08 14:14:00 +01001896
David Sterbac7460542020-05-29 15:47:05 +02001897 if (spage->logical != btrfs_super_bytenr(s))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001898 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001899
David Sterbac7460542020-05-29 15:47:05 +02001900 if (spage->generation != btrfs_super_generation(s))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001901 ++fail_gen;
Arne Jansena2de7332011-03-08 14:14:00 +01001902
David Sterbac7460542020-05-29 15:47:05 +02001903 if (!scrub_check_fsid(s->fsid, spage))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001904 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001905
David Sterba83cf6d52020-05-29 15:40:36 +02001906 shash->tfm = fs_info->csum_shash;
1907 crypto_shash_init(shash);
1908 crypto_shash_digest(shash, kaddr + BTRFS_CSUM_SIZE,
1909 BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE, calculated_csum);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001910
David Sterba74710cf2020-05-29 15:43:14 +02001911 if (memcmp(calculated_csum, s->csum, sctx->csum_size))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001912 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001913
Stefan Behrens442a4f62012-05-25 16:06:08 +02001914 if (fail_cor + fail_gen) {
Arne Jansena2de7332011-03-08 14:14:00 +01001915 /*
1916 * if we find an error in a super block, we just report it.
1917 * They will get written with the next transaction commit
1918 * anyway
1919 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001920 spin_lock(&sctx->stat_lock);
1921 ++sctx->stat.super_errors;
1922 spin_unlock(&sctx->stat_lock);
Stefan Behrens442a4f62012-05-25 16:06:08 +02001923 if (fail_cor)
David Sterbac7460542020-05-29 15:47:05 +02001924 btrfs_dev_stat_inc_and_print(spage->dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +02001925 BTRFS_DEV_STAT_CORRUPTION_ERRS);
1926 else
David Sterbac7460542020-05-29 15:47:05 +02001927 btrfs_dev_stat_inc_and_print(spage->dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +02001928 BTRFS_DEV_STAT_GENERATION_ERRS);
Arne Jansena2de7332011-03-08 14:14:00 +01001929 }
1930
Stefan Behrens442a4f62012-05-25 16:06:08 +02001931 return fail_cor + fail_gen;
Arne Jansena2de7332011-03-08 14:14:00 +01001932}
1933
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001934static void scrub_block_get(struct scrub_block *sblock)
1935{
Elena Reshetova186debd2017-03-03 10:55:23 +02001936 refcount_inc(&sblock->refs);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001937}
1938
1939static void scrub_block_put(struct scrub_block *sblock)
1940{
Elena Reshetova186debd2017-03-03 10:55:23 +02001941 if (refcount_dec_and_test(&sblock->refs)) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001942 int i;
1943
Miao Xie5a6ac9e2014-11-06 17:20:58 +08001944 if (sblock->sparity)
1945 scrub_parity_put(sblock->sparity);
1946
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001947 for (i = 0; i < sblock->page_count; i++)
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001948 scrub_page_put(sblock->pagev[i]);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001949 kfree(sblock);
1950 }
1951}
1952
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001953static void scrub_page_get(struct scrub_page *spage)
1954{
Zhao Lei57019342015-01-20 15:11:45 +08001955 atomic_inc(&spage->refs);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001956}
1957
1958static void scrub_page_put(struct scrub_page *spage)
1959{
Zhao Lei57019342015-01-20 15:11:45 +08001960 if (atomic_dec_and_test(&spage->refs)) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001961 if (spage->page)
1962 __free_page(spage->page);
1963 kfree(spage);
1964 }
1965}
1966
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001967static void scrub_submit(struct scrub_ctx *sctx)
Arne Jansena2de7332011-03-08 14:14:00 +01001968{
1969 struct scrub_bio *sbio;
1970
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001971 if (sctx->curr == -1)
Stefan Behrens1623ede2012-03-27 14:21:26 -04001972 return;
Arne Jansena2de7332011-03-08 14:14:00 +01001973
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001974 sbio = sctx->bios[sctx->curr];
1975 sctx->curr = -1;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01001976 scrub_pending_bio_inc(sctx);
Mike Christie4e49ea42016-06-05 14:31:41 -05001977 btrfsic_submit_bio(sbio->bio);
Arne Jansena2de7332011-03-08 14:14:00 +01001978}
1979
Stefan Behrensff023aa2012-11-06 11:43:11 +01001980static int scrub_add_page_to_rd_bio(struct scrub_ctx *sctx,
1981 struct scrub_page *spage)
Arne Jansena2de7332011-03-08 14:14:00 +01001982{
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001983 struct scrub_block *sblock = spage->sblock;
Arne Jansena2de7332011-03-08 14:14:00 +01001984 struct scrub_bio *sbio;
Arne Jansen69f4cb52011-11-11 08:17:10 -05001985 int ret;
Arne Jansena2de7332011-03-08 14:14:00 +01001986
1987again:
1988 /*
1989 * grab a fresh bio or wait for one to become available
1990 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001991 while (sctx->curr == -1) {
1992 spin_lock(&sctx->list_lock);
1993 sctx->curr = sctx->first_free;
1994 if (sctx->curr != -1) {
1995 sctx->first_free = sctx->bios[sctx->curr]->next_free;
1996 sctx->bios[sctx->curr]->next_free = -1;
1997 sctx->bios[sctx->curr]->page_count = 0;
1998 spin_unlock(&sctx->list_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01001999 } else {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002000 spin_unlock(&sctx->list_lock);
2001 wait_event(sctx->list_wait, sctx->first_free != -1);
Arne Jansena2de7332011-03-08 14:14:00 +01002002 }
2003 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002004 sbio = sctx->bios[sctx->curr];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002005 if (sbio->page_count == 0) {
Arne Jansen69f4cb52011-11-11 08:17:10 -05002006 struct bio *bio;
2007
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002008 sbio->physical = spage->physical;
2009 sbio->logical = spage->logical;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002010 sbio->dev = spage->dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002011 bio = sbio->bio;
2012 if (!bio) {
David Sterbac5e4c3d2017-06-12 17:29:41 +02002013 bio = btrfs_io_bio_alloc(sctx->pages_per_rd_bio);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002014 sbio->bio = bio;
2015 }
Arne Jansen69f4cb52011-11-11 08:17:10 -05002016
2017 bio->bi_private = sbio;
2018 bio->bi_end_io = scrub_bio_end_io;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002019 bio_set_dev(bio, sbio->dev->bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002020 bio->bi_iter.bi_sector = sbio->physical >> 9;
David Sterbaebcc3262018-06-29 10:56:53 +02002021 bio->bi_opf = REQ_OP_READ;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002022 sbio->status = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002023 } else if (sbio->physical + sbio->page_count * PAGE_SIZE !=
2024 spage->physical ||
2025 sbio->logical + sbio->page_count * PAGE_SIZE !=
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002026 spage->logical ||
2027 sbio->dev != spage->dev) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002028 scrub_submit(sctx);
Arne Jansen69f4cb52011-11-11 08:17:10 -05002029 goto again;
2030 }
2031
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002032 sbio->pagev[sbio->page_count] = spage;
2033 ret = bio_add_page(sbio->bio, spage->page, PAGE_SIZE, 0);
2034 if (ret != PAGE_SIZE) {
2035 if (sbio->page_count < 1) {
2036 bio_put(sbio->bio);
2037 sbio->bio = NULL;
2038 return -EIO;
2039 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002040 scrub_submit(sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002041 goto again;
Arne Jansena2de7332011-03-08 14:14:00 +01002042 }
Arne Jansen1bc87792011-05-28 21:57:55 +02002043
Stefan Behrensff023aa2012-11-06 11:43:11 +01002044 scrub_block_get(sblock); /* one for the page added to the bio */
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002045 atomic_inc(&sblock->outstanding_pages);
2046 sbio->page_count++;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002047 if (sbio->page_count == sctx->pages_per_rd_bio)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002048 scrub_submit(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01002049
2050 return 0;
2051}
2052
Linus Torvalds22365972015-09-05 15:14:43 -07002053static void scrub_missing_raid56_end_io(struct bio *bio)
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002054{
2055 struct scrub_block *sblock = bio->bi_private;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002056 struct btrfs_fs_info *fs_info = sblock->sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002057
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002058 if (bio->bi_status)
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002059 sblock->no_io_error_seen = 0;
2060
Scott Talbert46732722016-05-09 09:14:28 -04002061 bio_put(bio);
2062
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002063 btrfs_queue_work(fs_info->scrub_workers, &sblock->work);
2064}
2065
2066static void scrub_missing_raid56_worker(struct btrfs_work *work)
2067{
2068 struct scrub_block *sblock = container_of(work, struct scrub_block, work);
2069 struct scrub_ctx *sctx = sblock->sctx;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002070 struct btrfs_fs_info *fs_info = sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002071 u64 logical;
2072 struct btrfs_device *dev;
2073
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002074 logical = sblock->pagev[0]->logical;
2075 dev = sblock->pagev[0]->dev;
2076
Zhao Leiaffe4a52015-08-24 21:32:06 +08002077 if (sblock->no_io_error_seen)
Zhao Leiba7cf982015-08-24 21:18:02 +08002078 scrub_recheck_block_checksum(sblock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002079
2080 if (!sblock->no_io_error_seen) {
2081 spin_lock(&sctx->stat_lock);
2082 sctx->stat.read_errors++;
2083 spin_unlock(&sctx->stat_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002084 btrfs_err_rl_in_rcu(fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02002085 "IO error rebuilding logical %llu for dev %s",
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002086 logical, rcu_str_deref(dev->name));
2087 } else if (sblock->header_error || sblock->checksum_error) {
2088 spin_lock(&sctx->stat_lock);
2089 sctx->stat.uncorrectable_errors++;
2090 spin_unlock(&sctx->stat_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002091 btrfs_err_rl_in_rcu(fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02002092 "failed to rebuild valid logical %llu for dev %s",
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002093 logical, rcu_str_deref(dev->name));
2094 } else {
2095 scrub_write_block_to_dev_replace(sblock);
2096 }
2097
David Sterba2073c4c2017-03-31 17:12:51 +02002098 if (sctx->is_dev_replace && sctx->flush_all_writes) {
David Sterba3fb99302017-05-16 19:10:32 +02002099 mutex_lock(&sctx->wr_lock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002100 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02002101 mutex_unlock(&sctx->wr_lock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002102 }
2103
Omar Sandoval57d4f0b2019-09-16 11:30:56 -07002104 scrub_block_put(sblock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002105 scrub_pending_bio_dec(sctx);
2106}
2107
2108static void scrub_missing_raid56_pages(struct scrub_block *sblock)
2109{
2110 struct scrub_ctx *sctx = sblock->sctx;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002111 struct btrfs_fs_info *fs_info = sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002112 u64 length = sblock->page_count * PAGE_SIZE;
2113 u64 logical = sblock->pagev[0]->logical;
Zhao Leif1fee652016-05-17 17:37:38 +08002114 struct btrfs_bio *bbio = NULL;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002115 struct bio *bio;
2116 struct btrfs_raid_bio *rbio;
2117 int ret;
2118 int i;
2119
Qu Wenruoae6529c2017-03-29 09:33:21 +08002120 btrfs_bio_counter_inc_blocked(fs_info);
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02002121 ret = btrfs_map_sblock(fs_info, BTRFS_MAP_GET_READ_MIRRORS, logical,
David Sterba825ad4c2017-03-28 14:45:22 +02002122 &length, &bbio);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002123 if (ret || !bbio || !bbio->raid_map)
2124 goto bbio_out;
2125
2126 if (WARN_ON(!sctx->is_dev_replace ||
2127 !(bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK))) {
2128 /*
2129 * We shouldn't be scrubbing a missing device. Even for dev
2130 * replace, we should only get here for RAID 5/6. We either
2131 * managed to mount something with no mirrors remaining or
2132 * there's a bug in scrub_remap_extent()/btrfs_map_block().
2133 */
2134 goto bbio_out;
2135 }
2136
David Sterbac5e4c3d2017-06-12 17:29:41 +02002137 bio = btrfs_io_bio_alloc(0);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002138 bio->bi_iter.bi_sector = logical >> 9;
2139 bio->bi_private = sblock;
2140 bio->bi_end_io = scrub_missing_raid56_end_io;
2141
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002142 rbio = raid56_alloc_missing_rbio(fs_info, bio, bbio, length);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002143 if (!rbio)
2144 goto rbio_out;
2145
2146 for (i = 0; i < sblock->page_count; i++) {
2147 struct scrub_page *spage = sblock->pagev[i];
2148
2149 raid56_add_scrub_pages(rbio, spage->page, spage->logical);
2150 }
2151
Omar Sandovala0cac0e2019-09-16 11:30:57 -07002152 btrfs_init_work(&sblock->work, scrub_missing_raid56_worker, NULL, NULL);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002153 scrub_block_get(sblock);
2154 scrub_pending_bio_inc(sctx);
2155 raid56_submit_missing_rbio(rbio);
2156 return;
2157
2158rbio_out:
2159 bio_put(bio);
2160bbio_out:
Qu Wenruoae6529c2017-03-29 09:33:21 +08002161 btrfs_bio_counter_dec(fs_info);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002162 btrfs_put_bbio(bbio);
2163 spin_lock(&sctx->stat_lock);
2164 sctx->stat.malloc_errors++;
2165 spin_unlock(&sctx->stat_lock);
2166}
2167
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002168static int scrub_pages(struct scrub_ctx *sctx, u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002169 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002170 u64 gen, int mirror_num, u8 *csum, int force,
2171 u64 physical_for_dev_replace)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002172{
2173 struct scrub_block *sblock;
2174 int index;
2175
David Sterba58c4e172016-02-11 10:49:42 +01002176 sblock = kzalloc(sizeof(*sblock), GFP_KERNEL);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002177 if (!sblock) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002178 spin_lock(&sctx->stat_lock);
2179 sctx->stat.malloc_errors++;
2180 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002181 return -ENOMEM;
2182 }
2183
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002184 /* one ref inside this function, plus one for each page added to
2185 * a bio later on */
Elena Reshetova186debd2017-03-03 10:55:23 +02002186 refcount_set(&sblock->refs, 1);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002187 sblock->sctx = sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002188 sblock->no_io_error_seen = 1;
2189
2190 for (index = 0; len > 0; index++) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002191 struct scrub_page *spage;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002192 u64 l = min_t(u64, len, PAGE_SIZE);
2193
David Sterba58c4e172016-02-11 10:49:42 +01002194 spage = kzalloc(sizeof(*spage), GFP_KERNEL);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002195 if (!spage) {
2196leave_nomem:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002197 spin_lock(&sctx->stat_lock);
2198 sctx->stat.malloc_errors++;
2199 spin_unlock(&sctx->stat_lock);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002200 scrub_block_put(sblock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002201 return -ENOMEM;
2202 }
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002203 BUG_ON(index >= SCRUB_MAX_PAGES_PER_BLOCK);
2204 scrub_page_get(spage);
2205 sblock->pagev[index] = spage;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002206 spage->sblock = sblock;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002207 spage->dev = dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002208 spage->flags = flags;
2209 spage->generation = gen;
2210 spage->logical = logical;
2211 spage->physical = physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002212 spage->physical_for_dev_replace = physical_for_dev_replace;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002213 spage->mirror_num = mirror_num;
2214 if (csum) {
2215 spage->have_csum = 1;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002216 memcpy(spage->csum, csum, sctx->csum_size);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002217 } else {
2218 spage->have_csum = 0;
2219 }
2220 sblock->page_count++;
David Sterba58c4e172016-02-11 10:49:42 +01002221 spage->page = alloc_page(GFP_KERNEL);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002222 if (!spage->page)
2223 goto leave_nomem;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002224 len -= l;
2225 logical += l;
2226 physical += l;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002227 physical_for_dev_replace += l;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002228 }
2229
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002230 WARN_ON(sblock->page_count == 0);
Anand Jaine6e674b2017-12-04 12:54:54 +08002231 if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state)) {
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002232 /*
2233 * This case should only be hit for RAID 5/6 device replace. See
2234 * the comment in scrub_missing_raid56_pages() for details.
2235 */
2236 scrub_missing_raid56_pages(sblock);
2237 } else {
2238 for (index = 0; index < sblock->page_count; index++) {
2239 struct scrub_page *spage = sblock->pagev[index];
2240 int ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002241
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002242 ret = scrub_add_page_to_rd_bio(sctx, spage);
2243 if (ret) {
2244 scrub_block_put(sblock);
2245 return ret;
2246 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002247 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002248
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002249 if (force)
2250 scrub_submit(sctx);
2251 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002252
2253 /* last one frees, either here or in bio completion for last page */
2254 scrub_block_put(sblock);
2255 return 0;
2256}
2257
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002258static void scrub_bio_end_io(struct bio *bio)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002259{
2260 struct scrub_bio *sbio = bio->bi_private;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002261 struct btrfs_fs_info *fs_info = sbio->dev->fs_info;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002262
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002263 sbio->status = bio->bi_status;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002264 sbio->bio = bio;
2265
Qu Wenruo0339ef22014-02-28 10:46:17 +08002266 btrfs_queue_work(fs_info->scrub_workers, &sbio->work);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002267}
2268
2269static void scrub_bio_end_io_worker(struct btrfs_work *work)
2270{
2271 struct scrub_bio *sbio = container_of(work, struct scrub_bio, work);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002272 struct scrub_ctx *sctx = sbio->sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002273 int i;
2274
Stefan Behrensff023aa2012-11-06 11:43:11 +01002275 BUG_ON(sbio->page_count > SCRUB_PAGES_PER_RD_BIO);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002276 if (sbio->status) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002277 for (i = 0; i < sbio->page_count; i++) {
2278 struct scrub_page *spage = sbio->pagev[i];
2279
2280 spage->io_error = 1;
2281 spage->sblock->no_io_error_seen = 0;
2282 }
2283 }
2284
2285 /* now complete the scrub_block items that have all pages completed */
2286 for (i = 0; i < sbio->page_count; i++) {
2287 struct scrub_page *spage = sbio->pagev[i];
2288 struct scrub_block *sblock = spage->sblock;
2289
2290 if (atomic_dec_and_test(&sblock->outstanding_pages))
2291 scrub_block_complete(sblock);
2292 scrub_block_put(sblock);
2293 }
2294
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002295 bio_put(sbio->bio);
2296 sbio->bio = NULL;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002297 spin_lock(&sctx->list_lock);
2298 sbio->next_free = sctx->first_free;
2299 sctx->first_free = sbio->index;
2300 spin_unlock(&sctx->list_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002301
David Sterba2073c4c2017-03-31 17:12:51 +02002302 if (sctx->is_dev_replace && sctx->flush_all_writes) {
David Sterba3fb99302017-05-16 19:10:32 +02002303 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002304 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02002305 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002306 }
2307
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002308 scrub_pending_bio_dec(sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002309}
2310
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002311static inline void __scrub_mark_bitmap(struct scrub_parity *sparity,
2312 unsigned long *bitmap,
2313 u64 start, u64 len)
2314{
Liu Bo972d7212017-04-03 13:45:33 -07002315 u64 offset;
David Sterba7736b0a2017-03-31 18:02:48 +02002316 u64 nsectors64;
2317 u32 nsectors;
Jeff Mahoneyda170662016-06-15 09:22:56 -04002318 int sectorsize = sparity->sctx->fs_info->sectorsize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002319
2320 if (len >= sparity->stripe_len) {
2321 bitmap_set(bitmap, 0, sparity->nsectors);
2322 return;
2323 }
2324
2325 start -= sparity->logic_start;
Liu Bo972d7212017-04-03 13:45:33 -07002326 start = div64_u64_rem(start, sparity->stripe_len, &offset);
2327 offset = div_u64(offset, sectorsize);
David Sterba7736b0a2017-03-31 18:02:48 +02002328 nsectors64 = div_u64(len, sectorsize);
2329
2330 ASSERT(nsectors64 < UINT_MAX);
2331 nsectors = (u32)nsectors64;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002332
2333 if (offset + nsectors <= sparity->nsectors) {
2334 bitmap_set(bitmap, offset, nsectors);
2335 return;
2336 }
2337
2338 bitmap_set(bitmap, offset, sparity->nsectors - offset);
2339 bitmap_set(bitmap, 0, nsectors - (sparity->nsectors - offset));
2340}
2341
2342static inline void scrub_parity_mark_sectors_error(struct scrub_parity *sparity,
2343 u64 start, u64 len)
2344{
2345 __scrub_mark_bitmap(sparity, sparity->ebitmap, start, len);
2346}
2347
2348static inline void scrub_parity_mark_sectors_data(struct scrub_parity *sparity,
2349 u64 start, u64 len)
2350{
2351 __scrub_mark_bitmap(sparity, sparity->dbitmap, start, len);
2352}
2353
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002354static void scrub_block_complete(struct scrub_block *sblock)
2355{
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002356 int corrupted = 0;
2357
Stefan Behrensff023aa2012-11-06 11:43:11 +01002358 if (!sblock->no_io_error_seen) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002359 corrupted = 1;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002360 scrub_handle_errored_block(sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002361 } else {
2362 /*
2363 * if has checksum error, write via repair mechanism in
2364 * dev replace case, otherwise write here in dev replace
2365 * case.
2366 */
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002367 corrupted = scrub_checksum(sblock);
2368 if (!corrupted && sblock->sctx->is_dev_replace)
Stefan Behrensff023aa2012-11-06 11:43:11 +01002369 scrub_write_block_to_dev_replace(sblock);
2370 }
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002371
2372 if (sblock->sparity && corrupted && !sblock->data_corrected) {
2373 u64 start = sblock->pagev[0]->logical;
2374 u64 end = sblock->pagev[sblock->page_count - 1]->logical +
2375 PAGE_SIZE;
2376
2377 scrub_parity_mark_sectors_error(sblock->sparity,
2378 start, end - start);
2379 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002380}
2381
Zhao Lei3b5753e2015-08-24 22:03:02 +08002382static int scrub_find_csum(struct scrub_ctx *sctx, u64 logical, u8 *csum)
Arne Jansena2de7332011-03-08 14:14:00 +01002383{
2384 struct btrfs_ordered_sum *sum = NULL;
Miao Xief51a4a12013-06-19 10:36:09 +08002385 unsigned long index;
Arne Jansena2de7332011-03-08 14:14:00 +01002386 unsigned long num_sectors;
Arne Jansena2de7332011-03-08 14:14:00 +01002387
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002388 while (!list_empty(&sctx->csum_list)) {
2389 sum = list_first_entry(&sctx->csum_list,
Arne Jansena2de7332011-03-08 14:14:00 +01002390 struct btrfs_ordered_sum, list);
2391 if (sum->bytenr > logical)
2392 return 0;
2393 if (sum->bytenr + sum->len > logical)
2394 break;
2395
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002396 ++sctx->stat.csum_discards;
Arne Jansena2de7332011-03-08 14:14:00 +01002397 list_del(&sum->list);
2398 kfree(sum);
2399 sum = NULL;
2400 }
2401 if (!sum)
2402 return 0;
2403
David Sterba1d1bf922017-03-31 18:02:48 +02002404 index = div_u64(logical - sum->bytenr, sctx->fs_info->sectorsize);
2405 ASSERT(index < UINT_MAX);
2406
David Sterba25cc1222017-05-16 19:10:41 +02002407 num_sectors = sum->len / sctx->fs_info->sectorsize;
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +02002408 memcpy(csum, sum->sums + index * sctx->csum_size, sctx->csum_size);
Miao Xief51a4a12013-06-19 10:36:09 +08002409 if (index == num_sectors - 1) {
Arne Jansena2de7332011-03-08 14:14:00 +01002410 list_del(&sum->list);
2411 kfree(sum);
2412 }
Miao Xief51a4a12013-06-19 10:36:09 +08002413 return 1;
Arne Jansena2de7332011-03-08 14:14:00 +01002414}
2415
2416/* scrub extent tries to collect up to 64 kB for each bio */
Liu Bo6ca17652018-03-07 12:08:09 -07002417static int scrub_extent(struct scrub_ctx *sctx, struct map_lookup *map,
2418 u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002419 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002420 u64 gen, int mirror_num, u64 physical_for_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01002421{
2422 int ret;
2423 u8 csum[BTRFS_CSUM_SIZE];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002424 u32 blocksize;
2425
2426 if (flags & BTRFS_EXTENT_FLAG_DATA) {
Liu Bo6ca17652018-03-07 12:08:09 -07002427 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
2428 blocksize = map->stripe_len;
2429 else
2430 blocksize = sctx->fs_info->sectorsize;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002431 spin_lock(&sctx->stat_lock);
2432 sctx->stat.data_extents_scrubbed++;
2433 sctx->stat.data_bytes_scrubbed += len;
2434 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002435 } else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Liu Bo6ca17652018-03-07 12:08:09 -07002436 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
2437 blocksize = map->stripe_len;
2438 else
2439 blocksize = sctx->fs_info->nodesize;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002440 spin_lock(&sctx->stat_lock);
2441 sctx->stat.tree_extents_scrubbed++;
2442 sctx->stat.tree_bytes_scrubbed += len;
2443 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002444 } else {
David Sterba25cc1222017-05-16 19:10:41 +02002445 blocksize = sctx->fs_info->sectorsize;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002446 WARN_ON(1);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002447 }
Arne Jansena2de7332011-03-08 14:14:00 +01002448
2449 while (len) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002450 u64 l = min_t(u64, len, blocksize);
Arne Jansena2de7332011-03-08 14:14:00 +01002451 int have_csum = 0;
2452
2453 if (flags & BTRFS_EXTENT_FLAG_DATA) {
2454 /* push csums to sbio */
Zhao Lei3b5753e2015-08-24 22:03:02 +08002455 have_csum = scrub_find_csum(sctx, logical, csum);
Arne Jansena2de7332011-03-08 14:14:00 +01002456 if (have_csum == 0)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002457 ++sctx->stat.no_csum;
Arne Jansena2de7332011-03-08 14:14:00 +01002458 }
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002459 ret = scrub_pages(sctx, logical, l, physical, dev, flags, gen,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002460 mirror_num, have_csum ? csum : NULL, 0,
2461 physical_for_dev_replace);
Arne Jansena2de7332011-03-08 14:14:00 +01002462 if (ret)
2463 return ret;
2464 len -= l;
2465 logical += l;
2466 physical += l;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002467 physical_for_dev_replace += l;
Arne Jansena2de7332011-03-08 14:14:00 +01002468 }
2469 return 0;
2470}
2471
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002472static int scrub_pages_for_parity(struct scrub_parity *sparity,
2473 u64 logical, u64 len,
2474 u64 physical, struct btrfs_device *dev,
2475 u64 flags, u64 gen, int mirror_num, u8 *csum)
2476{
2477 struct scrub_ctx *sctx = sparity->sctx;
2478 struct scrub_block *sblock;
2479 int index;
2480
David Sterba58c4e172016-02-11 10:49:42 +01002481 sblock = kzalloc(sizeof(*sblock), GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002482 if (!sblock) {
2483 spin_lock(&sctx->stat_lock);
2484 sctx->stat.malloc_errors++;
2485 spin_unlock(&sctx->stat_lock);
2486 return -ENOMEM;
2487 }
2488
2489 /* one ref inside this function, plus one for each page added to
2490 * a bio later on */
Elena Reshetova186debd2017-03-03 10:55:23 +02002491 refcount_set(&sblock->refs, 1);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002492 sblock->sctx = sctx;
2493 sblock->no_io_error_seen = 1;
2494 sblock->sparity = sparity;
2495 scrub_parity_get(sparity);
2496
2497 for (index = 0; len > 0; index++) {
2498 struct scrub_page *spage;
2499 u64 l = min_t(u64, len, PAGE_SIZE);
2500
David Sterba58c4e172016-02-11 10:49:42 +01002501 spage = kzalloc(sizeof(*spage), GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002502 if (!spage) {
2503leave_nomem:
2504 spin_lock(&sctx->stat_lock);
2505 sctx->stat.malloc_errors++;
2506 spin_unlock(&sctx->stat_lock);
2507 scrub_block_put(sblock);
2508 return -ENOMEM;
2509 }
2510 BUG_ON(index >= SCRUB_MAX_PAGES_PER_BLOCK);
2511 /* For scrub block */
2512 scrub_page_get(spage);
2513 sblock->pagev[index] = spage;
2514 /* For scrub parity */
2515 scrub_page_get(spage);
2516 list_add_tail(&spage->list, &sparity->spages);
2517 spage->sblock = sblock;
2518 spage->dev = dev;
2519 spage->flags = flags;
2520 spage->generation = gen;
2521 spage->logical = logical;
2522 spage->physical = physical;
2523 spage->mirror_num = mirror_num;
2524 if (csum) {
2525 spage->have_csum = 1;
2526 memcpy(spage->csum, csum, sctx->csum_size);
2527 } else {
2528 spage->have_csum = 0;
2529 }
2530 sblock->page_count++;
David Sterba58c4e172016-02-11 10:49:42 +01002531 spage->page = alloc_page(GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002532 if (!spage->page)
2533 goto leave_nomem;
2534 len -= l;
2535 logical += l;
2536 physical += l;
2537 }
2538
2539 WARN_ON(sblock->page_count == 0);
2540 for (index = 0; index < sblock->page_count; index++) {
2541 struct scrub_page *spage = sblock->pagev[index];
2542 int ret;
2543
2544 ret = scrub_add_page_to_rd_bio(sctx, spage);
2545 if (ret) {
2546 scrub_block_put(sblock);
2547 return ret;
2548 }
2549 }
2550
2551 /* last one frees, either here or in bio completion for last page */
2552 scrub_block_put(sblock);
2553 return 0;
2554}
2555
2556static int scrub_extent_for_parity(struct scrub_parity *sparity,
2557 u64 logical, u64 len,
2558 u64 physical, struct btrfs_device *dev,
2559 u64 flags, u64 gen, int mirror_num)
2560{
2561 struct scrub_ctx *sctx = sparity->sctx;
2562 int ret;
2563 u8 csum[BTRFS_CSUM_SIZE];
2564 u32 blocksize;
2565
Anand Jaine6e674b2017-12-04 12:54:54 +08002566 if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state)) {
Omar Sandoval4a770892015-06-19 11:52:52 -07002567 scrub_parity_mark_sectors_error(sparity, logical, len);
2568 return 0;
2569 }
2570
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002571 if (flags & BTRFS_EXTENT_FLAG_DATA) {
Liu Bo6ca17652018-03-07 12:08:09 -07002572 blocksize = sparity->stripe_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002573 } else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Liu Bo6ca17652018-03-07 12:08:09 -07002574 blocksize = sparity->stripe_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002575 } else {
David Sterba25cc1222017-05-16 19:10:41 +02002576 blocksize = sctx->fs_info->sectorsize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002577 WARN_ON(1);
2578 }
2579
2580 while (len) {
2581 u64 l = min_t(u64, len, blocksize);
2582 int have_csum = 0;
2583
2584 if (flags & BTRFS_EXTENT_FLAG_DATA) {
2585 /* push csums to sbio */
Zhao Lei3b5753e2015-08-24 22:03:02 +08002586 have_csum = scrub_find_csum(sctx, logical, csum);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002587 if (have_csum == 0)
2588 goto skip;
2589 }
2590 ret = scrub_pages_for_parity(sparity, logical, l, physical, dev,
2591 flags, gen, mirror_num,
2592 have_csum ? csum : NULL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002593 if (ret)
2594 return ret;
Dan Carpenter6b6d24b2014-12-12 22:30:00 +03002595skip:
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002596 len -= l;
2597 logical += l;
2598 physical += l;
2599 }
2600 return 0;
2601}
2602
Wang Shilong3b080b22014-04-01 18:01:43 +08002603/*
2604 * Given a physical address, this will calculate it's
2605 * logical offset. if this is a parity stripe, it will return
2606 * the most left data stripe's logical offset.
2607 *
2608 * return 0 if it is a data stripe, 1 means parity stripe.
2609 */
2610static int get_raid56_logic_offset(u64 physical, int num,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002611 struct map_lookup *map, u64 *offset,
2612 u64 *stripe_start)
Wang Shilong3b080b22014-04-01 18:01:43 +08002613{
2614 int i;
2615 int j = 0;
2616 u64 stripe_nr;
2617 u64 last_offset;
David Sterba9d644a62015-02-20 18:42:11 +01002618 u32 stripe_index;
2619 u32 rot;
David Sterbacff82672019-05-17 11:43:45 +02002620 const int data_stripes = nr_data_stripes(map);
Wang Shilong3b080b22014-04-01 18:01:43 +08002621
David Sterbacff82672019-05-17 11:43:45 +02002622 last_offset = (physical - map->stripes[num].physical) * data_stripes;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002623 if (stripe_start)
2624 *stripe_start = last_offset;
2625
Wang Shilong3b080b22014-04-01 18:01:43 +08002626 *offset = last_offset;
David Sterbacff82672019-05-17 11:43:45 +02002627 for (i = 0; i < data_stripes; i++) {
Wang Shilong3b080b22014-04-01 18:01:43 +08002628 *offset = last_offset + i * map->stripe_len;
2629
Liu Bo42c61ab2017-04-03 13:45:24 -07002630 stripe_nr = div64_u64(*offset, map->stripe_len);
David Sterbacff82672019-05-17 11:43:45 +02002631 stripe_nr = div_u64(stripe_nr, data_stripes);
Wang Shilong3b080b22014-04-01 18:01:43 +08002632
2633 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01002634 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, &rot);
Wang Shilong3b080b22014-04-01 18:01:43 +08002635 /* calculate which stripe this data locates */
2636 rot += i;
Wang Shilonge4fbaee2014-04-11 18:32:25 +08002637 stripe_index = rot % map->num_stripes;
Wang Shilong3b080b22014-04-01 18:01:43 +08002638 if (stripe_index == num)
2639 return 0;
2640 if (stripe_index < num)
2641 j++;
2642 }
2643 *offset = last_offset + j * map->stripe_len;
2644 return 1;
2645}
2646
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002647static void scrub_free_parity(struct scrub_parity *sparity)
2648{
2649 struct scrub_ctx *sctx = sparity->sctx;
2650 struct scrub_page *curr, *next;
2651 int nbits;
2652
2653 nbits = bitmap_weight(sparity->ebitmap, sparity->nsectors);
2654 if (nbits) {
2655 spin_lock(&sctx->stat_lock);
2656 sctx->stat.read_errors += nbits;
2657 sctx->stat.uncorrectable_errors += nbits;
2658 spin_unlock(&sctx->stat_lock);
2659 }
2660
2661 list_for_each_entry_safe(curr, next, &sparity->spages, list) {
2662 list_del_init(&curr->list);
2663 scrub_page_put(curr);
2664 }
2665
2666 kfree(sparity);
2667}
2668
Zhao Lei20b2e302015-06-04 20:09:15 +08002669static void scrub_parity_bio_endio_worker(struct btrfs_work *work)
2670{
2671 struct scrub_parity *sparity = container_of(work, struct scrub_parity,
2672 work);
2673 struct scrub_ctx *sctx = sparity->sctx;
2674
2675 scrub_free_parity(sparity);
2676 scrub_pending_bio_dec(sctx);
2677}
2678
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002679static void scrub_parity_bio_endio(struct bio *bio)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002680{
2681 struct scrub_parity *sparity = (struct scrub_parity *)bio->bi_private;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002682 struct btrfs_fs_info *fs_info = sparity->sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002683
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002684 if (bio->bi_status)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002685 bitmap_or(sparity->ebitmap, sparity->ebitmap, sparity->dbitmap,
2686 sparity->nsectors);
2687
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002688 bio_put(bio);
Zhao Lei20b2e302015-06-04 20:09:15 +08002689
Omar Sandovala0cac0e2019-09-16 11:30:57 -07002690 btrfs_init_work(&sparity->work, scrub_parity_bio_endio_worker, NULL,
2691 NULL);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002692 btrfs_queue_work(fs_info->scrub_parity_workers, &sparity->work);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002693}
2694
2695static void scrub_parity_check_and_repair(struct scrub_parity *sparity)
2696{
2697 struct scrub_ctx *sctx = sparity->sctx;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002698 struct btrfs_fs_info *fs_info = sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002699 struct bio *bio;
2700 struct btrfs_raid_bio *rbio;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002701 struct btrfs_bio *bbio = NULL;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002702 u64 length;
2703 int ret;
2704
2705 if (!bitmap_andnot(sparity->dbitmap, sparity->dbitmap, sparity->ebitmap,
2706 sparity->nsectors))
2707 goto out;
2708
Zhao Leia0dd59d2015-07-21 15:42:26 +08002709 length = sparity->logic_end - sparity->logic_start;
Qu Wenruoae6529c2017-03-29 09:33:21 +08002710
2711 btrfs_bio_counter_inc_blocked(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002712 ret = btrfs_map_sblock(fs_info, BTRFS_MAP_WRITE, sparity->logic_start,
David Sterba825ad4c2017-03-28 14:45:22 +02002713 &length, &bbio);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08002714 if (ret || !bbio || !bbio->raid_map)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002715 goto bbio_out;
2716
David Sterbac5e4c3d2017-06-12 17:29:41 +02002717 bio = btrfs_io_bio_alloc(0);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002718 bio->bi_iter.bi_sector = sparity->logic_start >> 9;
2719 bio->bi_private = sparity;
2720 bio->bi_end_io = scrub_parity_bio_endio;
2721
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002722 rbio = raid56_parity_alloc_scrub_rbio(fs_info, bio, bbio,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08002723 length, sparity->scrub_dev,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002724 sparity->dbitmap,
2725 sparity->nsectors);
2726 if (!rbio)
2727 goto rbio_out;
2728
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002729 scrub_pending_bio_inc(sctx);
2730 raid56_parity_submit_scrub_rbio(rbio);
2731 return;
2732
2733rbio_out:
2734 bio_put(bio);
2735bbio_out:
Qu Wenruoae6529c2017-03-29 09:33:21 +08002736 btrfs_bio_counter_dec(fs_info);
Zhao Lei6e9606d2015-01-20 15:11:34 +08002737 btrfs_put_bbio(bbio);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002738 bitmap_or(sparity->ebitmap, sparity->ebitmap, sparity->dbitmap,
2739 sparity->nsectors);
2740 spin_lock(&sctx->stat_lock);
2741 sctx->stat.malloc_errors++;
2742 spin_unlock(&sctx->stat_lock);
2743out:
2744 scrub_free_parity(sparity);
2745}
2746
2747static inline int scrub_calc_parity_bitmap_len(int nsectors)
2748{
Zhao Leibfca9a62014-12-08 19:55:57 +08002749 return DIV_ROUND_UP(nsectors, BITS_PER_LONG) * sizeof(long);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002750}
2751
2752static void scrub_parity_get(struct scrub_parity *sparity)
2753{
Elena Reshetova78a76452017-03-03 10:55:24 +02002754 refcount_inc(&sparity->refs);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002755}
2756
2757static void scrub_parity_put(struct scrub_parity *sparity)
2758{
Elena Reshetova78a76452017-03-03 10:55:24 +02002759 if (!refcount_dec_and_test(&sparity->refs))
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002760 return;
2761
2762 scrub_parity_check_and_repair(sparity);
2763}
2764
2765static noinline_for_stack int scrub_raid56_parity(struct scrub_ctx *sctx,
2766 struct map_lookup *map,
2767 struct btrfs_device *sdev,
2768 struct btrfs_path *path,
2769 u64 logic_start,
2770 u64 logic_end)
2771{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002772 struct btrfs_fs_info *fs_info = sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002773 struct btrfs_root *root = fs_info->extent_root;
2774 struct btrfs_root *csum_root = fs_info->csum_root;
2775 struct btrfs_extent_item *extent;
Omar Sandoval4a770892015-06-19 11:52:52 -07002776 struct btrfs_bio *bbio = NULL;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002777 u64 flags;
2778 int ret;
2779 int slot;
2780 struct extent_buffer *l;
2781 struct btrfs_key key;
2782 u64 generation;
2783 u64 extent_logical;
2784 u64 extent_physical;
2785 u64 extent_len;
Omar Sandoval4a770892015-06-19 11:52:52 -07002786 u64 mapped_length;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002787 struct btrfs_device *extent_dev;
2788 struct scrub_parity *sparity;
2789 int nsectors;
2790 int bitmap_len;
2791 int extent_mirror_num;
2792 int stop_loop = 0;
2793
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002794 nsectors = div_u64(map->stripe_len, fs_info->sectorsize);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002795 bitmap_len = scrub_calc_parity_bitmap_len(nsectors);
2796 sparity = kzalloc(sizeof(struct scrub_parity) + 2 * bitmap_len,
2797 GFP_NOFS);
2798 if (!sparity) {
2799 spin_lock(&sctx->stat_lock);
2800 sctx->stat.malloc_errors++;
2801 spin_unlock(&sctx->stat_lock);
2802 return -ENOMEM;
2803 }
2804
2805 sparity->stripe_len = map->stripe_len;
2806 sparity->nsectors = nsectors;
2807 sparity->sctx = sctx;
2808 sparity->scrub_dev = sdev;
2809 sparity->logic_start = logic_start;
2810 sparity->logic_end = logic_end;
Elena Reshetova78a76452017-03-03 10:55:24 +02002811 refcount_set(&sparity->refs, 1);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002812 INIT_LIST_HEAD(&sparity->spages);
2813 sparity->dbitmap = sparity->bitmap;
2814 sparity->ebitmap = (void *)sparity->bitmap + bitmap_len;
2815
2816 ret = 0;
2817 while (logic_start < logic_end) {
2818 if (btrfs_fs_incompat(fs_info, SKINNY_METADATA))
2819 key.type = BTRFS_METADATA_ITEM_KEY;
2820 else
2821 key.type = BTRFS_EXTENT_ITEM_KEY;
2822 key.objectid = logic_start;
2823 key.offset = (u64)-1;
2824
2825 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2826 if (ret < 0)
2827 goto out;
2828
2829 if (ret > 0) {
2830 ret = btrfs_previous_extent_item(root, path, 0);
2831 if (ret < 0)
2832 goto out;
2833 if (ret > 0) {
2834 btrfs_release_path(path);
2835 ret = btrfs_search_slot(NULL, root, &key,
2836 path, 0, 0);
2837 if (ret < 0)
2838 goto out;
2839 }
2840 }
2841
2842 stop_loop = 0;
2843 while (1) {
2844 u64 bytes;
2845
2846 l = path->nodes[0];
2847 slot = path->slots[0];
2848 if (slot >= btrfs_header_nritems(l)) {
2849 ret = btrfs_next_leaf(root, path);
2850 if (ret == 0)
2851 continue;
2852 if (ret < 0)
2853 goto out;
2854
2855 stop_loop = 1;
2856 break;
2857 }
2858 btrfs_item_key_to_cpu(l, &key, slot);
2859
Zhao Leid7cad232015-07-22 13:14:48 +08002860 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
2861 key.type != BTRFS_METADATA_ITEM_KEY)
2862 goto next;
2863
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002864 if (key.type == BTRFS_METADATA_ITEM_KEY)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002865 bytes = fs_info->nodesize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002866 else
2867 bytes = key.offset;
2868
2869 if (key.objectid + bytes <= logic_start)
2870 goto next;
2871
Zhao Leia0dd59d2015-07-21 15:42:26 +08002872 if (key.objectid >= logic_end) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002873 stop_loop = 1;
2874 break;
2875 }
2876
2877 while (key.objectid >= logic_start + map->stripe_len)
2878 logic_start += map->stripe_len;
2879
2880 extent = btrfs_item_ptr(l, slot,
2881 struct btrfs_extent_item);
2882 flags = btrfs_extent_flags(l, extent);
2883 generation = btrfs_extent_generation(l, extent);
2884
Zhao Leia323e812015-07-23 12:29:49 +08002885 if ((flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) &&
2886 (key.objectid < logic_start ||
2887 key.objectid + bytes >
2888 logic_start + map->stripe_len)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002889 btrfs_err(fs_info,
2890 "scrub: tree block %llu spanning stripes, ignored. logical=%llu",
Zhao Leia323e812015-07-23 12:29:49 +08002891 key.objectid, logic_start);
Zhao Lei9799d2c32015-08-25 21:31:40 +08002892 spin_lock(&sctx->stat_lock);
2893 sctx->stat.uncorrectable_errors++;
2894 spin_unlock(&sctx->stat_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002895 goto next;
2896 }
2897again:
2898 extent_logical = key.objectid;
2899 extent_len = bytes;
2900
2901 if (extent_logical < logic_start) {
2902 extent_len -= logic_start - extent_logical;
2903 extent_logical = logic_start;
2904 }
2905
2906 if (extent_logical + extent_len >
2907 logic_start + map->stripe_len)
2908 extent_len = logic_start + map->stripe_len -
2909 extent_logical;
2910
2911 scrub_parity_mark_sectors_data(sparity, extent_logical,
2912 extent_len);
2913
Omar Sandoval4a770892015-06-19 11:52:52 -07002914 mapped_length = extent_len;
Zhao Leif1fee652016-05-17 17:37:38 +08002915 bbio = NULL;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02002916 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ,
2917 extent_logical, &mapped_length, &bbio,
2918 0);
Omar Sandoval4a770892015-06-19 11:52:52 -07002919 if (!ret) {
2920 if (!bbio || mapped_length < extent_len)
2921 ret = -EIO;
2922 }
2923 if (ret) {
2924 btrfs_put_bbio(bbio);
2925 goto out;
2926 }
2927 extent_physical = bbio->stripes[0].physical;
2928 extent_mirror_num = bbio->mirror_num;
2929 extent_dev = bbio->stripes[0].dev;
2930 btrfs_put_bbio(bbio);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002931
2932 ret = btrfs_lookup_csums_range(csum_root,
2933 extent_logical,
2934 extent_logical + extent_len - 1,
2935 &sctx->csum_list, 1);
2936 if (ret)
2937 goto out;
2938
2939 ret = scrub_extent_for_parity(sparity, extent_logical,
2940 extent_len,
2941 extent_physical,
2942 extent_dev, flags,
2943 generation,
2944 extent_mirror_num);
Zhao Lei6fa96d72015-07-21 12:22:30 +08002945
2946 scrub_free_csums(sctx);
2947
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002948 if (ret)
2949 goto out;
2950
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002951 if (extent_logical + extent_len <
2952 key.objectid + bytes) {
2953 logic_start += map->stripe_len;
2954
2955 if (logic_start >= logic_end) {
2956 stop_loop = 1;
2957 break;
2958 }
2959
2960 if (logic_start < key.objectid + bytes) {
2961 cond_resched();
2962 goto again;
2963 }
2964 }
2965next:
2966 path->slots[0]++;
2967 }
2968
2969 btrfs_release_path(path);
2970
2971 if (stop_loop)
2972 break;
2973
2974 logic_start += map->stripe_len;
2975 }
2976out:
2977 if (ret < 0)
2978 scrub_parity_mark_sectors_error(sparity, logic_start,
Zhao Leia0dd59d2015-07-21 15:42:26 +08002979 logic_end - logic_start);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002980 scrub_parity_put(sparity);
2981 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02002982 mutex_lock(&sctx->wr_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002983 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02002984 mutex_unlock(&sctx->wr_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002985
2986 btrfs_release_path(path);
2987 return ret < 0 ? ret : 0;
2988}
2989
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002990static noinline_for_stack int scrub_stripe(struct scrub_ctx *sctx,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002991 struct map_lookup *map,
2992 struct btrfs_device *scrub_dev,
Filipe Manana2473d242020-05-08 11:01:10 +01002993 int num, u64 base, u64 length,
2994 struct btrfs_block_group *cache)
Arne Jansena2de7332011-03-08 14:14:00 +01002995{
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002996 struct btrfs_path *path, *ppath;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002997 struct btrfs_fs_info *fs_info = sctx->fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +01002998 struct btrfs_root *root = fs_info->extent_root;
2999 struct btrfs_root *csum_root = fs_info->csum_root;
3000 struct btrfs_extent_item *extent;
Arne Jansene7786c32011-05-28 20:58:38 +00003001 struct blk_plug plug;
Arne Jansena2de7332011-03-08 14:14:00 +01003002 u64 flags;
3003 int ret;
3004 int slot;
Arne Jansena2de7332011-03-08 14:14:00 +01003005 u64 nstripes;
Arne Jansena2de7332011-03-08 14:14:00 +01003006 struct extent_buffer *l;
Arne Jansena2de7332011-03-08 14:14:00 +01003007 u64 physical;
3008 u64 logical;
Liu Bo625f1c8d2013-04-27 02:56:57 +00003009 u64 logic_end;
Wang Shilong3b080b22014-04-01 18:01:43 +08003010 u64 physical_end;
Arne Jansena2de7332011-03-08 14:14:00 +01003011 u64 generation;
Jan Schmidte12fa9c2011-06-17 15:55:21 +02003012 int mirror_num;
Arne Jansen7a262852011-06-10 12:39:23 +02003013 struct reada_control *reada1;
3014 struct reada_control *reada2;
David Sterbae6c11f92016-03-24 18:00:53 +01003015 struct btrfs_key key;
Arne Jansen7a262852011-06-10 12:39:23 +02003016 struct btrfs_key key_end;
Arne Jansena2de7332011-03-08 14:14:00 +01003017 u64 increment = map->stripe_len;
3018 u64 offset;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003019 u64 extent_logical;
3020 u64 extent_physical;
3021 u64 extent_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003022 u64 stripe_logical;
3023 u64 stripe_end;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003024 struct btrfs_device *extent_dev;
3025 int extent_mirror_num;
Wang Shilong3b080b22014-04-01 18:01:43 +08003026 int stop_loop = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05003027
Wang Shilong3b080b22014-04-01 18:01:43 +08003028 physical = map->stripes[num].physical;
Arne Jansena2de7332011-03-08 14:14:00 +01003029 offset = 0;
Liu Bo42c61ab2017-04-03 13:45:24 -07003030 nstripes = div64_u64(length, map->stripe_len);
Arne Jansena2de7332011-03-08 14:14:00 +01003031 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
3032 offset = map->stripe_len * num;
3033 increment = map->stripe_len * map->num_stripes;
Jan Schmidt193ea742011-06-13 19:56:54 +02003034 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003035 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
3036 int factor = map->num_stripes / map->sub_stripes;
3037 offset = map->stripe_len * (num / map->sub_stripes);
3038 increment = map->stripe_len * factor;
Jan Schmidt193ea742011-06-13 19:56:54 +02003039 mirror_num = num % map->sub_stripes + 1;
David Sterbac7369b32019-05-31 15:39:31 +02003040 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1_MASK) {
Arne Jansena2de7332011-03-08 14:14:00 +01003041 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003042 mirror_num = num % map->num_stripes + 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003043 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
3044 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003045 mirror_num = num % map->num_stripes + 1;
Zhao Leiffe2d202015-01-20 15:11:44 +08003046 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003047 get_raid56_logic_offset(physical, num, map, &offset, NULL);
Wang Shilong3b080b22014-04-01 18:01:43 +08003048 increment = map->stripe_len * nr_data_stripes(map);
3049 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003050 } else {
3051 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003052 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003053 }
3054
3055 path = btrfs_alloc_path();
3056 if (!path)
3057 return -ENOMEM;
3058
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003059 ppath = btrfs_alloc_path();
3060 if (!ppath) {
Tsutomu Itoh379d6852015-01-09 17:37:52 +09003061 btrfs_free_path(path);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003062 return -ENOMEM;
3063 }
3064
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003065 /*
3066 * work on commit root. The related disk blocks are static as
3067 * long as COW is applied. This means, it is save to rewrite
3068 * them to repair disk errors without any race conditions
3069 */
Arne Jansena2de7332011-03-08 14:14:00 +01003070 path->search_commit_root = 1;
3071 path->skip_locking = 1;
3072
Gui Hecheng063c54d2015-01-09 09:39:40 +08003073 ppath->search_commit_root = 1;
3074 ppath->skip_locking = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003075 /*
Arne Jansen7a262852011-06-10 12:39:23 +02003076 * trigger the readahead for extent tree csum tree and wait for
3077 * completion. During readahead, the scrub is officially paused
3078 * to not hold off transaction commits
Arne Jansena2de7332011-03-08 14:14:00 +01003079 */
3080 logical = base + offset;
Wang Shilong3b080b22014-04-01 18:01:43 +08003081 physical_end = physical + nstripes * map->stripe_len;
Zhao Leiffe2d202015-01-20 15:11:44 +08003082 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Wang Shilong3b080b22014-04-01 18:01:43 +08003083 get_raid56_logic_offset(physical_end, num,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003084 map, &logic_end, NULL);
Wang Shilong3b080b22014-04-01 18:01:43 +08003085 logic_end += base;
3086 } else {
3087 logic_end = logical + increment * nstripes;
3088 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003089 wait_event(sctx->list_wait,
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003090 atomic_read(&sctx->bios_in_flight) == 0);
Wang Shilongcb7ab022013-12-04 21:16:53 +08003091 scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003092
Arne Jansen7a262852011-06-10 12:39:23 +02003093 /* FIXME it might be better to start readahead at commit root */
David Sterbae6c11f92016-03-24 18:00:53 +01003094 key.objectid = logical;
3095 key.type = BTRFS_EXTENT_ITEM_KEY;
3096 key.offset = (u64)0;
Wang Shilong3b080b22014-04-01 18:01:43 +08003097 key_end.objectid = logic_end;
Josef Bacik3173a182013-03-07 14:22:04 -05003098 key_end.type = BTRFS_METADATA_ITEM_KEY;
3099 key_end.offset = (u64)-1;
David Sterbae6c11f92016-03-24 18:00:53 +01003100 reada1 = btrfs_reada_add(root, &key, &key_end);
Arne Jansena2de7332011-03-08 14:14:00 +01003101
David Sterbae6c11f92016-03-24 18:00:53 +01003102 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
3103 key.type = BTRFS_EXTENT_CSUM_KEY;
3104 key.offset = logical;
Arne Jansen7a262852011-06-10 12:39:23 +02003105 key_end.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
3106 key_end.type = BTRFS_EXTENT_CSUM_KEY;
Wang Shilong3b080b22014-04-01 18:01:43 +08003107 key_end.offset = logic_end;
David Sterbae6c11f92016-03-24 18:00:53 +01003108 reada2 = btrfs_reada_add(csum_root, &key, &key_end);
Arne Jansena2de7332011-03-08 14:14:00 +01003109
Arne Jansen7a262852011-06-10 12:39:23 +02003110 if (!IS_ERR(reada1))
3111 btrfs_reada_wait(reada1);
3112 if (!IS_ERR(reada2))
3113 btrfs_reada_wait(reada2);
Arne Jansena2de7332011-03-08 14:14:00 +01003114
Arne Jansena2de7332011-03-08 14:14:00 +01003115
3116 /*
3117 * collect all data csums for the stripe to avoid seeking during
3118 * the scrub. This might currently (crc32) end up to be about 1MB
3119 */
Arne Jansene7786c32011-05-28 20:58:38 +00003120 blk_start_plug(&plug);
Arne Jansena2de7332011-03-08 14:14:00 +01003121
Arne Jansena2de7332011-03-08 14:14:00 +01003122 /*
3123 * now find all extents for each stripe and scrub them
3124 */
Arne Jansena2de7332011-03-08 14:14:00 +01003125 ret = 0;
Wang Shilong3b080b22014-04-01 18:01:43 +08003126 while (physical < physical_end) {
Arne Jansena2de7332011-03-08 14:14:00 +01003127 /*
3128 * canceled?
3129 */
3130 if (atomic_read(&fs_info->scrub_cancel_req) ||
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003131 atomic_read(&sctx->cancel_req)) {
Arne Jansena2de7332011-03-08 14:14:00 +01003132 ret = -ECANCELED;
3133 goto out;
3134 }
3135 /*
3136 * check to see if we have to pause
3137 */
3138 if (atomic_read(&fs_info->scrub_pause_req)) {
3139 /* push queued extents */
David Sterba2073c4c2017-03-31 17:12:51 +02003140 sctx->flush_all_writes = true;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003141 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003142 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003143 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003144 mutex_unlock(&sctx->wr_lock);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003145 wait_event(sctx->list_wait,
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003146 atomic_read(&sctx->bios_in_flight) == 0);
David Sterba2073c4c2017-03-31 17:12:51 +02003147 sctx->flush_all_writes = false;
Wang Shilong3cb09292013-12-04 21:15:19 +08003148 scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003149 }
3150
Zhao Leif2f66a22015-07-21 12:22:29 +08003151 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
3152 ret = get_raid56_logic_offset(physical, num, map,
3153 &logical,
3154 &stripe_logical);
3155 logical += base;
3156 if (ret) {
Zhao Lei79553232015-08-18 17:54:30 +08003157 /* it is parity strip */
Zhao Leif2f66a22015-07-21 12:22:29 +08003158 stripe_logical += base;
Zhao Leia0dd59d2015-07-21 15:42:26 +08003159 stripe_end = stripe_logical + increment;
Zhao Leif2f66a22015-07-21 12:22:29 +08003160 ret = scrub_raid56_parity(sctx, map, scrub_dev,
3161 ppath, stripe_logical,
3162 stripe_end);
3163 if (ret)
3164 goto out;
3165 goto skip;
3166 }
3167 }
3168
Wang Shilong7c76edb2014-01-12 21:38:32 +08003169 if (btrfs_fs_incompat(fs_info, SKINNY_METADATA))
3170 key.type = BTRFS_METADATA_ITEM_KEY;
3171 else
3172 key.type = BTRFS_EXTENT_ITEM_KEY;
Arne Jansena2de7332011-03-08 14:14:00 +01003173 key.objectid = logical;
Liu Bo625f1c8d2013-04-27 02:56:57 +00003174 key.offset = (u64)-1;
Arne Jansena2de7332011-03-08 14:14:00 +01003175
3176 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3177 if (ret < 0)
3178 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05003179
Arne Jansen8c510322011-06-03 10:09:26 +02003180 if (ret > 0) {
Wang Shilongade2e0b2014-01-12 21:38:33 +08003181 ret = btrfs_previous_extent_item(root, path, 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003182 if (ret < 0)
3183 goto out;
Arne Jansen8c510322011-06-03 10:09:26 +02003184 if (ret > 0) {
3185 /* there's no smaller item, so stick with the
3186 * larger one */
3187 btrfs_release_path(path);
3188 ret = btrfs_search_slot(NULL, root, &key,
3189 path, 0, 0);
3190 if (ret < 0)
3191 goto out;
3192 }
Arne Jansena2de7332011-03-08 14:14:00 +01003193 }
3194
Liu Bo625f1c8d2013-04-27 02:56:57 +00003195 stop_loop = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01003196 while (1) {
Josef Bacik3173a182013-03-07 14:22:04 -05003197 u64 bytes;
3198
Arne Jansena2de7332011-03-08 14:14:00 +01003199 l = path->nodes[0];
3200 slot = path->slots[0];
3201 if (slot >= btrfs_header_nritems(l)) {
3202 ret = btrfs_next_leaf(root, path);
3203 if (ret == 0)
3204 continue;
3205 if (ret < 0)
3206 goto out;
3207
Liu Bo625f1c8d2013-04-27 02:56:57 +00003208 stop_loop = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003209 break;
3210 }
3211 btrfs_item_key_to_cpu(l, &key, slot);
3212
Zhao Leid7cad232015-07-22 13:14:48 +08003213 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
3214 key.type != BTRFS_METADATA_ITEM_KEY)
3215 goto next;
3216
Josef Bacik3173a182013-03-07 14:22:04 -05003217 if (key.type == BTRFS_METADATA_ITEM_KEY)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003218 bytes = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05003219 else
3220 bytes = key.offset;
3221
3222 if (key.objectid + bytes <= logical)
Arne Jansena2de7332011-03-08 14:14:00 +01003223 goto next;
3224
Liu Bo625f1c8d2013-04-27 02:56:57 +00003225 if (key.objectid >= logical + map->stripe_len) {
3226 /* out of this device extent */
3227 if (key.objectid >= logic_end)
3228 stop_loop = 1;
3229 break;
3230 }
Arne Jansena2de7332011-03-08 14:14:00 +01003231
Filipe Manana2473d242020-05-08 11:01:10 +01003232 /*
3233 * If our block group was removed in the meanwhile, just
3234 * stop scrubbing since there is no point in continuing.
3235 * Continuing would prevent reusing its device extents
3236 * for new block groups for a long time.
3237 */
3238 spin_lock(&cache->lock);
3239 if (cache->removed) {
3240 spin_unlock(&cache->lock);
3241 ret = 0;
3242 goto out;
3243 }
3244 spin_unlock(&cache->lock);
3245
Arne Jansena2de7332011-03-08 14:14:00 +01003246 extent = btrfs_item_ptr(l, slot,
3247 struct btrfs_extent_item);
3248 flags = btrfs_extent_flags(l, extent);
3249 generation = btrfs_extent_generation(l, extent);
3250
Zhao Leia323e812015-07-23 12:29:49 +08003251 if ((flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) &&
3252 (key.objectid < logical ||
3253 key.objectid + bytes >
3254 logical + map->stripe_len)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003255 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003256 "scrub: tree block %llu spanning stripes, ignored. logical=%llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003257 key.objectid, logical);
Zhao Lei9799d2c32015-08-25 21:31:40 +08003258 spin_lock(&sctx->stat_lock);
3259 sctx->stat.uncorrectable_errors++;
3260 spin_unlock(&sctx->stat_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003261 goto next;
3262 }
3263
Liu Bo625f1c8d2013-04-27 02:56:57 +00003264again:
3265 extent_logical = key.objectid;
3266 extent_len = bytes;
3267
Arne Jansena2de7332011-03-08 14:14:00 +01003268 /*
3269 * trim extent to this stripe
3270 */
Liu Bo625f1c8d2013-04-27 02:56:57 +00003271 if (extent_logical < logical) {
3272 extent_len -= logical - extent_logical;
3273 extent_logical = logical;
Arne Jansena2de7332011-03-08 14:14:00 +01003274 }
Liu Bo625f1c8d2013-04-27 02:56:57 +00003275 if (extent_logical + extent_len >
Arne Jansena2de7332011-03-08 14:14:00 +01003276 logical + map->stripe_len) {
Liu Bo625f1c8d2013-04-27 02:56:57 +00003277 extent_len = logical + map->stripe_len -
3278 extent_logical;
Arne Jansena2de7332011-03-08 14:14:00 +01003279 }
3280
Liu Bo625f1c8d2013-04-27 02:56:57 +00003281 extent_physical = extent_logical - logical + physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003282 extent_dev = scrub_dev;
3283 extent_mirror_num = mirror_num;
Omar Sandoval32934282018-08-14 11:09:52 -07003284 if (sctx->is_dev_replace)
Stefan Behrensff023aa2012-11-06 11:43:11 +01003285 scrub_remap_extent(fs_info, extent_logical,
3286 extent_len, &extent_physical,
3287 &extent_dev,
3288 &extent_mirror_num);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003289
Filipe Manana89490302020-05-08 11:02:07 +01003290 if (flags & BTRFS_EXTENT_FLAG_DATA) {
3291 ret = btrfs_lookup_csums_range(csum_root,
3292 extent_logical,
3293 extent_logical + extent_len - 1,
3294 &sctx->csum_list, 1);
3295 if (ret)
3296 goto out;
3297 }
Arne Jansena2de7332011-03-08 14:14:00 +01003298
Liu Bo6ca17652018-03-07 12:08:09 -07003299 ret = scrub_extent(sctx, map, extent_logical, extent_len,
Liu Bo625f1c8d2013-04-27 02:56:57 +00003300 extent_physical, extent_dev, flags,
3301 generation, extent_mirror_num,
Stefan Behrens115930c2013-07-04 16:14:23 +02003302 extent_logical - logical + physical);
Zhao Lei6fa96d72015-07-21 12:22:30 +08003303
3304 scrub_free_csums(sctx);
3305
Liu Bo625f1c8d2013-04-27 02:56:57 +00003306 if (ret)
3307 goto out;
3308
3309 if (extent_logical + extent_len <
3310 key.objectid + bytes) {
Zhao Leiffe2d202015-01-20 15:11:44 +08003311 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Wang Shilong3b080b22014-04-01 18:01:43 +08003312 /*
3313 * loop until we find next data stripe
3314 * or we have finished all stripes.
3315 */
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003316loop:
3317 physical += map->stripe_len;
3318 ret = get_raid56_logic_offset(physical,
3319 num, map, &logical,
3320 &stripe_logical);
3321 logical += base;
3322
3323 if (ret && physical < physical_end) {
3324 stripe_logical += base;
3325 stripe_end = stripe_logical +
Zhao Leia0dd59d2015-07-21 15:42:26 +08003326 increment;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003327 ret = scrub_raid56_parity(sctx,
3328 map, scrub_dev, ppath,
3329 stripe_logical,
3330 stripe_end);
3331 if (ret)
3332 goto out;
3333 goto loop;
3334 }
Wang Shilong3b080b22014-04-01 18:01:43 +08003335 } else {
3336 physical += map->stripe_len;
3337 logical += increment;
3338 }
Liu Bo625f1c8d2013-04-27 02:56:57 +00003339 if (logical < key.objectid + bytes) {
3340 cond_resched();
3341 goto again;
3342 }
3343
Wang Shilong3b080b22014-04-01 18:01:43 +08003344 if (physical >= physical_end) {
Liu Bo625f1c8d2013-04-27 02:56:57 +00003345 stop_loop = 1;
3346 break;
3347 }
3348 }
Arne Jansena2de7332011-03-08 14:14:00 +01003349next:
3350 path->slots[0]++;
3351 }
Chris Mason71267332011-05-23 06:30:52 -04003352 btrfs_release_path(path);
Wang Shilong3b080b22014-04-01 18:01:43 +08003353skip:
Arne Jansena2de7332011-03-08 14:14:00 +01003354 logical += increment;
3355 physical += map->stripe_len;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003356 spin_lock(&sctx->stat_lock);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003357 if (stop_loop)
3358 sctx->stat.last_physical = map->stripes[num].physical +
3359 length;
3360 else
3361 sctx->stat.last_physical = physical;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003362 spin_unlock(&sctx->stat_lock);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003363 if (stop_loop)
3364 break;
Arne Jansena2de7332011-03-08 14:14:00 +01003365 }
Stefan Behrensff023aa2012-11-06 11:43:11 +01003366out:
Arne Jansena2de7332011-03-08 14:14:00 +01003367 /* push queued extents */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003368 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003369 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003370 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003371 mutex_unlock(&sctx->wr_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003372
Arne Jansene7786c32011-05-28 20:58:38 +00003373 blk_finish_plug(&plug);
Arne Jansena2de7332011-03-08 14:14:00 +01003374 btrfs_free_path(path);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003375 btrfs_free_path(ppath);
Arne Jansena2de7332011-03-08 14:14:00 +01003376 return ret < 0 ? ret : 0;
3377}
3378
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003379static noinline_for_stack int scrub_chunk(struct scrub_ctx *sctx,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003380 struct btrfs_device *scrub_dev,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003381 u64 chunk_offset, u64 length,
Filipe Manana020d5b72015-11-19 10:57:20 +00003382 u64 dev_offset,
David Sterba32da53862019-10-29 19:20:18 +01003383 struct btrfs_block_group *cache)
Arne Jansena2de7332011-03-08 14:14:00 +01003384{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04003385 struct btrfs_fs_info *fs_info = sctx->fs_info;
David Sterbac8bf1b62019-05-17 11:43:17 +02003386 struct extent_map_tree *map_tree = &fs_info->mapping_tree;
Arne Jansena2de7332011-03-08 14:14:00 +01003387 struct map_lookup *map;
3388 struct extent_map *em;
3389 int i;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003390 int ret = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01003391
David Sterbac8bf1b62019-05-17 11:43:17 +02003392 read_lock(&map_tree->lock);
3393 em = lookup_extent_mapping(map_tree, chunk_offset, 1);
3394 read_unlock(&map_tree->lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003395
Filipe Manana020d5b72015-11-19 10:57:20 +00003396 if (!em) {
3397 /*
3398 * Might have been an unused block group deleted by the cleaner
3399 * kthread or relocation.
3400 */
3401 spin_lock(&cache->lock);
3402 if (!cache->removed)
3403 ret = -EINVAL;
3404 spin_unlock(&cache->lock);
3405
3406 return ret;
3407 }
Arne Jansena2de7332011-03-08 14:14:00 +01003408
Jeff Mahoney95617d62015-06-03 10:55:48 -04003409 map = em->map_lookup;
Arne Jansena2de7332011-03-08 14:14:00 +01003410 if (em->start != chunk_offset)
3411 goto out;
3412
3413 if (em->len < length)
3414 goto out;
3415
3416 for (i = 0; i < map->num_stripes; ++i) {
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003417 if (map->stripes[i].dev->bdev == scrub_dev->bdev &&
Arne Jansen859acaf2012-02-09 15:09:02 +01003418 map->stripes[i].physical == dev_offset) {
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003419 ret = scrub_stripe(sctx, map, scrub_dev, i,
Filipe Manana2473d242020-05-08 11:01:10 +01003420 chunk_offset, length, cache);
Arne Jansena2de7332011-03-08 14:14:00 +01003421 if (ret)
3422 goto out;
3423 }
3424 }
3425out:
3426 free_extent_map(em);
3427
3428 return ret;
3429}
3430
3431static noinline_for_stack
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003432int scrub_enumerate_chunks(struct scrub_ctx *sctx,
Omar Sandoval32934282018-08-14 11:09:52 -07003433 struct btrfs_device *scrub_dev, u64 start, u64 end)
Arne Jansena2de7332011-03-08 14:14:00 +01003434{
3435 struct btrfs_dev_extent *dev_extent = NULL;
3436 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003437 struct btrfs_fs_info *fs_info = sctx->fs_info;
3438 struct btrfs_root *root = fs_info->dev_root;
Arne Jansena2de7332011-03-08 14:14:00 +01003439 u64 length;
Arne Jansena2de7332011-03-08 14:14:00 +01003440 u64 chunk_offset;
Zhaolei55e3a602015-08-05 16:43:30 +08003441 int ret = 0;
Zhaolei76a8efa2015-11-17 18:46:17 +08003442 int ro_set;
Arne Jansena2de7332011-03-08 14:14:00 +01003443 int slot;
3444 struct extent_buffer *l;
3445 struct btrfs_key key;
3446 struct btrfs_key found_key;
David Sterba32da53862019-10-29 19:20:18 +01003447 struct btrfs_block_group *cache;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003448 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
Arne Jansena2de7332011-03-08 14:14:00 +01003449
3450 path = btrfs_alloc_path();
3451 if (!path)
3452 return -ENOMEM;
3453
David Sterbae4058b52015-11-27 16:31:35 +01003454 path->reada = READA_FORWARD;
Arne Jansena2de7332011-03-08 14:14:00 +01003455 path->search_commit_root = 1;
3456 path->skip_locking = 1;
3457
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003458 key.objectid = scrub_dev->devid;
Arne Jansena2de7332011-03-08 14:14:00 +01003459 key.offset = 0ull;
3460 key.type = BTRFS_DEV_EXTENT_KEY;
3461
Arne Jansena2de7332011-03-08 14:14:00 +01003462 while (1) {
3463 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3464 if (ret < 0)
Arne Jansen8c510322011-06-03 10:09:26 +02003465 break;
3466 if (ret > 0) {
3467 if (path->slots[0] >=
3468 btrfs_header_nritems(path->nodes[0])) {
3469 ret = btrfs_next_leaf(root, path);
Zhaolei55e3a602015-08-05 16:43:30 +08003470 if (ret < 0)
Arne Jansen8c510322011-06-03 10:09:26 +02003471 break;
Zhaolei55e3a602015-08-05 16:43:30 +08003472 if (ret > 0) {
3473 ret = 0;
3474 break;
3475 }
3476 } else {
3477 ret = 0;
Arne Jansen8c510322011-06-03 10:09:26 +02003478 }
3479 }
Arne Jansena2de7332011-03-08 14:14:00 +01003480
3481 l = path->nodes[0];
3482 slot = path->slots[0];
3483
3484 btrfs_item_key_to_cpu(l, &found_key, slot);
3485
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003486 if (found_key.objectid != scrub_dev->devid)
Arne Jansena2de7332011-03-08 14:14:00 +01003487 break;
3488
David Sterba962a2982014-06-04 18:41:45 +02003489 if (found_key.type != BTRFS_DEV_EXTENT_KEY)
Arne Jansena2de7332011-03-08 14:14:00 +01003490 break;
3491
3492 if (found_key.offset >= end)
3493 break;
3494
3495 if (found_key.offset < key.offset)
3496 break;
3497
3498 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
3499 length = btrfs_dev_extent_length(l, dev_extent);
3500
Qu Wenruoced96ed2014-06-19 10:42:51 +08003501 if (found_key.offset + length <= start)
3502 goto skip;
Arne Jansena2de7332011-03-08 14:14:00 +01003503
Arne Jansena2de7332011-03-08 14:14:00 +01003504 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
3505
3506 /*
3507 * get a reference on the corresponding block group to prevent
3508 * the chunk from going away while we scrub it
3509 */
3510 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
Qu Wenruoced96ed2014-06-19 10:42:51 +08003511
3512 /* some chunks are removed but not committed to disk yet,
3513 * continue scrubbing */
3514 if (!cache)
3515 goto skip;
3516
Zhaolei55e3a602015-08-05 16:43:30 +08003517 /*
Filipe Manana2473d242020-05-08 11:01:10 +01003518 * Make sure that while we are scrubbing the corresponding block
3519 * group doesn't get its logical address and its device extents
3520 * reused for another block group, which can possibly be of a
3521 * different type and different profile. We do this to prevent
3522 * false error detections and crashes due to bogus attempts to
3523 * repair extents.
3524 */
3525 spin_lock(&cache->lock);
3526 if (cache->removed) {
3527 spin_unlock(&cache->lock);
3528 btrfs_put_block_group(cache);
3529 goto skip;
3530 }
Filipe Manana6b7304a2020-05-08 11:01:47 +01003531 btrfs_freeze_block_group(cache);
Filipe Manana2473d242020-05-08 11:01:10 +01003532 spin_unlock(&cache->lock);
3533
3534 /*
Zhaolei55e3a602015-08-05 16:43:30 +08003535 * we need call btrfs_inc_block_group_ro() with scrubs_paused,
3536 * to avoid deadlock caused by:
3537 * btrfs_inc_block_group_ro()
3538 * -> btrfs_wait_for_commit()
3539 * -> btrfs_commit_transaction()
3540 * -> btrfs_scrub_pause()
3541 */
3542 scrub_pause_on(fs_info);
Qu Wenruob12de522019-11-15 10:09:00 +08003543
3544 /*
3545 * Don't do chunk preallocation for scrub.
3546 *
3547 * This is especially important for SYSTEM bgs, or we can hit
3548 * -EFBIG from btrfs_finish_chunk_alloc() like:
3549 * 1. The only SYSTEM bg is marked RO.
3550 * Since SYSTEM bg is small, that's pretty common.
3551 * 2. New SYSTEM bg will be allocated
3552 * Due to regular version will allocate new chunk.
3553 * 3. New SYSTEM bg is empty and will get cleaned up
3554 * Before cleanup really happens, it's marked RO again.
3555 * 4. Empty SYSTEM bg get scrubbed
3556 * We go back to 2.
3557 *
3558 * This can easily boost the amount of SYSTEM chunks if cleaner
3559 * thread can't be triggered fast enough, and use up all space
3560 * of btrfs_super_block::sys_chunk_array
Qu Wenruo1bbb97b2020-01-24 07:58:20 +08003561 *
3562 * While for dev replace, we need to try our best to mark block
3563 * group RO, to prevent race between:
3564 * - Write duplication
3565 * Contains latest data
3566 * - Scrub copy
3567 * Contains data from commit tree
3568 *
3569 * If target block group is not marked RO, nocow writes can
3570 * be overwritten by scrub copy, causing data corruption.
3571 * So for dev-replace, it's not allowed to continue if a block
3572 * group is not RO.
Qu Wenruob12de522019-11-15 10:09:00 +08003573 */
Qu Wenruo1bbb97b2020-01-24 07:58:20 +08003574 ret = btrfs_inc_block_group_ro(cache, sctx->is_dev_replace);
Zhaolei76a8efa2015-11-17 18:46:17 +08003575 if (ret == 0) {
3576 ro_set = 1;
Qu Wenruo1bbb97b2020-01-24 07:58:20 +08003577 } else if (ret == -ENOSPC && !sctx->is_dev_replace) {
Zhaolei76a8efa2015-11-17 18:46:17 +08003578 /*
3579 * btrfs_inc_block_group_ro return -ENOSPC when it
3580 * failed in creating new chunk for metadata.
Qu Wenruo1bbb97b2020-01-24 07:58:20 +08003581 * It is not a problem for scrub, because
Zhaolei76a8efa2015-11-17 18:46:17 +08003582 * metadata are always cowed, and our scrub paused
3583 * commit_transactions.
3584 */
3585 ro_set = 0;
3586 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003587 btrfs_warn(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02003588 "failed setting block group ro: %d", ret);
Filipe Manana6b7304a2020-05-08 11:01:47 +01003589 btrfs_unfreeze_block_group(cache);
Zhaolei55e3a602015-08-05 16:43:30 +08003590 btrfs_put_block_group(cache);
Qu Wenruo1bbb97b2020-01-24 07:58:20 +08003591 scrub_pause_off(fs_info);
Zhaolei55e3a602015-08-05 16:43:30 +08003592 break;
3593 }
3594
Qu Wenruo1bbb97b2020-01-24 07:58:20 +08003595 /*
3596 * Now the target block is marked RO, wait for nocow writes to
3597 * finish before dev-replace.
3598 * COW is fine, as COW never overwrites extents in commit tree.
3599 */
3600 if (sctx->is_dev_replace) {
3601 btrfs_wait_nocow_writers(cache);
3602 btrfs_wait_ordered_roots(fs_info, U64_MAX, cache->start,
3603 cache->length);
3604 }
3605
3606 scrub_pause_off(fs_info);
Dan Carpenter3ec17a62019-10-31 13:55:01 +03003607 down_write(&dev_replace->rwsem);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003608 dev_replace->cursor_right = found_key.offset + length;
3609 dev_replace->cursor_left = found_key.offset;
3610 dev_replace->item_needs_writeback = 1;
David Sterbacb5583d2018-09-07 16:11:23 +02003611 up_write(&dev_replace->rwsem);
3612
Zhao Lei8c204c92015-08-19 15:02:40 +08003613 ret = scrub_chunk(sctx, scrub_dev, chunk_offset, length,
Omar Sandoval32934282018-08-14 11:09:52 -07003614 found_key.offset, cache);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003615
3616 /*
3617 * flush, submit all pending read and write bios, afterwards
3618 * wait for them.
3619 * Note that in the dev replace case, a read request causes
3620 * write requests that are submitted in the read completion
3621 * worker. Therefore in the current situation, it is required
3622 * that all write requests are flushed, so that all read and
3623 * write requests are really completed when bios_in_flight
3624 * changes to 0.
3625 */
David Sterba2073c4c2017-03-31 17:12:51 +02003626 sctx->flush_all_writes = true;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003627 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003628 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003629 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003630 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003631
3632 wait_event(sctx->list_wait,
3633 atomic_read(&sctx->bios_in_flight) == 0);
Zhaoleib708ce92015-08-05 16:43:29 +08003634
3635 scrub_pause_on(fs_info);
Wang Shilong12cf9372014-02-19 19:24:17 +08003636
3637 /*
3638 * must be called before we decrease @scrub_paused.
3639 * make sure we don't block transaction commit while
3640 * we are waiting pending workers finished.
3641 */
Stefan Behrensff023aa2012-11-06 11:43:11 +01003642 wait_event(sctx->list_wait,
3643 atomic_read(&sctx->workers_pending) == 0);
David Sterba2073c4c2017-03-31 17:12:51 +02003644 sctx->flush_all_writes = false;
Wang Shilong12cf9372014-02-19 19:24:17 +08003645
Zhaoleib708ce92015-08-05 16:43:29 +08003646 scrub_pause_off(fs_info);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003647
Dan Carpenter3ec17a62019-10-31 13:55:01 +03003648 down_write(&dev_replace->rwsem);
Filipe Manana1a1a8b72016-05-14 19:44:40 +01003649 dev_replace->cursor_left = dev_replace->cursor_right;
3650 dev_replace->item_needs_writeback = 1;
Dan Carpenter3ec17a62019-10-31 13:55:01 +03003651 up_write(&dev_replace->rwsem);
Filipe Manana1a1a8b72016-05-14 19:44:40 +01003652
Zhaolei76a8efa2015-11-17 18:46:17 +08003653 if (ro_set)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003654 btrfs_dec_block_group_ro(cache);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003655
Filipe Manana758f2df2015-11-19 11:45:48 +00003656 /*
3657 * We might have prevented the cleaner kthread from deleting
3658 * this block group if it was already unused because we raced
3659 * and set it to RO mode first. So add it back to the unused
3660 * list, otherwise it might not ever be deleted unless a manual
3661 * balance is triggered or it becomes used and unused again.
3662 */
3663 spin_lock(&cache->lock);
3664 if (!cache->removed && !cache->ro && cache->reserved == 0 &&
David Sterbabf38be62019-10-23 18:48:11 +02003665 cache->used == 0) {
Filipe Manana758f2df2015-11-19 11:45:48 +00003666 spin_unlock(&cache->lock);
Dennis Zhou6e80d4f2019-12-13 16:22:15 -08003667 if (btrfs_test_opt(fs_info, DISCARD_ASYNC))
3668 btrfs_discard_queue_work(&fs_info->discard_ctl,
3669 cache);
3670 else
3671 btrfs_mark_bg_unused(cache);
Filipe Manana758f2df2015-11-19 11:45:48 +00003672 } else {
3673 spin_unlock(&cache->lock);
3674 }
3675
Filipe Manana6b7304a2020-05-08 11:01:47 +01003676 btrfs_unfreeze_block_group(cache);
Arne Jansena2de7332011-03-08 14:14:00 +01003677 btrfs_put_block_group(cache);
3678 if (ret)
3679 break;
Omar Sandoval32934282018-08-14 11:09:52 -07003680 if (sctx->is_dev_replace &&
Stefan Behrensaf1be4f2012-11-27 17:39:51 +00003681 atomic64_read(&dev_replace->num_write_errors) > 0) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01003682 ret = -EIO;
3683 break;
3684 }
3685 if (sctx->stat.malloc_errors > 0) {
3686 ret = -ENOMEM;
3687 break;
3688 }
Qu Wenruoced96ed2014-06-19 10:42:51 +08003689skip:
Arne Jansena2de7332011-03-08 14:14:00 +01003690 key.offset = found_key.offset + length;
Chris Mason71267332011-05-23 06:30:52 -04003691 btrfs_release_path(path);
Arne Jansena2de7332011-03-08 14:14:00 +01003692 }
3693
Arne Jansena2de7332011-03-08 14:14:00 +01003694 btrfs_free_path(path);
Arne Jansen8c510322011-06-03 10:09:26 +02003695
Zhaolei55e3a602015-08-05 16:43:30 +08003696 return ret;
Arne Jansena2de7332011-03-08 14:14:00 +01003697}
3698
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003699static noinline_for_stack int scrub_supers(struct scrub_ctx *sctx,
3700 struct btrfs_device *scrub_dev)
Arne Jansena2de7332011-03-08 14:14:00 +01003701{
3702 int i;
3703 u64 bytenr;
3704 u64 gen;
3705 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003706 struct btrfs_fs_info *fs_info = sctx->fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +01003707
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003708 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003709 return -EIO;
3710
Miao Xie5f546062014-07-24 11:37:09 +08003711 /* Seed devices of a new filesystem has their own generation. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003712 if (scrub_dev->fs_devices != fs_info->fs_devices)
Miao Xie5f546062014-07-24 11:37:09 +08003713 gen = scrub_dev->generation;
3714 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003715 gen = fs_info->last_trans_committed;
Arne Jansena2de7332011-03-08 14:14:00 +01003716
3717 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
3718 bytenr = btrfs_sb_offset(i);
Miao Xie935e5cc2014-09-03 21:35:33 +08003719 if (bytenr + BTRFS_SUPER_INFO_SIZE >
3720 scrub_dev->commit_total_bytes)
Arne Jansena2de7332011-03-08 14:14:00 +01003721 break;
3722
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003723 ret = scrub_pages(sctx, bytenr, BTRFS_SUPER_INFO_SIZE, bytenr,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003724 scrub_dev, BTRFS_EXTENT_FLAG_SUPER, gen, i,
Stefan Behrensff023aa2012-11-06 11:43:11 +01003725 NULL, 1, bytenr);
Arne Jansena2de7332011-03-08 14:14:00 +01003726 if (ret)
3727 return ret;
3728 }
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003729 wait_event(sctx->list_wait, atomic_read(&sctx->bios_in_flight) == 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003730
3731 return 0;
3732}
3733
3734/*
3735 * get a reference count on fs_info->scrub_workers. start worker if necessary
3736 */
Stefan Behrensff023aa2012-11-06 11:43:11 +01003737static noinline_for_stack int scrub_workers_get(struct btrfs_fs_info *fs_info,
3738 int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01003739{
David Sterba6f011052015-02-16 18:34:01 +01003740 unsigned int flags = WQ_FREEZABLE | WQ_UNBOUND;
Qu Wenruo0339ef22014-02-28 10:46:17 +08003741 int max_active = fs_info->thread_pool_size;
Arne Jansena2de7332011-03-08 14:14:00 +01003742
Anand Jaineb4318e2019-01-30 14:45:01 +08003743 lockdep_assert_held(&fs_info->scrub_lock);
3744
Anand Jainff09c4c2019-01-30 14:45:02 +08003745 if (refcount_read(&fs_info->scrub_workers_refcnt) == 0) {
David Sterbac8352942019-02-12 16:51:18 +01003746 ASSERT(fs_info->scrub_workers == NULL);
David Sterbaaf1cbe02017-03-31 18:42:57 +02003747 fs_info->scrub_workers = btrfs_alloc_workqueue(fs_info, "scrub",
3748 flags, is_dev_replace ? 1 : max_active, 4);
Zhao Leie82afc52015-06-12 20:36:58 +08003749 if (!fs_info->scrub_workers)
3750 goto fail_scrub_workers;
3751
David Sterbac8352942019-02-12 16:51:18 +01003752 ASSERT(fs_info->scrub_wr_completion_workers == NULL);
Qu Wenruo0339ef22014-02-28 10:46:17 +08003753 fs_info->scrub_wr_completion_workers =
Jeff Mahoneycb001092016-06-09 16:22:11 -04003754 btrfs_alloc_workqueue(fs_info, "scrubwrc", flags,
Qu Wenruo0339ef22014-02-28 10:46:17 +08003755 max_active, 2);
Zhao Leie82afc52015-06-12 20:36:58 +08003756 if (!fs_info->scrub_wr_completion_workers)
3757 goto fail_scrub_wr_completion_workers;
3758
David Sterbac8352942019-02-12 16:51:18 +01003759 ASSERT(fs_info->scrub_parity_workers == NULL);
Zhao Lei20b2e302015-06-04 20:09:15 +08003760 fs_info->scrub_parity_workers =
Jeff Mahoneycb001092016-06-09 16:22:11 -04003761 btrfs_alloc_workqueue(fs_info, "scrubparity", flags,
Zhao Lei20b2e302015-06-04 20:09:15 +08003762 max_active, 2);
Zhao Leie82afc52015-06-12 20:36:58 +08003763 if (!fs_info->scrub_parity_workers)
3764 goto fail_scrub_parity_workers;
Anand Jainff09c4c2019-01-30 14:45:02 +08003765
3766 refcount_set(&fs_info->scrub_workers_refcnt, 1);
3767 } else {
3768 refcount_inc(&fs_info->scrub_workers_refcnt);
Arne Jansen632dd772011-06-10 12:07:07 +02003769 }
Zhao Leie82afc52015-06-12 20:36:58 +08003770 return 0;
3771
3772fail_scrub_parity_workers:
Zhao Leie82afc52015-06-12 20:36:58 +08003773 btrfs_destroy_workqueue(fs_info->scrub_wr_completion_workers);
3774fail_scrub_wr_completion_workers:
3775 btrfs_destroy_workqueue(fs_info->scrub_workers);
3776fail_scrub_workers:
3777 return -ENOMEM;
Arne Jansena2de7332011-03-08 14:14:00 +01003778}
3779
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003780int btrfs_scrub_dev(struct btrfs_fs_info *fs_info, u64 devid, u64 start,
3781 u64 end, struct btrfs_scrub_progress *progress,
Stefan Behrens63a212a2012-11-05 18:29:28 +01003782 int readonly, int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01003783{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003784 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003785 int ret;
3786 struct btrfs_device *dev;
Filipe Mananaa5fb1142018-11-26 20:07:17 +00003787 unsigned int nofs_flag;
Anand Jain1cec3f272019-01-30 14:45:00 +08003788 struct btrfs_workqueue *scrub_workers = NULL;
3789 struct btrfs_workqueue *scrub_wr_comp = NULL;
3790 struct btrfs_workqueue *scrub_parity = NULL;
Arne Jansena2de7332011-03-08 14:14:00 +01003791
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003792 if (btrfs_fs_closing(fs_info))
David Sterba6c3abed2019-02-25 19:57:41 +01003793 return -EAGAIN;
Arne Jansena2de7332011-03-08 14:14:00 +01003794
Jeff Mahoneyda170662016-06-15 09:22:56 -04003795 if (fs_info->nodesize > BTRFS_STRIPE_LEN) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003796 /*
3797 * in this case scrub is unable to calculate the checksum
3798 * the way scrub is implemented. Do not handle this
3799 * situation at all because it won't ever happen.
3800 */
Frank Holtonefe120a2013-12-20 11:37:06 -05003801 btrfs_err(fs_info,
3802 "scrub: size assumption nodesize <= BTRFS_STRIPE_LEN (%d <= %d) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003803 fs_info->nodesize,
3804 BTRFS_STRIPE_LEN);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003805 return -EINVAL;
3806 }
3807
Jeff Mahoneyda170662016-06-15 09:22:56 -04003808 if (fs_info->sectorsize != PAGE_SIZE) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003809 /* not supported for data w/o checksums */
Chandan Rajendra751bebb2016-07-04 10:04:39 +05303810 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003811 "scrub: size assumption sectorsize != PAGE_SIZE (%d != %lu) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003812 fs_info->sectorsize, PAGE_SIZE);
Arne Jansena2de7332011-03-08 14:14:00 +01003813 return -EINVAL;
3814 }
3815
Jeff Mahoneyda170662016-06-15 09:22:56 -04003816 if (fs_info->nodesize >
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003817 PAGE_SIZE * SCRUB_MAX_PAGES_PER_BLOCK ||
Jeff Mahoneyda170662016-06-15 09:22:56 -04003818 fs_info->sectorsize > PAGE_SIZE * SCRUB_MAX_PAGES_PER_BLOCK) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003819 /*
3820 * would exhaust the array bounds of pagev member in
3821 * struct scrub_block
3822 */
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003823 btrfs_err(fs_info,
3824 "scrub: size assumption nodesize and sectorsize <= SCRUB_MAX_PAGES_PER_BLOCK (%d <= %d && %d <= %d) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003825 fs_info->nodesize,
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003826 SCRUB_MAX_PAGES_PER_BLOCK,
Jeff Mahoneyda170662016-06-15 09:22:56 -04003827 fs_info->sectorsize,
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003828 SCRUB_MAX_PAGES_PER_BLOCK);
3829 return -EINVAL;
3830 }
3831
David Sterba0e94c4f42018-12-04 16:11:56 +01003832 /* Allocate outside of device_list_mutex */
3833 sctx = scrub_setup_ctx(fs_info, is_dev_replace);
3834 if (IS_ERR(sctx))
3835 return PTR_ERR(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01003836
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003837 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jain09ba3bc2019-01-19 14:48:55 +08003838 dev = btrfs_find_device(fs_info->fs_devices, devid, NULL, NULL, true);
Anand Jaine6e674b2017-12-04 12:54:54 +08003839 if (!dev || (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) &&
3840 !is_dev_replace)) {
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003841 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003842 ret = -ENODEV;
3843 goto out_free_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003844 }
Arne Jansena2de7332011-03-08 14:14:00 +01003845
Anand Jainebbede42017-12-04 12:54:52 +08003846 if (!is_dev_replace && !readonly &&
3847 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Miao Xie5d68da32014-07-24 11:37:07 +08003848 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Misono Tomohiro672d5992018-08-02 16:19:07 +09003849 btrfs_err_in_rcu(fs_info, "scrub: device %s is not writable",
3850 rcu_str_deref(dev->name));
David Sterba0e94c4f42018-12-04 16:11:56 +01003851 ret = -EROFS;
3852 goto out_free_ctx;
Miao Xie5d68da32014-07-24 11:37:07 +08003853 }
3854
Wang Shilong3b7a0162013-10-12 02:11:12 +08003855 mutex_lock(&fs_info->scrub_lock);
Anand Jaine12c9622017-12-04 12:54:53 +08003856 if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &dev->dev_state) ||
Anand Jain401e29c2017-12-04 12:54:55 +08003857 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &dev->dev_state)) {
Arne Jansena2de7332011-03-08 14:14:00 +01003858 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003859 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003860 ret = -EIO;
3861 goto out_free_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003862 }
3863
David Sterbacb5583d2018-09-07 16:11:23 +02003864 down_read(&fs_info->dev_replace.rwsem);
Anand Jaincadbc0a2018-01-03 16:08:30 +08003865 if (dev->scrub_ctx ||
Stefan Behrens8dabb742012-11-06 13:15:27 +01003866 (!is_dev_replace &&
3867 btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))) {
David Sterbacb5583d2018-09-07 16:11:23 +02003868 up_read(&fs_info->dev_replace.rwsem);
Arne Jansena2de7332011-03-08 14:14:00 +01003869 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003870 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003871 ret = -EINPROGRESS;
3872 goto out_free_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003873 }
David Sterbacb5583d2018-09-07 16:11:23 +02003874 up_read(&fs_info->dev_replace.rwsem);
Wang Shilong3b7a0162013-10-12 02:11:12 +08003875
3876 ret = scrub_workers_get(fs_info, is_dev_replace);
3877 if (ret) {
3878 mutex_unlock(&fs_info->scrub_lock);
3879 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003880 goto out_free_ctx;
Wang Shilong3b7a0162013-10-12 02:11:12 +08003881 }
3882
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003883 sctx->readonly = readonly;
Anand Jaincadbc0a2018-01-03 16:08:30 +08003884 dev->scrub_ctx = sctx;
Wang Shilong3cb09292013-12-04 21:15:19 +08003885 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Arne Jansena2de7332011-03-08 14:14:00 +01003886
Wang Shilong3cb09292013-12-04 21:15:19 +08003887 /*
3888 * checking @scrub_pause_req here, we can avoid
3889 * race between committing transaction and scrubbing.
3890 */
Wang Shilongcb7ab022013-12-04 21:16:53 +08003891 __scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003892 atomic_inc(&fs_info->scrubs_running);
3893 mutex_unlock(&fs_info->scrub_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003894
Filipe Mananaa5fb1142018-11-26 20:07:17 +00003895 /*
3896 * In order to avoid deadlock with reclaim when there is a transaction
3897 * trying to pause scrub, make sure we use GFP_NOFS for all the
3898 * allocations done at btrfs_scrub_pages() and scrub_pages_for_parity()
3899 * invoked by our callees. The pausing request is done when the
3900 * transaction commit starts, and it blocks the transaction until scrub
3901 * is paused (done at specific points at scrub_stripe() or right above
3902 * before incrementing fs_info->scrubs_running).
3903 */
3904 nofs_flag = memalloc_nofs_save();
Stefan Behrensff023aa2012-11-06 11:43:11 +01003905 if (!is_dev_replace) {
Anand Jaind1e14422019-01-03 16:17:40 +08003906 btrfs_info(fs_info, "scrub: started on devid %llu", devid);
Wang Shilong9b011ad2013-10-25 19:12:02 +08003907 /*
3908 * by holding device list mutex, we can
3909 * kick off writing super in log tree sync.
3910 */
Wang Shilong3cb09292013-12-04 21:15:19 +08003911 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003912 ret = scrub_supers(sctx, dev);
Wang Shilong3cb09292013-12-04 21:15:19 +08003913 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003914 }
Arne Jansena2de7332011-03-08 14:14:00 +01003915
3916 if (!ret)
Omar Sandoval32934282018-08-14 11:09:52 -07003917 ret = scrub_enumerate_chunks(sctx, dev, start, end);
Filipe Mananaa5fb1142018-11-26 20:07:17 +00003918 memalloc_nofs_restore(nofs_flag);
Arne Jansena2de7332011-03-08 14:14:00 +01003919
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003920 wait_event(sctx->list_wait, atomic_read(&sctx->bios_in_flight) == 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003921 atomic_dec(&fs_info->scrubs_running);
3922 wake_up(&fs_info->scrub_pause_wait);
3923
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003924 wait_event(sctx->list_wait, atomic_read(&sctx->workers_pending) == 0);
Jan Schmidt0ef8e452011-06-13 20:04:15 +02003925
Arne Jansena2de7332011-03-08 14:14:00 +01003926 if (progress)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003927 memcpy(progress, &sctx->stat, sizeof(*progress));
Arne Jansena2de7332011-03-08 14:14:00 +01003928
Anand Jaind1e14422019-01-03 16:17:40 +08003929 if (!is_dev_replace)
3930 btrfs_info(fs_info, "scrub: %s on devid %llu with status: %d",
3931 ret ? "not finished" : "finished", devid, ret);
3932
Arne Jansena2de7332011-03-08 14:14:00 +01003933 mutex_lock(&fs_info->scrub_lock);
Anand Jaincadbc0a2018-01-03 16:08:30 +08003934 dev->scrub_ctx = NULL;
Anand Jainff09c4c2019-01-30 14:45:02 +08003935 if (refcount_dec_and_test(&fs_info->scrub_workers_refcnt)) {
Anand Jain1cec3f272019-01-30 14:45:00 +08003936 scrub_workers = fs_info->scrub_workers;
3937 scrub_wr_comp = fs_info->scrub_wr_completion_workers;
3938 scrub_parity = fs_info->scrub_parity_workers;
David Sterbac8352942019-02-12 16:51:18 +01003939
3940 fs_info->scrub_workers = NULL;
3941 fs_info->scrub_wr_completion_workers = NULL;
3942 fs_info->scrub_parity_workers = NULL;
Anand Jain1cec3f272019-01-30 14:45:00 +08003943 }
Arne Jansena2de7332011-03-08 14:14:00 +01003944 mutex_unlock(&fs_info->scrub_lock);
3945
Anand Jain1cec3f272019-01-30 14:45:00 +08003946 btrfs_destroy_workqueue(scrub_workers);
3947 btrfs_destroy_workqueue(scrub_wr_comp);
3948 btrfs_destroy_workqueue(scrub_parity);
Filipe Mananaf55985f2015-02-09 21:14:24 +00003949 scrub_put_ctx(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01003950
3951 return ret;
David Sterba0e94c4f42018-12-04 16:11:56 +01003952
3953out_free_ctx:
3954 scrub_free_ctx(sctx);
3955
3956 return ret;
Arne Jansena2de7332011-03-08 14:14:00 +01003957}
3958
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003959void btrfs_scrub_pause(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003960{
Arne Jansena2de7332011-03-08 14:14:00 +01003961 mutex_lock(&fs_info->scrub_lock);
3962 atomic_inc(&fs_info->scrub_pause_req);
3963 while (atomic_read(&fs_info->scrubs_paused) !=
3964 atomic_read(&fs_info->scrubs_running)) {
3965 mutex_unlock(&fs_info->scrub_lock);
3966 wait_event(fs_info->scrub_pause_wait,
3967 atomic_read(&fs_info->scrubs_paused) ==
3968 atomic_read(&fs_info->scrubs_running));
3969 mutex_lock(&fs_info->scrub_lock);
3970 }
3971 mutex_unlock(&fs_info->scrub_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003972}
3973
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003974void btrfs_scrub_continue(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003975{
Arne Jansena2de7332011-03-08 14:14:00 +01003976 atomic_dec(&fs_info->scrub_pause_req);
3977 wake_up(&fs_info->scrub_pause_wait);
Arne Jansena2de7332011-03-08 14:14:00 +01003978}
3979
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003980int btrfs_scrub_cancel(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003981{
Arne Jansena2de7332011-03-08 14:14:00 +01003982 mutex_lock(&fs_info->scrub_lock);
3983 if (!atomic_read(&fs_info->scrubs_running)) {
3984 mutex_unlock(&fs_info->scrub_lock);
3985 return -ENOTCONN;
3986 }
3987
3988 atomic_inc(&fs_info->scrub_cancel_req);
3989 while (atomic_read(&fs_info->scrubs_running)) {
3990 mutex_unlock(&fs_info->scrub_lock);
3991 wait_event(fs_info->scrub_pause_wait,
3992 atomic_read(&fs_info->scrubs_running) == 0);
3993 mutex_lock(&fs_info->scrub_lock);
3994 }
3995 atomic_dec(&fs_info->scrub_cancel_req);
3996 mutex_unlock(&fs_info->scrub_lock);
3997
3998 return 0;
3999}
4000
David Sterba163e97e2019-03-20 16:32:55 +01004001int btrfs_scrub_cancel_dev(struct btrfs_device *dev)
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004002{
David Sterba163e97e2019-03-20 16:32:55 +01004003 struct btrfs_fs_info *fs_info = dev->fs_info;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004004 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01004005
4006 mutex_lock(&fs_info->scrub_lock);
Anand Jaincadbc0a2018-01-03 16:08:30 +08004007 sctx = dev->scrub_ctx;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004008 if (!sctx) {
Arne Jansena2de7332011-03-08 14:14:00 +01004009 mutex_unlock(&fs_info->scrub_lock);
4010 return -ENOTCONN;
4011 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004012 atomic_inc(&sctx->cancel_req);
Anand Jaincadbc0a2018-01-03 16:08:30 +08004013 while (dev->scrub_ctx) {
Arne Jansena2de7332011-03-08 14:14:00 +01004014 mutex_unlock(&fs_info->scrub_lock);
4015 wait_event(fs_info->scrub_pause_wait,
Anand Jaincadbc0a2018-01-03 16:08:30 +08004016 dev->scrub_ctx == NULL);
Arne Jansena2de7332011-03-08 14:14:00 +01004017 mutex_lock(&fs_info->scrub_lock);
4018 }
4019 mutex_unlock(&fs_info->scrub_lock);
4020
4021 return 0;
4022}
Stefan Behrens1623ede2012-03-27 14:21:26 -04004023
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004024int btrfs_scrub_progress(struct btrfs_fs_info *fs_info, u64 devid,
Arne Jansena2de7332011-03-08 14:14:00 +01004025 struct btrfs_scrub_progress *progress)
4026{
4027 struct btrfs_device *dev;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004028 struct scrub_ctx *sctx = NULL;
Arne Jansena2de7332011-03-08 14:14:00 +01004029
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004030 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jain09ba3bc2019-01-19 14:48:55 +08004031 dev = btrfs_find_device(fs_info->fs_devices, devid, NULL, NULL, true);
Arne Jansena2de7332011-03-08 14:14:00 +01004032 if (dev)
Anand Jaincadbc0a2018-01-03 16:08:30 +08004033 sctx = dev->scrub_ctx;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004034 if (sctx)
4035 memcpy(progress, &sctx->stat, sizeof(*progress));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004036 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Arne Jansena2de7332011-03-08 14:14:00 +01004037
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004038 return dev ? (sctx ? 0 : -ENOTCONN) : -ENODEV;
Arne Jansena2de7332011-03-08 14:14:00 +01004039}
Stefan Behrensff023aa2012-11-06 11:43:11 +01004040
4041static void scrub_remap_extent(struct btrfs_fs_info *fs_info,
4042 u64 extent_logical, u64 extent_len,
4043 u64 *extent_physical,
4044 struct btrfs_device **extent_dev,
4045 int *extent_mirror_num)
4046{
4047 u64 mapped_length;
4048 struct btrfs_bio *bbio = NULL;
4049 int ret;
4050
4051 mapped_length = extent_len;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02004052 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, extent_logical,
Stefan Behrensff023aa2012-11-06 11:43:11 +01004053 &mapped_length, &bbio, 0);
4054 if (ret || !bbio || mapped_length < extent_len ||
4055 !bbio->stripes[0].dev->bdev) {
Zhao Lei6e9606d2015-01-20 15:11:34 +08004056 btrfs_put_bbio(bbio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01004057 return;
4058 }
4059
4060 *extent_physical = bbio->stripes[0].physical;
4061 *extent_mirror_num = bbio->mirror_num;
4062 *extent_dev = bbio->stripes[0].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08004063 btrfs_put_bbio(bbio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01004064}