btrfs-progs: Avoid reading bad fd in case of missing device.

Offline btrfs tools, like btrfs-image, will infinitely loop when there
is missing device.

The reason is, for missing device, it's fd will be set to -1, but before
we reading, we only check the fd validation by checking if it's 0.
So in that case, -1 will pass the validation check, and cause pread to
return 0, and loop to read.

Just change the validation check from "== 0" to "<= 0" to avoid such
problem.

Reported-by: Timothy Normand Miller <theosib@gmail.com>
Signed-off-by: Qu Wenruo <quwenruo@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.com>
master
Qu Wenruo 2015-08-21 11:21:26 +08:00 committed by David Sterba
parent 919d2becc8
commit c0f32c54a3
3 changed files with 5 additions and 5 deletions

View File

@ -894,7 +894,7 @@ static int read_data_extent(struct metadump_struct *md,
device = multi->stripes[0].dev;
if (device->fd == 0) {
if (device->fd <= 0) {
fprintf(stderr,
"Device we need to read from is not open\n");
free(multi);

View File

@ -266,7 +266,7 @@ int read_whole_eb(struct btrfs_fs_info *info, struct extent_buffer *eb, int mirr
}
device = multi->stripes[0].dev;
if (device->fd == 0) {
if (device->fd <= 0) {
kfree(multi);
return -EIO;
}
@ -385,7 +385,7 @@ int read_extent_data(struct btrfs_root *root, char *data,
}
device = multi->stripes[0].dev;
if (device->fd == 0)
if (device->fd <= 0)
goto err;
if (*len > max_len)
*len = max_len;

View File

@ -714,7 +714,7 @@ int read_data_from_disk(struct btrfs_fs_info *info, void *buf, u64 offset,
device = multi->stripes[0].dev;
read_len = min(bytes_left, read_len);
if (device->fd == 0) {
if (device->fd <= 0) {
kfree(multi);
return -EIO;
}
@ -790,7 +790,7 @@ int write_data_to_disk(struct btrfs_fs_info *info, void *buf, u64 offset,
raid_map = NULL;
} else while (dev_nr < multi->num_stripes) {
device = multi->stripes[dev_nr].dev;
if (device->fd == 0) {
if (device->fd <= 0) {
kfree(multi);
return -EIO;
}