blob: f21e2df89bc26b0259b570a17b1f801d826c43e3 [file] [log] [blame]
Arne Jansena2de7332011-03-08 14:14:00 +01001/*
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002 * Copyright (C) 2011, 2012 STRATO. All rights reserved.
Arne Jansena2de7332011-03-08 14:14:00 +01003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Arne Jansena2de7332011-03-08 14:14:00 +010019#include <linux/blkdev.h>
Jan Schmidt558540c2011-06-13 19:59:12 +020020#include <linux/ratelimit.h>
Arne Jansena2de7332011-03-08 14:14:00 +010021#include "ctree.h"
22#include "volumes.h"
23#include "disk-io.h"
24#include "ordered-data.h"
Jan Schmidt0ef8e452011-06-13 20:04:15 +020025#include "transaction.h"
Jan Schmidt558540c2011-06-13 19:59:12 +020026#include "backref.h"
Jan Schmidt5da6fcb2011-08-04 18:11:04 +020027#include "extent_io.h"
Stefan Behrensff023aa2012-11-06 11:43:11 +010028#include "dev-replace.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010029#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040030#include "rcu-string.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050031#include "raid56.h"
Arne Jansena2de7332011-03-08 14:14:00 +010032
33/*
34 * This is only the first step towards a full-features scrub. It reads all
35 * extent and super block and verifies the checksums. In case a bad checksum
36 * is found or the extent cannot be read, good data will be written back if
37 * any can be found.
38 *
39 * Future enhancements:
Arne Jansena2de7332011-03-08 14:14:00 +010040 * - In case an unrepairable extent is encountered, track which files are
41 * affected and report them
Arne Jansena2de7332011-03-08 14:14:00 +010042 * - track and record media errors, throw out bad devices
Arne Jansena2de7332011-03-08 14:14:00 +010043 * - add a mode to also read unallocated space
Arne Jansena2de7332011-03-08 14:14:00 +010044 */
45
Stefan Behrensb5d67f62012-03-27 14:21:27 -040046struct scrub_block;
Stefan Behrensd9d181c2012-11-02 09:58:09 +010047struct scrub_ctx;
Arne Jansena2de7332011-03-08 14:14:00 +010048
Stefan Behrensff023aa2012-11-06 11:43:11 +010049/*
50 * the following three values only influence the performance.
51 * The last one configures the number of parallel and outstanding I/O
52 * operations. The first two values configure an upper limit for the number
53 * of (dynamically allocated) pages that are added to a bio.
54 */
55#define SCRUB_PAGES_PER_RD_BIO 32 /* 128k per bio */
56#define SCRUB_PAGES_PER_WR_BIO 32 /* 128k per bio */
57#define SCRUB_BIOS_PER_SCTX 64 /* 8MB per device in flight */
Stefan Behrens7a9e9982012-11-02 14:58:04 +010058
59/*
60 * the following value times PAGE_SIZE needs to be large enough to match the
61 * largest node/leaf/sector size that shall be supported.
62 * Values larger than BTRFS_STRIPE_LEN are not supported.
63 */
Stefan Behrensb5d67f62012-03-27 14:21:27 -040064#define SCRUB_MAX_PAGES_PER_BLOCK 16 /* 64k per node/leaf/sector */
Arne Jansena2de7332011-03-08 14:14:00 +010065
66struct scrub_page {
Stefan Behrensb5d67f62012-03-27 14:21:27 -040067 struct scrub_block *sblock;
68 struct page *page;
Stefan Behrens442a4f62012-05-25 16:06:08 +020069 struct btrfs_device *dev;
Arne Jansena2de7332011-03-08 14:14:00 +010070 u64 flags; /* extent flags */
71 u64 generation;
Stefan Behrensb5d67f62012-03-27 14:21:27 -040072 u64 logical;
73 u64 physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +010074 u64 physical_for_dev_replace;
Stefan Behrens7a9e9982012-11-02 14:58:04 +010075 atomic_t ref_count;
Stefan Behrensb5d67f62012-03-27 14:21:27 -040076 struct {
77 unsigned int mirror_num:8;
78 unsigned int have_csum:1;
79 unsigned int io_error:1;
80 };
Arne Jansena2de7332011-03-08 14:14:00 +010081 u8 csum[BTRFS_CSUM_SIZE];
82};
83
84struct scrub_bio {
85 int index;
Stefan Behrensd9d181c2012-11-02 09:58:09 +010086 struct scrub_ctx *sctx;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +010087 struct btrfs_device *dev;
Arne Jansena2de7332011-03-08 14:14:00 +010088 struct bio *bio;
89 int err;
90 u64 logical;
91 u64 physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +010092#if SCRUB_PAGES_PER_WR_BIO >= SCRUB_PAGES_PER_RD_BIO
93 struct scrub_page *pagev[SCRUB_PAGES_PER_WR_BIO];
94#else
95 struct scrub_page *pagev[SCRUB_PAGES_PER_RD_BIO];
96#endif
Stefan Behrensb5d67f62012-03-27 14:21:27 -040097 int page_count;
Arne Jansena2de7332011-03-08 14:14:00 +010098 int next_free;
99 struct btrfs_work work;
100};
101
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400102struct scrub_block {
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100103 struct scrub_page *pagev[SCRUB_MAX_PAGES_PER_BLOCK];
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400104 int page_count;
105 atomic_t outstanding_pages;
106 atomic_t ref_count; /* free mem on transition to zero */
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100107 struct scrub_ctx *sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400108 struct {
109 unsigned int header_error:1;
110 unsigned int checksum_error:1;
111 unsigned int no_io_error_seen:1;
Stefan Behrens442a4f62012-05-25 16:06:08 +0200112 unsigned int generation_error:1; /* also sets header_error */
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400113 };
114};
115
Stefan Behrensff023aa2012-11-06 11:43:11 +0100116struct scrub_wr_ctx {
117 struct scrub_bio *wr_curr_bio;
118 struct btrfs_device *tgtdev;
119 int pages_per_wr_bio; /* <= SCRUB_PAGES_PER_WR_BIO */
120 atomic_t flush_all_writes;
121 struct mutex wr_lock;
122};
123
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100124struct scrub_ctx {
Stefan Behrensff023aa2012-11-06 11:43:11 +0100125 struct scrub_bio *bios[SCRUB_BIOS_PER_SCTX];
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100126 struct btrfs_root *dev_root;
Arne Jansena2de7332011-03-08 14:14:00 +0100127 int first_free;
128 int curr;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100129 atomic_t bios_in_flight;
130 atomic_t workers_pending;
Arne Jansena2de7332011-03-08 14:14:00 +0100131 spinlock_t list_lock;
132 wait_queue_head_t list_wait;
133 u16 csum_size;
134 struct list_head csum_list;
135 atomic_t cancel_req;
Arne Jansen86287642011-03-23 16:34:19 +0100136 int readonly;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100137 int pages_per_rd_bio;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400138 u32 sectorsize;
139 u32 nodesize;
140 u32 leafsize;
Stefan Behrens63a212a2012-11-05 18:29:28 +0100141
142 int is_dev_replace;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100143 struct scrub_wr_ctx wr_ctx;
Stefan Behrens63a212a2012-11-05 18:29:28 +0100144
Arne Jansena2de7332011-03-08 14:14:00 +0100145 /*
146 * statistics
147 */
148 struct btrfs_scrub_progress stat;
149 spinlock_t stat_lock;
150};
151
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200152struct scrub_fixup_nodatasum {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100153 struct scrub_ctx *sctx;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100154 struct btrfs_device *dev;
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200155 u64 logical;
156 struct btrfs_root *root;
157 struct btrfs_work work;
158 int mirror_num;
159};
160
Josef Bacik652f25a2013-09-12 16:58:28 -0400161struct scrub_nocow_inode {
162 u64 inum;
163 u64 offset;
164 u64 root;
165 struct list_head list;
166};
167
Stefan Behrensff023aa2012-11-06 11:43:11 +0100168struct scrub_copy_nocow_ctx {
169 struct scrub_ctx *sctx;
170 u64 logical;
171 u64 len;
172 int mirror_num;
173 u64 physical_for_dev_replace;
Josef Bacik652f25a2013-09-12 16:58:28 -0400174 struct list_head inodes;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100175 struct btrfs_work work;
176};
177
Jan Schmidt558540c2011-06-13 19:59:12 +0200178struct scrub_warning {
179 struct btrfs_path *path;
180 u64 extent_item_size;
181 char *scratch_buf;
182 char *msg_buf;
183 const char *errstr;
184 sector_t sector;
185 u64 logical;
186 struct btrfs_device *dev;
187 int msg_bufsize;
188 int scratch_bufsize;
189};
190
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400191
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100192static void scrub_pending_bio_inc(struct scrub_ctx *sctx);
193static void scrub_pending_bio_dec(struct scrub_ctx *sctx);
194static void scrub_pending_trans_workers_inc(struct scrub_ctx *sctx);
195static void scrub_pending_trans_workers_dec(struct scrub_ctx *sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400196static int scrub_handle_errored_block(struct scrub_block *sblock_to_check);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100197static int scrub_setup_recheck_block(struct scrub_ctx *sctx,
Stefan Behrens3ec706c2012-11-05 15:46:42 +0100198 struct btrfs_fs_info *fs_info,
Stefan Behrensff023aa2012-11-06 11:43:11 +0100199 struct scrub_block *original_sblock,
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400200 u64 length, u64 logical,
Stefan Behrensff023aa2012-11-06 11:43:11 +0100201 struct scrub_block *sblocks_for_recheck);
Stefan Behrens34f5c8e2012-11-02 16:16:26 +0100202static void scrub_recheck_block(struct btrfs_fs_info *fs_info,
203 struct scrub_block *sblock, int is_metadata,
204 int have_csum, u8 *csum, u64 generation,
205 u16 csum_size);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400206static void scrub_recheck_block_checksum(struct btrfs_fs_info *fs_info,
207 struct scrub_block *sblock,
208 int is_metadata, int have_csum,
209 const u8 *csum, u64 generation,
210 u16 csum_size);
211static void scrub_complete_bio_end_io(struct bio *bio, int err);
212static int scrub_repair_block_from_good_copy(struct scrub_block *sblock_bad,
213 struct scrub_block *sblock_good,
214 int force_write);
215static int scrub_repair_page_from_good_copy(struct scrub_block *sblock_bad,
216 struct scrub_block *sblock_good,
217 int page_num, int force_write);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100218static void scrub_write_block_to_dev_replace(struct scrub_block *sblock);
219static int scrub_write_page_to_dev_replace(struct scrub_block *sblock,
220 int page_num);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400221static int scrub_checksum_data(struct scrub_block *sblock);
222static int scrub_checksum_tree_block(struct scrub_block *sblock);
223static int scrub_checksum_super(struct scrub_block *sblock);
224static void scrub_block_get(struct scrub_block *sblock);
225static void scrub_block_put(struct scrub_block *sblock);
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100226static void scrub_page_get(struct scrub_page *spage);
227static void scrub_page_put(struct scrub_page *spage);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100228static int scrub_add_page_to_rd_bio(struct scrub_ctx *sctx,
229 struct scrub_page *spage);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100230static int scrub_pages(struct scrub_ctx *sctx, u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100231 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +0100232 u64 gen, int mirror_num, u8 *csum, int force,
233 u64 physical_for_dev_replace);
Stefan Behrens1623ede2012-03-27 14:21:26 -0400234static void scrub_bio_end_io(struct bio *bio, int err);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400235static void scrub_bio_end_io_worker(struct btrfs_work *work);
236static void scrub_block_complete(struct scrub_block *sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100237static void scrub_remap_extent(struct btrfs_fs_info *fs_info,
238 u64 extent_logical, u64 extent_len,
239 u64 *extent_physical,
240 struct btrfs_device **extent_dev,
241 int *extent_mirror_num);
242static int scrub_setup_wr_ctx(struct scrub_ctx *sctx,
243 struct scrub_wr_ctx *wr_ctx,
244 struct btrfs_fs_info *fs_info,
245 struct btrfs_device *dev,
246 int is_dev_replace);
247static void scrub_free_wr_ctx(struct scrub_wr_ctx *wr_ctx);
248static 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);
251static void scrub_wr_bio_end_io(struct bio *bio, int err);
252static void scrub_wr_bio_end_io_worker(struct btrfs_work *work);
253static int write_page_nocow(struct scrub_ctx *sctx,
254 u64 physical_for_dev_replace, struct page *page);
255static int copy_nocow_pages_for_inode(u64 inum, u64 offset, u64 root,
Josef Bacik652f25a2013-09-12 16:58:28 -0400256 struct scrub_copy_nocow_ctx *ctx);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100257static int copy_nocow_pages(struct scrub_ctx *sctx, u64 logical, u64 len,
258 int mirror_num, u64 physical_for_dev_replace);
259static void copy_nocow_pages_worker(struct btrfs_work *work);
Stefan Behrens1623ede2012-03-27 14:21:26 -0400260
261
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100262static void scrub_pending_bio_inc(struct scrub_ctx *sctx)
263{
264 atomic_inc(&sctx->bios_in_flight);
265}
266
267static void scrub_pending_bio_dec(struct scrub_ctx *sctx)
268{
269 atomic_dec(&sctx->bios_in_flight);
270 wake_up(&sctx->list_wait);
271}
272
273/*
274 * used for workers that require transaction commits (i.e., for the
275 * NOCOW case)
276 */
277static void scrub_pending_trans_workers_inc(struct scrub_ctx *sctx)
278{
279 struct btrfs_fs_info *fs_info = sctx->dev_root->fs_info;
280
281 /*
282 * increment scrubs_running to prevent cancel requests from
283 * completing as long as a worker is running. we must also
284 * increment scrubs_paused to prevent deadlocking on pause
285 * requests used for transactions commits (as the worker uses a
286 * transaction context). it is safe to regard the worker
287 * as paused for all matters practical. effectively, we only
288 * avoid cancellation requests from completing.
289 */
290 mutex_lock(&fs_info->scrub_lock);
291 atomic_inc(&fs_info->scrubs_running);
292 atomic_inc(&fs_info->scrubs_paused);
293 mutex_unlock(&fs_info->scrub_lock);
294 atomic_inc(&sctx->workers_pending);
295}
296
297/* used for workers that require transaction commits */
298static void scrub_pending_trans_workers_dec(struct scrub_ctx *sctx)
299{
300 struct btrfs_fs_info *fs_info = sctx->dev_root->fs_info;
301
302 /*
303 * see scrub_pending_trans_workers_inc() why we're pretending
304 * to be paused in the scrub counters
305 */
306 mutex_lock(&fs_info->scrub_lock);
307 atomic_dec(&fs_info->scrubs_running);
308 atomic_dec(&fs_info->scrubs_paused);
309 mutex_unlock(&fs_info->scrub_lock);
310 atomic_dec(&sctx->workers_pending);
311 wake_up(&fs_info->scrub_pause_wait);
312 wake_up(&sctx->list_wait);
313}
314
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100315static void scrub_free_csums(struct scrub_ctx *sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100316{
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100317 while (!list_empty(&sctx->csum_list)) {
Arne Jansena2de7332011-03-08 14:14:00 +0100318 struct btrfs_ordered_sum *sum;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100319 sum = list_first_entry(&sctx->csum_list,
Arne Jansena2de7332011-03-08 14:14:00 +0100320 struct btrfs_ordered_sum, list);
321 list_del(&sum->list);
322 kfree(sum);
323 }
324}
325
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100326static noinline_for_stack void scrub_free_ctx(struct scrub_ctx *sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100327{
328 int i;
Arne Jansena2de7332011-03-08 14:14:00 +0100329
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100330 if (!sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100331 return;
332
Stefan Behrensff023aa2012-11-06 11:43:11 +0100333 scrub_free_wr_ctx(&sctx->wr_ctx);
334
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400335 /* this can happen when scrub is cancelled */
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100336 if (sctx->curr != -1) {
337 struct scrub_bio *sbio = sctx->bios[sctx->curr];
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400338
339 for (i = 0; i < sbio->page_count; i++) {
Stefan Behrensff023aa2012-11-06 11:43:11 +0100340 WARN_ON(!sbio->pagev[i]->page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400341 scrub_block_put(sbio->pagev[i]->sblock);
342 }
343 bio_put(sbio->bio);
344 }
345
Stefan Behrensff023aa2012-11-06 11:43:11 +0100346 for (i = 0; i < SCRUB_BIOS_PER_SCTX; ++i) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100347 struct scrub_bio *sbio = sctx->bios[i];
Arne Jansena2de7332011-03-08 14:14:00 +0100348
349 if (!sbio)
350 break;
Arne Jansena2de7332011-03-08 14:14:00 +0100351 kfree(sbio);
352 }
353
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100354 scrub_free_csums(sctx);
355 kfree(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +0100356}
357
358static noinline_for_stack
Stefan Behrens63a212a2012-11-05 18:29:28 +0100359struct scrub_ctx *scrub_setup_ctx(struct btrfs_device *dev, int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +0100360{
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100361 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +0100362 int i;
Arne Jansena2de7332011-03-08 14:14:00 +0100363 struct btrfs_fs_info *fs_info = dev->dev_root->fs_info;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100364 int pages_per_rd_bio;
365 int ret;
Arne Jansena2de7332011-03-08 14:14:00 +0100366
Stefan Behrensff023aa2012-11-06 11:43:11 +0100367 /*
368 * the setting of pages_per_rd_bio is correct for scrub but might
369 * be wrong for the dev_replace code where we might read from
370 * different devices in the initial huge bios. However, that
371 * code is able to correctly handle the case when adding a page
372 * to a bio fails.
373 */
374 if (dev->bdev)
375 pages_per_rd_bio = min_t(int, SCRUB_PAGES_PER_RD_BIO,
376 bio_get_nr_vecs(dev->bdev));
377 else
378 pages_per_rd_bio = SCRUB_PAGES_PER_RD_BIO;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100379 sctx = kzalloc(sizeof(*sctx), GFP_NOFS);
380 if (!sctx)
Arne Jansena2de7332011-03-08 14:14:00 +0100381 goto nomem;
Stefan Behrens63a212a2012-11-05 18:29:28 +0100382 sctx->is_dev_replace = is_dev_replace;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100383 sctx->pages_per_rd_bio = pages_per_rd_bio;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100384 sctx->curr = -1;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100385 sctx->dev_root = dev->dev_root;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100386 for (i = 0; i < SCRUB_BIOS_PER_SCTX; ++i) {
Arne Jansena2de7332011-03-08 14:14:00 +0100387 struct scrub_bio *sbio;
388
389 sbio = kzalloc(sizeof(*sbio), GFP_NOFS);
390 if (!sbio)
391 goto nomem;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100392 sctx->bios[i] = sbio;
Arne Jansena2de7332011-03-08 14:14:00 +0100393
Arne Jansena2de7332011-03-08 14:14:00 +0100394 sbio->index = i;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100395 sbio->sctx = sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400396 sbio->page_count = 0;
397 sbio->work.func = scrub_bio_end_io_worker;
Arne Jansena2de7332011-03-08 14:14:00 +0100398
Stefan Behrensff023aa2012-11-06 11:43:11 +0100399 if (i != SCRUB_BIOS_PER_SCTX - 1)
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100400 sctx->bios[i]->next_free = i + 1;
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200401 else
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100402 sctx->bios[i]->next_free = -1;
Arne Jansena2de7332011-03-08 14:14:00 +0100403 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100404 sctx->first_free = 0;
405 sctx->nodesize = dev->dev_root->nodesize;
406 sctx->leafsize = dev->dev_root->leafsize;
407 sctx->sectorsize = dev->dev_root->sectorsize;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100408 atomic_set(&sctx->bios_in_flight, 0);
409 atomic_set(&sctx->workers_pending, 0);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100410 atomic_set(&sctx->cancel_req, 0);
411 sctx->csum_size = btrfs_super_csum_size(fs_info->super_copy);
412 INIT_LIST_HEAD(&sctx->csum_list);
Arne Jansena2de7332011-03-08 14:14:00 +0100413
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100414 spin_lock_init(&sctx->list_lock);
415 spin_lock_init(&sctx->stat_lock);
416 init_waitqueue_head(&sctx->list_wait);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100417
418 ret = scrub_setup_wr_ctx(sctx, &sctx->wr_ctx, fs_info,
419 fs_info->dev_replace.tgtdev, is_dev_replace);
420 if (ret) {
421 scrub_free_ctx(sctx);
422 return ERR_PTR(ret);
423 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100424 return sctx;
Arne Jansena2de7332011-03-08 14:14:00 +0100425
426nomem:
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100427 scrub_free_ctx(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +0100428 return ERR_PTR(-ENOMEM);
429}
430
Stefan Behrensff023aa2012-11-06 11:43:11 +0100431static int scrub_print_warning_inode(u64 inum, u64 offset, u64 root,
432 void *warn_ctx)
Jan Schmidt558540c2011-06-13 19:59:12 +0200433{
434 u64 isize;
435 u32 nlink;
436 int ret;
437 int i;
438 struct extent_buffer *eb;
439 struct btrfs_inode_item *inode_item;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100440 struct scrub_warning *swarn = warn_ctx;
Jan Schmidt558540c2011-06-13 19:59:12 +0200441 struct btrfs_fs_info *fs_info = swarn->dev->dev_root->fs_info;
442 struct inode_fs_paths *ipath = NULL;
443 struct btrfs_root *local_root;
444 struct btrfs_key root_key;
445
446 root_key.objectid = root;
447 root_key.type = BTRFS_ROOT_ITEM_KEY;
448 root_key.offset = (u64)-1;
449 local_root = btrfs_read_fs_root_no_name(fs_info, &root_key);
450 if (IS_ERR(local_root)) {
451 ret = PTR_ERR(local_root);
452 goto err;
453 }
454
455 ret = inode_item_info(inum, 0, local_root, swarn->path);
456 if (ret) {
457 btrfs_release_path(swarn->path);
458 goto err;
459 }
460
461 eb = swarn->path->nodes[0];
462 inode_item = btrfs_item_ptr(eb, swarn->path->slots[0],
463 struct btrfs_inode_item);
464 isize = btrfs_inode_size(eb, inode_item);
465 nlink = btrfs_inode_nlink(eb, inode_item);
466 btrfs_release_path(swarn->path);
467
468 ipath = init_ipath(4096, local_root, swarn->path);
Dan Carpenter26bdef52011-11-16 11:28:01 +0300469 if (IS_ERR(ipath)) {
470 ret = PTR_ERR(ipath);
471 ipath = NULL;
472 goto err;
473 }
Jan Schmidt558540c2011-06-13 19:59:12 +0200474 ret = paths_from_inode(inum, ipath);
475
476 if (ret < 0)
477 goto err;
478
479 /*
480 * we deliberately ignore the bit ipath might have been too small to
481 * hold all of the paths here
482 */
483 for (i = 0; i < ipath->fspath->elem_cnt; ++i)
Josef Bacik606686e2012-06-04 14:03:51 -0400484 printk_in_rcu(KERN_WARNING "btrfs: %s at logical %llu on dev "
Jan Schmidt558540c2011-06-13 19:59:12 +0200485 "%s, sector %llu, root %llu, inode %llu, offset %llu, "
486 "length %llu, links %u (path: %s)\n", swarn->errstr,
Josef Bacik606686e2012-06-04 14:03:51 -0400487 swarn->logical, rcu_str_deref(swarn->dev->name),
Jan Schmidt558540c2011-06-13 19:59:12 +0200488 (unsigned long long)swarn->sector, root, inum, offset,
489 min(isize - offset, (u64)PAGE_SIZE), nlink,
Jeff Mahoney745c4d82011-11-20 07:31:57 -0500490 (char *)(unsigned long)ipath->fspath->val[i]);
Jan Schmidt558540c2011-06-13 19:59:12 +0200491
492 free_ipath(ipath);
493 return 0;
494
495err:
Josef Bacik606686e2012-06-04 14:03:51 -0400496 printk_in_rcu(KERN_WARNING "btrfs: %s at logical %llu on dev "
Jan Schmidt558540c2011-06-13 19:59:12 +0200497 "%s, sector %llu, root %llu, inode %llu, offset %llu: path "
498 "resolving failed with ret=%d\n", swarn->errstr,
Josef Bacik606686e2012-06-04 14:03:51 -0400499 swarn->logical, rcu_str_deref(swarn->dev->name),
Jan Schmidt558540c2011-06-13 19:59:12 +0200500 (unsigned long long)swarn->sector, root, inum, offset, ret);
501
502 free_ipath(ipath);
503 return 0;
504}
505
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400506static void scrub_print_warning(const char *errstr, struct scrub_block *sblock)
Jan Schmidt558540c2011-06-13 19:59:12 +0200507{
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100508 struct btrfs_device *dev;
509 struct btrfs_fs_info *fs_info;
Jan Schmidt558540c2011-06-13 19:59:12 +0200510 struct btrfs_path *path;
511 struct btrfs_key found_key;
512 struct extent_buffer *eb;
513 struct btrfs_extent_item *ei;
514 struct scrub_warning swarn;
Jan Schmidt558540c2011-06-13 19:59:12 +0200515 unsigned long ptr = 0;
Jan Schmidt4692cf52011-12-02 14:56:41 +0100516 u64 extent_item_pos;
Liu Bo69917e42012-09-07 20:01:28 -0600517 u64 flags = 0;
518 u64 ref_root;
519 u32 item_size;
520 u8 ref_level;
521 const int bufsize = 4096;
522 int ret;
Jan Schmidt558540c2011-06-13 19:59:12 +0200523
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100524 WARN_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100525 dev = sblock->pagev[0]->dev;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100526 fs_info = sblock->sctx->dev_root->fs_info;
527
Jan Schmidt558540c2011-06-13 19:59:12 +0200528 path = btrfs_alloc_path();
529
530 swarn.scratch_buf = kmalloc(bufsize, GFP_NOFS);
531 swarn.msg_buf = kmalloc(bufsize, GFP_NOFS);
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100532 swarn.sector = (sblock->pagev[0]->physical) >> 9;
533 swarn.logical = sblock->pagev[0]->logical;
Jan Schmidt558540c2011-06-13 19:59:12 +0200534 swarn.errstr = errstr;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100535 swarn.dev = NULL;
Jan Schmidt558540c2011-06-13 19:59:12 +0200536 swarn.msg_bufsize = bufsize;
537 swarn.scratch_bufsize = bufsize;
538
539 if (!path || !swarn.scratch_buf || !swarn.msg_buf)
540 goto out;
541
Liu Bo69917e42012-09-07 20:01:28 -0600542 ret = extent_from_logical(fs_info, swarn.logical, path, &found_key,
543 &flags);
Jan Schmidt558540c2011-06-13 19:59:12 +0200544 if (ret < 0)
545 goto out;
546
Jan Schmidt4692cf52011-12-02 14:56:41 +0100547 extent_item_pos = swarn.logical - found_key.objectid;
Jan Schmidt558540c2011-06-13 19:59:12 +0200548 swarn.extent_item_size = found_key.offset;
549
550 eb = path->nodes[0];
551 ei = btrfs_item_ptr(eb, path->slots[0], struct btrfs_extent_item);
552 item_size = btrfs_item_size_nr(eb, path->slots[0]);
553
Liu Bo69917e42012-09-07 20:01:28 -0600554 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Jan Schmidt558540c2011-06-13 19:59:12 +0200555 do {
556 ret = tree_backref_for_extent(&ptr, eb, ei, item_size,
557 &ref_root, &ref_level);
Josef Bacik606686e2012-06-04 14:03:51 -0400558 printk_in_rcu(KERN_WARNING
Stefan Behrens1623ede2012-03-27 14:21:26 -0400559 "btrfs: %s at logical %llu on dev %s, "
Jan Schmidt558540c2011-06-13 19:59:12 +0200560 "sector %llu: metadata %s (level %d) in tree "
Josef Bacik606686e2012-06-04 14:03:51 -0400561 "%llu\n", errstr, swarn.logical,
562 rcu_str_deref(dev->name),
Jan Schmidt558540c2011-06-13 19:59:12 +0200563 (unsigned long long)swarn.sector,
564 ref_level ? "node" : "leaf",
565 ret < 0 ? -1 : ref_level,
566 ret < 0 ? -1 : ref_root);
567 } while (ret != 1);
Josef Bacikd8fe29e2013-03-29 08:09:34 -0600568 btrfs_release_path(path);
Jan Schmidt558540c2011-06-13 19:59:12 +0200569 } else {
Josef Bacikd8fe29e2013-03-29 08:09:34 -0600570 btrfs_release_path(path);
Jan Schmidt558540c2011-06-13 19:59:12 +0200571 swarn.path = path;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100572 swarn.dev = dev;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +0100573 iterate_extent_inodes(fs_info, found_key.objectid,
574 extent_item_pos, 1,
Jan Schmidt558540c2011-06-13 19:59:12 +0200575 scrub_print_warning_inode, &swarn);
576 }
577
578out:
579 btrfs_free_path(path);
580 kfree(swarn.scratch_buf);
581 kfree(swarn.msg_buf);
582}
583
Stefan Behrensff023aa2012-11-06 11:43:11 +0100584static int scrub_fixup_readpage(u64 inum, u64 offset, u64 root, void *fixup_ctx)
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200585{
Jan Schmidt5da6fcb2011-08-04 18:11:04 +0200586 struct page *page = NULL;
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200587 unsigned long index;
Stefan Behrensff023aa2012-11-06 11:43:11 +0100588 struct scrub_fixup_nodatasum *fixup = fixup_ctx;
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200589 int ret;
Jan Schmidt5da6fcb2011-08-04 18:11:04 +0200590 int corrected = 0;
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200591 struct btrfs_key key;
Jan Schmidt5da6fcb2011-08-04 18:11:04 +0200592 struct inode *inode = NULL;
Liu Bo6f1c3602013-01-29 03:22:10 +0000593 struct btrfs_fs_info *fs_info;
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200594 u64 end = offset + PAGE_SIZE - 1;
595 struct btrfs_root *local_root;
Liu Bo6f1c3602013-01-29 03:22:10 +0000596 int srcu_index;
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200597
598 key.objectid = root;
599 key.type = BTRFS_ROOT_ITEM_KEY;
600 key.offset = (u64)-1;
Liu Bo6f1c3602013-01-29 03:22:10 +0000601
602 fs_info = fixup->root->fs_info;
603 srcu_index = srcu_read_lock(&fs_info->subvol_srcu);
604
605 local_root = btrfs_read_fs_root_no_name(fs_info, &key);
606 if (IS_ERR(local_root)) {
607 srcu_read_unlock(&fs_info->subvol_srcu, srcu_index);
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200608 return PTR_ERR(local_root);
Liu Bo6f1c3602013-01-29 03:22:10 +0000609 }
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200610
611 key.type = BTRFS_INODE_ITEM_KEY;
612 key.objectid = inum;
613 key.offset = 0;
Liu Bo6f1c3602013-01-29 03:22:10 +0000614 inode = btrfs_iget(fs_info->sb, &key, local_root, NULL);
615 srcu_read_unlock(&fs_info->subvol_srcu, srcu_index);
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200616 if (IS_ERR(inode))
617 return PTR_ERR(inode);
618
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200619 index = offset >> PAGE_CACHE_SHIFT;
620
621 page = find_or_create_page(inode->i_mapping, index, GFP_NOFS);
Jan Schmidt5da6fcb2011-08-04 18:11:04 +0200622 if (!page) {
623 ret = -ENOMEM;
624 goto out;
625 }
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200626
Jan Schmidt5da6fcb2011-08-04 18:11:04 +0200627 if (PageUptodate(page)) {
Jan Schmidt5da6fcb2011-08-04 18:11:04 +0200628 if (PageDirty(page)) {
629 /*
630 * we need to write the data to the defect sector. the
631 * data that was in that sector is not in memory,
632 * because the page was modified. we must not write the
633 * modified page to that sector.
634 *
635 * TODO: what could be done here: wait for the delalloc
636 * runner to write out that page (might involve
637 * COW) and see whether the sector is still
638 * referenced afterwards.
639 *
640 * For the meantime, we'll treat this error
641 * incorrectable, although there is a chance that a
642 * later scrub will find the bad sector again and that
643 * there's no dirty page in memory, then.
644 */
645 ret = -EIO;
646 goto out;
647 }
Stefan Behrens3ec706c2012-11-05 15:46:42 +0100648 fs_info = BTRFS_I(inode)->root->fs_info;
649 ret = repair_io_failure(fs_info, offset, PAGE_SIZE,
Jan Schmidt5da6fcb2011-08-04 18:11:04 +0200650 fixup->logical, page,
651 fixup->mirror_num);
652 unlock_page(page);
653 corrected = !ret;
654 } else {
655 /*
656 * we need to get good data first. the general readpage path
657 * will call repair_io_failure for us, we just have to make
658 * sure we read the bad mirror.
659 */
660 ret = set_extent_bits(&BTRFS_I(inode)->io_tree, offset, end,
661 EXTENT_DAMAGED, GFP_NOFS);
662 if (ret) {
663 /* set_extent_bits should give proper error */
664 WARN_ON(ret > 0);
665 if (ret > 0)
666 ret = -EFAULT;
667 goto out;
668 }
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200669
Jan Schmidt5da6fcb2011-08-04 18:11:04 +0200670 ret = extent_read_full_page(&BTRFS_I(inode)->io_tree, page,
671 btrfs_get_extent,
672 fixup->mirror_num);
673 wait_on_page_locked(page);
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200674
Jan Schmidt5da6fcb2011-08-04 18:11:04 +0200675 corrected = !test_range_bit(&BTRFS_I(inode)->io_tree, offset,
676 end, EXTENT_DAMAGED, 0, NULL);
677 if (!corrected)
678 clear_extent_bits(&BTRFS_I(inode)->io_tree, offset, end,
679 EXTENT_DAMAGED, GFP_NOFS);
680 }
681
682out:
683 if (page)
684 put_page(page);
685 if (inode)
686 iput(inode);
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200687
688 if (ret < 0)
689 return ret;
690
691 if (ret == 0 && corrected) {
692 /*
693 * we only need to call readpage for one of the inodes belonging
694 * to this extent. so make iterate_extent_inodes stop
695 */
696 return 1;
697 }
698
699 return -EIO;
700}
701
702static void scrub_fixup_nodatasum(struct btrfs_work *work)
703{
704 int ret;
705 struct scrub_fixup_nodatasum *fixup;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100706 struct scrub_ctx *sctx;
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200707 struct btrfs_trans_handle *trans = NULL;
708 struct btrfs_fs_info *fs_info;
709 struct btrfs_path *path;
710 int uncorrectable = 0;
711
712 fixup = container_of(work, struct scrub_fixup_nodatasum, work);
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100713 sctx = fixup->sctx;
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200714 fs_info = fixup->root->fs_info;
715
716 path = btrfs_alloc_path();
717 if (!path) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100718 spin_lock(&sctx->stat_lock);
719 ++sctx->stat.malloc_errors;
720 spin_unlock(&sctx->stat_lock);
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200721 uncorrectable = 1;
722 goto out;
723 }
724
725 trans = btrfs_join_transaction(fixup->root);
726 if (IS_ERR(trans)) {
727 uncorrectable = 1;
728 goto out;
729 }
730
731 /*
732 * the idea is to trigger a regular read through the standard path. we
733 * read a page from the (failed) logical address by specifying the
734 * corresponding copynum of the failed sector. thus, that readpage is
735 * expected to fail.
736 * that is the point where on-the-fly error correction will kick in
737 * (once it's finished) and rewrite the failed sector if a good copy
738 * can be found.
739 */
740 ret = iterate_inodes_from_logical(fixup->logical, fixup->root->fs_info,
741 path, scrub_fixup_readpage,
742 fixup);
743 if (ret < 0) {
744 uncorrectable = 1;
745 goto out;
746 }
747 WARN_ON(ret != 1);
748
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100749 spin_lock(&sctx->stat_lock);
750 ++sctx->stat.corrected_errors;
751 spin_unlock(&sctx->stat_lock);
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200752
753out:
754 if (trans && !IS_ERR(trans))
755 btrfs_end_transaction(trans, fixup->root);
756 if (uncorrectable) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100757 spin_lock(&sctx->stat_lock);
758 ++sctx->stat.uncorrectable_errors;
759 spin_unlock(&sctx->stat_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +0100760 btrfs_dev_replace_stats_inc(
761 &sctx->dev_root->fs_info->dev_replace.
762 num_uncorrectable_read_errors);
Josef Bacik606686e2012-06-04 14:03:51 -0400763 printk_ratelimited_in_rcu(KERN_ERR
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400764 "btrfs: unable to fixup (nodatasum) error at logical %llu on dev %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200765 fixup->logical, rcu_str_deref(fixup->dev->name));
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200766 }
767
768 btrfs_free_path(path);
769 kfree(fixup);
770
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100771 scrub_pending_trans_workers_dec(sctx);
Jan Schmidt0ef8e452011-06-13 20:04:15 +0200772}
773
Arne Jansena2de7332011-03-08 14:14:00 +0100774/*
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400775 * scrub_handle_errored_block gets called when either verification of the
776 * pages failed or the bio failed to read, e.g. with EIO. In the latter
777 * case, this function handles all pages in the bio, even though only one
778 * may be bad.
779 * The goal of this function is to repair the errored block by using the
780 * contents of one of the mirrors.
Arne Jansena2de7332011-03-08 14:14:00 +0100781 */
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400782static int scrub_handle_errored_block(struct scrub_block *sblock_to_check)
Arne Jansena2de7332011-03-08 14:14:00 +0100783{
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100784 struct scrub_ctx *sctx = sblock_to_check->sctx;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100785 struct btrfs_device *dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400786 struct btrfs_fs_info *fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +0100787 u64 length;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400788 u64 logical;
789 u64 generation;
790 unsigned int failed_mirror_index;
791 unsigned int is_metadata;
792 unsigned int have_csum;
793 u8 *csum;
794 struct scrub_block *sblocks_for_recheck; /* holds one for each mirror */
795 struct scrub_block *sblock_bad;
Arne Jansena2de7332011-03-08 14:14:00 +0100796 int ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400797 int mirror_index;
798 int page_num;
799 int success;
800 static DEFINE_RATELIMIT_STATE(_rs, DEFAULT_RATELIMIT_INTERVAL,
801 DEFAULT_RATELIMIT_BURST);
Arne Jansena2de7332011-03-08 14:14:00 +0100802
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400803 BUG_ON(sblock_to_check->page_count < 1);
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100804 fs_info = sctx->dev_root->fs_info;
Stefan Behrens4ded4f62012-11-14 18:57:29 +0000805 if (sblock_to_check->pagev[0]->flags & BTRFS_EXTENT_FLAG_SUPER) {
806 /*
807 * if we find an error in a super block, we just report it.
808 * They will get written with the next transaction commit
809 * anyway
810 */
811 spin_lock(&sctx->stat_lock);
812 ++sctx->stat.super_errors;
813 spin_unlock(&sctx->stat_lock);
814 return 0;
815 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400816 length = sblock_to_check->page_count * PAGE_SIZE;
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100817 logical = sblock_to_check->pagev[0]->logical;
818 generation = sblock_to_check->pagev[0]->generation;
819 BUG_ON(sblock_to_check->pagev[0]->mirror_num < 1);
820 failed_mirror_index = sblock_to_check->pagev[0]->mirror_num - 1;
821 is_metadata = !(sblock_to_check->pagev[0]->flags &
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400822 BTRFS_EXTENT_FLAG_DATA);
Stefan Behrens7a9e9982012-11-02 14:58:04 +0100823 have_csum = sblock_to_check->pagev[0]->have_csum;
824 csum = sblock_to_check->pagev[0]->csum;
825 dev = sblock_to_check->pagev[0]->dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400826
Stefan Behrensff023aa2012-11-06 11:43:11 +0100827 if (sctx->is_dev_replace && !is_metadata && !have_csum) {
828 sblocks_for_recheck = NULL;
829 goto nodatasum_case;
830 }
831
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400832 /*
833 * read all mirrors one after the other. This includes to
834 * re-read the extent or metadata block that failed (that was
835 * the cause that this fixup code is called) another time,
836 * page by page this time in order to know which pages
837 * caused I/O errors and which ones are good (for all mirrors).
838 * It is the goal to handle the situation when more than one
839 * mirror contains I/O errors, but the errors do not
840 * overlap, i.e. the data can be repaired by selecting the
841 * pages from those mirrors without I/O error on the
842 * particular pages. One example (with blocks >= 2 * PAGE_SIZE)
843 * would be that mirror #1 has an I/O error on the first page,
844 * the second page is good, and mirror #2 has an I/O error on
845 * the second page, but the first page is good.
846 * Then the first page of the first mirror can be repaired by
847 * taking the first page of the second mirror, and the
848 * second page of the second mirror can be repaired by
849 * copying the contents of the 2nd page of the 1st mirror.
850 * One more note: if the pages of one mirror contain I/O
851 * errors, the checksum cannot be verified. In order to get
852 * the best data for repairing, the first attempt is to find
853 * a mirror without I/O errors and with a validated checksum.
854 * Only if this is not possible, the pages are picked from
855 * mirrors with I/O errors without considering the checksum.
856 * If the latter is the case, at the end, the checksum of the
857 * repaired area is verified in order to correctly maintain
858 * the statistics.
859 */
860
861 sblocks_for_recheck = kzalloc(BTRFS_MAX_MIRRORS *
862 sizeof(*sblocks_for_recheck),
863 GFP_NOFS);
864 if (!sblocks_for_recheck) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100865 spin_lock(&sctx->stat_lock);
866 sctx->stat.malloc_errors++;
867 sctx->stat.read_errors++;
868 sctx->stat.uncorrectable_errors++;
869 spin_unlock(&sctx->stat_lock);
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100870 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_READ_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400871 goto out;
872 }
873
874 /* setup the context, map the logical blocks and alloc the pages */
Stefan Behrensff023aa2012-11-06 11:43:11 +0100875 ret = scrub_setup_recheck_block(sctx, fs_info, sblock_to_check, length,
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400876 logical, sblocks_for_recheck);
877 if (ret) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100878 spin_lock(&sctx->stat_lock);
879 sctx->stat.read_errors++;
880 sctx->stat.uncorrectable_errors++;
881 spin_unlock(&sctx->stat_lock);
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100882 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_READ_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400883 goto out;
884 }
885 BUG_ON(failed_mirror_index >= BTRFS_MAX_MIRRORS);
886 sblock_bad = sblocks_for_recheck + failed_mirror_index;
887
888 /* build and submit the bios for the failed mirror, check checksums */
Stefan Behrens34f5c8e2012-11-02 16:16:26 +0100889 scrub_recheck_block(fs_info, sblock_bad, is_metadata, have_csum,
890 csum, generation, sctx->csum_size);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400891
892 if (!sblock_bad->header_error && !sblock_bad->checksum_error &&
893 sblock_bad->no_io_error_seen) {
894 /*
895 * the error disappeared after reading page by page, or
896 * the area was part of a huge bio and other parts of the
897 * bio caused I/O errors, or the block layer merged several
898 * read requests into one and the error is caused by a
899 * different bio (usually one of the two latter cases is
900 * the cause)
901 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100902 spin_lock(&sctx->stat_lock);
903 sctx->stat.unverified_errors++;
904 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400905
Stefan Behrensff023aa2012-11-06 11:43:11 +0100906 if (sctx->is_dev_replace)
907 scrub_write_block_to_dev_replace(sblock_bad);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400908 goto out;
909 }
910
911 if (!sblock_bad->no_io_error_seen) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100912 spin_lock(&sctx->stat_lock);
913 sctx->stat.read_errors++;
914 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400915 if (__ratelimit(&_rs))
916 scrub_print_warning("i/o error", sblock_to_check);
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100917 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_READ_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400918 } else if (sblock_bad->checksum_error) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100919 spin_lock(&sctx->stat_lock);
920 sctx->stat.csum_errors++;
921 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400922 if (__ratelimit(&_rs))
923 scrub_print_warning("checksum error", sblock_to_check);
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100924 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +0200925 BTRFS_DEV_STAT_CORRUPTION_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400926 } else if (sblock_bad->header_error) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100927 spin_lock(&sctx->stat_lock);
928 sctx->stat.verify_errors++;
929 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400930 if (__ratelimit(&_rs))
931 scrub_print_warning("checksum/header error",
932 sblock_to_check);
Stefan Behrens442a4f62012-05-25 16:06:08 +0200933 if (sblock_bad->generation_error)
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100934 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +0200935 BTRFS_DEV_STAT_GENERATION_ERRS);
936 else
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100937 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +0200938 BTRFS_DEV_STAT_CORRUPTION_ERRS);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400939 }
940
Stefan Behrensff023aa2012-11-06 11:43:11 +0100941 if (sctx->readonly && !sctx->is_dev_replace)
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400942 goto did_not_correct_error;
943
944 if (!is_metadata && !have_csum) {
945 struct scrub_fixup_nodatasum *fixup_nodatasum;
946
Stefan Behrensff023aa2012-11-06 11:43:11 +0100947nodatasum_case:
948 WARN_ON(sctx->is_dev_replace);
949
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400950 /*
951 * !is_metadata and !have_csum, this means that the data
952 * might not be COW'ed, that it might be modified
953 * concurrently. The general strategy to work on the
954 * commit root does not help in the case when COW is not
955 * used.
956 */
957 fixup_nodatasum = kzalloc(sizeof(*fixup_nodatasum), GFP_NOFS);
958 if (!fixup_nodatasum)
959 goto did_not_correct_error;
Stefan Behrensd9d181c2012-11-02 09:58:09 +0100960 fixup_nodatasum->sctx = sctx;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +0100961 fixup_nodatasum->dev = dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400962 fixup_nodatasum->logical = logical;
963 fixup_nodatasum->root = fs_info->extent_root;
964 fixup_nodatasum->mirror_num = failed_mirror_index + 1;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +0100965 scrub_pending_trans_workers_inc(sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400966 fixup_nodatasum->work.func = scrub_fixup_nodatasum;
967 btrfs_queue_worker(&fs_info->scrub_workers,
968 &fixup_nodatasum->work);
Arne Jansena2de7332011-03-08 14:14:00 +0100969 goto out;
970 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400971
972 /*
973 * now build and submit the bios for the other mirrors, check
Stefan Behrenscb2ced72012-11-02 16:14:21 +0100974 * checksums.
975 * First try to pick the mirror which is completely without I/O
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400976 * errors and also does not have a checksum error.
977 * If one is found, and if a checksum is present, the full block
978 * that is known to contain an error is rewritten. Afterwards
979 * the block is known to be corrected.
980 * If a mirror is found which is completely correct, and no
981 * checksum is present, only those pages are rewritten that had
982 * an I/O error in the block to be repaired, since it cannot be
983 * determined, which copy of the other pages is better (and it
984 * could happen otherwise that a correct page would be
985 * overwritten by a bad one).
986 */
987 for (mirror_index = 0;
988 mirror_index < BTRFS_MAX_MIRRORS &&
989 sblocks_for_recheck[mirror_index].page_count > 0;
990 mirror_index++) {
Stefan Behrenscb2ced72012-11-02 16:14:21 +0100991 struct scrub_block *sblock_other;
Stefan Behrensb5d67f62012-03-27 14:21:27 -0400992
Stefan Behrenscb2ced72012-11-02 16:14:21 +0100993 if (mirror_index == failed_mirror_index)
994 continue;
995 sblock_other = sblocks_for_recheck + mirror_index;
996
997 /* build and submit the bios, check checksums */
Stefan Behrens34f5c8e2012-11-02 16:16:26 +0100998 scrub_recheck_block(fs_info, sblock_other, is_metadata,
999 have_csum, csum, generation,
1000 sctx->csum_size);
1001
1002 if (!sblock_other->header_error &&
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001003 !sblock_other->checksum_error &&
1004 sblock_other->no_io_error_seen) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01001005 if (sctx->is_dev_replace) {
1006 scrub_write_block_to_dev_replace(sblock_other);
1007 } else {
1008 int force_write = is_metadata || have_csum;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001009
Stefan Behrensff023aa2012-11-06 11:43:11 +01001010 ret = scrub_repair_block_from_good_copy(
1011 sblock_bad, sblock_other,
1012 force_write);
1013 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001014 if (0 == ret)
1015 goto corrected_error;
Arne Jansena2de7332011-03-08 14:14:00 +01001016 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001017 }
1018
1019 /*
Stefan Behrensff023aa2012-11-06 11:43:11 +01001020 * for dev_replace, pick good pages and write to the target device.
1021 */
1022 if (sctx->is_dev_replace) {
1023 success = 1;
1024 for (page_num = 0; page_num < sblock_bad->page_count;
1025 page_num++) {
1026 int sub_success;
1027
1028 sub_success = 0;
1029 for (mirror_index = 0;
1030 mirror_index < BTRFS_MAX_MIRRORS &&
1031 sblocks_for_recheck[mirror_index].page_count > 0;
1032 mirror_index++) {
1033 struct scrub_block *sblock_other =
1034 sblocks_for_recheck + mirror_index;
1035 struct scrub_page *page_other =
1036 sblock_other->pagev[page_num];
1037
1038 if (!page_other->io_error) {
1039 ret = scrub_write_page_to_dev_replace(
1040 sblock_other, page_num);
1041 if (ret == 0) {
1042 /* succeeded for this page */
1043 sub_success = 1;
1044 break;
1045 } else {
1046 btrfs_dev_replace_stats_inc(
1047 &sctx->dev_root->
1048 fs_info->dev_replace.
1049 num_write_errors);
1050 }
1051 }
1052 }
1053
1054 if (!sub_success) {
1055 /*
1056 * did not find a mirror to fetch the page
1057 * from. scrub_write_page_to_dev_replace()
1058 * handles this case (page->io_error), by
1059 * filling the block with zeros before
1060 * submitting the write request
1061 */
1062 success = 0;
1063 ret = scrub_write_page_to_dev_replace(
1064 sblock_bad, page_num);
1065 if (ret)
1066 btrfs_dev_replace_stats_inc(
1067 &sctx->dev_root->fs_info->
1068 dev_replace.num_write_errors);
1069 }
1070 }
1071
1072 goto out;
1073 }
1074
1075 /*
1076 * for regular scrub, repair those pages that are errored.
1077 * In case of I/O errors in the area that is supposed to be
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001078 * repaired, continue by picking good copies of those pages.
1079 * Select the good pages from mirrors to rewrite bad pages from
1080 * the area to fix. Afterwards verify the checksum of the block
1081 * that is supposed to be repaired. This verification step is
1082 * only done for the purpose of statistic counting and for the
1083 * final scrub report, whether errors remain.
1084 * A perfect algorithm could make use of the checksum and try
1085 * all possible combinations of pages from the different mirrors
1086 * until the checksum verification succeeds. For example, when
1087 * the 2nd page of mirror #1 faces I/O errors, and the 2nd page
1088 * of mirror #2 is readable but the final checksum test fails,
1089 * then the 2nd page of mirror #3 could be tried, whether now
1090 * the final checksum succeedes. But this would be a rare
1091 * exception and is therefore not implemented. At least it is
1092 * avoided that the good copy is overwritten.
1093 * A more useful improvement would be to pick the sectors
1094 * without I/O error based on sector sizes (512 bytes on legacy
1095 * disks) instead of on PAGE_SIZE. Then maybe 512 byte of one
1096 * mirror could be repaired by taking 512 byte of a different
1097 * mirror, even if other 512 byte sectors in the same PAGE_SIZE
1098 * area are unreadable.
1099 */
1100
1101 /* can only fix I/O errors from here on */
1102 if (sblock_bad->no_io_error_seen)
1103 goto did_not_correct_error;
1104
1105 success = 1;
1106 for (page_num = 0; page_num < sblock_bad->page_count; page_num++) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001107 struct scrub_page *page_bad = sblock_bad->pagev[page_num];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001108
1109 if (!page_bad->io_error)
1110 continue;
1111
1112 for (mirror_index = 0;
1113 mirror_index < BTRFS_MAX_MIRRORS &&
1114 sblocks_for_recheck[mirror_index].page_count > 0;
1115 mirror_index++) {
1116 struct scrub_block *sblock_other = sblocks_for_recheck +
1117 mirror_index;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001118 struct scrub_page *page_other = sblock_other->pagev[
1119 page_num];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001120
1121 if (!page_other->io_error) {
1122 ret = scrub_repair_page_from_good_copy(
1123 sblock_bad, sblock_other, page_num, 0);
1124 if (0 == ret) {
1125 page_bad->io_error = 0;
1126 break; /* succeeded for this page */
1127 }
Jan Schmidt13db62b2011-06-13 19:56:13 +02001128 }
1129 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001130
1131 if (page_bad->io_error) {
1132 /* did not find a mirror to copy the page from */
1133 success = 0;
1134 }
1135 }
1136
1137 if (success) {
1138 if (is_metadata || have_csum) {
1139 /*
1140 * need to verify the checksum now that all
1141 * sectors on disk are repaired (the write
1142 * request for data to be repaired is on its way).
1143 * Just be lazy and use scrub_recheck_block()
1144 * which re-reads the data before the checksum
1145 * is verified, but most likely the data comes out
1146 * of the page cache.
1147 */
Stefan Behrens34f5c8e2012-11-02 16:16:26 +01001148 scrub_recheck_block(fs_info, sblock_bad,
1149 is_metadata, have_csum, csum,
1150 generation, sctx->csum_size);
1151 if (!sblock_bad->header_error &&
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001152 !sblock_bad->checksum_error &&
1153 sblock_bad->no_io_error_seen)
1154 goto corrected_error;
1155 else
1156 goto did_not_correct_error;
1157 } else {
1158corrected_error:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001159 spin_lock(&sctx->stat_lock);
1160 sctx->stat.corrected_errors++;
1161 spin_unlock(&sctx->stat_lock);
Josef Bacik606686e2012-06-04 14:03:51 -04001162 printk_ratelimited_in_rcu(KERN_ERR
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001163 "btrfs: fixed up error at logical %llu on dev %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001164 logical, rcu_str_deref(dev->name));
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001165 }
1166 } else {
1167did_not_correct_error:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001168 spin_lock(&sctx->stat_lock);
1169 sctx->stat.uncorrectable_errors++;
1170 spin_unlock(&sctx->stat_lock);
Josef Bacik606686e2012-06-04 14:03:51 -04001171 printk_ratelimited_in_rcu(KERN_ERR
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001172 "btrfs: unable to fixup (regular) error at logical %llu on dev %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001173 logical, rcu_str_deref(dev->name));
Arne Jansena2de7332011-03-08 14:14:00 +01001174 }
1175
1176out:
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001177 if (sblocks_for_recheck) {
1178 for (mirror_index = 0; mirror_index < BTRFS_MAX_MIRRORS;
1179 mirror_index++) {
1180 struct scrub_block *sblock = sblocks_for_recheck +
1181 mirror_index;
1182 int page_index;
1183
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001184 for (page_index = 0; page_index < sblock->page_count;
1185 page_index++) {
1186 sblock->pagev[page_index]->sblock = NULL;
1187 scrub_page_put(sblock->pagev[page_index]);
1188 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001189 }
1190 kfree(sblocks_for_recheck);
1191 }
1192
1193 return 0;
Arne Jansena2de7332011-03-08 14:14:00 +01001194}
1195
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001196static int scrub_setup_recheck_block(struct scrub_ctx *sctx,
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001197 struct btrfs_fs_info *fs_info,
Stefan Behrensff023aa2012-11-06 11:43:11 +01001198 struct scrub_block *original_sblock,
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001199 u64 length, u64 logical,
1200 struct scrub_block *sblocks_for_recheck)
Arne Jansena2de7332011-03-08 14:14:00 +01001201{
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001202 int page_index;
1203 int mirror_index;
1204 int ret;
1205
1206 /*
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001207 * note: the two members ref_count and outstanding_pages
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001208 * are not used (and not set) in the blocks that are used for
1209 * the recheck procedure
1210 */
1211
1212 page_index = 0;
1213 while (length > 0) {
1214 u64 sublen = min_t(u64, length, PAGE_SIZE);
1215 u64 mapped_length = sublen;
1216 struct btrfs_bio *bbio = NULL;
1217
1218 /*
1219 * with a length of PAGE_SIZE, each returned stripe
1220 * represents one mirror
1221 */
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01001222 ret = btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS, logical,
1223 &mapped_length, &bbio, 0);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001224 if (ret || !bbio || mapped_length < sublen) {
1225 kfree(bbio);
1226 return -EIO;
1227 }
1228
Stefan Behrensff023aa2012-11-06 11:43:11 +01001229 BUG_ON(page_index >= SCRUB_PAGES_PER_RD_BIO);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001230 for (mirror_index = 0; mirror_index < (int)bbio->num_stripes;
1231 mirror_index++) {
1232 struct scrub_block *sblock;
1233 struct scrub_page *page;
1234
1235 if (mirror_index >= BTRFS_MAX_MIRRORS)
1236 continue;
1237
1238 sblock = sblocks_for_recheck + mirror_index;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001239 sblock->sctx = sctx;
1240 page = kzalloc(sizeof(*page), GFP_NOFS);
1241 if (!page) {
1242leave_nomem:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001243 spin_lock(&sctx->stat_lock);
1244 sctx->stat.malloc_errors++;
1245 spin_unlock(&sctx->stat_lock);
Wei Yongjuncf93dcc2012-09-02 07:44:51 -06001246 kfree(bbio);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001247 return -ENOMEM;
1248 }
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001249 scrub_page_get(page);
1250 sblock->pagev[page_index] = page;
1251 page->logical = logical;
1252 page->physical = bbio->stripes[mirror_index].physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001253 BUG_ON(page_index >= original_sblock->page_count);
1254 page->physical_for_dev_replace =
1255 original_sblock->pagev[page_index]->
1256 physical_for_dev_replace;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001257 /* for missing devices, dev->bdev is NULL */
1258 page->dev = bbio->stripes[mirror_index].dev;
1259 page->mirror_num = mirror_index + 1;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001260 sblock->page_count++;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001261 page->page = alloc_page(GFP_NOFS);
1262 if (!page->page)
1263 goto leave_nomem;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001264 }
1265 kfree(bbio);
1266 length -= sublen;
1267 logical += sublen;
1268 page_index++;
1269 }
1270
1271 return 0;
1272}
1273
1274/*
1275 * this function will check the on disk data for checksum errors, header
1276 * errors and read I/O errors. If any I/O errors happen, the exact pages
1277 * which are errored are marked as being bad. The goal is to enable scrub
1278 * to take those pages that are not errored from all the mirrors so that
1279 * the pages that are errored in the just handled mirror can be repaired.
1280 */
Stefan Behrens34f5c8e2012-11-02 16:16:26 +01001281static void scrub_recheck_block(struct btrfs_fs_info *fs_info,
1282 struct scrub_block *sblock, int is_metadata,
1283 int have_csum, u8 *csum, u64 generation,
1284 u16 csum_size)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001285{
1286 int page_num;
1287
1288 sblock->no_io_error_seen = 1;
1289 sblock->header_error = 0;
1290 sblock->checksum_error = 0;
1291
1292 for (page_num = 0; page_num < sblock->page_count; page_num++) {
1293 struct bio *bio;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001294 struct scrub_page *page = sblock->pagev[page_num];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001295 DECLARE_COMPLETION_ONSTACK(complete);
1296
Stefan Behrens442a4f62012-05-25 16:06:08 +02001297 if (page->dev->bdev == NULL) {
Stefan Behrensea9947b2012-05-04 15:16:07 -04001298 page->io_error = 1;
1299 sblock->no_io_error_seen = 0;
1300 continue;
1301 }
1302
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001303 WARN_ON(!page->page);
Chris Mason9be33952013-05-17 18:30:14 -04001304 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Stefan Behrens34f5c8e2012-11-02 16:16:26 +01001305 if (!bio) {
1306 page->io_error = 1;
1307 sblock->no_io_error_seen = 0;
1308 continue;
1309 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02001310 bio->bi_bdev = page->dev->bdev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001311 bio->bi_sector = page->physical >> 9;
1312 bio->bi_end_io = scrub_complete_bio_end_io;
1313 bio->bi_private = &complete;
1314
Stefan Behrens34f5c8e2012-11-02 16:16:26 +01001315 bio_add_page(bio, page->page, PAGE_SIZE, 0);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001316 btrfsic_submit_bio(READ, bio);
1317
1318 /* this will also unplug the queue */
1319 wait_for_completion(&complete);
1320
1321 page->io_error = !test_bit(BIO_UPTODATE, &bio->bi_flags);
1322 if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
1323 sblock->no_io_error_seen = 0;
1324 bio_put(bio);
1325 }
1326
1327 if (sblock->no_io_error_seen)
1328 scrub_recheck_block_checksum(fs_info, sblock, is_metadata,
1329 have_csum, csum, generation,
1330 csum_size);
1331
Stefan Behrens34f5c8e2012-11-02 16:16:26 +01001332 return;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001333}
1334
1335static void scrub_recheck_block_checksum(struct btrfs_fs_info *fs_info,
1336 struct scrub_block *sblock,
1337 int is_metadata, int have_csum,
1338 const u8 *csum, u64 generation,
1339 u16 csum_size)
1340{
1341 int page_num;
1342 u8 calculated_csum[BTRFS_CSUM_SIZE];
1343 u32 crc = ~(u32)0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001344 void *mapped_buffer;
1345
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001346 WARN_ON(!sblock->pagev[0]->page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001347 if (is_metadata) {
1348 struct btrfs_header *h;
1349
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001350 mapped_buffer = kmap_atomic(sblock->pagev[0]->page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001351 h = (struct btrfs_header *)mapped_buffer;
1352
Qu Wenruo3cae2102013-07-16 11:19:18 +08001353 if (sblock->pagev[0]->logical != btrfs_stack_header_bytenr(h) ||
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001354 memcmp(h->fsid, fs_info->fsid, BTRFS_UUID_SIZE) ||
1355 memcmp(h->chunk_tree_uuid, fs_info->chunk_tree_uuid,
Stefan Behrens442a4f62012-05-25 16:06:08 +02001356 BTRFS_UUID_SIZE)) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001357 sblock->header_error = 1;
Qu Wenruo3cae2102013-07-16 11:19:18 +08001358 } else if (generation != btrfs_stack_header_generation(h)) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02001359 sblock->header_error = 1;
1360 sblock->generation_error = 1;
1361 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001362 csum = h->csum;
1363 } else {
1364 if (!have_csum)
1365 return;
1366
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001367 mapped_buffer = kmap_atomic(sblock->pagev[0]->page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001368 }
1369
1370 for (page_num = 0;;) {
1371 if (page_num == 0 && is_metadata)
Liu Bob0496682013-03-14 14:57:45 +00001372 crc = btrfs_csum_data(
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001373 ((u8 *)mapped_buffer) + BTRFS_CSUM_SIZE,
1374 crc, PAGE_SIZE - BTRFS_CSUM_SIZE);
1375 else
Liu Bob0496682013-03-14 14:57:45 +00001376 crc = btrfs_csum_data(mapped_buffer, crc, PAGE_SIZE);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001377
Linus Torvalds9613beb2012-03-30 12:44:29 -07001378 kunmap_atomic(mapped_buffer);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001379 page_num++;
1380 if (page_num >= sblock->page_count)
1381 break;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001382 WARN_ON(!sblock->pagev[page_num]->page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001383
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001384 mapped_buffer = kmap_atomic(sblock->pagev[page_num]->page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001385 }
1386
1387 btrfs_csum_final(crc, calculated_csum);
1388 if (memcmp(calculated_csum, csum, csum_size))
1389 sblock->checksum_error = 1;
1390}
1391
1392static void scrub_complete_bio_end_io(struct bio *bio, int err)
1393{
1394 complete((struct completion *)bio->bi_private);
1395}
1396
1397static int scrub_repair_block_from_good_copy(struct scrub_block *sblock_bad,
1398 struct scrub_block *sblock_good,
1399 int force_write)
1400{
1401 int page_num;
1402 int ret = 0;
1403
1404 for (page_num = 0; page_num < sblock_bad->page_count; page_num++) {
1405 int ret_sub;
1406
1407 ret_sub = scrub_repair_page_from_good_copy(sblock_bad,
1408 sblock_good,
1409 page_num,
1410 force_write);
1411 if (ret_sub)
1412 ret = ret_sub;
1413 }
1414
1415 return ret;
1416}
1417
1418static int scrub_repair_page_from_good_copy(struct scrub_block *sblock_bad,
1419 struct scrub_block *sblock_good,
1420 int page_num, int force_write)
1421{
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001422 struct scrub_page *page_bad = sblock_bad->pagev[page_num];
1423 struct scrub_page *page_good = sblock_good->pagev[page_num];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001424
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001425 BUG_ON(page_bad->page == NULL);
1426 BUG_ON(page_good->page == NULL);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001427 if (force_write || sblock_bad->header_error ||
1428 sblock_bad->checksum_error || page_bad->io_error) {
1429 struct bio *bio;
1430 int ret;
1431 DECLARE_COMPLETION_ONSTACK(complete);
1432
Stefan Behrensff023aa2012-11-06 11:43:11 +01001433 if (!page_bad->dev->bdev) {
1434 printk_ratelimited(KERN_WARNING
1435 "btrfs: scrub_repair_page_from_good_copy(bdev == NULL) is unexpected!\n");
1436 return -EIO;
1437 }
1438
Chris Mason9be33952013-05-17 18:30:14 -04001439 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Tsutomu Itohe627ee72012-04-12 16:03:56 -04001440 if (!bio)
1441 return -EIO;
Stefan Behrens442a4f62012-05-25 16:06:08 +02001442 bio->bi_bdev = page_bad->dev->bdev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001443 bio->bi_sector = page_bad->physical >> 9;
1444 bio->bi_end_io = scrub_complete_bio_end_io;
1445 bio->bi_private = &complete;
1446
1447 ret = bio_add_page(bio, page_good->page, PAGE_SIZE, 0);
1448 if (PAGE_SIZE != ret) {
1449 bio_put(bio);
1450 return -EIO;
1451 }
1452 btrfsic_submit_bio(WRITE, bio);
1453
1454 /* this will also unplug the queue */
1455 wait_for_completion(&complete);
Stefan Behrens442a4f62012-05-25 16:06:08 +02001456 if (!bio_flagged(bio, BIO_UPTODATE)) {
1457 btrfs_dev_stat_inc_and_print(page_bad->dev,
1458 BTRFS_DEV_STAT_WRITE_ERRS);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001459 btrfs_dev_replace_stats_inc(
1460 &sblock_bad->sctx->dev_root->fs_info->
1461 dev_replace.num_write_errors);
Stefan Behrens442a4f62012-05-25 16:06:08 +02001462 bio_put(bio);
1463 return -EIO;
1464 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001465 bio_put(bio);
1466 }
1467
1468 return 0;
1469}
1470
Stefan Behrensff023aa2012-11-06 11:43:11 +01001471static void scrub_write_block_to_dev_replace(struct scrub_block *sblock)
1472{
1473 int page_num;
1474
1475 for (page_num = 0; page_num < sblock->page_count; page_num++) {
1476 int ret;
1477
1478 ret = scrub_write_page_to_dev_replace(sblock, page_num);
1479 if (ret)
1480 btrfs_dev_replace_stats_inc(
1481 &sblock->sctx->dev_root->fs_info->dev_replace.
1482 num_write_errors);
1483 }
1484}
1485
1486static int scrub_write_page_to_dev_replace(struct scrub_block *sblock,
1487 int page_num)
1488{
1489 struct scrub_page *spage = sblock->pagev[page_num];
1490
1491 BUG_ON(spage->page == NULL);
1492 if (spage->io_error) {
1493 void *mapped_buffer = kmap_atomic(spage->page);
1494
1495 memset(mapped_buffer, 0, PAGE_CACHE_SIZE);
1496 flush_dcache_page(spage->page);
1497 kunmap_atomic(mapped_buffer);
1498 }
1499 return scrub_add_page_to_wr_bio(sblock->sctx, spage);
1500}
1501
1502static int scrub_add_page_to_wr_bio(struct scrub_ctx *sctx,
1503 struct scrub_page *spage)
1504{
1505 struct scrub_wr_ctx *wr_ctx = &sctx->wr_ctx;
1506 struct scrub_bio *sbio;
1507 int ret;
1508
1509 mutex_lock(&wr_ctx->wr_lock);
1510again:
1511 if (!wr_ctx->wr_curr_bio) {
1512 wr_ctx->wr_curr_bio = kzalloc(sizeof(*wr_ctx->wr_curr_bio),
1513 GFP_NOFS);
1514 if (!wr_ctx->wr_curr_bio) {
1515 mutex_unlock(&wr_ctx->wr_lock);
1516 return -ENOMEM;
1517 }
1518 wr_ctx->wr_curr_bio->sctx = sctx;
1519 wr_ctx->wr_curr_bio->page_count = 0;
1520 }
1521 sbio = wr_ctx->wr_curr_bio;
1522 if (sbio->page_count == 0) {
1523 struct bio *bio;
1524
1525 sbio->physical = spage->physical_for_dev_replace;
1526 sbio->logical = spage->logical;
1527 sbio->dev = wr_ctx->tgtdev;
1528 bio = sbio->bio;
1529 if (!bio) {
Chris Mason9be33952013-05-17 18:30:14 -04001530 bio = btrfs_io_bio_alloc(GFP_NOFS, wr_ctx->pages_per_wr_bio);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001531 if (!bio) {
1532 mutex_unlock(&wr_ctx->wr_lock);
1533 return -ENOMEM;
1534 }
1535 sbio->bio = bio;
1536 }
1537
1538 bio->bi_private = sbio;
1539 bio->bi_end_io = scrub_wr_bio_end_io;
1540 bio->bi_bdev = sbio->dev->bdev;
1541 bio->bi_sector = sbio->physical >> 9;
1542 sbio->err = 0;
1543 } else if (sbio->physical + sbio->page_count * PAGE_SIZE !=
1544 spage->physical_for_dev_replace ||
1545 sbio->logical + sbio->page_count * PAGE_SIZE !=
1546 spage->logical) {
1547 scrub_wr_submit(sctx);
1548 goto again;
1549 }
1550
1551 ret = bio_add_page(sbio->bio, spage->page, PAGE_SIZE, 0);
1552 if (ret != PAGE_SIZE) {
1553 if (sbio->page_count < 1) {
1554 bio_put(sbio->bio);
1555 sbio->bio = NULL;
1556 mutex_unlock(&wr_ctx->wr_lock);
1557 return -EIO;
1558 }
1559 scrub_wr_submit(sctx);
1560 goto again;
1561 }
1562
1563 sbio->pagev[sbio->page_count] = spage;
1564 scrub_page_get(spage);
1565 sbio->page_count++;
1566 if (sbio->page_count == wr_ctx->pages_per_wr_bio)
1567 scrub_wr_submit(sctx);
1568 mutex_unlock(&wr_ctx->wr_lock);
1569
1570 return 0;
1571}
1572
1573static void scrub_wr_submit(struct scrub_ctx *sctx)
1574{
1575 struct scrub_wr_ctx *wr_ctx = &sctx->wr_ctx;
1576 struct scrub_bio *sbio;
1577
1578 if (!wr_ctx->wr_curr_bio)
1579 return;
1580
1581 sbio = wr_ctx->wr_curr_bio;
1582 wr_ctx->wr_curr_bio = NULL;
1583 WARN_ON(!sbio->bio->bi_bdev);
1584 scrub_pending_bio_inc(sctx);
1585 /* process all writes in a single worker thread. Then the block layer
1586 * orders the requests before sending them to the driver which
1587 * doubled the write performance on spinning disks when measured
1588 * with Linux 3.5 */
1589 btrfsic_submit_bio(WRITE, sbio->bio);
1590}
1591
1592static void scrub_wr_bio_end_io(struct bio *bio, int err)
1593{
1594 struct scrub_bio *sbio = bio->bi_private;
1595 struct btrfs_fs_info *fs_info = sbio->dev->dev_root->fs_info;
1596
1597 sbio->err = err;
1598 sbio->bio = bio;
1599
1600 sbio->work.func = scrub_wr_bio_end_io_worker;
1601 btrfs_queue_worker(&fs_info->scrub_wr_completion_workers, &sbio->work);
1602}
1603
1604static void scrub_wr_bio_end_io_worker(struct btrfs_work *work)
1605{
1606 struct scrub_bio *sbio = container_of(work, struct scrub_bio, work);
1607 struct scrub_ctx *sctx = sbio->sctx;
1608 int i;
1609
1610 WARN_ON(sbio->page_count > SCRUB_PAGES_PER_WR_BIO);
1611 if (sbio->err) {
1612 struct btrfs_dev_replace *dev_replace =
1613 &sbio->sctx->dev_root->fs_info->dev_replace;
1614
1615 for (i = 0; i < sbio->page_count; i++) {
1616 struct scrub_page *spage = sbio->pagev[i];
1617
1618 spage->io_error = 1;
1619 btrfs_dev_replace_stats_inc(&dev_replace->
1620 num_write_errors);
1621 }
1622 }
1623
1624 for (i = 0; i < sbio->page_count; i++)
1625 scrub_page_put(sbio->pagev[i]);
1626
1627 bio_put(sbio->bio);
1628 kfree(sbio);
1629 scrub_pending_bio_dec(sctx);
1630}
1631
1632static int scrub_checksum(struct scrub_block *sblock)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001633{
1634 u64 flags;
1635 int ret;
1636
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001637 WARN_ON(sblock->page_count < 1);
1638 flags = sblock->pagev[0]->flags;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001639 ret = 0;
1640 if (flags & BTRFS_EXTENT_FLAG_DATA)
1641 ret = scrub_checksum_data(sblock);
1642 else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)
1643 ret = scrub_checksum_tree_block(sblock);
1644 else if (flags & BTRFS_EXTENT_FLAG_SUPER)
1645 (void)scrub_checksum_super(sblock);
1646 else
1647 WARN_ON(1);
1648 if (ret)
1649 scrub_handle_errored_block(sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01001650
1651 return ret;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001652}
1653
1654static int scrub_checksum_data(struct scrub_block *sblock)
1655{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001656 struct scrub_ctx *sctx = sblock->sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01001657 u8 csum[BTRFS_CSUM_SIZE];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001658 u8 *on_disk_csum;
1659 struct page *page;
1660 void *buffer;
Arne Jansena2de7332011-03-08 14:14:00 +01001661 u32 crc = ~(u32)0;
1662 int fail = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001663 u64 len;
1664 int index;
Arne Jansena2de7332011-03-08 14:14:00 +01001665
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001666 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001667 if (!sblock->pagev[0]->have_csum)
Arne Jansena2de7332011-03-08 14:14:00 +01001668 return 0;
1669
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001670 on_disk_csum = sblock->pagev[0]->csum;
1671 page = sblock->pagev[0]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001672 buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001673
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001674 len = sctx->sectorsize;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001675 index = 0;
1676 for (;;) {
1677 u64 l = min_t(u64, len, PAGE_SIZE);
1678
Liu Bob0496682013-03-14 14:57:45 +00001679 crc = btrfs_csum_data(buffer, crc, l);
Linus Torvalds9613beb2012-03-30 12:44:29 -07001680 kunmap_atomic(buffer);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001681 len -= l;
1682 if (len == 0)
1683 break;
1684 index++;
1685 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001686 BUG_ON(!sblock->pagev[index]->page);
1687 page = sblock->pagev[index]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001688 buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001689 }
1690
Arne Jansena2de7332011-03-08 14:14:00 +01001691 btrfs_csum_final(crc, csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001692 if (memcmp(csum, on_disk_csum, sctx->csum_size))
Arne Jansena2de7332011-03-08 14:14:00 +01001693 fail = 1;
1694
Arne Jansena2de7332011-03-08 14:14:00 +01001695 return fail;
1696}
1697
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001698static int scrub_checksum_tree_block(struct scrub_block *sblock)
Arne Jansena2de7332011-03-08 14:14:00 +01001699{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001700 struct scrub_ctx *sctx = sblock->sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01001701 struct btrfs_header *h;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01001702 struct btrfs_root *root = sctx->dev_root;
Arne Jansena2de7332011-03-08 14:14:00 +01001703 struct btrfs_fs_info *fs_info = root->fs_info;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001704 u8 calculated_csum[BTRFS_CSUM_SIZE];
1705 u8 on_disk_csum[BTRFS_CSUM_SIZE];
1706 struct page *page;
1707 void *mapped_buffer;
1708 u64 mapped_size;
1709 void *p;
Arne Jansena2de7332011-03-08 14:14:00 +01001710 u32 crc = ~(u32)0;
1711 int fail = 0;
1712 int crc_fail = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001713 u64 len;
1714 int index;
1715
1716 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001717 page = sblock->pagev[0]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001718 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001719 h = (struct btrfs_header *)mapped_buffer;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001720 memcpy(on_disk_csum, h->csum, sctx->csum_size);
Arne Jansena2de7332011-03-08 14:14:00 +01001721
1722 /*
1723 * we don't use the getter functions here, as we
1724 * a) don't have an extent buffer and
1725 * b) the page is already kmapped
1726 */
Arne Jansena2de7332011-03-08 14:14:00 +01001727
Qu Wenruo3cae2102013-07-16 11:19:18 +08001728 if (sblock->pagev[0]->logical != btrfs_stack_header_bytenr(h))
Arne Jansena2de7332011-03-08 14:14:00 +01001729 ++fail;
1730
Qu Wenruo3cae2102013-07-16 11:19:18 +08001731 if (sblock->pagev[0]->generation != btrfs_stack_header_generation(h))
Arne Jansena2de7332011-03-08 14:14:00 +01001732 ++fail;
1733
1734 if (memcmp(h->fsid, fs_info->fsid, BTRFS_UUID_SIZE))
1735 ++fail;
1736
1737 if (memcmp(h->chunk_tree_uuid, fs_info->chunk_tree_uuid,
1738 BTRFS_UUID_SIZE))
1739 ++fail;
1740
Stefan Behrensff023aa2012-11-06 11:43:11 +01001741 WARN_ON(sctx->nodesize != sctx->leafsize);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001742 len = sctx->nodesize - BTRFS_CSUM_SIZE;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001743 mapped_size = PAGE_SIZE - BTRFS_CSUM_SIZE;
1744 p = ((u8 *)mapped_buffer) + BTRFS_CSUM_SIZE;
1745 index = 0;
1746 for (;;) {
1747 u64 l = min_t(u64, len, mapped_size);
1748
Liu Bob0496682013-03-14 14:57:45 +00001749 crc = btrfs_csum_data(p, crc, l);
Linus Torvalds9613beb2012-03-30 12:44:29 -07001750 kunmap_atomic(mapped_buffer);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001751 len -= l;
1752 if (len == 0)
1753 break;
1754 index++;
1755 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001756 BUG_ON(!sblock->pagev[index]->page);
1757 page = sblock->pagev[index]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001758 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001759 mapped_size = PAGE_SIZE;
1760 p = mapped_buffer;
1761 }
1762
1763 btrfs_csum_final(crc, calculated_csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001764 if (memcmp(calculated_csum, on_disk_csum, sctx->csum_size))
Arne Jansena2de7332011-03-08 14:14:00 +01001765 ++crc_fail;
1766
Arne Jansena2de7332011-03-08 14:14:00 +01001767 return fail || crc_fail;
1768}
1769
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001770static int scrub_checksum_super(struct scrub_block *sblock)
Arne Jansena2de7332011-03-08 14:14:00 +01001771{
1772 struct btrfs_super_block *s;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001773 struct scrub_ctx *sctx = sblock->sctx;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01001774 struct btrfs_root *root = sctx->dev_root;
Arne Jansena2de7332011-03-08 14:14:00 +01001775 struct btrfs_fs_info *fs_info = root->fs_info;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001776 u8 calculated_csum[BTRFS_CSUM_SIZE];
1777 u8 on_disk_csum[BTRFS_CSUM_SIZE];
1778 struct page *page;
1779 void *mapped_buffer;
1780 u64 mapped_size;
1781 void *p;
Arne Jansena2de7332011-03-08 14:14:00 +01001782 u32 crc = ~(u32)0;
Stefan Behrens442a4f62012-05-25 16:06:08 +02001783 int fail_gen = 0;
1784 int fail_cor = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001785 u64 len;
1786 int index;
Arne Jansena2de7332011-03-08 14:14:00 +01001787
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001788 BUG_ON(sblock->page_count < 1);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001789 page = sblock->pagev[0]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001790 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001791 s = (struct btrfs_super_block *)mapped_buffer;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001792 memcpy(on_disk_csum, s->csum, sctx->csum_size);
Arne Jansena2de7332011-03-08 14:14:00 +01001793
Qu Wenruo3cae2102013-07-16 11:19:18 +08001794 if (sblock->pagev[0]->logical != btrfs_super_bytenr(s))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001795 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001796
Qu Wenruo3cae2102013-07-16 11:19:18 +08001797 if (sblock->pagev[0]->generation != btrfs_super_generation(s))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001798 ++fail_gen;
Arne Jansena2de7332011-03-08 14:14:00 +01001799
1800 if (memcmp(s->fsid, fs_info->fsid, BTRFS_UUID_SIZE))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001801 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001802
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001803 len = BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE;
1804 mapped_size = PAGE_SIZE - BTRFS_CSUM_SIZE;
1805 p = ((u8 *)mapped_buffer) + BTRFS_CSUM_SIZE;
1806 index = 0;
1807 for (;;) {
1808 u64 l = min_t(u64, len, mapped_size);
1809
Liu Bob0496682013-03-14 14:57:45 +00001810 crc = btrfs_csum_data(p, crc, l);
Linus Torvalds9613beb2012-03-30 12:44:29 -07001811 kunmap_atomic(mapped_buffer);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001812 len -= l;
1813 if (len == 0)
1814 break;
1815 index++;
1816 BUG_ON(index >= sblock->page_count);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001817 BUG_ON(!sblock->pagev[index]->page);
1818 page = sblock->pagev[index]->page;
Linus Torvalds9613beb2012-03-30 12:44:29 -07001819 mapped_buffer = kmap_atomic(page);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001820 mapped_size = PAGE_SIZE;
1821 p = mapped_buffer;
1822 }
1823
1824 btrfs_csum_final(crc, calculated_csum);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001825 if (memcmp(calculated_csum, on_disk_csum, sctx->csum_size))
Stefan Behrens442a4f62012-05-25 16:06:08 +02001826 ++fail_cor;
Arne Jansena2de7332011-03-08 14:14:00 +01001827
Stefan Behrens442a4f62012-05-25 16:06:08 +02001828 if (fail_cor + fail_gen) {
Arne Jansena2de7332011-03-08 14:14:00 +01001829 /*
1830 * if we find an error in a super block, we just report it.
1831 * They will get written with the next transaction commit
1832 * anyway
1833 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001834 spin_lock(&sctx->stat_lock);
1835 ++sctx->stat.super_errors;
1836 spin_unlock(&sctx->stat_lock);
Stefan Behrens442a4f62012-05-25 16:06:08 +02001837 if (fail_cor)
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001838 btrfs_dev_stat_inc_and_print(sblock->pagev[0]->dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +02001839 BTRFS_DEV_STAT_CORRUPTION_ERRS);
1840 else
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001841 btrfs_dev_stat_inc_and_print(sblock->pagev[0]->dev,
Stefan Behrens442a4f62012-05-25 16:06:08 +02001842 BTRFS_DEV_STAT_GENERATION_ERRS);
Arne Jansena2de7332011-03-08 14:14:00 +01001843 }
1844
Stefan Behrens442a4f62012-05-25 16:06:08 +02001845 return fail_cor + fail_gen;
Arne Jansena2de7332011-03-08 14:14:00 +01001846}
1847
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001848static void scrub_block_get(struct scrub_block *sblock)
1849{
1850 atomic_inc(&sblock->ref_count);
1851}
1852
1853static void scrub_block_put(struct scrub_block *sblock)
1854{
1855 if (atomic_dec_and_test(&sblock->ref_count)) {
1856 int i;
1857
1858 for (i = 0; i < sblock->page_count; i++)
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001859 scrub_page_put(sblock->pagev[i]);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001860 kfree(sblock);
1861 }
1862}
1863
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001864static void scrub_page_get(struct scrub_page *spage)
1865{
1866 atomic_inc(&spage->ref_count);
1867}
1868
1869static void scrub_page_put(struct scrub_page *spage)
1870{
1871 if (atomic_dec_and_test(&spage->ref_count)) {
1872 if (spage->page)
1873 __free_page(spage->page);
1874 kfree(spage);
1875 }
1876}
1877
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001878static void scrub_submit(struct scrub_ctx *sctx)
Arne Jansena2de7332011-03-08 14:14:00 +01001879{
1880 struct scrub_bio *sbio;
1881
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001882 if (sctx->curr == -1)
Stefan Behrens1623ede2012-03-27 14:21:26 -04001883 return;
Arne Jansena2de7332011-03-08 14:14:00 +01001884
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001885 sbio = sctx->bios[sctx->curr];
1886 sctx->curr = -1;
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01001887 scrub_pending_bio_inc(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01001888
Stefan Behrensff023aa2012-11-06 11:43:11 +01001889 if (!sbio->bio->bi_bdev) {
1890 /*
1891 * this case should not happen. If btrfs_map_block() is
1892 * wrong, it could happen for dev-replace operations on
1893 * missing devices when no mirrors are available, but in
1894 * this case it should already fail the mount.
1895 * This case is handled correctly (but _very_ slowly).
1896 */
1897 printk_ratelimited(KERN_WARNING
1898 "btrfs: scrub_submit(bio bdev == NULL) is unexpected!\n");
1899 bio_endio(sbio->bio, -EIO);
1900 } else {
1901 btrfsic_submit_bio(READ, sbio->bio);
1902 }
Arne Jansena2de7332011-03-08 14:14:00 +01001903}
1904
Stefan Behrensff023aa2012-11-06 11:43:11 +01001905static int scrub_add_page_to_rd_bio(struct scrub_ctx *sctx,
1906 struct scrub_page *spage)
Arne Jansena2de7332011-03-08 14:14:00 +01001907{
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001908 struct scrub_block *sblock = spage->sblock;
Arne Jansena2de7332011-03-08 14:14:00 +01001909 struct scrub_bio *sbio;
Arne Jansen69f4cb52011-11-11 08:17:10 -05001910 int ret;
Arne Jansena2de7332011-03-08 14:14:00 +01001911
1912again:
1913 /*
1914 * grab a fresh bio or wait for one to become available
1915 */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001916 while (sctx->curr == -1) {
1917 spin_lock(&sctx->list_lock);
1918 sctx->curr = sctx->first_free;
1919 if (sctx->curr != -1) {
1920 sctx->first_free = sctx->bios[sctx->curr]->next_free;
1921 sctx->bios[sctx->curr]->next_free = -1;
1922 sctx->bios[sctx->curr]->page_count = 0;
1923 spin_unlock(&sctx->list_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01001924 } else {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001925 spin_unlock(&sctx->list_lock);
1926 wait_event(sctx->list_wait, sctx->first_free != -1);
Arne Jansena2de7332011-03-08 14:14:00 +01001927 }
1928 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001929 sbio = sctx->bios[sctx->curr];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001930 if (sbio->page_count == 0) {
Arne Jansen69f4cb52011-11-11 08:17:10 -05001931 struct bio *bio;
1932
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001933 sbio->physical = spage->physical;
1934 sbio->logical = spage->logical;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01001935 sbio->dev = spage->dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001936 bio = sbio->bio;
1937 if (!bio) {
Chris Mason9be33952013-05-17 18:30:14 -04001938 bio = btrfs_io_bio_alloc(GFP_NOFS, sctx->pages_per_rd_bio);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001939 if (!bio)
1940 return -ENOMEM;
1941 sbio->bio = bio;
1942 }
Arne Jansen69f4cb52011-11-11 08:17:10 -05001943
1944 bio->bi_private = sbio;
1945 bio->bi_end_io = scrub_bio_end_io;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01001946 bio->bi_bdev = sbio->dev->bdev;
1947 bio->bi_sector = sbio->physical >> 9;
Arne Jansen69f4cb52011-11-11 08:17:10 -05001948 sbio->err = 0;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001949 } else if (sbio->physical + sbio->page_count * PAGE_SIZE !=
1950 spage->physical ||
1951 sbio->logical + sbio->page_count * PAGE_SIZE !=
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01001952 spage->logical ||
1953 sbio->dev != spage->dev) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001954 scrub_submit(sctx);
Arne Jansen69f4cb52011-11-11 08:17:10 -05001955 goto again;
1956 }
1957
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001958 sbio->pagev[sbio->page_count] = spage;
1959 ret = bio_add_page(sbio->bio, spage->page, PAGE_SIZE, 0);
1960 if (ret != PAGE_SIZE) {
1961 if (sbio->page_count < 1) {
1962 bio_put(sbio->bio);
1963 sbio->bio = NULL;
1964 return -EIO;
1965 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001966 scrub_submit(sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001967 goto again;
Arne Jansena2de7332011-03-08 14:14:00 +01001968 }
Arne Jansen1bc87792011-05-28 21:57:55 +02001969
Stefan Behrensff023aa2012-11-06 11:43:11 +01001970 scrub_block_get(sblock); /* one for the page added to the bio */
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001971 atomic_inc(&sblock->outstanding_pages);
1972 sbio->page_count++;
Stefan Behrensff023aa2012-11-06 11:43:11 +01001973 if (sbio->page_count == sctx->pages_per_rd_bio)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001974 scrub_submit(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01001975
1976 return 0;
1977}
1978
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001979static int scrub_pages(struct scrub_ctx *sctx, u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01001980 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +01001981 u64 gen, int mirror_num, u8 *csum, int force,
1982 u64 physical_for_dev_replace)
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001983{
1984 struct scrub_block *sblock;
1985 int index;
1986
1987 sblock = kzalloc(sizeof(*sblock), GFP_NOFS);
1988 if (!sblock) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001989 spin_lock(&sctx->stat_lock);
1990 sctx->stat.malloc_errors++;
1991 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001992 return -ENOMEM;
1993 }
1994
Stefan Behrens7a9e9982012-11-02 14:58:04 +01001995 /* one ref inside this function, plus one for each page added to
1996 * a bio later on */
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001997 atomic_set(&sblock->ref_count, 1);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01001998 sblock->sctx = sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04001999 sblock->no_io_error_seen = 1;
2000
2001 for (index = 0; len > 0; index++) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002002 struct scrub_page *spage;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002003 u64 l = min_t(u64, len, PAGE_SIZE);
2004
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002005 spage = kzalloc(sizeof(*spage), GFP_NOFS);
2006 if (!spage) {
2007leave_nomem:
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002008 spin_lock(&sctx->stat_lock);
2009 sctx->stat.malloc_errors++;
2010 spin_unlock(&sctx->stat_lock);
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002011 scrub_block_put(sblock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002012 return -ENOMEM;
2013 }
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002014 BUG_ON(index >= SCRUB_MAX_PAGES_PER_BLOCK);
2015 scrub_page_get(spage);
2016 sblock->pagev[index] = spage;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002017 spage->sblock = sblock;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002018 spage->dev = dev;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002019 spage->flags = flags;
2020 spage->generation = gen;
2021 spage->logical = logical;
2022 spage->physical = physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002023 spage->physical_for_dev_replace = physical_for_dev_replace;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002024 spage->mirror_num = mirror_num;
2025 if (csum) {
2026 spage->have_csum = 1;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002027 memcpy(spage->csum, csum, sctx->csum_size);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002028 } else {
2029 spage->have_csum = 0;
2030 }
2031 sblock->page_count++;
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002032 spage->page = alloc_page(GFP_NOFS);
2033 if (!spage->page)
2034 goto leave_nomem;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002035 len -= l;
2036 logical += l;
2037 physical += l;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002038 physical_for_dev_replace += l;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002039 }
2040
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002041 WARN_ON(sblock->page_count == 0);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002042 for (index = 0; index < sblock->page_count; index++) {
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002043 struct scrub_page *spage = sblock->pagev[index];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002044 int ret;
2045
Stefan Behrensff023aa2012-11-06 11:43:11 +01002046 ret = scrub_add_page_to_rd_bio(sctx, spage);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002047 if (ret) {
2048 scrub_block_put(sblock);
2049 return ret;
2050 }
2051 }
2052
2053 if (force)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002054 scrub_submit(sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002055
2056 /* last one frees, either here or in bio completion for last page */
2057 scrub_block_put(sblock);
2058 return 0;
2059}
2060
2061static void scrub_bio_end_io(struct bio *bio, int err)
2062{
2063 struct scrub_bio *sbio = bio->bi_private;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002064 struct btrfs_fs_info *fs_info = sbio->dev->dev_root->fs_info;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002065
2066 sbio->err = err;
2067 sbio->bio = bio;
2068
2069 btrfs_queue_worker(&fs_info->scrub_workers, &sbio->work);
2070}
2071
2072static void scrub_bio_end_io_worker(struct btrfs_work *work)
2073{
2074 struct scrub_bio *sbio = container_of(work, struct scrub_bio, work);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002075 struct scrub_ctx *sctx = sbio->sctx;
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002076 int i;
2077
Stefan Behrensff023aa2012-11-06 11:43:11 +01002078 BUG_ON(sbio->page_count > SCRUB_PAGES_PER_RD_BIO);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002079 if (sbio->err) {
2080 for (i = 0; i < sbio->page_count; i++) {
2081 struct scrub_page *spage = sbio->pagev[i];
2082
2083 spage->io_error = 1;
2084 spage->sblock->no_io_error_seen = 0;
2085 }
2086 }
2087
2088 /* now complete the scrub_block items that have all pages completed */
2089 for (i = 0; i < sbio->page_count; i++) {
2090 struct scrub_page *spage = sbio->pagev[i];
2091 struct scrub_block *sblock = spage->sblock;
2092
2093 if (atomic_dec_and_test(&sblock->outstanding_pages))
2094 scrub_block_complete(sblock);
2095 scrub_block_put(sblock);
2096 }
2097
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002098 bio_put(sbio->bio);
2099 sbio->bio = NULL;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002100 spin_lock(&sctx->list_lock);
2101 sbio->next_free = sctx->first_free;
2102 sctx->first_free = sbio->index;
2103 spin_unlock(&sctx->list_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002104
2105 if (sctx->is_dev_replace &&
2106 atomic_read(&sctx->wr_ctx.flush_all_writes)) {
2107 mutex_lock(&sctx->wr_ctx.wr_lock);
2108 scrub_wr_submit(sctx);
2109 mutex_unlock(&sctx->wr_ctx.wr_lock);
2110 }
2111
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002112 scrub_pending_bio_dec(sctx);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002113}
2114
2115static void scrub_block_complete(struct scrub_block *sblock)
2116{
Stefan Behrensff023aa2012-11-06 11:43:11 +01002117 if (!sblock->no_io_error_seen) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002118 scrub_handle_errored_block(sblock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002119 } else {
2120 /*
2121 * if has checksum error, write via repair mechanism in
2122 * dev replace case, otherwise write here in dev replace
2123 * case.
2124 */
2125 if (!scrub_checksum(sblock) && sblock->sctx->is_dev_replace)
2126 scrub_write_block_to_dev_replace(sblock);
2127 }
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002128}
2129
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002130static int scrub_find_csum(struct scrub_ctx *sctx, u64 logical, u64 len,
Arne Jansena2de7332011-03-08 14:14:00 +01002131 u8 *csum)
2132{
2133 struct btrfs_ordered_sum *sum = NULL;
Miao Xief51a4a12013-06-19 10:36:09 +08002134 unsigned long index;
Arne Jansena2de7332011-03-08 14:14:00 +01002135 unsigned long num_sectors;
Arne Jansena2de7332011-03-08 14:14:00 +01002136
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002137 while (!list_empty(&sctx->csum_list)) {
2138 sum = list_first_entry(&sctx->csum_list,
Arne Jansena2de7332011-03-08 14:14:00 +01002139 struct btrfs_ordered_sum, list);
2140 if (sum->bytenr > logical)
2141 return 0;
2142 if (sum->bytenr + sum->len > logical)
2143 break;
2144
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002145 ++sctx->stat.csum_discards;
Arne Jansena2de7332011-03-08 14:14:00 +01002146 list_del(&sum->list);
2147 kfree(sum);
2148 sum = NULL;
2149 }
2150 if (!sum)
2151 return 0;
2152
Miao Xief51a4a12013-06-19 10:36:09 +08002153 index = ((u32)(logical - sum->bytenr)) / sctx->sectorsize;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002154 num_sectors = sum->len / sctx->sectorsize;
Miao Xief51a4a12013-06-19 10:36:09 +08002155 memcpy(csum, sum->sums + index, sctx->csum_size);
2156 if (index == num_sectors - 1) {
Arne Jansena2de7332011-03-08 14:14:00 +01002157 list_del(&sum->list);
2158 kfree(sum);
2159 }
Miao Xief51a4a12013-06-19 10:36:09 +08002160 return 1;
Arne Jansena2de7332011-03-08 14:14:00 +01002161}
2162
2163/* scrub extent tries to collect up to 64 kB for each bio */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002164static int scrub_extent(struct scrub_ctx *sctx, u64 logical, u64 len,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002165 u64 physical, struct btrfs_device *dev, u64 flags,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002166 u64 gen, int mirror_num, u64 physical_for_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01002167{
2168 int ret;
2169 u8 csum[BTRFS_CSUM_SIZE];
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002170 u32 blocksize;
2171
2172 if (flags & BTRFS_EXTENT_FLAG_DATA) {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002173 blocksize = sctx->sectorsize;
2174 spin_lock(&sctx->stat_lock);
2175 sctx->stat.data_extents_scrubbed++;
2176 sctx->stat.data_bytes_scrubbed += len;
2177 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002178 } else if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01002179 WARN_ON(sctx->nodesize != sctx->leafsize);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002180 blocksize = sctx->nodesize;
2181 spin_lock(&sctx->stat_lock);
2182 sctx->stat.tree_extents_scrubbed++;
2183 sctx->stat.tree_bytes_scrubbed += len;
2184 spin_unlock(&sctx->stat_lock);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002185 } else {
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002186 blocksize = sctx->sectorsize;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002187 WARN_ON(1);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002188 }
Arne Jansena2de7332011-03-08 14:14:00 +01002189
2190 while (len) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002191 u64 l = min_t(u64, len, blocksize);
Arne Jansena2de7332011-03-08 14:14:00 +01002192 int have_csum = 0;
2193
2194 if (flags & BTRFS_EXTENT_FLAG_DATA) {
2195 /* push csums to sbio */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002196 have_csum = scrub_find_csum(sctx, logical, l, csum);
Arne Jansena2de7332011-03-08 14:14:00 +01002197 if (have_csum == 0)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002198 ++sctx->stat.no_csum;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002199 if (sctx->is_dev_replace && !have_csum) {
2200 ret = copy_nocow_pages(sctx, logical, l,
2201 mirror_num,
2202 physical_for_dev_replace);
2203 goto behind_scrub_pages;
2204 }
Arne Jansena2de7332011-03-08 14:14:00 +01002205 }
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002206 ret = scrub_pages(sctx, logical, l, physical, dev, flags, gen,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002207 mirror_num, have_csum ? csum : NULL, 0,
2208 physical_for_dev_replace);
2209behind_scrub_pages:
Arne Jansena2de7332011-03-08 14:14:00 +01002210 if (ret)
2211 return ret;
2212 len -= l;
2213 logical += l;
2214 physical += l;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002215 physical_for_dev_replace += l;
Arne Jansena2de7332011-03-08 14:14:00 +01002216 }
2217 return 0;
2218}
2219
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002220static noinline_for_stack int scrub_stripe(struct scrub_ctx *sctx,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002221 struct map_lookup *map,
2222 struct btrfs_device *scrub_dev,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002223 int num, u64 base, u64 length,
2224 int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01002225{
2226 struct btrfs_path *path;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002227 struct btrfs_fs_info *fs_info = sctx->dev_root->fs_info;
Arne Jansena2de7332011-03-08 14:14:00 +01002228 struct btrfs_root *root = fs_info->extent_root;
2229 struct btrfs_root *csum_root = fs_info->csum_root;
2230 struct btrfs_extent_item *extent;
Arne Jansene7786c32011-05-28 20:58:38 +00002231 struct blk_plug plug;
Arne Jansena2de7332011-03-08 14:14:00 +01002232 u64 flags;
2233 int ret;
2234 int slot;
Arne Jansena2de7332011-03-08 14:14:00 +01002235 u64 nstripes;
Arne Jansena2de7332011-03-08 14:14:00 +01002236 struct extent_buffer *l;
2237 struct btrfs_key key;
2238 u64 physical;
2239 u64 logical;
Liu Bo625f1c8d2013-04-27 02:56:57 +00002240 u64 logic_end;
Arne Jansena2de7332011-03-08 14:14:00 +01002241 u64 generation;
Jan Schmidte12fa9c2011-06-17 15:55:21 +02002242 int mirror_num;
Arne Jansen7a262852011-06-10 12:39:23 +02002243 struct reada_control *reada1;
2244 struct reada_control *reada2;
2245 struct btrfs_key key_start;
2246 struct btrfs_key key_end;
Arne Jansena2de7332011-03-08 14:14:00 +01002247 u64 increment = map->stripe_len;
2248 u64 offset;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002249 u64 extent_logical;
2250 u64 extent_physical;
2251 u64 extent_len;
2252 struct btrfs_device *extent_dev;
2253 int extent_mirror_num;
Liu Bo625f1c8d2013-04-27 02:56:57 +00002254 int stop_loop;
Arne Jansena2de7332011-03-08 14:14:00 +01002255
David Woodhouse53b381b2013-01-29 18:40:14 -05002256 if (map->type & (BTRFS_BLOCK_GROUP_RAID5 |
2257 BTRFS_BLOCK_GROUP_RAID6)) {
2258 if (num >= nr_data_stripes(map)) {
2259 return 0;
2260 }
2261 }
2262
Arne Jansena2de7332011-03-08 14:14:00 +01002263 nstripes = length;
2264 offset = 0;
2265 do_div(nstripes, map->stripe_len);
2266 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
2267 offset = map->stripe_len * num;
2268 increment = map->stripe_len * map->num_stripes;
Jan Schmidt193ea742011-06-13 19:56:54 +02002269 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01002270 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
2271 int factor = map->num_stripes / map->sub_stripes;
2272 offset = map->stripe_len * (num / map->sub_stripes);
2273 increment = map->stripe_len * factor;
Jan Schmidt193ea742011-06-13 19:56:54 +02002274 mirror_num = num % map->sub_stripes + 1;
Arne Jansena2de7332011-03-08 14:14:00 +01002275 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
2276 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02002277 mirror_num = num % map->num_stripes + 1;
Arne Jansena2de7332011-03-08 14:14:00 +01002278 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
2279 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02002280 mirror_num = num % map->num_stripes + 1;
Arne Jansena2de7332011-03-08 14:14:00 +01002281 } else {
2282 increment = map->stripe_len;
Jan Schmidt193ea742011-06-13 19:56:54 +02002283 mirror_num = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01002284 }
2285
2286 path = btrfs_alloc_path();
2287 if (!path)
2288 return -ENOMEM;
2289
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002290 /*
2291 * work on commit root. The related disk blocks are static as
2292 * long as COW is applied. This means, it is save to rewrite
2293 * them to repair disk errors without any race conditions
2294 */
Arne Jansena2de7332011-03-08 14:14:00 +01002295 path->search_commit_root = 1;
2296 path->skip_locking = 1;
2297
2298 /*
Arne Jansen7a262852011-06-10 12:39:23 +02002299 * trigger the readahead for extent tree csum tree and wait for
2300 * completion. During readahead, the scrub is officially paused
2301 * to not hold off transaction commits
Arne Jansena2de7332011-03-08 14:14:00 +01002302 */
2303 logical = base + offset;
Arne Jansena2de7332011-03-08 14:14:00 +01002304
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002305 wait_event(sctx->list_wait,
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002306 atomic_read(&sctx->bios_in_flight) == 0);
Arne Jansen7a262852011-06-10 12:39:23 +02002307 atomic_inc(&fs_info->scrubs_paused);
2308 wake_up(&fs_info->scrub_pause_wait);
Arne Jansena2de7332011-03-08 14:14:00 +01002309
Arne Jansen7a262852011-06-10 12:39:23 +02002310 /* FIXME it might be better to start readahead at commit root */
2311 key_start.objectid = logical;
2312 key_start.type = BTRFS_EXTENT_ITEM_KEY;
2313 key_start.offset = (u64)0;
2314 key_end.objectid = base + offset + nstripes * increment;
Josef Bacik3173a182013-03-07 14:22:04 -05002315 key_end.type = BTRFS_METADATA_ITEM_KEY;
2316 key_end.offset = (u64)-1;
Arne Jansen7a262852011-06-10 12:39:23 +02002317 reada1 = btrfs_reada_add(root, &key_start, &key_end);
Arne Jansena2de7332011-03-08 14:14:00 +01002318
Arne Jansen7a262852011-06-10 12:39:23 +02002319 key_start.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
2320 key_start.type = BTRFS_EXTENT_CSUM_KEY;
2321 key_start.offset = logical;
2322 key_end.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
2323 key_end.type = BTRFS_EXTENT_CSUM_KEY;
2324 key_end.offset = base + offset + nstripes * increment;
2325 reada2 = btrfs_reada_add(csum_root, &key_start, &key_end);
Arne Jansena2de7332011-03-08 14:14:00 +01002326
Arne Jansen7a262852011-06-10 12:39:23 +02002327 if (!IS_ERR(reada1))
2328 btrfs_reada_wait(reada1);
2329 if (!IS_ERR(reada2))
2330 btrfs_reada_wait(reada2);
Arne Jansena2de7332011-03-08 14:14:00 +01002331
Arne Jansen7a262852011-06-10 12:39:23 +02002332 mutex_lock(&fs_info->scrub_lock);
2333 while (atomic_read(&fs_info->scrub_pause_req)) {
2334 mutex_unlock(&fs_info->scrub_lock);
2335 wait_event(fs_info->scrub_pause_wait,
2336 atomic_read(&fs_info->scrub_pause_req) == 0);
2337 mutex_lock(&fs_info->scrub_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01002338 }
Arne Jansen7a262852011-06-10 12:39:23 +02002339 atomic_dec(&fs_info->scrubs_paused);
2340 mutex_unlock(&fs_info->scrub_lock);
2341 wake_up(&fs_info->scrub_pause_wait);
Arne Jansena2de7332011-03-08 14:14:00 +01002342
2343 /*
2344 * collect all data csums for the stripe to avoid seeking during
2345 * the scrub. This might currently (crc32) end up to be about 1MB
2346 */
Arne Jansene7786c32011-05-28 20:58:38 +00002347 blk_start_plug(&plug);
Arne Jansena2de7332011-03-08 14:14:00 +01002348
Arne Jansena2de7332011-03-08 14:14:00 +01002349 /*
2350 * now find all extents for each stripe and scrub them
2351 */
Arne Jansen7a262852011-06-10 12:39:23 +02002352 logical = base + offset;
2353 physical = map->stripes[num].physical;
Liu Bo625f1c8d2013-04-27 02:56:57 +00002354 logic_end = logical + increment * nstripes;
Arne Jansena2de7332011-03-08 14:14:00 +01002355 ret = 0;
Liu Bo625f1c8d2013-04-27 02:56:57 +00002356 while (logical < logic_end) {
Arne Jansena2de7332011-03-08 14:14:00 +01002357 /*
2358 * canceled?
2359 */
2360 if (atomic_read(&fs_info->scrub_cancel_req) ||
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002361 atomic_read(&sctx->cancel_req)) {
Arne Jansena2de7332011-03-08 14:14:00 +01002362 ret = -ECANCELED;
2363 goto out;
2364 }
2365 /*
2366 * check to see if we have to pause
2367 */
2368 if (atomic_read(&fs_info->scrub_pause_req)) {
2369 /* push queued extents */
Stefan Behrensff023aa2012-11-06 11:43:11 +01002370 atomic_set(&sctx->wr_ctx.flush_all_writes, 1);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002371 scrub_submit(sctx);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002372 mutex_lock(&sctx->wr_ctx.wr_lock);
2373 scrub_wr_submit(sctx);
2374 mutex_unlock(&sctx->wr_ctx.wr_lock);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002375 wait_event(sctx->list_wait,
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002376 atomic_read(&sctx->bios_in_flight) == 0);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002377 atomic_set(&sctx->wr_ctx.flush_all_writes, 0);
Arne Jansena2de7332011-03-08 14:14:00 +01002378 atomic_inc(&fs_info->scrubs_paused);
2379 wake_up(&fs_info->scrub_pause_wait);
2380 mutex_lock(&fs_info->scrub_lock);
2381 while (atomic_read(&fs_info->scrub_pause_req)) {
2382 mutex_unlock(&fs_info->scrub_lock);
2383 wait_event(fs_info->scrub_pause_wait,
2384 atomic_read(&fs_info->scrub_pause_req) == 0);
2385 mutex_lock(&fs_info->scrub_lock);
2386 }
2387 atomic_dec(&fs_info->scrubs_paused);
2388 mutex_unlock(&fs_info->scrub_lock);
2389 wake_up(&fs_info->scrub_pause_wait);
Arne Jansena2de7332011-03-08 14:14:00 +01002390 }
2391
2392 key.objectid = logical;
2393 key.type = BTRFS_EXTENT_ITEM_KEY;
Liu Bo625f1c8d2013-04-27 02:56:57 +00002394 key.offset = (u64)-1;
Arne Jansena2de7332011-03-08 14:14:00 +01002395
2396 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2397 if (ret < 0)
2398 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002399
Arne Jansen8c510322011-06-03 10:09:26 +02002400 if (ret > 0) {
Arne Jansena2de7332011-03-08 14:14:00 +01002401 ret = btrfs_previous_item(root, path, 0,
2402 BTRFS_EXTENT_ITEM_KEY);
2403 if (ret < 0)
2404 goto out;
Arne Jansen8c510322011-06-03 10:09:26 +02002405 if (ret > 0) {
2406 /* there's no smaller item, so stick with the
2407 * larger one */
2408 btrfs_release_path(path);
2409 ret = btrfs_search_slot(NULL, root, &key,
2410 path, 0, 0);
2411 if (ret < 0)
2412 goto out;
2413 }
Arne Jansena2de7332011-03-08 14:14:00 +01002414 }
2415
Liu Bo625f1c8d2013-04-27 02:56:57 +00002416 stop_loop = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01002417 while (1) {
Josef Bacik3173a182013-03-07 14:22:04 -05002418 u64 bytes;
2419
Arne Jansena2de7332011-03-08 14:14:00 +01002420 l = path->nodes[0];
2421 slot = path->slots[0];
2422 if (slot >= btrfs_header_nritems(l)) {
2423 ret = btrfs_next_leaf(root, path);
2424 if (ret == 0)
2425 continue;
2426 if (ret < 0)
2427 goto out;
2428
Liu Bo625f1c8d2013-04-27 02:56:57 +00002429 stop_loop = 1;
Arne Jansena2de7332011-03-08 14:14:00 +01002430 break;
2431 }
2432 btrfs_item_key_to_cpu(l, &key, slot);
2433
Josef Bacik3173a182013-03-07 14:22:04 -05002434 if (key.type == BTRFS_METADATA_ITEM_KEY)
2435 bytes = root->leafsize;
2436 else
2437 bytes = key.offset;
2438
2439 if (key.objectid + bytes <= logical)
Arne Jansena2de7332011-03-08 14:14:00 +01002440 goto next;
2441
Liu Bo625f1c8d2013-04-27 02:56:57 +00002442 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
2443 key.type != BTRFS_METADATA_ITEM_KEY)
2444 goto next;
Arne Jansena2de7332011-03-08 14:14:00 +01002445
Liu Bo625f1c8d2013-04-27 02:56:57 +00002446 if (key.objectid >= logical + map->stripe_len) {
2447 /* out of this device extent */
2448 if (key.objectid >= logic_end)
2449 stop_loop = 1;
2450 break;
2451 }
Arne Jansena2de7332011-03-08 14:14:00 +01002452
2453 extent = btrfs_item_ptr(l, slot,
2454 struct btrfs_extent_item);
2455 flags = btrfs_extent_flags(l, extent);
2456 generation = btrfs_extent_generation(l, extent);
2457
2458 if (key.objectid < logical &&
2459 (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)) {
2460 printk(KERN_ERR
2461 "btrfs scrub: tree block %llu spanning "
2462 "stripes, ignored. logical=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002463 key.objectid, logical);
Arne Jansena2de7332011-03-08 14:14:00 +01002464 goto next;
2465 }
2466
Liu Bo625f1c8d2013-04-27 02:56:57 +00002467again:
2468 extent_logical = key.objectid;
2469 extent_len = bytes;
2470
Arne Jansena2de7332011-03-08 14:14:00 +01002471 /*
2472 * trim extent to this stripe
2473 */
Liu Bo625f1c8d2013-04-27 02:56:57 +00002474 if (extent_logical < logical) {
2475 extent_len -= logical - extent_logical;
2476 extent_logical = logical;
Arne Jansena2de7332011-03-08 14:14:00 +01002477 }
Liu Bo625f1c8d2013-04-27 02:56:57 +00002478 if (extent_logical + extent_len >
Arne Jansena2de7332011-03-08 14:14:00 +01002479 logical + map->stripe_len) {
Liu Bo625f1c8d2013-04-27 02:56:57 +00002480 extent_len = logical + map->stripe_len -
2481 extent_logical;
Arne Jansena2de7332011-03-08 14:14:00 +01002482 }
2483
Liu Bo625f1c8d2013-04-27 02:56:57 +00002484 extent_physical = extent_logical - logical + physical;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002485 extent_dev = scrub_dev;
2486 extent_mirror_num = mirror_num;
2487 if (is_dev_replace)
2488 scrub_remap_extent(fs_info, extent_logical,
2489 extent_len, &extent_physical,
2490 &extent_dev,
2491 &extent_mirror_num);
Liu Bo625f1c8d2013-04-27 02:56:57 +00002492
2493 ret = btrfs_lookup_csums_range(csum_root, logical,
2494 logical + map->stripe_len - 1,
2495 &sctx->csum_list, 1);
Arne Jansena2de7332011-03-08 14:14:00 +01002496 if (ret)
2497 goto out;
2498
Liu Bo625f1c8d2013-04-27 02:56:57 +00002499 ret = scrub_extent(sctx, extent_logical, extent_len,
2500 extent_physical, extent_dev, flags,
2501 generation, extent_mirror_num,
Stefan Behrens115930c2013-07-04 16:14:23 +02002502 extent_logical - logical + physical);
Liu Bo625f1c8d2013-04-27 02:56:57 +00002503 if (ret)
2504 goto out;
2505
Josef Bacikd88d46c2013-06-10 12:59:04 +00002506 scrub_free_csums(sctx);
Liu Bo625f1c8d2013-04-27 02:56:57 +00002507 if (extent_logical + extent_len <
2508 key.objectid + bytes) {
2509 logical += increment;
2510 physical += map->stripe_len;
2511
2512 if (logical < key.objectid + bytes) {
2513 cond_resched();
2514 goto again;
2515 }
2516
2517 if (logical >= logic_end) {
2518 stop_loop = 1;
2519 break;
2520 }
2521 }
Arne Jansena2de7332011-03-08 14:14:00 +01002522next:
2523 path->slots[0]++;
2524 }
Chris Mason71267332011-05-23 06:30:52 -04002525 btrfs_release_path(path);
Arne Jansena2de7332011-03-08 14:14:00 +01002526 logical += increment;
2527 physical += map->stripe_len;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002528 spin_lock(&sctx->stat_lock);
Liu Bo625f1c8d2013-04-27 02:56:57 +00002529 if (stop_loop)
2530 sctx->stat.last_physical = map->stripes[num].physical +
2531 length;
2532 else
2533 sctx->stat.last_physical = physical;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002534 spin_unlock(&sctx->stat_lock);
Liu Bo625f1c8d2013-04-27 02:56:57 +00002535 if (stop_loop)
2536 break;
Arne Jansena2de7332011-03-08 14:14:00 +01002537 }
Stefan Behrensff023aa2012-11-06 11:43:11 +01002538out:
Arne Jansena2de7332011-03-08 14:14:00 +01002539 /* push queued extents */
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002540 scrub_submit(sctx);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002541 mutex_lock(&sctx->wr_ctx.wr_lock);
2542 scrub_wr_submit(sctx);
2543 mutex_unlock(&sctx->wr_ctx.wr_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01002544
Arne Jansene7786c32011-05-28 20:58:38 +00002545 blk_finish_plug(&plug);
Arne Jansena2de7332011-03-08 14:14:00 +01002546 btrfs_free_path(path);
2547 return ret < 0 ? ret : 0;
2548}
2549
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002550static noinline_for_stack int scrub_chunk(struct scrub_ctx *sctx,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002551 struct btrfs_device *scrub_dev,
2552 u64 chunk_tree, u64 chunk_objectid,
2553 u64 chunk_offset, u64 length,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002554 u64 dev_offset, int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01002555{
2556 struct btrfs_mapping_tree *map_tree =
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002557 &sctx->dev_root->fs_info->mapping_tree;
Arne Jansena2de7332011-03-08 14:14:00 +01002558 struct map_lookup *map;
2559 struct extent_map *em;
2560 int i;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002561 int ret = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01002562
2563 read_lock(&map_tree->map_tree.lock);
2564 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
2565 read_unlock(&map_tree->map_tree.lock);
2566
2567 if (!em)
2568 return -EINVAL;
2569
2570 map = (struct map_lookup *)em->bdev;
2571 if (em->start != chunk_offset)
2572 goto out;
2573
2574 if (em->len < length)
2575 goto out;
2576
2577 for (i = 0; i < map->num_stripes; ++i) {
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002578 if (map->stripes[i].dev->bdev == scrub_dev->bdev &&
Arne Jansen859acaf2012-02-09 15:09:02 +01002579 map->stripes[i].physical == dev_offset) {
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002580 ret = scrub_stripe(sctx, map, scrub_dev, i,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002581 chunk_offset, length,
2582 is_dev_replace);
Arne Jansena2de7332011-03-08 14:14:00 +01002583 if (ret)
2584 goto out;
2585 }
2586 }
2587out:
2588 free_extent_map(em);
2589
2590 return ret;
2591}
2592
2593static noinline_for_stack
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002594int scrub_enumerate_chunks(struct scrub_ctx *sctx,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002595 struct btrfs_device *scrub_dev, u64 start, u64 end,
2596 int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01002597{
2598 struct btrfs_dev_extent *dev_extent = NULL;
2599 struct btrfs_path *path;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002600 struct btrfs_root *root = sctx->dev_root;
Arne Jansena2de7332011-03-08 14:14:00 +01002601 struct btrfs_fs_info *fs_info = root->fs_info;
2602 u64 length;
2603 u64 chunk_tree;
2604 u64 chunk_objectid;
2605 u64 chunk_offset;
2606 int ret;
2607 int slot;
2608 struct extent_buffer *l;
2609 struct btrfs_key key;
2610 struct btrfs_key found_key;
2611 struct btrfs_block_group_cache *cache;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002612 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
Arne Jansena2de7332011-03-08 14:14:00 +01002613
2614 path = btrfs_alloc_path();
2615 if (!path)
2616 return -ENOMEM;
2617
2618 path->reada = 2;
2619 path->search_commit_root = 1;
2620 path->skip_locking = 1;
2621
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002622 key.objectid = scrub_dev->devid;
Arne Jansena2de7332011-03-08 14:14:00 +01002623 key.offset = 0ull;
2624 key.type = BTRFS_DEV_EXTENT_KEY;
2625
Arne Jansena2de7332011-03-08 14:14:00 +01002626 while (1) {
2627 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2628 if (ret < 0)
Arne Jansen8c510322011-06-03 10:09:26 +02002629 break;
2630 if (ret > 0) {
2631 if (path->slots[0] >=
2632 btrfs_header_nritems(path->nodes[0])) {
2633 ret = btrfs_next_leaf(root, path);
2634 if (ret)
2635 break;
2636 }
2637 }
Arne Jansena2de7332011-03-08 14:14:00 +01002638
2639 l = path->nodes[0];
2640 slot = path->slots[0];
2641
2642 btrfs_item_key_to_cpu(l, &found_key, slot);
2643
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002644 if (found_key.objectid != scrub_dev->devid)
Arne Jansena2de7332011-03-08 14:14:00 +01002645 break;
2646
Arne Jansen8c510322011-06-03 10:09:26 +02002647 if (btrfs_key_type(&found_key) != BTRFS_DEV_EXTENT_KEY)
Arne Jansena2de7332011-03-08 14:14:00 +01002648 break;
2649
2650 if (found_key.offset >= end)
2651 break;
2652
2653 if (found_key.offset < key.offset)
2654 break;
2655
2656 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
2657 length = btrfs_dev_extent_length(l, dev_extent);
2658
2659 if (found_key.offset + length <= start) {
2660 key.offset = found_key.offset + length;
Chris Mason71267332011-05-23 06:30:52 -04002661 btrfs_release_path(path);
Arne Jansena2de7332011-03-08 14:14:00 +01002662 continue;
2663 }
2664
2665 chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent);
2666 chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent);
2667 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
2668
2669 /*
2670 * get a reference on the corresponding block group to prevent
2671 * the chunk from going away while we scrub it
2672 */
2673 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
2674 if (!cache) {
2675 ret = -ENOENT;
Arne Jansen8c510322011-06-03 10:09:26 +02002676 break;
Arne Jansena2de7332011-03-08 14:14:00 +01002677 }
Stefan Behrensff023aa2012-11-06 11:43:11 +01002678 dev_replace->cursor_right = found_key.offset + length;
2679 dev_replace->cursor_left = found_key.offset;
2680 dev_replace->item_needs_writeback = 1;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002681 ret = scrub_chunk(sctx, scrub_dev, chunk_tree, chunk_objectid,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002682 chunk_offset, length, found_key.offset,
2683 is_dev_replace);
2684
2685 /*
2686 * flush, submit all pending read and write bios, afterwards
2687 * wait for them.
2688 * Note that in the dev replace case, a read request causes
2689 * write requests that are submitted in the read completion
2690 * worker. Therefore in the current situation, it is required
2691 * that all write requests are flushed, so that all read and
2692 * write requests are really completed when bios_in_flight
2693 * changes to 0.
2694 */
2695 atomic_set(&sctx->wr_ctx.flush_all_writes, 1);
2696 scrub_submit(sctx);
2697 mutex_lock(&sctx->wr_ctx.wr_lock);
2698 scrub_wr_submit(sctx);
2699 mutex_unlock(&sctx->wr_ctx.wr_lock);
2700
2701 wait_event(sctx->list_wait,
2702 atomic_read(&sctx->bios_in_flight) == 0);
2703 atomic_set(&sctx->wr_ctx.flush_all_writes, 0);
2704 atomic_inc(&fs_info->scrubs_paused);
2705 wake_up(&fs_info->scrub_pause_wait);
2706 wait_event(sctx->list_wait,
2707 atomic_read(&sctx->workers_pending) == 0);
2708
2709 mutex_lock(&fs_info->scrub_lock);
2710 while (atomic_read(&fs_info->scrub_pause_req)) {
2711 mutex_unlock(&fs_info->scrub_lock);
2712 wait_event(fs_info->scrub_pause_wait,
2713 atomic_read(&fs_info->scrub_pause_req) == 0);
2714 mutex_lock(&fs_info->scrub_lock);
2715 }
2716 atomic_dec(&fs_info->scrubs_paused);
2717 mutex_unlock(&fs_info->scrub_lock);
2718 wake_up(&fs_info->scrub_pause_wait);
2719
Arne Jansena2de7332011-03-08 14:14:00 +01002720 btrfs_put_block_group(cache);
2721 if (ret)
2722 break;
Stefan Behrensaf1be4f2012-11-27 17:39:51 +00002723 if (is_dev_replace &&
2724 atomic64_read(&dev_replace->num_write_errors) > 0) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01002725 ret = -EIO;
2726 break;
2727 }
2728 if (sctx->stat.malloc_errors > 0) {
2729 ret = -ENOMEM;
2730 break;
2731 }
Arne Jansena2de7332011-03-08 14:14:00 +01002732
Ilya Dryomov539f3582013-10-07 13:42:57 +03002733 dev_replace->cursor_left = dev_replace->cursor_right;
2734 dev_replace->item_needs_writeback = 1;
2735
Arne Jansena2de7332011-03-08 14:14:00 +01002736 key.offset = found_key.offset + length;
Chris Mason71267332011-05-23 06:30:52 -04002737 btrfs_release_path(path);
Arne Jansena2de7332011-03-08 14:14:00 +01002738 }
2739
Arne Jansena2de7332011-03-08 14:14:00 +01002740 btrfs_free_path(path);
Arne Jansen8c510322011-06-03 10:09:26 +02002741
2742 /*
2743 * ret can still be 1 from search_slot or next_leaf,
2744 * that's not an error
2745 */
2746 return ret < 0 ? ret : 0;
Arne Jansena2de7332011-03-08 14:14:00 +01002747}
2748
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002749static noinline_for_stack int scrub_supers(struct scrub_ctx *sctx,
2750 struct btrfs_device *scrub_dev)
Arne Jansena2de7332011-03-08 14:14:00 +01002751{
2752 int i;
2753 u64 bytenr;
2754 u64 gen;
2755 int ret;
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002756 struct btrfs_root *root = sctx->dev_root;
Arne Jansena2de7332011-03-08 14:14:00 +01002757
Miao Xie87533c42013-01-29 10:14:48 +00002758 if (test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state))
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002759 return -EIO;
2760
Arne Jansena2de7332011-03-08 14:14:00 +01002761 gen = root->fs_info->last_trans_committed;
2762
2763 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
2764 bytenr = btrfs_sb_offset(i);
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002765 if (bytenr + BTRFS_SUPER_INFO_SIZE > scrub_dev->total_bytes)
Arne Jansena2de7332011-03-08 14:14:00 +01002766 break;
2767
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002768 ret = scrub_pages(sctx, bytenr, BTRFS_SUPER_INFO_SIZE, bytenr,
Stefan Behrensa36cf8b2012-11-02 13:26:57 +01002769 scrub_dev, BTRFS_EXTENT_FLAG_SUPER, gen, i,
Stefan Behrensff023aa2012-11-06 11:43:11 +01002770 NULL, 1, bytenr);
Arne Jansena2de7332011-03-08 14:14:00 +01002771 if (ret)
2772 return ret;
2773 }
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002774 wait_event(sctx->list_wait, atomic_read(&sctx->bios_in_flight) == 0);
Arne Jansena2de7332011-03-08 14:14:00 +01002775
2776 return 0;
2777}
2778
2779/*
2780 * get a reference count on fs_info->scrub_workers. start worker if necessary
2781 */
Stefan Behrensff023aa2012-11-06 11:43:11 +01002782static noinline_for_stack int scrub_workers_get(struct btrfs_fs_info *fs_info,
2783 int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01002784{
Josef Bacik0dc3b842011-11-18 14:37:27 -05002785 int ret = 0;
Arne Jansena2de7332011-03-08 14:14:00 +01002786
2787 mutex_lock(&fs_info->scrub_lock);
Arne Jansen632dd772011-06-10 12:07:07 +02002788 if (fs_info->scrub_workers_refcnt == 0) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01002789 if (is_dev_replace)
2790 btrfs_init_workers(&fs_info->scrub_workers, "scrub", 1,
2791 &fs_info->generic_worker);
2792 else
2793 btrfs_init_workers(&fs_info->scrub_workers, "scrub",
2794 fs_info->thread_pool_size,
2795 &fs_info->generic_worker);
Arne Jansen632dd772011-06-10 12:07:07 +02002796 fs_info->scrub_workers.idle_thresh = 4;
Josef Bacik0dc3b842011-11-18 14:37:27 -05002797 ret = btrfs_start_workers(&fs_info->scrub_workers);
2798 if (ret)
2799 goto out;
Stefan Behrensff023aa2012-11-06 11:43:11 +01002800 btrfs_init_workers(&fs_info->scrub_wr_completion_workers,
2801 "scrubwrc",
2802 fs_info->thread_pool_size,
2803 &fs_info->generic_worker);
2804 fs_info->scrub_wr_completion_workers.idle_thresh = 2;
2805 ret = btrfs_start_workers(
2806 &fs_info->scrub_wr_completion_workers);
2807 if (ret)
2808 goto out;
2809 btrfs_init_workers(&fs_info->scrub_nocow_workers, "scrubnc", 1,
2810 &fs_info->generic_worker);
2811 ret = btrfs_start_workers(&fs_info->scrub_nocow_workers);
2812 if (ret)
2813 goto out;
Arne Jansen632dd772011-06-10 12:07:07 +02002814 }
Arne Jansena2de7332011-03-08 14:14:00 +01002815 ++fs_info->scrub_workers_refcnt;
Josef Bacik0dc3b842011-11-18 14:37:27 -05002816out:
Arne Jansena2de7332011-03-08 14:14:00 +01002817 mutex_unlock(&fs_info->scrub_lock);
2818
Josef Bacik0dc3b842011-11-18 14:37:27 -05002819 return ret;
Arne Jansena2de7332011-03-08 14:14:00 +01002820}
2821
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002822static noinline_for_stack void scrub_workers_put(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01002823{
Arne Jansena2de7332011-03-08 14:14:00 +01002824 mutex_lock(&fs_info->scrub_lock);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002825 if (--fs_info->scrub_workers_refcnt == 0) {
Arne Jansena2de7332011-03-08 14:14:00 +01002826 btrfs_stop_workers(&fs_info->scrub_workers);
Stefan Behrensff023aa2012-11-06 11:43:11 +01002827 btrfs_stop_workers(&fs_info->scrub_wr_completion_workers);
2828 btrfs_stop_workers(&fs_info->scrub_nocow_workers);
2829 }
Arne Jansena2de7332011-03-08 14:14:00 +01002830 WARN_ON(fs_info->scrub_workers_refcnt < 0);
2831 mutex_unlock(&fs_info->scrub_lock);
2832}
2833
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002834int btrfs_scrub_dev(struct btrfs_fs_info *fs_info, u64 devid, u64 start,
2835 u64 end, struct btrfs_scrub_progress *progress,
Stefan Behrens63a212a2012-11-05 18:29:28 +01002836 int readonly, int is_dev_replace)
Arne Jansena2de7332011-03-08 14:14:00 +01002837{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002838 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01002839 int ret;
2840 struct btrfs_device *dev;
2841
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002842 if (btrfs_fs_closing(fs_info))
Arne Jansena2de7332011-03-08 14:14:00 +01002843 return -EINVAL;
2844
2845 /*
2846 * check some assumptions
2847 */
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002848 if (fs_info->chunk_root->nodesize != fs_info->chunk_root->leafsize) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002849 printk(KERN_ERR
2850 "btrfs_scrub: size assumption nodesize == leafsize (%d == %d) fails\n",
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002851 fs_info->chunk_root->nodesize,
2852 fs_info->chunk_root->leafsize);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002853 return -EINVAL;
2854 }
2855
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002856 if (fs_info->chunk_root->nodesize > BTRFS_STRIPE_LEN) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002857 /*
2858 * in this case scrub is unable to calculate the checksum
2859 * the way scrub is implemented. Do not handle this
2860 * situation at all because it won't ever happen.
2861 */
2862 printk(KERN_ERR
2863 "btrfs_scrub: size assumption nodesize <= BTRFS_STRIPE_LEN (%d <= %d) fails\n",
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002864 fs_info->chunk_root->nodesize, BTRFS_STRIPE_LEN);
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002865 return -EINVAL;
2866 }
2867
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002868 if (fs_info->chunk_root->sectorsize != PAGE_SIZE) {
Stefan Behrensb5d67f62012-03-27 14:21:27 -04002869 /* not supported for data w/o checksums */
2870 printk(KERN_ERR
Geert Uytterhoeven27f9f022013-08-20 13:20:09 +02002871 "btrfs_scrub: size assumption sectorsize != PAGE_SIZE (%d != %lu) fails\n",
2872 fs_info->chunk_root->sectorsize, PAGE_SIZE);
Arne Jansena2de7332011-03-08 14:14:00 +01002873 return -EINVAL;
2874 }
2875
Stefan Behrens7a9e9982012-11-02 14:58:04 +01002876 if (fs_info->chunk_root->nodesize >
2877 PAGE_SIZE * SCRUB_MAX_PAGES_PER_BLOCK ||
2878 fs_info->chunk_root->sectorsize >
2879 PAGE_SIZE * SCRUB_MAX_PAGES_PER_BLOCK) {
2880 /*
2881 * would exhaust the array bounds of pagev member in
2882 * struct scrub_block
2883 */
2884 pr_err("btrfs_scrub: size assumption nodesize and sectorsize <= SCRUB_MAX_PAGES_PER_BLOCK (%d <= %d && %d <= %d) fails\n",
2885 fs_info->chunk_root->nodesize,
2886 SCRUB_MAX_PAGES_PER_BLOCK,
2887 fs_info->chunk_root->sectorsize,
2888 SCRUB_MAX_PAGES_PER_BLOCK);
2889 return -EINVAL;
2890 }
2891
Stefan Behrensff023aa2012-11-06 11:43:11 +01002892 ret = scrub_workers_get(fs_info, is_dev_replace);
Arne Jansena2de7332011-03-08 14:14:00 +01002893 if (ret)
2894 return ret;
2895
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002896 mutex_lock(&fs_info->fs_devices->device_list_mutex);
2897 dev = btrfs_find_device(fs_info, devid, NULL, NULL);
Stefan Behrens63a212a2012-11-05 18:29:28 +01002898 if (!dev || (dev->missing && !is_dev_replace)) {
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002899 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
2900 scrub_workers_put(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01002901 return -ENODEV;
2902 }
2903 mutex_lock(&fs_info->scrub_lock);
2904
Stefan Behrens63a212a2012-11-05 18:29:28 +01002905 if (!dev->in_fs_metadata || dev->is_tgtdev_for_dev_replace) {
Arne Jansena2de7332011-03-08 14:14:00 +01002906 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002907 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
2908 scrub_workers_put(fs_info);
2909 return -EIO;
Arne Jansena2de7332011-03-08 14:14:00 +01002910 }
2911
Stefan Behrens8dabb742012-11-06 13:15:27 +01002912 btrfs_dev_replace_lock(&fs_info->dev_replace);
2913 if (dev->scrub_device ||
2914 (!is_dev_replace &&
2915 btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))) {
2916 btrfs_dev_replace_unlock(&fs_info->dev_replace);
Arne Jansena2de7332011-03-08 14:14:00 +01002917 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002918 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
2919 scrub_workers_put(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01002920 return -EINPROGRESS;
2921 }
Stefan Behrens8dabb742012-11-06 13:15:27 +01002922 btrfs_dev_replace_unlock(&fs_info->dev_replace);
Stefan Behrens63a212a2012-11-05 18:29:28 +01002923 sctx = scrub_setup_ctx(dev, is_dev_replace);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002924 if (IS_ERR(sctx)) {
Arne Jansena2de7332011-03-08 14:14:00 +01002925 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002926 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
2927 scrub_workers_put(fs_info);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002928 return PTR_ERR(sctx);
Arne Jansena2de7332011-03-08 14:14:00 +01002929 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002930 sctx->readonly = readonly;
2931 dev->scrub_device = sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01002932
2933 atomic_inc(&fs_info->scrubs_running);
2934 mutex_unlock(&fs_info->scrub_lock);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002935 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Arne Jansena2de7332011-03-08 14:14:00 +01002936
Stefan Behrensff023aa2012-11-06 11:43:11 +01002937 if (!is_dev_replace) {
2938 down_read(&fs_info->scrub_super_lock);
2939 ret = scrub_supers(sctx, dev);
2940 up_read(&fs_info->scrub_super_lock);
2941 }
Arne Jansena2de7332011-03-08 14:14:00 +01002942
2943 if (!ret)
Stefan Behrensff023aa2012-11-06 11:43:11 +01002944 ret = scrub_enumerate_chunks(sctx, dev, start, end,
2945 is_dev_replace);
Arne Jansena2de7332011-03-08 14:14:00 +01002946
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002947 wait_event(sctx->list_wait, atomic_read(&sctx->bios_in_flight) == 0);
Arne Jansena2de7332011-03-08 14:14:00 +01002948 atomic_dec(&fs_info->scrubs_running);
2949 wake_up(&fs_info->scrub_pause_wait);
2950
Stefan Behrensb6bfebc2012-11-02 16:44:58 +01002951 wait_event(sctx->list_wait, atomic_read(&sctx->workers_pending) == 0);
Jan Schmidt0ef8e452011-06-13 20:04:15 +02002952
Arne Jansena2de7332011-03-08 14:14:00 +01002953 if (progress)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002954 memcpy(progress, &sctx->stat, sizeof(*progress));
Arne Jansena2de7332011-03-08 14:14:00 +01002955
2956 mutex_lock(&fs_info->scrub_lock);
2957 dev->scrub_device = NULL;
2958 mutex_unlock(&fs_info->scrub_lock);
2959
Stefan Behrensd9d181c2012-11-02 09:58:09 +01002960 scrub_free_ctx(sctx);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002961 scrub_workers_put(fs_info);
Arne Jansena2de7332011-03-08 14:14:00 +01002962
2963 return ret;
2964}
2965
Jeff Mahoney143bede2012-03-01 14:56:26 +01002966void btrfs_scrub_pause(struct btrfs_root *root)
Arne Jansena2de7332011-03-08 14:14:00 +01002967{
2968 struct btrfs_fs_info *fs_info = root->fs_info;
2969
2970 mutex_lock(&fs_info->scrub_lock);
2971 atomic_inc(&fs_info->scrub_pause_req);
2972 while (atomic_read(&fs_info->scrubs_paused) !=
2973 atomic_read(&fs_info->scrubs_running)) {
2974 mutex_unlock(&fs_info->scrub_lock);
2975 wait_event(fs_info->scrub_pause_wait,
2976 atomic_read(&fs_info->scrubs_paused) ==
2977 atomic_read(&fs_info->scrubs_running));
2978 mutex_lock(&fs_info->scrub_lock);
2979 }
2980 mutex_unlock(&fs_info->scrub_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01002981}
2982
Jeff Mahoney143bede2012-03-01 14:56:26 +01002983void btrfs_scrub_continue(struct btrfs_root *root)
Arne Jansena2de7332011-03-08 14:14:00 +01002984{
2985 struct btrfs_fs_info *fs_info = root->fs_info;
2986
2987 atomic_dec(&fs_info->scrub_pause_req);
2988 wake_up(&fs_info->scrub_pause_wait);
Arne Jansena2de7332011-03-08 14:14:00 +01002989}
2990
Jeff Mahoney143bede2012-03-01 14:56:26 +01002991void btrfs_scrub_pause_super(struct btrfs_root *root)
Arne Jansena2de7332011-03-08 14:14:00 +01002992{
2993 down_write(&root->fs_info->scrub_super_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01002994}
2995
Jeff Mahoney143bede2012-03-01 14:56:26 +01002996void btrfs_scrub_continue_super(struct btrfs_root *root)
Arne Jansena2de7332011-03-08 14:14:00 +01002997{
2998 up_write(&root->fs_info->scrub_super_lock);
Arne Jansena2de7332011-03-08 14:14:00 +01002999}
3000
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003001int btrfs_scrub_cancel(struct btrfs_fs_info *fs_info)
Arne Jansena2de7332011-03-08 14:14:00 +01003002{
Arne Jansena2de7332011-03-08 14:14:00 +01003003 mutex_lock(&fs_info->scrub_lock);
3004 if (!atomic_read(&fs_info->scrubs_running)) {
3005 mutex_unlock(&fs_info->scrub_lock);
3006 return -ENOTCONN;
3007 }
3008
3009 atomic_inc(&fs_info->scrub_cancel_req);
3010 while (atomic_read(&fs_info->scrubs_running)) {
3011 mutex_unlock(&fs_info->scrub_lock);
3012 wait_event(fs_info->scrub_pause_wait,
3013 atomic_read(&fs_info->scrubs_running) == 0);
3014 mutex_lock(&fs_info->scrub_lock);
3015 }
3016 atomic_dec(&fs_info->scrub_cancel_req);
3017 mutex_unlock(&fs_info->scrub_lock);
3018
3019 return 0;
3020}
3021
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003022int btrfs_scrub_cancel_dev(struct btrfs_fs_info *fs_info,
3023 struct btrfs_device *dev)
Jeff Mahoney49b25e02012-03-01 17:24:58 +01003024{
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003025 struct scrub_ctx *sctx;
Arne Jansena2de7332011-03-08 14:14:00 +01003026
3027 mutex_lock(&fs_info->scrub_lock);
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003028 sctx = dev->scrub_device;
3029 if (!sctx) {
Arne Jansena2de7332011-03-08 14:14:00 +01003030 mutex_unlock(&fs_info->scrub_lock);
3031 return -ENOTCONN;
3032 }
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003033 atomic_inc(&sctx->cancel_req);
Arne Jansena2de7332011-03-08 14:14:00 +01003034 while (dev->scrub_device) {
3035 mutex_unlock(&fs_info->scrub_lock);
3036 wait_event(fs_info->scrub_pause_wait,
3037 dev->scrub_device == NULL);
3038 mutex_lock(&fs_info->scrub_lock);
3039 }
3040 mutex_unlock(&fs_info->scrub_lock);
3041
3042 return 0;
3043}
Stefan Behrens1623ede2012-03-27 14:21:26 -04003044
Arne Jansena2de7332011-03-08 14:14:00 +01003045int btrfs_scrub_progress(struct btrfs_root *root, u64 devid,
3046 struct btrfs_scrub_progress *progress)
3047{
3048 struct btrfs_device *dev;
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003049 struct scrub_ctx *sctx = NULL;
Arne Jansena2de7332011-03-08 14:14:00 +01003050
3051 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003052 dev = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Arne Jansena2de7332011-03-08 14:14:00 +01003053 if (dev)
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003054 sctx = dev->scrub_device;
3055 if (sctx)
3056 memcpy(progress, &sctx->stat, sizeof(*progress));
Arne Jansena2de7332011-03-08 14:14:00 +01003057 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
3058
Stefan Behrensd9d181c2012-11-02 09:58:09 +01003059 return dev ? (sctx ? 0 : -ENOTCONN) : -ENODEV;
Arne Jansena2de7332011-03-08 14:14:00 +01003060}
Stefan Behrensff023aa2012-11-06 11:43:11 +01003061
3062static void scrub_remap_extent(struct btrfs_fs_info *fs_info,
3063 u64 extent_logical, u64 extent_len,
3064 u64 *extent_physical,
3065 struct btrfs_device **extent_dev,
3066 int *extent_mirror_num)
3067{
3068 u64 mapped_length;
3069 struct btrfs_bio *bbio = NULL;
3070 int ret;
3071
3072 mapped_length = extent_len;
3073 ret = btrfs_map_block(fs_info, READ, extent_logical,
3074 &mapped_length, &bbio, 0);
3075 if (ret || !bbio || mapped_length < extent_len ||
3076 !bbio->stripes[0].dev->bdev) {
3077 kfree(bbio);
3078 return;
3079 }
3080
3081 *extent_physical = bbio->stripes[0].physical;
3082 *extent_mirror_num = bbio->mirror_num;
3083 *extent_dev = bbio->stripes[0].dev;
3084 kfree(bbio);
3085}
3086
3087static int scrub_setup_wr_ctx(struct scrub_ctx *sctx,
3088 struct scrub_wr_ctx *wr_ctx,
3089 struct btrfs_fs_info *fs_info,
3090 struct btrfs_device *dev,
3091 int is_dev_replace)
3092{
3093 WARN_ON(wr_ctx->wr_curr_bio != NULL);
3094
3095 mutex_init(&wr_ctx->wr_lock);
3096 wr_ctx->wr_curr_bio = NULL;
3097 if (!is_dev_replace)
3098 return 0;
3099
3100 WARN_ON(!dev->bdev);
3101 wr_ctx->pages_per_wr_bio = min_t(int, SCRUB_PAGES_PER_WR_BIO,
3102 bio_get_nr_vecs(dev->bdev));
3103 wr_ctx->tgtdev = dev;
3104 atomic_set(&wr_ctx->flush_all_writes, 0);
3105 return 0;
3106}
3107
3108static void scrub_free_wr_ctx(struct scrub_wr_ctx *wr_ctx)
3109{
3110 mutex_lock(&wr_ctx->wr_lock);
3111 kfree(wr_ctx->wr_curr_bio);
3112 wr_ctx->wr_curr_bio = NULL;
3113 mutex_unlock(&wr_ctx->wr_lock);
3114}
3115
3116static int copy_nocow_pages(struct scrub_ctx *sctx, u64 logical, u64 len,
3117 int mirror_num, u64 physical_for_dev_replace)
3118{
3119 struct scrub_copy_nocow_ctx *nocow_ctx;
3120 struct btrfs_fs_info *fs_info = sctx->dev_root->fs_info;
3121
3122 nocow_ctx = kzalloc(sizeof(*nocow_ctx), GFP_NOFS);
3123 if (!nocow_ctx) {
3124 spin_lock(&sctx->stat_lock);
3125 sctx->stat.malloc_errors++;
3126 spin_unlock(&sctx->stat_lock);
3127 return -ENOMEM;
3128 }
3129
3130 scrub_pending_trans_workers_inc(sctx);
3131
3132 nocow_ctx->sctx = sctx;
3133 nocow_ctx->logical = logical;
3134 nocow_ctx->len = len;
3135 nocow_ctx->mirror_num = mirror_num;
3136 nocow_ctx->physical_for_dev_replace = physical_for_dev_replace;
3137 nocow_ctx->work.func = copy_nocow_pages_worker;
Josef Bacik652f25a2013-09-12 16:58:28 -04003138 INIT_LIST_HEAD(&nocow_ctx->inodes);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003139 btrfs_queue_worker(&fs_info->scrub_nocow_workers,
3140 &nocow_ctx->work);
3141
3142 return 0;
3143}
3144
Josef Bacik652f25a2013-09-12 16:58:28 -04003145static int record_inode_for_nocow(u64 inum, u64 offset, u64 root, void *ctx)
3146{
3147 struct scrub_copy_nocow_ctx *nocow_ctx = ctx;
3148 struct scrub_nocow_inode *nocow_inode;
3149
3150 nocow_inode = kzalloc(sizeof(*nocow_inode), GFP_NOFS);
3151 if (!nocow_inode)
3152 return -ENOMEM;
3153 nocow_inode->inum = inum;
3154 nocow_inode->offset = offset;
3155 nocow_inode->root = root;
3156 list_add_tail(&nocow_inode->list, &nocow_ctx->inodes);
3157 return 0;
3158}
3159
3160#define COPY_COMPLETE 1
3161
Stefan Behrensff023aa2012-11-06 11:43:11 +01003162static void copy_nocow_pages_worker(struct btrfs_work *work)
3163{
3164 struct scrub_copy_nocow_ctx *nocow_ctx =
3165 container_of(work, struct scrub_copy_nocow_ctx, work);
3166 struct scrub_ctx *sctx = nocow_ctx->sctx;
3167 u64 logical = nocow_ctx->logical;
3168 u64 len = nocow_ctx->len;
3169 int mirror_num = nocow_ctx->mirror_num;
3170 u64 physical_for_dev_replace = nocow_ctx->physical_for_dev_replace;
3171 int ret;
3172 struct btrfs_trans_handle *trans = NULL;
3173 struct btrfs_fs_info *fs_info;
3174 struct btrfs_path *path;
3175 struct btrfs_root *root;
3176 int not_written = 0;
3177
3178 fs_info = sctx->dev_root->fs_info;
3179 root = fs_info->extent_root;
3180
3181 path = btrfs_alloc_path();
3182 if (!path) {
3183 spin_lock(&sctx->stat_lock);
3184 sctx->stat.malloc_errors++;
3185 spin_unlock(&sctx->stat_lock);
3186 not_written = 1;
3187 goto out;
3188 }
3189
3190 trans = btrfs_join_transaction(root);
3191 if (IS_ERR(trans)) {
3192 not_written = 1;
3193 goto out;
3194 }
3195
3196 ret = iterate_inodes_from_logical(logical, fs_info, path,
Josef Bacik652f25a2013-09-12 16:58:28 -04003197 record_inode_for_nocow, nocow_ctx);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003198 if (ret != 0 && ret != -ENOENT) {
Geert Uytterhoeven118a0a22013-08-20 13:20:10 +02003199 pr_warn("iterate_inodes_from_logical() failed: log %llu, phys %llu, len %llu, mir %u, ret %d\n",
3200 logical, physical_for_dev_replace, len, mirror_num,
3201 ret);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003202 not_written = 1;
3203 goto out;
3204 }
3205
Josef Bacik652f25a2013-09-12 16:58:28 -04003206 btrfs_end_transaction(trans, root);
3207 trans = NULL;
3208 while (!list_empty(&nocow_ctx->inodes)) {
3209 struct scrub_nocow_inode *entry;
3210 entry = list_first_entry(&nocow_ctx->inodes,
3211 struct scrub_nocow_inode,
3212 list);
3213 list_del_init(&entry->list);
3214 ret = copy_nocow_pages_for_inode(entry->inum, entry->offset,
3215 entry->root, nocow_ctx);
3216 kfree(entry);
3217 if (ret == COPY_COMPLETE) {
3218 ret = 0;
3219 break;
3220 } else if (ret) {
3221 break;
3222 }
3223 }
Stefan Behrensff023aa2012-11-06 11:43:11 +01003224out:
Josef Bacik652f25a2013-09-12 16:58:28 -04003225 while (!list_empty(&nocow_ctx->inodes)) {
3226 struct scrub_nocow_inode *entry;
3227 entry = list_first_entry(&nocow_ctx->inodes,
3228 struct scrub_nocow_inode,
3229 list);
3230 list_del_init(&entry->list);
3231 kfree(entry);
3232 }
Stefan Behrensff023aa2012-11-06 11:43:11 +01003233 if (trans && !IS_ERR(trans))
3234 btrfs_end_transaction(trans, root);
3235 if (not_written)
3236 btrfs_dev_replace_stats_inc(&fs_info->dev_replace.
3237 num_uncorrectable_read_errors);
3238
3239 btrfs_free_path(path);
3240 kfree(nocow_ctx);
3241
3242 scrub_pending_trans_workers_dec(sctx);
3243}
3244
Josef Bacik652f25a2013-09-12 16:58:28 -04003245static int copy_nocow_pages_for_inode(u64 inum, u64 offset, u64 root,
3246 struct scrub_copy_nocow_ctx *nocow_ctx)
Stefan Behrensff023aa2012-11-06 11:43:11 +01003247{
Miao Xie826aa0a2013-06-27 18:50:59 +08003248 struct btrfs_fs_info *fs_info = nocow_ctx->sctx->dev_root->fs_info;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003249 struct btrfs_key key;
Miao Xie826aa0a2013-06-27 18:50:59 +08003250 struct inode *inode;
3251 struct page *page;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003252 struct btrfs_root *local_root;
Josef Bacik652f25a2013-09-12 16:58:28 -04003253 struct btrfs_ordered_extent *ordered;
3254 struct extent_map *em;
3255 struct extent_state *cached_state = NULL;
3256 struct extent_io_tree *io_tree;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003257 u64 physical_for_dev_replace;
Josef Bacik652f25a2013-09-12 16:58:28 -04003258 u64 len = nocow_ctx->len;
3259 u64 lockstart = offset, lockend = offset + len - 1;
Miao Xie826aa0a2013-06-27 18:50:59 +08003260 unsigned long index;
Liu Bo6f1c3602013-01-29 03:22:10 +00003261 int srcu_index;
Josef Bacik652f25a2013-09-12 16:58:28 -04003262 int ret = 0;
3263 int err = 0;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003264
3265 key.objectid = root;
3266 key.type = BTRFS_ROOT_ITEM_KEY;
3267 key.offset = (u64)-1;
Liu Bo6f1c3602013-01-29 03:22:10 +00003268
3269 srcu_index = srcu_read_lock(&fs_info->subvol_srcu);
3270
Stefan Behrensff023aa2012-11-06 11:43:11 +01003271 local_root = btrfs_read_fs_root_no_name(fs_info, &key);
Liu Bo6f1c3602013-01-29 03:22:10 +00003272 if (IS_ERR(local_root)) {
3273 srcu_read_unlock(&fs_info->subvol_srcu, srcu_index);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003274 return PTR_ERR(local_root);
Liu Bo6f1c3602013-01-29 03:22:10 +00003275 }
Stefan Behrensff023aa2012-11-06 11:43:11 +01003276
3277 key.type = BTRFS_INODE_ITEM_KEY;
3278 key.objectid = inum;
3279 key.offset = 0;
3280 inode = btrfs_iget(fs_info->sb, &key, local_root, NULL);
Liu Bo6f1c3602013-01-29 03:22:10 +00003281 srcu_read_unlock(&fs_info->subvol_srcu, srcu_index);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003282 if (IS_ERR(inode))
3283 return PTR_ERR(inode);
3284
Miao Xieedd14002013-06-27 18:51:00 +08003285 /* Avoid truncate/dio/punch hole.. */
3286 mutex_lock(&inode->i_mutex);
3287 inode_dio_wait(inode);
3288
Stefan Behrensff023aa2012-11-06 11:43:11 +01003289 physical_for_dev_replace = nocow_ctx->physical_for_dev_replace;
Josef Bacik652f25a2013-09-12 16:58:28 -04003290 io_tree = &BTRFS_I(inode)->io_tree;
3291
3292 lock_extent_bits(io_tree, lockstart, lockend, 0, &cached_state);
3293 ordered = btrfs_lookup_ordered_range(inode, lockstart, len);
3294 if (ordered) {
3295 btrfs_put_ordered_extent(ordered);
3296 goto out_unlock;
3297 }
3298
3299 em = btrfs_get_extent(inode, NULL, 0, lockstart, len, 0);
3300 if (IS_ERR(em)) {
3301 ret = PTR_ERR(em);
3302 goto out_unlock;
3303 }
3304
3305 /*
3306 * This extent does not actually cover the logical extent anymore,
3307 * move on to the next inode.
3308 */
3309 if (em->block_start > nocow_ctx->logical ||
3310 em->block_start + em->block_len < nocow_ctx->logical + len) {
3311 free_extent_map(em);
3312 goto out_unlock;
3313 }
3314 free_extent_map(em);
3315
Stefan Behrensff023aa2012-11-06 11:43:11 +01003316 while (len >= PAGE_CACHE_SIZE) {
Stefan Behrensff023aa2012-11-06 11:43:11 +01003317 index = offset >> PAGE_CACHE_SHIFT;
Miao Xieedd14002013-06-27 18:51:00 +08003318again:
Stefan Behrensff023aa2012-11-06 11:43:11 +01003319 page = find_or_create_page(inode->i_mapping, index, GFP_NOFS);
3320 if (!page) {
3321 pr_err("find_or_create_page() failed\n");
3322 ret = -ENOMEM;
Miao Xie826aa0a2013-06-27 18:50:59 +08003323 goto out;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003324 }
3325
3326 if (PageUptodate(page)) {
3327 if (PageDirty(page))
3328 goto next_page;
3329 } else {
3330 ClearPageError(page);
Josef Bacik652f25a2013-09-12 16:58:28 -04003331 err = extent_read_full_page_nolock(io_tree, page,
3332 btrfs_get_extent,
3333 nocow_ctx->mirror_num);
Miao Xie826aa0a2013-06-27 18:50:59 +08003334 if (err) {
3335 ret = err;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003336 goto next_page;
3337 }
Miao Xieedd14002013-06-27 18:51:00 +08003338
Miao Xie26b258912013-06-27 18:50:58 +08003339 lock_page(page);
Miao Xieedd14002013-06-27 18:51:00 +08003340 /*
3341 * If the page has been remove from the page cache,
3342 * the data on it is meaningless, because it may be
3343 * old one, the new data may be written into the new
3344 * page in the page cache.
3345 */
3346 if (page->mapping != inode->i_mapping) {
Josef Bacik652f25a2013-09-12 16:58:28 -04003347 unlock_page(page);
Miao Xieedd14002013-06-27 18:51:00 +08003348 page_cache_release(page);
3349 goto again;
3350 }
Stefan Behrensff023aa2012-11-06 11:43:11 +01003351 if (!PageUptodate(page)) {
3352 ret = -EIO;
3353 goto next_page;
3354 }
3355 }
Miao Xie826aa0a2013-06-27 18:50:59 +08003356 err = write_page_nocow(nocow_ctx->sctx,
3357 physical_for_dev_replace, page);
3358 if (err)
3359 ret = err;
Stefan Behrensff023aa2012-11-06 11:43:11 +01003360next_page:
Miao Xie826aa0a2013-06-27 18:50:59 +08003361 unlock_page(page);
3362 page_cache_release(page);
3363
3364 if (ret)
3365 break;
3366
Stefan Behrensff023aa2012-11-06 11:43:11 +01003367 offset += PAGE_CACHE_SIZE;
3368 physical_for_dev_replace += PAGE_CACHE_SIZE;
3369 len -= PAGE_CACHE_SIZE;
3370 }
Josef Bacik652f25a2013-09-12 16:58:28 -04003371 ret = COPY_COMPLETE;
3372out_unlock:
3373 unlock_extent_cached(io_tree, lockstart, lockend, &cached_state,
3374 GFP_NOFS);
Miao Xie826aa0a2013-06-27 18:50:59 +08003375out:
Miao Xieedd14002013-06-27 18:51:00 +08003376 mutex_unlock(&inode->i_mutex);
Miao Xie826aa0a2013-06-27 18:50:59 +08003377 iput(inode);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003378 return ret;
3379}
3380
3381static int write_page_nocow(struct scrub_ctx *sctx,
3382 u64 physical_for_dev_replace, struct page *page)
3383{
3384 struct bio *bio;
3385 struct btrfs_device *dev;
3386 int ret;
3387 DECLARE_COMPLETION_ONSTACK(compl);
3388
3389 dev = sctx->wr_ctx.tgtdev;
3390 if (!dev)
3391 return -EIO;
3392 if (!dev->bdev) {
3393 printk_ratelimited(KERN_WARNING
3394 "btrfs: scrub write_page_nocow(bdev == NULL) is unexpected!\n");
3395 return -EIO;
3396 }
Chris Mason9be33952013-05-17 18:30:14 -04003397 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Stefan Behrensff023aa2012-11-06 11:43:11 +01003398 if (!bio) {
3399 spin_lock(&sctx->stat_lock);
3400 sctx->stat.malloc_errors++;
3401 spin_unlock(&sctx->stat_lock);
3402 return -ENOMEM;
3403 }
3404 bio->bi_private = &compl;
3405 bio->bi_end_io = scrub_complete_bio_end_io;
3406 bio->bi_size = 0;
3407 bio->bi_sector = physical_for_dev_replace >> 9;
3408 bio->bi_bdev = dev->bdev;
3409 ret = bio_add_page(bio, page, PAGE_CACHE_SIZE, 0);
3410 if (ret != PAGE_CACHE_SIZE) {
3411leave_with_eio:
3412 bio_put(bio);
3413 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
3414 return -EIO;
3415 }
3416 btrfsic_submit_bio(WRITE_SYNC, bio);
3417 wait_for_completion(&compl);
3418
3419 if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
3420 goto leave_with_eio;
3421
3422 bio_put(bio);
3423 return 0;
3424}