blob: 0c99cf9fb595c25e8954223ef27ccc2da33f3777 [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"
Arne Jansena2de7332011-03-08 14:14:00 +010021
22/*
23 * This is only the first step towards a full-features scrub. It reads all
24 * extent and super block and verifies the checksums. In case a bad checksum
25 * is found or the extent cannot be read, good data will be written back if
26 * any can be found.
27 *
28 * Future enhancements:
Arne Jansena2de7332011-03-08 14:14:00 +010029 * - In case an unrepairable extent is encountered, track which files are
30 * affected and report them
Arne Jansena2de7332011-03-08 14:14:00 +010031 * - track and record media errors, throw out bad devices
Arne Jansena2de7332011-03-08 14:14:00 +010032 * - add a mode to also read unallocated space
Arne Jansena2de7332011-03-08 14:14:00 +010033 */
34
Stefan Behrensb5d67f62012-03-27 14:21:27 -040035struct scrub_block;
Stefan Behrensd9d181c2012-11-02 09:58:09 +010036struct scrub_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +010037
Stefan Behrensff023aa2012-11-06 11:43:11 +010038/*
39 * the following three values only influence the performance.
40 * The last one configures the number of parallel and outstanding I/O
41 * operations. The first two values configure an upper limit for the number
42 * of (dynamically allocated) pages that are added to a bio.
43 */
44#define SCRUB_PAGES_PER_RD_BIO 32 /* 128k per bio */
45#define SCRUB_PAGES_PER_WR_BIO 32 /* 128k per bio */
46#define SCRUB_BIOS_PER_SCTX 64 /* 8MB per device in flight */
Stefan Behrens7a9e9982012-11-02 14:58:04 +010047
48/*
49 * the following value times PAGE_SIZE needs to be large enough to match the
50 * largest node/leaf/sector size that shall be supported.
51 * Values larger than BTRFS_STRIPE_LEN are not supported.
52 */
Stefan Behrensb5d67f62012-03-27 14:21:27 -040053#define SCRUB_MAX_PAGES_PER_BLOCK 16 /* 64k per node/leaf/sector */
Arne Jansena2de7332011-03-08 14:14:00 +010054
Miao Xieaf8e2d12014-10-23 14:42:50 +080055struct scrub_recover {
Elena Reshetova6f615012017-03-03 10:55:21 +020056 refcount_t refs;
Miao Xieaf8e2d12014-10-23 14:42:50 +080057 struct btrfs_bio *bbio;
Miao Xieaf8e2d12014-10-23 14:42:50 +080058 u64 map_length;
59};
60
Arne Jansena2de7332011-03-08 14:14:00 +010061struct scrub_page {
Stefan Behrensb5d67f62012-03-27 14:21:27 -040062 struct scrub_block *sblock;
63 struct page *page;
Stefan Behrens442a4f62012-05-25 16:06:08 +020064 struct btrfs_device *dev;
Miao Xie5a6ac9e2014-11-06 17:20:58 +080065 struct list_head list;
Arne Jansena2de7332011-03-08 14:14:00 +010066 u64 flags; /* extent flags */
67 u64 generation;
Stefan Behrensb5d67f62012-03-27 14:21:27 -040068 u64 logical;
69 u64 physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +010070 u64 physical_for_dev_replace;
Zhao Lei57019342015-01-20 15:11:45 +080071 atomic_t refs;
Stefan Behrensb5d67f62012-03-27 14:21:27 -040072 struct {
73 unsigned int mirror_num:8;
74 unsigned int have_csum:1;
75 unsigned int io_error:1;
76 };
Arne Jansena2de7332011-03-08 14:14:00 +010077 u8 csum[BTRFS_CSUM_SIZE];
Miao Xieaf8e2d12014-10-23 14:42:50 +080078
79 struct scrub_recover *recover;
Arne Jansena2de7332011-03-08 14:14:00 +010080};
81
82struct scrub_bio {
83 int index;
Stefan Behrensd9d181c2012-11-02 09:58:09 +010084 struct scrub_ctx *sctx;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +010085 struct btrfs_device *dev;
Arne Jansena2de7332011-03-08 14:14:00 +010086 struct bio *bio;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +020087 blk_status_t status;
Arne Jansena2de7332011-03-08 14:14:00 +010088 u64 logical;
89 u64 physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +010090#if SCRUB_PAGES_PER_WR_BIO >= SCRUB_PAGES_PER_RD_BIO
91 struct scrub_page *pagev[SCRUB_PAGES_PER_WR_BIO];
92#else
93 struct scrub_page *pagev[SCRUB_PAGES_PER_RD_BIO];
94#endif
Stefan Behrensb5d67f62012-03-27 14:21:27 -040095 int page_count;
Arne Jansena2de7332011-03-08 14:14:00 +010096 int next_free;
97 struct btrfs_work work;
98};
99
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400100struct scrub_block {
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100101 struct scrub_page *pagev[SCRUB_MAX_PAGES_PER_BLOCK];
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400102 int page_count;
103 atomic_t outstanding_pages;
Elena Reshetova186debd2017-03-03 10:55:23 +0200104 refcount_t refs; /* free mem on transition to zero */
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100105 struct scrub_ctx *sctx;
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800106 struct scrub_parity *sparity;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400107 struct {
108 unsigned int header_error:1;
109 unsigned int checksum_error:1;
110 unsigned int no_io_error_seen:1;
Stefan Behrens442a4f62012-05-25 16:06:08 +0200111 unsigned int generation_error:1; /* also sets header_error */
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800112
113 /* The following is for the data used to check parity */
114 /* It is for the data with checksum */
115 unsigned int data_corrected:1;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400116 };
Omar Sandoval73ff61d2015-06-19 11:52:51 -0700117 struct btrfs_work work;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400118};
119
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800120/* Used for the chunks with parity stripe such RAID5/6 */
121struct scrub_parity {
122 struct scrub_ctx *sctx;
123
124 struct btrfs_device *scrub_dev;
125
126 u64 logic_start;
127
128 u64 logic_end;
129
130 int nsectors;
131
Liu Bo972d7212017-04-03 13:45:33 -0700132 u64 stripe_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800133
Elena Reshetova78a76452017-03-03 10:55:24 +0200134 refcount_t refs;
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800135
136 struct list_head spages;
137
138 /* Work of parity check and repair */
139 struct btrfs_work work;
140
141 /* Mark the parity blocks which have data */
142 unsigned long *dbitmap;
143
144 /*
145 * Mark the parity blocks which have data, but errors happen when
146 * read data or check data
147 */
148 unsigned long *ebitmap;
149
150 unsigned long bitmap[0];
151};
152
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100153struct scrub_ctx {
Stefan Behrensff023aa2012-11-06 11:43:11 +0100154 struct scrub_bio *bios[SCRUB_BIOS_PER_SCTX];
Jeff Mahoneyfb456252016-06-22 18:54:56 -0400155 struct btrfs_fs_info *fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +0100156 int first_free;
157 int curr;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100158 atomic_t bios_in_flight;
159 atomic_t workers_pending;
Arne Jansena2de7332011-03-08 14:14:00 +0100160 spinlock_t list_lock;
161 wait_queue_head_t list_wait;
162 u16 csum_size;
163 struct list_head csum_list;
164 atomic_t cancel_req;
Arne Jansen86287642011-03-23 16:34:19 +0100165 int readonly;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100166 int pages_per_rd_bio;
Stefan Behrens63a212a2012-11-05 18:29:28 +0100167
168 int is_dev_replace;
David Sterba3fb99302017-05-16 19:10:32 +0200169
170 struct scrub_bio *wr_curr_bio;
171 struct mutex wr_lock;
172 int pages_per_wr_bio; /* <= SCRUB_PAGES_PER_WR_BIO */
David Sterba3fb99302017-05-16 19:10:32 +0200173 struct btrfs_device *wr_tgtdev;
David Sterba2073c4c2017-03-31 17:12:51 +0200174 bool flush_all_writes;
Stefan Behrens63a212a2012-11-05 18:29:28 +0100175
Arne Jansena2de7332011-03-08 14:14:00 +0100176 /*
177 * statistics
178 */
179 struct btrfs_scrub_progress stat;
180 spinlock_t stat_lock;
Filipe Mananaf55985f2015-02-09 21:14:24 +0000181
182 /*
183 * Use a ref counter to avoid use-after-free issues. Scrub workers
184 * decrement bios_in_flight and workers_pending and then do a wakeup
185 * on the list_wait wait queue. We must ensure the main scrub task
186 * doesn't free the scrub context before or while the workers are
187 * doing the wakeup() call.
188 */
Elena Reshetova99f4cdb2017-03-03 10:55:25 +0200189 refcount_t refs;
Arne Jansena2de7332011-03-08 14:14:00 +0100190};
191
Jan Schmidt558540c2011-06-13 19:59:12 +0200192struct scrub_warning {
193 struct btrfs_path *path;
194 u64 extent_item_size;
Jan Schmidt558540c2011-06-13 19:59:12 +0200195 const char *errstr;
David Sterba6aa21262017-10-04 17:07:07 +0200196 u64 physical;
Jan Schmidt558540c2011-06-13 19:59:12 +0200197 u64 logical;
198 struct btrfs_device *dev;
Jan Schmidt558540c2011-06-13 19:59:12 +0200199};
200
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800201struct full_stripe_lock {
202 struct rb_node node;
203 u64 logical;
204 u64 refs;
205 struct mutex mutex;
206};
207
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100208static void scrub_pending_bio_inc(struct scrub_ctx *sctx);
209static void scrub_pending_bio_dec(struct scrub_ctx *sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400210static int scrub_handle_errored_block(struct scrub_block *sblock_to_check);
Zhao Leibe50a8d2015-01-20 15:11:42 +0800211static int scrub_setup_recheck_block(struct scrub_block *original_sblock,
Stefan Behrensff023aa2012-11-06 11:43:11 +0100212 struct scrub_block *sblocks_for_recheck);
Stefan Behrens34f5c8e2012-11-02 16:16:26 +0100213static void scrub_recheck_block(struct btrfs_fs_info *fs_info,
Zhao Leiaffe4a52015-08-24 21:32:06 +0800214 struct scrub_block *sblock,
215 int retry_failed_mirror);
Zhao Leiba7cf982015-08-24 21:18:02 +0800216static void scrub_recheck_block_checksum(struct scrub_block *sblock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400217static int scrub_repair_block_from_good_copy(struct scrub_block *sblock_bad,
Zhao Lei114ab502015-01-20 15:11:36 +0800218 struct scrub_block *sblock_good);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400219static int scrub_repair_page_from_good_copy(struct scrub_block *sblock_bad,
220 struct scrub_block *sblock_good,
221 int page_num, int force_write);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100222static void scrub_write_block_to_dev_replace(struct scrub_block *sblock);
223static int scrub_write_page_to_dev_replace(struct scrub_block *sblock,
224 int page_num);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400225static int scrub_checksum_data(struct scrub_block *sblock);
226static int scrub_checksum_tree_block(struct scrub_block *sblock);
227static int scrub_checksum_super(struct scrub_block *sblock);
228static void scrub_block_get(struct scrub_block *sblock);
229static void scrub_block_put(struct scrub_block *sblock);
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100230static void scrub_page_get(struct scrub_page *spage);
231static void scrub_page_put(struct scrub_page *spage);
Miao Xie5a6ac9e2014-11-06 17:20:58 +0800232static void scrub_parity_get(struct scrub_parity *sparity);
233static void scrub_parity_put(struct scrub_parity *sparity);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100234static int scrub_add_page_to_rd_bio(struct scrub_ctx *sctx,
235 struct scrub_page *spage);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100236static int scrub_pages(struct scrub_ctx *sctx, u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100237 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +0100238 u64 gen, int mirror_num, u8 *csum, int force,
239 u64 physical_for_dev_replace);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200240static void scrub_bio_end_io(struct bio *bio);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400241static void scrub_bio_end_io_worker(struct btrfs_work *work);
242static void scrub_block_complete(struct scrub_block *sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100243static void scrub_remap_extent(struct btrfs_fs_info *fs_info,
244 u64 extent_logical, u64 extent_len,
245 u64 *extent_physical,
246 struct btrfs_device **extent_dev,
247 int *extent_mirror_num);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100248static int scrub_add_page_to_wr_bio(struct scrub_ctx *sctx,
249 struct scrub_page *spage);
250static void scrub_wr_submit(struct scrub_ctx *sctx);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200251static void scrub_wr_bio_end_io(struct bio *bio);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100252static void scrub_wr_bio_end_io_worker(struct btrfs_work *work);
Wang Shilongcb7ab022013-12-04 21:16:53 +0800253static void __scrub_blocked_if_needed(struct btrfs_fs_info *fs_info);
Wang Shilong3cb09292013-12-04 21:15:19 +0800254static void scrub_blocked_if_needed(struct btrfs_fs_info *fs_info);
Filipe Mananaf55985f2015-02-09 21:14:24 +0000255static void scrub_put_ctx(struct scrub_ctx *sctx);
Stefan Behrens1623ede2012-03-27 14:21:26 -0400256
Liu Bo762221f2018-01-02 13:36:42 -0700257static inline int scrub_is_page_on_raid56(struct scrub_page *page)
258{
259 return page->recover &&
260 (page->recover->bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK);
261}
Stefan Behrens1623ede2012-03-27 14:21:26 -0400262
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100263static void scrub_pending_bio_inc(struct scrub_ctx *sctx)
264{
Elena Reshetova99f4cdb2017-03-03 10:55:25 +0200265 refcount_inc(&sctx->refs);
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100266 atomic_inc(&sctx->bios_in_flight);
267}
268
269static void scrub_pending_bio_dec(struct scrub_ctx *sctx)
270{
271 atomic_dec(&sctx->bios_in_flight);
272 wake_up(&sctx->list_wait);
Filipe Mananaf55985f2015-02-09 21:14:24 +0000273 scrub_put_ctx(sctx);
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100274}
275
Wang Shilongcb7ab022013-12-04 21:16:53 +0800276static void __scrub_blocked_if_needed(struct btrfs_fs_info *fs_info)
Wang Shilong3cb09292013-12-04 21:15:19 +0800277{
278 while (atomic_read(&fs_info->scrub_pause_req)) {
279 mutex_unlock(&fs_info->scrub_lock);
280 wait_event(fs_info->scrub_pause_wait,
281 atomic_read(&fs_info->scrub_pause_req) == 0);
282 mutex_lock(&fs_info->scrub_lock);
283 }
284}
285
Zhaolei0e22be82015-08-05 16:43:28 +0800286static void scrub_pause_on(struct btrfs_fs_info *fs_info)
Wang Shilongcb7ab022013-12-04 21:16:53 +0800287{
288 atomic_inc(&fs_info->scrubs_paused);
289 wake_up(&fs_info->scrub_pause_wait);
Zhaolei0e22be82015-08-05 16:43:28 +0800290}
Wang Shilongcb7ab022013-12-04 21:16:53 +0800291
Zhaolei0e22be82015-08-05 16:43:28 +0800292static void scrub_pause_off(struct btrfs_fs_info *fs_info)
293{
Wang Shilongcb7ab022013-12-04 21:16:53 +0800294 mutex_lock(&fs_info->scrub_lock);
295 __scrub_blocked_if_needed(fs_info);
296 atomic_dec(&fs_info->scrubs_paused);
297 mutex_unlock(&fs_info->scrub_lock);
298
299 wake_up(&fs_info->scrub_pause_wait);
300}
301
Zhaolei0e22be82015-08-05 16:43:28 +0800302static void scrub_blocked_if_needed(struct btrfs_fs_info *fs_info)
303{
304 scrub_pause_on(fs_info);
305 scrub_pause_off(fs_info);
306}
307
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100308/*
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800309 * Insert new full stripe lock into full stripe locks tree
310 *
311 * Return pointer to existing or newly inserted full_stripe_lock structure if
312 * everything works well.
313 * Return ERR_PTR(-ENOMEM) if we failed to allocate memory
314 *
315 * NOTE: caller must hold full_stripe_locks_root->lock before calling this
316 * function
317 */
318static struct full_stripe_lock *insert_full_stripe_lock(
319 struct btrfs_full_stripe_locks_tree *locks_root,
320 u64 fstripe_logical)
321{
322 struct rb_node **p;
323 struct rb_node *parent = NULL;
324 struct full_stripe_lock *entry;
325 struct full_stripe_lock *ret;
326
David Sterbaa32bf9a2018-03-16 02:21:22 +0100327 lockdep_assert_held(&locks_root->lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800328
329 p = &locks_root->root.rb_node;
330 while (*p) {
331 parent = *p;
332 entry = rb_entry(parent, struct full_stripe_lock, node);
333 if (fstripe_logical < entry->logical) {
334 p = &(*p)->rb_left;
335 } else if (fstripe_logical > entry->logical) {
336 p = &(*p)->rb_right;
337 } else {
338 entry->refs++;
339 return entry;
340 }
341 }
342
Filipe Mananaa5fb1142018-11-26 20:07:17 +0000343 /*
344 * Insert new lock.
Filipe Mananaa5fb1142018-11-26 20:07:17 +0000345 */
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800346 ret = kmalloc(sizeof(*ret), GFP_KERNEL);
347 if (!ret)
348 return ERR_PTR(-ENOMEM);
349 ret->logical = fstripe_logical;
350 ret->refs = 1;
351 mutex_init(&ret->mutex);
352
353 rb_link_node(&ret->node, parent, p);
354 rb_insert_color(&ret->node, &locks_root->root);
355 return ret;
356}
357
358/*
359 * Search for a full stripe lock of a block group
360 *
361 * Return pointer to existing full stripe lock if found
362 * Return NULL if not found
363 */
364static struct full_stripe_lock *search_full_stripe_lock(
365 struct btrfs_full_stripe_locks_tree *locks_root,
366 u64 fstripe_logical)
367{
368 struct rb_node *node;
369 struct full_stripe_lock *entry;
370
David Sterbaa32bf9a2018-03-16 02:21:22 +0100371 lockdep_assert_held(&locks_root->lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800372
373 node = locks_root->root.rb_node;
374 while (node) {
375 entry = rb_entry(node, struct full_stripe_lock, node);
376 if (fstripe_logical < entry->logical)
377 node = node->rb_left;
378 else if (fstripe_logical > entry->logical)
379 node = node->rb_right;
380 else
381 return entry;
382 }
383 return NULL;
384}
385
386/*
387 * Helper to get full stripe logical from a normal bytenr.
388 *
389 * Caller must ensure @cache is a RAID56 block group.
390 */
391static u64 get_full_stripe_logical(struct btrfs_block_group_cache *cache,
392 u64 bytenr)
393{
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 */
406 ret = div64_u64(bytenr - cache->key.objectid, cache->full_stripe_len) *
407 cache->full_stripe_len + cache->key.objectid;
408 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{
425 struct btrfs_block_group_cache *bg_cache;
426 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{
472 struct btrfs_block_group_cache *bg_cache;
473 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;
Liu Bo9e0af232014-08-15 23:36:53 +0800600 btrfs_init_work(&sbio->work, btrfs_scrub_helper,
601 scrub_bio_end_io_worker, NULL, 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
Liu Bo9e0af232014-08-15 23:36:53 +08001722 btrfs_init_work(&sbio->work, btrfs_scrubwrc_helper,
1723 scrub_wr_bio_end_io_worker, NULL, NULL);
Qu Wenruo0339ef22014-02-28 10:46:17 +08001724 btrfs_queue_work(fs_info->scrub_wr_completion_workers, &sbio->work);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001725}
1726
1727static void scrub_wr_bio_end_io_worker(struct btrfs_work *work)
1728{
1729 struct scrub_bio *sbio = container_of(work, struct scrub_bio, work);
1730 struct scrub_ctx *sctx = sbio->sctx;
1731 int i;
1732
1733 WARN_ON(sbio->page_count > SCRUB_PAGES_PER_WR_BIO);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001734 if (sbio->status) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01001735 struct btrfs_dev_replace *dev_replace =
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001736 &sbio->sctx->fs_info->dev_replace;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001737
1738 for (i = 0; i < sbio->page_count; i++) {
1739 struct scrub_page *spage = sbio->pagev[i];
1740
1741 spage->io_error = 1;
David Sterbae37abe92018-04-04 17:20:52 +02001742 atomic64_inc(&dev_replace->num_write_errors);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001743 }
1744 }
1745
1746 for (i = 0; i < sbio->page_count; i++)
1747 scrub_page_put(sbio->pagev[i]);
1748
1749 bio_put(sbio->bio);
1750 kfree(sbio);
1751 scrub_pending_bio_dec(sctx);
1752}
1753
1754static int scrub_checksum(struct scrub_block *sblock)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001755{
1756 u64 flags;
1757 int ret;
1758
Zhao Leiba7cf982015-08-24 21:18:02 +08001759 /*
1760 * No need to initialize these stats currently,
1761 * because this function only use return value
1762 * instead of these stats value.
1763 *
1764 * Todo:
1765 * always use stats
1766 */
1767 sblock->header_error = 0;
1768 sblock->generation_error = 0;
1769 sblock->checksum_error = 0;
1770
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001771 WARN_ON(sblock->page_count < 1);
1772 flags = sblock->pagev[0]->flags;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001773 ret = 0;
1774 if (flags & BTRFS_EXTENT_FLAG_DATA)
1775 ret = scrub_checksum_data(sblock);
1776 else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)
1777 ret = scrub_checksum_tree_block(sblock);
1778 else if (flags & BTRFS_EXTENT_FLAG_SUPER)
1779 (void)scrub_checksum_super(sblock);
1780 else
1781 WARN_ON(1);
1782 if (ret)
1783 scrub_handle_errored_block(sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001784
1785 return ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001786}
1787
1788static int scrub_checksum_data(struct scrub_block *sblock)
1789{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001790 struct scrub_ctx *sctx = sblock->sctx;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001791 struct btrfs_fs_info *fs_info = sctx->fs_info;
1792 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Arne Jansena2de7332011-03-08 14:14:00 +01001793 u8 csum[BTRFS_CSUM_SIZE];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001794 u8 *on_disk_csum;
1795 struct page *page;
1796 void *buffer;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001797 u64 len;
1798 int index;
Arne Jansena2de7332011-03-08 14:14:00 +01001799
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001800 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001801 if (!sblock->pagev[0]->have_csum)
Arne Jansena2de7332011-03-08 14:14:00 +01001802 return 0;
1803
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001804 shash->tfm = fs_info->csum_shash;
1805 crypto_shash_init(shash);
1806
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001807 on_disk_csum = sblock->pagev[0]->csum;
1808 page = sblock->pagev[0]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001809 buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001810
David Sterba25cc1222017-05-16 19:10:41 +02001811 len = sctx->fs_info->sectorsize;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001812 index = 0;
1813 for (;;) {
1814 u64 l = min_t(u64, len, PAGE_SIZE);
1815
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001816 crypto_shash_update(shash, buffer, l);
Linus Torvalds9613beb2012-03-30 12:44:29 -07001817 kunmap_atomic(buffer);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001818 len -= l;
1819 if (len == 0)
1820 break;
1821 index++;
1822 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001823 BUG_ON(!sblock->pagev[index]->page);
1824 page = sblock->pagev[index]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001825 buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001826 }
1827
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001828 crypto_shash_final(shash, csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001829 if (memcmp(csum, on_disk_csum, sctx->csum_size))
Zhao Leiba7cf982015-08-24 21:18:02 +08001830 sblock->checksum_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001831
Zhao Leiba7cf982015-08-24 21:18:02 +08001832 return sblock->checksum_error;
Arne Jansena2de7332011-03-08 14:14:00 +01001833}
1834
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001835static int scrub_checksum_tree_block(struct scrub_block *sblock)
Arne Jansena2de7332011-03-08 14:14:00 +01001836{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001837 struct scrub_ctx *sctx = sblock->sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01001838 struct btrfs_header *h;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001839 struct btrfs_fs_info *fs_info = sctx->fs_info;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001840 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001841 u8 calculated_csum[BTRFS_CSUM_SIZE];
1842 u8 on_disk_csum[BTRFS_CSUM_SIZE];
1843 struct page *page;
1844 void *mapped_buffer;
1845 u64 mapped_size;
1846 void *p;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001847 u64 len;
1848 int index;
1849
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001850 shash->tfm = fs_info->csum_shash;
1851 crypto_shash_init(shash);
1852
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001853 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001854 page = sblock->pagev[0]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001855 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001856 h = (struct btrfs_header *)mapped_buffer;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001857 memcpy(on_disk_csum, h->csum, sctx->csum_size);
Arne Jansena2de7332011-03-08 14:14:00 +01001858
1859 /*
1860 * we don't use the getter functions here, as we
1861 * a) don't have an extent buffer and
1862 * b) the page is already kmapped
1863 */
Qu Wenruo3cae2102013-07-16 11:19:18 +08001864 if (sblock->pagev[0]->logical != btrfs_stack_header_bytenr(h))
Zhao Leiba7cf982015-08-24 21:18:02 +08001865 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001866
Zhao Leiba7cf982015-08-24 21:18:02 +08001867 if (sblock->pagev[0]->generation != btrfs_stack_header_generation(h)) {
1868 sblock->header_error = 1;
1869 sblock->generation_error = 1;
1870 }
Arne Jansena2de7332011-03-08 14:14:00 +01001871
Miao Xie17a9be22014-07-24 11:37:08 +08001872 if (!scrub_check_fsid(h->fsid, sblock->pagev[0]))
Zhao Leiba7cf982015-08-24 21:18:02 +08001873 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001874
1875 if (memcmp(h->chunk_tree_uuid, fs_info->chunk_tree_uuid,
1876 BTRFS_UUID_SIZE))
Zhao Leiba7cf982015-08-24 21:18:02 +08001877 sblock->header_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001878
David Sterba25cc1222017-05-16 19:10:41 +02001879 len = sctx->fs_info->nodesize - BTRFS_CSUM_SIZE;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001880 mapped_size = PAGE_SIZE - BTRFS_CSUM_SIZE;
1881 p = ((u8 *)mapped_buffer) + BTRFS_CSUM_SIZE;
1882 index = 0;
1883 for (;;) {
1884 u64 l = min_t(u64, len, mapped_size);
1885
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001886 crypto_shash_update(shash, p, l);
Linus Torvalds9613beb2012-03-30 12:44:29 -07001887 kunmap_atomic(mapped_buffer);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001888 len -= l;
1889 if (len == 0)
1890 break;
1891 index++;
1892 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001893 BUG_ON(!sblock->pagev[index]->page);
1894 page = sblock->pagev[index]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001895 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001896 mapped_size = PAGE_SIZE;
1897 p = mapped_buffer;
1898 }
1899
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001900 crypto_shash_final(shash, calculated_csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001901 if (memcmp(calculated_csum, on_disk_csum, sctx->csum_size))
Zhao Leiba7cf982015-08-24 21:18:02 +08001902 sblock->checksum_error = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01001903
Zhao Leiba7cf982015-08-24 21:18:02 +08001904 return sblock->header_error || sblock->checksum_error;
Arne Jansena2de7332011-03-08 14:14:00 +01001905}
1906
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001907static int scrub_checksum_super(struct scrub_block *sblock)
Arne Jansena2de7332011-03-08 14:14:00 +01001908{
1909 struct btrfs_super_block *s;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001910 struct scrub_ctx *sctx = sblock->sctx;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001911 struct btrfs_fs_info *fs_info = sctx->fs_info;
1912 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001913 u8 calculated_csum[BTRFS_CSUM_SIZE];
1914 u8 on_disk_csum[BTRFS_CSUM_SIZE];
1915 struct page *page;
1916 void *mapped_buffer;
1917 u64 mapped_size;
1918 void *p;
Stefan Behrens442a4f62012-05-25 16:06:08 +02001919 int fail_gen = 0;
1920 int fail_cor = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001921 u64 len;
1922 int index;
Arne Jansena2de7332011-03-08 14:14:00 +01001923
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001924 shash->tfm = fs_info->csum_shash;
1925 crypto_shash_init(shash);
1926
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001927 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001928 page = sblock->pagev[0]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001929 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001930 s = (struct btrfs_super_block *)mapped_buffer;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001931 memcpy(on_disk_csum, s->csum, sctx->csum_size);
Arne Jansena2de7332011-03-08 14:14:00 +01001932
Qu Wenruo3cae2102013-07-16 11:19:18 +08001933 if (sblock->pagev[0]->logical != btrfs_super_bytenr(s))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001934 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001935
Qu Wenruo3cae2102013-07-16 11:19:18 +08001936 if (sblock->pagev[0]->generation != btrfs_super_generation(s))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001937 ++fail_gen;
Arne Jansena2de7332011-03-08 14:14:00 +01001938
Miao Xie17a9be22014-07-24 11:37:08 +08001939 if (!scrub_check_fsid(s->fsid, sblock->pagev[0]))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001940 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001941
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001942 len = BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE;
1943 mapped_size = PAGE_SIZE - BTRFS_CSUM_SIZE;
1944 p = ((u8 *)mapped_buffer) + BTRFS_CSUM_SIZE;
1945 index = 0;
1946 for (;;) {
1947 u64 l = min_t(u64, len, mapped_size);
1948
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001949 crypto_shash_update(shash, p, l);
Linus Torvalds9613beb2012-03-30 12:44:29 -07001950 kunmap_atomic(mapped_buffer);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001951 len -= l;
1952 if (len == 0)
1953 break;
1954 index++;
1955 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001956 BUG_ON(!sblock->pagev[index]->page);
1957 page = sblock->pagev[index]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001958 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001959 mapped_size = PAGE_SIZE;
1960 p = mapped_buffer;
1961 }
1962
Johannes Thumshirnd5178572019-06-03 16:58:57 +02001963 crypto_shash_final(shash, calculated_csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001964 if (memcmp(calculated_csum, on_disk_csum, sctx->csum_size))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001965 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001966
Stefan Behrens442a4f62012-05-25 16:06:08 +02001967 if (fail_cor + fail_gen) {
Arne Jansena2de7332011-03-08 14:14:00 +01001968 /*
1969 * if we find an error in a super block, we just report it.
1970 * They will get written with the next transaction commit
1971 * anyway
1972 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001973 spin_lock(&sctx->stat_lock);
1974 ++sctx->stat.super_errors;
1975 spin_unlock(&sctx->stat_lock);
Stefan Behrens442a4f62012-05-25 16:06:08 +02001976 if (fail_cor)
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001977 btrfs_dev_stat_inc_and_print(sblock->pagev[0]->dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +02001978 BTRFS_DEV_STAT_CORRUPTION_ERRS);
1979 else
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001980 btrfs_dev_stat_inc_and_print(sblock->pagev[0]->dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +02001981 BTRFS_DEV_STAT_GENERATION_ERRS);
Arne Jansena2de7332011-03-08 14:14:00 +01001982 }
1983
Stefan Behrens442a4f62012-05-25 16:06:08 +02001984 return fail_cor + fail_gen;
Arne Jansena2de7332011-03-08 14:14:00 +01001985}
1986
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001987static void scrub_block_get(struct scrub_block *sblock)
1988{
Elena Reshetova186debd2017-03-03 10:55:23 +02001989 refcount_inc(&sblock->refs);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001990}
1991
1992static void scrub_block_put(struct scrub_block *sblock)
1993{
Elena Reshetova186debd2017-03-03 10:55:23 +02001994 if (refcount_dec_and_test(&sblock->refs)) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001995 int i;
1996
Miao Xie5a6ac9e2014-11-06 17:20:58 +08001997 if (sblock->sparity)
1998 scrub_parity_put(sblock->sparity);
1999
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002000 for (i = 0; i < sblock->page_count; i++)
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002001 scrub_page_put(sblock->pagev[i]);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002002 kfree(sblock);
2003 }
2004}
2005
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002006static void scrub_page_get(struct scrub_page *spage)
2007{
Zhao Lei57019342015-01-20 15:11:45 +08002008 atomic_inc(&spage->refs);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002009}
2010
2011static void scrub_page_put(struct scrub_page *spage)
2012{
Zhao Lei57019342015-01-20 15:11:45 +08002013 if (atomic_dec_and_test(&spage->refs)) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002014 if (spage->page)
2015 __free_page(spage->page);
2016 kfree(spage);
2017 }
2018}
2019
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002020static void scrub_submit(struct scrub_ctx *sctx)
Arne Jansena2de7332011-03-08 14:14:00 +01002021{
2022 struct scrub_bio *sbio;
2023
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002024 if (sctx->curr == -1)
Stefan Behrens1623ede2012-03-27 14:21:26 -04002025 return;
Arne Jansena2de7332011-03-08 14:14:00 +01002026
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002027 sbio = sctx->bios[sctx->curr];
2028 sctx->curr = -1;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002029 scrub_pending_bio_inc(sctx);
Mike Christie4e49ea42016-06-05 14:31:41 -05002030 btrfsic_submit_bio(sbio->bio);
Arne Jansena2de7332011-03-08 14:14:00 +01002031}
2032
Stefan Behrensff023aa2012-11-06 11:43:11 +01002033static int scrub_add_page_to_rd_bio(struct scrub_ctx *sctx,
2034 struct scrub_page *spage)
Arne Jansena2de7332011-03-08 14:14:00 +01002035{
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002036 struct scrub_block *sblock = spage->sblock;
Arne Jansena2de7332011-03-08 14:14:00 +01002037 struct scrub_bio *sbio;
Arne Jansen69f4cb52011-11-11 08:17:10 -05002038 int ret;
Arne Jansena2de7332011-03-08 14:14:00 +01002039
2040again:
2041 /*
2042 * grab a fresh bio or wait for one to become available
2043 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002044 while (sctx->curr == -1) {
2045 spin_lock(&sctx->list_lock);
2046 sctx->curr = sctx->first_free;
2047 if (sctx->curr != -1) {
2048 sctx->first_free = sctx->bios[sctx->curr]->next_free;
2049 sctx->bios[sctx->curr]->next_free = -1;
2050 sctx->bios[sctx->curr]->page_count = 0;
2051 spin_unlock(&sctx->list_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01002052 } else {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002053 spin_unlock(&sctx->list_lock);
2054 wait_event(sctx->list_wait, sctx->first_free != -1);
Arne Jansena2de7332011-03-08 14:14:00 +01002055 }
2056 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002057 sbio = sctx->bios[sctx->curr];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002058 if (sbio->page_count == 0) {
Arne Jansen69f4cb52011-11-11 08:17:10 -05002059 struct bio *bio;
2060
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002061 sbio->physical = spage->physical;
2062 sbio->logical = spage->logical;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002063 sbio->dev = spage->dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002064 bio = sbio->bio;
2065 if (!bio) {
David Sterbac5e4c3d2017-06-12 17:29:41 +02002066 bio = btrfs_io_bio_alloc(sctx->pages_per_rd_bio);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002067 sbio->bio = bio;
2068 }
Arne Jansen69f4cb52011-11-11 08:17:10 -05002069
2070 bio->bi_private = sbio;
2071 bio->bi_end_io = scrub_bio_end_io;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002072 bio_set_dev(bio, sbio->dev->bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002073 bio->bi_iter.bi_sector = sbio->physical >> 9;
David Sterbaebcc3262018-06-29 10:56:53 +02002074 bio->bi_opf = REQ_OP_READ;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002075 sbio->status = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002076 } else if (sbio->physical + sbio->page_count * PAGE_SIZE !=
2077 spage->physical ||
2078 sbio->logical + sbio->page_count * PAGE_SIZE !=
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002079 spage->logical ||
2080 sbio->dev != spage->dev) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002081 scrub_submit(sctx);
Arne Jansen69f4cb52011-11-11 08:17:10 -05002082 goto again;
2083 }
2084
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002085 sbio->pagev[sbio->page_count] = spage;
2086 ret = bio_add_page(sbio->bio, spage->page, PAGE_SIZE, 0);
2087 if (ret != PAGE_SIZE) {
2088 if (sbio->page_count < 1) {
2089 bio_put(sbio->bio);
2090 sbio->bio = NULL;
2091 return -EIO;
2092 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002093 scrub_submit(sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002094 goto again;
Arne Jansena2de7332011-03-08 14:14:00 +01002095 }
Arne Jansen1bc87792011-05-28 21:57:55 +02002096
Stefan Behrensff023aa2012-11-06 11:43:11 +01002097 scrub_block_get(sblock); /* one for the page added to the bio */
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002098 atomic_inc(&sblock->outstanding_pages);
2099 sbio->page_count++;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002100 if (sbio->page_count == sctx->pages_per_rd_bio)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002101 scrub_submit(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01002102
2103 return 0;
2104}
2105
Linus Torvalds22365972015-09-05 15:14:43 -07002106static void scrub_missing_raid56_end_io(struct bio *bio)
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002107{
2108 struct scrub_block *sblock = bio->bi_private;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002109 struct btrfs_fs_info *fs_info = sblock->sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002110
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002111 if (bio->bi_status)
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002112 sblock->no_io_error_seen = 0;
2113
Scott Talbert46732722016-05-09 09:14:28 -04002114 bio_put(bio);
2115
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002116 btrfs_queue_work(fs_info->scrub_workers, &sblock->work);
2117}
2118
2119static void scrub_missing_raid56_worker(struct btrfs_work *work)
2120{
2121 struct scrub_block *sblock = container_of(work, struct scrub_block, work);
2122 struct scrub_ctx *sctx = sblock->sctx;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002123 struct btrfs_fs_info *fs_info = sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002124 u64 logical;
2125 struct btrfs_device *dev;
2126
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002127 logical = sblock->pagev[0]->logical;
2128 dev = sblock->pagev[0]->dev;
2129
Zhao Leiaffe4a52015-08-24 21:32:06 +08002130 if (sblock->no_io_error_seen)
Zhao Leiba7cf982015-08-24 21:18:02 +08002131 scrub_recheck_block_checksum(sblock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002132
2133 if (!sblock->no_io_error_seen) {
2134 spin_lock(&sctx->stat_lock);
2135 sctx->stat.read_errors++;
2136 spin_unlock(&sctx->stat_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002137 btrfs_err_rl_in_rcu(fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02002138 "IO error rebuilding logical %llu for dev %s",
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002139 logical, rcu_str_deref(dev->name));
2140 } else if (sblock->header_error || sblock->checksum_error) {
2141 spin_lock(&sctx->stat_lock);
2142 sctx->stat.uncorrectable_errors++;
2143 spin_unlock(&sctx->stat_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002144 btrfs_err_rl_in_rcu(fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02002145 "failed to rebuild valid logical %llu for dev %s",
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002146 logical, rcu_str_deref(dev->name));
2147 } else {
2148 scrub_write_block_to_dev_replace(sblock);
2149 }
2150
2151 scrub_block_put(sblock);
2152
David Sterba2073c4c2017-03-31 17:12:51 +02002153 if (sctx->is_dev_replace && sctx->flush_all_writes) {
David Sterba3fb99302017-05-16 19:10:32 +02002154 mutex_lock(&sctx->wr_lock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002155 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02002156 mutex_unlock(&sctx->wr_lock);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002157 }
2158
2159 scrub_pending_bio_dec(sctx);
2160}
2161
2162static void scrub_missing_raid56_pages(struct scrub_block *sblock)
2163{
2164 struct scrub_ctx *sctx = sblock->sctx;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002165 struct btrfs_fs_info *fs_info = sctx->fs_info;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002166 u64 length = sblock->page_count * PAGE_SIZE;
2167 u64 logical = sblock->pagev[0]->logical;
Zhao Leif1fee652016-05-17 17:37:38 +08002168 struct btrfs_bio *bbio = NULL;
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002169 struct bio *bio;
2170 struct btrfs_raid_bio *rbio;
2171 int ret;
2172 int i;
2173
Qu Wenruoae6529c2017-03-29 09:33:21 +08002174 btrfs_bio_counter_inc_blocked(fs_info);
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02002175 ret = btrfs_map_sblock(fs_info, BTRFS_MAP_GET_READ_MIRRORS, logical,
David Sterba825ad4c2017-03-28 14:45:22 +02002176 &length, &bbio);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002177 if (ret || !bbio || !bbio->raid_map)
2178 goto bbio_out;
2179
2180 if (WARN_ON(!sctx->is_dev_replace ||
2181 !(bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK))) {
2182 /*
2183 * We shouldn't be scrubbing a missing device. Even for dev
2184 * replace, we should only get here for RAID 5/6. We either
2185 * managed to mount something with no mirrors remaining or
2186 * there's a bug in scrub_remap_extent()/btrfs_map_block().
2187 */
2188 goto bbio_out;
2189 }
2190
David Sterbac5e4c3d2017-06-12 17:29:41 +02002191 bio = btrfs_io_bio_alloc(0);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002192 bio->bi_iter.bi_sector = logical >> 9;
2193 bio->bi_private = sblock;
2194 bio->bi_end_io = scrub_missing_raid56_end_io;
2195
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002196 rbio = raid56_alloc_missing_rbio(fs_info, bio, bbio, length);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002197 if (!rbio)
2198 goto rbio_out;
2199
2200 for (i = 0; i < sblock->page_count; i++) {
2201 struct scrub_page *spage = sblock->pagev[i];
2202
2203 raid56_add_scrub_pages(rbio, spage->page, spage->logical);
2204 }
2205
2206 btrfs_init_work(&sblock->work, btrfs_scrub_helper,
2207 scrub_missing_raid56_worker, NULL, NULL);
2208 scrub_block_get(sblock);
2209 scrub_pending_bio_inc(sctx);
2210 raid56_submit_missing_rbio(rbio);
2211 return;
2212
2213rbio_out:
2214 bio_put(bio);
2215bbio_out:
Qu Wenruoae6529c2017-03-29 09:33:21 +08002216 btrfs_bio_counter_dec(fs_info);
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002217 btrfs_put_bbio(bbio);
2218 spin_lock(&sctx->stat_lock);
2219 sctx->stat.malloc_errors++;
2220 spin_unlock(&sctx->stat_lock);
2221}
2222
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002223static int scrub_pages(struct scrub_ctx *sctx, u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002224 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002225 u64 gen, int mirror_num, u8 *csum, int force,
2226 u64 physical_for_dev_replace)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002227{
2228 struct scrub_block *sblock;
2229 int index;
2230
David Sterba58c4e172016-02-11 10:49:42 +01002231 sblock = kzalloc(sizeof(*sblock), GFP_KERNEL);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002232 if (!sblock) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002233 spin_lock(&sctx->stat_lock);
2234 sctx->stat.malloc_errors++;
2235 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002236 return -ENOMEM;
2237 }
2238
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002239 /* one ref inside this function, plus one for each page added to
2240 * a bio later on */
Elena Reshetova186debd2017-03-03 10:55:23 +02002241 refcount_set(&sblock->refs, 1);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002242 sblock->sctx = sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002243 sblock->no_io_error_seen = 1;
2244
2245 for (index = 0; len > 0; index++) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002246 struct scrub_page *spage;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002247 u64 l = min_t(u64, len, PAGE_SIZE);
2248
David Sterba58c4e172016-02-11 10:49:42 +01002249 spage = kzalloc(sizeof(*spage), GFP_KERNEL);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002250 if (!spage) {
2251leave_nomem:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002252 spin_lock(&sctx->stat_lock);
2253 sctx->stat.malloc_errors++;
2254 spin_unlock(&sctx->stat_lock);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002255 scrub_block_put(sblock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002256 return -ENOMEM;
2257 }
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002258 BUG_ON(index >= SCRUB_MAX_PAGES_PER_BLOCK);
2259 scrub_page_get(spage);
2260 sblock->pagev[index] = spage;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002261 spage->sblock = sblock;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002262 spage->dev = dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002263 spage->flags = flags;
2264 spage->generation = gen;
2265 spage->logical = logical;
2266 spage->physical = physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002267 spage->physical_for_dev_replace = physical_for_dev_replace;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002268 spage->mirror_num = mirror_num;
2269 if (csum) {
2270 spage->have_csum = 1;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002271 memcpy(spage->csum, csum, sctx->csum_size);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002272 } else {
2273 spage->have_csum = 0;
2274 }
2275 sblock->page_count++;
David Sterba58c4e172016-02-11 10:49:42 +01002276 spage->page = alloc_page(GFP_KERNEL);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002277 if (!spage->page)
2278 goto leave_nomem;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002279 len -= l;
2280 logical += l;
2281 physical += l;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002282 physical_for_dev_replace += l;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002283 }
2284
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002285 WARN_ON(sblock->page_count == 0);
Anand Jaine6e674b2017-12-04 12:54:54 +08002286 if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state)) {
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002287 /*
2288 * This case should only be hit for RAID 5/6 device replace. See
2289 * the comment in scrub_missing_raid56_pages() for details.
2290 */
2291 scrub_missing_raid56_pages(sblock);
2292 } else {
2293 for (index = 0; index < sblock->page_count; index++) {
2294 struct scrub_page *spage = sblock->pagev[index];
2295 int ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002296
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002297 ret = scrub_add_page_to_rd_bio(sctx, spage);
2298 if (ret) {
2299 scrub_block_put(sblock);
2300 return ret;
2301 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002302 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002303
Omar Sandoval73ff61d2015-06-19 11:52:51 -07002304 if (force)
2305 scrub_submit(sctx);
2306 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002307
2308 /* last one frees, either here or in bio completion for last page */
2309 scrub_block_put(sblock);
2310 return 0;
2311}
2312
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002313static void scrub_bio_end_io(struct bio *bio)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002314{
2315 struct scrub_bio *sbio = bio->bi_private;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002316 struct btrfs_fs_info *fs_info = sbio->dev->fs_info;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002317
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002318 sbio->status = bio->bi_status;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002319 sbio->bio = bio;
2320
Qu Wenruo0339ef22014-02-28 10:46:17 +08002321 btrfs_queue_work(fs_info->scrub_workers, &sbio->work);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002322}
2323
2324static void scrub_bio_end_io_worker(struct btrfs_work *work)
2325{
2326 struct scrub_bio *sbio = container_of(work, struct scrub_bio, work);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002327 struct scrub_ctx *sctx = sbio->sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002328 int i;
2329
Stefan Behrensff023aa2012-11-06 11:43:11 +01002330 BUG_ON(sbio->page_count > SCRUB_PAGES_PER_RD_BIO);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002331 if (sbio->status) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002332 for (i = 0; i < sbio->page_count; i++) {
2333 struct scrub_page *spage = sbio->pagev[i];
2334
2335 spage->io_error = 1;
2336 spage->sblock->no_io_error_seen = 0;
2337 }
2338 }
2339
2340 /* now complete the scrub_block items that have all pages completed */
2341 for (i = 0; i < sbio->page_count; i++) {
2342 struct scrub_page *spage = sbio->pagev[i];
2343 struct scrub_block *sblock = spage->sblock;
2344
2345 if (atomic_dec_and_test(&sblock->outstanding_pages))
2346 scrub_block_complete(sblock);
2347 scrub_block_put(sblock);
2348 }
2349
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002350 bio_put(sbio->bio);
2351 sbio->bio = NULL;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002352 spin_lock(&sctx->list_lock);
2353 sbio->next_free = sctx->first_free;
2354 sctx->first_free = sbio->index;
2355 spin_unlock(&sctx->list_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002356
David Sterba2073c4c2017-03-31 17:12:51 +02002357 if (sctx->is_dev_replace && sctx->flush_all_writes) {
David Sterba3fb99302017-05-16 19:10:32 +02002358 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002359 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02002360 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002361 }
2362
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002363 scrub_pending_bio_dec(sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002364}
2365
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002366static inline void __scrub_mark_bitmap(struct scrub_parity *sparity,
2367 unsigned long *bitmap,
2368 u64 start, u64 len)
2369{
Liu Bo972d7212017-04-03 13:45:33 -07002370 u64 offset;
David Sterba7736b0a2017-03-31 18:02:48 +02002371 u64 nsectors64;
2372 u32 nsectors;
Jeff Mahoneyda170662016-06-15 09:22:56 -04002373 int sectorsize = sparity->sctx->fs_info->sectorsize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002374
2375 if (len >= sparity->stripe_len) {
2376 bitmap_set(bitmap, 0, sparity->nsectors);
2377 return;
2378 }
2379
2380 start -= sparity->logic_start;
Liu Bo972d7212017-04-03 13:45:33 -07002381 start = div64_u64_rem(start, sparity->stripe_len, &offset);
2382 offset = div_u64(offset, sectorsize);
David Sterba7736b0a2017-03-31 18:02:48 +02002383 nsectors64 = div_u64(len, sectorsize);
2384
2385 ASSERT(nsectors64 < UINT_MAX);
2386 nsectors = (u32)nsectors64;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002387
2388 if (offset + nsectors <= sparity->nsectors) {
2389 bitmap_set(bitmap, offset, nsectors);
2390 return;
2391 }
2392
2393 bitmap_set(bitmap, offset, sparity->nsectors - offset);
2394 bitmap_set(bitmap, 0, nsectors - (sparity->nsectors - offset));
2395}
2396
2397static inline void scrub_parity_mark_sectors_error(struct scrub_parity *sparity,
2398 u64 start, u64 len)
2399{
2400 __scrub_mark_bitmap(sparity, sparity->ebitmap, start, len);
2401}
2402
2403static inline void scrub_parity_mark_sectors_data(struct scrub_parity *sparity,
2404 u64 start, u64 len)
2405{
2406 __scrub_mark_bitmap(sparity, sparity->dbitmap, start, len);
2407}
2408
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002409static void scrub_block_complete(struct scrub_block *sblock)
2410{
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002411 int corrupted = 0;
2412
Stefan Behrensff023aa2012-11-06 11:43:11 +01002413 if (!sblock->no_io_error_seen) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002414 corrupted = 1;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002415 scrub_handle_errored_block(sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002416 } else {
2417 /*
2418 * if has checksum error, write via repair mechanism in
2419 * dev replace case, otherwise write here in dev replace
2420 * case.
2421 */
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002422 corrupted = scrub_checksum(sblock);
2423 if (!corrupted && sblock->sctx->is_dev_replace)
Stefan Behrensff023aa2012-11-06 11:43:11 +01002424 scrub_write_block_to_dev_replace(sblock);
2425 }
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002426
2427 if (sblock->sparity && corrupted && !sblock->data_corrected) {
2428 u64 start = sblock->pagev[0]->logical;
2429 u64 end = sblock->pagev[sblock->page_count - 1]->logical +
2430 PAGE_SIZE;
2431
2432 scrub_parity_mark_sectors_error(sblock->sparity,
2433 start, end - start);
2434 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002435}
2436
Zhao Lei3b5753e2015-08-24 22:03:02 +08002437static int scrub_find_csum(struct scrub_ctx *sctx, u64 logical, u8 *csum)
Arne Jansena2de7332011-03-08 14:14:00 +01002438{
2439 struct btrfs_ordered_sum *sum = NULL;
Miao Xief51a4a12013-06-19 10:36:09 +08002440 unsigned long index;
Arne Jansena2de7332011-03-08 14:14:00 +01002441 unsigned long num_sectors;
Arne Jansena2de7332011-03-08 14:14:00 +01002442
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002443 while (!list_empty(&sctx->csum_list)) {
2444 sum = list_first_entry(&sctx->csum_list,
Arne Jansena2de7332011-03-08 14:14:00 +01002445 struct btrfs_ordered_sum, list);
2446 if (sum->bytenr > logical)
2447 return 0;
2448 if (sum->bytenr + sum->len > logical)
2449 break;
2450
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002451 ++sctx->stat.csum_discards;
Arne Jansena2de7332011-03-08 14:14:00 +01002452 list_del(&sum->list);
2453 kfree(sum);
2454 sum = NULL;
2455 }
2456 if (!sum)
2457 return 0;
2458
David Sterba1d1bf922017-03-31 18:02:48 +02002459 index = div_u64(logical - sum->bytenr, sctx->fs_info->sectorsize);
2460 ASSERT(index < UINT_MAX);
2461
David Sterba25cc1222017-05-16 19:10:41 +02002462 num_sectors = sum->len / sctx->fs_info->sectorsize;
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +02002463 memcpy(csum, sum->sums + index * sctx->csum_size, sctx->csum_size);
Miao Xief51a4a12013-06-19 10:36:09 +08002464 if (index == num_sectors - 1) {
Arne Jansena2de7332011-03-08 14:14:00 +01002465 list_del(&sum->list);
2466 kfree(sum);
2467 }
Miao Xief51a4a12013-06-19 10:36:09 +08002468 return 1;
Arne Jansena2de7332011-03-08 14:14:00 +01002469}
2470
2471/* scrub extent tries to collect up to 64 kB for each bio */
Liu Bo6ca17652018-03-07 12:08:09 -07002472static int scrub_extent(struct scrub_ctx *sctx, struct map_lookup *map,
2473 u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002474 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002475 u64 gen, int mirror_num, u64 physical_for_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01002476{
2477 int ret;
2478 u8 csum[BTRFS_CSUM_SIZE];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002479 u32 blocksize;
2480
2481 if (flags & BTRFS_EXTENT_FLAG_DATA) {
Liu Bo6ca17652018-03-07 12:08:09 -07002482 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
2483 blocksize = map->stripe_len;
2484 else
2485 blocksize = sctx->fs_info->sectorsize;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002486 spin_lock(&sctx->stat_lock);
2487 sctx->stat.data_extents_scrubbed++;
2488 sctx->stat.data_bytes_scrubbed += len;
2489 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002490 } else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Liu Bo6ca17652018-03-07 12:08:09 -07002491 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
2492 blocksize = map->stripe_len;
2493 else
2494 blocksize = sctx->fs_info->nodesize;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002495 spin_lock(&sctx->stat_lock);
2496 sctx->stat.tree_extents_scrubbed++;
2497 sctx->stat.tree_bytes_scrubbed += len;
2498 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002499 } else {
David Sterba25cc1222017-05-16 19:10:41 +02002500 blocksize = sctx->fs_info->sectorsize;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002501 WARN_ON(1);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002502 }
Arne Jansena2de7332011-03-08 14:14:00 +01002503
2504 while (len) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002505 u64 l = min_t(u64, len, blocksize);
Arne Jansena2de7332011-03-08 14:14:00 +01002506 int have_csum = 0;
2507
2508 if (flags & BTRFS_EXTENT_FLAG_DATA) {
2509 /* push csums to sbio */
Zhao Lei3b5753e2015-08-24 22:03:02 +08002510 have_csum = scrub_find_csum(sctx, logical, csum);
Arne Jansena2de7332011-03-08 14:14:00 +01002511 if (have_csum == 0)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002512 ++sctx->stat.no_csum;
Arne Jansena2de7332011-03-08 14:14:00 +01002513 }
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002514 ret = scrub_pages(sctx, logical, l, physical, dev, flags, gen,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002515 mirror_num, have_csum ? csum : NULL, 0,
2516 physical_for_dev_replace);
Arne Jansena2de7332011-03-08 14:14:00 +01002517 if (ret)
2518 return ret;
2519 len -= l;
2520 logical += l;
2521 physical += l;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002522 physical_for_dev_replace += l;
Arne Jansena2de7332011-03-08 14:14:00 +01002523 }
2524 return 0;
2525}
2526
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002527static int scrub_pages_for_parity(struct scrub_parity *sparity,
2528 u64 logical, u64 len,
2529 u64 physical, struct btrfs_device *dev,
2530 u64 flags, u64 gen, int mirror_num, u8 *csum)
2531{
2532 struct scrub_ctx *sctx = sparity->sctx;
2533 struct scrub_block *sblock;
2534 int index;
2535
David Sterba58c4e172016-02-11 10:49:42 +01002536 sblock = kzalloc(sizeof(*sblock), GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002537 if (!sblock) {
2538 spin_lock(&sctx->stat_lock);
2539 sctx->stat.malloc_errors++;
2540 spin_unlock(&sctx->stat_lock);
2541 return -ENOMEM;
2542 }
2543
2544 /* one ref inside this function, plus one for each page added to
2545 * a bio later on */
Elena Reshetova186debd2017-03-03 10:55:23 +02002546 refcount_set(&sblock->refs, 1);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002547 sblock->sctx = sctx;
2548 sblock->no_io_error_seen = 1;
2549 sblock->sparity = sparity;
2550 scrub_parity_get(sparity);
2551
2552 for (index = 0; len > 0; index++) {
2553 struct scrub_page *spage;
2554 u64 l = min_t(u64, len, PAGE_SIZE);
2555
David Sterba58c4e172016-02-11 10:49:42 +01002556 spage = kzalloc(sizeof(*spage), GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002557 if (!spage) {
2558leave_nomem:
2559 spin_lock(&sctx->stat_lock);
2560 sctx->stat.malloc_errors++;
2561 spin_unlock(&sctx->stat_lock);
2562 scrub_block_put(sblock);
2563 return -ENOMEM;
2564 }
2565 BUG_ON(index >= SCRUB_MAX_PAGES_PER_BLOCK);
2566 /* For scrub block */
2567 scrub_page_get(spage);
2568 sblock->pagev[index] = spage;
2569 /* For scrub parity */
2570 scrub_page_get(spage);
2571 list_add_tail(&spage->list, &sparity->spages);
2572 spage->sblock = sblock;
2573 spage->dev = dev;
2574 spage->flags = flags;
2575 spage->generation = gen;
2576 spage->logical = logical;
2577 spage->physical = physical;
2578 spage->mirror_num = mirror_num;
2579 if (csum) {
2580 spage->have_csum = 1;
2581 memcpy(spage->csum, csum, sctx->csum_size);
2582 } else {
2583 spage->have_csum = 0;
2584 }
2585 sblock->page_count++;
David Sterba58c4e172016-02-11 10:49:42 +01002586 spage->page = alloc_page(GFP_KERNEL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002587 if (!spage->page)
2588 goto leave_nomem;
2589 len -= l;
2590 logical += l;
2591 physical += l;
2592 }
2593
2594 WARN_ON(sblock->page_count == 0);
2595 for (index = 0; index < sblock->page_count; index++) {
2596 struct scrub_page *spage = sblock->pagev[index];
2597 int ret;
2598
2599 ret = scrub_add_page_to_rd_bio(sctx, spage);
2600 if (ret) {
2601 scrub_block_put(sblock);
2602 return ret;
2603 }
2604 }
2605
2606 /* last one frees, either here or in bio completion for last page */
2607 scrub_block_put(sblock);
2608 return 0;
2609}
2610
2611static int scrub_extent_for_parity(struct scrub_parity *sparity,
2612 u64 logical, u64 len,
2613 u64 physical, struct btrfs_device *dev,
2614 u64 flags, u64 gen, int mirror_num)
2615{
2616 struct scrub_ctx *sctx = sparity->sctx;
2617 int ret;
2618 u8 csum[BTRFS_CSUM_SIZE];
2619 u32 blocksize;
2620
Anand Jaine6e674b2017-12-04 12:54:54 +08002621 if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state)) {
Omar Sandoval4a770892015-06-19 11:52:52 -07002622 scrub_parity_mark_sectors_error(sparity, logical, len);
2623 return 0;
2624 }
2625
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002626 if (flags & BTRFS_EXTENT_FLAG_DATA) {
Liu Bo6ca17652018-03-07 12:08:09 -07002627 blocksize = sparity->stripe_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002628 } else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Liu Bo6ca17652018-03-07 12:08:09 -07002629 blocksize = sparity->stripe_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002630 } else {
David Sterba25cc1222017-05-16 19:10:41 +02002631 blocksize = sctx->fs_info->sectorsize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002632 WARN_ON(1);
2633 }
2634
2635 while (len) {
2636 u64 l = min_t(u64, len, blocksize);
2637 int have_csum = 0;
2638
2639 if (flags & BTRFS_EXTENT_FLAG_DATA) {
2640 /* push csums to sbio */
Zhao Lei3b5753e2015-08-24 22:03:02 +08002641 have_csum = scrub_find_csum(sctx, logical, csum);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002642 if (have_csum == 0)
2643 goto skip;
2644 }
2645 ret = scrub_pages_for_parity(sparity, logical, l, physical, dev,
2646 flags, gen, mirror_num,
2647 have_csum ? csum : NULL);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002648 if (ret)
2649 return ret;
Dan Carpenter6b6d24b2014-12-12 22:30:00 +03002650skip:
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002651 len -= l;
2652 logical += l;
2653 physical += l;
2654 }
2655 return 0;
2656}
2657
Wang Shilong3b080b22014-04-01 18:01:43 +08002658/*
2659 * Given a physical address, this will calculate it's
2660 * logical offset. if this is a parity stripe, it will return
2661 * the most left data stripe's logical offset.
2662 *
2663 * return 0 if it is a data stripe, 1 means parity stripe.
2664 */
2665static int get_raid56_logic_offset(u64 physical, int num,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002666 struct map_lookup *map, u64 *offset,
2667 u64 *stripe_start)
Wang Shilong3b080b22014-04-01 18:01:43 +08002668{
2669 int i;
2670 int j = 0;
2671 u64 stripe_nr;
2672 u64 last_offset;
David Sterba9d644a62015-02-20 18:42:11 +01002673 u32 stripe_index;
2674 u32 rot;
David Sterbacff82672019-05-17 11:43:45 +02002675 const int data_stripes = nr_data_stripes(map);
Wang Shilong3b080b22014-04-01 18:01:43 +08002676
David Sterbacff82672019-05-17 11:43:45 +02002677 last_offset = (physical - map->stripes[num].physical) * data_stripes;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002678 if (stripe_start)
2679 *stripe_start = last_offset;
2680
Wang Shilong3b080b22014-04-01 18:01:43 +08002681 *offset = last_offset;
David Sterbacff82672019-05-17 11:43:45 +02002682 for (i = 0; i < data_stripes; i++) {
Wang Shilong3b080b22014-04-01 18:01:43 +08002683 *offset = last_offset + i * map->stripe_len;
2684
Liu Bo42c61ab2017-04-03 13:45:24 -07002685 stripe_nr = div64_u64(*offset, map->stripe_len);
David Sterbacff82672019-05-17 11:43:45 +02002686 stripe_nr = div_u64(stripe_nr, data_stripes);
Wang Shilong3b080b22014-04-01 18:01:43 +08002687
2688 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01002689 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, &rot);
Wang Shilong3b080b22014-04-01 18:01:43 +08002690 /* calculate which stripe this data locates */
2691 rot += i;
Wang Shilonge4fbaee2014-04-11 18:32:25 +08002692 stripe_index = rot % map->num_stripes;
Wang Shilong3b080b22014-04-01 18:01:43 +08002693 if (stripe_index == num)
2694 return 0;
2695 if (stripe_index < num)
2696 j++;
2697 }
2698 *offset = last_offset + j * map->stripe_len;
2699 return 1;
2700}
2701
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002702static void scrub_free_parity(struct scrub_parity *sparity)
2703{
2704 struct scrub_ctx *sctx = sparity->sctx;
2705 struct scrub_page *curr, *next;
2706 int nbits;
2707
2708 nbits = bitmap_weight(sparity->ebitmap, sparity->nsectors);
2709 if (nbits) {
2710 spin_lock(&sctx->stat_lock);
2711 sctx->stat.read_errors += nbits;
2712 sctx->stat.uncorrectable_errors += nbits;
2713 spin_unlock(&sctx->stat_lock);
2714 }
2715
2716 list_for_each_entry_safe(curr, next, &sparity->spages, list) {
2717 list_del_init(&curr->list);
2718 scrub_page_put(curr);
2719 }
2720
2721 kfree(sparity);
2722}
2723
Zhao Lei20b2e302015-06-04 20:09:15 +08002724static void scrub_parity_bio_endio_worker(struct btrfs_work *work)
2725{
2726 struct scrub_parity *sparity = container_of(work, struct scrub_parity,
2727 work);
2728 struct scrub_ctx *sctx = sparity->sctx;
2729
2730 scrub_free_parity(sparity);
2731 scrub_pending_bio_dec(sctx);
2732}
2733
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002734static void scrub_parity_bio_endio(struct bio *bio)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002735{
2736 struct scrub_parity *sparity = (struct scrub_parity *)bio->bi_private;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002737 struct btrfs_fs_info *fs_info = sparity->sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002738
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002739 if (bio->bi_status)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002740 bitmap_or(sparity->ebitmap, sparity->ebitmap, sparity->dbitmap,
2741 sparity->nsectors);
2742
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002743 bio_put(bio);
Zhao Lei20b2e302015-06-04 20:09:15 +08002744
2745 btrfs_init_work(&sparity->work, btrfs_scrubparity_helper,
2746 scrub_parity_bio_endio_worker, NULL, NULL);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002747 btrfs_queue_work(fs_info->scrub_parity_workers, &sparity->work);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002748}
2749
2750static void scrub_parity_check_and_repair(struct scrub_parity *sparity)
2751{
2752 struct scrub_ctx *sctx = sparity->sctx;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002753 struct btrfs_fs_info *fs_info = sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002754 struct bio *bio;
2755 struct btrfs_raid_bio *rbio;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002756 struct btrfs_bio *bbio = NULL;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002757 u64 length;
2758 int ret;
2759
2760 if (!bitmap_andnot(sparity->dbitmap, sparity->dbitmap, sparity->ebitmap,
2761 sparity->nsectors))
2762 goto out;
2763
Zhao Leia0dd59d2015-07-21 15:42:26 +08002764 length = sparity->logic_end - sparity->logic_start;
Qu Wenruoae6529c2017-03-29 09:33:21 +08002765
2766 btrfs_bio_counter_inc_blocked(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002767 ret = btrfs_map_sblock(fs_info, BTRFS_MAP_WRITE, sparity->logic_start,
David Sterba825ad4c2017-03-28 14:45:22 +02002768 &length, &bbio);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08002769 if (ret || !bbio || !bbio->raid_map)
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002770 goto bbio_out;
2771
David Sterbac5e4c3d2017-06-12 17:29:41 +02002772 bio = btrfs_io_bio_alloc(0);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002773 bio->bi_iter.bi_sector = sparity->logic_start >> 9;
2774 bio->bi_private = sparity;
2775 bio->bi_end_io = scrub_parity_bio_endio;
2776
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002777 rbio = raid56_parity_alloc_scrub_rbio(fs_info, bio, bbio,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08002778 length, sparity->scrub_dev,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002779 sparity->dbitmap,
2780 sparity->nsectors);
2781 if (!rbio)
2782 goto rbio_out;
2783
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002784 scrub_pending_bio_inc(sctx);
2785 raid56_parity_submit_scrub_rbio(rbio);
2786 return;
2787
2788rbio_out:
2789 bio_put(bio);
2790bbio_out:
Qu Wenruoae6529c2017-03-29 09:33:21 +08002791 btrfs_bio_counter_dec(fs_info);
Zhao Lei6e9606d2015-01-20 15:11:34 +08002792 btrfs_put_bbio(bbio);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002793 bitmap_or(sparity->ebitmap, sparity->ebitmap, sparity->dbitmap,
2794 sparity->nsectors);
2795 spin_lock(&sctx->stat_lock);
2796 sctx->stat.malloc_errors++;
2797 spin_unlock(&sctx->stat_lock);
2798out:
2799 scrub_free_parity(sparity);
2800}
2801
2802static inline int scrub_calc_parity_bitmap_len(int nsectors)
2803{
Zhao Leibfca9a62014-12-08 19:55:57 +08002804 return DIV_ROUND_UP(nsectors, BITS_PER_LONG) * sizeof(long);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002805}
2806
2807static void scrub_parity_get(struct scrub_parity *sparity)
2808{
Elena Reshetova78a76452017-03-03 10:55:24 +02002809 refcount_inc(&sparity->refs);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002810}
2811
2812static void scrub_parity_put(struct scrub_parity *sparity)
2813{
Elena Reshetova78a76452017-03-03 10:55:24 +02002814 if (!refcount_dec_and_test(&sparity->refs))
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002815 return;
2816
2817 scrub_parity_check_and_repair(sparity);
2818}
2819
2820static noinline_for_stack int scrub_raid56_parity(struct scrub_ctx *sctx,
2821 struct map_lookup *map,
2822 struct btrfs_device *sdev,
2823 struct btrfs_path *path,
2824 u64 logic_start,
2825 u64 logic_end)
2826{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002827 struct btrfs_fs_info *fs_info = sctx->fs_info;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002828 struct btrfs_root *root = fs_info->extent_root;
2829 struct btrfs_root *csum_root = fs_info->csum_root;
2830 struct btrfs_extent_item *extent;
Omar Sandoval4a770892015-06-19 11:52:52 -07002831 struct btrfs_bio *bbio = NULL;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002832 u64 flags;
2833 int ret;
2834 int slot;
2835 struct extent_buffer *l;
2836 struct btrfs_key key;
2837 u64 generation;
2838 u64 extent_logical;
2839 u64 extent_physical;
2840 u64 extent_len;
Omar Sandoval4a770892015-06-19 11:52:52 -07002841 u64 mapped_length;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002842 struct btrfs_device *extent_dev;
2843 struct scrub_parity *sparity;
2844 int nsectors;
2845 int bitmap_len;
2846 int extent_mirror_num;
2847 int stop_loop = 0;
2848
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002849 nsectors = div_u64(map->stripe_len, fs_info->sectorsize);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002850 bitmap_len = scrub_calc_parity_bitmap_len(nsectors);
2851 sparity = kzalloc(sizeof(struct scrub_parity) + 2 * bitmap_len,
2852 GFP_NOFS);
2853 if (!sparity) {
2854 spin_lock(&sctx->stat_lock);
2855 sctx->stat.malloc_errors++;
2856 spin_unlock(&sctx->stat_lock);
2857 return -ENOMEM;
2858 }
2859
2860 sparity->stripe_len = map->stripe_len;
2861 sparity->nsectors = nsectors;
2862 sparity->sctx = sctx;
2863 sparity->scrub_dev = sdev;
2864 sparity->logic_start = logic_start;
2865 sparity->logic_end = logic_end;
Elena Reshetova78a76452017-03-03 10:55:24 +02002866 refcount_set(&sparity->refs, 1);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002867 INIT_LIST_HEAD(&sparity->spages);
2868 sparity->dbitmap = sparity->bitmap;
2869 sparity->ebitmap = (void *)sparity->bitmap + bitmap_len;
2870
2871 ret = 0;
2872 while (logic_start < logic_end) {
2873 if (btrfs_fs_incompat(fs_info, SKINNY_METADATA))
2874 key.type = BTRFS_METADATA_ITEM_KEY;
2875 else
2876 key.type = BTRFS_EXTENT_ITEM_KEY;
2877 key.objectid = logic_start;
2878 key.offset = (u64)-1;
2879
2880 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2881 if (ret < 0)
2882 goto out;
2883
2884 if (ret > 0) {
2885 ret = btrfs_previous_extent_item(root, path, 0);
2886 if (ret < 0)
2887 goto out;
2888 if (ret > 0) {
2889 btrfs_release_path(path);
2890 ret = btrfs_search_slot(NULL, root, &key,
2891 path, 0, 0);
2892 if (ret < 0)
2893 goto out;
2894 }
2895 }
2896
2897 stop_loop = 0;
2898 while (1) {
2899 u64 bytes;
2900
2901 l = path->nodes[0];
2902 slot = path->slots[0];
2903 if (slot >= btrfs_header_nritems(l)) {
2904 ret = btrfs_next_leaf(root, path);
2905 if (ret == 0)
2906 continue;
2907 if (ret < 0)
2908 goto out;
2909
2910 stop_loop = 1;
2911 break;
2912 }
2913 btrfs_item_key_to_cpu(l, &key, slot);
2914
Zhao Leid7cad232015-07-22 13:14:48 +08002915 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
2916 key.type != BTRFS_METADATA_ITEM_KEY)
2917 goto next;
2918
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002919 if (key.type == BTRFS_METADATA_ITEM_KEY)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002920 bytes = fs_info->nodesize;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002921 else
2922 bytes = key.offset;
2923
2924 if (key.objectid + bytes <= logic_start)
2925 goto next;
2926
Zhao Leia0dd59d2015-07-21 15:42:26 +08002927 if (key.objectid >= logic_end) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002928 stop_loop = 1;
2929 break;
2930 }
2931
2932 while (key.objectid >= logic_start + map->stripe_len)
2933 logic_start += map->stripe_len;
2934
2935 extent = btrfs_item_ptr(l, slot,
2936 struct btrfs_extent_item);
2937 flags = btrfs_extent_flags(l, extent);
2938 generation = btrfs_extent_generation(l, extent);
2939
Zhao Leia323e812015-07-23 12:29:49 +08002940 if ((flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) &&
2941 (key.objectid < logic_start ||
2942 key.objectid + bytes >
2943 logic_start + map->stripe_len)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002944 btrfs_err(fs_info,
2945 "scrub: tree block %llu spanning stripes, ignored. logical=%llu",
Zhao Leia323e812015-07-23 12:29:49 +08002946 key.objectid, logic_start);
Zhao Lei9799d2c32015-08-25 21:31:40 +08002947 spin_lock(&sctx->stat_lock);
2948 sctx->stat.uncorrectable_errors++;
2949 spin_unlock(&sctx->stat_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002950 goto next;
2951 }
2952again:
2953 extent_logical = key.objectid;
2954 extent_len = bytes;
2955
2956 if (extent_logical < logic_start) {
2957 extent_len -= logic_start - extent_logical;
2958 extent_logical = logic_start;
2959 }
2960
2961 if (extent_logical + extent_len >
2962 logic_start + map->stripe_len)
2963 extent_len = logic_start + map->stripe_len -
2964 extent_logical;
2965
2966 scrub_parity_mark_sectors_data(sparity, extent_logical,
2967 extent_len);
2968
Omar Sandoval4a770892015-06-19 11:52:52 -07002969 mapped_length = extent_len;
Zhao Leif1fee652016-05-17 17:37:38 +08002970 bbio = NULL;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02002971 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ,
2972 extent_logical, &mapped_length, &bbio,
2973 0);
Omar Sandoval4a770892015-06-19 11:52:52 -07002974 if (!ret) {
2975 if (!bbio || mapped_length < extent_len)
2976 ret = -EIO;
2977 }
2978 if (ret) {
2979 btrfs_put_bbio(bbio);
2980 goto out;
2981 }
2982 extent_physical = bbio->stripes[0].physical;
2983 extent_mirror_num = bbio->mirror_num;
2984 extent_dev = bbio->stripes[0].dev;
2985 btrfs_put_bbio(bbio);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08002986
2987 ret = btrfs_lookup_csums_range(csum_root,
2988 extent_logical,
2989 extent_logical + extent_len - 1,
2990 &sctx->csum_list, 1);
2991 if (ret)
2992 goto out;
2993
2994 ret = scrub_extent_for_parity(sparity, extent_logical,
2995 extent_len,
2996 extent_physical,
2997 extent_dev, flags,
2998 generation,
2999 extent_mirror_num);
Zhao Lei6fa96d72015-07-21 12:22:30 +08003000
3001 scrub_free_csums(sctx);
3002
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003003 if (ret)
3004 goto out;
3005
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003006 if (extent_logical + extent_len <
3007 key.objectid + bytes) {
3008 logic_start += map->stripe_len;
3009
3010 if (logic_start >= logic_end) {
3011 stop_loop = 1;
3012 break;
3013 }
3014
3015 if (logic_start < key.objectid + bytes) {
3016 cond_resched();
3017 goto again;
3018 }
3019 }
3020next:
3021 path->slots[0]++;
3022 }
3023
3024 btrfs_release_path(path);
3025
3026 if (stop_loop)
3027 break;
3028
3029 logic_start += map->stripe_len;
3030 }
3031out:
3032 if (ret < 0)
3033 scrub_parity_mark_sectors_error(sparity, logic_start,
Zhao Leia0dd59d2015-07-21 15:42:26 +08003034 logic_end - logic_start);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003035 scrub_parity_put(sparity);
3036 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003037 mutex_lock(&sctx->wr_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003038 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003039 mutex_unlock(&sctx->wr_lock);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003040
3041 btrfs_release_path(path);
3042 return ret < 0 ? ret : 0;
3043}
3044
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003045static noinline_for_stack int scrub_stripe(struct scrub_ctx *sctx,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003046 struct map_lookup *map,
3047 struct btrfs_device *scrub_dev,
Omar Sandoval32934282018-08-14 11:09:52 -07003048 int num, u64 base, u64 length)
Arne Jansena2de7332011-03-08 14:14:00 +01003049{
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003050 struct btrfs_path *path, *ppath;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04003051 struct btrfs_fs_info *fs_info = sctx->fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +01003052 struct btrfs_root *root = fs_info->extent_root;
3053 struct btrfs_root *csum_root = fs_info->csum_root;
3054 struct btrfs_extent_item *extent;
Arne Jansene7786c32011-05-28 20:58:38 +00003055 struct blk_plug plug;
Arne Jansena2de7332011-03-08 14:14:00 +01003056 u64 flags;
3057 int ret;
3058 int slot;
Arne Jansena2de7332011-03-08 14:14:00 +01003059 u64 nstripes;
Arne Jansena2de7332011-03-08 14:14:00 +01003060 struct extent_buffer *l;
Arne Jansena2de7332011-03-08 14:14:00 +01003061 u64 physical;
3062 u64 logical;
Liu Bo625f1c8d2013-04-27 02:56:57 +00003063 u64 logic_end;
Wang Shilong3b080b22014-04-01 18:01:43 +08003064 u64 physical_end;
Arne Jansena2de7332011-03-08 14:14:00 +01003065 u64 generation;
Jan Schmidte12fa9c2011-06-17 15:55:21 +02003066 int mirror_num;
Arne Jansen7a262852011-06-10 12:39:23 +02003067 struct reada_control *reada1;
3068 struct reada_control *reada2;
David Sterbae6c11f92016-03-24 18:00:53 +01003069 struct btrfs_key key;
Arne Jansen7a262852011-06-10 12:39:23 +02003070 struct btrfs_key key_end;
Arne Jansena2de7332011-03-08 14:14:00 +01003071 u64 increment = map->stripe_len;
3072 u64 offset;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003073 u64 extent_logical;
3074 u64 extent_physical;
3075 u64 extent_len;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003076 u64 stripe_logical;
3077 u64 stripe_end;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003078 struct btrfs_device *extent_dev;
3079 int extent_mirror_num;
Wang Shilong3b080b22014-04-01 18:01:43 +08003080 int stop_loop = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05003081
Wang Shilong3b080b22014-04-01 18:01:43 +08003082 physical = map->stripes[num].physical;
Arne Jansena2de7332011-03-08 14:14:00 +01003083 offset = 0;
Liu Bo42c61ab2017-04-03 13:45:24 -07003084 nstripes = div64_u64(length, map->stripe_len);
Arne Jansena2de7332011-03-08 14:14:00 +01003085 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
3086 offset = map->stripe_len * num;
3087 increment = map->stripe_len * map->num_stripes;
Jan Schmidt193ea742011-06-13 19:56:54 +02003088 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003089 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
3090 int factor = map->num_stripes / map->sub_stripes;
3091 offset = map->stripe_len * (num / map->sub_stripes);
3092 increment = map->stripe_len * factor;
Jan Schmidt193ea742011-06-13 19:56:54 +02003093 mirror_num = num % map->sub_stripes + 1;
David Sterbac7369b32019-05-31 15:39:31 +02003094 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1_MASK) {
Arne Jansena2de7332011-03-08 14:14:00 +01003095 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003096 mirror_num = num % map->num_stripes + 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003097 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
3098 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003099 mirror_num = num % map->num_stripes + 1;
Zhao Leiffe2d202015-01-20 15:11:44 +08003100 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003101 get_raid56_logic_offset(physical, num, map, &offset, NULL);
Wang Shilong3b080b22014-04-01 18:01:43 +08003102 increment = map->stripe_len * nr_data_stripes(map);
3103 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003104 } else {
3105 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02003106 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003107 }
3108
3109 path = btrfs_alloc_path();
3110 if (!path)
3111 return -ENOMEM;
3112
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003113 ppath = btrfs_alloc_path();
3114 if (!ppath) {
Tsutomu Itoh379d6852015-01-09 17:37:52 +09003115 btrfs_free_path(path);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003116 return -ENOMEM;
3117 }
3118
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003119 /*
3120 * work on commit root. The related disk blocks are static as
3121 * long as COW is applied. This means, it is save to rewrite
3122 * them to repair disk errors without any race conditions
3123 */
Arne Jansena2de7332011-03-08 14:14:00 +01003124 path->search_commit_root = 1;
3125 path->skip_locking = 1;
3126
Gui Hecheng063c54d2015-01-09 09:39:40 +08003127 ppath->search_commit_root = 1;
3128 ppath->skip_locking = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003129 /*
Arne Jansen7a262852011-06-10 12:39:23 +02003130 * trigger the readahead for extent tree csum tree and wait for
3131 * completion. During readahead, the scrub is officially paused
3132 * to not hold off transaction commits
Arne Jansena2de7332011-03-08 14:14:00 +01003133 */
3134 logical = base + offset;
Wang Shilong3b080b22014-04-01 18:01:43 +08003135 physical_end = physical + nstripes * map->stripe_len;
Zhao Leiffe2d202015-01-20 15:11:44 +08003136 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Wang Shilong3b080b22014-04-01 18:01:43 +08003137 get_raid56_logic_offset(physical_end, num,
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003138 map, &logic_end, NULL);
Wang Shilong3b080b22014-04-01 18:01:43 +08003139 logic_end += base;
3140 } else {
3141 logic_end = logical + increment * nstripes;
3142 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003143 wait_event(sctx->list_wait,
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003144 atomic_read(&sctx->bios_in_flight) == 0);
Wang Shilongcb7ab022013-12-04 21:16:53 +08003145 scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003146
Arne Jansen7a262852011-06-10 12:39:23 +02003147 /* FIXME it might be better to start readahead at commit root */
David Sterbae6c11f92016-03-24 18:00:53 +01003148 key.objectid = logical;
3149 key.type = BTRFS_EXTENT_ITEM_KEY;
3150 key.offset = (u64)0;
Wang Shilong3b080b22014-04-01 18:01:43 +08003151 key_end.objectid = logic_end;
Josef Bacik3173a182013-03-07 14:22:04 -05003152 key_end.type = BTRFS_METADATA_ITEM_KEY;
3153 key_end.offset = (u64)-1;
David Sterbae6c11f92016-03-24 18:00:53 +01003154 reada1 = btrfs_reada_add(root, &key, &key_end);
Arne Jansena2de7332011-03-08 14:14:00 +01003155
David Sterbae6c11f92016-03-24 18:00:53 +01003156 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
3157 key.type = BTRFS_EXTENT_CSUM_KEY;
3158 key.offset = logical;
Arne Jansen7a262852011-06-10 12:39:23 +02003159 key_end.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
3160 key_end.type = BTRFS_EXTENT_CSUM_KEY;
Wang Shilong3b080b22014-04-01 18:01:43 +08003161 key_end.offset = logic_end;
David Sterbae6c11f92016-03-24 18:00:53 +01003162 reada2 = btrfs_reada_add(csum_root, &key, &key_end);
Arne Jansena2de7332011-03-08 14:14:00 +01003163
Arne Jansen7a262852011-06-10 12:39:23 +02003164 if (!IS_ERR(reada1))
3165 btrfs_reada_wait(reada1);
3166 if (!IS_ERR(reada2))
3167 btrfs_reada_wait(reada2);
Arne Jansena2de7332011-03-08 14:14:00 +01003168
Arne Jansena2de7332011-03-08 14:14:00 +01003169
3170 /*
3171 * collect all data csums for the stripe to avoid seeking during
3172 * the scrub. This might currently (crc32) end up to be about 1MB
3173 */
Arne Jansene7786c32011-05-28 20:58:38 +00003174 blk_start_plug(&plug);
Arne Jansena2de7332011-03-08 14:14:00 +01003175
Arne Jansena2de7332011-03-08 14:14:00 +01003176 /*
3177 * now find all extents for each stripe and scrub them
3178 */
Arne Jansena2de7332011-03-08 14:14:00 +01003179 ret = 0;
Wang Shilong3b080b22014-04-01 18:01:43 +08003180 while (physical < physical_end) {
Arne Jansena2de7332011-03-08 14:14:00 +01003181 /*
3182 * canceled?
3183 */
3184 if (atomic_read(&fs_info->scrub_cancel_req) ||
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003185 atomic_read(&sctx->cancel_req)) {
Arne Jansena2de7332011-03-08 14:14:00 +01003186 ret = -ECANCELED;
3187 goto out;
3188 }
3189 /*
3190 * check to see if we have to pause
3191 */
3192 if (atomic_read(&fs_info->scrub_pause_req)) {
3193 /* push queued extents */
David Sterba2073c4c2017-03-31 17:12:51 +02003194 sctx->flush_all_writes = true;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003195 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003196 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003197 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003198 mutex_unlock(&sctx->wr_lock);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003199 wait_event(sctx->list_wait,
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003200 atomic_read(&sctx->bios_in_flight) == 0);
David Sterba2073c4c2017-03-31 17:12:51 +02003201 sctx->flush_all_writes = false;
Wang Shilong3cb09292013-12-04 21:15:19 +08003202 scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003203 }
3204
Zhao Leif2f66a22015-07-21 12:22:29 +08003205 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
3206 ret = get_raid56_logic_offset(physical, num, map,
3207 &logical,
3208 &stripe_logical);
3209 logical += base;
3210 if (ret) {
Zhao Lei79553232015-08-18 17:54:30 +08003211 /* it is parity strip */
Zhao Leif2f66a22015-07-21 12:22:29 +08003212 stripe_logical += base;
Zhao Leia0dd59d2015-07-21 15:42:26 +08003213 stripe_end = stripe_logical + increment;
Zhao Leif2f66a22015-07-21 12:22:29 +08003214 ret = scrub_raid56_parity(sctx, map, scrub_dev,
3215 ppath, stripe_logical,
3216 stripe_end);
3217 if (ret)
3218 goto out;
3219 goto skip;
3220 }
3221 }
3222
Wang Shilong7c76edb2014-01-12 21:38:32 +08003223 if (btrfs_fs_incompat(fs_info, SKINNY_METADATA))
3224 key.type = BTRFS_METADATA_ITEM_KEY;
3225 else
3226 key.type = BTRFS_EXTENT_ITEM_KEY;
Arne Jansena2de7332011-03-08 14:14:00 +01003227 key.objectid = logical;
Liu Bo625f1c8d2013-04-27 02:56:57 +00003228 key.offset = (u64)-1;
Arne Jansena2de7332011-03-08 14:14:00 +01003229
3230 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3231 if (ret < 0)
3232 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05003233
Arne Jansen8c510322011-06-03 10:09:26 +02003234 if (ret > 0) {
Wang Shilongade2e0b2014-01-12 21:38:33 +08003235 ret = btrfs_previous_extent_item(root, path, 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003236 if (ret < 0)
3237 goto out;
Arne Jansen8c510322011-06-03 10:09:26 +02003238 if (ret > 0) {
3239 /* there's no smaller item, so stick with the
3240 * larger one */
3241 btrfs_release_path(path);
3242 ret = btrfs_search_slot(NULL, root, &key,
3243 path, 0, 0);
3244 if (ret < 0)
3245 goto out;
3246 }
Arne Jansena2de7332011-03-08 14:14:00 +01003247 }
3248
Liu Bo625f1c8d2013-04-27 02:56:57 +00003249 stop_loop = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01003250 while (1) {
Josef Bacik3173a182013-03-07 14:22:04 -05003251 u64 bytes;
3252
Arne Jansena2de7332011-03-08 14:14:00 +01003253 l = path->nodes[0];
3254 slot = path->slots[0];
3255 if (slot >= btrfs_header_nritems(l)) {
3256 ret = btrfs_next_leaf(root, path);
3257 if (ret == 0)
3258 continue;
3259 if (ret < 0)
3260 goto out;
3261
Liu Bo625f1c8d2013-04-27 02:56:57 +00003262 stop_loop = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01003263 break;
3264 }
3265 btrfs_item_key_to_cpu(l, &key, slot);
3266
Zhao Leid7cad232015-07-22 13:14:48 +08003267 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
3268 key.type != BTRFS_METADATA_ITEM_KEY)
3269 goto next;
3270
Josef Bacik3173a182013-03-07 14:22:04 -05003271 if (key.type == BTRFS_METADATA_ITEM_KEY)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003272 bytes = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05003273 else
3274 bytes = key.offset;
3275
3276 if (key.objectid + bytes <= logical)
Arne Jansena2de7332011-03-08 14:14:00 +01003277 goto next;
3278
Liu Bo625f1c8d2013-04-27 02:56:57 +00003279 if (key.objectid >= logical + map->stripe_len) {
3280 /* out of this device extent */
3281 if (key.objectid >= logic_end)
3282 stop_loop = 1;
3283 break;
3284 }
Arne Jansena2de7332011-03-08 14:14:00 +01003285
3286 extent = btrfs_item_ptr(l, slot,
3287 struct btrfs_extent_item);
3288 flags = btrfs_extent_flags(l, extent);
3289 generation = btrfs_extent_generation(l, extent);
3290
Zhao Leia323e812015-07-23 12:29:49 +08003291 if ((flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) &&
3292 (key.objectid < logical ||
3293 key.objectid + bytes >
3294 logical + map->stripe_len)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003295 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003296 "scrub: tree block %llu spanning stripes, ignored. logical=%llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003297 key.objectid, logical);
Zhao Lei9799d2c32015-08-25 21:31:40 +08003298 spin_lock(&sctx->stat_lock);
3299 sctx->stat.uncorrectable_errors++;
3300 spin_unlock(&sctx->stat_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003301 goto next;
3302 }
3303
Liu Bo625f1c8d2013-04-27 02:56:57 +00003304again:
3305 extent_logical = key.objectid;
3306 extent_len = bytes;
3307
Arne Jansena2de7332011-03-08 14:14:00 +01003308 /*
3309 * trim extent to this stripe
3310 */
Liu Bo625f1c8d2013-04-27 02:56:57 +00003311 if (extent_logical < logical) {
3312 extent_len -= logical - extent_logical;
3313 extent_logical = logical;
Arne Jansena2de7332011-03-08 14:14:00 +01003314 }
Liu Bo625f1c8d2013-04-27 02:56:57 +00003315 if (extent_logical + extent_len >
Arne Jansena2de7332011-03-08 14:14:00 +01003316 logical + map->stripe_len) {
Liu Bo625f1c8d2013-04-27 02:56:57 +00003317 extent_len = logical + map->stripe_len -
3318 extent_logical;
Arne Jansena2de7332011-03-08 14:14:00 +01003319 }
3320
Liu Bo625f1c8d2013-04-27 02:56:57 +00003321 extent_physical = extent_logical - logical + physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003322 extent_dev = scrub_dev;
3323 extent_mirror_num = mirror_num;
Omar Sandoval32934282018-08-14 11:09:52 -07003324 if (sctx->is_dev_replace)
Stefan Behrensff023aa2012-11-06 11:43:11 +01003325 scrub_remap_extent(fs_info, extent_logical,
3326 extent_len, &extent_physical,
3327 &extent_dev,
3328 &extent_mirror_num);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003329
Zhao Leife8cf652015-07-22 13:14:47 +08003330 ret = btrfs_lookup_csums_range(csum_root,
3331 extent_logical,
3332 extent_logical +
3333 extent_len - 1,
3334 &sctx->csum_list, 1);
Arne Jansena2de7332011-03-08 14:14:00 +01003335 if (ret)
3336 goto out;
3337
Liu Bo6ca17652018-03-07 12:08:09 -07003338 ret = scrub_extent(sctx, map, extent_logical, extent_len,
Liu Bo625f1c8d2013-04-27 02:56:57 +00003339 extent_physical, extent_dev, flags,
3340 generation, extent_mirror_num,
Stefan Behrens115930c2013-07-04 16:14:23 +02003341 extent_logical - logical + physical);
Zhao Lei6fa96d72015-07-21 12:22:30 +08003342
3343 scrub_free_csums(sctx);
3344
Liu Bo625f1c8d2013-04-27 02:56:57 +00003345 if (ret)
3346 goto out;
3347
3348 if (extent_logical + extent_len <
3349 key.objectid + bytes) {
Zhao Leiffe2d202015-01-20 15:11:44 +08003350 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Wang Shilong3b080b22014-04-01 18:01:43 +08003351 /*
3352 * loop until we find next data stripe
3353 * or we have finished all stripes.
3354 */
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003355loop:
3356 physical += map->stripe_len;
3357 ret = get_raid56_logic_offset(physical,
3358 num, map, &logical,
3359 &stripe_logical);
3360 logical += base;
3361
3362 if (ret && physical < physical_end) {
3363 stripe_logical += base;
3364 stripe_end = stripe_logical +
Zhao Leia0dd59d2015-07-21 15:42:26 +08003365 increment;
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003366 ret = scrub_raid56_parity(sctx,
3367 map, scrub_dev, ppath,
3368 stripe_logical,
3369 stripe_end);
3370 if (ret)
3371 goto out;
3372 goto loop;
3373 }
Wang Shilong3b080b22014-04-01 18:01:43 +08003374 } else {
3375 physical += map->stripe_len;
3376 logical += increment;
3377 }
Liu Bo625f1c8d2013-04-27 02:56:57 +00003378 if (logical < key.objectid + bytes) {
3379 cond_resched();
3380 goto again;
3381 }
3382
Wang Shilong3b080b22014-04-01 18:01:43 +08003383 if (physical >= physical_end) {
Liu Bo625f1c8d2013-04-27 02:56:57 +00003384 stop_loop = 1;
3385 break;
3386 }
3387 }
Arne Jansena2de7332011-03-08 14:14:00 +01003388next:
3389 path->slots[0]++;
3390 }
Chris Mason71267332011-05-23 06:30:52 -04003391 btrfs_release_path(path);
Wang Shilong3b080b22014-04-01 18:01:43 +08003392skip:
Arne Jansena2de7332011-03-08 14:14:00 +01003393 logical += increment;
3394 physical += map->stripe_len;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003395 spin_lock(&sctx->stat_lock);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003396 if (stop_loop)
3397 sctx->stat.last_physical = map->stripes[num].physical +
3398 length;
3399 else
3400 sctx->stat.last_physical = physical;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003401 spin_unlock(&sctx->stat_lock);
Liu Bo625f1c8d2013-04-27 02:56:57 +00003402 if (stop_loop)
3403 break;
Arne Jansena2de7332011-03-08 14:14:00 +01003404 }
Stefan Behrensff023aa2012-11-06 11:43:11 +01003405out:
Arne Jansena2de7332011-03-08 14:14:00 +01003406 /* push queued extents */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003407 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003408 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003409 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003410 mutex_unlock(&sctx->wr_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003411
Arne Jansene7786c32011-05-28 20:58:38 +00003412 blk_finish_plug(&plug);
Arne Jansena2de7332011-03-08 14:14:00 +01003413 btrfs_free_path(path);
Miao Xie5a6ac9e2014-11-06 17:20:58 +08003414 btrfs_free_path(ppath);
Arne Jansena2de7332011-03-08 14:14:00 +01003415 return ret < 0 ? ret : 0;
3416}
3417
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003418static noinline_for_stack int scrub_chunk(struct scrub_ctx *sctx,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003419 struct btrfs_device *scrub_dev,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003420 u64 chunk_offset, u64 length,
Filipe Manana020d5b72015-11-19 10:57:20 +00003421 u64 dev_offset,
Omar Sandoval32934282018-08-14 11:09:52 -07003422 struct btrfs_block_group_cache *cache)
Arne Jansena2de7332011-03-08 14:14:00 +01003423{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04003424 struct btrfs_fs_info *fs_info = sctx->fs_info;
David Sterbac8bf1b62019-05-17 11:43:17 +02003425 struct extent_map_tree *map_tree = &fs_info->mapping_tree;
Arne Jansena2de7332011-03-08 14:14:00 +01003426 struct map_lookup *map;
3427 struct extent_map *em;
3428 int i;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003429 int ret = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01003430
David Sterbac8bf1b62019-05-17 11:43:17 +02003431 read_lock(&map_tree->lock);
3432 em = lookup_extent_mapping(map_tree, chunk_offset, 1);
3433 read_unlock(&map_tree->lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003434
Filipe Manana020d5b72015-11-19 10:57:20 +00003435 if (!em) {
3436 /*
3437 * Might have been an unused block group deleted by the cleaner
3438 * kthread or relocation.
3439 */
3440 spin_lock(&cache->lock);
3441 if (!cache->removed)
3442 ret = -EINVAL;
3443 spin_unlock(&cache->lock);
3444
3445 return ret;
3446 }
Arne Jansena2de7332011-03-08 14:14:00 +01003447
Jeff Mahoney95617d62015-06-03 10:55:48 -04003448 map = em->map_lookup;
Arne Jansena2de7332011-03-08 14:14:00 +01003449 if (em->start != chunk_offset)
3450 goto out;
3451
3452 if (em->len < length)
3453 goto out;
3454
3455 for (i = 0; i < map->num_stripes; ++i) {
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003456 if (map->stripes[i].dev->bdev == scrub_dev->bdev &&
Arne Jansen859acaf2012-02-09 15:09:02 +01003457 map->stripes[i].physical == dev_offset) {
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003458 ret = scrub_stripe(sctx, map, scrub_dev, i,
Omar Sandoval32934282018-08-14 11:09:52 -07003459 chunk_offset, length);
Arne Jansena2de7332011-03-08 14:14:00 +01003460 if (ret)
3461 goto out;
3462 }
3463 }
3464out:
3465 free_extent_map(em);
3466
3467 return ret;
3468}
3469
3470static noinline_for_stack
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003471int scrub_enumerate_chunks(struct scrub_ctx *sctx,
Omar Sandoval32934282018-08-14 11:09:52 -07003472 struct btrfs_device *scrub_dev, u64 start, u64 end)
Arne Jansena2de7332011-03-08 14:14:00 +01003473{
3474 struct btrfs_dev_extent *dev_extent = NULL;
3475 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003476 struct btrfs_fs_info *fs_info = sctx->fs_info;
3477 struct btrfs_root *root = fs_info->dev_root;
Arne Jansena2de7332011-03-08 14:14:00 +01003478 u64 length;
Arne Jansena2de7332011-03-08 14:14:00 +01003479 u64 chunk_offset;
Zhaolei55e3a602015-08-05 16:43:30 +08003480 int ret = 0;
Zhaolei76a8efa2015-11-17 18:46:17 +08003481 int ro_set;
Arne Jansena2de7332011-03-08 14:14:00 +01003482 int slot;
3483 struct extent_buffer *l;
3484 struct btrfs_key key;
3485 struct btrfs_key found_key;
3486 struct btrfs_block_group_cache *cache;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003487 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
Arne Jansena2de7332011-03-08 14:14:00 +01003488
3489 path = btrfs_alloc_path();
3490 if (!path)
3491 return -ENOMEM;
3492
David Sterbae4058b52015-11-27 16:31:35 +01003493 path->reada = READA_FORWARD;
Arne Jansena2de7332011-03-08 14:14:00 +01003494 path->search_commit_root = 1;
3495 path->skip_locking = 1;
3496
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003497 key.objectid = scrub_dev->devid;
Arne Jansena2de7332011-03-08 14:14:00 +01003498 key.offset = 0ull;
3499 key.type = BTRFS_DEV_EXTENT_KEY;
3500
Arne Jansena2de7332011-03-08 14:14:00 +01003501 while (1) {
3502 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3503 if (ret < 0)
Arne Jansen8c510322011-06-03 10:09:26 +02003504 break;
3505 if (ret > 0) {
3506 if (path->slots[0] >=
3507 btrfs_header_nritems(path->nodes[0])) {
3508 ret = btrfs_next_leaf(root, path);
Zhaolei55e3a602015-08-05 16:43:30 +08003509 if (ret < 0)
Arne Jansen8c510322011-06-03 10:09:26 +02003510 break;
Zhaolei55e3a602015-08-05 16:43:30 +08003511 if (ret > 0) {
3512 ret = 0;
3513 break;
3514 }
3515 } else {
3516 ret = 0;
Arne Jansen8c510322011-06-03 10:09:26 +02003517 }
3518 }
Arne Jansena2de7332011-03-08 14:14:00 +01003519
3520 l = path->nodes[0];
3521 slot = path->slots[0];
3522
3523 btrfs_item_key_to_cpu(l, &found_key, slot);
3524
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003525 if (found_key.objectid != scrub_dev->devid)
Arne Jansena2de7332011-03-08 14:14:00 +01003526 break;
3527
David Sterba962a2982014-06-04 18:41:45 +02003528 if (found_key.type != BTRFS_DEV_EXTENT_KEY)
Arne Jansena2de7332011-03-08 14:14:00 +01003529 break;
3530
3531 if (found_key.offset >= end)
3532 break;
3533
3534 if (found_key.offset < key.offset)
3535 break;
3536
3537 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
3538 length = btrfs_dev_extent_length(l, dev_extent);
3539
Qu Wenruoced96ed2014-06-19 10:42:51 +08003540 if (found_key.offset + length <= start)
3541 goto skip;
Arne Jansena2de7332011-03-08 14:14:00 +01003542
Arne Jansena2de7332011-03-08 14:14:00 +01003543 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
3544
3545 /*
3546 * get a reference on the corresponding block group to prevent
3547 * the chunk from going away while we scrub it
3548 */
3549 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
Qu Wenruoced96ed2014-06-19 10:42:51 +08003550
3551 /* some chunks are removed but not committed to disk yet,
3552 * continue scrubbing */
3553 if (!cache)
3554 goto skip;
3555
Zhaolei55e3a602015-08-05 16:43:30 +08003556 /*
3557 * we need call btrfs_inc_block_group_ro() with scrubs_paused,
3558 * to avoid deadlock caused by:
3559 * btrfs_inc_block_group_ro()
3560 * -> btrfs_wait_for_commit()
3561 * -> btrfs_commit_transaction()
3562 * -> btrfs_scrub_pause()
3563 */
3564 scrub_pause_on(fs_info);
Nikolay Borisovc83488a2018-06-20 15:49:14 +03003565 ret = btrfs_inc_block_group_ro(cache);
Omar Sandoval32934282018-08-14 11:09:52 -07003566 if (!ret && sctx->is_dev_replace) {
Filipe Mananaf0e9b7d2016-05-14 09:12:53 +01003567 /*
3568 * If we are doing a device replace wait for any tasks
Andrea Gelmini52042d82018-11-28 12:05:13 +01003569 * that started delalloc right before we set the block
Filipe Mananaf0e9b7d2016-05-14 09:12:53 +01003570 * group to RO mode, as they might have just allocated
3571 * an extent from it or decided they could do a nocow
3572 * write. And if any such tasks did that, wait for their
3573 * ordered extents to complete and then commit the
3574 * current transaction, so that we can later see the new
3575 * extent items in the extent tree - the ordered extents
3576 * create delayed data references (for cow writes) when
3577 * they complete, which will be run and insert the
3578 * corresponding extent items into the extent tree when
3579 * we commit the transaction they used when running
3580 * inode.c:btrfs_finish_ordered_io(). We later use
3581 * the commit root of the extent tree to find extents
3582 * to copy from the srcdev into the tgtdev, and we don't
3583 * want to miss any new extents.
3584 */
3585 btrfs_wait_block_group_reservations(cache);
3586 btrfs_wait_nocow_writers(cache);
Chris Mason6374e57a2017-06-23 09:48:21 -07003587 ret = btrfs_wait_ordered_roots(fs_info, U64_MAX,
Filipe Mananaf0e9b7d2016-05-14 09:12:53 +01003588 cache->key.objectid,
3589 cache->key.offset);
3590 if (ret > 0) {
3591 struct btrfs_trans_handle *trans;
3592
3593 trans = btrfs_join_transaction(root);
3594 if (IS_ERR(trans))
3595 ret = PTR_ERR(trans);
3596 else
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003597 ret = btrfs_commit_transaction(trans);
Filipe Mananaf0e9b7d2016-05-14 09:12:53 +01003598 if (ret) {
3599 scrub_pause_off(fs_info);
3600 btrfs_put_block_group(cache);
3601 break;
3602 }
3603 }
3604 }
Zhaolei55e3a602015-08-05 16:43:30 +08003605 scrub_pause_off(fs_info);
Zhaolei76a8efa2015-11-17 18:46:17 +08003606
3607 if (ret == 0) {
3608 ro_set = 1;
3609 } else if (ret == -ENOSPC) {
3610 /*
3611 * btrfs_inc_block_group_ro return -ENOSPC when it
3612 * failed in creating new chunk for metadata.
3613 * It is not a problem for scrub/replace, because
3614 * metadata are always cowed, and our scrub paused
3615 * commit_transactions.
3616 */
3617 ro_set = 0;
3618 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003619 btrfs_warn(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02003620 "failed setting block group ro: %d", ret);
Zhaolei55e3a602015-08-05 16:43:30 +08003621 btrfs_put_block_group(cache);
3622 break;
3623 }
3624
David Sterbacb5583d2018-09-07 16:11:23 +02003625 down_write(&fs_info->dev_replace.rwsem);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003626 dev_replace->cursor_right = found_key.offset + length;
3627 dev_replace->cursor_left = found_key.offset;
3628 dev_replace->item_needs_writeback = 1;
David Sterbacb5583d2018-09-07 16:11:23 +02003629 up_write(&dev_replace->rwsem);
3630
Zhao Lei8c204c92015-08-19 15:02:40 +08003631 ret = scrub_chunk(sctx, scrub_dev, chunk_offset, length,
Omar Sandoval32934282018-08-14 11:09:52 -07003632 found_key.offset, cache);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003633
3634 /*
3635 * flush, submit all pending read and write bios, afterwards
3636 * wait for them.
3637 * Note that in the dev replace case, a read request causes
3638 * write requests that are submitted in the read completion
3639 * worker. Therefore in the current situation, it is required
3640 * that all write requests are flushed, so that all read and
3641 * write requests are really completed when bios_in_flight
3642 * changes to 0.
3643 */
David Sterba2073c4c2017-03-31 17:12:51 +02003644 sctx->flush_all_writes = true;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003645 scrub_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003646 mutex_lock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003647 scrub_wr_submit(sctx);
David Sterba3fb99302017-05-16 19:10:32 +02003648 mutex_unlock(&sctx->wr_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003649
3650 wait_event(sctx->list_wait,
3651 atomic_read(&sctx->bios_in_flight) == 0);
Zhaoleib708ce92015-08-05 16:43:29 +08003652
3653 scrub_pause_on(fs_info);
Wang Shilong12cf9372014-02-19 19:24:17 +08003654
3655 /*
3656 * must be called before we decrease @scrub_paused.
3657 * make sure we don't block transaction commit while
3658 * we are waiting pending workers finished.
3659 */
Stefan Behrensff023aa2012-11-06 11:43:11 +01003660 wait_event(sctx->list_wait,
3661 atomic_read(&sctx->workers_pending) == 0);
David Sterba2073c4c2017-03-31 17:12:51 +02003662 sctx->flush_all_writes = false;
Wang Shilong12cf9372014-02-19 19:24:17 +08003663
Zhaoleib708ce92015-08-05 16:43:29 +08003664 scrub_pause_off(fs_info);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003665
David Sterbacb5583d2018-09-07 16:11:23 +02003666 down_write(&fs_info->dev_replace.rwsem);
Filipe Manana1a1a8b72016-05-14 19:44:40 +01003667 dev_replace->cursor_left = dev_replace->cursor_right;
3668 dev_replace->item_needs_writeback = 1;
David Sterbacb5583d2018-09-07 16:11:23 +02003669 up_write(&fs_info->dev_replace.rwsem);
Filipe Manana1a1a8b72016-05-14 19:44:40 +01003670
Zhaolei76a8efa2015-11-17 18:46:17 +08003671 if (ro_set)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003672 btrfs_dec_block_group_ro(cache);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003673
Filipe Manana758f2df2015-11-19 11:45:48 +00003674 /*
3675 * We might have prevented the cleaner kthread from deleting
3676 * this block group if it was already unused because we raced
3677 * and set it to RO mode first. So add it back to the unused
3678 * list, otherwise it might not ever be deleted unless a manual
3679 * balance is triggered or it becomes used and unused again.
3680 */
3681 spin_lock(&cache->lock);
3682 if (!cache->removed && !cache->ro && cache->reserved == 0 &&
3683 btrfs_block_group_used(&cache->item) == 0) {
3684 spin_unlock(&cache->lock);
Qu Wenruo031f24d2018-05-22 16:43:47 +08003685 btrfs_mark_bg_unused(cache);
Filipe Manana758f2df2015-11-19 11:45:48 +00003686 } else {
3687 spin_unlock(&cache->lock);
3688 }
3689
Arne Jansena2de7332011-03-08 14:14:00 +01003690 btrfs_put_block_group(cache);
3691 if (ret)
3692 break;
Omar Sandoval32934282018-08-14 11:09:52 -07003693 if (sctx->is_dev_replace &&
Stefan Behrensaf1be4f2012-11-27 17:39:51 +00003694 atomic64_read(&dev_replace->num_write_errors) > 0) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01003695 ret = -EIO;
3696 break;
3697 }
3698 if (sctx->stat.malloc_errors > 0) {
3699 ret = -ENOMEM;
3700 break;
3701 }
Qu Wenruoced96ed2014-06-19 10:42:51 +08003702skip:
Arne Jansena2de7332011-03-08 14:14:00 +01003703 key.offset = found_key.offset + length;
Chris Mason71267332011-05-23 06:30:52 -04003704 btrfs_release_path(path);
Arne Jansena2de7332011-03-08 14:14:00 +01003705 }
3706
Arne Jansena2de7332011-03-08 14:14:00 +01003707 btrfs_free_path(path);
Arne Jansen8c510322011-06-03 10:09:26 +02003708
Zhaolei55e3a602015-08-05 16:43:30 +08003709 return ret;
Arne Jansena2de7332011-03-08 14:14:00 +01003710}
3711
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003712static noinline_for_stack int scrub_supers(struct scrub_ctx *sctx,
3713 struct btrfs_device *scrub_dev)
Arne Jansena2de7332011-03-08 14:14:00 +01003714{
3715 int i;
3716 u64 bytenr;
3717 u64 gen;
3718 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003719 struct btrfs_fs_info *fs_info = sctx->fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +01003720
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003721 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003722 return -EIO;
3723
Miao Xie5f546062014-07-24 11:37:09 +08003724 /* Seed devices of a new filesystem has their own generation. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003725 if (scrub_dev->fs_devices != fs_info->fs_devices)
Miao Xie5f546062014-07-24 11:37:09 +08003726 gen = scrub_dev->generation;
3727 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003728 gen = fs_info->last_trans_committed;
Arne Jansena2de7332011-03-08 14:14:00 +01003729
3730 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
3731 bytenr = btrfs_sb_offset(i);
Miao Xie935e5cc2014-09-03 21:35:33 +08003732 if (bytenr + BTRFS_SUPER_INFO_SIZE >
3733 scrub_dev->commit_total_bytes)
Arne Jansena2de7332011-03-08 14:14:00 +01003734 break;
3735
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003736 ret = scrub_pages(sctx, bytenr, BTRFS_SUPER_INFO_SIZE, bytenr,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01003737 scrub_dev, BTRFS_EXTENT_FLAG_SUPER, gen, i,
Stefan Behrensff023aa2012-11-06 11:43:11 +01003738 NULL, 1, bytenr);
Arne Jansena2de7332011-03-08 14:14:00 +01003739 if (ret)
3740 return ret;
3741 }
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003742 wait_event(sctx->list_wait, atomic_read(&sctx->bios_in_flight) == 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003743
3744 return 0;
3745}
3746
3747/*
3748 * get a reference count on fs_info->scrub_workers. start worker if necessary
3749 */
Stefan Behrensff023aa2012-11-06 11:43:11 +01003750static noinline_for_stack int scrub_workers_get(struct btrfs_fs_info *fs_info,
3751 int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01003752{
David Sterba6f011052015-02-16 18:34:01 +01003753 unsigned int flags = WQ_FREEZABLE | WQ_UNBOUND;
Qu Wenruo0339ef22014-02-28 10:46:17 +08003754 int max_active = fs_info->thread_pool_size;
Arne Jansena2de7332011-03-08 14:14:00 +01003755
Anand Jaineb4318e2019-01-30 14:45:01 +08003756 lockdep_assert_held(&fs_info->scrub_lock);
3757
Anand Jainff09c4c2019-01-30 14:45:02 +08003758 if (refcount_read(&fs_info->scrub_workers_refcnt) == 0) {
David Sterbac8352942019-02-12 16:51:18 +01003759 ASSERT(fs_info->scrub_workers == NULL);
David Sterbaaf1cbe02017-03-31 18:42:57 +02003760 fs_info->scrub_workers = btrfs_alloc_workqueue(fs_info, "scrub",
3761 flags, is_dev_replace ? 1 : max_active, 4);
Zhao Leie82afc52015-06-12 20:36:58 +08003762 if (!fs_info->scrub_workers)
3763 goto fail_scrub_workers;
3764
David Sterbac8352942019-02-12 16:51:18 +01003765 ASSERT(fs_info->scrub_wr_completion_workers == NULL);
Qu Wenruo0339ef22014-02-28 10:46:17 +08003766 fs_info->scrub_wr_completion_workers =
Jeff Mahoneycb001092016-06-09 16:22:11 -04003767 btrfs_alloc_workqueue(fs_info, "scrubwrc", flags,
Qu Wenruo0339ef22014-02-28 10:46:17 +08003768 max_active, 2);
Zhao Leie82afc52015-06-12 20:36:58 +08003769 if (!fs_info->scrub_wr_completion_workers)
3770 goto fail_scrub_wr_completion_workers;
3771
David Sterbac8352942019-02-12 16:51:18 +01003772 ASSERT(fs_info->scrub_parity_workers == NULL);
Zhao Lei20b2e302015-06-04 20:09:15 +08003773 fs_info->scrub_parity_workers =
Jeff Mahoneycb001092016-06-09 16:22:11 -04003774 btrfs_alloc_workqueue(fs_info, "scrubparity", flags,
Zhao Lei20b2e302015-06-04 20:09:15 +08003775 max_active, 2);
Zhao Leie82afc52015-06-12 20:36:58 +08003776 if (!fs_info->scrub_parity_workers)
3777 goto fail_scrub_parity_workers;
Anand Jainff09c4c2019-01-30 14:45:02 +08003778
3779 refcount_set(&fs_info->scrub_workers_refcnt, 1);
3780 } else {
3781 refcount_inc(&fs_info->scrub_workers_refcnt);
Arne Jansen632dd772011-06-10 12:07:07 +02003782 }
Zhao Leie82afc52015-06-12 20:36:58 +08003783 return 0;
3784
3785fail_scrub_parity_workers:
Zhao Leie82afc52015-06-12 20:36:58 +08003786 btrfs_destroy_workqueue(fs_info->scrub_wr_completion_workers);
3787fail_scrub_wr_completion_workers:
3788 btrfs_destroy_workqueue(fs_info->scrub_workers);
3789fail_scrub_workers:
3790 return -ENOMEM;
Arne Jansena2de7332011-03-08 14:14:00 +01003791}
3792
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003793int btrfs_scrub_dev(struct btrfs_fs_info *fs_info, u64 devid, u64 start,
3794 u64 end, struct btrfs_scrub_progress *progress,
Stefan Behrens63a212a2012-11-05 18:29:28 +01003795 int readonly, int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01003796{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003797 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003798 int ret;
3799 struct btrfs_device *dev;
Filipe Mananaa5fb1142018-11-26 20:07:17 +00003800 unsigned int nofs_flag;
Anand Jain1cec3f272019-01-30 14:45:00 +08003801 struct btrfs_workqueue *scrub_workers = NULL;
3802 struct btrfs_workqueue *scrub_wr_comp = NULL;
3803 struct btrfs_workqueue *scrub_parity = NULL;
Arne Jansena2de7332011-03-08 14:14:00 +01003804
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003805 if (btrfs_fs_closing(fs_info))
David Sterba6c3abed2019-02-25 19:57:41 +01003806 return -EAGAIN;
Arne Jansena2de7332011-03-08 14:14:00 +01003807
Jeff Mahoneyda170662016-06-15 09:22:56 -04003808 if (fs_info->nodesize > BTRFS_STRIPE_LEN) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003809 /*
3810 * in this case scrub is unable to calculate the checksum
3811 * the way scrub is implemented. Do not handle this
3812 * situation at all because it won't ever happen.
3813 */
Frank Holtonefe120a2013-12-20 11:37:06 -05003814 btrfs_err(fs_info,
3815 "scrub: size assumption nodesize <= BTRFS_STRIPE_LEN (%d <= %d) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003816 fs_info->nodesize,
3817 BTRFS_STRIPE_LEN);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003818 return -EINVAL;
3819 }
3820
Jeff Mahoneyda170662016-06-15 09:22:56 -04003821 if (fs_info->sectorsize != PAGE_SIZE) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04003822 /* not supported for data w/o checksums */
Chandan Rajendra751bebbe2016-07-04 10:04:39 +05303823 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003824 "scrub: size assumption sectorsize != PAGE_SIZE (%d != %lu) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003825 fs_info->sectorsize, PAGE_SIZE);
Arne Jansena2de7332011-03-08 14:14:00 +01003826 return -EINVAL;
3827 }
3828
Jeff Mahoneyda170662016-06-15 09:22:56 -04003829 if (fs_info->nodesize >
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003830 PAGE_SIZE * SCRUB_MAX_PAGES_PER_BLOCK ||
Jeff Mahoneyda170662016-06-15 09:22:56 -04003831 fs_info->sectorsize > PAGE_SIZE * SCRUB_MAX_PAGES_PER_BLOCK) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003832 /*
3833 * would exhaust the array bounds of pagev member in
3834 * struct scrub_block
3835 */
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003836 btrfs_err(fs_info,
3837 "scrub: size assumption nodesize and sectorsize <= SCRUB_MAX_PAGES_PER_BLOCK (%d <= %d && %d <= %d) fails",
Jeff Mahoneyda170662016-06-15 09:22:56 -04003838 fs_info->nodesize,
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003839 SCRUB_MAX_PAGES_PER_BLOCK,
Jeff Mahoneyda170662016-06-15 09:22:56 -04003840 fs_info->sectorsize,
Stefan Behrens7a9e9982012-11-02 14:58:04 +01003841 SCRUB_MAX_PAGES_PER_BLOCK);
3842 return -EINVAL;
3843 }
3844
David Sterba0e94c4f42018-12-04 16:11:56 +01003845 /* Allocate outside of device_list_mutex */
3846 sctx = scrub_setup_ctx(fs_info, is_dev_replace);
3847 if (IS_ERR(sctx))
3848 return PTR_ERR(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01003849
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003850 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jain09ba3bc2019-01-19 14:48:55 +08003851 dev = btrfs_find_device(fs_info->fs_devices, devid, NULL, NULL, true);
Anand Jaine6e674b2017-12-04 12:54:54 +08003852 if (!dev || (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) &&
3853 !is_dev_replace)) {
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003854 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003855 ret = -ENODEV;
3856 goto out_free_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003857 }
Arne Jansena2de7332011-03-08 14:14:00 +01003858
Anand Jainebbede42017-12-04 12:54:52 +08003859 if (!is_dev_replace && !readonly &&
3860 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Miao Xie5d68da32014-07-24 11:37:07 +08003861 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Misono Tomohiro672d5992018-08-02 16:19:07 +09003862 btrfs_err_in_rcu(fs_info, "scrub: device %s is not writable",
3863 rcu_str_deref(dev->name));
David Sterba0e94c4f42018-12-04 16:11:56 +01003864 ret = -EROFS;
3865 goto out_free_ctx;
Miao Xie5d68da32014-07-24 11:37:07 +08003866 }
3867
Wang Shilong3b7a0162013-10-12 02:11:12 +08003868 mutex_lock(&fs_info->scrub_lock);
Anand Jaine12c9622017-12-04 12:54:53 +08003869 if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &dev->dev_state) ||
Anand Jain401e29c2017-12-04 12:54:55 +08003870 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &dev->dev_state)) {
Arne Jansena2de7332011-03-08 14:14:00 +01003871 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003872 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003873 ret = -EIO;
3874 goto out_free_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003875 }
3876
David Sterbacb5583d2018-09-07 16:11:23 +02003877 down_read(&fs_info->dev_replace.rwsem);
Anand Jaincadbc0a2018-01-03 16:08:30 +08003878 if (dev->scrub_ctx ||
Stefan Behrens8dabb742012-11-06 13:15:27 +01003879 (!is_dev_replace &&
3880 btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))) {
David Sterbacb5583d2018-09-07 16:11:23 +02003881 up_read(&fs_info->dev_replace.rwsem);
Arne Jansena2de7332011-03-08 14:14:00 +01003882 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003883 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003884 ret = -EINPROGRESS;
3885 goto out_free_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003886 }
David Sterbacb5583d2018-09-07 16:11:23 +02003887 up_read(&fs_info->dev_replace.rwsem);
Wang Shilong3b7a0162013-10-12 02:11:12 +08003888
3889 ret = scrub_workers_get(fs_info, is_dev_replace);
3890 if (ret) {
3891 mutex_unlock(&fs_info->scrub_lock);
3892 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
David Sterba0e94c4f42018-12-04 16:11:56 +01003893 goto out_free_ctx;
Wang Shilong3b7a0162013-10-12 02:11:12 +08003894 }
3895
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003896 sctx->readonly = readonly;
Anand Jaincadbc0a2018-01-03 16:08:30 +08003897 dev->scrub_ctx = sctx;
Wang Shilong3cb09292013-12-04 21:15:19 +08003898 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Arne Jansena2de7332011-03-08 14:14:00 +01003899
Wang Shilong3cb09292013-12-04 21:15:19 +08003900 /*
3901 * checking @scrub_pause_req here, we can avoid
3902 * race between committing transaction and scrubbing.
3903 */
Wang Shilongcb7ab022013-12-04 21:16:53 +08003904 __scrub_blocked_if_needed(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01003905 atomic_inc(&fs_info->scrubs_running);
3906 mutex_unlock(&fs_info->scrub_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003907
Filipe Mananaa5fb1142018-11-26 20:07:17 +00003908 /*
3909 * In order to avoid deadlock with reclaim when there is a transaction
3910 * trying to pause scrub, make sure we use GFP_NOFS for all the
3911 * allocations done at btrfs_scrub_pages() and scrub_pages_for_parity()
3912 * invoked by our callees. The pausing request is done when the
3913 * transaction commit starts, and it blocks the transaction until scrub
3914 * is paused (done at specific points at scrub_stripe() or right above
3915 * before incrementing fs_info->scrubs_running).
3916 */
3917 nofs_flag = memalloc_nofs_save();
Stefan Behrensff023aa2012-11-06 11:43:11 +01003918 if (!is_dev_replace) {
Anand Jaind1e14422019-01-03 16:17:40 +08003919 btrfs_info(fs_info, "scrub: started on devid %llu", devid);
Wang Shilong9b011ad2013-10-25 19:12:02 +08003920 /*
3921 * by holding device list mutex, we can
3922 * kick off writing super in log tree sync.
3923 */
Wang Shilong3cb09292013-12-04 21:15:19 +08003924 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003925 ret = scrub_supers(sctx, dev);
Wang Shilong3cb09292013-12-04 21:15:19 +08003926 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003927 }
Arne Jansena2de7332011-03-08 14:14:00 +01003928
3929 if (!ret)
Omar Sandoval32934282018-08-14 11:09:52 -07003930 ret = scrub_enumerate_chunks(sctx, dev, start, end);
Filipe Mananaa5fb1142018-11-26 20:07:17 +00003931 memalloc_nofs_restore(nofs_flag);
Arne Jansena2de7332011-03-08 14:14:00 +01003932
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003933 wait_event(sctx->list_wait, atomic_read(&sctx->bios_in_flight) == 0);
Arne Jansena2de7332011-03-08 14:14:00 +01003934 atomic_dec(&fs_info->scrubs_running);
3935 wake_up(&fs_info->scrub_pause_wait);
3936
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01003937 wait_event(sctx->list_wait, atomic_read(&sctx->workers_pending) == 0);
Jan Schmidt0ef8e452011-06-13 20:04:15 +02003938
Arne Jansena2de7332011-03-08 14:14:00 +01003939 if (progress)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003940 memcpy(progress, &sctx->stat, sizeof(*progress));
Arne Jansena2de7332011-03-08 14:14:00 +01003941
Anand Jaind1e14422019-01-03 16:17:40 +08003942 if (!is_dev_replace)
3943 btrfs_info(fs_info, "scrub: %s on devid %llu with status: %d",
3944 ret ? "not finished" : "finished", devid, ret);
3945
Arne Jansena2de7332011-03-08 14:14:00 +01003946 mutex_lock(&fs_info->scrub_lock);
Anand Jaincadbc0a2018-01-03 16:08:30 +08003947 dev->scrub_ctx = NULL;
Anand Jainff09c4c2019-01-30 14:45:02 +08003948 if (refcount_dec_and_test(&fs_info->scrub_workers_refcnt)) {
Anand Jain1cec3f272019-01-30 14:45:00 +08003949 scrub_workers = fs_info->scrub_workers;
3950 scrub_wr_comp = fs_info->scrub_wr_completion_workers;
3951 scrub_parity = fs_info->scrub_parity_workers;
David Sterbac8352942019-02-12 16:51:18 +01003952
3953 fs_info->scrub_workers = NULL;
3954 fs_info->scrub_wr_completion_workers = NULL;
3955 fs_info->scrub_parity_workers = NULL;
Anand Jain1cec3f272019-01-30 14:45:00 +08003956 }
Arne Jansena2de7332011-03-08 14:14:00 +01003957 mutex_unlock(&fs_info->scrub_lock);
3958
Anand Jain1cec3f272019-01-30 14:45:00 +08003959 btrfs_destroy_workqueue(scrub_workers);
3960 btrfs_destroy_workqueue(scrub_wr_comp);
3961 btrfs_destroy_workqueue(scrub_parity);
Filipe Mananaf55985f2015-02-09 21:14:24 +00003962 scrub_put_ctx(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01003963
3964 return ret;
David Sterba0e94c4f42018-12-04 16:11:56 +01003965
3966out_free_ctx:
3967 scrub_free_ctx(sctx);
3968
3969 return ret;
Arne Jansena2de7332011-03-08 14:14:00 +01003970}
3971
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003972void btrfs_scrub_pause(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003973{
Arne Jansena2de7332011-03-08 14:14:00 +01003974 mutex_lock(&fs_info->scrub_lock);
3975 atomic_inc(&fs_info->scrub_pause_req);
3976 while (atomic_read(&fs_info->scrubs_paused) !=
3977 atomic_read(&fs_info->scrubs_running)) {
3978 mutex_unlock(&fs_info->scrub_lock);
3979 wait_event(fs_info->scrub_pause_wait,
3980 atomic_read(&fs_info->scrubs_paused) ==
3981 atomic_read(&fs_info->scrubs_running));
3982 mutex_lock(&fs_info->scrub_lock);
3983 }
3984 mutex_unlock(&fs_info->scrub_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01003985}
3986
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003987void btrfs_scrub_continue(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003988{
Arne Jansena2de7332011-03-08 14:14:00 +01003989 atomic_dec(&fs_info->scrub_pause_req);
3990 wake_up(&fs_info->scrub_pause_wait);
Arne Jansena2de7332011-03-08 14:14:00 +01003991}
3992
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003993int btrfs_scrub_cancel(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003994{
Arne Jansena2de7332011-03-08 14:14:00 +01003995 mutex_lock(&fs_info->scrub_lock);
3996 if (!atomic_read(&fs_info->scrubs_running)) {
3997 mutex_unlock(&fs_info->scrub_lock);
3998 return -ENOTCONN;
3999 }
4000
4001 atomic_inc(&fs_info->scrub_cancel_req);
4002 while (atomic_read(&fs_info->scrubs_running)) {
4003 mutex_unlock(&fs_info->scrub_lock);
4004 wait_event(fs_info->scrub_pause_wait,
4005 atomic_read(&fs_info->scrubs_running) == 0);
4006 mutex_lock(&fs_info->scrub_lock);
4007 }
4008 atomic_dec(&fs_info->scrub_cancel_req);
4009 mutex_unlock(&fs_info->scrub_lock);
4010
4011 return 0;
4012}
4013
David Sterba163e97e2019-03-20 16:32:55 +01004014int btrfs_scrub_cancel_dev(struct btrfs_device *dev)
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004015{
David Sterba163e97e2019-03-20 16:32:55 +01004016 struct btrfs_fs_info *fs_info = dev->fs_info;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004017 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01004018
4019 mutex_lock(&fs_info->scrub_lock);
Anand Jaincadbc0a2018-01-03 16:08:30 +08004020 sctx = dev->scrub_ctx;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004021 if (!sctx) {
Arne Jansena2de7332011-03-08 14:14:00 +01004022 mutex_unlock(&fs_info->scrub_lock);
4023 return -ENOTCONN;
4024 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004025 atomic_inc(&sctx->cancel_req);
Anand Jaincadbc0a2018-01-03 16:08:30 +08004026 while (dev->scrub_ctx) {
Arne Jansena2de7332011-03-08 14:14:00 +01004027 mutex_unlock(&fs_info->scrub_lock);
4028 wait_event(fs_info->scrub_pause_wait,
Anand Jaincadbc0a2018-01-03 16:08:30 +08004029 dev->scrub_ctx == NULL);
Arne Jansena2de7332011-03-08 14:14:00 +01004030 mutex_lock(&fs_info->scrub_lock);
4031 }
4032 mutex_unlock(&fs_info->scrub_lock);
4033
4034 return 0;
4035}
Stefan Behrens1623ede2012-03-27 14:21:26 -04004036
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004037int btrfs_scrub_progress(struct btrfs_fs_info *fs_info, u64 devid,
Arne Jansena2de7332011-03-08 14:14:00 +01004038 struct btrfs_scrub_progress *progress)
4039{
4040 struct btrfs_device *dev;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004041 struct scrub_ctx *sctx = NULL;
Arne Jansena2de7332011-03-08 14:14:00 +01004042
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004043 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jain09ba3bc2019-01-19 14:48:55 +08004044 dev = btrfs_find_device(fs_info->fs_devices, devid, NULL, NULL, true);
Arne Jansena2de7332011-03-08 14:14:00 +01004045 if (dev)
Anand Jaincadbc0a2018-01-03 16:08:30 +08004046 sctx = dev->scrub_ctx;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004047 if (sctx)
4048 memcpy(progress, &sctx->stat, sizeof(*progress));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004049 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Arne Jansena2de7332011-03-08 14:14:00 +01004050
Stefan Behrensd9d181c2012-11-02 09:58:09 +01004051 return dev ? (sctx ? 0 : -ENOTCONN) : -ENODEV;
Arne Jansena2de7332011-03-08 14:14:00 +01004052}
Stefan Behrensff023aa2012-11-06 11:43:11 +01004053
4054static void scrub_remap_extent(struct btrfs_fs_info *fs_info,
4055 u64 extent_logical, u64 extent_len,
4056 u64 *extent_physical,
4057 struct btrfs_device **extent_dev,
4058 int *extent_mirror_num)
4059{
4060 u64 mapped_length;
4061 struct btrfs_bio *bbio = NULL;
4062 int ret;
4063
4064 mapped_length = extent_len;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02004065 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, extent_logical,
Stefan Behrensff023aa2012-11-06 11:43:11 +01004066 &mapped_length, &bbio, 0);
4067 if (ret || !bbio || mapped_length < extent_len ||
4068 !bbio->stripes[0].dev->bdev) {
Zhao Lei6e9606d2015-01-20 15:11:34 +08004069 btrfs_put_bbio(bbio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01004070 return;
4071 }
4072
4073 *extent_physical = bbio->stripes[0].physical;
4074 *extent_mirror_num = bbio->mirror_num;
4075 *extent_dev = bbio->stripes[0].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08004076 btrfs_put_bbio(bbio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01004077}