David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) STRATO AG 2012. All rights reserved. |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 4 | */ |
David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 5 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 6 | #include <linux/sched.h> |
| 7 | #include <linux/bio.h> |
| 8 | #include <linux/slab.h> |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 9 | #include <linux/blkdev.h> |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 10 | #include <linux/kthread.h> |
| 11 | #include <linux/math64.h> |
David Sterba | 602cbe9 | 2019-08-21 18:48:25 +0200 | [diff] [blame] | 12 | #include "misc.h" |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 13 | #include "ctree.h" |
| 14 | #include "extent_map.h" |
| 15 | #include "disk-io.h" |
| 16 | #include "transaction.h" |
| 17 | #include "print-tree.h" |
| 18 | #include "volumes.h" |
| 19 | #include "async-thread.h" |
| 20 | #include "check-integrity.h" |
| 21 | #include "rcu-string.h" |
| 22 | #include "dev-replace.h" |
Anand Jain | 49c6f73 | 2014-06-03 11:36:02 +0800 | [diff] [blame] | 23 | #include "sysfs.h" |
Naohiro Aota | 5b31646 | 2020-11-10 20:26:07 +0900 | [diff] [blame] | 24 | #include "zoned.h" |
Naohiro Aota | 78ce9fc | 2021-02-04 19:22:11 +0900 | [diff] [blame] | 25 | #include "block-group.h" |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 26 | |
Qu Wenruo | 30b3688 | 2020-01-23 15:44:50 +0800 | [diff] [blame] | 27 | /* |
| 28 | * Device replace overview |
| 29 | * |
| 30 | * [Objective] |
| 31 | * To copy all extents (both new and on-disk) from source device to target |
| 32 | * device, while still keeping the filesystem read-write. |
| 33 | * |
| 34 | * [Method] |
| 35 | * There are two main methods involved: |
| 36 | * |
| 37 | * - Write duplication |
| 38 | * |
| 39 | * All new writes will be written to both target and source devices, so even |
David Sterba | 1a9fd41 | 2021-05-21 17:42:23 +0200 | [diff] [blame] | 40 | * if replace gets canceled, sources device still contains up-to-date data. |
Qu Wenruo | 30b3688 | 2020-01-23 15:44:50 +0800 | [diff] [blame] | 41 | * |
| 42 | * Location: handle_ops_on_dev_replace() from __btrfs_map_block() |
| 43 | * Start: btrfs_dev_replace_start() |
| 44 | * End: btrfs_dev_replace_finishing() |
| 45 | * Content: Latest data/metadata |
| 46 | * |
| 47 | * - Copy existing extents |
| 48 | * |
| 49 | * This happens by re-using scrub facility, as scrub also iterates through |
| 50 | * existing extents from commit root. |
| 51 | * |
| 52 | * Location: scrub_write_block_to_dev_replace() from |
| 53 | * scrub_block_complete() |
| 54 | * Content: Data/meta from commit root. |
| 55 | * |
| 56 | * Due to the content difference, we need to avoid nocow write when dev-replace |
| 57 | * is happening. This is done by marking the block group read-only and waiting |
| 58 | * for NOCOW writes. |
| 59 | * |
| 60 | * After replace is done, the finishing part is done by swapping the target and |
| 61 | * source devices. |
| 62 | * |
| 63 | * Location: btrfs_dev_replace_update_device_in_mapping_tree() from |
| 64 | * btrfs_dev_replace_finishing() |
| 65 | */ |
| 66 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 67 | static int btrfs_dev_replace_finishing(struct btrfs_fs_info *fs_info, |
| 68 | int scrub_ret); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 69 | static int btrfs_dev_replace_kthread(void *data); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 70 | |
| 71 | int btrfs_init_dev_replace(struct btrfs_fs_info *fs_info) |
| 72 | { |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 73 | struct btrfs_dev_lookup_args args = { .devid = BTRFS_DEV_REPLACE_DEVID }; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 74 | struct btrfs_key key; |
| 75 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 76 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 77 | struct extent_buffer *eb; |
| 78 | int slot; |
| 79 | int ret = 0; |
| 80 | struct btrfs_path *path = NULL; |
| 81 | int item_size; |
| 82 | struct btrfs_dev_replace_item *ptr; |
| 83 | u64 src_devid; |
| 84 | |
Josef Bacik | 3cb8949 | 2021-03-11 11:23:16 -0500 | [diff] [blame] | 85 | if (!dev_root) |
| 86 | return 0; |
| 87 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 88 | path = btrfs_alloc_path(); |
| 89 | if (!path) { |
| 90 | ret = -ENOMEM; |
| 91 | goto out; |
| 92 | } |
| 93 | |
| 94 | key.objectid = 0; |
| 95 | key.type = BTRFS_DEV_REPLACE_KEY; |
| 96 | key.offset = 0; |
| 97 | ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0); |
| 98 | if (ret) { |
| 99 | no_valid_dev_replace_entry_found: |
Anand Jain | cf89af1 | 2020-10-30 06:53:56 +0800 | [diff] [blame] | 100 | /* |
| 101 | * We don't have a replace item or it's corrupted. If there is |
| 102 | * a replace target, fail the mount. |
| 103 | */ |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 104 | if (btrfs_find_device(fs_info->fs_devices, &args)) { |
Anand Jain | cf89af1 | 2020-10-30 06:53:56 +0800 | [diff] [blame] | 105 | btrfs_err(fs_info, |
| 106 | "found replace target device without a valid replace item"); |
| 107 | ret = -EUCLEAN; |
| 108 | goto out; |
| 109 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 110 | ret = 0; |
| 111 | dev_replace->replace_state = |
Anand Jain | 27e022a | 2019-08-08 12:32:44 +0800 | [diff] [blame] | 112 | BTRFS_IOCTL_DEV_REPLACE_STATE_NEVER_STARTED; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 113 | dev_replace->cont_reading_from_srcdev_mode = |
| 114 | BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_ALWAYS; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 115 | dev_replace->time_started = 0; |
| 116 | dev_replace->time_stopped = 0; |
| 117 | atomic64_set(&dev_replace->num_write_errors, 0); |
| 118 | atomic64_set(&dev_replace->num_uncorrectable_read_errors, 0); |
| 119 | dev_replace->cursor_left = 0; |
| 120 | dev_replace->committed_cursor_left = 0; |
| 121 | dev_replace->cursor_left_last_write_of_item = 0; |
| 122 | dev_replace->cursor_right = 0; |
| 123 | dev_replace->srcdev = NULL; |
| 124 | dev_replace->tgtdev = NULL; |
| 125 | dev_replace->is_valid = 0; |
| 126 | dev_replace->item_needs_writeback = 0; |
| 127 | goto out; |
| 128 | } |
| 129 | slot = path->slots[0]; |
| 130 | eb = path->nodes[0]; |
Josef Bacik | 3212fa1 | 2021-10-21 14:58:35 -0400 | [diff] [blame] | 131 | item_size = btrfs_item_size(eb, slot); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 132 | ptr = btrfs_item_ptr(eb, slot, struct btrfs_dev_replace_item); |
| 133 | |
| 134 | if (item_size != sizeof(struct btrfs_dev_replace_item)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 135 | btrfs_warn(fs_info, |
| 136 | "dev_replace entry found has unexpected size, ignore entry"); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 137 | goto no_valid_dev_replace_entry_found; |
| 138 | } |
| 139 | |
| 140 | src_devid = btrfs_dev_replace_src_devid(eb, ptr); |
| 141 | dev_replace->cont_reading_from_srcdev_mode = |
| 142 | btrfs_dev_replace_cont_reading_from_srcdev_mode(eb, ptr); |
| 143 | dev_replace->replace_state = btrfs_dev_replace_replace_state(eb, ptr); |
| 144 | dev_replace->time_started = btrfs_dev_replace_time_started(eb, ptr); |
| 145 | dev_replace->time_stopped = |
| 146 | btrfs_dev_replace_time_stopped(eb, ptr); |
| 147 | atomic64_set(&dev_replace->num_write_errors, |
| 148 | btrfs_dev_replace_num_write_errors(eb, ptr)); |
| 149 | atomic64_set(&dev_replace->num_uncorrectable_read_errors, |
| 150 | btrfs_dev_replace_num_uncorrectable_read_errors(eb, ptr)); |
| 151 | dev_replace->cursor_left = btrfs_dev_replace_cursor_left(eb, ptr); |
| 152 | dev_replace->committed_cursor_left = dev_replace->cursor_left; |
| 153 | dev_replace->cursor_left_last_write_of_item = dev_replace->cursor_left; |
| 154 | dev_replace->cursor_right = btrfs_dev_replace_cursor_right(eb, ptr); |
| 155 | dev_replace->is_valid = 1; |
| 156 | |
| 157 | dev_replace->item_needs_writeback = 0; |
| 158 | switch (dev_replace->replace_state) { |
| 159 | case BTRFS_IOCTL_DEV_REPLACE_STATE_NEVER_STARTED: |
| 160 | case BTRFS_IOCTL_DEV_REPLACE_STATE_FINISHED: |
| 161 | case BTRFS_IOCTL_DEV_REPLACE_STATE_CANCELED: |
Anand Jain | cf89af1 | 2020-10-30 06:53:56 +0800 | [diff] [blame] | 162 | /* |
| 163 | * We don't have an active replace item but if there is a |
| 164 | * replace target, fail the mount. |
| 165 | */ |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 166 | if (btrfs_find_device(fs_info->fs_devices, &args)) { |
Anand Jain | cf89af1 | 2020-10-30 06:53:56 +0800 | [diff] [blame] | 167 | btrfs_err(fs_info, |
| 168 | "replace devid present without an active replace item"); |
| 169 | ret = -EUCLEAN; |
| 170 | } else { |
| 171 | dev_replace->srcdev = NULL; |
| 172 | dev_replace->tgtdev = NULL; |
| 173 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 174 | break; |
| 175 | case BTRFS_IOCTL_DEV_REPLACE_STATE_STARTED: |
| 176 | case BTRFS_IOCTL_DEV_REPLACE_STATE_SUSPENDED: |
Josef Bacik | 562d7b1 | 2021-10-05 16:12:42 -0400 | [diff] [blame] | 177 | dev_replace->tgtdev = btrfs_find_device(fs_info->fs_devices, &args); |
| 178 | args.devid = src_devid; |
| 179 | dev_replace->srcdev = btrfs_find_device(fs_info->fs_devices, &args); |
| 180 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 181 | /* |
| 182 | * allow 'btrfs dev replace_cancel' if src/tgt device is |
| 183 | * missing |
| 184 | */ |
| 185 | if (!dev_replace->srcdev && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 186 | !btrfs_test_opt(fs_info, DEGRADED)) { |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 187 | ret = -EIO; |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 188 | btrfs_warn(fs_info, |
| 189 | "cannot mount because device replace operation is ongoing and"); |
| 190 | btrfs_warn(fs_info, |
| 191 | "srcdev (devid %llu) is missing, need to run 'btrfs dev scan'?", |
| 192 | src_devid); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 193 | } |
| 194 | if (!dev_replace->tgtdev && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 195 | !btrfs_test_opt(fs_info, DEGRADED)) { |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 196 | ret = -EIO; |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 197 | btrfs_warn(fs_info, |
| 198 | "cannot mount because device replace operation is ongoing and"); |
| 199 | btrfs_warn(fs_info, |
| 200 | "tgtdev (devid %llu) is missing, need to run 'btrfs dev scan'?", |
Geert Uytterhoeven | 6e71c47 | 2013-08-20 13:20:08 +0200 | [diff] [blame] | 201 | BTRFS_DEV_REPLACE_DEVID); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 202 | } |
| 203 | if (dev_replace->tgtdev) { |
| 204 | if (dev_replace->srcdev) { |
| 205 | dev_replace->tgtdev->total_bytes = |
| 206 | dev_replace->srcdev->total_bytes; |
| 207 | dev_replace->tgtdev->disk_total_bytes = |
| 208 | dev_replace->srcdev->disk_total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 209 | dev_replace->tgtdev->commit_total_bytes = |
| 210 | dev_replace->srcdev->commit_total_bytes; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 211 | dev_replace->tgtdev->bytes_used = |
| 212 | dev_replace->srcdev->bytes_used; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 213 | dev_replace->tgtdev->commit_bytes_used = |
| 214 | dev_replace->srcdev->commit_bytes_used; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 215 | } |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 216 | set_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
| 217 | &dev_replace->tgtdev->dev_state); |
Anand Jain | 15fc128 | 2018-02-12 23:36:25 +0800 | [diff] [blame] | 218 | |
| 219 | WARN_ON(fs_info->fs_devices->rw_devices == 0); |
| 220 | dev_replace->tgtdev->io_width = fs_info->sectorsize; |
| 221 | dev_replace->tgtdev->io_align = fs_info->sectorsize; |
| 222 | dev_replace->tgtdev->sector_size = fs_info->sectorsize; |
| 223 | dev_replace->tgtdev->fs_info = fs_info; |
| 224 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 225 | &dev_replace->tgtdev->dev_state); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 226 | } |
| 227 | break; |
| 228 | } |
| 229 | |
| 230 | out: |
Tsutomu Itoh | 527afb4 | 2015-08-19 14:55:00 +0900 | [diff] [blame] | 231 | btrfs_free_path(path); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 232 | return ret; |
| 233 | } |
| 234 | |
| 235 | /* |
David Sterba | d48f39d | 2018-03-20 16:09:48 +0100 | [diff] [blame] | 236 | * Initialize a new device for device replace target from a given source dev |
| 237 | * and path. |
| 238 | * |
| 239 | * Return 0 and new device in @device_out, otherwise return < 0 |
| 240 | */ |
| 241 | static int btrfs_init_dev_replace_tgtdev(struct btrfs_fs_info *fs_info, |
| 242 | const char *device_path, |
| 243 | struct btrfs_device *srcdev, |
| 244 | struct btrfs_device **device_out) |
| 245 | { |
| 246 | struct btrfs_device *device; |
| 247 | struct block_device *bdev; |
David Sterba | d48f39d | 2018-03-20 16:09:48 +0100 | [diff] [blame] | 248 | struct rcu_string *name; |
| 249 | u64 devid = BTRFS_DEV_REPLACE_DEVID; |
| 250 | int ret = 0; |
| 251 | |
| 252 | *device_out = NULL; |
Anand Jain | c6a5d95 | 2020-09-05 01:34:22 +0800 | [diff] [blame] | 253 | if (srcdev->fs_devices->seeding) { |
David Sterba | d48f39d | 2018-03-20 16:09:48 +0100 | [diff] [blame] | 254 | btrfs_err(fs_info, "the filesystem is a seed filesystem!"); |
| 255 | return -EINVAL; |
| 256 | } |
| 257 | |
| 258 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
| 259 | fs_info->bdev_holder); |
| 260 | if (IS_ERR(bdev)) { |
| 261 | btrfs_err(fs_info, "target device %s is invalid!", device_path); |
| 262 | return PTR_ERR(bdev); |
| 263 | } |
| 264 | |
Naohiro Aota | b70f509 | 2020-11-10 20:26:08 +0900 | [diff] [blame] | 265 | if (!btrfs_check_device_zone_type(fs_info, bdev)) { |
| 266 | btrfs_err(fs_info, |
| 267 | "dev-replace: zoned type of target device mismatch with filesystem"); |
| 268 | ret = -EINVAL; |
| 269 | goto error; |
| 270 | } |
| 271 | |
Nikolay Borisov | ddb9378 | 2019-05-14 13:54:38 +0300 | [diff] [blame] | 272 | sync_blockdev(bdev); |
David Sterba | d48f39d | 2018-03-20 16:09:48 +0100 | [diff] [blame] | 273 | |
Anand Jain | 1888709 | 2020-09-05 01:34:32 +0800 | [diff] [blame] | 274 | list_for_each_entry(device, &fs_info->fs_devices->devices, dev_list) { |
David Sterba | d48f39d | 2018-03-20 16:09:48 +0100 | [diff] [blame] | 275 | if (device->bdev == bdev) { |
| 276 | btrfs_err(fs_info, |
| 277 | "target device is in the filesystem!"); |
| 278 | ret = -EEXIST; |
| 279 | goto error; |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | |
Christoph Hellwig | cda00eb | 2021-10-18 12:11:12 +0200 | [diff] [blame] | 284 | if (bdev_nr_bytes(bdev) < btrfs_device_get_total_bytes(srcdev)) { |
David Sterba | d48f39d | 2018-03-20 16:09:48 +0100 | [diff] [blame] | 285 | btrfs_err(fs_info, |
| 286 | "target device is smaller than source device!"); |
| 287 | ret = -EINVAL; |
| 288 | goto error; |
| 289 | } |
| 290 | |
| 291 | |
| 292 | device = btrfs_alloc_device(NULL, &devid, NULL); |
| 293 | if (IS_ERR(device)) { |
| 294 | ret = PTR_ERR(device); |
| 295 | goto error; |
| 296 | } |
| 297 | |
| 298 | name = rcu_string_strdup(device_path, GFP_KERNEL); |
| 299 | if (!name) { |
| 300 | btrfs_free_device(device); |
| 301 | ret = -ENOMEM; |
| 302 | goto error; |
| 303 | } |
| 304 | rcu_assign_pointer(device->name, name); |
| 305 | |
David Sterba | d48f39d | 2018-03-20 16:09:48 +0100 | [diff] [blame] | 306 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
| 307 | device->generation = 0; |
| 308 | device->io_width = fs_info->sectorsize; |
| 309 | device->io_align = fs_info->sectorsize; |
| 310 | device->sector_size = fs_info->sectorsize; |
| 311 | device->total_bytes = btrfs_device_get_total_bytes(srcdev); |
| 312 | device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev); |
| 313 | device->bytes_used = btrfs_device_get_bytes_used(srcdev); |
| 314 | device->commit_total_bytes = srcdev->commit_total_bytes; |
| 315 | device->commit_bytes_used = device->bytes_used; |
| 316 | device->fs_info = fs_info; |
| 317 | device->bdev = bdev; |
| 318 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
| 319 | set_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
| 320 | device->mode = FMODE_EXCL; |
| 321 | device->dev_stats_valid = 1; |
| 322 | set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE); |
| 323 | device->fs_devices = fs_info->fs_devices; |
Nikolay Borisov | b0d9e1e | 2019-05-14 13:54:39 +0300 | [diff] [blame] | 324 | |
Naohiro Aota | 16beac8 | 2021-11-11 14:14:38 +0900 | [diff] [blame] | 325 | ret = btrfs_get_dev_zone_info(device, false); |
Naohiro Aota | 5b31646 | 2020-11-10 20:26:07 +0900 | [diff] [blame] | 326 | if (ret) |
| 327 | goto error; |
| 328 | |
Nikolay Borisov | b0d9e1e | 2019-05-14 13:54:39 +0300 | [diff] [blame] | 329 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
David Sterba | d48f39d | 2018-03-20 16:09:48 +0100 | [diff] [blame] | 330 | list_add(&device->dev_list, &fs_info->fs_devices->devices); |
| 331 | fs_info->fs_devices->num_devices++; |
| 332 | fs_info->fs_devices->open_devices++; |
| 333 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
| 334 | |
| 335 | *device_out = device; |
| 336 | return 0; |
| 337 | |
| 338 | error: |
| 339 | blkdev_put(bdev, FMODE_EXCL); |
| 340 | return ret; |
| 341 | } |
| 342 | |
| 343 | /* |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 344 | * called from commit_transaction. Writes changed device replace state to |
| 345 | * disk. |
| 346 | */ |
David Sterba | 2b584c6 | 2019-03-20 16:51:44 +0100 | [diff] [blame] | 347 | int btrfs_run_dev_replace(struct btrfs_trans_handle *trans) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 348 | { |
David Sterba | 2b584c6 | 2019-03-20 16:51:44 +0100 | [diff] [blame] | 349 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 350 | int ret; |
| 351 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 352 | struct btrfs_path *path; |
| 353 | struct btrfs_key key; |
| 354 | struct extent_buffer *eb; |
| 355 | struct btrfs_dev_replace_item *ptr; |
| 356 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 357 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 358 | down_read(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 359 | if (!dev_replace->is_valid || |
| 360 | !dev_replace->item_needs_writeback) { |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 361 | up_read(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 362 | return 0; |
| 363 | } |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 364 | up_read(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 365 | |
| 366 | key.objectid = 0; |
| 367 | key.type = BTRFS_DEV_REPLACE_KEY; |
| 368 | key.offset = 0; |
| 369 | |
| 370 | path = btrfs_alloc_path(); |
| 371 | if (!path) { |
| 372 | ret = -ENOMEM; |
| 373 | goto out; |
| 374 | } |
| 375 | ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1); |
| 376 | if (ret < 0) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 377 | btrfs_warn(fs_info, |
| 378 | "error %d while searching for dev_replace item!", |
| 379 | ret); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 380 | goto out; |
| 381 | } |
| 382 | |
| 383 | if (ret == 0 && |
Josef Bacik | 3212fa1 | 2021-10-21 14:58:35 -0400 | [diff] [blame] | 384 | btrfs_item_size(path->nodes[0], path->slots[0]) < sizeof(*ptr)) { |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 385 | /* |
| 386 | * need to delete old one and insert a new one. |
| 387 | * Since no attempt is made to recover any old state, if the |
| 388 | * dev_replace state is 'running', the data on the target |
| 389 | * drive is lost. |
| 390 | * It would be possible to recover the state: just make sure |
| 391 | * that the beginning of the item is never changed and always |
| 392 | * contains all the essential information. Then read this |
| 393 | * minimal set of information and use it as a base for the |
| 394 | * new state. |
| 395 | */ |
| 396 | ret = btrfs_del_item(trans, dev_root, path); |
| 397 | if (ret != 0) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 398 | btrfs_warn(fs_info, |
| 399 | "delete too small dev_replace item failed %d!", |
| 400 | ret); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 401 | goto out; |
| 402 | } |
| 403 | ret = 1; |
| 404 | } |
| 405 | |
| 406 | if (ret == 1) { |
| 407 | /* need to insert a new item */ |
| 408 | btrfs_release_path(path); |
| 409 | ret = btrfs_insert_empty_item(trans, dev_root, path, |
| 410 | &key, sizeof(*ptr)); |
| 411 | if (ret < 0) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 412 | btrfs_warn(fs_info, |
| 413 | "insert dev_replace item failed %d!", ret); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 414 | goto out; |
| 415 | } |
| 416 | } |
| 417 | |
| 418 | eb = path->nodes[0]; |
| 419 | ptr = btrfs_item_ptr(eb, path->slots[0], |
| 420 | struct btrfs_dev_replace_item); |
| 421 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 422 | down_write(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 423 | if (dev_replace->srcdev) |
| 424 | btrfs_set_dev_replace_src_devid(eb, ptr, |
| 425 | dev_replace->srcdev->devid); |
| 426 | else |
| 427 | btrfs_set_dev_replace_src_devid(eb, ptr, (u64)-1); |
| 428 | btrfs_set_dev_replace_cont_reading_from_srcdev_mode(eb, ptr, |
| 429 | dev_replace->cont_reading_from_srcdev_mode); |
| 430 | btrfs_set_dev_replace_replace_state(eb, ptr, |
| 431 | dev_replace->replace_state); |
| 432 | btrfs_set_dev_replace_time_started(eb, ptr, dev_replace->time_started); |
| 433 | btrfs_set_dev_replace_time_stopped(eb, ptr, dev_replace->time_stopped); |
| 434 | btrfs_set_dev_replace_num_write_errors(eb, ptr, |
| 435 | atomic64_read(&dev_replace->num_write_errors)); |
| 436 | btrfs_set_dev_replace_num_uncorrectable_read_errors(eb, ptr, |
| 437 | atomic64_read(&dev_replace->num_uncorrectable_read_errors)); |
| 438 | dev_replace->cursor_left_last_write_of_item = |
| 439 | dev_replace->cursor_left; |
| 440 | btrfs_set_dev_replace_cursor_left(eb, ptr, |
| 441 | dev_replace->cursor_left_last_write_of_item); |
| 442 | btrfs_set_dev_replace_cursor_right(eb, ptr, |
| 443 | dev_replace->cursor_right); |
| 444 | dev_replace->item_needs_writeback = 0; |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 445 | up_write(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 446 | |
| 447 | btrfs_mark_buffer_dirty(eb); |
| 448 | |
| 449 | out: |
| 450 | btrfs_free_path(path); |
| 451 | |
| 452 | return ret; |
| 453 | } |
| 454 | |
Anand Jain | 3c958bd | 2017-11-28 10:43:10 +0800 | [diff] [blame] | 455 | static char* btrfs_dev_name(struct btrfs_device *device) |
| 456 | { |
Anand Jain | acf18c5 | 2018-02-24 19:43:56 +0800 | [diff] [blame] | 457 | if (!device || test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) |
Anand Jain | 3c958bd | 2017-11-28 10:43:10 +0800 | [diff] [blame] | 458 | return "<missing disk>"; |
| 459 | else |
| 460 | return rcu_str_deref(device->name); |
| 461 | } |
| 462 | |
Naohiro Aota | 78ce9fc | 2021-02-04 19:22:11 +0900 | [diff] [blame] | 463 | static int mark_block_group_to_copy(struct btrfs_fs_info *fs_info, |
| 464 | struct btrfs_device *src_dev) |
| 465 | { |
| 466 | struct btrfs_path *path; |
| 467 | struct btrfs_key key; |
| 468 | struct btrfs_key found_key; |
| 469 | struct btrfs_root *root = fs_info->dev_root; |
| 470 | struct btrfs_dev_extent *dev_extent = NULL; |
| 471 | struct btrfs_block_group *cache; |
| 472 | struct btrfs_trans_handle *trans; |
| 473 | int ret = 0; |
| 474 | u64 chunk_offset; |
| 475 | |
| 476 | /* Do not use "to_copy" on non zoned filesystem for now */ |
| 477 | if (!btrfs_is_zoned(fs_info)) |
| 478 | return 0; |
| 479 | |
| 480 | mutex_lock(&fs_info->chunk_mutex); |
| 481 | |
| 482 | /* Ensure we don't have pending new block group */ |
| 483 | spin_lock(&fs_info->trans_lock); |
| 484 | while (fs_info->running_transaction && |
| 485 | !list_empty(&fs_info->running_transaction->dev_update_list)) { |
| 486 | spin_unlock(&fs_info->trans_lock); |
| 487 | mutex_unlock(&fs_info->chunk_mutex); |
| 488 | trans = btrfs_attach_transaction(root); |
| 489 | if (IS_ERR(trans)) { |
| 490 | ret = PTR_ERR(trans); |
| 491 | mutex_lock(&fs_info->chunk_mutex); |
| 492 | if (ret == -ENOENT) { |
| 493 | spin_lock(&fs_info->trans_lock); |
| 494 | continue; |
| 495 | } else { |
| 496 | goto unlock; |
| 497 | } |
| 498 | } |
| 499 | |
| 500 | ret = btrfs_commit_transaction(trans); |
| 501 | mutex_lock(&fs_info->chunk_mutex); |
| 502 | if (ret) |
| 503 | goto unlock; |
| 504 | |
| 505 | spin_lock(&fs_info->trans_lock); |
| 506 | } |
| 507 | spin_unlock(&fs_info->trans_lock); |
| 508 | |
| 509 | path = btrfs_alloc_path(); |
| 510 | if (!path) { |
| 511 | ret = -ENOMEM; |
| 512 | goto unlock; |
| 513 | } |
| 514 | |
| 515 | path->reada = READA_FORWARD; |
| 516 | path->search_commit_root = 1; |
| 517 | path->skip_locking = 1; |
| 518 | |
| 519 | key.objectid = src_dev->devid; |
| 520 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 521 | key.offset = 0; |
| 522 | |
| 523 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 524 | if (ret < 0) |
| 525 | goto free_path; |
| 526 | if (ret > 0) { |
| 527 | if (path->slots[0] >= |
| 528 | btrfs_header_nritems(path->nodes[0])) { |
| 529 | ret = btrfs_next_leaf(root, path); |
| 530 | if (ret < 0) |
| 531 | goto free_path; |
| 532 | if (ret > 0) { |
| 533 | ret = 0; |
| 534 | goto free_path; |
| 535 | } |
| 536 | } else { |
| 537 | ret = 0; |
| 538 | } |
| 539 | } |
| 540 | |
| 541 | while (1) { |
| 542 | struct extent_buffer *leaf = path->nodes[0]; |
| 543 | int slot = path->slots[0]; |
| 544 | |
| 545 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 546 | |
| 547 | if (found_key.objectid != src_dev->devid) |
| 548 | break; |
| 549 | |
| 550 | if (found_key.type != BTRFS_DEV_EXTENT_KEY) |
| 551 | break; |
| 552 | |
| 553 | if (found_key.offset < key.offset) |
| 554 | break; |
| 555 | |
| 556 | dev_extent = btrfs_item_ptr(leaf, slot, struct btrfs_dev_extent); |
| 557 | |
| 558 | chunk_offset = btrfs_dev_extent_chunk_offset(leaf, dev_extent); |
| 559 | |
| 560 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 561 | if (!cache) |
| 562 | goto skip; |
| 563 | |
| 564 | spin_lock(&cache->lock); |
| 565 | cache->to_copy = 1; |
| 566 | spin_unlock(&cache->lock); |
| 567 | |
| 568 | btrfs_put_block_group(cache); |
| 569 | |
| 570 | skip: |
| 571 | ret = btrfs_next_item(root, path); |
| 572 | if (ret != 0) { |
| 573 | if (ret > 0) |
| 574 | ret = 0; |
| 575 | break; |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | free_path: |
| 580 | btrfs_free_path(path); |
| 581 | unlock: |
| 582 | mutex_unlock(&fs_info->chunk_mutex); |
| 583 | |
| 584 | return ret; |
| 585 | } |
| 586 | |
| 587 | bool btrfs_finish_block_group_to_copy(struct btrfs_device *srcdev, |
| 588 | struct btrfs_block_group *cache, |
| 589 | u64 physical) |
| 590 | { |
| 591 | struct btrfs_fs_info *fs_info = cache->fs_info; |
| 592 | struct extent_map *em; |
| 593 | struct map_lookup *map; |
| 594 | u64 chunk_offset = cache->start; |
| 595 | int num_extents, cur_extent; |
| 596 | int i; |
| 597 | |
| 598 | /* Do not use "to_copy" on non zoned filesystem for now */ |
| 599 | if (!btrfs_is_zoned(fs_info)) |
| 600 | return true; |
| 601 | |
| 602 | spin_lock(&cache->lock); |
| 603 | if (cache->removed) { |
| 604 | spin_unlock(&cache->lock); |
| 605 | return true; |
| 606 | } |
| 607 | spin_unlock(&cache->lock); |
| 608 | |
| 609 | em = btrfs_get_chunk_map(fs_info, chunk_offset, 1); |
| 610 | ASSERT(!IS_ERR(em)); |
| 611 | map = em->map_lookup; |
| 612 | |
| 613 | num_extents = cur_extent = 0; |
| 614 | for (i = 0; i < map->num_stripes; i++) { |
| 615 | /* We have more device extent to copy */ |
| 616 | if (srcdev != map->stripes[i].dev) |
| 617 | continue; |
| 618 | |
| 619 | num_extents++; |
| 620 | if (physical == map->stripes[i].physical) |
| 621 | cur_extent = i; |
| 622 | } |
| 623 | |
| 624 | free_extent_map(em); |
| 625 | |
| 626 | if (num_extents > 1 && cur_extent < num_extents - 1) { |
| 627 | /* |
| 628 | * Has more stripes on this device. Keep this block group |
| 629 | * readonly until we finish all the stripes. |
| 630 | */ |
| 631 | return false; |
| 632 | } |
| 633 | |
| 634 | /* Last stripe on this device */ |
| 635 | spin_lock(&cache->lock); |
| 636 | cache->to_copy = 0; |
| 637 | spin_unlock(&cache->lock); |
| 638 | |
| 639 | return true; |
| 640 | } |
| 641 | |
Anand Jain | 54862d6 | 2018-11-11 22:22:16 +0800 | [diff] [blame] | 642 | static int btrfs_dev_replace_start(struct btrfs_fs_info *fs_info, |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 643 | const char *tgtdev_name, u64 srcdevid, const char *srcdev_name, |
| 644 | int read_src) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 645 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 646 | struct btrfs_root *root = fs_info->dev_root; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 647 | struct btrfs_trans_handle *trans; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 648 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 649 | int ret; |
| 650 | struct btrfs_device *tgt_device = NULL; |
| 651 | struct btrfs_device *src_device = NULL; |
| 652 | |
Nikolay Borisov | a27a94c | 2018-09-03 12:46:14 +0300 | [diff] [blame] | 653 | src_device = btrfs_find_device_by_devspec(fs_info, srcdevid, |
| 654 | srcdev_name); |
| 655 | if (IS_ERR(src_device)) |
| 656 | return PTR_ERR(src_device); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 657 | |
Omar Sandoval | eede2bf | 2016-11-03 10:28:12 -0700 | [diff] [blame] | 658 | if (btrfs_pinned_by_swapfile(fs_info, src_device)) { |
| 659 | btrfs_warn_in_rcu(fs_info, |
| 660 | "cannot replace device %s (devid %llu) due to active swapfile", |
| 661 | btrfs_dev_name(src_device), src_device->devid); |
| 662 | return -ETXTBSY; |
| 663 | } |
| 664 | |
Anand Jain | 9e271ae | 2015-08-14 18:33:02 +0800 | [diff] [blame] | 665 | /* |
| 666 | * Here we commit the transaction to make sure commit_total_bytes |
| 667 | * of all the devices are updated. |
| 668 | */ |
| 669 | trans = btrfs_attach_transaction(root); |
| 670 | if (!IS_ERR(trans)) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 671 | ret = btrfs_commit_transaction(trans); |
Anand Jain | 9e271ae | 2015-08-14 18:33:02 +0800 | [diff] [blame] | 672 | if (ret) |
| 673 | return ret; |
| 674 | } else if (PTR_ERR(trans) != -ENOENT) { |
| 675 | return PTR_ERR(trans); |
| 676 | } |
| 677 | |
Nikolay Borisov | e1e0eb4 | 2019-05-14 13:54:41 +0300 | [diff] [blame] | 678 | ret = btrfs_init_dev_replace_tgtdev(fs_info, tgtdev_name, |
| 679 | src_device, &tgt_device); |
| 680 | if (ret) |
| 681 | return ret; |
| 682 | |
Naohiro Aota | 78ce9fc | 2021-02-04 19:22:11 +0900 | [diff] [blame] | 683 | ret = mark_block_group_to_copy(fs_info, src_device); |
| 684 | if (ret) |
| 685 | return ret; |
| 686 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 687 | down_write(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 688 | switch (dev_replace->replace_state) { |
| 689 | case BTRFS_IOCTL_DEV_REPLACE_STATE_NEVER_STARTED: |
| 690 | case BTRFS_IOCTL_DEV_REPLACE_STATE_FINISHED: |
| 691 | case BTRFS_IOCTL_DEV_REPLACE_STATE_CANCELED: |
| 692 | break; |
| 693 | case BTRFS_IOCTL_DEV_REPLACE_STATE_STARTED: |
| 694 | case BTRFS_IOCTL_DEV_REPLACE_STATE_SUSPENDED: |
Jeff Mahoney | 5c06147 | 2018-09-06 15:52:17 -0400 | [diff] [blame] | 695 | ASSERT(0); |
Anand Jain | b525545 | 2016-03-24 18:48:14 +0800 | [diff] [blame] | 696 | ret = BTRFS_IOCTL_DEV_REPLACE_RESULT_ALREADY_STARTED; |
Nikolay Borisov | fa19452 | 2019-05-14 13:54:42 +0300 | [diff] [blame] | 697 | up_write(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 698 | goto leave; |
| 699 | } |
| 700 | |
Anand Jain | b525545 | 2016-03-24 18:48:14 +0800 | [diff] [blame] | 701 | dev_replace->cont_reading_from_srcdev_mode = read_src; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 702 | dev_replace->srcdev = src_device; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 703 | dev_replace->tgtdev = tgt_device; |
| 704 | |
Anand Jain | fc23c24 | 2016-03-24 18:48:12 +0800 | [diff] [blame] | 705 | btrfs_info_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 706 | "dev_replace from %s (devid %llu) to %s started", |
Anand Jain | 3c958bd | 2017-11-28 10:43:10 +0800 | [diff] [blame] | 707 | btrfs_dev_name(src_device), |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 708 | src_device->devid, |
| 709 | rcu_str_deref(tgt_device->name)); |
| 710 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 711 | /* |
| 712 | * from now on, the writes to the srcdev are all duplicated to |
| 713 | * go to the tgtdev as well (refer to btrfs_map_block()). |
| 714 | */ |
| 715 | dev_replace->replace_state = BTRFS_IOCTL_DEV_REPLACE_STATE_STARTED; |
Allen Pais | a944442 | 2018-06-12 17:18:25 +0530 | [diff] [blame] | 716 | dev_replace->time_started = ktime_get_real_seconds(); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 717 | dev_replace->cursor_left = 0; |
| 718 | dev_replace->committed_cursor_left = 0; |
| 719 | dev_replace->cursor_left_last_write_of_item = 0; |
| 720 | dev_replace->cursor_right = 0; |
| 721 | dev_replace->is_valid = 1; |
| 722 | dev_replace->item_needs_writeback = 1; |
Yauhen Kharuzhy | 7ccefb9 | 2016-03-29 14:17:48 -0700 | [diff] [blame] | 723 | atomic64_set(&dev_replace->num_write_errors, 0); |
| 724 | atomic64_set(&dev_replace->num_uncorrectable_read_errors, 0); |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 725 | up_write(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 726 | |
Anand Jain | cd36da2 | 2020-09-05 01:34:26 +0800 | [diff] [blame] | 727 | ret = btrfs_sysfs_add_device(tgt_device); |
Liu Bo | 73416da | 2015-08-14 18:33:07 +0800 | [diff] [blame] | 728 | if (ret) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 729 | btrfs_err(fs_info, "kobj add dev failed %d", ret); |
Liu Bo | 73416da | 2015-08-14 18:33:07 +0800 | [diff] [blame] | 730 | |
Chris Mason | 6374e57a | 2017-06-23 09:48:21 -0700 | [diff] [blame] | 731 | btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 732 | |
Nikolay Borisov | f232ab0 | 2019-05-14 13:54:43 +0300 | [diff] [blame] | 733 | /* Commit dev_replace state and reserve 1 item for it. */ |
| 734 | trans = btrfs_start_transaction(root, 1); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 735 | if (IS_ERR(trans)) { |
| 736 | ret = PTR_ERR(trans); |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 737 | down_write(&dev_replace->rwsem); |
Jeff Mahoney | 5c06147 | 2018-09-06 15:52:17 -0400 | [diff] [blame] | 738 | dev_replace->replace_state = |
| 739 | BTRFS_IOCTL_DEV_REPLACE_STATE_NEVER_STARTED; |
| 740 | dev_replace->srcdev = NULL; |
| 741 | dev_replace->tgtdev = NULL; |
Nikolay Borisov | fa19452 | 2019-05-14 13:54:42 +0300 | [diff] [blame] | 742 | up_write(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 743 | goto leave; |
| 744 | } |
| 745 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 746 | ret = btrfs_commit_transaction(trans); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 747 | WARN_ON(ret); |
| 748 | |
| 749 | /* the disk copy procedure reuses the scrub code */ |
| 750 | ret = btrfs_scrub_dev(fs_info, src_device->devid, 0, |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 751 | btrfs_device_get_total_bytes(src_device), |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 752 | &dev_replace->scrub_progress, 0, 1); |
| 753 | |
Anand Jain | fc23c24 | 2016-03-24 18:48:12 +0800 | [diff] [blame] | 754 | ret = btrfs_dev_replace_finishing(fs_info, ret); |
David Sterba | 4cea903 | 2020-01-25 12:35:38 +0100 | [diff] [blame] | 755 | if (ret == -EINPROGRESS) |
Anand Jain | b525545 | 2016-03-24 18:48:14 +0800 | [diff] [blame] | 756 | ret = BTRFS_IOCTL_DEV_REPLACE_RESULT_SCRUB_INPROGRESS; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 757 | |
Eryu Guan | 2fc9f6b | 2014-10-13 12:42:12 +0800 | [diff] [blame] | 758 | return ret; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 759 | |
| 760 | leave: |
Nikolay Borisov | 4f5ad7b | 2018-07-20 19:37:51 +0300 | [diff] [blame] | 761 | btrfs_destroy_dev_replace_tgtdev(tgt_device); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 762 | return ret; |
| 763 | } |
| 764 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 765 | int btrfs_dev_replace_by_ioctl(struct btrfs_fs_info *fs_info, |
Anand Jain | b525545 | 2016-03-24 18:48:14 +0800 | [diff] [blame] | 766 | struct btrfs_ioctl_dev_replace_args *args) |
| 767 | { |
| 768 | int ret; |
| 769 | |
| 770 | switch (args->start.cont_reading_from_srcdev_mode) { |
| 771 | case BTRFS_IOCTL_DEV_REPLACE_CONT_READING_FROM_SRCDEV_MODE_ALWAYS: |
| 772 | case BTRFS_IOCTL_DEV_REPLACE_CONT_READING_FROM_SRCDEV_MODE_AVOID: |
| 773 | break; |
| 774 | default: |
| 775 | return -EINVAL; |
| 776 | } |
| 777 | |
| 778 | if ((args->start.srcdevid == 0 && args->start.srcdev_name[0] == '\0') || |
| 779 | args->start.tgtdev_name[0] == '\0') |
| 780 | return -EINVAL; |
| 781 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 782 | ret = btrfs_dev_replace_start(fs_info, args->start.tgtdev_name, |
Anand Jain | b525545 | 2016-03-24 18:48:14 +0800 | [diff] [blame] | 783 | args->start.srcdevid, |
| 784 | args->start.srcdev_name, |
| 785 | args->start.cont_reading_from_srcdev_mode); |
| 786 | args->result = ret; |
| 787 | /* don't warn if EINPROGRESS, someone else might be running scrub */ |
Anand Jain | 53e62fb | 2018-11-11 22:22:24 +0800 | [diff] [blame] | 788 | if (ret == BTRFS_IOCTL_DEV_REPLACE_RESULT_SCRUB_INPROGRESS || |
| 789 | ret == BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_ERROR) |
| 790 | return 0; |
Anand Jain | b525545 | 2016-03-24 18:48:14 +0800 | [diff] [blame] | 791 | |
| 792 | return ret; |
| 793 | } |
| 794 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 795 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 796 | * blocked until all in-flight bios operations are finished. |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 797 | */ |
| 798 | static void btrfs_rm_dev_replace_blocked(struct btrfs_fs_info *fs_info) |
| 799 | { |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 800 | set_bit(BTRFS_FS_STATE_DEV_REPLACING, &fs_info->fs_state); |
David Sterba | 7f8d236 | 2018-04-05 01:04:49 +0200 | [diff] [blame] | 801 | wait_event(fs_info->dev_replace.replace_wait, !percpu_counter_sum( |
| 802 | &fs_info->dev_replace.bio_counter)); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | /* |
| 806 | * we have removed target device, it is safe to allow new bios request. |
| 807 | */ |
| 808 | static void btrfs_rm_dev_replace_unblocked(struct btrfs_fs_info *fs_info) |
| 809 | { |
| 810 | clear_bit(BTRFS_FS_STATE_DEV_REPLACING, &fs_info->fs_state); |
David Sterba | 7f8d236 | 2018-04-05 01:04:49 +0200 | [diff] [blame] | 811 | wake_up(&fs_info->dev_replace.replace_wait); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 812 | } |
| 813 | |
Filipe Manana | 4c8f353 | 2020-09-23 15:30:16 +0100 | [diff] [blame] | 814 | /* |
| 815 | * When finishing the device replace, before swapping the source device with the |
| 816 | * target device we must update the chunk allocation state in the target device, |
| 817 | * as it is empty because replace works by directly copying the chunks and not |
| 818 | * through the normal chunk allocation path. |
| 819 | */ |
| 820 | static int btrfs_set_target_alloc_state(struct btrfs_device *srcdev, |
| 821 | struct btrfs_device *tgtdev) |
| 822 | { |
| 823 | struct extent_state *cached_state = NULL; |
| 824 | u64 start = 0; |
| 825 | u64 found_start; |
| 826 | u64 found_end; |
| 827 | int ret = 0; |
| 828 | |
| 829 | lockdep_assert_held(&srcdev->fs_info->chunk_mutex); |
| 830 | |
| 831 | while (!find_first_extent_bit(&srcdev->alloc_state, start, |
| 832 | &found_start, &found_end, |
| 833 | CHUNK_ALLOCATED, &cached_state)) { |
| 834 | ret = set_extent_bits(&tgtdev->alloc_state, found_start, |
| 835 | found_end, CHUNK_ALLOCATED); |
| 836 | if (ret) |
| 837 | break; |
| 838 | start = found_end + 1; |
| 839 | } |
| 840 | |
| 841 | free_extent_state(cached_state); |
| 842 | return ret; |
| 843 | } |
| 844 | |
Anand Jain | 0725c0c | 2020-09-05 01:34:36 +0800 | [diff] [blame] | 845 | static void btrfs_dev_replace_update_device_in_mapping_tree( |
| 846 | struct btrfs_fs_info *fs_info, |
| 847 | struct btrfs_device *srcdev, |
| 848 | struct btrfs_device *tgtdev) |
| 849 | { |
| 850 | struct extent_map_tree *em_tree = &fs_info->mapping_tree; |
| 851 | struct extent_map *em; |
| 852 | struct map_lookup *map; |
| 853 | u64 start = 0; |
| 854 | int i; |
| 855 | |
| 856 | write_lock(&em_tree->lock); |
| 857 | do { |
| 858 | em = lookup_extent_mapping(em_tree, start, (u64)-1); |
| 859 | if (!em) |
| 860 | break; |
| 861 | map = em->map_lookup; |
| 862 | for (i = 0; i < map->num_stripes; i++) |
| 863 | if (srcdev == map->stripes[i].dev) |
| 864 | map->stripes[i].dev = tgtdev; |
| 865 | start = em->start + em->len; |
| 866 | free_extent_map(em); |
| 867 | } while (start); |
| 868 | write_unlock(&em_tree->lock); |
| 869 | } |
| 870 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 871 | static int btrfs_dev_replace_finishing(struct btrfs_fs_info *fs_info, |
| 872 | int scrub_ret) |
| 873 | { |
| 874 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 875 | struct btrfs_device *tgt_device; |
| 876 | struct btrfs_device *src_device; |
| 877 | struct btrfs_root *root = fs_info->tree_root; |
| 878 | u8 uuid_tmp[BTRFS_UUID_SIZE]; |
| 879 | struct btrfs_trans_handle *trans; |
| 880 | int ret = 0; |
| 881 | |
| 882 | /* don't allow cancel or unmount to disturb the finishing procedure */ |
| 883 | mutex_lock(&dev_replace->lock_finishing_cancel_unmount); |
| 884 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 885 | down_read(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 886 | /* was the operation canceled, or is it finished? */ |
| 887 | if (dev_replace->replace_state != |
| 888 | BTRFS_IOCTL_DEV_REPLACE_STATE_STARTED) { |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 889 | up_read(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 890 | mutex_unlock(&dev_replace->lock_finishing_cancel_unmount); |
| 891 | return 0; |
| 892 | } |
| 893 | |
| 894 | tgt_device = dev_replace->tgtdev; |
| 895 | src_device = dev_replace->srcdev; |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 896 | up_read(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 897 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 898 | /* |
| 899 | * flush all outstanding I/O and inode extent mappings before the |
| 900 | * copy operation is declared as being finished |
| 901 | */ |
Nikolay Borisov | 9db4dc2 | 2021-01-11 12:58:11 +0200 | [diff] [blame] | 902 | ret = btrfs_start_delalloc_roots(fs_info, LONG_MAX, false); |
Miao Xie | 3edb2a6 | 2013-01-22 10:49:33 +0000 | [diff] [blame] | 903 | if (ret) { |
| 904 | mutex_unlock(&dev_replace->lock_finishing_cancel_unmount); |
| 905 | return ret; |
| 906 | } |
Chris Mason | 6374e57a | 2017-06-23 09:48:21 -0700 | [diff] [blame] | 907 | btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 908 | |
Nikolay Borisov | debd1c0 | 2019-05-17 10:44:25 +0300 | [diff] [blame] | 909 | /* |
| 910 | * We have to use this loop approach because at this point src_device |
| 911 | * has to be available for transaction commit to complete, yet new |
| 912 | * chunks shouldn't be allocated on the device. |
| 913 | */ |
| 914 | while (1) { |
| 915 | trans = btrfs_start_transaction(root, 0); |
| 916 | if (IS_ERR(trans)) { |
| 917 | mutex_unlock(&dev_replace->lock_finishing_cancel_unmount); |
| 918 | return PTR_ERR(trans); |
| 919 | } |
| 920 | ret = btrfs_commit_transaction(trans); |
| 921 | WARN_ON(ret); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 922 | |
Nikolay Borisov | debd1c0 | 2019-05-17 10:44:25 +0300 | [diff] [blame] | 923 | /* Prevent write_all_supers() during the finishing procedure */ |
| 924 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
| 925 | /* Prevent new chunks being allocated on the source device */ |
| 926 | mutex_lock(&fs_info->chunk_mutex); |
| 927 | |
| 928 | if (!list_empty(&src_device->post_commit_list)) { |
| 929 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
| 930 | mutex_unlock(&fs_info->chunk_mutex); |
| 931 | } else { |
| 932 | break; |
| 933 | } |
| 934 | } |
| 935 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 936 | down_write(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 937 | dev_replace->replace_state = |
| 938 | scrub_ret ? BTRFS_IOCTL_DEV_REPLACE_STATE_CANCELED |
| 939 | : BTRFS_IOCTL_DEV_REPLACE_STATE_FINISHED; |
| 940 | dev_replace->tgtdev = NULL; |
| 941 | dev_replace->srcdev = NULL; |
Allen Pais | a944442 | 2018-06-12 17:18:25 +0530 | [diff] [blame] | 942 | dev_replace->time_stopped = ktime_get_real_seconds(); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 943 | dev_replace->item_needs_writeback = 1; |
| 944 | |
Filipe Manana | 4c8f353 | 2020-09-23 15:30:16 +0100 | [diff] [blame] | 945 | /* |
| 946 | * Update allocation state in the new device and replace the old device |
| 947 | * with the new one in the mapping tree. |
| 948 | */ |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 949 | if (!scrub_ret) { |
Filipe Manana | 4c8f353 | 2020-09-23 15:30:16 +0100 | [diff] [blame] | 950 | scrub_ret = btrfs_set_target_alloc_state(src_device, tgt_device); |
| 951 | if (scrub_ret) |
| 952 | goto error; |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 953 | btrfs_dev_replace_update_device_in_mapping_tree(fs_info, |
| 954 | src_device, |
| 955 | tgt_device); |
| 956 | } else { |
Anand Jain | f9085ab | 2018-11-20 19:56:16 +0800 | [diff] [blame] | 957 | if (scrub_ret != -ECANCELED) |
| 958 | btrfs_err_in_rcu(fs_info, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 959 | "btrfs_scrub_dev(%s, %llu, %s) failed %d", |
Anand Jain | 3c958bd | 2017-11-28 10:43:10 +0800 | [diff] [blame] | 960 | btrfs_dev_name(src_device), |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 961 | src_device->devid, |
| 962 | rcu_str_deref(tgt_device->name), scrub_ret); |
Filipe Manana | 4c8f353 | 2020-09-23 15:30:16 +0100 | [diff] [blame] | 963 | error: |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 964 | up_write(&dev_replace->rwsem); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 965 | mutex_unlock(&fs_info->chunk_mutex); |
| 966 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Qu Wenruo | ae6529c | 2017-03-29 09:33:21 +0800 | [diff] [blame] | 967 | btrfs_rm_dev_replace_blocked(fs_info); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 968 | if (tgt_device) |
Nikolay Borisov | 4f5ad7b | 2018-07-20 19:37:51 +0300 | [diff] [blame] | 969 | btrfs_destroy_dev_replace_tgtdev(tgt_device); |
Qu Wenruo | ae6529c | 2017-03-29 09:33:21 +0800 | [diff] [blame] | 970 | btrfs_rm_dev_replace_unblocked(fs_info); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 971 | mutex_unlock(&dev_replace->lock_finishing_cancel_unmount); |
| 972 | |
Eryu Guan | 2fc9f6b | 2014-10-13 12:42:12 +0800 | [diff] [blame] | 973 | return scrub_ret; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 974 | } |
| 975 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 976 | btrfs_info_in_rcu(fs_info, |
| 977 | "dev_replace from %s (devid %llu) to %s finished", |
Anand Jain | 3c958bd | 2017-11-28 10:43:10 +0800 | [diff] [blame] | 978 | btrfs_dev_name(src_device), |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 979 | src_device->devid, |
| 980 | rcu_str_deref(tgt_device->name)); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 981 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &tgt_device->dev_state); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 982 | tgt_device->devid = src_device->devid; |
| 983 | src_device->devid = BTRFS_DEV_REPLACE_DEVID; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 984 | memcpy(uuid_tmp, tgt_device->uuid, sizeof(uuid_tmp)); |
| 985 | memcpy(tgt_device->uuid, src_device->uuid, sizeof(tgt_device->uuid)); |
| 986 | memcpy(src_device->uuid, uuid_tmp, sizeof(src_device->uuid)); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 987 | btrfs_device_set_total_bytes(tgt_device, src_device->total_bytes); |
| 988 | btrfs_device_set_disk_total_bytes(tgt_device, |
| 989 | src_device->disk_total_bytes); |
| 990 | btrfs_device_set_bytes_used(tgt_device, src_device->bytes_used); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 991 | tgt_device->commit_bytes_used = src_device->bytes_used; |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 992 | |
Nikolay Borisov | d6507cf | 2018-07-20 19:37:50 +0300 | [diff] [blame] | 993 | btrfs_assign_next_active_device(src_device, tgt_device); |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 994 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 995 | list_add(&tgt_device->dev_alloc_list, &fs_info->fs_devices->alloc_list); |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 996 | fs_info->fs_devices->rw_devices++; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 997 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 998 | up_write(&dev_replace->rwsem); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 999 | btrfs_rm_dev_replace_blocked(fs_info); |
| 1000 | |
Nikolay Borisov | 68a9db5 | 2018-07-20 19:37:48 +0300 | [diff] [blame] | 1001 | btrfs_rm_dev_replace_remove_srcdev(src_device); |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 1002 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 1003 | btrfs_rm_dev_replace_unblocked(fs_info); |
| 1004 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1005 | /* |
Misono Tomohiro | 1e7e1f9 | 2018-07-31 16:20:21 +0900 | [diff] [blame] | 1006 | * Increment dev_stats_ccnt so that btrfs_run_dev_stats() will |
| 1007 | * update on-disk dev stats value during commit transaction |
| 1008 | */ |
| 1009 | atomic_inc(&tgt_device->dev_stats_ccnt); |
| 1010 | |
| 1011 | /* |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1012 | * this is again a consistent state where no dev_replace procedure |
| 1013 | * is running, the target device is part of the filesystem, the |
| 1014 | * source device is not part of the filesystem anymore and its 1st |
| 1015 | * superblock is scratched out so that it is no longer marked to |
| 1016 | * belong to this filesystem. |
| 1017 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1018 | mutex_unlock(&fs_info->chunk_mutex); |
| 1019 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1020 | |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 1021 | /* replace the sysfs entry */ |
Anand Jain | 53f8a74 | 2020-09-05 01:34:27 +0800 | [diff] [blame] | 1022 | btrfs_sysfs_remove_device(src_device); |
Anand Jain | 668e48af | 2020-01-06 19:38:31 +0800 | [diff] [blame] | 1023 | btrfs_sysfs_update_devid(tgt_device); |
Josef Bacik | 313b085 | 2020-08-20 11:18:26 -0400 | [diff] [blame] | 1024 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &src_device->dev_state)) |
| 1025 | btrfs_scratch_superblocks(fs_info, src_device->bdev, |
| 1026 | src_device->name->str); |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 1027 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1028 | /* write back the superblocks */ |
| 1029 | trans = btrfs_start_transaction(root, 0); |
| 1030 | if (!IS_ERR(trans)) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 1031 | btrfs_commit_transaction(trans); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1032 | |
| 1033 | mutex_unlock(&dev_replace->lock_finishing_cancel_unmount); |
| 1034 | |
Josef Bacik | a466c85 | 2020-08-20 11:18:27 -0400 | [diff] [blame] | 1035 | btrfs_rm_dev_replace_free_srcdev(src_device); |
| 1036 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1037 | return 0; |
| 1038 | } |
| 1039 | |
David Sterba | 74b595f | 2017-06-14 16:24:56 +0200 | [diff] [blame] | 1040 | /* |
| 1041 | * Read progress of device replace status according to the state and last |
| 1042 | * stored position. The value format is the same as for |
| 1043 | * btrfs_dev_replace::progress_1000 |
| 1044 | */ |
| 1045 | static u64 btrfs_dev_replace_progress(struct btrfs_fs_info *fs_info) |
| 1046 | { |
| 1047 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 1048 | u64 ret = 0; |
| 1049 | |
| 1050 | switch (dev_replace->replace_state) { |
| 1051 | case BTRFS_IOCTL_DEV_REPLACE_STATE_NEVER_STARTED: |
| 1052 | case BTRFS_IOCTL_DEV_REPLACE_STATE_CANCELED: |
| 1053 | ret = 0; |
| 1054 | break; |
| 1055 | case BTRFS_IOCTL_DEV_REPLACE_STATE_FINISHED: |
| 1056 | ret = 1000; |
| 1057 | break; |
| 1058 | case BTRFS_IOCTL_DEV_REPLACE_STATE_STARTED: |
| 1059 | case BTRFS_IOCTL_DEV_REPLACE_STATE_SUSPENDED: |
| 1060 | ret = div64_u64(dev_replace->cursor_left, |
| 1061 | div_u64(btrfs_device_get_total_bytes( |
| 1062 | dev_replace->srcdev), 1000)); |
| 1063 | break; |
| 1064 | } |
| 1065 | |
| 1066 | return ret; |
| 1067 | } |
| 1068 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1069 | void btrfs_dev_replace_status(struct btrfs_fs_info *fs_info, |
| 1070 | struct btrfs_ioctl_dev_replace_args *args) |
| 1071 | { |
| 1072 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 1073 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 1074 | down_read(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1075 | /* even if !dev_replace_is_valid, the values are good enough for |
| 1076 | * the replace_status ioctl */ |
| 1077 | args->result = BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_ERROR; |
| 1078 | args->status.replace_state = dev_replace->replace_state; |
| 1079 | args->status.time_started = dev_replace->time_started; |
| 1080 | args->status.time_stopped = dev_replace->time_stopped; |
| 1081 | args->status.num_write_errors = |
| 1082 | atomic64_read(&dev_replace->num_write_errors); |
| 1083 | args->status.num_uncorrectable_read_errors = |
| 1084 | atomic64_read(&dev_replace->num_uncorrectable_read_errors); |
David Sterba | 74b595f | 2017-06-14 16:24:56 +0200 | [diff] [blame] | 1085 | args->status.progress_1000 = btrfs_dev_replace_progress(fs_info); |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 1086 | up_read(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1087 | } |
| 1088 | |
Anand Jain | 18e67c7 | 2018-02-12 23:33:31 +0800 | [diff] [blame] | 1089 | int btrfs_dev_replace_cancel(struct btrfs_fs_info *fs_info) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1090 | { |
| 1091 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 1092 | struct btrfs_device *tgt_device = NULL; |
Anand Jain | 8f2ceaa | 2018-02-13 11:53:43 +0800 | [diff] [blame] | 1093 | struct btrfs_device *src_device = NULL; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1094 | struct btrfs_trans_handle *trans; |
| 1095 | struct btrfs_root *root = fs_info->tree_root; |
Anand Jain | 18e67c7 | 2018-02-12 23:33:31 +0800 | [diff] [blame] | 1096 | int result; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1097 | int ret; |
| 1098 | |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 1099 | if (sb_rdonly(fs_info->sb)) |
Ilya Dryomov | e649e58 | 2013-10-10 20:40:21 +0300 | [diff] [blame] | 1100 | return -EROFS; |
| 1101 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1102 | mutex_lock(&dev_replace->lock_finishing_cancel_unmount); |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 1103 | down_write(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1104 | switch (dev_replace->replace_state) { |
| 1105 | case BTRFS_IOCTL_DEV_REPLACE_STATE_NEVER_STARTED: |
| 1106 | case BTRFS_IOCTL_DEV_REPLACE_STATE_FINISHED: |
| 1107 | case BTRFS_IOCTL_DEV_REPLACE_STATE_CANCELED: |
| 1108 | result = BTRFS_IOCTL_DEV_REPLACE_RESULT_NOT_STARTED; |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 1109 | up_write(&dev_replace->rwsem); |
Anand Jain | d189dd7 | 2018-11-14 13:50:26 +0800 | [diff] [blame] | 1110 | break; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1111 | case BTRFS_IOCTL_DEV_REPLACE_STATE_STARTED: |
Anand Jain | d189dd7 | 2018-11-14 13:50:26 +0800 | [diff] [blame] | 1112 | tgt_device = dev_replace->tgtdev; |
| 1113 | src_device = dev_replace->srcdev; |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 1114 | up_write(&dev_replace->rwsem); |
Anand Jain | b47dda2 | 2018-11-11 22:22:20 +0800 | [diff] [blame] | 1115 | ret = btrfs_scrub_cancel(fs_info); |
| 1116 | if (ret < 0) { |
| 1117 | result = BTRFS_IOCTL_DEV_REPLACE_RESULT_NOT_STARTED; |
| 1118 | } else { |
| 1119 | result = BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_ERROR; |
| 1120 | /* |
| 1121 | * btrfs_dev_replace_finishing() will handle the |
| 1122 | * cleanup part |
| 1123 | */ |
| 1124 | btrfs_info_in_rcu(fs_info, |
| 1125 | "dev_replace from %s (devid %llu) to %s canceled", |
| 1126 | btrfs_dev_name(src_device), src_device->devid, |
| 1127 | btrfs_dev_name(tgt_device)); |
| 1128 | } |
Anand Jain | d189dd7 | 2018-11-14 13:50:26 +0800 | [diff] [blame] | 1129 | break; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1130 | case BTRFS_IOCTL_DEV_REPLACE_STATE_SUSPENDED: |
Anand Jain | d189dd7 | 2018-11-14 13:50:26 +0800 | [diff] [blame] | 1131 | /* |
| 1132 | * Scrub doing the replace isn't running so we need to do the |
| 1133 | * cleanup step of btrfs_dev_replace_finishing() here |
| 1134 | */ |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1135 | result = BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_ERROR; |
| 1136 | tgt_device = dev_replace->tgtdev; |
Anand Jain | 8f2ceaa | 2018-02-13 11:53:43 +0800 | [diff] [blame] | 1137 | src_device = dev_replace->srcdev; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1138 | dev_replace->tgtdev = NULL; |
| 1139 | dev_replace->srcdev = NULL; |
Anand Jain | d189dd7 | 2018-11-14 13:50:26 +0800 | [diff] [blame] | 1140 | dev_replace->replace_state = |
| 1141 | BTRFS_IOCTL_DEV_REPLACE_STATE_CANCELED; |
| 1142 | dev_replace->time_stopped = ktime_get_real_seconds(); |
| 1143 | dev_replace->item_needs_writeback = 1; |
| 1144 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 1145 | up_write(&dev_replace->rwsem); |
Anand Jain | d189dd7 | 2018-11-14 13:50:26 +0800 | [diff] [blame] | 1146 | |
Anand Jain | fe97e2e | 2018-11-11 22:22:21 +0800 | [diff] [blame] | 1147 | /* Scrub for replace must not be running in suspended state */ |
| 1148 | ret = btrfs_scrub_cancel(fs_info); |
| 1149 | ASSERT(ret != -ENOTCONN); |
Anand Jain | d189dd7 | 2018-11-14 13:50:26 +0800 | [diff] [blame] | 1150 | |
| 1151 | trans = btrfs_start_transaction(root, 0); |
| 1152 | if (IS_ERR(trans)) { |
| 1153 | mutex_unlock(&dev_replace->lock_finishing_cancel_unmount); |
| 1154 | return PTR_ERR(trans); |
| 1155 | } |
| 1156 | ret = btrfs_commit_transaction(trans); |
| 1157 | WARN_ON(ret); |
| 1158 | |
| 1159 | btrfs_info_in_rcu(fs_info, |
| 1160 | "suspended dev_replace from %s (devid %llu) to %s canceled", |
| 1161 | btrfs_dev_name(src_device), src_device->devid, |
| 1162 | btrfs_dev_name(tgt_device)); |
| 1163 | |
| 1164 | if (tgt_device) |
| 1165 | btrfs_destroy_dev_replace_tgtdev(tgt_device); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1166 | break; |
Anand Jain | d189dd7 | 2018-11-14 13:50:26 +0800 | [diff] [blame] | 1167 | default: |
Dan Carpenter | 669e859 | 2019-02-11 21:32:10 +0300 | [diff] [blame] | 1168 | up_write(&dev_replace->rwsem); |
Anand Jain | d189dd7 | 2018-11-14 13:50:26 +0800 | [diff] [blame] | 1169 | result = -EINVAL; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1170 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1171 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1172 | mutex_unlock(&dev_replace->lock_finishing_cancel_unmount); |
| 1173 | return result; |
| 1174 | } |
| 1175 | |
| 1176 | void btrfs_dev_replace_suspend_for_unmount(struct btrfs_fs_info *fs_info) |
| 1177 | { |
| 1178 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 1179 | |
| 1180 | mutex_lock(&dev_replace->lock_finishing_cancel_unmount); |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 1181 | down_write(&dev_replace->rwsem); |
| 1182 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1183 | switch (dev_replace->replace_state) { |
| 1184 | case BTRFS_IOCTL_DEV_REPLACE_STATE_NEVER_STARTED: |
| 1185 | case BTRFS_IOCTL_DEV_REPLACE_STATE_FINISHED: |
| 1186 | case BTRFS_IOCTL_DEV_REPLACE_STATE_CANCELED: |
| 1187 | case BTRFS_IOCTL_DEV_REPLACE_STATE_SUSPENDED: |
| 1188 | break; |
| 1189 | case BTRFS_IOCTL_DEV_REPLACE_STATE_STARTED: |
| 1190 | dev_replace->replace_state = |
| 1191 | BTRFS_IOCTL_DEV_REPLACE_STATE_SUSPENDED; |
Allen Pais | a944442 | 2018-06-12 17:18:25 +0530 | [diff] [blame] | 1192 | dev_replace->time_stopped = ktime_get_real_seconds(); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1193 | dev_replace->item_needs_writeback = 1; |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 1194 | btrfs_info(fs_info, "suspending dev_replace for unmount"); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1195 | break; |
| 1196 | } |
| 1197 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 1198 | up_write(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1199 | mutex_unlock(&dev_replace->lock_finishing_cancel_unmount); |
| 1200 | } |
| 1201 | |
| 1202 | /* resume dev_replace procedure that was interrupted by unmount */ |
| 1203 | int btrfs_resume_dev_replace_async(struct btrfs_fs_info *fs_info) |
| 1204 | { |
| 1205 | struct task_struct *task; |
| 1206 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 1207 | |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 1208 | down_write(&dev_replace->rwsem); |
| 1209 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1210 | switch (dev_replace->replace_state) { |
| 1211 | case BTRFS_IOCTL_DEV_REPLACE_STATE_NEVER_STARTED: |
| 1212 | case BTRFS_IOCTL_DEV_REPLACE_STATE_FINISHED: |
| 1213 | case BTRFS_IOCTL_DEV_REPLACE_STATE_CANCELED: |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 1214 | up_write(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1215 | return 0; |
| 1216 | case BTRFS_IOCTL_DEV_REPLACE_STATE_STARTED: |
| 1217 | break; |
| 1218 | case BTRFS_IOCTL_DEV_REPLACE_STATE_SUSPENDED: |
| 1219 | dev_replace->replace_state = |
| 1220 | BTRFS_IOCTL_DEV_REPLACE_STATE_STARTED; |
| 1221 | break; |
| 1222 | } |
| 1223 | if (!dev_replace->tgtdev || !dev_replace->tgtdev->bdev) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 1224 | btrfs_info(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 1225 | "cannot continue dev_replace, tgtdev is missing"); |
| 1226 | btrfs_info(fs_info, |
| 1227 | "you may cancel the operation after 'mount -o degraded'"); |
Anand Jain | 0d228ec | 2018-11-11 22:22:17 +0800 | [diff] [blame] | 1228 | dev_replace->replace_state = |
| 1229 | BTRFS_IOCTL_DEV_REPLACE_STATE_SUSPENDED; |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 1230 | up_write(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1231 | return 0; |
| 1232 | } |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 1233 | up_write(&dev_replace->rwsem); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1234 | |
David Sterba | 010a47b | 2018-03-20 19:51:04 +0100 | [diff] [blame] | 1235 | /* |
| 1236 | * This could collide with a paused balance, but the exclusive op logic |
| 1237 | * should never allow both to start and pause. We don't want to allow |
| 1238 | * dev-replace to start anyway. |
| 1239 | */ |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 1240 | if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_REPLACE)) { |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 1241 | down_write(&dev_replace->rwsem); |
Anand Jain | 05c49e6 | 2018-11-11 22:22:18 +0800 | [diff] [blame] | 1242 | dev_replace->replace_state = |
| 1243 | BTRFS_IOCTL_DEV_REPLACE_STATE_SUSPENDED; |
David Sterba | cb5583d | 2018-09-07 16:11:23 +0200 | [diff] [blame] | 1244 | up_write(&dev_replace->rwsem); |
David Sterba | 010a47b | 2018-03-20 19:51:04 +0100 | [diff] [blame] | 1245 | btrfs_info(fs_info, |
| 1246 | "cannot resume dev-replace, other exclusive operation running"); |
| 1247 | return 0; |
| 1248 | } |
| 1249 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1250 | task = kthread_run(btrfs_dev_replace_kthread, fs_info, "btrfs-devrepl"); |
Rusty Russell | 8c6ffba | 2013-07-15 11:20:32 +0930 | [diff] [blame] | 1251 | return PTR_ERR_OR_ZERO(task); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1252 | } |
| 1253 | |
| 1254 | static int btrfs_dev_replace_kthread(void *data) |
| 1255 | { |
| 1256 | struct btrfs_fs_info *fs_info = data; |
| 1257 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1258 | u64 progress; |
David Sterba | 00251a5 | 2018-03-20 15:35:50 +0100 | [diff] [blame] | 1259 | int ret; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1260 | |
David Sterba | f1b8a1e | 2017-06-14 16:28:42 +0200 | [diff] [blame] | 1261 | progress = btrfs_dev_replace_progress(fs_info); |
| 1262 | progress = div_u64(progress, 10); |
| 1263 | btrfs_info_in_rcu(fs_info, |
Anand Jain | 3c958bd | 2017-11-28 10:43:10 +0800 | [diff] [blame] | 1264 | "continuing dev_replace from %s (devid %llu) to target %s @%u%%", |
| 1265 | btrfs_dev_name(dev_replace->srcdev), |
David Sterba | f1b8a1e | 2017-06-14 16:28:42 +0200 | [diff] [blame] | 1266 | dev_replace->srcdev->devid, |
Anand Jain | 3c958bd | 2017-11-28 10:43:10 +0800 | [diff] [blame] | 1267 | btrfs_dev_name(dev_replace->tgtdev), |
David Sterba | f1b8a1e | 2017-06-14 16:28:42 +0200 | [diff] [blame] | 1268 | (unsigned int)progress); |
| 1269 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1270 | ret = btrfs_scrub_dev(fs_info, dev_replace->srcdev->devid, |
| 1271 | dev_replace->committed_cursor_left, |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 1272 | btrfs_device_get_total_bytes(dev_replace->srcdev), |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1273 | &dev_replace->scrub_progress, 0, 1); |
| 1274 | ret = btrfs_dev_replace_finishing(fs_info, ret); |
Anand Jain | 49365e6 | 2018-11-20 19:56:15 +0800 | [diff] [blame] | 1275 | WARN_ON(ret && ret != -ECANCELED); |
David Sterba | 00251a5 | 2018-03-20 15:35:50 +0100 | [diff] [blame] | 1276 | |
Goldwyn Rodrigues | c3e1f96 | 2020-08-25 10:02:32 -0500 | [diff] [blame] | 1277 | btrfs_exclop_finish(fs_info); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1278 | return 0; |
| 1279 | } |
| 1280 | |
David Sterba | e1f60a6 | 2019-10-01 19:57:39 +0200 | [diff] [blame] | 1281 | int __pure btrfs_dev_replace_is_ongoing(struct btrfs_dev_replace *dev_replace) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1282 | { |
| 1283 | if (!dev_replace->is_valid) |
| 1284 | return 0; |
| 1285 | |
| 1286 | switch (dev_replace->replace_state) { |
| 1287 | case BTRFS_IOCTL_DEV_REPLACE_STATE_NEVER_STARTED: |
| 1288 | case BTRFS_IOCTL_DEV_REPLACE_STATE_FINISHED: |
| 1289 | case BTRFS_IOCTL_DEV_REPLACE_STATE_CANCELED: |
| 1290 | return 0; |
| 1291 | case BTRFS_IOCTL_DEV_REPLACE_STATE_STARTED: |
| 1292 | case BTRFS_IOCTL_DEV_REPLACE_STATE_SUSPENDED: |
| 1293 | /* |
| 1294 | * return true even if tgtdev is missing (this is |
| 1295 | * something that can happen if the dev_replace |
| 1296 | * procedure is suspended by an umount and then |
| 1297 | * the tgtdev is missing (or "btrfs dev scan") was |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 1298 | * not called and the filesystem is remounted |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1299 | * in degraded state. This does not stop the |
| 1300 | * dev_replace procedure. It needs to be canceled |
Adam Buchbinder | bb7ab3b | 2016-03-04 11:23:12 -0800 | [diff] [blame] | 1301 | * manually if the cancellation is wanted. |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1302 | */ |
| 1303 | break; |
| 1304 | } |
| 1305 | return 1; |
| 1306 | } |
| 1307 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 1308 | void btrfs_bio_counter_inc_noblocked(struct btrfs_fs_info *fs_info) |
| 1309 | { |
David Sterba | 7f8d236 | 2018-04-05 01:04:49 +0200 | [diff] [blame] | 1310 | percpu_counter_inc(&fs_info->dev_replace.bio_counter); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 1311 | } |
| 1312 | |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 1313 | void btrfs_bio_counter_sub(struct btrfs_fs_info *fs_info, s64 amount) |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 1314 | { |
David Sterba | 7f8d236 | 2018-04-05 01:04:49 +0200 | [diff] [blame] | 1315 | percpu_counter_sub(&fs_info->dev_replace.bio_counter, amount); |
| 1316 | cond_wake_up_nomb(&fs_info->dev_replace.replace_wait); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 1317 | } |
| 1318 | |
| 1319 | void btrfs_bio_counter_inc_blocked(struct btrfs_fs_info *fs_info) |
| 1320 | { |
Zhao Lei | 09dd7a0 | 2015-01-20 15:11:37 +0800 | [diff] [blame] | 1321 | while (1) { |
David Sterba | 7f8d236 | 2018-04-05 01:04:49 +0200 | [diff] [blame] | 1322 | percpu_counter_inc(&fs_info->dev_replace.bio_counter); |
Zhao Lei | 09dd7a0 | 2015-01-20 15:11:37 +0800 | [diff] [blame] | 1323 | if (likely(!test_bit(BTRFS_FS_STATE_DEV_REPLACING, |
| 1324 | &fs_info->fs_state))) |
| 1325 | break; |
| 1326 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 1327 | btrfs_bio_counter_dec(fs_info); |
David Sterba | 7f8d236 | 2018-04-05 01:04:49 +0200 | [diff] [blame] | 1328 | wait_event(fs_info->dev_replace.replace_wait, |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 1329 | !test_bit(BTRFS_FS_STATE_DEV_REPLACING, |
| 1330 | &fs_info->fs_state)); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 1331 | } |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 1332 | } |