blob: 21de630b073024c343d75835c3a61ba0922aac7b [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"
11#include "volumes.h"
12#include "disk-io.h"
13#include "ordered-data.h"
Jan Schmidt0ef8e452011-06-13 20:04:15 +020014#include "transaction.h"
Jan Schmidt558540c2011-06-13 19:59:12 +020015#include "backref.h"
Jan Schmidt5da6fcb2011-08-04 18:11:04 +020016#include "extent_io.h"
Stefan Behrensff023aa2012-11-06 11:43:11 +010017#include "dev-replace.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010018#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040019#include "rcu-string.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050020#include "raid56.h"
Josef Bacikaac00232019-06-20 15:37:44 -040021#include "block-group.h"
Arne Jansena2de7332011-03-08 14:14:00 +010022
23/*
24 * This is only the first step towards a full-features scrub. It reads all
25 * extent and super block and verifies the checksums. In case a bad checksum
26 * is found or the extent cannot be read, good data will be written back if
27 * any can be found.
28 *
29 * Future enhancements:
Arne Jansena2de7332011-03-08 14:14:00 +010030 * - In case an unrepairable extent is encountered, track which files are
31 * affected and report them
Arne Jansena2de7332011-03-08 14:14:00 +010032 * - track and record media errors, throw out bad devices
Arne Jansena2de7332011-03-08 14:14:00 +010033 * - add a mode to also read unallocated space
Arne Jansena2de7332011-03-08 14:14:00 +010034 */
35
Stefan Behrensb5d67f62012-03-27 14:21:27 -040036struct scrub_block;
Stefan Behrensd9d181c2012-11-02 09:58:09 +010037struct scrub_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +010038
Stefan Behrensff023aa2012-11-06 11:43:11 +010039/*
40 * the following three values only influence the performance.
41 * The last one configures the number of parallel and outstanding I/O
42 * operations. The first two values configure an upper limit for the number
43 * of (dynamically allocated) pages that are added to a bio.
44 */
45#define SCRUB_PAGES_PER_RD_BIO 32 /* 128k per bio */
46#define SCRUB_PAGES_PER_WR_BIO 32 /* 128k per bio */
47#define SCRUB_BIOS_PER_SCTX 64 /* 8MB per device in flight */
Stefan Behrens7a9e9982012-11-02 14:58:04 +010048
49/*
50 * the following value times PAGE_SIZE needs to be large enough to match the
51 * largest node/leaf/sector size that shall be supported.
52 * Values larger than BTRFS_STRIPE_LEN are not supported.
53 */
Stefan Behrensb5d67f62012-03-27 14:21:27 -040054#define SCRUB_MAX_PAGES_PER_BLOCK 16 /* 64k per node/leaf/sector */
Arne Jansena2de7332011-03-08 14:14:00 +010055
Miao Xieaf8e2d12014-10-23 14:42:50 +080056struct scrub_recover {
Elena Reshetova6f615012017-03-03 10:55:21 +020057 refcount_t refs;
Miao Xieaf8e2d12014-10-23 14:42:50 +080058 struct btrfs_bio *bbio;
Miao Xieaf8e2d12014-10-23 14:42:50 +080059 u64 map_length;
60};
61
Arne Jansena2de7332011-03-08 14:14:00 +010062struct scrub_page {
Stefan Behrensb5d67f62012-03-27 14:21:27 -040063 struct scrub_block *sblock;
64 struct page *page;
Stefan Behrens442a4f62012-05-25 16:06:08 +020065 struct btrfs_device *dev;
Miao Xie5a6ac9e2014-11-06 17:20:58 +080066 struct list_head list;
Arne Jansena2de7332011-03-08 14:14:00 +010067 u64 flags; /* extent flags */
68 u64 generation;
Stefan Behrensb5d67f62012-03-27 14:21:27 -040069 u64 logical;
70 u64 physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +010071 u64 physical_for_dev_replace;
Zhao Lei57019342015-01-20 15:11:45 +080072 atomic_t refs;
Stefan Behrensb5d67f62012-03-27 14:21:27 -040073 struct {
74 unsigned int mirror_num:8;
75 unsigned int have_csum:1;
76 unsigned int io_error:1;
77 };
Arne Jansena2de7332011-03-08 14:14:00 +010078 u8 csum[BTRFS_CSUM_SIZE];
Miao Xieaf8e2d12014-10-23 14:42:50 +080079
80 struct scrub_recover *recover;
Arne Jansena2de7332011-03-08 14:14:00 +010081};
82
83struct scrub_bio {
84 int index;
Stefan Behrensd9d181c2012-11-02 09:58:09 +010085 struct scrub_ctx *sctx;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +010086 struct btrfs_device *dev;
Arne Jansena2de7332011-03-08 14:14:00 +010087 struct bio *bio;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +020088 blk_status_t status;
Arne Jansena2de7332011-03-08 14:14:00 +010089 u64 logical;
90 u64 physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +010091#if SCRUB_PAGES_PER_WR_BIO >= SCRUB_PAGES_PER_RD_BIO
92 struct scrub_page *pagev[SCRUB_PAGES_PER_WR_BIO];
93#else
94 struct scrub_page *pagev[SCRUB_PAGES_PER_RD_BIO];
95#endif
Stefan Behrensb5d67f62012-03-27 14:21:27 -040096 int page_count;
Arne Jansena2de7332011-03-08 14:14:00 +010097 int next_free;
98 struct btrfs_work work;
99};
100
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400101struct scrub_block {
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100102 struct scrub_page *pagev[SCRUB_MAX_PAGES_PER_BLOCK];
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400103 int page_count;
104 atomic_t outstanding_pages;
Elena Reshetova186debd2017-03-03 10:55:23 +0200105 refcount_t refs; /* free mem on transition to zero */
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100106 struct scrub_ctx *sctx;
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800107 struct scrub_parity *sparity;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400108 struct {
109 unsigned int header_error:1;
110 unsigned int checksum_error:1;
111 unsigned int no_io_error_seen:1;
Stefan Behrens442a4f62012-05-25 16:06:08 +0200112 unsigned int generation_error:1; /* also sets header_error */
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800113
114 /* The following is for the data used to check parity */
115 /* It is for the data with checksum */
116 unsigned int data_corrected:1;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400117 };
Omar Sandoval73ff61d2015-06-19 11:52:51 -0700118 struct btrfs_work work;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400119};
120
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800121/* Used for the chunks with parity stripe such RAID5/6 */
122struct scrub_parity {
123 struct scrub_ctx *sctx;
124
125 struct btrfs_device *scrub_dev;
126
127 u64 logic_start;
128
129 u64 logic_end;
130
131 int nsectors;
132
Liu Bo972d7212017-04-03 13:45:33 -0700133 u64 stripe_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800134
Elena Reshetova78a76452017-03-03 10:55:24 +0200135 refcount_t refs;
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800136
137 struct list_head spages;
138
139 /* Work of parity check and repair */
140 struct btrfs_work work;
141
142 /* Mark the parity blocks which have data */
143 unsigned long *dbitmap;
144
145 /*
146 * Mark the parity blocks which have data, but errors happen when
147 * read data or check data
148 */
149 unsigned long *ebitmap;
150
151 unsigned long bitmap[0];
152};
153
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100154struct scrub_ctx {
Stefan Behrensff023aa2012-11-06 11:43:11 +0100155 struct scrub_bio *bios[SCRUB_BIOS_PER_SCTX];
Jeff Mahoneyfb456252016-06-22 18:54:56 -0400156 struct btrfs_fs_info *fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +0100157 int first_free;
158 int curr;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100159 atomic_t bios_in_flight;
160 atomic_t workers_pending;
Arne Jansena2de7332011-03-08 14:14:00 +0100161 spinlock_t list_lock;
162 wait_queue_head_t list_wait;
163 u16 csum_size;
164 struct list_head csum_list;
165 atomic_t cancel_req;
Arne Jansen86287642011-03-23 16:34:19 +0100166 int readonly;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100167 int pages_per_rd_bio;
Stefan Behrens63a212a2012-11-05 18:29:28 +0100168
169 int is_dev_replace;
David Sterba3fb99302017-05-16 19:10:32 +0200170
171 struct scrub_bio *wr_curr_bio;
172 struct mutex wr_lock;
173 int pages_per_wr_bio; /* <= SCRUB_PAGES_PER_WR_BIO */
David Sterba3fb99302017-05-16 19:10:32 +0200174 struct btrfs_device *wr_tgtdev;
David Sterba2073c4c2017-03-31 17:12:51 +0200175 bool flush_all_writes;
Stefan Behrens63a212a2012-11-05 18:29:28 +0100176
Arne Jansena2de7332011-03-08 14:14:00 +0100177 /*
178 * statistics
179 */
180 struct btrfs_scrub_progress stat;
181 spinlock_t stat_lock;
Filipe Mananaf55985f2015-02-09 21:14:24 +0000182
183 /*
184 * Use a ref counter to avoid use-after-free issues. Scrub workers
185 * decrement bios_in_flight and workers_pending and then do a wakeup
186 * on the list_wait wait queue. We must ensure the main scrub task
187 * doesn't free the scrub context before or while the workers are
188 * doing the wakeup() call.
189 */
Elena Reshetova99f4cdb2017-03-03 10:55:25 +0200190 refcount_t refs;
Arne Jansena2de7332011-03-08 14:14:00 +0100191};
192
Jan Schmidt558540c2011-06-13 19:59:12 +0200193struct scrub_warning {
194 struct btrfs_path *path;
195 u64 extent_item_size;
Jan Schmidt558540c2011-06-13 19:59:12 +0200196 const char *errstr;
David Sterba6aa21262017-10-04 17:07:07 +0200197 u64 physical;
Jan Schmidt558540c2011-06-13 19:59:12 +0200198 u64 logical;
199 struct btrfs_device *dev;
Jan Schmidt558540c2011-06-13 19:59:12 +0200200};
201
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800202struct full_stripe_lock {
203 struct rb_node node;
204 u64 logical;
205 u64 refs;
206 struct mutex mutex;
207};
208
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100209static void scrub_pending_bio_inc(struct scrub_ctx *sctx);
210static void scrub_pending_bio_dec(struct scrub_ctx *sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400211static int scrub_handle_errored_block(struct scrub_block *sblock_to_check);
Zhao Leibe50a8d2015-01-20 15:11:42 +0800212static int scrub_setup_recheck_block(struct scrub_block *original_sblock,
Stefan Behrensff023aa2012-11-06 11:43:11 +0100213 struct scrub_block *sblocks_for_recheck);
Stefan Behrens34f5c8e2012-11-02 16:16:26 +0100214static void scrub_recheck_block(struct btrfs_fs_info *fs_info,
Zhao Leiaffe4a52015-08-24 21:32:06 +0800215 struct scrub_block *sblock,
216 int retry_failed_mirror);
Zhao Leiba7cf982015-08-24 21:18:02 +0800217static void scrub_recheck_block_checksum(struct scrub_block *sblock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400218static int scrub_repair_block_from_good_copy(struct scrub_block *sblock_bad,
Zhao Lei114ab502015-01-20 15:11:36 +0800219 struct scrub_block *sblock_good);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400220static int scrub_repair_page_from_good_copy(struct scrub_block *sblock_bad,
221 struct scrub_block *sblock_good,
222 int page_num, int force_write);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100223static void scrub_write_block_to_dev_replace(struct scrub_block *sblock);
224static int scrub_write_page_to_dev_replace(struct scrub_block *sblock,
225 int page_num);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400226static int scrub_checksum_data(struct scrub_block *sblock);
227static int scrub_checksum_tree_block(struct scrub_block *sblock);
228static int scrub_checksum_super(struct scrub_block *sblock);
229static void scrub_block_get(struct scrub_block *sblock);
230static void scrub_block_put(struct scrub_block *sblock);
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100231static void scrub_page_get(struct scrub_page *spage);
232static void scrub_page_put(struct scrub_page *spage);
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800233static void scrub_parity_get(struct scrub_parity *sparity);
234static void scrub_parity_put(struct scrub_parity *sparity);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100235static int scrub_add_page_to_rd_bio(struct scrub_ctx *sctx,
236 struct scrub_page *spage);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100237static int scrub_pages(struct scrub_ctx *sctx, u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100238 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +0100239 u64 gen, int mirror_num, u8 *csum, int force,
240 u64 physical_for_dev_replace);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200241static void scrub_bio_end_io(struct bio *bio);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400242static void scrub_bio_end_io_worker(struct btrfs_work *work);
243static void scrub_block_complete(struct scrub_block *sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100244static void scrub_remap_extent(struct btrfs_fs_info *fs_info,
245 u64 extent_logical, u64 extent_len,
246 u64 *extent_physical,
247 struct btrfs_device **extent_dev,
248 int *extent_mirror_num);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100249static int scrub_add_page_to_wr_bio(struct scrub_ctx *sctx,
250 struct scrub_page *spage);
251static void scrub_wr_submit(struct scrub_ctx *sctx);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200252static void scrub_wr_bio_end_io(struct bio *bio);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100253static void scrub_wr_bio_end_io_worker(struct btrfs_work *work);
Wang Shilongcb7ab022013-12-04 21:16:53 +0800254static void __scrub_blocked_if_needed(struct btrfs_fs_info *fs_info);
Wang Shilong3cb09292013-12-04 21:15:19 +0800255static void scrub_blocked_if_needed(struct btrfs_fs_info *fs_info);
Filipe Mananaf55985f2015-02-09 21:14:24 +0000256static void scrub_put_ctx(struct scrub_ctx *sctx);
Stefan Behrens1623ede2012-03-27 14:21:26 -0400257
Liu Bo762221f2018-01-02 13:36:42 -0700258static inline int scrub_is_page_on_raid56(struct scrub_page *page)
259{
260 return page->recover &&
261 (page->recover->bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK);
262}
Stefan Behrens1623ede2012-03-27 14:21:26 -0400263
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100264static void scrub_pending_bio_inc(struct scrub_ctx *sctx)
265{
Elena Reshetova99f4cdb2017-03-03 10:55:25 +0200266 refcount_inc(&sctx->refs);
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100267 atomic_inc(&sctx->bios_in_flight);
268}
269
270static void scrub_pending_bio_dec(struct scrub_ctx *sctx)
271{
272 atomic_dec(&sctx->bios_in_flight);
273 wake_up(&sctx->list_wait);
Filipe Mananaf55985f2015-02-09 21:14:24 +0000274 scrub_put_ctx(sctx);
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100275}
276
Wang Shilongcb7ab022013-12-04 21:16:53 +0800277static void __scrub_blocked_if_needed(struct btrfs_fs_info *fs_info)
Wang Shilong3cb09292013-12-04 21:15:19 +0800278{
279 while (atomic_read(&fs_info->scrub_pause_req)) {
280 mutex_unlock(&fs_info->scrub_lock);
281 wait_event(fs_info->scrub_pause_wait,
282 atomic_read(&fs_info->scrub_pause_req) == 0);
283 mutex_lock(&fs_info->scrub_lock);
284 }
285}
286
Zhaolei0e22be82015-08-05 16:43:28 +0800287static void scrub_pause_on(struct btrfs_fs_info *fs_info)
Wang Shilongcb7ab022013-12-04 21:16:53 +0800288{
289 atomic_inc(&fs_info->scrubs_paused);
290 wake_up(&fs_info->scrub_pause_wait);
Zhaolei0e22be82015-08-05 16:43:28 +0800291}
Wang Shilongcb7ab022013-12-04 21:16:53 +0800292
Zhaolei0e22be82015-08-05 16:43:28 +0800293static void scrub_pause_off(struct btrfs_fs_info *fs_info)
294{
Wang Shilongcb7ab022013-12-04 21:16:53 +0800295 mutex_lock(&fs_info->scrub_lock);
296 __scrub_blocked_if_needed(fs_info);
297 atomic_dec(&fs_info->scrubs_paused);
298 mutex_unlock(&fs_info->scrub_lock);
299
300 wake_up(&fs_info->scrub_pause_wait);
301}
302
Zhaolei0e22be82015-08-05 16:43:28 +0800303static void scrub_blocked_if_needed(struct btrfs_fs_info *fs_info)
304{
305 scrub_pause_on(fs_info);
306 scrub_pause_off(fs_info);
307}
308
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100309/*
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800310 * Insert new full stripe lock into full stripe locks tree
311 *
312 * Return pointer to existing or newly inserted full_stripe_lock structure if
313 * everything works well.
314 * Return ERR_PTR(-ENOMEM) if we failed to allocate memory
315 *
316 * NOTE: caller must hold full_stripe_locks_root->lock before calling this
317 * function
318 */
319static struct full_stripe_lock *insert_full_stripe_lock(
320 struct btrfs_full_stripe_locks_tree *locks_root,
321 u64 fstripe_logical)
322{
323 struct rb_node **p;
324 struct rb_node *parent = NULL;
325 struct full_stripe_lock *entry;
326 struct full_stripe_lock *ret;
327
David Sterbaa32bf9a2018-03-16 02:21:22 +0100328 lockdep_assert_held(&locks_root->lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800329
330 p = &locks_root->root.rb_node;
331 while (*p) {
332 parent = *p;
333 entry = rb_entry(parent, struct full_stripe_lock, node);
334 if (fstripe_logical < entry->logical) {
335 p = &(*p)->rb_left;
336 } else if (fstripe_logical > entry->logical) {
337 p = &(*p)->rb_right;
338 } else {
339 entry->refs++;
340 return entry;
341 }
342 }
343
Filipe Mananaa5fb1142018-11-26 20:07:17 +0000344 /*
345 * Insert new lock.
Filipe Mananaa5fb1142018-11-26 20:07:17 +0000346 */
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800347 ret = kmalloc(sizeof(*ret), GFP_KERNEL);
348 if (!ret)
349 return ERR_PTR(-ENOMEM);
350 ret->logical = fstripe_logical;
351 ret->refs = 1;
352 mutex_init(&ret->mutex);
353
354 rb_link_node(&ret->node, parent, p);
355 rb_insert_color(&ret->node, &locks_root->root);
356 return ret;
357}
358
359/*
360 * Search for a full stripe lock of a block group
361 *
362 * Return pointer to existing full stripe lock if found
363 * Return NULL if not found
364 */
365static struct full_stripe_lock *search_full_stripe_lock(
366 struct btrfs_full_stripe_locks_tree *locks_root,
367 u64 fstripe_logical)
368{
369 struct rb_node *node;
370 struct full_stripe_lock *entry;
371
David Sterbaa32bf9a2018-03-16 02:21:22 +0100372 lockdep_assert_held(&locks_root->lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800373
374 node = locks_root->root.rb_node;
375 while (node) {
376 entry = rb_entry(node, struct full_stripe_lock, node);
377 if (fstripe_logical < entry->logical)
378 node = node->rb_left;
379 else if (fstripe_logical > entry->logical)
380 node = node->rb_right;
381 else
382 return entry;
383 }
384 return NULL;
385}
386
387/*
388 * Helper to get full stripe logical from a normal bytenr.
389 *
390 * Caller must ensure @cache is a RAID56 block group.
391 */
David Sterba32da53862019-10-29 19:20:18 +0100392static u64 get_full_stripe_logical(struct btrfs_block_group *cache, u64 bytenr)
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800393{
394 u64 ret;
395
396 /*
397 * Due to chunk item size limit, full stripe length should not be
398 * larger than U32_MAX. Just a sanity check here.
399 */
400 WARN_ON_ONCE(cache->full_stripe_len >= U32_MAX);
401
402 /*
403 * round_down() can only handle power of 2, while RAID56 full
404 * stripe length can be 64KiB * n, so we need to manually round down.
405 */
David Sterbab3470b52019-10-23 18:48:22 +0200406 ret = div64_u64(bytenr - cache->start, cache->full_stripe_len) *
407 cache->full_stripe_len + cache->start;
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800408 return ret;
409}
410
411/*
412 * Lock a full stripe to avoid concurrency of recovery and read
413 *
414 * It's only used for profiles with parities (RAID5/6), for other profiles it
415 * does nothing.
416 *
417 * Return 0 if we locked full stripe covering @bytenr, with a mutex held.
418 * So caller must call unlock_full_stripe() at the same context.
419 *
420 * Return <0 if encounters error.
421 */
422static int lock_full_stripe(struct btrfs_fs_info *fs_info, u64 bytenr,
423 bool *locked_ret)
424{
David Sterba32da53862019-10-29 19:20:18 +0100425 struct btrfs_block_group *bg_cache;
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800426 struct btrfs_full_stripe_locks_tree *locks_root;
427 struct full_stripe_lock *existing;
428 u64 fstripe_start;
429 int ret = 0;
430
431 *locked_ret = false;
432 bg_cache = btrfs_lookup_block_group(fs_info, bytenr);
433 if (!bg_cache) {
434 ASSERT(0);
435 return -ENOENT;
436 }
437
438 /* Profiles not based on parity don't need full stripe lock */
439 if (!(bg_cache->flags & BTRFS_BLOCK_GROUP_RAID56_MASK))
440 goto out;
441 locks_root = &bg_cache->full_stripe_locks_root;
442
443 fstripe_start = get_full_stripe_logical(bg_cache, bytenr);
444
445 /* Now insert the full stripe lock */
446 mutex_lock(&locks_root->lock);
447 existing = insert_full_stripe_lock(locks_root, fstripe_start);
448 mutex_unlock(&locks_root->lock);
449 if (IS_ERR(existing)) {
450 ret = PTR_ERR(existing);
451 goto out;
452 }
453 mutex_lock(&existing->mutex);
454 *locked_ret = true;
455out:
456 btrfs_put_block_group(bg_cache);
457 return ret;
458}
459
460/*
461 * Unlock a full stripe.
462 *
463 * NOTE: Caller must ensure it's the same context calling corresponding
464 * lock_full_stripe().
465 *
466 * Return 0 if we unlock full stripe without problem.
467 * Return <0 for error
468 */
469static int unlock_full_stripe(struct btrfs_fs_info *fs_info, u64 bytenr,
470 bool locked)
471{
David Sterba32da53862019-10-29 19:20:18 +0100472 struct btrfs_block_group *bg_cache;
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800473 struct btrfs_full_stripe_locks_tree *locks_root;
474 struct full_stripe_lock *fstripe_lock;
475 u64 fstripe_start;
476 bool freeit = false;
477 int ret = 0;
478
479 /* If we didn't acquire full stripe lock, no need to continue */
480 if (!locked)
481 return 0;
482
483 bg_cache = btrfs_lookup_block_group(fs_info, bytenr);
484 if (!bg_cache) {
485 ASSERT(0);
486 return -ENOENT;
487 }
488 if (!(bg_cache->flags & BTRFS_BLOCK_GROUP_RAID56_MASK))
489 goto out;
490
491 locks_root = &bg_cache->full_stripe_locks_root;
492 fstripe_start = get_full_stripe_logical(bg_cache, bytenr);
493
494 mutex_lock(&locks_root->lock);
495 fstripe_lock = search_full_stripe_lock(locks_root, fstripe_start);
496 /* Unpaired unlock_full_stripe() detected */
497 if (!fstripe_lock) {
498 WARN_ON(1);
499 ret = -ENOENT;
500 mutex_unlock(&locks_root->lock);
501 goto out;
502 }
503
504 if (fstripe_lock->refs == 0) {
505 WARN_ON(1);
506 btrfs_warn(fs_info, "full stripe lock at %llu refcount underflow",
507 fstripe_lock->logical);
508 } else {
509 fstripe_lock->refs--;
510 }
511
512 if (fstripe_lock->refs == 0) {
513 rb_erase(&fstripe_lock->node, &locks_root->root);
514 freeit = true;
515 }
516 mutex_unlock(&locks_root->lock);
517
518 mutex_unlock(&fstripe_lock->mutex);
519 if (freeit)
520 kfree(fstripe_lock);
521out:
522 btrfs_put_block_group(bg_cache);
523 return ret;
524}
525
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100526static void scrub_free_csums(struct scrub_ctx *sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100527{
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100528 while (!list_empty(&sctx->csum_list)) {
Arne Jansena2de7332011-03-08 14:14:00 +0100529 struct btrfs_ordered_sum *sum;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100530 sum = list_first_entry(&sctx->csum_list,
Arne Jansena2de7332011-03-08 14:14:00 +0100531 struct btrfs_ordered_sum, list);
532 list_del(&sum->list);
533 kfree(sum);
534 }
535}
536
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100537static noinline_for_stack void scrub_free_ctx(struct scrub_ctx *sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100538{
539 int i;
Arne Jansena2de7332011-03-08 14:14:00 +0100540
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100541 if (!sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100542 return;
543
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400544 /* this can happen when scrub is cancelled */
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100545 if (sctx->curr != -1) {
546 struct scrub_bio *sbio = sctx->bios[sctx->curr];
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400547
548 for (i = 0; i < sbio->page_count; i++) {
Stefan Behrensff023aa2012-11-06 11:43:11 +0100549 WARN_ON(!sbio->pagev[i]->page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400550 scrub_block_put(sbio->pagev[i]->sblock);
551 }
552 bio_put(sbio->bio);
553 }
554
Stefan Behrensff023aa2012-11-06 11:43:11 +0100555 for (i = 0; i < SCRUB_BIOS_PER_SCTX; ++i) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100556 struct scrub_bio *sbio = sctx->bios[i];
Arne Jansena2de7332011-03-08 14:14:00 +0100557
558 if (!sbio)
559 break;
Arne Jansena2de7332011-03-08 14:14:00 +0100560 kfree(sbio);
561 }
562
David Sterba3fb99302017-05-16 19:10:32 +0200563 kfree(sctx->wr_curr_bio);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100564 scrub_free_csums(sctx);
565 kfree(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +0100566}
567
Filipe Mananaf55985f2015-02-09 21:14:24 +0000568static void scrub_put_ctx(struct scrub_ctx *sctx)
569{
Elena Reshetova99f4cdb2017-03-03 10:55:25 +0200570 if (refcount_dec_and_test(&sctx->refs))
Filipe Mananaf55985f2015-02-09 21:14:24 +0000571 scrub_free_ctx(sctx);
572}
573
David Sterba92f7ba42018-12-04 16:11:55 +0100574static noinline_for_stack struct scrub_ctx *scrub_setup_ctx(
575 struct btrfs_fs_info *fs_info, int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +0100576{
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100577 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +0100578 int i;
Arne Jansena2de7332011-03-08 14:14:00 +0100579
David Sterba58c4e172016-02-11 10:49:42 +0100580 sctx = kzalloc(sizeof(*sctx), GFP_KERNEL);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100581 if (!sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100582 goto nomem;
Elena Reshetova99f4cdb2017-03-03 10:55:25 +0200583 refcount_set(&sctx->refs, 1);
Stefan Behrens63a212a2012-11-05 18:29:28 +0100584 sctx->is_dev_replace = is_dev_replace;
Kent Overstreetb54ffb72015-05-19 14:31:01 +0200585 sctx->pages_per_rd_bio = SCRUB_PAGES_PER_RD_BIO;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100586 sctx->curr = -1;
David Sterba92f7ba42018-12-04 16:11:55 +0100587 sctx->fs_info = fs_info;
Dan Robertsone49be142019-02-19 02:56:43 +0000588 INIT_LIST_HEAD(&sctx->csum_list);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100589 for (i = 0; i < SCRUB_BIOS_PER_SCTX; ++i) {
Arne Jansena2de7332011-03-08 14:14:00 +0100590 struct scrub_bio *sbio;
591
David Sterba58c4e172016-02-11 10:49:42 +0100592 sbio = kzalloc(sizeof(*sbio), GFP_KERNEL);
Arne Jansena2de7332011-03-08 14:14:00 +0100593 if (!sbio)
594 goto nomem;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100595 sctx->bios[i] = sbio;
Arne Jansena2de7332011-03-08 14:14:00 +0100596
Arne Jansena2de7332011-03-08 14:14:00 +0100597 sbio->index = i;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100598 sbio->sctx = sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400599 sbio->page_count = 0;
Omar Sandovala0cac0e2019-09-16 11:30:57 -0700600 btrfs_init_work(&sbio->work, scrub_bio_end_io_worker, NULL,
601 NULL);
Arne Jansena2de7332011-03-08 14:14:00 +0100602
Stefan Behrensff023aa2012-11-06 11:43:11 +0100603 if (i != SCRUB_BIOS_PER_SCTX - 1)
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100604 sctx->bios[i]->next_free = i + 1;
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200605 else
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100606 sctx->bios[i]->next_free = -1;
Arne Jansena2de7332011-03-08 14:14:00 +0100607 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100608 sctx->first_free = 0;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100609 atomic_set(&sctx->bios_in_flight, 0);
610 atomic_set(&sctx->workers_pending, 0);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100611 atomic_set(&sctx->cancel_req, 0);
612 sctx->csum_size = btrfs_super_csum_size(fs_info->super_copy);
Arne Jansena2de7332011-03-08 14:14:00 +0100613
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100614 spin_lock_init(&sctx->list_lock);
615 spin_lock_init(&sctx->stat_lock);
616 init_waitqueue_head(&sctx->list_wait);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100617
David Sterba3fb99302017-05-16 19:10:32 +0200618 WARN_ON(sctx->wr_curr_bio != NULL);
619 mutex_init(&sctx->wr_lock);
620 sctx->wr_curr_bio = NULL;
David Sterba8fcdac32017-05-16 19:10:23 +0200621 if (is_dev_replace) {
David Sterbaded56182017-06-26 15:19:00 +0200622 WARN_ON(!fs_info->dev_replace.tgtdev);
David Sterba3fb99302017-05-16 19:10:32 +0200623 sctx->pages_per_wr_bio = SCRUB_PAGES_PER_WR_BIO;
David Sterbaded56182017-06-26 15:19:00 +0200624 sctx->wr_tgtdev = fs_info->dev_replace.tgtdev;
David Sterba2073c4c2017-03-31 17:12:51 +0200625 sctx->flush_all_writes = false;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100626 }
David Sterba8fcdac32017-05-16 19:10:23 +0200627
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100628 return sctx;
Arne Jansena2de7332011-03-08 14:14:00 +0100629
630nomem:
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100631 scrub_free_ctx(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +0100632 return ERR_PTR(-ENOMEM);
633}
634
Stefan Behrensff023aa2012-11-06 11:43:11 +0100635static int scrub_print_warning_inode(u64 inum, u64 offset, u64 root,
636 void *warn_ctx)
Jan Schmidt558540c2011-06-13 19:59:12 +0200637{
638 u64 isize;
639 u32 nlink;
640 int ret;
641 int i;
David Sterbade2491f2017-05-31 19:21:38 +0200642 unsigned nofs_flag;
Jan Schmidt558540c2011-06-13 19:59:12 +0200643 struct extent_buffer *eb;
644 struct btrfs_inode_item *inode_item;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100645 struct scrub_warning *swarn = warn_ctx;
Jeff Mahoneyfb456252016-06-22 18:54:56 -0400646 struct btrfs_fs_info *fs_info = swarn->dev->fs_info;
Jan Schmidt558540c2011-06-13 19:59:12 +0200647 struct inode_fs_paths *ipath = NULL;
648 struct btrfs_root *local_root;
649 struct btrfs_key root_key;
David Sterba1d4c08e2015-01-02 19:36:14 +0100650 struct btrfs_key key;
Jan Schmidt558540c2011-06-13 19:59:12 +0200651
652 root_key.objectid = root;
653 root_key.type = BTRFS_ROOT_ITEM_KEY;
654 root_key.offset = (u64)-1;
655 local_root = btrfs_read_fs_root_no_name(fs_info, &root_key);
656 if (IS_ERR(local_root)) {
657 ret = PTR_ERR(local_root);
658 goto err;
659 }
660
David Sterba14692cc2015-01-02 18:55:46 +0100661 /*
662 * this makes the path point to (inum INODE_ITEM ioff)
663 */
David Sterba1d4c08e2015-01-02 19:36:14 +0100664 key.objectid = inum;
665 key.type = BTRFS_INODE_ITEM_KEY;
666 key.offset = 0;
667
668 ret = btrfs_search_slot(NULL, local_root, &key, swarn->path, 0, 0);
Jan Schmidt558540c2011-06-13 19:59:12 +0200669 if (ret) {
670 btrfs_release_path(swarn->path);
671 goto err;
672 }
673
674 eb = swarn->path->nodes[0];
675 inode_item = btrfs_item_ptr(eb, swarn->path->slots[0],
676 struct btrfs_inode_item);
677 isize = btrfs_inode_size(eb, inode_item);
678 nlink = btrfs_inode_nlink(eb, inode_item);
679 btrfs_release_path(swarn->path);
680
David Sterbade2491f2017-05-31 19:21:38 +0200681 /*
682 * init_path might indirectly call vmalloc, or use GFP_KERNEL. Scrub
683 * uses GFP_NOFS in this context, so we keep it consistent but it does
684 * not seem to be strictly necessary.
685 */
686 nofs_flag = memalloc_nofs_save();
Jan Schmidt558540c2011-06-13 19:59:12 +0200687 ipath = init_ipath(4096, local_root, swarn->path);
David Sterbade2491f2017-05-31 19:21:38 +0200688 memalloc_nofs_restore(nofs_flag);
Dan Carpenter26bdef52011-11-16 11:28:01 +0300689 if (IS_ERR(ipath)) {
690 ret = PTR_ERR(ipath);
691 ipath = NULL;
692 goto err;
693 }
Jan Schmidt558540c2011-06-13 19:59:12 +0200694 ret = paths_from_inode(inum, ipath);
695
696 if (ret < 0)
697 goto err;
698
699 /*
700 * we deliberately ignore the bit ipath might have been too small to
701 * hold all of the paths here
702 */
703 for (i = 0; i < ipath->fspath->elem_cnt; ++i)
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400704 btrfs_warn_in_rcu(fs_info,
David Sterba6aa21262017-10-04 17:07:07 +0200705"%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 -0400706 swarn->errstr, swarn->logical,
707 rcu_str_deref(swarn->dev->name),
David Sterba6aa21262017-10-04 17:07:07 +0200708 swarn->physical,
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400709 root, inum, offset,
710 min(isize - offset, (u64)PAGE_SIZE), nlink,
711 (char *)(unsigned long)ipath->fspath->val[i]);
Jan Schmidt558540c2011-06-13 19:59:12 +0200712
713 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);
1619 if (spage->io_error) {
1620 void *mapped_buffer = kmap_atomic(spage->page);
1621
David Sterba619a9742017-03-29 20:48:44 +02001622 clear_page(mapped_buffer);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001623 flush_dcache_page(spage->page);
1624 kunmap_atomic(mapped_buffer);
1625 }
1626 return scrub_add_page_to_wr_bio(sblock->sctx, spage);
1627}
1628
1629static int scrub_add_page_to_wr_bio(struct scrub_ctx *sctx,
1630 struct scrub_page *spage)
1631{
Stefan Behrensff023aa2012-11-06 11:43:11 +01001632 struct scrub_bio *sbio;
1633 int ret;
1634
David Sterba3fb99302017-05-16 19:10:32 +02001635 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001636again:
David Sterba3fb99302017-05-16 19:10:32 +02001637 if (!sctx->wr_curr_bio) {
1638 sctx->wr_curr_bio = kzalloc(sizeof(*sctx->wr_curr_bio),
David Sterba58c4e172016-02-11 10:49:42 +01001639 GFP_KERNEL);
David Sterba3fb99302017-05-16 19:10:32 +02001640 if (!sctx->wr_curr_bio) {
1641 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001642 return -ENOMEM;
1643 }
David Sterba3fb99302017-05-16 19:10:32 +02001644 sctx->wr_curr_bio->sctx = sctx;
1645 sctx->wr_curr_bio->page_count = 0;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001646 }
David Sterba3fb99302017-05-16 19:10:32 +02001647 sbio = sctx->wr_curr_bio;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001648 if (sbio->page_count == 0) {
1649 struct bio *bio;
1650
1651 sbio->physical = spage->physical_for_dev_replace;
1652 sbio->logical = spage->logical;
David Sterba3fb99302017-05-16 19:10:32 +02001653 sbio->dev = sctx->wr_tgtdev;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001654 bio = sbio->bio;
1655 if (!bio) {
David Sterbac5e4c3d2017-06-12 17:29:41 +02001656 bio = btrfs_io_bio_alloc(sctx->pages_per_wr_bio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001657 sbio->bio = bio;
1658 }
1659
1660 bio->bi_private = sbio;
1661 bio->bi_end_io = scrub_wr_bio_end_io;
Christoph Hellwig74d46992017-08-23 19:10:32 +02001662 bio_set_dev(bio, sbio->dev->bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001663 bio->bi_iter.bi_sector = sbio->physical >> 9;
David Sterbaebcc3262018-06-29 10:56:53 +02001664 bio->bi_opf = REQ_OP_WRITE;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001665 sbio->status = 0;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001666 } else if (sbio->physical + sbio->page_count * PAGE_SIZE !=
1667 spage->physical_for_dev_replace ||
1668 sbio->logical + sbio->page_count * PAGE_SIZE !=
1669 spage->logical) {
1670 scrub_wr_submit(sctx);
1671 goto again;
1672 }
1673
1674 ret = bio_add_page(sbio->bio, spage->page, PAGE_SIZE, 0);
1675 if (ret != PAGE_SIZE) {
1676 if (sbio->page_count < 1) {
1677 bio_put(sbio->bio);
1678 sbio->bio = NULL;
David Sterba3fb99302017-05-16 19:10:32 +02001679 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001680 return -EIO;
1681 }
1682 scrub_wr_submit(sctx);
1683 goto again;
1684 }
1685
1686 sbio->pagev[sbio->page_count] = spage;
1687 scrub_page_get(spage);
1688 sbio->page_count++;
David Sterba3fb99302017-05-16 19:10:32 +02001689 if (sbio->page_count == sctx->pages_per_wr_bio)
Stefan Behrensff023aa2012-11-06 11:43:11 +01001690 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02001691 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001692
1693 return 0;
1694}
1695
1696static void scrub_wr_submit(struct scrub_ctx *sctx)
1697{
Stefan Behrensff023aa2012-11-06 11:43:11 +01001698 struct scrub_bio *sbio;
1699
David Sterba3fb99302017-05-16 19:10:32 +02001700 if (!sctx->wr_curr_bio)
Stefan Behrensff023aa2012-11-06 11:43:11 +01001701 return;
1702
David Sterba3fb99302017-05-16 19:10:32 +02001703 sbio = sctx->wr_curr_bio;
1704 sctx->wr_curr_bio = NULL;
Christoph Hellwig74d46992017-08-23 19:10:32 +02001705 WARN_ON(!sbio->bio->bi_disk);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001706 scrub_pending_bio_inc(sctx);
1707 /* process all writes in a single worker thread. Then the block layer
1708 * orders the requests before sending them to the driver which
1709 * doubled the write performance on spinning disks when measured
1710 * with Linux 3.5 */
Mike Christie4e49ea42016-06-05 14:31:41 -05001711 btrfsic_submit_bio(sbio->bio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001712}
1713
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001714static void scrub_wr_bio_end_io(struct bio *bio)
Stefan Behrensff023aa2012-11-06 11:43:11 +01001715{
1716 struct scrub_bio *sbio = bio->bi_private;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001717 struct btrfs_fs_info *fs_info = sbio->dev->fs_info;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001718
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001719 sbio->status = bio->bi_status;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001720 sbio->bio = bio;
1721
Omar Sandovala0cac0e2019-09-16 11:30:57 -07001722 btrfs_init_work(&sbio->work, scrub_wr_bio_end_io_worker, NULL, NULL);
Qu Wenruo0339ef22014-02-28 10:46:17 +08001723 btrfs_queue_work(fs_info->scrub_wr_completion_workers, &sbio->work);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001724}
1725
1726static void scrub_wr_bio_end_io_worker(struct btrfs_work *work)
1727{
1728 struct scrub_bio *sbio = container_of(work, struct scrub_bio, work);
1729 struct scrub_ctx *sctx = sbio->sctx;
1730 int i;
1731
1732 WARN_ON(sbio->page_count > SCRUB_PAGES_PER_WR_BIO);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001733 if (sbio->status) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01001734 struct btrfs_dev_replace *dev_replace =
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001735 &sbio->sctx->fs_info->dev_replace;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001736
1737 for (i = 0; i < sbio->page_count; i++) {
1738 struct scrub_page *spage = sbio->pagev[i];
1739
1740 spage->io_error = 1;
David Sterbae37abe92018-04-04 17:20:52 +02001741 atomic64_inc(&dev_replace->num_write_errors);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001742 }
1743 }
1744
1745 for (i = 0; i < sbio->page_count; i++)
1746 scrub_page_put(sbio->pagev[i]);
1747
1748 bio_put(sbio->bio);
1749 kfree(sbio);
1750 scrub_pending_bio_dec(sctx);
1751}
1752
1753static int scrub_checksum(struct scrub_block *sblock)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001754{
1755 u64 flags;
1756 int ret;
1757
Zhao Leiba7cf982015-08-24 21:18:02 +08001758 /*
1759 * No need to initialize these stats currently,
1760 * because this function only use return value
1761 * instead of these stats value.
1762 *
1763 * Todo:
1764 * always use stats
1765 */
1766 sblock->header_error = 0;
1767 sblock->generation_error = 0;
1768 sblock->checksum_error = 0;
1769
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001770 WARN_ON(sblock->page_count < 1);
1771 flags = sblock->pagev[0]->flags;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001772 ret = 0;
1773 if (flags & BTRFS_EXTENT_FLAG_DATA)
1774 ret = scrub_checksum_data(sblock);
1775 else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)
1776 ret = scrub_checksum_tree_block(sblock);
1777 else if (flags & BTRFS_EXTENT_FLAG_SUPER)
1778 (void)scrub_checksum_super(sblock);
1779 else
1780 WARN_ON(1);
1781 if (ret)
1782 scrub_handle_errored_block(sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001783
1784 return ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001785}
1786
1787static int scrub_checksum_data(struct scrub_block *sblock)
1788{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001789 struct scrub_ctx *sctx = sblock->sctx;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001790 struct btrfs_fs_info *fs_info = sctx->fs_info;
1791 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Arne Jansena2de7332011-03-08 14:14:00 +01001792 u8 csum[BTRFS_CSUM_SIZE];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001793 u8 *on_disk_csum;
1794 struct page *page;
1795 void *buffer;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001796 u64 len;
1797 int index;
Arne Jansena2de7332011-03-08 14:14:00 +01001798
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001799 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001800 if (!sblock->pagev[0]->have_csum)
Arne Jansena2de7332011-03-08 14:14:00 +01001801 return 0;
1802
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001803 shash->tfm = fs_info->csum_shash;
1804 crypto_shash_init(shash);
1805
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001806 on_disk_csum = sblock->pagev[0]->csum;
1807 page = sblock->pagev[0]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001808 buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001809
David Sterba25cc1222017-05-16 19:10:41 +02001810 len = sctx->fs_info->sectorsize;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001811 index = 0;
1812 for (;;) {
1813 u64 l = min_t(u64, len, PAGE_SIZE);
1814
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001815 crypto_shash_update(shash, buffer, l);
Linus Torvalds9613beb2012-03-30 12:44:29 -07001816 kunmap_atomic(buffer);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001817 len -= l;
1818 if (len == 0)
1819 break;
1820 index++;
1821 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001822 BUG_ON(!sblock->pagev[index]->page);
1823 page = sblock->pagev[index]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001824 buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001825 }
1826
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001827 crypto_shash_final(shash, csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001828 if (memcmp(csum, on_disk_csum, sctx->csum_size))
Zhao Leiba7cf982015-08-24 21:18:02 +08001829 sblock->checksum_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001830
Zhao Leiba7cf982015-08-24 21:18:02 +08001831 return sblock->checksum_error;
Arne Jansena2de7332011-03-08 14:14:00 +01001832}
1833
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001834static int scrub_checksum_tree_block(struct scrub_block *sblock)
Arne Jansena2de7332011-03-08 14:14:00 +01001835{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001836 struct scrub_ctx *sctx = sblock->sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01001837 struct btrfs_header *h;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001838 struct btrfs_fs_info *fs_info = sctx->fs_info;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001839 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001840 u8 calculated_csum[BTRFS_CSUM_SIZE];
1841 u8 on_disk_csum[BTRFS_CSUM_SIZE];
1842 struct page *page;
1843 void *mapped_buffer;
1844 u64 mapped_size;
1845 void *p;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001846 u64 len;
1847 int index;
1848
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001849 shash->tfm = fs_info->csum_shash;
1850 crypto_shash_init(shash);
1851
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001852 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001853 page = sblock->pagev[0]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001854 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001855 h = (struct btrfs_header *)mapped_buffer;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001856 memcpy(on_disk_csum, h->csum, sctx->csum_size);
Arne Jansena2de7332011-03-08 14:14:00 +01001857
1858 /*
1859 * we don't use the getter functions here, as we
1860 * a) don't have an extent buffer and
1861 * b) the page is already kmapped
1862 */
Qu Wenruo3cae2102013-07-16 11:19:18 +08001863 if (sblock->pagev[0]->logical != btrfs_stack_header_bytenr(h))
Zhao Leiba7cf982015-08-24 21:18:02 +08001864 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001865
Zhao Leiba7cf982015-08-24 21:18:02 +08001866 if (sblock->pagev[0]->generation != btrfs_stack_header_generation(h)) {
1867 sblock->header_error = 1;
1868 sblock->generation_error = 1;
1869 }
Arne Jansena2de7332011-03-08 14:14:00 +01001870
Miao Xie17a9be22014-07-24 11:37:08 +08001871 if (!scrub_check_fsid(h->fsid, sblock->pagev[0]))
Zhao Leiba7cf982015-08-24 21:18:02 +08001872 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001873
1874 if (memcmp(h->chunk_tree_uuid, fs_info->chunk_tree_uuid,
1875 BTRFS_UUID_SIZE))
Zhao Leiba7cf982015-08-24 21:18:02 +08001876 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001877
David Sterba25cc1222017-05-16 19:10:41 +02001878 len = sctx->fs_info->nodesize - BTRFS_CSUM_SIZE;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001879 mapped_size = PAGE_SIZE - BTRFS_CSUM_SIZE;
1880 p = ((u8 *)mapped_buffer) + BTRFS_CSUM_SIZE;
1881 index = 0;
1882 for (;;) {
1883 u64 l = min_t(u64, len, mapped_size);
1884
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001885 crypto_shash_update(shash, p, l);
Linus Torvalds9613beb2012-03-30 12:44:29 -07001886 kunmap_atomic(mapped_buffer);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001887 len -= l;
1888 if (len == 0)
1889 break;
1890 index++;
1891 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001892 BUG_ON(!sblock->pagev[index]->page);
1893 page = sblock->pagev[index]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001894 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001895 mapped_size = PAGE_SIZE;
1896 p = mapped_buffer;
1897 }
1898
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001899 crypto_shash_final(shash, calculated_csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001900 if (memcmp(calculated_csum, on_disk_csum, sctx->csum_size))
Zhao Leiba7cf982015-08-24 21:18:02 +08001901 sblock->checksum_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001902
Zhao Leiba7cf982015-08-24 21:18:02 +08001903 return sblock->header_error || sblock->checksum_error;
Arne Jansena2de7332011-03-08 14:14:00 +01001904}
1905
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001906static int scrub_checksum_super(struct scrub_block *sblock)
Arne Jansena2de7332011-03-08 14:14:00 +01001907{
1908 struct btrfs_super_block *s;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001909 struct scrub_ctx *sctx = sblock->sctx;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001910 struct btrfs_fs_info *fs_info = sctx->fs_info;
1911 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001912 u8 calculated_csum[BTRFS_CSUM_SIZE];
1913 u8 on_disk_csum[BTRFS_CSUM_SIZE];
1914 struct page *page;
1915 void *mapped_buffer;
1916 u64 mapped_size;
1917 void *p;
Stefan Behrens442a4f62012-05-25 16:06:08 +02001918 int fail_gen = 0;
1919 int fail_cor = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001920 u64 len;
1921 int index;
Arne Jansena2de7332011-03-08 14:14:00 +01001922
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001923 shash->tfm = fs_info->csum_shash;
1924 crypto_shash_init(shash);
1925
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001926 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001927 page = sblock->pagev[0]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001928 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001929 s = (struct btrfs_super_block *)mapped_buffer;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001930 memcpy(on_disk_csum, s->csum, sctx->csum_size);
Arne Jansena2de7332011-03-08 14:14:00 +01001931
Qu Wenruo3cae2102013-07-16 11:19:18 +08001932 if (sblock->pagev[0]->logical != btrfs_super_bytenr(s))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001933 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001934
Qu Wenruo3cae2102013-07-16 11:19:18 +08001935 if (sblock->pagev[0]->generation != btrfs_super_generation(s))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001936 ++fail_gen;
Arne Jansena2de7332011-03-08 14:14:00 +01001937
Miao Xie17a9be22014-07-24 11:37:08 +08001938 if (!scrub_check_fsid(s->fsid, sblock->pagev[0]))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001939 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001940
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001941 len = BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE;
1942 mapped_size = PAGE_SIZE - BTRFS_CSUM_SIZE;
1943 p = ((u8 *)mapped_buffer) + BTRFS_CSUM_SIZE;
1944 index = 0;
1945 for (;;) {
1946 u64 l = min_t(u64, len, mapped_size);
1947
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001948 crypto_shash_update(shash, p, l);
Linus Torvalds9613beb2012-03-30 12:44:29 -07001949 kunmap_atomic(mapped_buffer);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001950 len -= l;
1951 if (len == 0)
1952 break;
1953 index++;
1954 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001955 BUG_ON(!sblock->pagev[index]->page);
1956 page = sblock->pagev[index]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001957 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001958 mapped_size = PAGE_SIZE;
1959 p = mapped_buffer;
1960 }
1961
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001962 crypto_shash_final(shash, calculated_csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001963 if (memcmp(calculated_csum, on_disk_csum, sctx->csum_size))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001964 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001965
Stefan Behrens442a4f62012-05-25 16:06:08 +02001966 if (fail_cor + fail_gen) {
Arne Jansena2de7332011-03-08 14:14:00 +01001967 /*
1968 * if we find an error in a super block, we just report it.
1969 * They will get written with the next transaction commit
1970 * anyway
1971 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001972 spin_lock(&sctx->stat_lock);
1973 ++sctx->stat.super_errors;
1974 spin_unlock(&sctx->stat_lock);
Stefan Behrens442a4f62012-05-25 16:06:08 +02001975 if (fail_cor)
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001976 btrfs_dev_stat_inc_and_print(sblock->pagev[0]->dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +02001977 BTRFS_DEV_STAT_CORRUPTION_ERRS);
1978 else
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001979 btrfs_dev_stat_inc_and_print(sblock->pagev[0]->dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +02001980 BTRFS_DEV_STAT_GENERATION_ERRS);
Arne Jansena2de7332011-03-08 14:14:00 +01001981 }
1982
Stefan Behrens442a4f62012-05-25 16:06:08 +02001983 return fail_cor + fail_gen;
Arne Jansena2de7332011-03-08 14:14:00 +01001984}
1985
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001986static void scrub_block_get(struct scrub_block *sblock)
1987{
Elena Reshetova186debd2017-03-03 10:55:23 +02001988 refcount_inc(&sblock->refs);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001989}
1990
1991static void scrub_block_put(struct scrub_block *sblock)
1992{
Elena Reshetova186debd2017-03-03 10:55:23 +02001993 if (refcount_dec_and_test(&sblock->refs)) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001994 int i;
1995
Miao Xie5a6ac9e2014-11-06 17:20:58 +08001996 if (sblock->sparity)
1997 scrub_parity_put(sblock->sparity);
1998
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001999 for (i = 0; i < sblock->page_count; i++)
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002000 scrub_page_put(sblock->pagev[i]);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002001 kfree(sblock);
2002 }
2003}
2004
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002005static void scrub_page_get(struct scrub_page *spage)
2006{
Zhao Lei57019342015-01-20 15:11:45 +08002007 atomic_inc(&spage->refs);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002008}
2009
2010static void scrub_page_put(struct scrub_page *spage)
2011{
Zhao Lei57019342015-01-20 15:11:45 +08002012 if (atomic_dec_and_test(&spage->refs)) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002013 if (spage->page)
2014 __free_page(spage->page);
2015 kfree(spage);
2016 }
2017}
2018
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002019static void scrub_submit(struct scrub_ctx *sctx)
Arne Jansena2de7332011-03-08 14:14:00 +01002020{
2021 struct scrub_bio *sbio;
2022
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002023 if (sctx->curr == -1)
Stefan Behrens1623ede2012-03-27 14:21:26 -04002024 return;
Arne Jansena2de7332011-03-08 14:14:00 +01002025
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002026 sbio = sctx->bios[sctx->curr];
2027 sctx->curr = -1;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002028 scrub_pending_bio_inc(sctx);
Mike Christie4e49ea42016-06-05 14:31:41 -05002029 btrfsic_submit_bio(sbio->bio);
Arne Jansena2de7332011-03-08 14:14:00 +01002030}
2031
Stefan Behrensff023aa2012-11-06 11:43:11 +01002032static int scrub_add_page_to_rd_bio(struct scrub_ctx *sctx,
2033 struct scrub_page *spage)
Arne Jansena2de7332011-03-08 14:14:00 +01002034{
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002035 struct scrub_block *sblock = spage->sblock;
Arne Jansena2de7332011-03-08 14:14:00 +01002036 struct scrub_bio *sbio;
Arne Jansen69f4cb52011-11-11 08:17:10 -05002037 int ret;
Arne Jansena2de7332011-03-08 14:14:00 +01002038
2039again:
2040 /*
2041 * grab a fresh bio or wait for one to become available
2042 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002043 while (sctx->curr == -1) {
2044 spin_lock(&sctx->list_lock);
2045 sctx->curr = sctx->first_free;
2046 if (sctx->curr != -1) {
2047 sctx->first_free = sctx->bios[sctx->curr]->next_free;
2048 sctx->bios[sctx->curr]->next_free = -1;
2049 sctx->bios[sctx->curr]->page_count = 0;
2050 spin_unlock(&sctx->list_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01002051 } else {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002052 spin_unlock(&sctx->list_lock);
2053 wait_event(sctx->list_wait, sctx->first_free != -1);
Arne Jansena2de7332011-03-08 14:14:00 +01002054 }
2055 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002056 sbio = sctx->bios[sctx->curr];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002057 if (sbio->page_count == 0) {
Arne Jansen69f4cb52011-11-11 08:17:10 -05002058 struct bio *bio;
2059
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002060 sbio->physical = spage->physical;
2061 sbio->logical = spage->logical;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002062 sbio->dev = spage->dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002063 bio = sbio->bio;
2064 if (!bio) {
David Sterbac5e4c3d2017-06-12 17:29:41 +02002065 bio = btrfs_io_bio_alloc(sctx->pages_per_rd_bio);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002066 sbio->bio = bio;
2067 }
Arne Jansen69f4cb52011-11-11 08:17:10 -05002068
2069 bio->bi_private = sbio;
2070 bio->bi_end_io = scrub_bio_end_io;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002071 bio_set_dev(bio, sbio->dev->bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002072 bio->bi_iter.bi_sector = sbio->physical >> 9;
David Sterbaebcc3262018-06-29 10:56:53 +02002073 bio->bi_opf = REQ_OP_READ;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002074 sbio->status = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002075 } else if (sbio->physical + sbio->page_count * PAGE_SIZE !=
2076 spage->physical ||
2077 sbio->logical + sbio->page_count * PAGE_SIZE !=
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002078 spage->logical ||
2079 sbio->dev != spage->dev) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002080 scrub_submit(sctx);
Arne Jansen69f4cb52011-11-11 08:17:10 -05002081 goto again;
2082 }
2083
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002084 sbio->pagev[sbio->page_count] = spage;
2085 ret = bio_add_page(sbio->bio, spage->page, PAGE_SIZE, 0);
2086 if (ret != PAGE_SIZE) {
2087 if (sbio->page_count < 1) {
2088 bio_put(sbio->bio);
2089 sbio->bio = NULL;
2090 return -EIO;
2091 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002092 scrub_submit(sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002093 goto again;
Arne Jansena2de7332011-03-08 14:14:00 +01002094 }
Arne Jansen1bc87792011-05-28 21:57:55 +02002095
Stefan Behrensff023aa2012-11-06 11:43:11 +01002096 scrub_block_get(sblock); /* one for the page added to the bio */
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002097 atomic_inc(&sblock->outstanding_pages);
2098 sbio->page_count++;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002099 if (sbio->page_count == sctx->pages_per_rd_bio)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002100 scrub_submit(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01002101
2102 return 0;
2103}
2104
Linus Torvalds22365972015-09-05 15:14:43 -07002105static void scrub_missing_raid56_end_io(struct bio *bio)
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002106{
2107 struct scrub_block *sblock = bio->bi_private;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002108 struct btrfs_fs_info *fs_info = sblock->sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002109
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002110 if (bio->bi_status)
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002111 sblock->no_io_error_seen = 0;
2112
Scott Talbert46732722016-05-09 09:14:28 -04002113 bio_put(bio);
2114
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002115 btrfs_queue_work(fs_info->scrub_workers, &sblock->work);
2116}
2117
2118static void scrub_missing_raid56_worker(struct btrfs_work *work)
2119{
2120 struct scrub_block *sblock = container_of(work, struct scrub_block, work);
2121 struct scrub_ctx *sctx = sblock->sctx;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002122 struct btrfs_fs_info *fs_info = sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002123 u64 logical;
2124 struct btrfs_device *dev;
2125
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002126 logical = sblock->pagev[0]->logical;
2127 dev = sblock->pagev[0]->dev;
2128
Zhao Leiaffe4a52015-08-24 21:32:06 +08002129 if (sblock->no_io_error_seen)
Zhao Leiba7cf982015-08-24 21:18:02 +08002130 scrub_recheck_block_checksum(sblock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002131
2132 if (!sblock->no_io_error_seen) {
2133 spin_lock(&sctx->stat_lock);
2134 sctx->stat.read_errors++;
2135 spin_unlock(&sctx->stat_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002136 btrfs_err_rl_in_rcu(fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02002137 "IO error rebuilding logical %llu for dev %s",
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002138 logical, rcu_str_deref(dev->name));
2139 } else if (sblock->header_error || sblock->checksum_error) {
2140 spin_lock(&sctx->stat_lock);
2141 sctx->stat.uncorrectable_errors++;
2142 spin_unlock(&sctx->stat_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002143 btrfs_err_rl_in_rcu(fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02002144 "failed to rebuild valid logical %llu for dev %s",
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002145 logical, rcu_str_deref(dev->name));
2146 } else {
2147 scrub_write_block_to_dev_replace(sblock);
2148 }
2149
David Sterba2073c4c2017-03-31 17:12:51 +02002150 if (sctx->is_dev_replace && sctx->flush_all_writes) {
David Sterba3fb99302017-05-16 19:10:32 +02002151 mutex_lock(&sctx->wr_lock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002152 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02002153 mutex_unlock(&sctx->wr_lock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002154 }
2155
Omar Sandoval57d4f0b2019-09-16 11:30:56 -07002156 scrub_block_put(sblock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002157 scrub_pending_bio_dec(sctx);
2158}
2159
2160static void scrub_missing_raid56_pages(struct scrub_block *sblock)
2161{
2162 struct scrub_ctx *sctx = sblock->sctx;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002163 struct btrfs_fs_info *fs_info = sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002164 u64 length = sblock->page_count * PAGE_SIZE;
2165 u64 logical = sblock->pagev[0]->logical;
Zhao Leif1fee652016-05-17 17:37:38 +08002166 struct btrfs_bio *bbio = NULL;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002167 struct bio *bio;
2168 struct btrfs_raid_bio *rbio;
2169 int ret;
2170 int i;
2171
Qu Wenruoae6529c2017-03-29 09:33:21 +08002172 btrfs_bio_counter_inc_blocked(fs_info);
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02002173 ret = btrfs_map_sblock(fs_info, BTRFS_MAP_GET_READ_MIRRORS, logical,
David Sterba825ad4c2017-03-28 14:45:22 +02002174 &length, &bbio);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002175 if (ret || !bbio || !bbio->raid_map)
2176 goto bbio_out;
2177
2178 if (WARN_ON(!sctx->is_dev_replace ||
2179 !(bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK))) {
2180 /*
2181 * We shouldn't be scrubbing a missing device. Even for dev
2182 * replace, we should only get here for RAID 5/6. We either
2183 * managed to mount something with no mirrors remaining or
2184 * there's a bug in scrub_remap_extent()/btrfs_map_block().
2185 */
2186 goto bbio_out;
2187 }
2188
David Sterbac5e4c3d2017-06-12 17:29:41 +02002189 bio = btrfs_io_bio_alloc(0);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002190 bio->bi_iter.bi_sector = logical >> 9;
2191 bio->bi_private = sblock;
2192 bio->bi_end_io = scrub_missing_raid56_end_io;
2193
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002194 rbio = raid56_alloc_missing_rbio(fs_info, bio, bbio, length);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002195 if (!rbio)
2196 goto rbio_out;
2197
2198 for (i = 0; i < sblock->page_count; i++) {
2199 struct scrub_page *spage = sblock->pagev[i];
2200
2201 raid56_add_scrub_pages(rbio, spage->page, spage->logical);
2202 }
2203
Omar Sandovala0cac0e2019-09-16 11:30:57 -07002204 btrfs_init_work(&sblock->work, scrub_missing_raid56_worker, NULL, NULL);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002205 scrub_block_get(sblock);
2206 scrub_pending_bio_inc(sctx);
2207 raid56_submit_missing_rbio(rbio);
2208 return;
2209
2210rbio_out:
2211 bio_put(bio);
2212bbio_out:
Qu Wenruoae6529c2017-03-29 09:33:21 +08002213 btrfs_bio_counter_dec(fs_info);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002214 btrfs_put_bbio(bbio);
2215 spin_lock(&sctx->stat_lock);
2216 sctx->stat.malloc_errors++;
2217 spin_unlock(&sctx->stat_lock);
2218}
2219
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002220static int scrub_pages(struct scrub_ctx *sctx, u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002221 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002222 u64 gen, int mirror_num, u8 *csum, int force,
2223 u64 physical_for_dev_replace)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002224{
2225 struct scrub_block *sblock;
2226 int index;
2227
David Sterba58c4e172016-02-11 10:49:42 +01002228 sblock = kzalloc(sizeof(*sblock), GFP_KERNEL);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002229 if (!sblock) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002230 spin_lock(&sctx->stat_lock);
2231 sctx->stat.malloc_errors++;
2232 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002233 return -ENOMEM;
2234 }
2235
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002236 /* one ref inside this function, plus one for each page added to
2237 * a bio later on */
Elena Reshetova186debd2017-03-03 10:55:23 +02002238 refcount_set(&sblock->refs, 1);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002239 sblock->sctx = sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002240 sblock->no_io_error_seen = 1;
2241
2242 for (index = 0; len > 0; index++) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002243 struct scrub_page *spage;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002244 u64 l = min_t(u64, len, PAGE_SIZE);
2245
David Sterba58c4e172016-02-11 10:49:42 +01002246 spage = kzalloc(sizeof(*spage), GFP_KERNEL);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002247 if (!spage) {
2248leave_nomem:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002249 spin_lock(&sctx->stat_lock);
2250 sctx->stat.malloc_errors++;
2251 spin_unlock(&sctx->stat_lock);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002252 scrub_block_put(sblock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002253 return -ENOMEM;
2254 }
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002255 BUG_ON(index >= SCRUB_MAX_PAGES_PER_BLOCK);
2256 scrub_page_get(spage);
2257 sblock->pagev[index] = spage;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002258 spage->sblock = sblock;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002259 spage->dev = dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002260 spage->flags = flags;
2261 spage->generation = gen;
2262 spage->logical = logical;
2263 spage->physical = physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002264 spage->physical_for_dev_replace = physical_for_dev_replace;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002265 spage->mirror_num = mirror_num;
2266 if (csum) {
2267 spage->have_csum = 1;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002268 memcpy(spage->csum, csum, sctx->csum_size);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002269 } else {
2270 spage->have_csum = 0;
2271 }
2272 sblock->page_count++;
David Sterba58c4e172016-02-11 10:49:42 +01002273 spage->page = alloc_page(GFP_KERNEL);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002274 if (!spage->page)
2275 goto leave_nomem;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002276 len -= l;
2277 logical += l;
2278 physical += l;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002279 physical_for_dev_replace += l;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002280 }
2281
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002282 WARN_ON(sblock->page_count == 0);
Anand Jaine6e674b2017-12-04 12:54:54 +08002283 if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state)) {
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002284 /*
2285 * This case should only be hit for RAID 5/6 device replace. See
2286 * the comment in scrub_missing_raid56_pages() for details.
2287 */
2288 scrub_missing_raid56_pages(sblock);
2289 } else {
2290 for (index = 0; index < sblock->page_count; index++) {
2291 struct scrub_page *spage = sblock->pagev[index];
2292 int ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002293
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002294 ret = scrub_add_page_to_rd_bio(sctx, spage);
2295 if (ret) {
2296 scrub_block_put(sblock);
2297 return ret;
2298 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002299 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002300
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002301 if (force)
2302 scrub_submit(sctx);
2303 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002304
2305 /* last one frees, either here or in bio completion for last page */
2306 scrub_block_put(sblock);
2307 return 0;
2308}
2309
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002310static void scrub_bio_end_io(struct bio *bio)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002311{
2312 struct scrub_bio *sbio = bio->bi_private;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002313 struct btrfs_fs_info *fs_info = sbio->dev->fs_info;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002314
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002315 sbio->status = bio->bi_status;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002316 sbio->bio = bio;
2317
Qu Wenruo0339ef22014-02-28 10:46:17 +08002318 btrfs_queue_work(fs_info->scrub_workers, &sbio->work);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002319}
2320
2321static void scrub_bio_end_io_worker(struct btrfs_work *work)
2322{
2323 struct scrub_bio *sbio = container_of(work, struct scrub_bio, work);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002324 struct scrub_ctx *sctx = sbio->sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002325 int i;
2326
Stefan Behrensff023aa2012-11-06 11:43:11 +01002327 BUG_ON(sbio->page_count > SCRUB_PAGES_PER_RD_BIO);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002328 if (sbio->status) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002329 for (i = 0; i < sbio->page_count; i++) {
2330 struct scrub_page *spage = sbio->pagev[i];
2331
2332 spage->io_error = 1;
2333 spage->sblock->no_io_error_seen = 0;
2334 }
2335 }
2336
2337 /* now complete the scrub_block items that have all pages completed */
2338 for (i = 0; i < sbio->page_count; i++) {
2339 struct scrub_page *spage = sbio->pagev[i];
2340 struct scrub_block *sblock = spage->sblock;
2341
2342 if (atomic_dec_and_test(&sblock->outstanding_pages))
2343 scrub_block_complete(sblock);
2344 scrub_block_put(sblock);
2345 }
2346
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002347 bio_put(sbio->bio);
2348 sbio->bio = NULL;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002349 spin_lock(&sctx->list_lock);
2350 sbio->next_free = sctx->first_free;
2351 sctx->first_free = sbio->index;
2352 spin_unlock(&sctx->list_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002353
David Sterba2073c4c2017-03-31 17:12:51 +02002354 if (sctx->is_dev_replace && sctx->flush_all_writes) {
David Sterba3fb99302017-05-16 19:10:32 +02002355 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002356 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02002357 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002358 }
2359
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002360 scrub_pending_bio_dec(sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002361}
2362
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002363static inline void __scrub_mark_bitmap(struct scrub_parity *sparity,
2364 unsigned long *bitmap,
2365 u64 start, u64 len)
2366{
Liu Bo972d7212017-04-03 13:45:33 -07002367 u64 offset;
David Sterba7736b0a2017-03-31 18:02:48 +02002368 u64 nsectors64;
2369 u32 nsectors;
Jeff Mahoneyda170662016-06-15 09:22:56 -04002370 int sectorsize = sparity->sctx->fs_info->sectorsize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002371
2372 if (len >= sparity->stripe_len) {
2373 bitmap_set(bitmap, 0, sparity->nsectors);
2374 return;
2375 }
2376
2377 start -= sparity->logic_start;
Liu Bo972d7212017-04-03 13:45:33 -07002378 start = div64_u64_rem(start, sparity->stripe_len, &offset);
2379 offset = div_u64(offset, sectorsize);
David Sterba7736b0a2017-03-31 18:02:48 +02002380 nsectors64 = div_u64(len, sectorsize);
2381
2382 ASSERT(nsectors64 < UINT_MAX);
2383 nsectors = (u32)nsectors64;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002384
2385 if (offset + nsectors <= sparity->nsectors) {
2386 bitmap_set(bitmap, offset, nsectors);
2387 return;
2388 }
2389
2390 bitmap_set(bitmap, offset, sparity->nsectors - offset);
2391 bitmap_set(bitmap, 0, nsectors - (sparity->nsectors - offset));
2392}
2393
2394static inline void scrub_parity_mark_sectors_error(struct scrub_parity *sparity,
2395 u64 start, u64 len)
2396{
2397 __scrub_mark_bitmap(sparity, sparity->ebitmap, start, len);
2398}
2399
2400static inline void scrub_parity_mark_sectors_data(struct scrub_parity *sparity,
2401 u64 start, u64 len)
2402{
2403 __scrub_mark_bitmap(sparity, sparity->dbitmap, start, len);
2404}
2405
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002406static void scrub_block_complete(struct scrub_block *sblock)
2407{
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002408 int corrupted = 0;
2409
Stefan Behrensff023aa2012-11-06 11:43:11 +01002410 if (!sblock->no_io_error_seen) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002411 corrupted = 1;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002412 scrub_handle_errored_block(sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002413 } else {
2414 /*
2415 * if has checksum error, write via repair mechanism in
2416 * dev replace case, otherwise write here in dev replace
2417 * case.
2418 */
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002419 corrupted = scrub_checksum(sblock);
2420 if (!corrupted && sblock->sctx->is_dev_replace)
Stefan Behrensff023aa2012-11-06 11:43:11 +01002421 scrub_write_block_to_dev_replace(sblock);
2422 }
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002423
2424 if (sblock->sparity && corrupted && !sblock->data_corrected) {
2425 u64 start = sblock->pagev[0]->logical;
2426 u64 end = sblock->pagev[sblock->page_count - 1]->logical +
2427 PAGE_SIZE;
2428
2429 scrub_parity_mark_sectors_error(sblock->sparity,
2430 start, end - start);
2431 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002432}
2433
Zhao Lei3b5753e2015-08-24 22:03:02 +08002434static int scrub_find_csum(struct scrub_ctx *sctx, u64 logical, u8 *csum)
Arne Jansena2de7332011-03-08 14:14:00 +01002435{
2436 struct btrfs_ordered_sum *sum = NULL;
Miao Xief51a4a12013-06-19 10:36:09 +08002437 unsigned long index;
Arne Jansena2de7332011-03-08 14:14:00 +01002438 unsigned long num_sectors;
Arne Jansena2de7332011-03-08 14:14:00 +01002439
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002440 while (!list_empty(&sctx->csum_list)) {
2441 sum = list_first_entry(&sctx->csum_list,
Arne Jansena2de7332011-03-08 14:14:00 +01002442 struct btrfs_ordered_sum, list);
2443 if (sum->bytenr > logical)
2444 return 0;
2445 if (sum->bytenr + sum->len > logical)
2446 break;
2447
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002448 ++sctx->stat.csum_discards;
Arne Jansena2de7332011-03-08 14:14:00 +01002449 list_del(&sum->list);
2450 kfree(sum);
2451 sum = NULL;
2452 }
2453 if (!sum)
2454 return 0;
2455
David Sterba1d1bf922017-03-31 18:02:48 +02002456 index = div_u64(logical - sum->bytenr, sctx->fs_info->sectorsize);
2457 ASSERT(index < UINT_MAX);
2458
David Sterba25cc1222017-05-16 19:10:41 +02002459 num_sectors = sum->len / sctx->fs_info->sectorsize;
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +02002460 memcpy(csum, sum->sums + index * sctx->csum_size, sctx->csum_size);
Miao Xief51a4a12013-06-19 10:36:09 +08002461 if (index == num_sectors - 1) {
Arne Jansena2de7332011-03-08 14:14:00 +01002462 list_del(&sum->list);
2463 kfree(sum);
2464 }
Miao Xief51a4a12013-06-19 10:36:09 +08002465 return 1;
Arne Jansena2de7332011-03-08 14:14:00 +01002466}
2467
2468/* scrub extent tries to collect up to 64 kB for each bio */
Liu Bo6ca17652018-03-07 12:08:09 -07002469static int scrub_extent(struct scrub_ctx *sctx, struct map_lookup *map,
2470 u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002471 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002472 u64 gen, int mirror_num, u64 physical_for_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01002473{
2474 int ret;
2475 u8 csum[BTRFS_CSUM_SIZE];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002476 u32 blocksize;
2477
2478 if (flags & BTRFS_EXTENT_FLAG_DATA) {
Liu Bo6ca17652018-03-07 12:08:09 -07002479 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
2480 blocksize = map->stripe_len;
2481 else
2482 blocksize = sctx->fs_info->sectorsize;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002483 spin_lock(&sctx->stat_lock);
2484 sctx->stat.data_extents_scrubbed++;
2485 sctx->stat.data_bytes_scrubbed += len;
2486 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002487 } else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Liu Bo6ca17652018-03-07 12:08:09 -07002488 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
2489 blocksize = map->stripe_len;
2490 else
2491 blocksize = sctx->fs_info->nodesize;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002492 spin_lock(&sctx->stat_lock);
2493 sctx->stat.tree_extents_scrubbed++;
2494 sctx->stat.tree_bytes_scrubbed += len;
2495 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002496 } else {
David Sterba25cc1222017-05-16 19:10:41 +02002497 blocksize = sctx->fs_info->sectorsize;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002498 WARN_ON(1);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002499 }
Arne Jansena2de7332011-03-08 14:14:00 +01002500
2501 while (len) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002502 u64 l = min_t(u64, len, blocksize);
Arne Jansena2de7332011-03-08 14:14:00 +01002503 int have_csum = 0;
2504
2505 if (flags & BTRFS_EXTENT_FLAG_DATA) {
2506 /* push csums to sbio */
Zhao Lei3b5753e2015-08-24 22:03:02 +08002507 have_csum = scrub_find_csum(sctx, logical, csum);
Arne Jansena2de7332011-03-08 14:14:00 +01002508 if (have_csum == 0)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002509 ++sctx->stat.no_csum;
Arne Jansena2de7332011-03-08 14:14:00 +01002510 }
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002511 ret = scrub_pages(sctx, logical, l, physical, dev, flags, gen,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002512 mirror_num, have_csum ? csum : NULL, 0,
2513 physical_for_dev_replace);
Arne Jansena2de7332011-03-08 14:14:00 +01002514 if (ret)
2515 return ret;
2516 len -= l;
2517 logical += l;
2518 physical += l;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002519 physical_for_dev_replace += l;
Arne Jansena2de7332011-03-08 14:14:00 +01002520 }
2521 return 0;
2522}
2523
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002524static int scrub_pages_for_parity(struct scrub_parity *sparity,
2525 u64 logical, u64 len,
2526 u64 physical, struct btrfs_device *dev,
2527 u64 flags, u64 gen, int mirror_num, u8 *csum)
2528{
2529 struct scrub_ctx *sctx = sparity->sctx;
2530 struct scrub_block *sblock;
2531 int index;
2532
David Sterba58c4e172016-02-11 10:49:42 +01002533 sblock = kzalloc(sizeof(*sblock), GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002534 if (!sblock) {
2535 spin_lock(&sctx->stat_lock);
2536 sctx->stat.malloc_errors++;
2537 spin_unlock(&sctx->stat_lock);
2538 return -ENOMEM;
2539 }
2540
2541 /* one ref inside this function, plus one for each page added to
2542 * a bio later on */
Elena Reshetova186debd2017-03-03 10:55:23 +02002543 refcount_set(&sblock->refs, 1);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002544 sblock->sctx = sctx;
2545 sblock->no_io_error_seen = 1;
2546 sblock->sparity = sparity;
2547 scrub_parity_get(sparity);
2548
2549 for (index = 0; len > 0; index++) {
2550 struct scrub_page *spage;
2551 u64 l = min_t(u64, len, PAGE_SIZE);
2552
David Sterba58c4e172016-02-11 10:49:42 +01002553 spage = kzalloc(sizeof(*spage), GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002554 if (!spage) {
2555leave_nomem:
2556 spin_lock(&sctx->stat_lock);
2557 sctx->stat.malloc_errors++;
2558 spin_unlock(&sctx->stat_lock);
2559 scrub_block_put(sblock);
2560 return -ENOMEM;
2561 }
2562 BUG_ON(index >= SCRUB_MAX_PAGES_PER_BLOCK);
2563 /* For scrub block */
2564 scrub_page_get(spage);
2565 sblock->pagev[index] = spage;
2566 /* For scrub parity */
2567 scrub_page_get(spage);
2568 list_add_tail(&spage->list, &sparity->spages);
2569 spage->sblock = sblock;
2570 spage->dev = dev;
2571 spage->flags = flags;
2572 spage->generation = gen;
2573 spage->logical = logical;
2574 spage->physical = physical;
2575 spage->mirror_num = mirror_num;
2576 if (csum) {
2577 spage->have_csum = 1;
2578 memcpy(spage->csum, csum, sctx->csum_size);
2579 } else {
2580 spage->have_csum = 0;
2581 }
2582 sblock->page_count++;
David Sterba58c4e172016-02-11 10:49:42 +01002583 spage->page = alloc_page(GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002584 if (!spage->page)
2585 goto leave_nomem;
2586 len -= l;
2587 logical += l;
2588 physical += l;
2589 }
2590
2591 WARN_ON(sblock->page_count == 0);
2592 for (index = 0; index < sblock->page_count; index++) {
2593 struct scrub_page *spage = sblock->pagev[index];
2594 int ret;
2595
2596 ret = scrub_add_page_to_rd_bio(sctx, spage);
2597 if (ret) {
2598 scrub_block_put(sblock);
2599 return ret;
2600 }
2601 }
2602
2603 /* last one frees, either here or in bio completion for last page */
2604 scrub_block_put(sblock);
2605 return 0;
2606}
2607
2608static int scrub_extent_for_parity(struct scrub_parity *sparity,
2609 u64 logical, u64 len,
2610 u64 physical, struct btrfs_device *dev,
2611 u64 flags, u64 gen, int mirror_num)
2612{
2613 struct scrub_ctx *sctx = sparity->sctx;
2614 int ret;
2615 u8 csum[BTRFS_CSUM_SIZE];
2616 u32 blocksize;
2617
Anand Jaine6e674b2017-12-04 12:54:54 +08002618 if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state)) {
Omar Sandoval4a770892015-06-19 11:52:52 -07002619 scrub_parity_mark_sectors_error(sparity, logical, len);
2620 return 0;
2621 }
2622
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002623 if (flags & BTRFS_EXTENT_FLAG_DATA) {
Liu Bo6ca17652018-03-07 12:08:09 -07002624 blocksize = sparity->stripe_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002625 } else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Liu Bo6ca17652018-03-07 12:08:09 -07002626 blocksize = sparity->stripe_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002627 } else {
David Sterba25cc1222017-05-16 19:10:41 +02002628 blocksize = sctx->fs_info->sectorsize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002629 WARN_ON(1);
2630 }
2631
2632 while (len) {
2633 u64 l = min_t(u64, len, blocksize);
2634 int have_csum = 0;
2635
2636 if (flags & BTRFS_EXTENT_FLAG_DATA) {
2637 /* push csums to sbio */
Zhao Lei3b5753e2015-08-24 22:03:02 +08002638 have_csum = scrub_find_csum(sctx, logical, csum);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002639 if (have_csum == 0)
2640 goto skip;
2641 }
2642 ret = scrub_pages_for_parity(sparity, logical, l, physical, dev,
2643 flags, gen, mirror_num,
2644 have_csum ? csum : NULL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002645 if (ret)
2646 return ret;
Dan Carpenter6b6d24b2014-12-12 22:30:00 +03002647skip:
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002648 len -= l;
2649 logical += l;
2650 physical += l;
2651 }
2652 return 0;
2653}
2654
Wang Shilong3b080b22014-04-01 18:01:43 +08002655/*
2656 * Given a physical address, this will calculate it's
2657 * logical offset. if this is a parity stripe, it will return
2658 * the most left data stripe's logical offset.
2659 *
2660 * return 0 if it is a data stripe, 1 means parity stripe.
2661 */
2662static int get_raid56_logic_offset(u64 physical, int num,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002663 struct map_lookup *map, u64 *offset,
2664 u64 *stripe_start)
Wang Shilong3b080b22014-04-01 18:01:43 +08002665{
2666 int i;
2667 int j = 0;
2668 u64 stripe_nr;
2669 u64 last_offset;
David Sterba9d644a62015-02-20 18:42:11 +01002670 u32 stripe_index;
2671 u32 rot;
David Sterbacff82672019-05-17 11:43:45 +02002672 const int data_stripes = nr_data_stripes(map);
Wang Shilong3b080b22014-04-01 18:01:43 +08002673
David Sterbacff82672019-05-17 11:43:45 +02002674 last_offset = (physical - map->stripes[num].physical) * data_stripes;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002675 if (stripe_start)
2676 *stripe_start = last_offset;
2677
Wang Shilong3b080b22014-04-01 18:01:43 +08002678 *offset = last_offset;
David Sterbacff82672019-05-17 11:43:45 +02002679 for (i = 0; i < data_stripes; i++) {
Wang Shilong3b080b22014-04-01 18:01:43 +08002680 *offset = last_offset + i * map->stripe_len;
2681
Liu Bo42c61ab2017-04-03 13:45:24 -07002682 stripe_nr = div64_u64(*offset, map->stripe_len);
David Sterbacff82672019-05-17 11:43:45 +02002683 stripe_nr = div_u64(stripe_nr, data_stripes);
Wang Shilong3b080b22014-04-01 18:01:43 +08002684
2685 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01002686 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, &rot);
Wang Shilong3b080b22014-04-01 18:01:43 +08002687 /* calculate which stripe this data locates */
2688 rot += i;
Wang Shilonge4fbaee2014-04-11 18:32:25 +08002689 stripe_index = rot % map->num_stripes;
Wang Shilong3b080b22014-04-01 18:01:43 +08002690 if (stripe_index == num)
2691 return 0;
2692 if (stripe_index < num)
2693 j++;
2694 }
2695 *offset = last_offset + j * map->stripe_len;
2696 return 1;
2697}
2698
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002699static void scrub_free_parity(struct scrub_parity *sparity)
2700{
2701 struct scrub_ctx *sctx = sparity->sctx;
2702 struct scrub_page *curr, *next;
2703 int nbits;
2704
2705 nbits = bitmap_weight(sparity->ebitmap, sparity->nsectors);
2706 if (nbits) {
2707 spin_lock(&sctx->stat_lock);
2708 sctx->stat.read_errors += nbits;
2709 sctx->stat.uncorrectable_errors += nbits;
2710 spin_unlock(&sctx->stat_lock);
2711 }
2712
2713 list_for_each_entry_safe(curr, next, &sparity->spages, list) {
2714 list_del_init(&curr->list);
2715 scrub_page_put(curr);
2716 }
2717
2718 kfree(sparity);
2719}
2720
Zhao Lei20b2e302015-06-04 20:09:15 +08002721static void scrub_parity_bio_endio_worker(struct btrfs_work *work)
2722{
2723 struct scrub_parity *sparity = container_of(work, struct scrub_parity,
2724 work);
2725 struct scrub_ctx *sctx = sparity->sctx;
2726
2727 scrub_free_parity(sparity);
2728 scrub_pending_bio_dec(sctx);
2729}
2730
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002731static void scrub_parity_bio_endio(struct bio *bio)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002732{
2733 struct scrub_parity *sparity = (struct scrub_parity *)bio->bi_private;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002734 struct btrfs_fs_info *fs_info = sparity->sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002735
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002736 if (bio->bi_status)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002737 bitmap_or(sparity->ebitmap, sparity->ebitmap, sparity->dbitmap,
2738 sparity->nsectors);
2739
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002740 bio_put(bio);
Zhao Lei20b2e302015-06-04 20:09:15 +08002741
Omar Sandovala0cac0e2019-09-16 11:30:57 -07002742 btrfs_init_work(&sparity->work, scrub_parity_bio_endio_worker, NULL,
2743 NULL);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002744 btrfs_queue_work(fs_info->scrub_parity_workers, &sparity->work);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002745}
2746
2747static void scrub_parity_check_and_repair(struct scrub_parity *sparity)
2748{
2749 struct scrub_ctx *sctx = sparity->sctx;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002750 struct btrfs_fs_info *fs_info = sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002751 struct bio *bio;
2752 struct btrfs_raid_bio *rbio;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002753 struct btrfs_bio *bbio = NULL;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002754 u64 length;
2755 int ret;
2756
2757 if (!bitmap_andnot(sparity->dbitmap, sparity->dbitmap, sparity->ebitmap,
2758 sparity->nsectors))
2759 goto out;
2760
Zhao Leia0dd59d2015-07-21 15:42:26 +08002761 length = sparity->logic_end - sparity->logic_start;
Qu Wenruoae6529c2017-03-29 09:33:21 +08002762
2763 btrfs_bio_counter_inc_blocked(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002764 ret = btrfs_map_sblock(fs_info, BTRFS_MAP_WRITE, sparity->logic_start,
David Sterba825ad4c2017-03-28 14:45:22 +02002765 &length, &bbio);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08002766 if (ret || !bbio || !bbio->raid_map)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002767 goto bbio_out;
2768
David Sterbac5e4c3d2017-06-12 17:29:41 +02002769 bio = btrfs_io_bio_alloc(0);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002770 bio->bi_iter.bi_sector = sparity->logic_start >> 9;
2771 bio->bi_private = sparity;
2772 bio->bi_end_io = scrub_parity_bio_endio;
2773
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002774 rbio = raid56_parity_alloc_scrub_rbio(fs_info, bio, bbio,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08002775 length, sparity->scrub_dev,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002776 sparity->dbitmap,
2777 sparity->nsectors);
2778 if (!rbio)
2779 goto rbio_out;
2780
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002781 scrub_pending_bio_inc(sctx);
2782 raid56_parity_submit_scrub_rbio(rbio);
2783 return;
2784
2785rbio_out:
2786 bio_put(bio);
2787bbio_out:
Qu Wenruoae6529c2017-03-29 09:33:21 +08002788 btrfs_bio_counter_dec(fs_info);
Zhao Lei6e9606d2015-01-20 15:11:34 +08002789 btrfs_put_bbio(bbio);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002790 bitmap_or(sparity->ebitmap, sparity->ebitmap, sparity->dbitmap,
2791 sparity->nsectors);
2792 spin_lock(&sctx->stat_lock);
2793 sctx->stat.malloc_errors++;
2794 spin_unlock(&sctx->stat_lock);
2795out:
2796 scrub_free_parity(sparity);
2797}
2798
2799static inline int scrub_calc_parity_bitmap_len(int nsectors)
2800{
Zhao Leibfca9a62014-12-08 19:55:57 +08002801 return DIV_ROUND_UP(nsectors, BITS_PER_LONG) * sizeof(long);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002802}
2803
2804static void scrub_parity_get(struct scrub_parity *sparity)
2805{
Elena Reshetova78a76452017-03-03 10:55:24 +02002806 refcount_inc(&sparity->refs);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002807}
2808
2809static void scrub_parity_put(struct scrub_parity *sparity)
2810{
Elena Reshetova78a76452017-03-03 10:55:24 +02002811 if (!refcount_dec_and_test(&sparity->refs))
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002812 return;
2813
2814 scrub_parity_check_and_repair(sparity);
2815}
2816
2817static noinline_for_stack int scrub_raid56_parity(struct scrub_ctx *sctx,
2818 struct map_lookup *map,
2819 struct btrfs_device *sdev,
2820 struct btrfs_path *path,
2821 u64 logic_start,
2822 u64 logic_end)
2823{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002824 struct btrfs_fs_info *fs_info = sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002825 struct btrfs_root *root = fs_info->extent_root;
2826 struct btrfs_root *csum_root = fs_info->csum_root;
2827 struct btrfs_extent_item *extent;
Omar Sandoval4a770892015-06-19 11:52:52 -07002828 struct btrfs_bio *bbio = NULL;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002829 u64 flags;
2830 int ret;
2831 int slot;
2832 struct extent_buffer *l;
2833 struct btrfs_key key;
2834 u64 generation;
2835 u64 extent_logical;
2836 u64 extent_physical;
2837 u64 extent_len;
Omar Sandoval4a770892015-06-19 11:52:52 -07002838 u64 mapped_length;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002839 struct btrfs_device *extent_dev;
2840 struct scrub_parity *sparity;
2841 int nsectors;
2842 int bitmap_len;
2843 int extent_mirror_num;
2844 int stop_loop = 0;
2845
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002846 nsectors = div_u64(map->stripe_len, fs_info->sectorsize);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002847 bitmap_len = scrub_calc_parity_bitmap_len(nsectors);
2848 sparity = kzalloc(sizeof(struct scrub_parity) + 2 * bitmap_len,
2849 GFP_NOFS);
2850 if (!sparity) {
2851 spin_lock(&sctx->stat_lock);
2852 sctx->stat.malloc_errors++;
2853 spin_unlock(&sctx->stat_lock);
2854 return -ENOMEM;
2855 }
2856
2857 sparity->stripe_len = map->stripe_len;
2858 sparity->nsectors = nsectors;
2859 sparity->sctx = sctx;
2860 sparity->scrub_dev = sdev;
2861 sparity->logic_start = logic_start;
2862 sparity->logic_end = logic_end;
Elena Reshetova78a76452017-03-03 10:55:24 +02002863 refcount_set(&sparity->refs, 1);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002864 INIT_LIST_HEAD(&sparity->spages);
2865 sparity->dbitmap = sparity->bitmap;
2866 sparity->ebitmap = (void *)sparity->bitmap + bitmap_len;
2867
2868 ret = 0;
2869 while (logic_start < logic_end) {
2870 if (btrfs_fs_incompat(fs_info, SKINNY_METADATA))
2871 key.type = BTRFS_METADATA_ITEM_KEY;
2872 else
2873 key.type = BTRFS_EXTENT_ITEM_KEY;
2874 key.objectid = logic_start;
2875 key.offset = (u64)-1;
2876
2877 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2878 if (ret < 0)
2879 goto out;
2880
2881 if (ret > 0) {
2882 ret = btrfs_previous_extent_item(root, path, 0);
2883 if (ret < 0)
2884 goto out;
2885 if (ret > 0) {
2886 btrfs_release_path(path);
2887 ret = btrfs_search_slot(NULL, root, &key,
2888 path, 0, 0);
2889 if (ret < 0)
2890 goto out;
2891 }
2892 }
2893
2894 stop_loop = 0;
2895 while (1) {
2896 u64 bytes;
2897
2898 l = path->nodes[0];
2899 slot = path->slots[0];
2900 if (slot >= btrfs_header_nritems(l)) {
2901 ret = btrfs_next_leaf(root, path);
2902 if (ret == 0)
2903 continue;
2904 if (ret < 0)
2905 goto out;
2906
2907 stop_loop = 1;
2908 break;
2909 }
2910 btrfs_item_key_to_cpu(l, &key, slot);
2911
Zhao Leid7cad232015-07-22 13:14:48 +08002912 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
2913 key.type != BTRFS_METADATA_ITEM_KEY)
2914 goto next;
2915
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002916 if (key.type == BTRFS_METADATA_ITEM_KEY)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002917 bytes = fs_info->nodesize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002918 else
2919 bytes = key.offset;
2920
2921 if (key.objectid + bytes <= logic_start)
2922 goto next;
2923
Zhao Leia0dd59d2015-07-21 15:42:26 +08002924 if (key.objectid >= logic_end) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002925 stop_loop = 1;
2926 break;
2927 }
2928
2929 while (key.objectid >= logic_start + map->stripe_len)
2930 logic_start += map->stripe_len;
2931
2932 extent = btrfs_item_ptr(l, slot,
2933 struct btrfs_extent_item);
2934 flags = btrfs_extent_flags(l, extent);
2935 generation = btrfs_extent_generation(l, extent);
2936
Zhao Leia323e812015-07-23 12:29:49 +08002937 if ((flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) &&
2938 (key.objectid < logic_start ||
2939 key.objectid + bytes >
2940 logic_start + map->stripe_len)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002941 btrfs_err(fs_info,
2942 "scrub: tree block %llu spanning stripes, ignored. logical=%llu",
Zhao Leia323e812015-07-23 12:29:49 +08002943 key.objectid, logic_start);
Zhao Lei9799d2c32015-08-25 21:31:40 +08002944 spin_lock(&sctx->stat_lock);
2945 sctx->stat.uncorrectable_errors++;
2946 spin_unlock(&sctx->stat_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002947 goto next;
2948 }
2949again:
2950 extent_logical = key.objectid;
2951 extent_len = bytes;
2952
2953 if (extent_logical < logic_start) {
2954 extent_len -= logic_start - extent_logical;
2955 extent_logical = logic_start;
2956 }
2957
2958 if (extent_logical + extent_len >
2959 logic_start + map->stripe_len)
2960 extent_len = logic_start + map->stripe_len -
2961 extent_logical;
2962
2963 scrub_parity_mark_sectors_data(sparity, extent_logical,
2964 extent_len);
2965
Omar Sandoval4a770892015-06-19 11:52:52 -07002966 mapped_length = extent_len;
Zhao Leif1fee652016-05-17 17:37:38 +08002967 bbio = NULL;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02002968 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ,
2969 extent_logical, &mapped_length, &bbio,
2970 0);
Omar Sandoval4a770892015-06-19 11:52:52 -07002971 if (!ret) {
2972 if (!bbio || mapped_length < extent_len)
2973 ret = -EIO;
2974 }
2975 if (ret) {
2976 btrfs_put_bbio(bbio);
2977 goto out;
2978 }
2979 extent_physical = bbio->stripes[0].physical;
2980 extent_mirror_num = bbio->mirror_num;
2981 extent_dev = bbio->stripes[0].dev;
2982 btrfs_put_bbio(bbio);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002983
2984 ret = btrfs_lookup_csums_range(csum_root,
2985 extent_logical,
2986 extent_logical + extent_len - 1,
2987 &sctx->csum_list, 1);
2988 if (ret)
2989 goto out;
2990
2991 ret = scrub_extent_for_parity(sparity, extent_logical,
2992 extent_len,
2993 extent_physical,
2994 extent_dev, flags,
2995 generation,
2996 extent_mirror_num);
Zhao Lei6fa96d72015-07-21 12:22:30 +08002997
2998 scrub_free_csums(sctx);
2999
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003000 if (ret)
3001 goto out;
3002
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003003 if (extent_logical + extent_len <
3004 key.objectid + bytes) {
3005 logic_start += map->stripe_len;
3006
3007 if (logic_start >= logic_end) {
3008 stop_loop = 1;
3009 break;
3010 }
3011
3012 if (logic_start < key.objectid + bytes) {
3013 cond_resched();
3014 goto again;
3015 }
3016 }
3017next:
3018 path->slots[0]++;
3019 }
3020
3021 btrfs_release_path(path);
3022
3023 if (stop_loop)
3024 break;
3025
3026 logic_start += map->stripe_len;
3027 }
3028out:
3029 if (ret < 0)
3030 scrub_parity_mark_sectors_error(sparity, logic_start,
Zhao Leia0dd59d2015-07-21 15:42:26 +08003031 logic_end - logic_start);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003032 scrub_parity_put(sparity);
3033 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003034 mutex_lock(&sctx->wr_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003035 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003036 mutex_unlock(&sctx->wr_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003037
3038 btrfs_release_path(path);
3039 return ret < 0 ? ret : 0;
3040}
3041
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003042static noinline_for_stack int scrub_stripe(struct scrub_ctx *sctx,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003043 struct map_lookup *map,
3044 struct btrfs_device *scrub_dev,
Omar Sandoval32934282018-08-14 11:09:52 -07003045 int num, u64 base, u64 length)
Arne Jansena2de7332011-03-08 14:14:00 +01003046{
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003047 struct btrfs_path *path, *ppath;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04003048 struct btrfs_fs_info *fs_info = sctx->fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +01003049 struct btrfs_root *root = fs_info->extent_root;
3050 struct btrfs_root *csum_root = fs_info->csum_root;
3051 struct btrfs_extent_item *extent;
Arne Jansene7786c32011-05-28 20:58:38 +00003052 struct blk_plug plug;
Arne Jansena2de7332011-03-08 14:14:00 +01003053 u64 flags;
3054 int ret;
3055 int slot;
Arne Jansena2de7332011-03-08 14:14:00 +01003056 u64 nstripes;
Arne Jansena2de7332011-03-08 14:14:00 +01003057 struct extent_buffer *l;
Arne Jansena2de7332011-03-08 14:14:00 +01003058 u64 physical;
3059 u64 logical;
Liu Bo625f1c8d2013-04-27 02:56:57 +00003060 u64 logic_end;
Wang Shilong3b080b22014-04-01 18:01:43 +08003061 u64 physical_end;
Arne Jansena2de7332011-03-08 14:14:00 +01003062 u64 generation;
Jan Schmidte12fa9c2011-06-17 15:55:21 +02003063 int mirror_num;
Arne Jansen7a262852011-06-10 12:39:23 +02003064 struct reada_control *reada1;
3065 struct reada_control *reada2;
David Sterbae6c11f92016-03-24 18:00:53 +01003066 struct btrfs_key key;
Arne Jansen7a262852011-06-10 12:39:23 +02003067 struct btrfs_key key_end;
Arne Jansena2de7332011-03-08 14:14:00 +01003068 u64 increment = map->stripe_len;
3069 u64 offset;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003070 u64 extent_logical;
3071 u64 extent_physical;
3072 u64 extent_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003073 u64 stripe_logical;
3074 u64 stripe_end;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003075 struct btrfs_device *extent_dev;
3076 int extent_mirror_num;
Wang Shilong3b080b22014-04-01 18:01:43 +08003077 int stop_loop = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05003078
Wang Shilong3b080b22014-04-01 18:01:43 +08003079 physical = map->stripes[num].physical;
Arne Jansena2de7332011-03-08 14:14:00 +01003080 offset = 0;
Liu Bo42c61ab2017-04-03 13:45:24 -07003081 nstripes = div64_u64(length, map->stripe_len);
Arne Jansena2de7332011-03-08 14:14:00 +01003082 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
3083 offset = map->stripe_len * num;
3084 increment = map->stripe_len * map->num_stripes;
Jan Schmidt193ea742011-06-13 19:56:54 +02003085 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003086 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
3087 int factor = map->num_stripes / map->sub_stripes;
3088 offset = map->stripe_len * (num / map->sub_stripes);
3089 increment = map->stripe_len * factor;
Jan Schmidt193ea742011-06-13 19:56:54 +02003090 mirror_num = num % map->sub_stripes + 1;
David Sterbac7369b32019-05-31 15:39:31 +02003091 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1_MASK) {
Arne Jansena2de7332011-03-08 14:14:00 +01003092 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003093 mirror_num = num % map->num_stripes + 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003094 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
3095 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003096 mirror_num = num % map->num_stripes + 1;
Zhao Leiffe2d202015-01-20 15:11:44 +08003097 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003098 get_raid56_logic_offset(physical, num, map, &offset, NULL);
Wang Shilong3b080b22014-04-01 18:01:43 +08003099 increment = map->stripe_len * nr_data_stripes(map);
3100 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003101 } else {
3102 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003103 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003104 }
3105
3106 path = btrfs_alloc_path();
3107 if (!path)
3108 return -ENOMEM;
3109
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003110 ppath = btrfs_alloc_path();
3111 if (!ppath) {
Tsutomu Itoh379d6852015-01-09 17:37:52 +09003112 btrfs_free_path(path);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003113 return -ENOMEM;
3114 }
3115
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003116 /*
3117 * work on commit root. The related disk blocks are static as
3118 * long as COW is applied. This means, it is save to rewrite
3119 * them to repair disk errors without any race conditions
3120 */
Arne Jansena2de7332011-03-08 14:14:00 +01003121 path->search_commit_root = 1;
3122 path->skip_locking = 1;
3123
Gui Hecheng063c54d2015-01-09 09:39:40 +08003124 ppath->search_commit_root = 1;
3125 ppath->skip_locking = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003126 /*
Arne Jansen7a262852011-06-10 12:39:23 +02003127 * trigger the readahead for extent tree csum tree and wait for
3128 * completion. During readahead, the scrub is officially paused
3129 * to not hold off transaction commits
Arne Jansena2de7332011-03-08 14:14:00 +01003130 */
3131 logical = base + offset;
Wang Shilong3b080b22014-04-01 18:01:43 +08003132 physical_end = physical + nstripes * map->stripe_len;
Zhao Leiffe2d202015-01-20 15:11:44 +08003133 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Wang Shilong3b080b22014-04-01 18:01:43 +08003134 get_raid56_logic_offset(physical_end, num,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003135 map, &logic_end, NULL);
Wang Shilong3b080b22014-04-01 18:01:43 +08003136 logic_end += base;
3137 } else {
3138 logic_end = logical + increment * nstripes;
3139 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003140 wait_event(sctx->list_wait,
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003141 atomic_read(&sctx->bios_in_flight) == 0);
Wang Shilongcb7ab022013-12-04 21:16:53 +08003142 scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003143
Arne Jansen7a262852011-06-10 12:39:23 +02003144 /* FIXME it might be better to start readahead at commit root */
David Sterbae6c11f92016-03-24 18:00:53 +01003145 key.objectid = logical;
3146 key.type = BTRFS_EXTENT_ITEM_KEY;
3147 key.offset = (u64)0;
Wang Shilong3b080b22014-04-01 18:01:43 +08003148 key_end.objectid = logic_end;
Josef Bacik3173a182013-03-07 14:22:04 -05003149 key_end.type = BTRFS_METADATA_ITEM_KEY;
3150 key_end.offset = (u64)-1;
David Sterbae6c11f92016-03-24 18:00:53 +01003151 reada1 = btrfs_reada_add(root, &key, &key_end);
Arne Jansena2de7332011-03-08 14:14:00 +01003152
David Sterbae6c11f92016-03-24 18:00:53 +01003153 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
3154 key.type = BTRFS_EXTENT_CSUM_KEY;
3155 key.offset = logical;
Arne Jansen7a262852011-06-10 12:39:23 +02003156 key_end.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
3157 key_end.type = BTRFS_EXTENT_CSUM_KEY;
Wang Shilong3b080b22014-04-01 18:01:43 +08003158 key_end.offset = logic_end;
David Sterbae6c11f92016-03-24 18:00:53 +01003159 reada2 = btrfs_reada_add(csum_root, &key, &key_end);
Arne Jansena2de7332011-03-08 14:14:00 +01003160
Arne Jansen7a262852011-06-10 12:39:23 +02003161 if (!IS_ERR(reada1))
3162 btrfs_reada_wait(reada1);
3163 if (!IS_ERR(reada2))
3164 btrfs_reada_wait(reada2);
Arne Jansena2de7332011-03-08 14:14:00 +01003165
Arne Jansena2de7332011-03-08 14:14:00 +01003166
3167 /*
3168 * collect all data csums for the stripe to avoid seeking during
3169 * the scrub. This might currently (crc32) end up to be about 1MB
3170 */
Arne Jansene7786c32011-05-28 20:58:38 +00003171 blk_start_plug(&plug);
Arne Jansena2de7332011-03-08 14:14:00 +01003172
Arne Jansena2de7332011-03-08 14:14:00 +01003173 /*
3174 * now find all extents for each stripe and scrub them
3175 */
Arne Jansena2de7332011-03-08 14:14:00 +01003176 ret = 0;
Wang Shilong3b080b22014-04-01 18:01:43 +08003177 while (physical < physical_end) {
Arne Jansena2de7332011-03-08 14:14:00 +01003178 /*
3179 * canceled?
3180 */
3181 if (atomic_read(&fs_info->scrub_cancel_req) ||
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003182 atomic_read(&sctx->cancel_req)) {
Arne Jansena2de7332011-03-08 14:14:00 +01003183 ret = -ECANCELED;
3184 goto out;
3185 }
3186 /*
3187 * check to see if we have to pause
3188 */
3189 if (atomic_read(&fs_info->scrub_pause_req)) {
3190 /* push queued extents */
David Sterba2073c4c2017-03-31 17:12:51 +02003191 sctx->flush_all_writes = true;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003192 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003193 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003194 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003195 mutex_unlock(&sctx->wr_lock);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003196 wait_event(sctx->list_wait,
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003197 atomic_read(&sctx->bios_in_flight) == 0);
David Sterba2073c4c2017-03-31 17:12:51 +02003198 sctx->flush_all_writes = false;
Wang Shilong3cb09292013-12-04 21:15:19 +08003199 scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003200 }
3201
Zhao Leif2f66a22015-07-21 12:22:29 +08003202 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
3203 ret = get_raid56_logic_offset(physical, num, map,
3204 &logical,
3205 &stripe_logical);
3206 logical += base;
3207 if (ret) {
Zhao Lei79553232015-08-18 17:54:30 +08003208 /* it is parity strip */
Zhao Leif2f66a22015-07-21 12:22:29 +08003209 stripe_logical += base;
Zhao Leia0dd59d2015-07-21 15:42:26 +08003210 stripe_end = stripe_logical + increment;
Zhao Leif2f66a22015-07-21 12:22:29 +08003211 ret = scrub_raid56_parity(sctx, map, scrub_dev,
3212 ppath, stripe_logical,
3213 stripe_end);
3214 if (ret)
3215 goto out;
3216 goto skip;
3217 }
3218 }
3219
Wang Shilong7c76edb2014-01-12 21:38:32 +08003220 if (btrfs_fs_incompat(fs_info, SKINNY_METADATA))
3221 key.type = BTRFS_METADATA_ITEM_KEY;
3222 else
3223 key.type = BTRFS_EXTENT_ITEM_KEY;
Arne Jansena2de7332011-03-08 14:14:00 +01003224 key.objectid = logical;
Liu Bo625f1c8d2013-04-27 02:56:57 +00003225 key.offset = (u64)-1;
Arne Jansena2de7332011-03-08 14:14:00 +01003226
3227 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3228 if (ret < 0)
3229 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05003230
Arne Jansen8c510322011-06-03 10:09:26 +02003231 if (ret > 0) {
Wang Shilongade2e0b2014-01-12 21:38:33 +08003232 ret = btrfs_previous_extent_item(root, path, 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003233 if (ret < 0)
3234 goto out;
Arne Jansen8c510322011-06-03 10:09:26 +02003235 if (ret > 0) {
3236 /* there's no smaller item, so stick with the
3237 * larger one */
3238 btrfs_release_path(path);
3239 ret = btrfs_search_slot(NULL, root, &key,
3240 path, 0, 0);
3241 if (ret < 0)
3242 goto out;
3243 }
Arne Jansena2de7332011-03-08 14:14:00 +01003244 }
3245
Liu Bo625f1c8d2013-04-27 02:56:57 +00003246 stop_loop = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01003247 while (1) {
Josef Bacik3173a182013-03-07 14:22:04 -05003248 u64 bytes;
3249
Arne Jansena2de7332011-03-08 14:14:00 +01003250 l = path->nodes[0];
3251 slot = path->slots[0];
3252 if (slot >= btrfs_header_nritems(l)) {
3253 ret = btrfs_next_leaf(root, path);
3254 if (ret == 0)
3255 continue;
3256 if (ret < 0)
3257 goto out;
3258
Liu Bo625f1c8d2013-04-27 02:56:57 +00003259 stop_loop = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003260 break;
3261 }
3262 btrfs_item_key_to_cpu(l, &key, slot);
3263
Zhao Leid7cad232015-07-22 13:14:48 +08003264 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
3265 key.type != BTRFS_METADATA_ITEM_KEY)
3266 goto next;
3267
Josef Bacik3173a182013-03-07 14:22:04 -05003268 if (key.type == BTRFS_METADATA_ITEM_KEY)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003269 bytes = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05003270 else
3271 bytes = key.offset;
3272
3273 if (key.objectid + bytes <= logical)
Arne Jansena2de7332011-03-08 14:14:00 +01003274 goto next;
3275
Liu Bo625f1c8d2013-04-27 02:56:57 +00003276 if (key.objectid >= logical + map->stripe_len) {
3277 /* out of this device extent */
3278 if (key.objectid >= logic_end)
3279 stop_loop = 1;
3280 break;
3281 }
Arne Jansena2de7332011-03-08 14:14:00 +01003282
3283 extent = btrfs_item_ptr(l, slot,
3284 struct btrfs_extent_item);
3285 flags = btrfs_extent_flags(l, extent);
3286 generation = btrfs_extent_generation(l, extent);
3287
Zhao Leia323e812015-07-23 12:29:49 +08003288 if ((flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) &&
3289 (key.objectid < logical ||
3290 key.objectid + bytes >
3291 logical + map->stripe_len)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003292 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003293 "scrub: tree block %llu spanning stripes, ignored. logical=%llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003294 key.objectid, logical);
Zhao Lei9799d2c32015-08-25 21:31:40 +08003295 spin_lock(&sctx->stat_lock);
3296 sctx->stat.uncorrectable_errors++;
3297 spin_unlock(&sctx->stat_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003298 goto next;
3299 }
3300
Liu Bo625f1c8d2013-04-27 02:56:57 +00003301again:
3302 extent_logical = key.objectid;
3303 extent_len = bytes;
3304
Arne Jansena2de7332011-03-08 14:14:00 +01003305 /*
3306 * trim extent to this stripe
3307 */
Liu Bo625f1c8d2013-04-27 02:56:57 +00003308 if (extent_logical < logical) {
3309 extent_len -= logical - extent_logical;
3310 extent_logical = logical;
Arne Jansena2de7332011-03-08 14:14:00 +01003311 }
Liu Bo625f1c8d2013-04-27 02:56:57 +00003312 if (extent_logical + extent_len >
Arne Jansena2de7332011-03-08 14:14:00 +01003313 logical + map->stripe_len) {
Liu Bo625f1c8d2013-04-27 02:56:57 +00003314 extent_len = logical + map->stripe_len -
3315 extent_logical;
Arne Jansena2de7332011-03-08 14:14:00 +01003316 }
3317
Liu Bo625f1c8d2013-04-27 02:56:57 +00003318 extent_physical = extent_logical - logical + physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003319 extent_dev = scrub_dev;
3320 extent_mirror_num = mirror_num;
Omar Sandoval32934282018-08-14 11:09:52 -07003321 if (sctx->is_dev_replace)
Stefan Behrensff023aa2012-11-06 11:43:11 +01003322 scrub_remap_extent(fs_info, extent_logical,
3323 extent_len, &extent_physical,
3324 &extent_dev,
3325 &extent_mirror_num);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003326
Zhao Leife8cf652015-07-22 13:14:47 +08003327 ret = btrfs_lookup_csums_range(csum_root,
3328 extent_logical,
3329 extent_logical +
3330 extent_len - 1,
3331 &sctx->csum_list, 1);
Arne Jansena2de7332011-03-08 14:14:00 +01003332 if (ret)
3333 goto out;
3334
Liu Bo6ca17652018-03-07 12:08:09 -07003335 ret = scrub_extent(sctx, map, extent_logical, extent_len,
Liu Bo625f1c8d2013-04-27 02:56:57 +00003336 extent_physical, extent_dev, flags,
3337 generation, extent_mirror_num,
Stefan Behrens115930c2013-07-04 16:14:23 +02003338 extent_logical - logical + physical);
Zhao Lei6fa96d72015-07-21 12:22:30 +08003339
3340 scrub_free_csums(sctx);
3341
Liu Bo625f1c8d2013-04-27 02:56:57 +00003342 if (ret)
3343 goto out;
3344
3345 if (extent_logical + extent_len <
3346 key.objectid + bytes) {
Zhao Leiffe2d202015-01-20 15:11:44 +08003347 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Wang Shilong3b080b22014-04-01 18:01:43 +08003348 /*
3349 * loop until we find next data stripe
3350 * or we have finished all stripes.
3351 */
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003352loop:
3353 physical += map->stripe_len;
3354 ret = get_raid56_logic_offset(physical,
3355 num, map, &logical,
3356 &stripe_logical);
3357 logical += base;
3358
3359 if (ret && physical < physical_end) {
3360 stripe_logical += base;
3361 stripe_end = stripe_logical +
Zhao Leia0dd59d2015-07-21 15:42:26 +08003362 increment;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003363 ret = scrub_raid56_parity(sctx,
3364 map, scrub_dev, ppath,
3365 stripe_logical,
3366 stripe_end);
3367 if (ret)
3368 goto out;
3369 goto loop;
3370 }
Wang Shilong3b080b22014-04-01 18:01:43 +08003371 } else {
3372 physical += map->stripe_len;
3373 logical += increment;
3374 }
Liu Bo625f1c8d2013-04-27 02:56:57 +00003375 if (logical < key.objectid + bytes) {
3376 cond_resched();
3377 goto again;
3378 }
3379
Wang Shilong3b080b22014-04-01 18:01:43 +08003380 if (physical >= physical_end) {
Liu Bo625f1c8d2013-04-27 02:56:57 +00003381 stop_loop = 1;
3382 break;
3383 }
3384 }
Arne Jansena2de7332011-03-08 14:14:00 +01003385next:
3386 path->slots[0]++;
3387 }
Chris Mason71267332011-05-23 06:30:52 -04003388 btrfs_release_path(path);
Wang Shilong3b080b22014-04-01 18:01:43 +08003389skip:
Arne Jansena2de7332011-03-08 14:14:00 +01003390 logical += increment;
3391 physical += map->stripe_len;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003392 spin_lock(&sctx->stat_lock);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003393 if (stop_loop)
3394 sctx->stat.last_physical = map->stripes[num].physical +
3395 length;
3396 else
3397 sctx->stat.last_physical = physical;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003398 spin_unlock(&sctx->stat_lock);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003399 if (stop_loop)
3400 break;
Arne Jansena2de7332011-03-08 14:14:00 +01003401 }
Stefan Behrensff023aa2012-11-06 11:43:11 +01003402out:
Arne Jansena2de7332011-03-08 14:14:00 +01003403 /* push queued extents */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003404 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003405 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003406 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003407 mutex_unlock(&sctx->wr_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003408
Arne Jansene7786c32011-05-28 20:58:38 +00003409 blk_finish_plug(&plug);
Arne Jansena2de7332011-03-08 14:14:00 +01003410 btrfs_free_path(path);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003411 btrfs_free_path(ppath);
Arne Jansena2de7332011-03-08 14:14:00 +01003412 return ret < 0 ? ret : 0;
3413}
3414
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003415static noinline_for_stack int scrub_chunk(struct scrub_ctx *sctx,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003416 struct btrfs_device *scrub_dev,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003417 u64 chunk_offset, u64 length,
Filipe Manana020d5b72015-11-19 10:57:20 +00003418 u64 dev_offset,
David Sterba32da53862019-10-29 19:20:18 +01003419 struct btrfs_block_group *cache)
Arne Jansena2de7332011-03-08 14:14:00 +01003420{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04003421 struct btrfs_fs_info *fs_info = sctx->fs_info;
David Sterbac8bf1b62019-05-17 11:43:17 +02003422 struct extent_map_tree *map_tree = &fs_info->mapping_tree;
Arne Jansena2de7332011-03-08 14:14:00 +01003423 struct map_lookup *map;
3424 struct extent_map *em;
3425 int i;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003426 int ret = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01003427
David Sterbac8bf1b62019-05-17 11:43:17 +02003428 read_lock(&map_tree->lock);
3429 em = lookup_extent_mapping(map_tree, chunk_offset, 1);
3430 read_unlock(&map_tree->lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003431
Filipe Manana020d5b72015-11-19 10:57:20 +00003432 if (!em) {
3433 /*
3434 * Might have been an unused block group deleted by the cleaner
3435 * kthread or relocation.
3436 */
3437 spin_lock(&cache->lock);
3438 if (!cache->removed)
3439 ret = -EINVAL;
3440 spin_unlock(&cache->lock);
3441
3442 return ret;
3443 }
Arne Jansena2de7332011-03-08 14:14:00 +01003444
Jeff Mahoney95617d62015-06-03 10:55:48 -04003445 map = em->map_lookup;
Arne Jansena2de7332011-03-08 14:14:00 +01003446 if (em->start != chunk_offset)
3447 goto out;
3448
3449 if (em->len < length)
3450 goto out;
3451
3452 for (i = 0; i < map->num_stripes; ++i) {
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003453 if (map->stripes[i].dev->bdev == scrub_dev->bdev &&
Arne Jansen859acaf2012-02-09 15:09:02 +01003454 map->stripes[i].physical == dev_offset) {
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003455 ret = scrub_stripe(sctx, map, scrub_dev, i,
Omar Sandoval32934282018-08-14 11:09:52 -07003456 chunk_offset, length);
Arne Jansena2de7332011-03-08 14:14:00 +01003457 if (ret)
3458 goto out;
3459 }
3460 }
3461out:
3462 free_extent_map(em);
3463
3464 return ret;
3465}
3466
3467static noinline_for_stack
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003468int scrub_enumerate_chunks(struct scrub_ctx *sctx,
Omar Sandoval32934282018-08-14 11:09:52 -07003469 struct btrfs_device *scrub_dev, u64 start, u64 end)
Arne Jansena2de7332011-03-08 14:14:00 +01003470{
3471 struct btrfs_dev_extent *dev_extent = NULL;
3472 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003473 struct btrfs_fs_info *fs_info = sctx->fs_info;
3474 struct btrfs_root *root = fs_info->dev_root;
Arne Jansena2de7332011-03-08 14:14:00 +01003475 u64 length;
Arne Jansena2de7332011-03-08 14:14:00 +01003476 u64 chunk_offset;
Zhaolei55e3a602015-08-05 16:43:30 +08003477 int ret = 0;
Zhaolei76a8efa2015-11-17 18:46:17 +08003478 int ro_set;
Arne Jansena2de7332011-03-08 14:14:00 +01003479 int slot;
3480 struct extent_buffer *l;
3481 struct btrfs_key key;
3482 struct btrfs_key found_key;
David Sterba32da53862019-10-29 19:20:18 +01003483 struct btrfs_block_group *cache;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003484 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
Arne Jansena2de7332011-03-08 14:14:00 +01003485
3486 path = btrfs_alloc_path();
3487 if (!path)
3488 return -ENOMEM;
3489
David Sterbae4058b52015-11-27 16:31:35 +01003490 path->reada = READA_FORWARD;
Arne Jansena2de7332011-03-08 14:14:00 +01003491 path->search_commit_root = 1;
3492 path->skip_locking = 1;
3493
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003494 key.objectid = scrub_dev->devid;
Arne Jansena2de7332011-03-08 14:14:00 +01003495 key.offset = 0ull;
3496 key.type = BTRFS_DEV_EXTENT_KEY;
3497
Arne Jansena2de7332011-03-08 14:14:00 +01003498 while (1) {
3499 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3500 if (ret < 0)
Arne Jansen8c510322011-06-03 10:09:26 +02003501 break;
3502 if (ret > 0) {
3503 if (path->slots[0] >=
3504 btrfs_header_nritems(path->nodes[0])) {
3505 ret = btrfs_next_leaf(root, path);
Zhaolei55e3a602015-08-05 16:43:30 +08003506 if (ret < 0)
Arne Jansen8c510322011-06-03 10:09:26 +02003507 break;
Zhaolei55e3a602015-08-05 16:43:30 +08003508 if (ret > 0) {
3509 ret = 0;
3510 break;
3511 }
3512 } else {
3513 ret = 0;
Arne Jansen8c510322011-06-03 10:09:26 +02003514 }
3515 }
Arne Jansena2de7332011-03-08 14:14:00 +01003516
3517 l = path->nodes[0];
3518 slot = path->slots[0];
3519
3520 btrfs_item_key_to_cpu(l, &found_key, slot);
3521
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003522 if (found_key.objectid != scrub_dev->devid)
Arne Jansena2de7332011-03-08 14:14:00 +01003523 break;
3524
David Sterba962a2982014-06-04 18:41:45 +02003525 if (found_key.type != BTRFS_DEV_EXTENT_KEY)
Arne Jansena2de7332011-03-08 14:14:00 +01003526 break;
3527
3528 if (found_key.offset >= end)
3529 break;
3530
3531 if (found_key.offset < key.offset)
3532 break;
3533
3534 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
3535 length = btrfs_dev_extent_length(l, dev_extent);
3536
Qu Wenruoced96ed2014-06-19 10:42:51 +08003537 if (found_key.offset + length <= start)
3538 goto skip;
Arne Jansena2de7332011-03-08 14:14:00 +01003539
Arne Jansena2de7332011-03-08 14:14:00 +01003540 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
3541
3542 /*
3543 * get a reference on the corresponding block group to prevent
3544 * the chunk from going away while we scrub it
3545 */
3546 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
Qu Wenruoced96ed2014-06-19 10:42:51 +08003547
3548 /* some chunks are removed but not committed to disk yet,
3549 * continue scrubbing */
3550 if (!cache)
3551 goto skip;
3552
Zhaolei55e3a602015-08-05 16:43:30 +08003553 /*
3554 * we need call btrfs_inc_block_group_ro() with scrubs_paused,
3555 * to avoid deadlock caused by:
3556 * btrfs_inc_block_group_ro()
3557 * -> btrfs_wait_for_commit()
3558 * -> btrfs_commit_transaction()
3559 * -> btrfs_scrub_pause()
3560 */
3561 scrub_pause_on(fs_info);
Qu Wenruob12de522019-11-15 10:09:00 +08003562
3563 /*
3564 * Don't do chunk preallocation for scrub.
3565 *
3566 * This is especially important for SYSTEM bgs, or we can hit
3567 * -EFBIG from btrfs_finish_chunk_alloc() like:
3568 * 1. The only SYSTEM bg is marked RO.
3569 * Since SYSTEM bg is small, that's pretty common.
3570 * 2. New SYSTEM bg will be allocated
3571 * Due to regular version will allocate new chunk.
3572 * 3. New SYSTEM bg is empty and will get cleaned up
3573 * Before cleanup really happens, it's marked RO again.
3574 * 4. Empty SYSTEM bg get scrubbed
3575 * We go back to 2.
3576 *
3577 * This can easily boost the amount of SYSTEM chunks if cleaner
3578 * thread can't be triggered fast enough, and use up all space
3579 * of btrfs_super_block::sys_chunk_array
3580 */
3581 ret = btrfs_inc_block_group_ro(cache, false);
Zhaolei55e3a602015-08-05 16:43:30 +08003582 scrub_pause_off(fs_info);
Zhaolei76a8efa2015-11-17 18:46:17 +08003583
3584 if (ret == 0) {
3585 ro_set = 1;
3586 } else if (ret == -ENOSPC) {
3587 /*
3588 * btrfs_inc_block_group_ro return -ENOSPC when it
3589 * failed in creating new chunk for metadata.
3590 * It is not a problem for scrub/replace, because
3591 * metadata are always cowed, and our scrub paused
3592 * commit_transactions.
3593 */
3594 ro_set = 0;
3595 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003596 btrfs_warn(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02003597 "failed setting block group ro: %d", ret);
Zhaolei55e3a602015-08-05 16:43:30 +08003598 btrfs_put_block_group(cache);
3599 break;
3600 }
3601
Dan Carpenter3ec17a62019-10-31 13:55:01 +03003602 down_write(&dev_replace->rwsem);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003603 dev_replace->cursor_right = found_key.offset + length;
3604 dev_replace->cursor_left = found_key.offset;
3605 dev_replace->item_needs_writeback = 1;
David Sterbacb5583d2018-09-07 16:11:23 +02003606 up_write(&dev_replace->rwsem);
3607
Zhao Lei8c204c92015-08-19 15:02:40 +08003608 ret = scrub_chunk(sctx, scrub_dev, chunk_offset, length,
Omar Sandoval32934282018-08-14 11:09:52 -07003609 found_key.offset, cache);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003610
3611 /*
3612 * flush, submit all pending read and write bios, afterwards
3613 * wait for them.
3614 * Note that in the dev replace case, a read request causes
3615 * write requests that are submitted in the read completion
3616 * worker. Therefore in the current situation, it is required
3617 * that all write requests are flushed, so that all read and
3618 * write requests are really completed when bios_in_flight
3619 * changes to 0.
3620 */
David Sterba2073c4c2017-03-31 17:12:51 +02003621 sctx->flush_all_writes = true;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003622 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003623 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003624 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003625 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003626
3627 wait_event(sctx->list_wait,
3628 atomic_read(&sctx->bios_in_flight) == 0);
Zhaoleib708ce92015-08-05 16:43:29 +08003629
3630 scrub_pause_on(fs_info);
Wang Shilong12cf9372014-02-19 19:24:17 +08003631
3632 /*
3633 * must be called before we decrease @scrub_paused.
3634 * make sure we don't block transaction commit while
3635 * we are waiting pending workers finished.
3636 */
Stefan Behrensff023aa2012-11-06 11:43:11 +01003637 wait_event(sctx->list_wait,
3638 atomic_read(&sctx->workers_pending) == 0);
David Sterba2073c4c2017-03-31 17:12:51 +02003639 sctx->flush_all_writes = false;
Wang Shilong12cf9372014-02-19 19:24:17 +08003640
Zhaoleib708ce92015-08-05 16:43:29 +08003641 scrub_pause_off(fs_info);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003642
Dan Carpenter3ec17a62019-10-31 13:55:01 +03003643 down_write(&dev_replace->rwsem);
Filipe Manana1a1a8b72016-05-14 19:44:40 +01003644 dev_replace->cursor_left = dev_replace->cursor_right;
3645 dev_replace->item_needs_writeback = 1;
Dan Carpenter3ec17a62019-10-31 13:55:01 +03003646 up_write(&dev_replace->rwsem);
Filipe Manana1a1a8b72016-05-14 19:44:40 +01003647
Zhaolei76a8efa2015-11-17 18:46:17 +08003648 if (ro_set)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003649 btrfs_dec_block_group_ro(cache);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003650
Filipe Manana758f2df2015-11-19 11:45:48 +00003651 /*
3652 * We might have prevented the cleaner kthread from deleting
3653 * this block group if it was already unused because we raced
3654 * and set it to RO mode first. So add it back to the unused
3655 * list, otherwise it might not ever be deleted unless a manual
3656 * balance is triggered or it becomes used and unused again.
3657 */
3658 spin_lock(&cache->lock);
3659 if (!cache->removed && !cache->ro && cache->reserved == 0 &&
David Sterbabf38be62019-10-23 18:48:11 +02003660 cache->used == 0) {
Filipe Manana758f2df2015-11-19 11:45:48 +00003661 spin_unlock(&cache->lock);
Qu Wenruo031f24d2018-05-22 16:43:47 +08003662 btrfs_mark_bg_unused(cache);
Filipe Manana758f2df2015-11-19 11:45:48 +00003663 } else {
3664 spin_unlock(&cache->lock);
3665 }
3666
Arne Jansena2de7332011-03-08 14:14:00 +01003667 btrfs_put_block_group(cache);
3668 if (ret)
3669 break;
Omar Sandoval32934282018-08-14 11:09:52 -07003670 if (sctx->is_dev_replace &&
Stefan Behrensaf1be4f2012-11-27 17:39:51 +00003671 atomic64_read(&dev_replace->num_write_errors) > 0) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01003672 ret = -EIO;
3673 break;
3674 }
3675 if (sctx->stat.malloc_errors > 0) {
3676 ret = -ENOMEM;
3677 break;
3678 }
Qu Wenruoced96ed2014-06-19 10:42:51 +08003679skip:
Arne Jansena2de7332011-03-08 14:14:00 +01003680 key.offset = found_key.offset + length;
Chris Mason71267332011-05-23 06:30:52 -04003681 btrfs_release_path(path);
Arne Jansena2de7332011-03-08 14:14:00 +01003682 }
3683
Arne Jansena2de7332011-03-08 14:14:00 +01003684 btrfs_free_path(path);
Arne Jansen8c510322011-06-03 10:09:26 +02003685
Zhaolei55e3a602015-08-05 16:43:30 +08003686 return ret;
Arne Jansena2de7332011-03-08 14:14:00 +01003687}
3688
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003689static noinline_for_stack int scrub_supers(struct scrub_ctx *sctx,
3690 struct btrfs_device *scrub_dev)
Arne Jansena2de7332011-03-08 14:14:00 +01003691{
3692 int i;
3693 u64 bytenr;
3694 u64 gen;
3695 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003696 struct btrfs_fs_info *fs_info = sctx->fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +01003697
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003698 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003699 return -EIO;
3700
Miao Xie5f546062014-07-24 11:37:09 +08003701 /* Seed devices of a new filesystem has their own generation. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003702 if (scrub_dev->fs_devices != fs_info->fs_devices)
Miao Xie5f546062014-07-24 11:37:09 +08003703 gen = scrub_dev->generation;
3704 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003705 gen = fs_info->last_trans_committed;
Arne Jansena2de7332011-03-08 14:14:00 +01003706
3707 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
3708 bytenr = btrfs_sb_offset(i);
Miao Xie935e5cc2014-09-03 21:35:33 +08003709 if (bytenr + BTRFS_SUPER_INFO_SIZE >
3710 scrub_dev->commit_total_bytes)
Arne Jansena2de7332011-03-08 14:14:00 +01003711 break;
3712
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003713 ret = scrub_pages(sctx, bytenr, BTRFS_SUPER_INFO_SIZE, bytenr,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003714 scrub_dev, BTRFS_EXTENT_FLAG_SUPER, gen, i,
Stefan Behrensff023aa2012-11-06 11:43:11 +01003715 NULL, 1, bytenr);
Arne Jansena2de7332011-03-08 14:14:00 +01003716 if (ret)
3717 return ret;
3718 }
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003719 wait_event(sctx->list_wait, atomic_read(&sctx->bios_in_flight) == 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003720
3721 return 0;
3722}
3723
3724/*
3725 * get a reference count on fs_info->scrub_workers. start worker if necessary
3726 */
Stefan Behrensff023aa2012-11-06 11:43:11 +01003727static noinline_for_stack int scrub_workers_get(struct btrfs_fs_info *fs_info,
3728 int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01003729{
David Sterba6f011052015-02-16 18:34:01 +01003730 unsigned int flags = WQ_FREEZABLE | WQ_UNBOUND;
Qu Wenruo0339ef22014-02-28 10:46:17 +08003731 int max_active = fs_info->thread_pool_size;
Arne Jansena2de7332011-03-08 14:14:00 +01003732
Anand Jaineb4318e2019-01-30 14:45:01 +08003733 lockdep_assert_held(&fs_info->scrub_lock);
3734
Anand Jainff09c4c2019-01-30 14:45:02 +08003735 if (refcount_read(&fs_info->scrub_workers_refcnt) == 0) {
David Sterbac8352942019-02-12 16:51:18 +01003736 ASSERT(fs_info->scrub_workers == NULL);
David Sterbaaf1cbe02017-03-31 18:42:57 +02003737 fs_info->scrub_workers = btrfs_alloc_workqueue(fs_info, "scrub",
3738 flags, is_dev_replace ? 1 : max_active, 4);
Zhao Leie82afc52015-06-12 20:36:58 +08003739 if (!fs_info->scrub_workers)
3740 goto fail_scrub_workers;
3741
David Sterbac8352942019-02-12 16:51:18 +01003742 ASSERT(fs_info->scrub_wr_completion_workers == NULL);
Qu Wenruo0339ef22014-02-28 10:46:17 +08003743 fs_info->scrub_wr_completion_workers =
Jeff Mahoneycb001092016-06-09 16:22:11 -04003744 btrfs_alloc_workqueue(fs_info, "scrubwrc", flags,
Qu Wenruo0339ef22014-02-28 10:46:17 +08003745 max_active, 2);
Zhao Leie82afc52015-06-12 20:36:58 +08003746 if (!fs_info->scrub_wr_completion_workers)
3747 goto fail_scrub_wr_completion_workers;
3748
David Sterbac8352942019-02-12 16:51:18 +01003749 ASSERT(fs_info->scrub_parity_workers == NULL);
Zhao Lei20b2e302015-06-04 20:09:15 +08003750 fs_info->scrub_parity_workers =
Jeff Mahoneycb001092016-06-09 16:22:11 -04003751 btrfs_alloc_workqueue(fs_info, "scrubparity", flags,
Zhao Lei20b2e302015-06-04 20:09:15 +08003752 max_active, 2);
Zhao Leie82afc52015-06-12 20:36:58 +08003753 if (!fs_info->scrub_parity_workers)
3754 goto fail_scrub_parity_workers;
Anand Jainff09c4c2019-01-30 14:45:02 +08003755
3756 refcount_set(&fs_info->scrub_workers_refcnt, 1);
3757 } else {
3758 refcount_inc(&fs_info->scrub_workers_refcnt);
Arne Jansen632dd772011-06-10 12:07:07 +02003759 }
Zhao Leie82afc52015-06-12 20:36:58 +08003760 return 0;
3761
3762fail_scrub_parity_workers:
Zhao Leie82afc52015-06-12 20:36:58 +08003763 btrfs_destroy_workqueue(fs_info->scrub_wr_completion_workers);
3764fail_scrub_wr_completion_workers:
3765 btrfs_destroy_workqueue(fs_info->scrub_workers);
3766fail_scrub_workers:
3767 return -ENOMEM;
Arne Jansena2de7332011-03-08 14:14:00 +01003768}
3769
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003770int btrfs_scrub_dev(struct btrfs_fs_info *fs_info, u64 devid, u64 start,
3771 u64 end, struct btrfs_scrub_progress *progress,
Stefan Behrens63a212a2012-11-05 18:29:28 +01003772 int readonly, int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01003773{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003774 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003775 int ret;
3776 struct btrfs_device *dev;
Filipe Mananaa5fb1142018-11-26 20:07:17 +00003777 unsigned int nofs_flag;
Anand Jain1cec3f272019-01-30 14:45:00 +08003778 struct btrfs_workqueue *scrub_workers = NULL;
3779 struct btrfs_workqueue *scrub_wr_comp = NULL;
3780 struct btrfs_workqueue *scrub_parity = NULL;
Arne Jansena2de7332011-03-08 14:14:00 +01003781
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003782 if (btrfs_fs_closing(fs_info))
David Sterba6c3abed2019-02-25 19:57:41 +01003783 return -EAGAIN;
Arne Jansena2de7332011-03-08 14:14:00 +01003784
Jeff Mahoneyda170662016-06-15 09:22:56 -04003785 if (fs_info->nodesize > BTRFS_STRIPE_LEN) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003786 /*
3787 * in this case scrub is unable to calculate the checksum
3788 * the way scrub is implemented. Do not handle this
3789 * situation at all because it won't ever happen.
3790 */
Frank Holtonefe120a2013-12-20 11:37:06 -05003791 btrfs_err(fs_info,
3792 "scrub: size assumption nodesize <= BTRFS_STRIPE_LEN (%d <= %d) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003793 fs_info->nodesize,
3794 BTRFS_STRIPE_LEN);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003795 return -EINVAL;
3796 }
3797
Jeff Mahoneyda170662016-06-15 09:22:56 -04003798 if (fs_info->sectorsize != PAGE_SIZE) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003799 /* not supported for data w/o checksums */
Chandan Rajendra751bebb2016-07-04 10:04:39 +05303800 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003801 "scrub: size assumption sectorsize != PAGE_SIZE (%d != %lu) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003802 fs_info->sectorsize, PAGE_SIZE);
Arne Jansena2de7332011-03-08 14:14:00 +01003803 return -EINVAL;
3804 }
3805
Jeff Mahoneyda170662016-06-15 09:22:56 -04003806 if (fs_info->nodesize >
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003807 PAGE_SIZE * SCRUB_MAX_PAGES_PER_BLOCK ||
Jeff Mahoneyda170662016-06-15 09:22:56 -04003808 fs_info->sectorsize > PAGE_SIZE * SCRUB_MAX_PAGES_PER_BLOCK) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003809 /*
3810 * would exhaust the array bounds of pagev member in
3811 * struct scrub_block
3812 */
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003813 btrfs_err(fs_info,
3814 "scrub: size assumption nodesize and sectorsize <= SCRUB_MAX_PAGES_PER_BLOCK (%d <= %d && %d <= %d) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003815 fs_info->nodesize,
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003816 SCRUB_MAX_PAGES_PER_BLOCK,
Jeff Mahoneyda170662016-06-15 09:22:56 -04003817 fs_info->sectorsize,
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003818 SCRUB_MAX_PAGES_PER_BLOCK);
3819 return -EINVAL;
3820 }
3821
David Sterba0e94c4f42018-12-04 16:11:56 +01003822 /* Allocate outside of device_list_mutex */
3823 sctx = scrub_setup_ctx(fs_info, is_dev_replace);
3824 if (IS_ERR(sctx))
3825 return PTR_ERR(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01003826
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003827 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jain09ba3bc2019-01-19 14:48:55 +08003828 dev = btrfs_find_device(fs_info->fs_devices, devid, NULL, NULL, true);
Anand Jaine6e674b2017-12-04 12:54:54 +08003829 if (!dev || (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) &&
3830 !is_dev_replace)) {
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003831 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003832 ret = -ENODEV;
3833 goto out_free_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003834 }
Arne Jansena2de7332011-03-08 14:14:00 +01003835
Anand Jainebbede42017-12-04 12:54:52 +08003836 if (!is_dev_replace && !readonly &&
3837 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Miao Xie5d68da32014-07-24 11:37:07 +08003838 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Misono Tomohiro672d5992018-08-02 16:19:07 +09003839 btrfs_err_in_rcu(fs_info, "scrub: device %s is not writable",
3840 rcu_str_deref(dev->name));
David Sterba0e94c4f42018-12-04 16:11:56 +01003841 ret = -EROFS;
3842 goto out_free_ctx;
Miao Xie5d68da32014-07-24 11:37:07 +08003843 }
3844
Wang Shilong3b7a0162013-10-12 02:11:12 +08003845 mutex_lock(&fs_info->scrub_lock);
Anand Jaine12c9622017-12-04 12:54:53 +08003846 if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &dev->dev_state) ||
Anand Jain401e29c2017-12-04 12:54:55 +08003847 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &dev->dev_state)) {
Arne Jansena2de7332011-03-08 14:14:00 +01003848 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003849 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003850 ret = -EIO;
3851 goto out_free_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003852 }
3853
David Sterbacb5583d2018-09-07 16:11:23 +02003854 down_read(&fs_info->dev_replace.rwsem);
Anand Jaincadbc0a2018-01-03 16:08:30 +08003855 if (dev->scrub_ctx ||
Stefan Behrens8dabb742012-11-06 13:15:27 +01003856 (!is_dev_replace &&
3857 btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))) {
David Sterbacb5583d2018-09-07 16:11:23 +02003858 up_read(&fs_info->dev_replace.rwsem);
Arne Jansena2de7332011-03-08 14:14:00 +01003859 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003860 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003861 ret = -EINPROGRESS;
3862 goto out_free_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003863 }
David Sterbacb5583d2018-09-07 16:11:23 +02003864 up_read(&fs_info->dev_replace.rwsem);
Wang Shilong3b7a0162013-10-12 02:11:12 +08003865
3866 ret = scrub_workers_get(fs_info, is_dev_replace);
3867 if (ret) {
3868 mutex_unlock(&fs_info->scrub_lock);
3869 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003870 goto out_free_ctx;
Wang Shilong3b7a0162013-10-12 02:11:12 +08003871 }
3872
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003873 sctx->readonly = readonly;
Anand Jaincadbc0a2018-01-03 16:08:30 +08003874 dev->scrub_ctx = sctx;
Wang Shilong3cb09292013-12-04 21:15:19 +08003875 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Arne Jansena2de7332011-03-08 14:14:00 +01003876
Wang Shilong3cb09292013-12-04 21:15:19 +08003877 /*
3878 * checking @scrub_pause_req here, we can avoid
3879 * race between committing transaction and scrubbing.
3880 */
Wang Shilongcb7ab022013-12-04 21:16:53 +08003881 __scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003882 atomic_inc(&fs_info->scrubs_running);
3883 mutex_unlock(&fs_info->scrub_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003884
Filipe Mananaa5fb1142018-11-26 20:07:17 +00003885 /*
3886 * In order to avoid deadlock with reclaim when there is a transaction
3887 * trying to pause scrub, make sure we use GFP_NOFS for all the
3888 * allocations done at btrfs_scrub_pages() and scrub_pages_for_parity()
3889 * invoked by our callees. The pausing request is done when the
3890 * transaction commit starts, and it blocks the transaction until scrub
3891 * is paused (done at specific points at scrub_stripe() or right above
3892 * before incrementing fs_info->scrubs_running).
3893 */
3894 nofs_flag = memalloc_nofs_save();
Stefan Behrensff023aa2012-11-06 11:43:11 +01003895 if (!is_dev_replace) {
Anand Jaind1e14422019-01-03 16:17:40 +08003896 btrfs_info(fs_info, "scrub: started on devid %llu", devid);
Wang Shilong9b011ad2013-10-25 19:12:02 +08003897 /*
3898 * by holding device list mutex, we can
3899 * kick off writing super in log tree sync.
3900 */
Wang Shilong3cb09292013-12-04 21:15:19 +08003901 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003902 ret = scrub_supers(sctx, dev);
Wang Shilong3cb09292013-12-04 21:15:19 +08003903 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003904 }
Arne Jansena2de7332011-03-08 14:14:00 +01003905
3906 if (!ret)
Omar Sandoval32934282018-08-14 11:09:52 -07003907 ret = scrub_enumerate_chunks(sctx, dev, start, end);
Filipe Mananaa5fb1142018-11-26 20:07:17 +00003908 memalloc_nofs_restore(nofs_flag);
Arne Jansena2de7332011-03-08 14:14:00 +01003909
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003910 wait_event(sctx->list_wait, atomic_read(&sctx->bios_in_flight) == 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003911 atomic_dec(&fs_info->scrubs_running);
3912 wake_up(&fs_info->scrub_pause_wait);
3913
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003914 wait_event(sctx->list_wait, atomic_read(&sctx->workers_pending) == 0);
Jan Schmidt0ef8e452011-06-13 20:04:15 +02003915
Arne Jansena2de7332011-03-08 14:14:00 +01003916 if (progress)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003917 memcpy(progress, &sctx->stat, sizeof(*progress));
Arne Jansena2de7332011-03-08 14:14:00 +01003918
Anand Jaind1e14422019-01-03 16:17:40 +08003919 if (!is_dev_replace)
3920 btrfs_info(fs_info, "scrub: %s on devid %llu with status: %d",
3921 ret ? "not finished" : "finished", devid, ret);
3922
Arne Jansena2de7332011-03-08 14:14:00 +01003923 mutex_lock(&fs_info->scrub_lock);
Anand Jaincadbc0a2018-01-03 16:08:30 +08003924 dev->scrub_ctx = NULL;
Anand Jainff09c4c2019-01-30 14:45:02 +08003925 if (refcount_dec_and_test(&fs_info->scrub_workers_refcnt)) {
Anand Jain1cec3f272019-01-30 14:45:00 +08003926 scrub_workers = fs_info->scrub_workers;
3927 scrub_wr_comp = fs_info->scrub_wr_completion_workers;
3928 scrub_parity = fs_info->scrub_parity_workers;
David Sterbac8352942019-02-12 16:51:18 +01003929
3930 fs_info->scrub_workers = NULL;
3931 fs_info->scrub_wr_completion_workers = NULL;
3932 fs_info->scrub_parity_workers = NULL;
Anand Jain1cec3f272019-01-30 14:45:00 +08003933 }
Arne Jansena2de7332011-03-08 14:14:00 +01003934 mutex_unlock(&fs_info->scrub_lock);
3935
Anand Jain1cec3f272019-01-30 14:45:00 +08003936 btrfs_destroy_workqueue(scrub_workers);
3937 btrfs_destroy_workqueue(scrub_wr_comp);
3938 btrfs_destroy_workqueue(scrub_parity);
Filipe Mananaf55985f2015-02-09 21:14:24 +00003939 scrub_put_ctx(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01003940
3941 return ret;
David Sterba0e94c4f42018-12-04 16:11:56 +01003942
3943out_free_ctx:
3944 scrub_free_ctx(sctx);
3945
3946 return ret;
Arne Jansena2de7332011-03-08 14:14:00 +01003947}
3948
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003949void btrfs_scrub_pause(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003950{
Arne Jansena2de7332011-03-08 14:14:00 +01003951 mutex_lock(&fs_info->scrub_lock);
3952 atomic_inc(&fs_info->scrub_pause_req);
3953 while (atomic_read(&fs_info->scrubs_paused) !=
3954 atomic_read(&fs_info->scrubs_running)) {
3955 mutex_unlock(&fs_info->scrub_lock);
3956 wait_event(fs_info->scrub_pause_wait,
3957 atomic_read(&fs_info->scrubs_paused) ==
3958 atomic_read(&fs_info->scrubs_running));
3959 mutex_lock(&fs_info->scrub_lock);
3960 }
3961 mutex_unlock(&fs_info->scrub_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003962}
3963
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003964void btrfs_scrub_continue(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003965{
Arne Jansena2de7332011-03-08 14:14:00 +01003966 atomic_dec(&fs_info->scrub_pause_req);
3967 wake_up(&fs_info->scrub_pause_wait);
Arne Jansena2de7332011-03-08 14:14:00 +01003968}
3969
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003970int btrfs_scrub_cancel(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003971{
Arne Jansena2de7332011-03-08 14:14:00 +01003972 mutex_lock(&fs_info->scrub_lock);
3973 if (!atomic_read(&fs_info->scrubs_running)) {
3974 mutex_unlock(&fs_info->scrub_lock);
3975 return -ENOTCONN;
3976 }
3977
3978 atomic_inc(&fs_info->scrub_cancel_req);
3979 while (atomic_read(&fs_info->scrubs_running)) {
3980 mutex_unlock(&fs_info->scrub_lock);
3981 wait_event(fs_info->scrub_pause_wait,
3982 atomic_read(&fs_info->scrubs_running) == 0);
3983 mutex_lock(&fs_info->scrub_lock);
3984 }
3985 atomic_dec(&fs_info->scrub_cancel_req);
3986 mutex_unlock(&fs_info->scrub_lock);
3987
3988 return 0;
3989}
3990
David Sterba163e97e2019-03-20 16:32:55 +01003991int btrfs_scrub_cancel_dev(struct btrfs_device *dev)
Jeff Mahoney49b25e02012-03-01 17:24:58 +01003992{
David Sterba163e97e2019-03-20 16:32:55 +01003993 struct btrfs_fs_info *fs_info = dev->fs_info;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003994 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003995
3996 mutex_lock(&fs_info->scrub_lock);
Anand Jaincadbc0a2018-01-03 16:08:30 +08003997 sctx = dev->scrub_ctx;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003998 if (!sctx) {
Arne Jansena2de7332011-03-08 14:14:00 +01003999 mutex_unlock(&fs_info->scrub_lock);
4000 return -ENOTCONN;
4001 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004002 atomic_inc(&sctx->cancel_req);
Anand Jaincadbc0a2018-01-03 16:08:30 +08004003 while (dev->scrub_ctx) {
Arne Jansena2de7332011-03-08 14:14:00 +01004004 mutex_unlock(&fs_info->scrub_lock);
4005 wait_event(fs_info->scrub_pause_wait,
Anand Jaincadbc0a2018-01-03 16:08:30 +08004006 dev->scrub_ctx == NULL);
Arne Jansena2de7332011-03-08 14:14:00 +01004007 mutex_lock(&fs_info->scrub_lock);
4008 }
4009 mutex_unlock(&fs_info->scrub_lock);
4010
4011 return 0;
4012}
Stefan Behrens1623ede2012-03-27 14:21:26 -04004013
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004014int btrfs_scrub_progress(struct btrfs_fs_info *fs_info, u64 devid,
Arne Jansena2de7332011-03-08 14:14:00 +01004015 struct btrfs_scrub_progress *progress)
4016{
4017 struct btrfs_device *dev;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004018 struct scrub_ctx *sctx = NULL;
Arne Jansena2de7332011-03-08 14:14:00 +01004019
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004020 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jain09ba3bc2019-01-19 14:48:55 +08004021 dev = btrfs_find_device(fs_info->fs_devices, devid, NULL, NULL, true);
Arne Jansena2de7332011-03-08 14:14:00 +01004022 if (dev)
Anand Jaincadbc0a2018-01-03 16:08:30 +08004023 sctx = dev->scrub_ctx;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004024 if (sctx)
4025 memcpy(progress, &sctx->stat, sizeof(*progress));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004026 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Arne Jansena2de7332011-03-08 14:14:00 +01004027
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004028 return dev ? (sctx ? 0 : -ENOTCONN) : -ENODEV;
Arne Jansena2de7332011-03-08 14:14:00 +01004029}
Stefan Behrensff023aa2012-11-06 11:43:11 +01004030
4031static void scrub_remap_extent(struct btrfs_fs_info *fs_info,
4032 u64 extent_logical, u64 extent_len,
4033 u64 *extent_physical,
4034 struct btrfs_device **extent_dev,
4035 int *extent_mirror_num)
4036{
4037 u64 mapped_length;
4038 struct btrfs_bio *bbio = NULL;
4039 int ret;
4040
4041 mapped_length = extent_len;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02004042 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, extent_logical,
Stefan Behrensff023aa2012-11-06 11:43:11 +01004043 &mapped_length, &bbio, 0);
4044 if (ret || !bbio || mapped_length < extent_len ||
4045 !bbio->stripes[0].dev->bdev) {
Zhao Lei6e9606d2015-01-20 15:11:34 +08004046 btrfs_put_bbio(bbio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01004047 return;
4048 }
4049
4050 *extent_physical = bbio->stripes[0].physical;
4051 *extent_mirror_num = bbio->mirror_num;
4052 *extent_dev = bbio->stripes[0].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08004053 btrfs_put_bbio(bbio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01004054}