mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08:00
btrfs: do not use replace target device as an extra mirror
[BUG] Currently btrfs can use dev-replace device as an extra mirror for read-repair. But it can lead to NODATASUM corruption in the following case: There is a RAID1 data chunk, and dev-replace is running from dev2 to dev0. |//| = Replaced data X X+1MB X+2MB Dev 2: | | | <- Source dev Dev 0: |///////| | <- Target dev Then a read on dev 2 X+2MB happens. And something wrong happened inside devid 2, causing an -EIO. In that case, read-repair would try the next mirror, and since we can use target device as an extra mirror, we will use that mirror instead. But unfortunately since the read is beyond the current replace cursor, we should not trust it at all, what we get would be just uninitialized garbage. But if this read is for NODATASUM range, then we just trust them and cause data corruption. [CAUSE] We used to have some checks to make sure we only return such extra mirror when the range is before our left cursor. The first commit introducing this behavior isad6d620e2a
("Btrfs: allow repair code to include target disk when searching mirrors"). But later a fix,22ab04e814
("Btrfs: fix race between device replace and chunk allocation") changed the behavior, to always let btrfs_map_block() include the extra mirror to address a race in dev-replace which can cause missing writes to target device. This means, we lose the tracking of cursor for the extra mirror, thus can lead to above corruption. [FIX] The extra mirror is never a reliable one, at the beginning of dev-replace, the reliability is zero, while only at the end of the replace it's a fully reliable mirror. We either do the complex tracking, or never trust it. IMHO it's much easier to maintain if we don't trust it at all, and the extra mirror can only benefit for a limited period of time (during replace). Thus this patch would completely remove the ability to use target device as an extra mirror. Signed-off-by: Qu Wenruo <wqu@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
4871c33baf
commit
5f50fa918f
@ -5783,13 +5783,6 @@ int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
|
||||
*/
|
||||
ret = map->num_stripes;
|
||||
free_extent_map(em);
|
||||
|
||||
down_read(&fs_info->dev_replace.rwsem);
|
||||
if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) &&
|
||||
fs_info->dev_replace.tgtdev)
|
||||
ret++;
|
||||
up_read(&fs_info->dev_replace.rwsem);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -6076,83 +6069,6 @@ out_free_map:
|
||||
return ERR_PTR(ret);
|
||||
}
|
||||
|
||||
/*
|
||||
* In dev-replace case, for repair case (that's the only case where the mirror
|
||||
* is selected explicitly when calling btrfs_map_block), blocks left of the
|
||||
* left cursor can also be read from the target drive.
|
||||
*
|
||||
* For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the
|
||||
* array of stripes.
|
||||
* For READ, it also needs to be supported using the same mirror number.
|
||||
*
|
||||
* If the requested block is not left of the left cursor, EIO is returned. This
|
||||
* can happen because btrfs_num_copies() returns one more in the dev-replace
|
||||
* case.
|
||||
*/
|
||||
static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info,
|
||||
u64 logical, u64 length,
|
||||
u64 srcdev_devid, int *mirror_num,
|
||||
u64 *physical)
|
||||
{
|
||||
struct btrfs_io_context *bioc = NULL;
|
||||
int num_stripes;
|
||||
int index_srcdev = 0;
|
||||
int found = 0;
|
||||
u64 physical_of_found = 0;
|
||||
int i;
|
||||
int ret = 0;
|
||||
|
||||
ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
|
||||
logical, &length, &bioc, NULL, NULL, 0);
|
||||
if (ret) {
|
||||
ASSERT(bioc == NULL);
|
||||
return ret;
|
||||
}
|
||||
|
||||
num_stripes = bioc->num_stripes;
|
||||
if (*mirror_num > num_stripes) {
|
||||
/*
|
||||
* BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror,
|
||||
* that means that the requested area is not left of the left
|
||||
* cursor
|
||||
*/
|
||||
btrfs_put_bioc(bioc);
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
/*
|
||||
* process the rest of the function using the mirror_num of the source
|
||||
* drive. Therefore look it up first. At the end, patch the device
|
||||
* pointer to the one of the target drive.
|
||||
*/
|
||||
for (i = 0; i < num_stripes; i++) {
|
||||
if (bioc->stripes[i].dev->devid != srcdev_devid)
|
||||
continue;
|
||||
|
||||
/*
|
||||
* In case of DUP, in order to keep it simple, only add the
|
||||
* mirror with the lowest physical address
|
||||
*/
|
||||
if (found &&
|
||||
physical_of_found <= bioc->stripes[i].physical)
|
||||
continue;
|
||||
|
||||
index_srcdev = i;
|
||||
found = 1;
|
||||
physical_of_found = bioc->stripes[i].physical;
|
||||
}
|
||||
|
||||
btrfs_put_bioc(bioc);
|
||||
|
||||
ASSERT(found);
|
||||
if (!found)
|
||||
return -EIO;
|
||||
|
||||
*mirror_num = index_srcdev + 1;
|
||||
*physical = physical_of_found;
|
||||
return ret;
|
||||
}
|
||||
|
||||
static bool is_block_group_to_copy(struct btrfs_fs_info *fs_info, u64 logical)
|
||||
{
|
||||
struct btrfs_block_group *cache;
|
||||
@ -6325,19 +6241,22 @@ int __btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
|
||||
int ret = 0;
|
||||
int mirror_num = (mirror_num_ret ? *mirror_num_ret : 0);
|
||||
int num_stripes;
|
||||
int num_copies;
|
||||
int max_errors = 0;
|
||||
struct btrfs_io_context *bioc = NULL;
|
||||
struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
|
||||
int dev_replace_is_ongoing = 0;
|
||||
int patch_the_first_stripe_for_dev_replace = 0;
|
||||
u16 num_alloc_stripes;
|
||||
u64 physical_to_patch_in_first_stripe = 0;
|
||||
u64 raid56_full_stripe_start = (u64)-1;
|
||||
u64 max_len;
|
||||
|
||||
ASSERT(bioc_ret);
|
||||
ASSERT(op != BTRFS_MAP_DISCARD);
|
||||
|
||||
num_copies = btrfs_num_copies(fs_info, logical, fs_info->sectorsize);
|
||||
if (mirror_num > num_copies)
|
||||
return -EINVAL;
|
||||
|
||||
em = btrfs_get_chunk_map(fs_info, logical, *length);
|
||||
if (IS_ERR(em))
|
||||
return PTR_ERR(em);
|
||||
@ -6359,20 +6278,6 @@ int __btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
|
||||
if (!dev_replace_is_ongoing)
|
||||
up_read(&dev_replace->rwsem);
|
||||
|
||||
if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
|
||||
!need_full_stripe(op) && dev_replace->tgtdev != NULL) {
|
||||
ret = get_extra_mirror_from_replace(fs_info, logical, *length,
|
||||
dev_replace->srcdev->devid,
|
||||
&mirror_num,
|
||||
&physical_to_patch_in_first_stripe);
|
||||
if (ret)
|
||||
goto out;
|
||||
else
|
||||
patch_the_first_stripe_for_dev_replace = 1;
|
||||
} else if (mirror_num > map->num_stripes) {
|
||||
mirror_num = 0;
|
||||
}
|
||||
|
||||
num_stripes = 1;
|
||||
stripe_index = 0;
|
||||
if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
|
||||
@ -6496,15 +6401,8 @@ int __btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
|
||||
!((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) && mirror_num > 1) &&
|
||||
(!need_full_stripe(op) || !dev_replace_is_ongoing ||
|
||||
!dev_replace->tgtdev)) {
|
||||
if (patch_the_first_stripe_for_dev_replace) {
|
||||
smap->dev = dev_replace->tgtdev;
|
||||
smap->physical = physical_to_patch_in_first_stripe;
|
||||
*mirror_num_ret = map->num_stripes + 1;
|
||||
} else {
|
||||
set_io_stripe(smap, map, stripe_index, stripe_offset,
|
||||
stripe_nr);
|
||||
*mirror_num_ret = mirror_num;
|
||||
}
|
||||
set_io_stripe(smap, map, stripe_index, stripe_offset, stripe_nr);
|
||||
*mirror_num_ret = mirror_num;
|
||||
*bioc_ret = NULL;
|
||||
ret = 0;
|
||||
goto out;
|
||||
@ -6566,17 +6464,6 @@ int __btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
|
||||
bioc->max_errors = max_errors;
|
||||
bioc->mirror_num = mirror_num;
|
||||
|
||||
/*
|
||||
* this is the case that REQ_READ && dev_replace_is_ongoing &&
|
||||
* mirror_num == num_stripes + 1 && dev_replace target drive is
|
||||
* available as a mirror
|
||||
*/
|
||||
if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
|
||||
WARN_ON(num_stripes > 1);
|
||||
bioc->stripes[0].dev = dev_replace->tgtdev;
|
||||
bioc->stripes[0].physical = physical_to_patch_in_first_stripe;
|
||||
bioc->mirror_num = map->num_stripes + 1;
|
||||
}
|
||||
out:
|
||||
if (dev_replace_is_ongoing) {
|
||||
lockdep_assert_held(&dev_replace->rwsem);
|
||||
|
Loading…
Reference in New Issue
Block a user