David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2007 Oracle. All rights reserved. |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4 | */ |
David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 5 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6 | #include <linux/sched.h> |
| 7 | #include <linux/bio.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 8 | #include <linux/slab.h> |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 9 | #include <linux/buffer_head.h> |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 10 | #include <linux/blkdev.h> |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 11 | #include <linux/iocontext.h> |
Ben Hutchings | 6f88a44 | 2010-12-29 14:55:03 +0000 | [diff] [blame] | 12 | #include <linux/capability.h> |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 13 | #include <linux/ratelimit.h> |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 14 | #include <linux/kthread.h> |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 15 | #include <linux/raid/pq.h> |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 16 | #include <linux/semaphore.h> |
Andy Shevchenko | 8da4b8c | 2016-05-20 17:01:00 -0700 | [diff] [blame] | 17 | #include <linux/uuid.h> |
Anand Jain | f8e10cd | 2018-01-22 14:49:36 -0800 | [diff] [blame] | 18 | #include <linux/list_sort.h> |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 19 | #include <asm/div64.h> |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 20 | #include "ctree.h" |
| 21 | #include "extent_map.h" |
| 22 | #include "disk-io.h" |
| 23 | #include "transaction.h" |
| 24 | #include "print-tree.h" |
| 25 | #include "volumes.h" |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 26 | #include "raid56.h" |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 27 | #include "async-thread.h" |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 28 | #include "check-integrity.h" |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 29 | #include "rcu-string.h" |
Miao Xie | 3fed40c | 2012-09-13 04:51:36 -0600 | [diff] [blame] | 30 | #include "math.h" |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 31 | #include "dev-replace.h" |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 32 | #include "sysfs.h" |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 33 | |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 34 | const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = { |
| 35 | [BTRFS_RAID_RAID10] = { |
| 36 | .sub_stripes = 2, |
| 37 | .dev_stripes = 1, |
| 38 | .devs_max = 0, /* 0 == as many as possible */ |
| 39 | .devs_min = 4, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 40 | .tolerated_failures = 1, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 41 | .devs_increment = 2, |
| 42 | .ncopies = 2, |
| 43 | }, |
| 44 | [BTRFS_RAID_RAID1] = { |
| 45 | .sub_stripes = 1, |
| 46 | .dev_stripes = 1, |
| 47 | .devs_max = 2, |
| 48 | .devs_min = 2, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 49 | .tolerated_failures = 1, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 50 | .devs_increment = 2, |
| 51 | .ncopies = 2, |
| 52 | }, |
| 53 | [BTRFS_RAID_DUP] = { |
| 54 | .sub_stripes = 1, |
| 55 | .dev_stripes = 2, |
| 56 | .devs_max = 1, |
| 57 | .devs_min = 1, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 58 | .tolerated_failures = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 59 | .devs_increment = 1, |
| 60 | .ncopies = 2, |
| 61 | }, |
| 62 | [BTRFS_RAID_RAID0] = { |
| 63 | .sub_stripes = 1, |
| 64 | .dev_stripes = 1, |
| 65 | .devs_max = 0, |
| 66 | .devs_min = 2, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 67 | .tolerated_failures = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 68 | .devs_increment = 1, |
| 69 | .ncopies = 1, |
| 70 | }, |
| 71 | [BTRFS_RAID_SINGLE] = { |
| 72 | .sub_stripes = 1, |
| 73 | .dev_stripes = 1, |
| 74 | .devs_max = 1, |
| 75 | .devs_min = 1, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 76 | .tolerated_failures = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 77 | .devs_increment = 1, |
| 78 | .ncopies = 1, |
| 79 | }, |
| 80 | [BTRFS_RAID_RAID5] = { |
| 81 | .sub_stripes = 1, |
| 82 | .dev_stripes = 1, |
| 83 | .devs_max = 0, |
| 84 | .devs_min = 2, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 85 | .tolerated_failures = 1, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 86 | .devs_increment = 1, |
| 87 | .ncopies = 2, |
| 88 | }, |
| 89 | [BTRFS_RAID_RAID6] = { |
| 90 | .sub_stripes = 1, |
| 91 | .dev_stripes = 1, |
| 92 | .devs_max = 0, |
| 93 | .devs_min = 3, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 94 | .tolerated_failures = 2, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 95 | .devs_increment = 1, |
| 96 | .ncopies = 3, |
| 97 | }, |
| 98 | }; |
| 99 | |
Colin Ian King | fb75d85 | 2016-01-19 00:05:28 +0000 | [diff] [blame] | 100 | const u64 btrfs_raid_group[BTRFS_NR_RAID_TYPES] = { |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 101 | [BTRFS_RAID_RAID10] = BTRFS_BLOCK_GROUP_RAID10, |
| 102 | [BTRFS_RAID_RAID1] = BTRFS_BLOCK_GROUP_RAID1, |
| 103 | [BTRFS_RAID_DUP] = BTRFS_BLOCK_GROUP_DUP, |
| 104 | [BTRFS_RAID_RAID0] = BTRFS_BLOCK_GROUP_RAID0, |
| 105 | [BTRFS_RAID_SINGLE] = 0, |
| 106 | [BTRFS_RAID_RAID5] = BTRFS_BLOCK_GROUP_RAID5, |
| 107 | [BTRFS_RAID_RAID6] = BTRFS_BLOCK_GROUP_RAID6, |
| 108 | }; |
| 109 | |
David Sterba | 621292b | 2016-02-15 16:28:03 +0100 | [diff] [blame] | 110 | /* |
| 111 | * Table to convert BTRFS_RAID_* to the error code if minimum number of devices |
| 112 | * condition is not met. Zero means there's no corresponding |
| 113 | * BTRFS_ERROR_DEV_*_NOT_MET value. |
| 114 | */ |
| 115 | const int btrfs_raid_mindev_error[BTRFS_NR_RAID_TYPES] = { |
| 116 | [BTRFS_RAID_RAID10] = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET, |
| 117 | [BTRFS_RAID_RAID1] = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET, |
| 118 | [BTRFS_RAID_DUP] = 0, |
| 119 | [BTRFS_RAID_RAID0] = 0, |
| 120 | [BTRFS_RAID_SINGLE] = 0, |
| 121 | [BTRFS_RAID_RAID5] = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET, |
| 122 | [BTRFS_RAID_RAID6] = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET, |
| 123 | }; |
| 124 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 125 | static int init_first_rw_device(struct btrfs_trans_handle *trans, |
David Sterba | e4a4dce | 2017-02-10 19:49:01 +0100 | [diff] [blame] | 126 | struct btrfs_fs_info *fs_info); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 127 | static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 128 | static void __btrfs_reset_dev_stats(struct btrfs_device *dev); |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 129 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 130 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *device); |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 131 | static int __btrfs_map_block(struct btrfs_fs_info *fs_info, |
| 132 | enum btrfs_map_op op, |
| 133 | u64 logical, u64 *length, |
| 134 | struct btrfs_bio **bbio_ret, |
| 135 | int mirror_num, int need_raid_map); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 136 | |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 137 | /* |
| 138 | * Device locking |
| 139 | * ============== |
| 140 | * |
| 141 | * There are several mutexes that protect manipulation of devices and low-level |
| 142 | * structures like chunks but not block groups, extents or files |
| 143 | * |
| 144 | * uuid_mutex (global lock) |
| 145 | * ------------------------ |
| 146 | * protects the fs_uuids list that tracks all per-fs fs_devices, resulting from |
| 147 | * the SCAN_DEV ioctl registration or from mount either implicitly (the first |
| 148 | * device) or requested by the device= mount option |
| 149 | * |
| 150 | * the mutex can be very coarse and can cover long-running operations |
| 151 | * |
| 152 | * protects: updates to fs_devices counters like missing devices, rw devices, |
| 153 | * seeding, structure cloning, openning/closing devices at mount/umount time |
| 154 | * |
| 155 | * global::fs_devs - add, remove, updates to the global list |
| 156 | * |
| 157 | * does not protect: manipulation of the fs_devices::devices list! |
| 158 | * |
| 159 | * btrfs_device::name - renames (write side), read is RCU |
| 160 | * |
| 161 | * fs_devices::device_list_mutex (per-fs, with RCU) |
| 162 | * ------------------------------------------------ |
| 163 | * protects updates to fs_devices::devices, ie. adding and deleting |
| 164 | * |
| 165 | * simple list traversal with read-only actions can be done with RCU protection |
| 166 | * |
| 167 | * may be used to exclude some operations from running concurrently without any |
| 168 | * modifications to the list (see write_all_supers) |
| 169 | * |
| 170 | * volume_mutex |
| 171 | * ------------ |
| 172 | * coarse lock owned by a mounted filesystem; used to exclude some operations |
| 173 | * that cannot run in parallel and affect the higher-level properties of the |
| 174 | * filesystem like: device add/deleting/resize/replace, or balance |
| 175 | * |
| 176 | * balance_mutex |
| 177 | * ------------- |
| 178 | * protects balance structures (status, state) and context accessed from |
| 179 | * several places (internally, ioctl) |
| 180 | * |
| 181 | * chunk_mutex |
| 182 | * ----------- |
| 183 | * protects chunks, adding or removing during allocation, trim or when a new |
| 184 | * device is added/removed |
| 185 | * |
| 186 | * cleaner_mutex |
| 187 | * ------------- |
| 188 | * a big lock that is held by the cleaner thread and prevents running subvolume |
| 189 | * cleaning together with relocation or delayed iputs |
| 190 | * |
| 191 | * |
| 192 | * Lock nesting |
| 193 | * ============ |
| 194 | * |
| 195 | * uuid_mutex |
| 196 | * volume_mutex |
| 197 | * device_list_mutex |
| 198 | * chunk_mutex |
| 199 | * balance_mutex |
Anand Jain | 89595e8 | 2018-04-18 14:59:25 +0800 | [diff] [blame] | 200 | * |
| 201 | * |
| 202 | * Exclusive operations, BTRFS_FS_EXCL_OP |
| 203 | * ====================================== |
| 204 | * |
| 205 | * Maintains the exclusivity of the following operations that apply to the |
| 206 | * whole filesystem and cannot run in parallel. |
| 207 | * |
| 208 | * - Balance (*) |
| 209 | * - Device add |
| 210 | * - Device remove |
| 211 | * - Device replace (*) |
| 212 | * - Resize |
| 213 | * |
| 214 | * The device operations (as above) can be in one of the following states: |
| 215 | * |
| 216 | * - Running state |
| 217 | * - Paused state |
| 218 | * - Completed state |
| 219 | * |
| 220 | * Only device operations marked with (*) can go into the Paused state for the |
| 221 | * following reasons: |
| 222 | * |
| 223 | * - ioctl (only Balance can be Paused through ioctl) |
| 224 | * - filesystem remounted as read-only |
| 225 | * - filesystem unmounted and mounted as read-only |
| 226 | * - system power-cycle and filesystem mounted as read-only |
| 227 | * - filesystem or device errors leading to forced read-only |
| 228 | * |
| 229 | * BTRFS_FS_EXCL_OP flag is set and cleared using atomic operations. |
| 230 | * During the course of Paused state, the BTRFS_FS_EXCL_OP remains set. |
| 231 | * A device operation in Paused or Running state can be canceled or resumed |
| 232 | * either by ioctl (Balance only) or when remounted as read-write. |
| 233 | * BTRFS_FS_EXCL_OP flag is cleared when the device operation is canceled or |
| 234 | * completed. |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 235 | */ |
| 236 | |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 237 | DEFINE_MUTEX(uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 238 | static LIST_HEAD(fs_uuids); |
Anand Jain | c73eccf | 2015-03-10 06:38:30 +0800 | [diff] [blame] | 239 | struct list_head *btrfs_get_fs_uuids(void) |
| 240 | { |
| 241 | return &fs_uuids; |
| 242 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 243 | |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 244 | /* |
| 245 | * alloc_fs_devices - allocate struct btrfs_fs_devices |
| 246 | * @fsid: if not NULL, copy the uuid to fs_devices::fsid |
| 247 | * |
| 248 | * Return a pointer to a new struct btrfs_fs_devices on success, or ERR_PTR(). |
| 249 | * The returned struct is not linked onto any lists and can be destroyed with |
| 250 | * kfree() right away. |
| 251 | */ |
| 252 | static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid) |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 253 | { |
| 254 | struct btrfs_fs_devices *fs_devs; |
| 255 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 256 | fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 257 | if (!fs_devs) |
| 258 | return ERR_PTR(-ENOMEM); |
| 259 | |
| 260 | mutex_init(&fs_devs->device_list_mutex); |
| 261 | |
| 262 | INIT_LIST_HEAD(&fs_devs->devices); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 263 | INIT_LIST_HEAD(&fs_devs->resized_devices); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 264 | INIT_LIST_HEAD(&fs_devs->alloc_list); |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 265 | INIT_LIST_HEAD(&fs_devs->fs_list); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 266 | if (fsid) |
| 267 | memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 268 | |
| 269 | return fs_devs; |
| 270 | } |
| 271 | |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 272 | static void free_device(struct btrfs_device *device) |
| 273 | { |
| 274 | rcu_string_free(device->name); |
| 275 | bio_put(device->flush_bio); |
| 276 | kfree(device); |
| 277 | } |
| 278 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 279 | static void free_fs_devices(struct btrfs_fs_devices *fs_devices) |
| 280 | { |
| 281 | struct btrfs_device *device; |
| 282 | WARN_ON(fs_devices->opened); |
| 283 | while (!list_empty(&fs_devices->devices)) { |
| 284 | device = list_entry(fs_devices->devices.next, |
| 285 | struct btrfs_device, dev_list); |
| 286 | list_del(&device->dev_list); |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 287 | free_device(device); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 288 | } |
| 289 | kfree(fs_devices); |
| 290 | } |
| 291 | |
Lukas Czerner | b8b8ff5 | 2012-12-06 19:25:48 +0000 | [diff] [blame] | 292 | static void btrfs_kobject_uevent(struct block_device *bdev, |
| 293 | enum kobject_action action) |
| 294 | { |
| 295 | int ret; |
| 296 | |
| 297 | ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action); |
| 298 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 299 | pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n", |
Lukas Czerner | b8b8ff5 | 2012-12-06 19:25:48 +0000 | [diff] [blame] | 300 | action, |
| 301 | kobject_name(&disk_to_dev(bdev->bd_disk)->kobj), |
| 302 | &disk_to_dev(bdev->bd_disk)->kobj); |
| 303 | } |
| 304 | |
David Sterba | ffc5a37 | 2018-02-19 17:24:15 +0100 | [diff] [blame] | 305 | void __exit btrfs_cleanup_fs_uuids(void) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 306 | { |
| 307 | struct btrfs_fs_devices *fs_devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 308 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 309 | while (!list_empty(&fs_uuids)) { |
| 310 | fs_devices = list_entry(fs_uuids.next, |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 311 | struct btrfs_fs_devices, fs_list); |
| 312 | list_del(&fs_devices->fs_list); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 313 | free_fs_devices(fs_devices); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 314 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 315 | } |
| 316 | |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 317 | /* |
| 318 | * Returns a pointer to a new btrfs_device on success; ERR_PTR() on error. |
| 319 | * Returned struct is not linked onto any lists and must be destroyed using |
| 320 | * free_device. |
| 321 | */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 322 | static struct btrfs_device *__alloc_device(void) |
| 323 | { |
| 324 | struct btrfs_device *dev; |
| 325 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 326 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 327 | if (!dev) |
| 328 | return ERR_PTR(-ENOMEM); |
| 329 | |
David Sterba | e0ae999 | 2017-06-06 17:06:06 +0200 | [diff] [blame] | 330 | /* |
| 331 | * Preallocate a bio that's always going to be used for flushing device |
| 332 | * barriers and matches the device lifespan |
| 333 | */ |
| 334 | dev->flush_bio = bio_alloc_bioset(GFP_KERNEL, 0, NULL); |
| 335 | if (!dev->flush_bio) { |
| 336 | kfree(dev); |
| 337 | return ERR_PTR(-ENOMEM); |
| 338 | } |
David Sterba | e0ae999 | 2017-06-06 17:06:06 +0200 | [diff] [blame] | 339 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 340 | INIT_LIST_HEAD(&dev->dev_list); |
| 341 | INIT_LIST_HEAD(&dev->dev_alloc_list); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 342 | INIT_LIST_HEAD(&dev->resized_list); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 343 | |
| 344 | spin_lock_init(&dev->io_lock); |
| 345 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 346 | atomic_set(&dev->reada_in_flight, 0); |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 347 | atomic_set(&dev->dev_stats_ccnt, 0); |
Sebastian Andrzej Siewior | 546bed6 | 2016-01-15 14:37:15 +0100 | [diff] [blame] | 348 | btrfs_device_data_ordered_init(dev); |
Chris Mason | 9bcaaea | 2017-05-04 16:08:08 -0700 | [diff] [blame] | 349 | INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
Mel Gorman | d0164ad | 2015-11-06 16:28:21 -0800 | [diff] [blame] | 350 | INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 351 | |
| 352 | return dev; |
| 353 | } |
| 354 | |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 355 | /* |
| 356 | * Find a device specified by @devid or @uuid in the list of @fs_devices, or |
| 357 | * return NULL. |
| 358 | * |
| 359 | * If devid and uuid are both specified, the match must be exact, otherwise |
| 360 | * only devid is used. |
| 361 | */ |
| 362 | static struct btrfs_device *find_device(struct btrfs_fs_devices *fs_devices, |
| 363 | u64 devid, const u8 *uuid) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 364 | { |
| 365 | struct btrfs_device *dev; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 366 | |
Anand Jain | 636d2c9 | 2018-04-12 10:29:29 +0800 | [diff] [blame] | 367 | list_for_each_entry(dev, &fs_devices->devices, dev_list) { |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 368 | if (dev->devid == devid && |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 369 | (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 370 | return dev; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 371 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 372 | } |
| 373 | return NULL; |
| 374 | } |
| 375 | |
Chris Mason | a1b32a5 | 2008-09-05 16:09:51 -0400 | [diff] [blame] | 376 | static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 377 | { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 378 | struct btrfs_fs_devices *fs_devices; |
| 379 | |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 380 | list_for_each_entry(fs_devices, &fs_uuids, fs_list) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 381 | if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0) |
| 382 | return fs_devices; |
| 383 | } |
| 384 | return NULL; |
| 385 | } |
| 386 | |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 387 | static int |
| 388 | btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder, |
| 389 | int flush, struct block_device **bdev, |
| 390 | struct buffer_head **bh) |
| 391 | { |
| 392 | int ret; |
| 393 | |
| 394 | *bdev = blkdev_get_by_path(device_path, flags, holder); |
| 395 | |
| 396 | if (IS_ERR(*bdev)) { |
| 397 | ret = PTR_ERR(*bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 398 | goto error; |
| 399 | } |
| 400 | |
| 401 | if (flush) |
| 402 | filemap_write_and_wait((*bdev)->bd_inode->i_mapping); |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 403 | ret = set_blocksize(*bdev, BTRFS_BDEV_BLOCKSIZE); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 404 | if (ret) { |
| 405 | blkdev_put(*bdev, flags); |
| 406 | goto error; |
| 407 | } |
| 408 | invalidate_bdev(*bdev); |
| 409 | *bh = btrfs_read_dev_super(*bdev); |
Anand Jain | 92fc03f | 2015-08-14 18:32:51 +0800 | [diff] [blame] | 410 | if (IS_ERR(*bh)) { |
| 411 | ret = PTR_ERR(*bh); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 412 | blkdev_put(*bdev, flags); |
| 413 | goto error; |
| 414 | } |
| 415 | |
| 416 | return 0; |
| 417 | |
| 418 | error: |
| 419 | *bdev = NULL; |
| 420 | *bh = NULL; |
| 421 | return ret; |
| 422 | } |
| 423 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 424 | static void requeue_list(struct btrfs_pending_bios *pending_bios, |
| 425 | struct bio *head, struct bio *tail) |
| 426 | { |
| 427 | |
| 428 | struct bio *old_head; |
| 429 | |
| 430 | old_head = pending_bios->head; |
| 431 | pending_bios->head = head; |
| 432 | if (pending_bios->tail) |
| 433 | tail->bi_next = old_head; |
| 434 | else |
| 435 | pending_bios->tail = tail; |
| 436 | } |
| 437 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 438 | /* |
| 439 | * we try to collect pending bios for a device so we don't get a large |
| 440 | * number of procs sending bios down to the same device. This greatly |
| 441 | * improves the schedulers ability to collect and merge the bios. |
| 442 | * |
| 443 | * But, it also turns into a long list of bios to process and that is sure |
| 444 | * to eventually make the worker thread block. The solution here is to |
| 445 | * make some progress and then put this work struct back at the end of |
| 446 | * the list if the block device is congested. This way, multiple devices |
| 447 | * can make progress from a single worker thread. |
| 448 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 449 | static noinline void run_scheduled_bios(struct btrfs_device *device) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 450 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 451 | struct btrfs_fs_info *fs_info = device->fs_info; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 452 | struct bio *pending; |
| 453 | struct backing_dev_info *bdi; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 454 | struct btrfs_pending_bios *pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 455 | struct bio *tail; |
| 456 | struct bio *cur; |
| 457 | int again = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 458 | unsigned long num_run; |
Chris Mason | d644d8a | 2009-06-09 15:59:22 -0400 | [diff] [blame] | 459 | unsigned long batch_run = 0; |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 460 | unsigned long last_waited = 0; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 461 | int force_reg = 0; |
Miao Xie | 0e58885 | 2011-08-05 09:32:37 +0000 | [diff] [blame] | 462 | int sync_pending = 0; |
Chris Mason | 211588a | 2011-04-19 20:12:40 -0400 | [diff] [blame] | 463 | struct blk_plug plug; |
| 464 | |
| 465 | /* |
| 466 | * this function runs all the bios we've collected for |
| 467 | * a particular device. We don't want to wander off to |
| 468 | * another device without first sending all of these down. |
| 469 | * So, setup a plug here and finish it off before we return |
| 470 | */ |
| 471 | blk_start_plug(&plug); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 472 | |
Jan Kara | efa7c9f | 2017-02-02 15:56:53 +0100 | [diff] [blame] | 473 | bdi = device->bdev->bd_bdi; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 474 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 475 | loop: |
| 476 | spin_lock(&device->io_lock); |
| 477 | |
Chris Mason | a683705 | 2009-02-04 09:19:41 -0500 | [diff] [blame] | 478 | loop_lock: |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 479 | num_run = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 480 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 481 | /* take all the bios off the list at once and process them |
| 482 | * later on (without the lock held). But, remember the |
| 483 | * tail and other pointers so the bios can be properly reinserted |
| 484 | * into the list if we hit congestion |
| 485 | */ |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 486 | if (!force_reg && device->pending_sync_bios.head) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 487 | pending_bios = &device->pending_sync_bios; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 488 | force_reg = 1; |
| 489 | } else { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 490 | pending_bios = &device->pending_bios; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 491 | force_reg = 0; |
| 492 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 493 | |
| 494 | pending = pending_bios->head; |
| 495 | tail = pending_bios->tail; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 496 | WARN_ON(pending && !tail); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 497 | |
| 498 | /* |
| 499 | * if pending was null this time around, no bios need processing |
| 500 | * at all and we can stop. Otherwise it'll loop back up again |
| 501 | * and do an additional check so no bios are missed. |
| 502 | * |
| 503 | * device->running_pending is used to synchronize with the |
| 504 | * schedule_bio code. |
| 505 | */ |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 506 | if (device->pending_sync_bios.head == NULL && |
| 507 | device->pending_bios.head == NULL) { |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 508 | again = 0; |
| 509 | device->running_pending = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 510 | } else { |
| 511 | again = 1; |
| 512 | device->running_pending = 1; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 513 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 514 | |
| 515 | pending_bios->head = NULL; |
| 516 | pending_bios->tail = NULL; |
| 517 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 518 | spin_unlock(&device->io_lock); |
| 519 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 520 | while (pending) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 521 | |
| 522 | rmb(); |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 523 | /* we want to work on both lists, but do more bios on the |
| 524 | * sync list than the regular list |
| 525 | */ |
| 526 | if ((num_run > 32 && |
| 527 | pending_bios != &device->pending_sync_bios && |
| 528 | device->pending_sync_bios.head) || |
| 529 | (num_run > 64 && pending_bios == &device->pending_sync_bios && |
| 530 | device->pending_bios.head)) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 531 | spin_lock(&device->io_lock); |
| 532 | requeue_list(pending_bios, pending, tail); |
| 533 | goto loop_lock; |
| 534 | } |
| 535 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 536 | cur = pending; |
| 537 | pending = pending->bi_next; |
| 538 | cur->bi_next = NULL; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 539 | |
Jens Axboe | dac5621 | 2015-04-17 16:23:59 -0600 | [diff] [blame] | 540 | BUG_ON(atomic_read(&cur->__bi_cnt) == 0); |
Chris Mason | d644d8a | 2009-06-09 15:59:22 -0400 | [diff] [blame] | 541 | |
Chris Mason | 2ab1ba6 | 2011-08-04 14:28:36 -0400 | [diff] [blame] | 542 | /* |
| 543 | * if we're doing the sync list, record that our |
| 544 | * plug has some sync requests on it |
| 545 | * |
| 546 | * If we're doing the regular list and there are |
| 547 | * sync requests sitting around, unplug before |
| 548 | * we add more |
| 549 | */ |
| 550 | if (pending_bios == &device->pending_sync_bios) { |
| 551 | sync_pending = 1; |
| 552 | } else if (sync_pending) { |
| 553 | blk_finish_plug(&plug); |
| 554 | blk_start_plug(&plug); |
| 555 | sync_pending = 0; |
| 556 | } |
| 557 | |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 558 | btrfsic_submit_bio(cur); |
Chris Mason | 5ff7ba3 | 2010-03-15 10:21:30 -0400 | [diff] [blame] | 559 | num_run++; |
| 560 | batch_run++; |
David Sterba | 853d8ec | 2015-01-08 15:15:19 +0100 | [diff] [blame] | 561 | |
| 562 | cond_resched(); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 563 | |
| 564 | /* |
| 565 | * we made progress, there is more work to do and the bdi |
| 566 | * is now congested. Back off and let other work structs |
| 567 | * run instead |
| 568 | */ |
Chris Mason | 57fd5a5 | 2009-08-07 09:59:15 -0400 | [diff] [blame] | 569 | if (pending && bdi_write_congested(bdi) && batch_run > 8 && |
Chris Mason | 5f2cc08 | 2008-11-07 18:22:45 -0500 | [diff] [blame] | 570 | fs_info->fs_devices->open_devices > 1) { |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 571 | struct io_context *ioc; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 572 | |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 573 | ioc = current->io_context; |
| 574 | |
| 575 | /* |
| 576 | * the main goal here is that we don't want to |
| 577 | * block if we're going to be able to submit |
| 578 | * more requests without blocking. |
| 579 | * |
| 580 | * This code does two great things, it pokes into |
| 581 | * the elevator code from a filesystem _and_ |
| 582 | * it makes assumptions about how batching works. |
| 583 | */ |
| 584 | if (ioc && ioc->nr_batch_requests > 0 && |
| 585 | time_before(jiffies, ioc->last_waited + HZ/50UL) && |
| 586 | (last_waited == 0 || |
| 587 | ioc->last_waited == last_waited)) { |
| 588 | /* |
| 589 | * we want to go through our batch of |
| 590 | * requests and stop. So, we copy out |
| 591 | * the ioc->last_waited time and test |
| 592 | * against it before looping |
| 593 | */ |
| 594 | last_waited = ioc->last_waited; |
David Sterba | 853d8ec | 2015-01-08 15:15:19 +0100 | [diff] [blame] | 595 | cond_resched(); |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 596 | continue; |
| 597 | } |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 598 | spin_lock(&device->io_lock); |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 599 | requeue_list(pending_bios, pending, tail); |
Chris Mason | a683705 | 2009-02-04 09:19:41 -0500 | [diff] [blame] | 600 | device->running_pending = 1; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 601 | |
| 602 | spin_unlock(&device->io_lock); |
Qu Wenruo | a8c93d4e | 2014-02-28 10:46:08 +0800 | [diff] [blame] | 603 | btrfs_queue_work(fs_info->submit_workers, |
| 604 | &device->work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 605 | goto done; |
| 606 | } |
| 607 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 608 | |
Chris Mason | 5168408 | 2010-03-10 15:33:32 -0500 | [diff] [blame] | 609 | cond_resched(); |
| 610 | if (again) |
| 611 | goto loop; |
| 612 | |
| 613 | spin_lock(&device->io_lock); |
| 614 | if (device->pending_bios.head || device->pending_sync_bios.head) |
| 615 | goto loop_lock; |
| 616 | spin_unlock(&device->io_lock); |
| 617 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 618 | done: |
Chris Mason | 211588a | 2011-04-19 20:12:40 -0400 | [diff] [blame] | 619 | blk_finish_plug(&plug); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 620 | } |
| 621 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 622 | static void pending_bios_fn(struct btrfs_work *work) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 623 | { |
| 624 | struct btrfs_device *device; |
| 625 | |
| 626 | device = container_of(work, struct btrfs_device, work); |
| 627 | run_scheduled_bios(device); |
| 628 | } |
| 629 | |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 630 | /* |
| 631 | * Search and remove all stale (devices which are not mounted) devices. |
| 632 | * When both inputs are NULL, it will search and release all stale devices. |
| 633 | * path: Optional. When provided will it release all unmounted devices |
| 634 | * matching this path only. |
| 635 | * skip_dev: Optional. Will skip this device when searching for the stale |
| 636 | * devices. |
| 637 | */ |
| 638 | static void btrfs_free_stale_devices(const char *path, |
| 639 | struct btrfs_device *skip_dev) |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 640 | { |
Anand Jain | 38cf665 | 2018-01-18 22:00:34 +0800 | [diff] [blame] | 641 | struct btrfs_fs_devices *fs_devs, *tmp_fs_devs; |
| 642 | struct btrfs_device *dev, *tmp_dev; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 643 | |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 644 | list_for_each_entry_safe(fs_devs, tmp_fs_devs, &fs_uuids, fs_list) { |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 645 | |
| 646 | if (fs_devs->opened) |
| 647 | continue; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 648 | |
Anand Jain | 38cf665 | 2018-01-18 22:00:34 +0800 | [diff] [blame] | 649 | list_for_each_entry_safe(dev, tmp_dev, |
| 650 | &fs_devs->devices, dev_list) { |
Anand Jain | 522f1b4 | 2018-01-18 22:00:35 +0800 | [diff] [blame] | 651 | int not_found = 0; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 652 | |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 653 | if (skip_dev && skip_dev == dev) |
| 654 | continue; |
| 655 | if (path && !dev->name) |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 656 | continue; |
| 657 | |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 658 | rcu_read_lock(); |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 659 | if (path) |
Anand Jain | 522f1b4 | 2018-01-18 22:00:35 +0800 | [diff] [blame] | 660 | not_found = strcmp(rcu_str_deref(dev->name), |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 661 | path); |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 662 | rcu_read_unlock(); |
Anand Jain | 38cf665 | 2018-01-18 22:00:34 +0800 | [diff] [blame] | 663 | if (not_found) |
| 664 | continue; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 665 | |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 666 | /* delete the stale device */ |
| 667 | if (fs_devs->num_devices == 1) { |
| 668 | btrfs_sysfs_remove_fsid(fs_devs); |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 669 | list_del(&fs_devs->fs_list); |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 670 | free_fs_devices(fs_devs); |
Nikolay Borisov | fd649f1 | 2018-01-30 16:07:37 +0200 | [diff] [blame] | 671 | break; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 672 | } else { |
| 673 | fs_devs->num_devices--; |
| 674 | list_del(&dev->dev_list); |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 675 | free_device(dev); |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 676 | } |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 677 | } |
| 678 | } |
| 679 | } |
| 680 | |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 681 | static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices, |
| 682 | struct btrfs_device *device, fmode_t flags, |
| 683 | void *holder) |
| 684 | { |
| 685 | struct request_queue *q; |
| 686 | struct block_device *bdev; |
| 687 | struct buffer_head *bh; |
| 688 | struct btrfs_super_block *disk_super; |
| 689 | u64 devid; |
| 690 | int ret; |
| 691 | |
| 692 | if (device->bdev) |
| 693 | return -EINVAL; |
| 694 | if (!device->name) |
| 695 | return -EINVAL; |
| 696 | |
| 697 | ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1, |
| 698 | &bdev, &bh); |
| 699 | if (ret) |
| 700 | return ret; |
| 701 | |
| 702 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 703 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 704 | if (devid != device->devid) |
| 705 | goto error_brelse; |
| 706 | |
| 707 | if (memcmp(device->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE)) |
| 708 | goto error_brelse; |
| 709 | |
| 710 | device->generation = btrfs_super_generation(disk_super); |
| 711 | |
| 712 | if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 713 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 714 | fs_devices->seeding = 1; |
| 715 | } else { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 716 | if (bdev_read_only(bdev)) |
| 717 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
| 718 | else |
| 719 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | q = bdev_get_queue(bdev); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 723 | if (!blk_queue_nonrot(q)) |
| 724 | fs_devices->rotating = 1; |
| 725 | |
| 726 | device->bdev = bdev; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 727 | clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 728 | device->mode = flags; |
| 729 | |
| 730 | fs_devices->open_devices++; |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 731 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
| 732 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 733 | fs_devices->rw_devices++; |
Anand Jain | b1b8e38 | 2018-01-22 14:49:37 -0800 | [diff] [blame] | 734 | list_add_tail(&device->dev_alloc_list, &fs_devices->alloc_list); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 735 | } |
| 736 | brelse(bh); |
| 737 | |
| 738 | return 0; |
| 739 | |
| 740 | error_brelse: |
| 741 | brelse(bh); |
| 742 | blkdev_put(bdev, flags); |
| 743 | |
| 744 | return -EINVAL; |
| 745 | } |
| 746 | |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 747 | /* |
| 748 | * Add new device to list of registered devices |
| 749 | * |
| 750 | * Returns: |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 751 | * device pointer which was just added or updated when successful |
| 752 | * error pointer when failed |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 753 | */ |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 754 | static noinline struct btrfs_device *device_list_add(const char *path, |
Anand Jain | 3acbcbf | 2018-01-18 22:02:36 +0800 | [diff] [blame] | 755 | struct btrfs_super_block *disk_super) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 756 | { |
| 757 | struct btrfs_device *device; |
| 758 | struct btrfs_fs_devices *fs_devices; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 759 | struct rcu_string *name; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 760 | u64 found_transid = btrfs_super_generation(disk_super); |
Anand Jain | 3acbcbf | 2018-01-18 22:02:36 +0800 | [diff] [blame] | 761 | u64 devid = btrfs_stack_device_id(&disk_super->dev_item); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 762 | |
| 763 | fs_devices = find_fsid(disk_super->fsid); |
| 764 | if (!fs_devices) { |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 765 | fs_devices = alloc_fs_devices(disk_super->fsid); |
| 766 | if (IS_ERR(fs_devices)) |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 767 | return ERR_CAST(fs_devices); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 768 | |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 769 | list_add(&fs_devices->fs_list, &fs_uuids); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 770 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 771 | device = NULL; |
| 772 | } else { |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 773 | device = find_device(fs_devices, devid, |
| 774 | disk_super->dev_item.uuid); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 775 | } |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 776 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 777 | if (!device) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 778 | if (fs_devices->opened) |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 779 | return ERR_PTR(-EBUSY); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 780 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 781 | device = btrfs_alloc_device(NULL, &devid, |
| 782 | disk_super->dev_item.uuid); |
| 783 | if (IS_ERR(device)) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 784 | /* we can safely leave the fs_devices entry around */ |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 785 | return device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 786 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 787 | |
| 788 | name = rcu_string_strdup(path, GFP_NOFS); |
| 789 | if (!name) { |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 790 | free_device(device); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 791 | return ERR_PTR(-ENOMEM); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 792 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 793 | rcu_assign_pointer(device->name, name); |
Arne Jansen | 90519d6 | 2011-05-23 14:30:00 +0200 | [diff] [blame] | 794 | |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 795 | mutex_lock(&fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 796 | list_add_rcu(&device->dev_list, &fs_devices->devices); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 797 | fs_devices->num_devices++; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 798 | mutex_unlock(&fs_devices->device_list_mutex); |
| 799 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 800 | device->fs_devices = fs_devices; |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 801 | btrfs_free_stale_devices(path, device); |
Anand Jain | 327f18c | 2018-01-18 22:02:33 +0800 | [diff] [blame] | 802 | |
| 803 | if (disk_super->label[0]) |
| 804 | pr_info("BTRFS: device label %s devid %llu transid %llu %s\n", |
| 805 | disk_super->label, devid, found_transid, path); |
| 806 | else |
| 807 | pr_info("BTRFS: device fsid %pU devid %llu transid %llu %s\n", |
| 808 | disk_super->fsid, devid, found_transid, path); |
| 809 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 810 | } else if (!device->name || strcmp(device->name->str, path)) { |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 811 | /* |
| 812 | * When FS is already mounted. |
| 813 | * 1. If you are here and if the device->name is NULL that |
| 814 | * means this device was missing at time of FS mount. |
| 815 | * 2. If you are here and if the device->name is different |
| 816 | * from 'path' that means either |
| 817 | * a. The same device disappeared and reappeared with |
| 818 | * different name. or |
| 819 | * b. The missing-disk-which-was-replaced, has |
| 820 | * reappeared now. |
| 821 | * |
| 822 | * We must allow 1 and 2a above. But 2b would be a spurious |
| 823 | * and unintentional. |
| 824 | * |
| 825 | * Further in case of 1 and 2a above, the disk at 'path' |
| 826 | * would have missed some transaction when it was away and |
| 827 | * in case of 2a the stale bdev has to be updated as well. |
| 828 | * 2b must not be allowed at all time. |
| 829 | */ |
| 830 | |
| 831 | /* |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 832 | * For now, we do allow update to btrfs_fs_device through the |
| 833 | * btrfs dev scan cli after FS has been mounted. We're still |
| 834 | * tracking a problem where systems fail mount by subvolume id |
| 835 | * when we reject replacement on a mounted FS. |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 836 | */ |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 837 | if (!fs_devices->opened && found_transid < device->generation) { |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 838 | /* |
| 839 | * That is if the FS is _not_ mounted and if you |
| 840 | * are here, that means there is more than one |
| 841 | * disk with same uuid and devid.We keep the one |
| 842 | * with larger generation number or the last-in if |
| 843 | * generation are equal. |
| 844 | */ |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 845 | return ERR_PTR(-EEXIST); |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 846 | } |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 847 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 848 | name = rcu_string_strdup(path, GFP_NOFS); |
TARUISI Hiroaki | 3a0524d | 2010-02-09 06:36:45 +0000 | [diff] [blame] | 849 | if (!name) |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 850 | return ERR_PTR(-ENOMEM); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 851 | rcu_string_free(device->name); |
| 852 | rcu_assign_pointer(device->name, name); |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 853 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 854 | fs_devices->missing_devices--; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 855 | clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 856 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 857 | } |
| 858 | |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 859 | /* |
| 860 | * Unmount does not free the btrfs_device struct but would zero |
| 861 | * generation along with most of the other members. So just update |
| 862 | * it back. We need it to pick the disk with largest generation |
| 863 | * (as above). |
| 864 | */ |
| 865 | if (!fs_devices->opened) |
| 866 | device->generation = found_transid; |
| 867 | |
Anand Jain | f2788d2 | 2018-01-18 22:02:34 +0800 | [diff] [blame] | 868 | fs_devices->total_devices = btrfs_super_num_devices(disk_super); |
| 869 | |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 870 | return device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 871 | } |
| 872 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 873 | static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig) |
| 874 | { |
| 875 | struct btrfs_fs_devices *fs_devices; |
| 876 | struct btrfs_device *device; |
| 877 | struct btrfs_device *orig_dev; |
| 878 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 879 | fs_devices = alloc_fs_devices(orig->fsid); |
| 880 | if (IS_ERR(fs_devices)) |
| 881 | return fs_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 882 | |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 883 | mutex_lock(&orig->device_list_mutex); |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 884 | fs_devices->total_devices = orig->total_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 885 | |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 886 | /* We have held the volume lock, it is safe to get the devices. */ |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 887 | list_for_each_entry(orig_dev, &orig->devices, dev_list) { |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 888 | struct rcu_string *name; |
| 889 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 890 | device = btrfs_alloc_device(NULL, &orig_dev->devid, |
| 891 | orig_dev->uuid); |
| 892 | if (IS_ERR(device)) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 893 | goto error; |
| 894 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 895 | /* |
| 896 | * This is ok to do without rcu read locked because we hold the |
| 897 | * uuid mutex so nothing we touch in here is going to disappear. |
| 898 | */ |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 899 | if (orig_dev->name) { |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 900 | name = rcu_string_strdup(orig_dev->name->str, |
| 901 | GFP_KERNEL); |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 902 | if (!name) { |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 903 | free_device(device); |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 904 | goto error; |
| 905 | } |
| 906 | rcu_assign_pointer(device->name, name); |
Julia Lawall | fd2696f | 2009-09-29 13:51:04 -0400 | [diff] [blame] | 907 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 908 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 909 | list_add(&device->dev_list, &fs_devices->devices); |
| 910 | device->fs_devices = fs_devices; |
| 911 | fs_devices->num_devices++; |
| 912 | } |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 913 | mutex_unlock(&orig->device_list_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 914 | return fs_devices; |
| 915 | error: |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 916 | mutex_unlock(&orig->device_list_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 917 | free_fs_devices(fs_devices); |
| 918 | return ERR_PTR(-ENOMEM); |
| 919 | } |
| 920 | |
Anand Jain | 9b99b11 | 2018-02-27 12:41:59 +0800 | [diff] [blame] | 921 | /* |
| 922 | * After we have read the system tree and know devids belonging to |
| 923 | * this filesystem, remove the device which does not belong there. |
| 924 | */ |
| 925 | void btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices, int step) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 926 | { |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 927 | struct btrfs_device *device, *next; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 928 | struct btrfs_device *latest_dev = NULL; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 929 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 930 | mutex_lock(&uuid_mutex); |
| 931 | again: |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 932 | /* This is the initialized path, it is safe to release the devices. */ |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 933 | list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) { |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 934 | if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 935 | &device->dev_state)) { |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 936 | if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
| 937 | &device->dev_state) && |
| 938 | (!latest_dev || |
| 939 | device->generation > latest_dev->generation)) { |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 940 | latest_dev = device; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 941 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 942 | continue; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 943 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 944 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 945 | if (device->devid == BTRFS_DEV_REPLACE_DEVID) { |
| 946 | /* |
| 947 | * In the first step, keep the device which has |
| 948 | * the correct fsid and the devid that is used |
| 949 | * for the dev_replace procedure. |
| 950 | * In the second step, the dev_replace state is |
| 951 | * read from the device tree and it is known |
| 952 | * whether the procedure is really active or |
| 953 | * not, which means whether this device is |
| 954 | * used or whether it should be removed. |
| 955 | */ |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 956 | if (step == 0 || test_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
| 957 | &device->dev_state)) { |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 958 | continue; |
| 959 | } |
| 960 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 961 | if (device->bdev) { |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 962 | blkdev_put(device->bdev, device->mode); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 963 | device->bdev = NULL; |
| 964 | fs_devices->open_devices--; |
| 965 | } |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 966 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 967 | list_del_init(&device->dev_alloc_list); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 968 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 969 | if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
| 970 | &device->dev_state)) |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 971 | fs_devices->rw_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 972 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 973 | list_del_init(&device->dev_list); |
| 974 | fs_devices->num_devices--; |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 975 | free_device(device); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 976 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 977 | |
| 978 | if (fs_devices->seed) { |
| 979 | fs_devices = fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 980 | goto again; |
| 981 | } |
| 982 | |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 983 | fs_devices->latest_bdev = latest_dev->bdev; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 984 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 985 | mutex_unlock(&uuid_mutex); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 986 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 987 | |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 988 | static void free_device_rcu(struct rcu_head *head) |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 989 | { |
| 990 | struct btrfs_device *device; |
| 991 | |
| 992 | device = container_of(head, struct btrfs_device, rcu); |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 993 | free_device(device); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 994 | } |
| 995 | |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 996 | static void btrfs_close_bdev(struct btrfs_device *device) |
| 997 | { |
David Sterba | 08ffcae | 2017-06-19 16:55:35 +0200 | [diff] [blame] | 998 | if (!device->bdev) |
| 999 | return; |
| 1000 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1001 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 1002 | sync_blockdev(device->bdev); |
| 1003 | invalidate_bdev(device->bdev); |
| 1004 | } |
| 1005 | |
David Sterba | 08ffcae | 2017-06-19 16:55:35 +0200 | [diff] [blame] | 1006 | blkdev_put(device->bdev, device->mode); |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 1007 | } |
| 1008 | |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1009 | static void btrfs_prepare_close_one_device(struct btrfs_device *device) |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1010 | { |
| 1011 | struct btrfs_fs_devices *fs_devices = device->fs_devices; |
| 1012 | struct btrfs_device *new_device; |
| 1013 | struct rcu_string *name; |
| 1014 | |
| 1015 | if (device->bdev) |
| 1016 | fs_devices->open_devices--; |
| 1017 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1018 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1019 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
| 1020 | list_del_init(&device->dev_alloc_list); |
| 1021 | fs_devices->rw_devices--; |
| 1022 | } |
| 1023 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 1024 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1025 | fs_devices->missing_devices--; |
| 1026 | |
| 1027 | new_device = btrfs_alloc_device(NULL, &device->devid, |
| 1028 | device->uuid); |
| 1029 | BUG_ON(IS_ERR(new_device)); /* -ENOMEM */ |
| 1030 | |
| 1031 | /* Safe because we are under uuid_mutex */ |
| 1032 | if (device->name) { |
| 1033 | name = rcu_string_strdup(device->name->str, GFP_NOFS); |
| 1034 | BUG_ON(!name); /* -ENOMEM */ |
| 1035 | rcu_assign_pointer(new_device->name, name); |
| 1036 | } |
| 1037 | |
| 1038 | list_replace_rcu(&device->dev_list, &new_device->dev_list); |
| 1039 | new_device->fs_devices = device->fs_devices; |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1040 | } |
| 1041 | |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 1042 | static int close_fs_devices(struct btrfs_fs_devices *fs_devices) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1043 | { |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 1044 | struct btrfs_device *device, *tmp; |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1045 | struct list_head pending_put; |
| 1046 | |
| 1047 | INIT_LIST_HEAD(&pending_put); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1048 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1049 | if (--fs_devices->opened > 0) |
| 1050 | return 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1051 | |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 1052 | mutex_lock(&fs_devices->device_list_mutex); |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 1053 | list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) { |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1054 | btrfs_prepare_close_one_device(device); |
| 1055 | list_add(&device->dev_list, &pending_put); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1056 | } |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 1057 | mutex_unlock(&fs_devices->device_list_mutex); |
| 1058 | |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1059 | /* |
| 1060 | * btrfs_show_devname() is using the device_list_mutex, |
| 1061 | * sometimes call to blkdev_put() leads vfs calling |
| 1062 | * into this func. So do put outside of device_list_mutex, |
| 1063 | * as of now. |
| 1064 | */ |
| 1065 | while (!list_empty(&pending_put)) { |
| 1066 | device = list_first_entry(&pending_put, |
| 1067 | struct btrfs_device, dev_list); |
| 1068 | list_del(&device->dev_list); |
| 1069 | btrfs_close_bdev(device); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 1070 | call_rcu(&device->rcu, free_device_rcu); |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1071 | } |
| 1072 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1073 | WARN_ON(fs_devices->open_devices); |
| 1074 | WARN_ON(fs_devices->rw_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1075 | fs_devices->opened = 0; |
| 1076 | fs_devices->seeding = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1077 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1078 | return 0; |
| 1079 | } |
| 1080 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1081 | int btrfs_close_devices(struct btrfs_fs_devices *fs_devices) |
| 1082 | { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1083 | struct btrfs_fs_devices *seed_devices = NULL; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1084 | int ret; |
| 1085 | |
| 1086 | mutex_lock(&uuid_mutex); |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 1087 | ret = close_fs_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1088 | if (!fs_devices->opened) { |
| 1089 | seed_devices = fs_devices->seed; |
| 1090 | fs_devices->seed = NULL; |
| 1091 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1092 | mutex_unlock(&uuid_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1093 | |
| 1094 | while (seed_devices) { |
| 1095 | fs_devices = seed_devices; |
| 1096 | seed_devices = fs_devices->seed; |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 1097 | close_fs_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1098 | free_fs_devices(fs_devices); |
| 1099 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1100 | return ret; |
| 1101 | } |
| 1102 | |
Anand Jain | 897fb57 | 2018-04-12 10:29:28 +0800 | [diff] [blame] | 1103 | static int open_fs_devices(struct btrfs_fs_devices *fs_devices, |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1104 | fmode_t flags, void *holder) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1105 | { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1106 | struct btrfs_device *device; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 1107 | struct btrfs_device *latest_dev = NULL; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1108 | int ret = 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1109 | |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1110 | flags |= FMODE_EXCL; |
| 1111 | |
Anand Jain | f117e29 | 2018-04-12 10:29:26 +0800 | [diff] [blame] | 1112 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
Eric Sandeen | f63e0cc | 2013-04-04 20:45:08 +0000 | [diff] [blame] | 1113 | /* Just open everything we can; ignore failures here */ |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 1114 | if (btrfs_open_one_device(fs_devices, device, flags, holder)) |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1115 | continue; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1116 | |
Anand Jain | 9f050db | 2017-11-09 23:45:25 +0800 | [diff] [blame] | 1117 | if (!latest_dev || |
| 1118 | device->generation > latest_dev->generation) |
| 1119 | latest_dev = device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1120 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1121 | if (fs_devices->open_devices == 0) { |
Ilya Dryomov | 20bcd64 | 2011-10-20 00:06:20 +0300 | [diff] [blame] | 1122 | ret = -EINVAL; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1123 | goto out; |
| 1124 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1125 | fs_devices->opened = 1; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 1126 | fs_devices->latest_bdev = latest_dev->bdev; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1127 | fs_devices->total_rw_bytes = 0; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1128 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1129 | return ret; |
| 1130 | } |
| 1131 | |
Anand Jain | f8e10cd | 2018-01-22 14:49:36 -0800 | [diff] [blame] | 1132 | static int devid_cmp(void *priv, struct list_head *a, struct list_head *b) |
| 1133 | { |
| 1134 | struct btrfs_device *dev1, *dev2; |
| 1135 | |
| 1136 | dev1 = list_entry(a, struct btrfs_device, dev_list); |
| 1137 | dev2 = list_entry(b, struct btrfs_device, dev_list); |
| 1138 | |
| 1139 | if (dev1->devid < dev2->devid) |
| 1140 | return -1; |
| 1141 | else if (dev1->devid > dev2->devid) |
| 1142 | return 1; |
| 1143 | return 0; |
| 1144 | } |
| 1145 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1146 | int btrfs_open_devices(struct btrfs_fs_devices *fs_devices, |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 1147 | fmode_t flags, void *holder) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1148 | { |
| 1149 | int ret; |
| 1150 | |
| 1151 | mutex_lock(&uuid_mutex); |
| 1152 | if (fs_devices->opened) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1153 | fs_devices->opened++; |
| 1154 | ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1155 | } else { |
Anand Jain | f8e10cd | 2018-01-22 14:49:36 -0800 | [diff] [blame] | 1156 | list_sort(NULL, &fs_devices->devices, devid_cmp); |
Anand Jain | 897fb57 | 2018-04-12 10:29:28 +0800 | [diff] [blame] | 1157 | ret = open_fs_devices(fs_devices, flags, holder); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1158 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1159 | mutex_unlock(&uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1160 | return ret; |
| 1161 | } |
| 1162 | |
Omar Sandoval | c9162bd | 2017-08-22 23:46:04 -0700 | [diff] [blame] | 1163 | static void btrfs_release_disk_super(struct page *page) |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1164 | { |
| 1165 | kunmap(page); |
| 1166 | put_page(page); |
| 1167 | } |
| 1168 | |
Omar Sandoval | c9162bd | 2017-08-22 23:46:04 -0700 | [diff] [blame] | 1169 | static int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr, |
| 1170 | struct page **page, |
| 1171 | struct btrfs_super_block **disk_super) |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1172 | { |
| 1173 | void *p; |
| 1174 | pgoff_t index; |
| 1175 | |
| 1176 | /* make sure our super fits in the device */ |
| 1177 | if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode)) |
| 1178 | return 1; |
| 1179 | |
| 1180 | /* make sure our super fits in the page */ |
| 1181 | if (sizeof(**disk_super) > PAGE_SIZE) |
| 1182 | return 1; |
| 1183 | |
| 1184 | /* make sure our super doesn't straddle pages on disk */ |
| 1185 | index = bytenr >> PAGE_SHIFT; |
| 1186 | if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index) |
| 1187 | return 1; |
| 1188 | |
| 1189 | /* pull in the page with our super */ |
| 1190 | *page = read_cache_page_gfp(bdev->bd_inode->i_mapping, |
| 1191 | index, GFP_KERNEL); |
| 1192 | |
| 1193 | if (IS_ERR_OR_NULL(*page)) |
| 1194 | return 1; |
| 1195 | |
| 1196 | p = kmap(*page); |
| 1197 | |
| 1198 | /* align our pointer to the offset of the super block */ |
| 1199 | *disk_super = p + (bytenr & ~PAGE_MASK); |
| 1200 | |
| 1201 | if (btrfs_super_bytenr(*disk_super) != bytenr || |
| 1202 | btrfs_super_magic(*disk_super) != BTRFS_MAGIC) { |
| 1203 | btrfs_release_disk_super(*page); |
| 1204 | return 1; |
| 1205 | } |
| 1206 | |
| 1207 | if ((*disk_super)->label[0] && |
| 1208 | (*disk_super)->label[BTRFS_LABEL_SIZE - 1]) |
| 1209 | (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0'; |
| 1210 | |
| 1211 | return 0; |
| 1212 | } |
| 1213 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1214 | /* |
| 1215 | * Look for a btrfs signature on a device. This may be called out of the mount path |
| 1216 | * and we are not allowed to call set_blocksize during the scan. The superblock |
| 1217 | * is read via pagecache |
| 1218 | */ |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 1219 | int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder, |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1220 | struct btrfs_fs_devices **fs_devices_ret) |
| 1221 | { |
| 1222 | struct btrfs_super_block *disk_super; |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 1223 | struct btrfs_device *device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1224 | struct block_device *bdev; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1225 | struct page *page; |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 1226 | int ret = 0; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1227 | u64 bytenr; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1228 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1229 | /* |
| 1230 | * we would like to check all the supers, but that would make |
| 1231 | * a btrfs mount succeed after a mkfs from a different FS. |
| 1232 | * So, we need to add a special mount option to scan for |
| 1233 | * later supers, using BTRFS_SUPER_MIRROR_MAX instead |
| 1234 | */ |
| 1235 | bytenr = btrfs_sb_offset(0); |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1236 | flags |= FMODE_EXCL; |
Al Viro | 10f6327 | 2011-11-17 15:05:22 -0500 | [diff] [blame] | 1237 | mutex_lock(&uuid_mutex); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1238 | |
| 1239 | bdev = blkdev_get_by_path(path, flags, holder); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1240 | if (IS_ERR(bdev)) { |
| 1241 | ret = PTR_ERR(bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1242 | goto error; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1243 | } |
| 1244 | |
Anand Jain | 05a5c55 | 2017-12-15 15:40:16 +0800 | [diff] [blame] | 1245 | if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super)) { |
| 1246 | ret = -EINVAL; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1247 | goto error_bdev_put; |
Anand Jain | 05a5c55 | 2017-12-15 15:40:16 +0800 | [diff] [blame] | 1248 | } |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1249 | |
Anand Jain | 3acbcbf | 2018-01-18 22:02:36 +0800 | [diff] [blame] | 1250 | device = device_list_add(path, disk_super); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 1251 | if (IS_ERR(device)) |
| 1252 | ret = PTR_ERR(device); |
| 1253 | else |
| 1254 | *fs_devices_ret = device->fs_devices; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1255 | |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1256 | btrfs_release_disk_super(page); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1257 | |
| 1258 | error_bdev_put: |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1259 | blkdev_put(bdev, flags); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1260 | error: |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1261 | mutex_unlock(&uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1262 | return ret; |
| 1263 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1264 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1265 | /* helper to account the used device space in the range */ |
| 1266 | int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start, |
| 1267 | u64 end, u64 *length) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1268 | { |
| 1269 | struct btrfs_key key; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 1270 | struct btrfs_root *root = device->fs_info->dev_root; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1271 | struct btrfs_dev_extent *dev_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1272 | struct btrfs_path *path; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1273 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1274 | int ret; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1275 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1276 | struct extent_buffer *l; |
| 1277 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1278 | *length = 0; |
| 1279 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1280 | if (start >= device->total_bytes || |
| 1281 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1282 | return 0; |
| 1283 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1284 | path = btrfs_alloc_path(); |
| 1285 | if (!path) |
| 1286 | return -ENOMEM; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1287 | path->reada = READA_FORWARD; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1288 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1289 | key.objectid = device->devid; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1290 | key.offset = start; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1291 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1292 | |
| 1293 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1294 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1295 | goto out; |
Yan Zheng | 1fcbac5 | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 1296 | if (ret > 0) { |
| 1297 | ret = btrfs_previous_item(root, path, key.objectid, key.type); |
| 1298 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1299 | goto out; |
Yan Zheng | 1fcbac5 | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 1300 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1301 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1302 | while (1) { |
| 1303 | l = path->nodes[0]; |
| 1304 | slot = path->slots[0]; |
| 1305 | if (slot >= btrfs_header_nritems(l)) { |
| 1306 | ret = btrfs_next_leaf(root, path); |
| 1307 | if (ret == 0) |
| 1308 | continue; |
| 1309 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1310 | goto out; |
| 1311 | |
| 1312 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1313 | } |
| 1314 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1315 | |
| 1316 | if (key.objectid < device->devid) |
| 1317 | goto next; |
| 1318 | |
| 1319 | if (key.objectid > device->devid) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1320 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1321 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1322 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1323 | goto next; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1324 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1325 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1326 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1327 | dev_extent); |
| 1328 | if (key.offset <= start && extent_end > end) { |
| 1329 | *length = end - start + 1; |
| 1330 | break; |
| 1331 | } else if (key.offset <= start && extent_end > start) |
| 1332 | *length += extent_end - start; |
| 1333 | else if (key.offset > start && extent_end <= end) |
| 1334 | *length += extent_end - key.offset; |
| 1335 | else if (key.offset > start && key.offset <= end) { |
| 1336 | *length += end - key.offset + 1; |
| 1337 | break; |
| 1338 | } else if (key.offset > end) |
| 1339 | break; |
| 1340 | |
| 1341 | next: |
| 1342 | path->slots[0]++; |
| 1343 | } |
| 1344 | ret = 0; |
| 1345 | out: |
| 1346 | btrfs_free_path(path); |
| 1347 | return ret; |
| 1348 | } |
| 1349 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1350 | static int contains_pending_extent(struct btrfs_transaction *transaction, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1351 | struct btrfs_device *device, |
| 1352 | u64 *start, u64 len) |
| 1353 | { |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 1354 | struct btrfs_fs_info *fs_info = device->fs_info; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1355 | struct extent_map *em; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1356 | struct list_head *search_list = &fs_info->pinned_chunks; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1357 | int ret = 0; |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1358 | u64 physical_start = *start; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1359 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1360 | if (transaction) |
| 1361 | search_list = &transaction->pending_chunks; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 1362 | again: |
| 1363 | list_for_each_entry(em, search_list, list) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1364 | struct map_lookup *map; |
| 1365 | int i; |
| 1366 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 1367 | map = em->map_lookup; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1368 | for (i = 0; i < map->num_stripes; i++) { |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1369 | u64 end; |
| 1370 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1371 | if (map->stripes[i].dev != device) |
| 1372 | continue; |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1373 | if (map->stripes[i].physical >= physical_start + len || |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1374 | map->stripes[i].physical + em->orig_block_len <= |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1375 | physical_start) |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1376 | continue; |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1377 | /* |
| 1378 | * Make sure that while processing the pinned list we do |
| 1379 | * not override our *start with a lower value, because |
| 1380 | * we can have pinned chunks that fall within this |
| 1381 | * device hole and that have lower physical addresses |
| 1382 | * than the pending chunks we processed before. If we |
| 1383 | * do not take this special care we can end up getting |
| 1384 | * 2 pending chunks that start at the same physical |
| 1385 | * device offsets because the end offset of a pinned |
| 1386 | * chunk can be equal to the start offset of some |
| 1387 | * pending chunk. |
| 1388 | */ |
| 1389 | end = map->stripes[i].physical + em->orig_block_len; |
| 1390 | if (end > *start) { |
| 1391 | *start = end; |
| 1392 | ret = 1; |
| 1393 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1394 | } |
| 1395 | } |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1396 | if (search_list != &fs_info->pinned_chunks) { |
| 1397 | search_list = &fs_info->pinned_chunks; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 1398 | goto again; |
| 1399 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1400 | |
| 1401 | return ret; |
| 1402 | } |
| 1403 | |
| 1404 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1405 | /* |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1406 | * find_free_dev_extent_start - find free space in the specified device |
| 1407 | * @device: the device which we search the free space in |
| 1408 | * @num_bytes: the size of the free space that we need |
| 1409 | * @search_start: the position from which to begin the search |
| 1410 | * @start: store the start of the free space. |
| 1411 | * @len: the size of the free space. that we find, or the size |
| 1412 | * of the max free space if we don't find suitable free space |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1413 | * |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1414 | * this uses a pretty simple search, the expectation is that it is |
| 1415 | * called very infrequently and that a given device has a small number |
| 1416 | * of extents |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1417 | * |
| 1418 | * @start is used to store the start of the free space if we find. But if we |
| 1419 | * don't find suitable free space, it will be used to store the start position |
| 1420 | * of the max free space. |
| 1421 | * |
| 1422 | * @len is used to store the size of the free space that we find. |
| 1423 | * But if we don't find suitable free space, it is used to store the size of |
| 1424 | * the max free space. |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1425 | */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1426 | int find_free_dev_extent_start(struct btrfs_transaction *transaction, |
| 1427 | struct btrfs_device *device, u64 num_bytes, |
| 1428 | u64 search_start, u64 *start, u64 *len) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1429 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1430 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1431 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1432 | struct btrfs_key key; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1433 | struct btrfs_dev_extent *dev_extent; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1434 | struct btrfs_path *path; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1435 | u64 hole_size; |
| 1436 | u64 max_hole_start; |
| 1437 | u64 max_hole_size; |
| 1438 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1439 | u64 search_end = device->total_bytes; |
| 1440 | int ret; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1441 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1442 | struct extent_buffer *l; |
Filipe Manana | 8cdc7c5 | 2016-01-06 22:42:35 +0000 | [diff] [blame] | 1443 | |
| 1444 | /* |
| 1445 | * We don't want to overwrite the superblock on the drive nor any area |
| 1446 | * used by the boot loader (grub for example), so we make sure to start |
| 1447 | * at an offset of at least 1MB. |
| 1448 | */ |
David Sterba | 0d0c71b | 2017-06-15 01:30:06 +0200 | [diff] [blame] | 1449 | search_start = max_t(u64, search_start, SZ_1M); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1450 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1451 | path = btrfs_alloc_path(); |
| 1452 | if (!path) |
| 1453 | return -ENOMEM; |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1454 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1455 | max_hole_start = search_start; |
| 1456 | max_hole_size = 0; |
| 1457 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1458 | again: |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1459 | if (search_start >= search_end || |
| 1460 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1461 | ret = -ENOSPC; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1462 | goto out; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1463 | } |
| 1464 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1465 | path->reada = READA_FORWARD; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1466 | path->search_commit_root = 1; |
| 1467 | path->skip_locking = 1; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1468 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1469 | key.objectid = device->devid; |
| 1470 | key.offset = search_start; |
| 1471 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1472 | |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 1473 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1474 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1475 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1476 | if (ret > 0) { |
| 1477 | ret = btrfs_previous_item(root, path, key.objectid, key.type); |
| 1478 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1479 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1480 | } |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1481 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1482 | while (1) { |
| 1483 | l = path->nodes[0]; |
| 1484 | slot = path->slots[0]; |
| 1485 | if (slot >= btrfs_header_nritems(l)) { |
| 1486 | ret = btrfs_next_leaf(root, path); |
| 1487 | if (ret == 0) |
| 1488 | continue; |
| 1489 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1490 | goto out; |
| 1491 | |
| 1492 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1493 | } |
| 1494 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1495 | |
| 1496 | if (key.objectid < device->devid) |
| 1497 | goto next; |
| 1498 | |
| 1499 | if (key.objectid > device->devid) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1500 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1501 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1502 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1503 | goto next; |
| 1504 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1505 | if (key.offset > search_start) { |
| 1506 | hole_size = key.offset - search_start; |
| 1507 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1508 | /* |
| 1509 | * Have to check before we set max_hole_start, otherwise |
| 1510 | * we could end up sending back this offset anyway. |
| 1511 | */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1512 | if (contains_pending_extent(transaction, device, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1513 | &search_start, |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1514 | hole_size)) { |
| 1515 | if (key.offset >= search_start) { |
| 1516 | hole_size = key.offset - search_start; |
| 1517 | } else { |
| 1518 | WARN_ON_ONCE(1); |
| 1519 | hole_size = 0; |
| 1520 | } |
| 1521 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1522 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1523 | if (hole_size > max_hole_size) { |
| 1524 | max_hole_start = search_start; |
| 1525 | max_hole_size = hole_size; |
| 1526 | } |
| 1527 | |
| 1528 | /* |
| 1529 | * If this free space is greater than which we need, |
| 1530 | * it must be the max free space that we have found |
| 1531 | * until now, so max_hole_start must point to the start |
| 1532 | * of this free space and the length of this free space |
| 1533 | * is stored in max_hole_size. Thus, we return |
| 1534 | * max_hole_start and max_hole_size and go back to the |
| 1535 | * caller. |
| 1536 | */ |
| 1537 | if (hole_size >= num_bytes) { |
| 1538 | ret = 0; |
| 1539 | goto out; |
| 1540 | } |
| 1541 | } |
| 1542 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1543 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1544 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1545 | dev_extent); |
| 1546 | if (extent_end > search_start) |
| 1547 | search_start = extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1548 | next: |
| 1549 | path->slots[0]++; |
| 1550 | cond_resched(); |
| 1551 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1552 | |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1553 | /* |
| 1554 | * At this point, search_start should be the end of |
| 1555 | * allocated dev extents, and when shrinking the device, |
| 1556 | * search_end may be smaller than search_start. |
| 1557 | */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1558 | if (search_end > search_start) { |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1559 | hole_size = search_end - search_start; |
| 1560 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1561 | if (contains_pending_extent(transaction, device, &search_start, |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1562 | hole_size)) { |
| 1563 | btrfs_release_path(path); |
| 1564 | goto again; |
| 1565 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1566 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1567 | if (hole_size > max_hole_size) { |
| 1568 | max_hole_start = search_start; |
| 1569 | max_hole_size = hole_size; |
| 1570 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1571 | } |
| 1572 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1573 | /* See above. */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1574 | if (max_hole_size < num_bytes) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1575 | ret = -ENOSPC; |
| 1576 | else |
| 1577 | ret = 0; |
| 1578 | |
| 1579 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1580 | btrfs_free_path(path); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1581 | *start = max_hole_start; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 1582 | if (len) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1583 | *len = max_hole_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1584 | return ret; |
| 1585 | } |
| 1586 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1587 | int find_free_dev_extent(struct btrfs_trans_handle *trans, |
| 1588 | struct btrfs_device *device, u64 num_bytes, |
| 1589 | u64 *start, u64 *len) |
| 1590 | { |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1591 | /* FIXME use last free of some kind */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1592 | return find_free_dev_extent_start(trans->transaction, device, |
Filipe Manana | 8cdc7c5 | 2016-01-06 22:42:35 +0000 | [diff] [blame] | 1593 | num_bytes, 0, start, len); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1594 | } |
| 1595 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1596 | static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1597 | struct btrfs_device *device, |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1598 | u64 start, u64 *dev_extent_len) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1599 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1600 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1601 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1602 | int ret; |
| 1603 | struct btrfs_path *path; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1604 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1605 | struct btrfs_key found_key; |
| 1606 | struct extent_buffer *leaf = NULL; |
| 1607 | struct btrfs_dev_extent *extent = NULL; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1608 | |
| 1609 | path = btrfs_alloc_path(); |
| 1610 | if (!path) |
| 1611 | return -ENOMEM; |
| 1612 | |
| 1613 | key.objectid = device->devid; |
| 1614 | key.offset = start; |
| 1615 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1616 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1617 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1618 | if (ret > 0) { |
| 1619 | ret = btrfs_previous_item(root, path, key.objectid, |
| 1620 | BTRFS_DEV_EXTENT_KEY); |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1621 | if (ret) |
| 1622 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1623 | leaf = path->nodes[0]; |
| 1624 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 1625 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1626 | struct btrfs_dev_extent); |
| 1627 | BUG_ON(found_key.offset > start || found_key.offset + |
| 1628 | btrfs_dev_extent_length(leaf, extent) < start); |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1629 | key = found_key; |
| 1630 | btrfs_release_path(path); |
| 1631 | goto again; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1632 | } else if (ret == 0) { |
| 1633 | leaf = path->nodes[0]; |
| 1634 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1635 | struct btrfs_dev_extent); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1636 | } else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1637 | btrfs_handle_fs_error(fs_info, ret, "Slot search failed"); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1638 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1639 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1640 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1641 | *dev_extent_len = btrfs_dev_extent_length(leaf, extent); |
| 1642 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1643 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1644 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1645 | btrfs_handle_fs_error(fs_info, ret, |
| 1646 | "Failed to remove dev extent item"); |
Zhao Lei | 13212b5 | 2015-02-12 14:18:17 +0800 | [diff] [blame] | 1647 | } else { |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 1648 | set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1649 | } |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1650 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1651 | btrfs_free_path(path); |
| 1652 | return ret; |
| 1653 | } |
| 1654 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1655 | static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans, |
| 1656 | struct btrfs_device *device, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1657 | u64 chunk_offset, u64 start, u64 num_bytes) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1658 | { |
| 1659 | int ret; |
| 1660 | struct btrfs_path *path; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1661 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1662 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1663 | struct btrfs_dev_extent *extent; |
| 1664 | struct extent_buffer *leaf; |
| 1665 | struct btrfs_key key; |
| 1666 | |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 1667 | WARN_ON(!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state)); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1668 | WARN_ON(test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1669 | path = btrfs_alloc_path(); |
| 1670 | if (!path) |
| 1671 | return -ENOMEM; |
| 1672 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1673 | key.objectid = device->devid; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1674 | key.offset = start; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1675 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 1676 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1677 | sizeof(*extent)); |
Mark Fasheh | 2cdcecb | 2011-09-08 17:14:32 -0700 | [diff] [blame] | 1678 | if (ret) |
| 1679 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1680 | |
| 1681 | leaf = path->nodes[0]; |
| 1682 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1683 | struct btrfs_dev_extent); |
Nikolay Borisov | b5d9071 | 2017-08-18 17:58:23 +0300 | [diff] [blame] | 1684 | btrfs_set_dev_extent_chunk_tree(leaf, extent, |
| 1685 | BTRFS_CHUNK_TREE_OBJECTID); |
Nikolay Borisov | 0ca00af | 2017-08-18 17:58:22 +0300 | [diff] [blame] | 1686 | btrfs_set_dev_extent_chunk_objectid(leaf, extent, |
| 1687 | BTRFS_FIRST_CHUNK_TREE_OBJECTID); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1688 | btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset); |
| 1689 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1690 | btrfs_set_dev_extent_length(leaf, extent, num_bytes); |
| 1691 | btrfs_mark_buffer_dirty(leaf); |
Mark Fasheh | 2cdcecb | 2011-09-08 17:14:32 -0700 | [diff] [blame] | 1692 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1693 | btrfs_free_path(path); |
| 1694 | return ret; |
| 1695 | } |
| 1696 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1697 | static u64 find_next_chunk(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1698 | { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1699 | struct extent_map_tree *em_tree; |
| 1700 | struct extent_map *em; |
| 1701 | struct rb_node *n; |
| 1702 | u64 ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1703 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1704 | em_tree = &fs_info->mapping_tree.map_tree; |
| 1705 | read_lock(&em_tree->lock); |
| 1706 | n = rb_last(&em_tree->map); |
| 1707 | if (n) { |
| 1708 | em = rb_entry(n, struct extent_map, rb_node); |
| 1709 | ret = em->start + em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1710 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1711 | read_unlock(&em_tree->lock); |
| 1712 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1713 | return ret; |
| 1714 | } |
| 1715 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1716 | static noinline int find_next_devid(struct btrfs_fs_info *fs_info, |
| 1717 | u64 *devid_ret) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1718 | { |
| 1719 | int ret; |
| 1720 | struct btrfs_key key; |
| 1721 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1722 | struct btrfs_path *path; |
| 1723 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1724 | path = btrfs_alloc_path(); |
| 1725 | if (!path) |
| 1726 | return -ENOMEM; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1727 | |
| 1728 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1729 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1730 | key.offset = (u64)-1; |
| 1731 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1732 | ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1733 | if (ret < 0) |
| 1734 | goto error; |
| 1735 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1736 | BUG_ON(ret == 0); /* Corruption */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1737 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1738 | ret = btrfs_previous_item(fs_info->chunk_root, path, |
| 1739 | BTRFS_DEV_ITEMS_OBJECTID, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1740 | BTRFS_DEV_ITEM_KEY); |
| 1741 | if (ret) { |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1742 | *devid_ret = 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1743 | } else { |
| 1744 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 1745 | path->slots[0]); |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1746 | *devid_ret = found_key.offset + 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1747 | } |
| 1748 | ret = 0; |
| 1749 | error: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1750 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1751 | return ret; |
| 1752 | } |
| 1753 | |
| 1754 | /* |
| 1755 | * the device information is stored in the chunk root |
| 1756 | * the btrfs_device struct should be fully filled in |
| 1757 | */ |
Anand Jain | c74a0b0 | 2017-11-06 16:36:15 +0800 | [diff] [blame] | 1758 | static int btrfs_add_dev_item(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1759 | struct btrfs_fs_info *fs_info, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1760 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1761 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1762 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1763 | int ret; |
| 1764 | struct btrfs_path *path; |
| 1765 | struct btrfs_dev_item *dev_item; |
| 1766 | struct extent_buffer *leaf; |
| 1767 | struct btrfs_key key; |
| 1768 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1769 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1770 | path = btrfs_alloc_path(); |
| 1771 | if (!path) |
| 1772 | return -ENOMEM; |
| 1773 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1774 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1775 | key.type = BTRFS_DEV_ITEM_KEY; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1776 | key.offset = device->devid; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1777 | |
| 1778 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1779 | sizeof(*dev_item)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1780 | if (ret) |
| 1781 | goto out; |
| 1782 | |
| 1783 | leaf = path->nodes[0]; |
| 1784 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 1785 | |
| 1786 | btrfs_set_device_id(leaf, dev_item, device->devid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1787 | btrfs_set_device_generation(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1788 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 1789 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 1790 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 1791 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 1792 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 1793 | btrfs_device_get_disk_total_bytes(device)); |
| 1794 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 1795 | btrfs_device_get_bytes_used(device)); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1796 | btrfs_set_device_group(leaf, dev_item, 0); |
| 1797 | btrfs_set_device_seek_speed(leaf, dev_item, 0); |
| 1798 | btrfs_set_device_bandwidth(leaf, dev_item, 0); |
Chris Mason | c3027eb | 2008-12-08 16:40:21 -0500 | [diff] [blame] | 1799 | btrfs_set_device_start_offset(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1800 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 1801 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1802 | write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 1803 | ptr = btrfs_device_fsid(dev_item); |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 1804 | write_extent_buffer(leaf, fs_info->fsid, ptr, BTRFS_FSID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1805 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1806 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1807 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1808 | out: |
| 1809 | btrfs_free_path(path); |
| 1810 | return ret; |
| 1811 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1812 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1813 | /* |
| 1814 | * Function to update ctime/mtime for a given device path. |
| 1815 | * Mainly used for ctime/mtime based probe like libblkid. |
| 1816 | */ |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 1817 | static void update_dev_time(const char *path_name) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1818 | { |
| 1819 | struct file *filp; |
| 1820 | |
| 1821 | filp = filp_open(path_name, O_RDWR, 0); |
Al Viro | 98af592 | 2014-12-14 02:59:17 -0500 | [diff] [blame] | 1822 | if (IS_ERR(filp)) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1823 | return; |
| 1824 | file_update_time(filp); |
| 1825 | filp_close(filp, NULL); |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1826 | } |
| 1827 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1828 | static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info, |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1829 | struct btrfs_device *device) |
| 1830 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1831 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1832 | int ret; |
| 1833 | struct btrfs_path *path; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1834 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1835 | struct btrfs_trans_handle *trans; |
| 1836 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1837 | path = btrfs_alloc_path(); |
| 1838 | if (!path) |
| 1839 | return -ENOMEM; |
| 1840 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 1841 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 1842 | if (IS_ERR(trans)) { |
| 1843 | btrfs_free_path(path); |
| 1844 | return PTR_ERR(trans); |
| 1845 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1846 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1847 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1848 | key.offset = device->devid; |
| 1849 | |
| 1850 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1851 | if (ret) { |
| 1852 | if (ret > 0) |
| 1853 | ret = -ENOENT; |
| 1854 | btrfs_abort_transaction(trans, ret); |
| 1855 | btrfs_end_transaction(trans); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1856 | goto out; |
| 1857 | } |
| 1858 | |
| 1859 | ret = btrfs_del_item(trans, root, path); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1860 | if (ret) { |
| 1861 | btrfs_abort_transaction(trans, ret); |
| 1862 | btrfs_end_transaction(trans); |
| 1863 | } |
| 1864 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1865 | out: |
| 1866 | btrfs_free_path(path); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1867 | if (!ret) |
| 1868 | ret = btrfs_commit_transaction(trans); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1869 | return ret; |
| 1870 | } |
| 1871 | |
David Sterba | 3cc31a0 | 2016-02-15 16:00:26 +0100 | [diff] [blame] | 1872 | /* |
| 1873 | * Verify that @num_devices satisfies the RAID profile constraints in the whole |
| 1874 | * filesystem. It's up to the caller to adjust that number regarding eg. device |
| 1875 | * replace. |
| 1876 | */ |
| 1877 | static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info, |
| 1878 | u64 num_devices) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1879 | { |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1880 | u64 all_avail; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1881 | unsigned seq; |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1882 | int i; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1883 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1884 | do { |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1885 | seq = read_seqbegin(&fs_info->profiles_lock); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1886 | |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1887 | all_avail = fs_info->avail_data_alloc_bits | |
| 1888 | fs_info->avail_system_alloc_bits | |
| 1889 | fs_info->avail_metadata_alloc_bits; |
| 1890 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1891 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1892 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 1893 | if (!(all_avail & btrfs_raid_group[i])) |
| 1894 | continue; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1895 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1896 | if (num_devices < btrfs_raid_array[i].devs_min) { |
| 1897 | int ret = btrfs_raid_mindev_error[i]; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1898 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1899 | if (ret) |
| 1900 | return ret; |
| 1901 | } |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1902 | } |
| 1903 | |
| 1904 | return 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1905 | } |
| 1906 | |
Omar Sandoval | c9162bd | 2017-08-22 23:46:04 -0700 | [diff] [blame] | 1907 | static struct btrfs_device * btrfs_find_next_active_device( |
| 1908 | struct btrfs_fs_devices *fs_devs, struct btrfs_device *device) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 1909 | { |
| 1910 | struct btrfs_device *next_device; |
| 1911 | |
| 1912 | list_for_each_entry(next_device, &fs_devs->devices, dev_list) { |
| 1913 | if (next_device != device && |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 1914 | !test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state) |
| 1915 | && next_device->bdev) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 1916 | return next_device; |
| 1917 | } |
| 1918 | |
| 1919 | return NULL; |
| 1920 | } |
| 1921 | |
| 1922 | /* |
| 1923 | * Helper function to check if the given device is part of s_bdev / latest_bdev |
| 1924 | * and replace it with the provided or the next active device, in the context |
| 1925 | * where this function called, there should be always be another device (or |
| 1926 | * this_dev) which is active. |
| 1927 | */ |
| 1928 | void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info, |
| 1929 | struct btrfs_device *device, struct btrfs_device *this_dev) |
| 1930 | { |
| 1931 | struct btrfs_device *next_device; |
| 1932 | |
| 1933 | if (this_dev) |
| 1934 | next_device = this_dev; |
| 1935 | else |
| 1936 | next_device = btrfs_find_next_active_device(fs_info->fs_devices, |
| 1937 | device); |
| 1938 | ASSERT(next_device); |
| 1939 | |
| 1940 | if (fs_info->sb->s_bdev && |
| 1941 | (fs_info->sb->s_bdev == device->bdev)) |
| 1942 | fs_info->sb->s_bdev = next_device->bdev; |
| 1943 | |
| 1944 | if (fs_info->fs_devices->latest_bdev == device->bdev) |
| 1945 | fs_info->fs_devices->latest_bdev = next_device->bdev; |
| 1946 | } |
| 1947 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 1948 | int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path, |
| 1949 | u64 devid) |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1950 | { |
| 1951 | struct btrfs_device *device; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1952 | struct btrfs_fs_devices *cur_devices; |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame^] | 1953 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1954 | u64 num_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1955 | int ret = 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1956 | |
Anand Jain | 2c99738 | 2017-11-06 10:28:00 +0800 | [diff] [blame] | 1957 | mutex_lock(&fs_info->volume_mutex); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1958 | mutex_lock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1959 | |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame^] | 1960 | num_devices = fs_devices->num_devices; |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 1961 | btrfs_dev_replace_read_lock(&fs_info->dev_replace); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1962 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) { |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1963 | WARN_ON(num_devices < 1); |
| 1964 | num_devices--; |
| 1965 | } |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 1966 | btrfs_dev_replace_read_unlock(&fs_info->dev_replace); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1967 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1968 | ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1969 | if (ret) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1970 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1971 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1972 | ret = btrfs_find_device_by_devspec(fs_info, devid, device_path, |
| 1973 | &device); |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1974 | if (ret) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1975 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1976 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1977 | if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1978 | ret = BTRFS_ERROR_DEV_TGT_REPLACE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1979 | goto out; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1980 | } |
| 1981 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1982 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
| 1983 | fs_info->fs_devices->rw_devices == 1) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1984 | ret = BTRFS_ERROR_DEV_ONLY_WRITABLE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1985 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1986 | } |
| 1987 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1988 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 1989 | mutex_lock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1990 | list_del_init(&device->dev_alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 1991 | device->fs_devices->rw_devices--; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 1992 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1993 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1994 | |
Carey Underwood | d790155 | 2013-03-04 16:37:06 -0600 | [diff] [blame] | 1995 | mutex_unlock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1996 | ret = btrfs_shrink_device(device, 0); |
Carey Underwood | d790155 | 2013-03-04 16:37:06 -0600 | [diff] [blame] | 1997 | mutex_lock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1998 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1999 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2000 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2001 | /* |
| 2002 | * TODO: the superblock still includes this device in its num_devices |
| 2003 | * counter although write_all_supers() is not locked out. This |
| 2004 | * could give a filesystem state which requires a degraded mount. |
| 2005 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2006 | ret = btrfs_rm_dev_item(fs_info, device); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2007 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2008 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2009 | |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2010 | clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2011 | btrfs_scrub_cancel_dev(fs_info, device); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2012 | |
| 2013 | /* |
| 2014 | * the device list mutex makes sure that we don't change |
| 2015 | * the device list while someone else is writing out all |
Filipe David Borba Manana | d730680 | 2013-08-09 15:41:36 +0100 | [diff] [blame] | 2016 | * the device supers. Whoever is writing all supers, should |
| 2017 | * lock the device list mutex before getting the number of |
| 2018 | * devices in the super block (super_copy). Conversely, |
| 2019 | * whoever updates the number of devices in the super block |
| 2020 | * (super_copy) should hold the device list mutex. |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2021 | */ |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2022 | |
| 2023 | cur_devices = device->fs_devices; |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame^] | 2024 | mutex_lock(&fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2025 | list_del_rcu(&device->dev_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2026 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2027 | device->fs_devices->num_devices--; |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 2028 | device->fs_devices->total_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2029 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 2030 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) |
Miao Xie | 3a7d55c | 2014-07-16 18:38:01 +0800 | [diff] [blame] | 2031 | device->fs_devices->missing_devices--; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 2032 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2033 | btrfs_assign_next_active_device(fs_info, device, NULL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2034 | |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2035 | if (device->bdev) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2036 | device->fs_devices->open_devices--; |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2037 | /* remove sysfs entry */ |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame^] | 2038 | btrfs_sysfs_rm_device_link(fs_devices, device); |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2039 | } |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 2040 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2041 | num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1; |
| 2042 | btrfs_set_super_num_devices(fs_info->super_copy, num_devices); |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame^] | 2043 | mutex_unlock(&fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2044 | |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2045 | /* |
| 2046 | * at this point, the device is zero sized and detached from |
| 2047 | * the devices list. All that's left is to zero out the old |
| 2048 | * supers and free the device. |
| 2049 | */ |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2050 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2051 | btrfs_scratch_superblocks(device->bdev, device->name->str); |
| 2052 | |
| 2053 | btrfs_close_bdev(device); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 2054 | call_rcu(&device->rcu, free_device_rcu); |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2055 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2056 | if (cur_devices->open_devices == 0) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2057 | while (fs_devices) { |
Rickard Strandqvist | 8321cf2 | 2014-05-22 22:43:43 +0200 | [diff] [blame] | 2058 | if (fs_devices->seed == cur_devices) { |
| 2059 | fs_devices->seed = cur_devices->seed; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2060 | break; |
Rickard Strandqvist | 8321cf2 | 2014-05-22 22:43:43 +0200 | [diff] [blame] | 2061 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2062 | fs_devices = fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2063 | } |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2064 | cur_devices->seed = NULL; |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 2065 | close_fs_devices(cur_devices); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2066 | free_fs_devices(cur_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2067 | } |
| 2068 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2069 | out: |
| 2070 | mutex_unlock(&uuid_mutex); |
Anand Jain | 2c99738 | 2017-11-06 10:28:00 +0800 | [diff] [blame] | 2071 | mutex_unlock(&fs_info->volume_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2072 | return ret; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2073 | |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2074 | error_undo: |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2075 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2076 | mutex_lock(&fs_info->chunk_mutex); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2077 | list_add(&device->dev_alloc_list, |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame^] | 2078 | &fs_devices->alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 2079 | device->fs_devices->rw_devices++; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2080 | mutex_unlock(&fs_info->chunk_mutex); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2081 | } |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2082 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2083 | } |
| 2084 | |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 2085 | void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info, |
| 2086 | struct btrfs_device *srcdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2087 | { |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2088 | struct btrfs_fs_devices *fs_devices; |
| 2089 | |
David Sterba | a32bf9a | 2018-03-16 02:21:22 +0100 | [diff] [blame] | 2090 | lockdep_assert_held(&fs_info->fs_devices->device_list_mutex); |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 2091 | |
Anand Jain | 25e8e91 | 2014-08-20 10:56:56 +0800 | [diff] [blame] | 2092 | /* |
| 2093 | * in case of fs with no seed, srcdev->fs_devices will point |
| 2094 | * to fs_devices of fs_info. However when the dev being replaced is |
| 2095 | * a seed dev it will point to the seed's local fs_devices. In short |
| 2096 | * srcdev will have its correct fs_devices in both the cases. |
| 2097 | */ |
| 2098 | fs_devices = srcdev->fs_devices; |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2099 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2100 | list_del_rcu(&srcdev->dev_list); |
David Sterba | 619c47f | 2017-06-19 14:14:22 +0200 | [diff] [blame] | 2101 | list_del(&srcdev->dev_alloc_list); |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2102 | fs_devices->num_devices--; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 2103 | if (test_bit(BTRFS_DEV_STATE_MISSING, &srcdev->dev_state)) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2104 | fs_devices->missing_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2105 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2106 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2107 | fs_devices->rw_devices--; |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 2108 | |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2109 | if (srcdev->bdev) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2110 | fs_devices->open_devices--; |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 2111 | } |
| 2112 | |
| 2113 | void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info, |
| 2114 | struct btrfs_device *srcdev) |
| 2115 | { |
| 2116 | struct btrfs_fs_devices *fs_devices = srcdev->fs_devices; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2117 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2118 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) { |
Anand Jain | 48b3b9d | 2016-04-12 21:36:16 +0800 | [diff] [blame] | 2119 | /* zero out the old super if it is writable */ |
| 2120 | btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str); |
| 2121 | } |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 2122 | |
| 2123 | btrfs_close_bdev(srcdev); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 2124 | call_rcu(&srcdev->rcu, free_device_rcu); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2125 | |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2126 | /* if this is no devs we rather delete the fs_devices */ |
| 2127 | if (!fs_devices->num_devices) { |
| 2128 | struct btrfs_fs_devices *tmp_fs_devices; |
| 2129 | |
Anand Jain | 6dd38f8 | 2017-10-17 06:53:50 +0800 | [diff] [blame] | 2130 | /* |
| 2131 | * On a mounted FS, num_devices can't be zero unless it's a |
| 2132 | * seed. In case of a seed device being replaced, the replace |
| 2133 | * target added to the sprout FS, so there will be no more |
| 2134 | * device left under the seed FS. |
| 2135 | */ |
| 2136 | ASSERT(fs_devices->seeding); |
| 2137 | |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2138 | tmp_fs_devices = fs_info->fs_devices; |
| 2139 | while (tmp_fs_devices) { |
| 2140 | if (tmp_fs_devices->seed == fs_devices) { |
| 2141 | tmp_fs_devices->seed = fs_devices->seed; |
| 2142 | break; |
| 2143 | } |
| 2144 | tmp_fs_devices = tmp_fs_devices->seed; |
| 2145 | } |
| 2146 | fs_devices->seed = NULL; |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 2147 | close_fs_devices(fs_devices); |
Anand Jain | 8bef840 | 2014-08-13 14:24:23 +0800 | [diff] [blame] | 2148 | free_fs_devices(fs_devices); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2149 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2150 | } |
| 2151 | |
| 2152 | void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info, |
| 2153 | struct btrfs_device *tgtdev) |
| 2154 | { |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 2155 | mutex_lock(&uuid_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2156 | WARN_ON(!tgtdev); |
| 2157 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2158 | |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 2159 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2160 | |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2161 | if (tgtdev->bdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2162 | fs_info->fs_devices->open_devices--; |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2163 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2164 | fs_info->fs_devices->num_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2165 | |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2166 | btrfs_assign_next_active_device(fs_info, tgtdev, NULL); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2167 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2168 | list_del_rcu(&tgtdev->dev_list); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2169 | |
| 2170 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 2171 | mutex_unlock(&uuid_mutex); |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2172 | |
| 2173 | /* |
| 2174 | * The update_dev_time() with in btrfs_scratch_superblocks() |
| 2175 | * may lead to a call to btrfs_show_devname() which will try |
| 2176 | * to hold device_list_mutex. And here this device |
| 2177 | * is already out of device list, so we don't have to hold |
| 2178 | * the device_list_mutex lock. |
| 2179 | */ |
| 2180 | btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str); |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 2181 | |
| 2182 | btrfs_close_bdev(tgtdev); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 2183 | call_rcu(&tgtdev->rcu, free_device_rcu); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2184 | } |
| 2185 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2186 | static int btrfs_find_device_by_path(struct btrfs_fs_info *fs_info, |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 2187 | const char *device_path, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 2188 | struct btrfs_device **device) |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2189 | { |
| 2190 | int ret = 0; |
| 2191 | struct btrfs_super_block *disk_super; |
| 2192 | u64 devid; |
| 2193 | u8 *dev_uuid; |
| 2194 | struct block_device *bdev; |
| 2195 | struct buffer_head *bh; |
| 2196 | |
| 2197 | *device = NULL; |
| 2198 | ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2199 | fs_info->bdev_holder, 0, &bdev, &bh); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2200 | if (ret) |
| 2201 | return ret; |
| 2202 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 2203 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 2204 | dev_uuid = disk_super->dev_item.uuid; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2205 | *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2206 | brelse(bh); |
| 2207 | if (!*device) |
| 2208 | ret = -ENOENT; |
| 2209 | blkdev_put(bdev, FMODE_READ); |
| 2210 | return ret; |
| 2211 | } |
| 2212 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2213 | int btrfs_find_device_missing_or_by_path(struct btrfs_fs_info *fs_info, |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 2214 | const char *device_path, |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2215 | struct btrfs_device **device) |
| 2216 | { |
| 2217 | *device = NULL; |
| 2218 | if (strcmp(device_path, "missing") == 0) { |
| 2219 | struct list_head *devices; |
| 2220 | struct btrfs_device *tmp; |
| 2221 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2222 | devices = &fs_info->fs_devices->devices; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2223 | /* |
| 2224 | * It is safe to read the devices since the volume_mutex |
| 2225 | * is held by the caller. |
| 2226 | */ |
| 2227 | list_for_each_entry(tmp, devices, dev_list) { |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2228 | if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 2229 | &tmp->dev_state) && !tmp->bdev) { |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2230 | *device = tmp; |
| 2231 | break; |
| 2232 | } |
| 2233 | } |
| 2234 | |
Anand Jain | d74a625 | 2015-08-14 18:32:56 +0800 | [diff] [blame] | 2235 | if (!*device) |
| 2236 | return BTRFS_ERROR_DEV_MISSING_NOT_FOUND; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2237 | |
| 2238 | return 0; |
| 2239 | } else { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2240 | return btrfs_find_device_by_path(fs_info, device_path, device); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2241 | } |
| 2242 | } |
| 2243 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2244 | /* |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2245 | * Lookup a device given by device id, or the path if the id is 0. |
| 2246 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2247 | int btrfs_find_device_by_devspec(struct btrfs_fs_info *fs_info, u64 devid, |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 2248 | const char *devpath, |
| 2249 | struct btrfs_device **device) |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2250 | { |
| 2251 | int ret; |
| 2252 | |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2253 | if (devid) { |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2254 | ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2255 | *device = btrfs_find_device(fs_info, devid, NULL, NULL); |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2256 | if (!*device) |
| 2257 | ret = -ENOENT; |
| 2258 | } else { |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2259 | if (!devpath || !devpath[0]) |
Anand Jain | b3d1b15 | 2016-02-13 10:01:37 +0800 | [diff] [blame] | 2260 | return -EINVAL; |
| 2261 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2262 | ret = btrfs_find_device_missing_or_by_path(fs_info, devpath, |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2263 | device); |
| 2264 | } |
| 2265 | return ret; |
| 2266 | } |
| 2267 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2268 | /* |
| 2269 | * does all the dirty work required for changing file system's UUID. |
| 2270 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2271 | static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2272 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2273 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2274 | struct btrfs_fs_devices *old_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2275 | struct btrfs_fs_devices *seed_devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2276 | struct btrfs_super_block *disk_super = fs_info->super_copy; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2277 | struct btrfs_device *device; |
| 2278 | u64 super_flags; |
| 2279 | |
David Sterba | a32bf9a | 2018-03-16 02:21:22 +0100 | [diff] [blame] | 2280 | lockdep_assert_held(&uuid_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2281 | if (!fs_devices->seeding) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2282 | return -EINVAL; |
| 2283 | |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 2284 | seed_devices = alloc_fs_devices(NULL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 2285 | if (IS_ERR(seed_devices)) |
| 2286 | return PTR_ERR(seed_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2287 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2288 | old_devices = clone_fs_devices(fs_devices); |
| 2289 | if (IS_ERR(old_devices)) { |
| 2290 | kfree(seed_devices); |
| 2291 | return PTR_ERR(old_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2292 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2293 | |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 2294 | list_add(&old_devices->fs_list, &fs_uuids); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2295 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2296 | memcpy(seed_devices, fs_devices, sizeof(*seed_devices)); |
| 2297 | seed_devices->opened = 1; |
| 2298 | INIT_LIST_HEAD(&seed_devices->devices); |
| 2299 | INIT_LIST_HEAD(&seed_devices->alloc_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2300 | mutex_init(&seed_devices->device_list_mutex); |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 2301 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2302 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2303 | list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices, |
| 2304 | synchronize_rcu); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2305 | list_for_each_entry(device, &seed_devices->devices, dev_list) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2306 | device->fs_devices = seed_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2307 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2308 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2309 | list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2310 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2311 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2312 | fs_devices->seeding = 0; |
| 2313 | fs_devices->num_devices = 0; |
| 2314 | fs_devices->open_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2315 | fs_devices->missing_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2316 | fs_devices->rotating = 0; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2317 | fs_devices->seed = seed_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2318 | |
| 2319 | generate_random_uuid(fs_devices->fsid); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2320 | memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2321 | memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2322 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 2323 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2324 | super_flags = btrfs_super_flags(disk_super) & |
| 2325 | ~BTRFS_SUPER_FLAG_SEEDING; |
| 2326 | btrfs_set_super_flags(disk_super, super_flags); |
| 2327 | |
| 2328 | return 0; |
| 2329 | } |
| 2330 | |
| 2331 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2332 | * Store the expected generation for seed devices in device items. |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2333 | */ |
| 2334 | static int btrfs_finish_sprout(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2335 | struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2336 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2337 | struct btrfs_root *root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2338 | struct btrfs_path *path; |
| 2339 | struct extent_buffer *leaf; |
| 2340 | struct btrfs_dev_item *dev_item; |
| 2341 | struct btrfs_device *device; |
| 2342 | struct btrfs_key key; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 2343 | u8 fs_uuid[BTRFS_FSID_SIZE]; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2344 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 2345 | u64 devid; |
| 2346 | int ret; |
| 2347 | |
| 2348 | path = btrfs_alloc_path(); |
| 2349 | if (!path) |
| 2350 | return -ENOMEM; |
| 2351 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2352 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2353 | key.offset = 0; |
| 2354 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2355 | |
| 2356 | while (1) { |
| 2357 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2358 | if (ret < 0) |
| 2359 | goto error; |
| 2360 | |
| 2361 | leaf = path->nodes[0]; |
| 2362 | next_slot: |
| 2363 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 2364 | ret = btrfs_next_leaf(root, path); |
| 2365 | if (ret > 0) |
| 2366 | break; |
| 2367 | if (ret < 0) |
| 2368 | goto error; |
| 2369 | leaf = path->nodes[0]; |
| 2370 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2371 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2372 | continue; |
| 2373 | } |
| 2374 | |
| 2375 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 2376 | if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID || |
| 2377 | key.type != BTRFS_DEV_ITEM_KEY) |
| 2378 | break; |
| 2379 | |
| 2380 | dev_item = btrfs_item_ptr(leaf, path->slots[0], |
| 2381 | struct btrfs_dev_item); |
| 2382 | devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 2383 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2384 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 2385 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 2386 | BTRFS_FSID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2387 | device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2388 | BUG_ON(!device); /* Logic error */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2389 | |
| 2390 | if (device->fs_devices->seeding) { |
| 2391 | btrfs_set_device_generation(leaf, dev_item, |
| 2392 | device->generation); |
| 2393 | btrfs_mark_buffer_dirty(leaf); |
| 2394 | } |
| 2395 | |
| 2396 | path->slots[0]++; |
| 2397 | goto next_slot; |
| 2398 | } |
| 2399 | ret = 0; |
| 2400 | error: |
| 2401 | btrfs_free_path(path); |
| 2402 | return ret; |
| 2403 | } |
| 2404 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 2405 | int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path) |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2406 | { |
Jeff Mahoney | 5112feb | 2016-06-21 20:16:08 -0400 | [diff] [blame] | 2407 | struct btrfs_root *root = fs_info->dev_root; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2408 | struct request_queue *q; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2409 | struct btrfs_trans_handle *trans; |
| 2410 | struct btrfs_device *device; |
| 2411 | struct block_device *bdev; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2412 | struct list_head *devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2413 | struct super_block *sb = fs_info->sb; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2414 | struct rcu_string *name; |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2415 | u64 tmp; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2416 | int seeding_dev = 0; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2417 | int ret = 0; |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2418 | bool unlocked = false; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2419 | |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 2420 | if (sb_rdonly(sb) && !fs_info->fs_devices->seeding) |
Liu Bo | f8c5d0b | 2012-05-10 18:10:38 +0800 | [diff] [blame] | 2421 | return -EROFS; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2422 | |
Li Zefan | a5d1633 | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 2423 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2424 | fs_info->bdev_holder); |
Josef Bacik | 7f59203 | 2010-01-27 02:09:00 +0000 | [diff] [blame] | 2425 | if (IS_ERR(bdev)) |
| 2426 | return PTR_ERR(bdev); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2427 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2428 | if (fs_info->fs_devices->seeding) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2429 | seeding_dev = 1; |
| 2430 | down_write(&sb->s_umount); |
| 2431 | mutex_lock(&uuid_mutex); |
| 2432 | } |
| 2433 | |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 2434 | filemap_write_and_wait(bdev->bd_inode->i_mapping); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2435 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2436 | devices = &fs_info->fs_devices->devices; |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2437 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2438 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 2439 | list_for_each_entry(device, devices, dev_list) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2440 | if (device->bdev == bdev) { |
| 2441 | ret = -EEXIST; |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2442 | mutex_unlock( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2443 | &fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2444 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2445 | } |
| 2446 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2447 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2448 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2449 | device = btrfs_alloc_device(fs_info, NULL, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2450 | if (IS_ERR(device)) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2451 | /* we can safely leave the fs_devices entry around */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2452 | ret = PTR_ERR(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2453 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2454 | } |
| 2455 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 2456 | name = rcu_string_strdup(device_path, GFP_KERNEL); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2457 | if (!name) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2458 | ret = -ENOMEM; |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2459 | goto error_free_device; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2460 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2461 | rcu_assign_pointer(device->name, name); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2462 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2463 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2464 | if (IS_ERR(trans)) { |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2465 | ret = PTR_ERR(trans); |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2466 | goto error_free_device; |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2467 | } |
| 2468 | |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2469 | q = bdev_get_queue(bdev); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2470 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2471 | device->generation = trans->transid; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2472 | device->io_width = fs_info->sectorsize; |
| 2473 | device->io_align = fs_info->sectorsize; |
| 2474 | device->sector_size = fs_info->sectorsize; |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2475 | device->total_bytes = round_down(i_size_read(bdev->bd_inode), |
| 2476 | fs_info->sectorsize); |
Yan Zheng | 2cc3c55 | 2009-06-04 09:23:50 -0400 | [diff] [blame] | 2477 | device->disk_total_bytes = device->total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2478 | device->commit_total_bytes = device->total_bytes; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2479 | device->fs_info = fs_info; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2480 | device->bdev = bdev; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2481 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2482 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Ilya Dryomov | fb01aa8 | 2011-02-15 18:12:57 +0000 | [diff] [blame] | 2483 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2484 | device->dev_stats_valid = 1; |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 2485 | set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE); |
Zheng Yan | 325cd4b | 2008-09-05 16:43:54 -0400 | [diff] [blame] | 2486 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2487 | if (seeding_dev) { |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 2488 | sb->s_flags &= ~SB_RDONLY; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2489 | ret = btrfs_prepare_sprout(fs_info); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2490 | if (ret) { |
| 2491 | btrfs_abort_transaction(trans, ret); |
| 2492 | goto error_trans; |
| 2493 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2494 | } |
| 2495 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2496 | device->fs_devices = fs_info->fs_devices; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2497 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2498 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2499 | mutex_lock(&fs_info->chunk_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2500 | list_add_rcu(&device->dev_list, &fs_info->fs_devices->devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2501 | list_add(&device->dev_alloc_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2502 | &fs_info->fs_devices->alloc_list); |
| 2503 | fs_info->fs_devices->num_devices++; |
| 2504 | fs_info->fs_devices->open_devices++; |
| 2505 | fs_info->fs_devices->rw_devices++; |
| 2506 | fs_info->fs_devices->total_devices++; |
| 2507 | fs_info->fs_devices->total_rw_bytes += device->total_bytes; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2508 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 2509 | atomic64_add(device->total_bytes, &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 2510 | |
Anand Jain | e884f4f | 2017-04-04 18:40:19 +0800 | [diff] [blame] | 2511 | if (!blk_queue_nonrot(q)) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2512 | fs_info->fs_devices->rotating = 1; |
Chris Mason | c289811 | 2009-06-10 09:51:32 -0400 | [diff] [blame] | 2513 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2514 | tmp = btrfs_super_total_bytes(fs_info->super_copy); |
| 2515 | btrfs_set_super_total_bytes(fs_info->super_copy, |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2516 | round_down(tmp + device->total_bytes, fs_info->sectorsize)); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2517 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2518 | tmp = btrfs_super_num_devices(fs_info->super_copy); |
| 2519 | btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2520 | |
| 2521 | /* add sysfs device entry */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2522 | btrfs_sysfs_add_device_link(fs_info->fs_devices, device); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2523 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2524 | /* |
| 2525 | * we've got more storage, clear any full flags on the space |
| 2526 | * infos |
| 2527 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2528 | btrfs_clear_space_info_full(fs_info); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2529 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2530 | mutex_unlock(&fs_info->chunk_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2531 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2532 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2533 | if (seeding_dev) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2534 | mutex_lock(&fs_info->chunk_mutex); |
David Sterba | e4a4dce | 2017-02-10 19:49:01 +0100 | [diff] [blame] | 2535 | ret = init_first_rw_device(trans, fs_info); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2536 | mutex_unlock(&fs_info->chunk_mutex); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2537 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2538 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2539 | goto error_sysfs; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2540 | } |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2541 | } |
| 2542 | |
Anand Jain | c74a0b0 | 2017-11-06 16:36:15 +0800 | [diff] [blame] | 2543 | ret = btrfs_add_dev_item(trans, fs_info, device); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2544 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2545 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2546 | goto error_sysfs; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2547 | } |
| 2548 | |
| 2549 | if (seeding_dev) { |
| 2550 | char fsid_buf[BTRFS_UUID_UNPARSED_SIZE]; |
| 2551 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2552 | ret = btrfs_finish_sprout(trans, fs_info); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2553 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2554 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2555 | goto error_sysfs; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2556 | } |
Anand Jain | b2373f2 | 2014-06-03 11:36:03 +0800 | [diff] [blame] | 2557 | |
| 2558 | /* Sprouting would change fsid of the mounted root, |
| 2559 | * so rename the fsid on the sysfs |
| 2560 | */ |
| 2561 | snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2562 | fs_info->fsid); |
| 2563 | if (kobject_rename(&fs_info->fs_devices->fsid_kobj, fsid_buf)) |
| 2564 | btrfs_warn(fs_info, |
| 2565 | "sysfs: failed to create fsid for sprout"); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2566 | } |
| 2567 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2568 | ret = btrfs_commit_transaction(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2569 | |
| 2570 | if (seeding_dev) { |
| 2571 | mutex_unlock(&uuid_mutex); |
| 2572 | up_write(&sb->s_umount); |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2573 | unlocked = true; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2574 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2575 | if (ret) /* transaction commit */ |
| 2576 | return ret; |
| 2577 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2578 | ret = btrfs_relocate_sys_chunks(fs_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2579 | if (ret < 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2580 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2581 | "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command."); |
Miao Xie | 671415b | 2012-10-16 11:26:46 +0000 | [diff] [blame] | 2582 | trans = btrfs_attach_transaction(root); |
| 2583 | if (IS_ERR(trans)) { |
| 2584 | if (PTR_ERR(trans) == -ENOENT) |
| 2585 | return 0; |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2586 | ret = PTR_ERR(trans); |
| 2587 | trans = NULL; |
| 2588 | goto error_sysfs; |
Miao Xie | 671415b | 2012-10-16 11:26:46 +0000 | [diff] [blame] | 2589 | } |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2590 | ret = btrfs_commit_transaction(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2591 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2592 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 2593 | /* Update ctime/mtime for libblkid */ |
| 2594 | update_dev_time(device_path); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2595 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2596 | |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2597 | error_sysfs: |
| 2598 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, device); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2599 | error_trans: |
Anand Jain | 0af2c4b | 2017-09-28 14:51:09 +0800 | [diff] [blame] | 2600 | if (seeding_dev) |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 2601 | sb->s_flags |= SB_RDONLY; |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2602 | if (trans) |
| 2603 | btrfs_end_transaction(trans); |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2604 | error_free_device: |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 2605 | free_device(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2606 | error: |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 2607 | blkdev_put(bdev, FMODE_EXCL); |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2608 | if (seeding_dev && !unlocked) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2609 | mutex_unlock(&uuid_mutex); |
| 2610 | up_write(&sb->s_umount); |
| 2611 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2612 | return ret; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2613 | } |
| 2614 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2615 | int btrfs_init_dev_replace_tgtdev(struct btrfs_fs_info *fs_info, |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 2616 | const char *device_path, |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2617 | struct btrfs_device *srcdev, |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2618 | struct btrfs_device **device_out) |
| 2619 | { |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2620 | struct btrfs_device *device; |
| 2621 | struct block_device *bdev; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2622 | struct list_head *devices; |
| 2623 | struct rcu_string *name; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2624 | u64 devid = BTRFS_DEV_REPLACE_DEVID; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2625 | int ret = 0; |
| 2626 | |
| 2627 | *device_out = NULL; |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2628 | if (fs_info->fs_devices->seeding) { |
| 2629 | btrfs_err(fs_info, "the filesystem is a seed filesystem!"); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2630 | return -EINVAL; |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2631 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2632 | |
| 2633 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
| 2634 | fs_info->bdev_holder); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2635 | if (IS_ERR(bdev)) { |
| 2636 | btrfs_err(fs_info, "target device %s is invalid!", device_path); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2637 | return PTR_ERR(bdev); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2638 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2639 | |
| 2640 | filemap_write_and_wait(bdev->bd_inode->i_mapping); |
| 2641 | |
| 2642 | devices = &fs_info->fs_devices->devices; |
| 2643 | list_for_each_entry(device, devices, dev_list) { |
| 2644 | if (device->bdev == bdev) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2645 | btrfs_err(fs_info, |
| 2646 | "target device is in the filesystem!"); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2647 | ret = -EEXIST; |
| 2648 | goto error; |
| 2649 | } |
| 2650 | } |
| 2651 | |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2652 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2653 | if (i_size_read(bdev->bd_inode) < |
| 2654 | btrfs_device_get_total_bytes(srcdev)) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2655 | btrfs_err(fs_info, |
| 2656 | "target device is smaller than source device!"); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2657 | ret = -EINVAL; |
| 2658 | goto error; |
| 2659 | } |
| 2660 | |
| 2661 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2662 | device = btrfs_alloc_device(NULL, &devid, NULL); |
| 2663 | if (IS_ERR(device)) { |
| 2664 | ret = PTR_ERR(device); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2665 | goto error; |
| 2666 | } |
| 2667 | |
David Sterba | 6165572 | 2017-06-15 17:16:43 +0200 | [diff] [blame] | 2668 | name = rcu_string_strdup(device_path, GFP_KERNEL); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2669 | if (!name) { |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 2670 | free_device(device); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2671 | ret = -ENOMEM; |
| 2672 | goto error; |
| 2673 | } |
| 2674 | rcu_assign_pointer(device->name, name); |
| 2675 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2676 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2677 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2678 | device->generation = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2679 | device->io_width = fs_info->sectorsize; |
| 2680 | device->io_align = fs_info->sectorsize; |
| 2681 | device->sector_size = fs_info->sectorsize; |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2682 | device->total_bytes = btrfs_device_get_total_bytes(srcdev); |
| 2683 | device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev); |
| 2684 | device->bytes_used = btrfs_device_get_bytes_used(srcdev); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2685 | device->commit_total_bytes = srcdev->commit_total_bytes; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 2686 | device->commit_bytes_used = device->bytes_used; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2687 | device->fs_info = fs_info; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2688 | device->bdev = bdev; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2689 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2690 | set_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2691 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2692 | device->dev_stats_valid = 1; |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 2693 | set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2694 | device->fs_devices = fs_info->fs_devices; |
| 2695 | list_add(&device->dev_list, &fs_info->fs_devices->devices); |
| 2696 | fs_info->fs_devices->num_devices++; |
| 2697 | fs_info->fs_devices->open_devices++; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2698 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2699 | |
| 2700 | *device_out = device; |
| 2701 | return ret; |
| 2702 | |
| 2703 | error: |
| 2704 | blkdev_put(bdev, FMODE_EXCL); |
| 2705 | return ret; |
| 2706 | } |
| 2707 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2708 | static noinline int btrfs_update_device(struct btrfs_trans_handle *trans, |
| 2709 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2710 | { |
| 2711 | int ret; |
| 2712 | struct btrfs_path *path; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2713 | struct btrfs_root *root = device->fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2714 | struct btrfs_dev_item *dev_item; |
| 2715 | struct extent_buffer *leaf; |
| 2716 | struct btrfs_key key; |
| 2717 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2718 | path = btrfs_alloc_path(); |
| 2719 | if (!path) |
| 2720 | return -ENOMEM; |
| 2721 | |
| 2722 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2723 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2724 | key.offset = device->devid; |
| 2725 | |
| 2726 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2727 | if (ret < 0) |
| 2728 | goto out; |
| 2729 | |
| 2730 | if (ret > 0) { |
| 2731 | ret = -ENOENT; |
| 2732 | goto out; |
| 2733 | } |
| 2734 | |
| 2735 | leaf = path->nodes[0]; |
| 2736 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 2737 | |
| 2738 | btrfs_set_device_id(leaf, dev_item, device->devid); |
| 2739 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 2740 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 2741 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 2742 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2743 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 2744 | btrfs_device_get_disk_total_bytes(device)); |
| 2745 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 2746 | btrfs_device_get_bytes_used(device)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2747 | btrfs_mark_buffer_dirty(leaf); |
| 2748 | |
| 2749 | out: |
| 2750 | btrfs_free_path(path); |
| 2751 | return ret; |
| 2752 | } |
| 2753 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2754 | int btrfs_grow_device(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2755 | struct btrfs_device *device, u64 new_size) |
| 2756 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2757 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 2758 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2759 | struct btrfs_fs_devices *fs_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2760 | u64 old_total; |
| 2761 | u64 diff; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2762 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2763 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2764 | return -EACCES; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2765 | |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2766 | new_size = round_down(new_size, fs_info->sectorsize); |
| 2767 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2768 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2769 | old_total = btrfs_super_total_bytes(super_copy); |
Nikolay Borisov | 0e4324a | 2017-07-21 11:28:24 +0300 | [diff] [blame] | 2770 | diff = round_down(new_size - device->total_bytes, fs_info->sectorsize); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2771 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2772 | if (new_size <= device->total_bytes || |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2773 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2774 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2775 | return -EINVAL; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2776 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2777 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2778 | fs_devices = fs_info->fs_devices; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2779 | |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2780 | btrfs_set_super_total_bytes(super_copy, |
| 2781 | round_down(old_total + diff, fs_info->sectorsize)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2782 | device->fs_devices->total_rw_bytes += diff; |
| 2783 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2784 | btrfs_device_set_total_bytes(device, new_size); |
| 2785 | btrfs_device_set_disk_total_bytes(device, new_size); |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2786 | btrfs_clear_space_info_full(device->fs_info); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2787 | if (list_empty(&device->resized_list)) |
| 2788 | list_add_tail(&device->resized_list, |
| 2789 | &fs_devices->resized_devices); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2790 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 2791 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2792 | return btrfs_update_device(trans, device); |
| 2793 | } |
| 2794 | |
| 2795 | static int btrfs_free_chunk(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2796 | struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2797 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2798 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2799 | int ret; |
| 2800 | struct btrfs_path *path; |
| 2801 | struct btrfs_key key; |
| 2802 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2803 | path = btrfs_alloc_path(); |
| 2804 | if (!path) |
| 2805 | return -ENOMEM; |
| 2806 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2807 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2808 | key.offset = chunk_offset; |
| 2809 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 2810 | |
| 2811 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2812 | if (ret < 0) |
| 2813 | goto out; |
| 2814 | else if (ret > 0) { /* Logic error or corruption */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2815 | btrfs_handle_fs_error(fs_info, -ENOENT, |
| 2816 | "Failed lookup while freeing chunk."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2817 | ret = -ENOENT; |
| 2818 | goto out; |
| 2819 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2820 | |
| 2821 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2822 | if (ret < 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2823 | btrfs_handle_fs_error(fs_info, ret, |
| 2824 | "Failed to delete chunk item."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2825 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2826 | btrfs_free_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 2827 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2828 | } |
| 2829 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2830 | static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2831 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2832 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2833 | struct btrfs_disk_key *disk_key; |
| 2834 | struct btrfs_chunk *chunk; |
| 2835 | u8 *ptr; |
| 2836 | int ret = 0; |
| 2837 | u32 num_stripes; |
| 2838 | u32 array_size; |
| 2839 | u32 len = 0; |
| 2840 | u32 cur; |
| 2841 | struct btrfs_key key; |
| 2842 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2843 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2844 | array_size = btrfs_super_sys_array_size(super_copy); |
| 2845 | |
| 2846 | ptr = super_copy->sys_chunk_array; |
| 2847 | cur = 0; |
| 2848 | |
| 2849 | while (cur < array_size) { |
| 2850 | disk_key = (struct btrfs_disk_key *)ptr; |
| 2851 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 2852 | |
| 2853 | len = sizeof(*disk_key); |
| 2854 | |
| 2855 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 2856 | chunk = (struct btrfs_chunk *)(ptr + len); |
| 2857 | num_stripes = btrfs_stack_chunk_num_stripes(chunk); |
| 2858 | len += btrfs_chunk_item_size(num_stripes); |
| 2859 | } else { |
| 2860 | ret = -EIO; |
| 2861 | break; |
| 2862 | } |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2863 | if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID && |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2864 | key.offset == chunk_offset) { |
| 2865 | memmove(ptr, ptr + len, array_size - (cur + len)); |
| 2866 | array_size -= len; |
| 2867 | btrfs_set_super_sys_array_size(super_copy, array_size); |
| 2868 | } else { |
| 2869 | ptr += len; |
| 2870 | cur += len; |
| 2871 | } |
| 2872 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2873 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2874 | return ret; |
| 2875 | } |
| 2876 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2877 | static struct extent_map *get_chunk_map(struct btrfs_fs_info *fs_info, |
| 2878 | u64 logical, u64 length) |
| 2879 | { |
| 2880 | struct extent_map_tree *em_tree; |
| 2881 | struct extent_map *em; |
| 2882 | |
| 2883 | em_tree = &fs_info->mapping_tree.map_tree; |
| 2884 | read_lock(&em_tree->lock); |
| 2885 | em = lookup_extent_mapping(em_tree, logical, length); |
| 2886 | read_unlock(&em_tree->lock); |
| 2887 | |
| 2888 | if (!em) { |
| 2889 | btrfs_crit(fs_info, "unable to find logical %llu length %llu", |
| 2890 | logical, length); |
| 2891 | return ERR_PTR(-EINVAL); |
| 2892 | } |
| 2893 | |
| 2894 | if (em->start > logical || em->start + em->len < logical) { |
| 2895 | btrfs_crit(fs_info, |
| 2896 | "found a bad mapping, wanted %llu-%llu, found %llu-%llu", |
| 2897 | logical, length, em->start, em->start + em->len); |
| 2898 | free_extent_map(em); |
| 2899 | return ERR_PTR(-EINVAL); |
| 2900 | } |
| 2901 | |
| 2902 | /* callers are responsible for dropping em's ref. */ |
| 2903 | return em; |
| 2904 | } |
| 2905 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2906 | int btrfs_remove_chunk(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2907 | struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2908 | { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2909 | struct extent_map *em; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2910 | struct map_lookup *map; |
| 2911 | u64 dev_extent_len = 0; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2912 | int i, ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2913 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2914 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2915 | em = get_chunk_map(fs_info, chunk_offset, 1); |
| 2916 | if (IS_ERR(em)) { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2917 | /* |
| 2918 | * This is a logic error, but we don't want to just rely on the |
Adam Buchbinder | bb7ab3b | 2016-03-04 11:23:12 -0800 | [diff] [blame] | 2919 | * user having built with ASSERT enabled, so if ASSERT doesn't |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2920 | * do anything we still error out. |
| 2921 | */ |
| 2922 | ASSERT(0); |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2923 | return PTR_ERR(em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2924 | } |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 2925 | map = em->map_lookup; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2926 | mutex_lock(&fs_info->chunk_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2927 | check_system_chunk(trans, fs_info, map->type); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2928 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2929 | |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2930 | /* |
| 2931 | * Take the device list mutex to prevent races with the final phase of |
| 2932 | * a device replace operation that replaces the device object associated |
| 2933 | * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()). |
| 2934 | */ |
| 2935 | mutex_lock(&fs_devices->device_list_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2936 | for (i = 0; i < map->num_stripes; i++) { |
| 2937 | struct btrfs_device *device = map->stripes[i].dev; |
| 2938 | ret = btrfs_free_dev_extent(trans, device, |
| 2939 | map->stripes[i].physical, |
| 2940 | &dev_extent_len); |
| 2941 | if (ret) { |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2942 | mutex_unlock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2943 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2944 | goto out; |
| 2945 | } |
| 2946 | |
| 2947 | if (device->bytes_used > 0) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2948 | mutex_lock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2949 | btrfs_device_set_bytes_used(device, |
| 2950 | device->bytes_used - dev_extent_len); |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 2951 | atomic64_add(dev_extent_len, &fs_info->free_chunk_space); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2952 | btrfs_clear_space_info_full(fs_info); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2953 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2954 | } |
| 2955 | |
| 2956 | if (map->stripes[i].dev) { |
| 2957 | ret = btrfs_update_device(trans, map->stripes[i].dev); |
| 2958 | if (ret) { |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2959 | mutex_unlock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2960 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2961 | goto out; |
| 2962 | } |
| 2963 | } |
| 2964 | } |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2965 | mutex_unlock(&fs_devices->device_list_mutex); |
| 2966 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2967 | ret = btrfs_free_chunk(trans, fs_info, chunk_offset); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2968 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2969 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2970 | goto out; |
| 2971 | } |
| 2972 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2973 | trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2974 | |
| 2975 | if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2976 | ret = btrfs_del_sys_chunk(fs_info, chunk_offset); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2977 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2978 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2979 | goto out; |
| 2980 | } |
| 2981 | } |
| 2982 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2983 | ret = btrfs_remove_block_group(trans, fs_info, chunk_offset, em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2984 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2985 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2986 | goto out; |
| 2987 | } |
| 2988 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2989 | out: |
| 2990 | /* once for us */ |
| 2991 | free_extent_map(em); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2992 | return ret; |
| 2993 | } |
| 2994 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2995 | static int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2996 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2997 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 2998 | struct btrfs_trans_handle *trans; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2999 | int ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3000 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3001 | /* |
| 3002 | * Prevent races with automatic removal of unused block groups. |
| 3003 | * After we relocate and before we remove the chunk with offset |
| 3004 | * chunk_offset, automatic removal of the block group can kick in, |
| 3005 | * resulting in a failure when calling btrfs_remove_chunk() below. |
| 3006 | * |
| 3007 | * Make sure to acquire this mutex before doing a tree search (dev |
| 3008 | * or chunk trees) to find chunks. Otherwise the cleaner kthread might |
| 3009 | * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after |
| 3010 | * we release the path used to search the chunk/dev tree and before |
| 3011 | * the current task acquires this mutex and calls us. |
| 3012 | */ |
David Sterba | a32bf9a | 2018-03-16 02:21:22 +0100 | [diff] [blame] | 3013 | lockdep_assert_held(&fs_info->delete_unused_bgs_mutex); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3014 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3015 | ret = btrfs_can_relocate(fs_info, chunk_offset); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3016 | if (ret) |
| 3017 | return -ENOSPC; |
| 3018 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3019 | /* step one, relocate all the extents inside this chunk */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3020 | btrfs_scrub_pause(fs_info); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3021 | ret = btrfs_relocate_block_group(fs_info, chunk_offset); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3022 | btrfs_scrub_continue(fs_info); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3023 | if (ret) |
| 3024 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3025 | |
Jeff Mahoney | 75cb379 | 2018-03-20 15:25:26 -0400 | [diff] [blame] | 3026 | /* |
| 3027 | * We add the kobjects here (and after forcing data chunk creation) |
| 3028 | * since relocation is the only place we'll create chunks of a new |
| 3029 | * type at runtime. The only place where we'll remove the last |
| 3030 | * chunk of a type is the call immediately below this one. Even |
| 3031 | * so, we're protected against races with the cleaner thread since |
| 3032 | * we're covered by the delete_unused_bgs_mutex. |
| 3033 | */ |
| 3034 | btrfs_add_raid_kobjects(fs_info); |
| 3035 | |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3036 | trans = btrfs_start_trans_remove_block_group(root->fs_info, |
| 3037 | chunk_offset); |
| 3038 | if (IS_ERR(trans)) { |
| 3039 | ret = PTR_ERR(trans); |
| 3040 | btrfs_handle_fs_error(root->fs_info, ret, NULL); |
| 3041 | return ret; |
| 3042 | } |
Naohiro Aota | 5d8eb6f | 2016-09-02 16:46:32 +0900 | [diff] [blame] | 3043 | |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3044 | /* |
| 3045 | * step two, delete the device extents and the |
| 3046 | * chunk tree entries |
| 3047 | */ |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3048 | ret = btrfs_remove_chunk(trans, fs_info, chunk_offset); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3049 | btrfs_end_transaction(trans); |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3050 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3051 | } |
| 3052 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3053 | static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3054 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3055 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3056 | struct btrfs_path *path; |
| 3057 | struct extent_buffer *leaf; |
| 3058 | struct btrfs_chunk *chunk; |
| 3059 | struct btrfs_key key; |
| 3060 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3061 | u64 chunk_type; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3062 | bool retried = false; |
| 3063 | int failed = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3064 | int ret; |
| 3065 | |
| 3066 | path = btrfs_alloc_path(); |
| 3067 | if (!path) |
| 3068 | return -ENOMEM; |
| 3069 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3070 | again: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3071 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 3072 | key.offset = (u64)-1; |
| 3073 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 3074 | |
| 3075 | while (1) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3076 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3077 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3078 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3079 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3080 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3081 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3082 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3083 | |
| 3084 | ret = btrfs_previous_item(chunk_root, path, key.objectid, |
| 3085 | key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3086 | if (ret) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3087 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3088 | if (ret < 0) |
| 3089 | goto error; |
| 3090 | if (ret > 0) |
| 3091 | break; |
| 3092 | |
| 3093 | leaf = path->nodes[0]; |
| 3094 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 3095 | |
| 3096 | chunk = btrfs_item_ptr(leaf, path->slots[0], |
| 3097 | struct btrfs_chunk); |
| 3098 | chunk_type = btrfs_chunk_type(leaf, chunk); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3099 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3100 | |
| 3101 | if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3102 | ret = btrfs_relocate_chunk(fs_info, found_key.offset); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3103 | if (ret == -ENOSPC) |
| 3104 | failed++; |
HIMANGI SARAOGI | 1458665 | 2014-07-09 03:51:41 +0530 | [diff] [blame] | 3105 | else |
| 3106 | BUG_ON(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3107 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3108 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3109 | |
| 3110 | if (found_key.offset == 0) |
| 3111 | break; |
| 3112 | key.offset = found_key.offset - 1; |
| 3113 | } |
| 3114 | ret = 0; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3115 | if (failed && !retried) { |
| 3116 | failed = 0; |
| 3117 | retried = true; |
| 3118 | goto again; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 3119 | } else if (WARN_ON(failed && retried)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3120 | ret = -ENOSPC; |
| 3121 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3122 | error: |
| 3123 | btrfs_free_path(path); |
| 3124 | return ret; |
| 3125 | } |
| 3126 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3127 | /* |
| 3128 | * return 1 : allocate a data chunk successfully, |
| 3129 | * return <0: errors during allocating a data chunk, |
| 3130 | * return 0 : no need to allocate a data chunk. |
| 3131 | */ |
| 3132 | static int btrfs_may_alloc_data_chunk(struct btrfs_fs_info *fs_info, |
| 3133 | u64 chunk_offset) |
| 3134 | { |
| 3135 | struct btrfs_block_group_cache *cache; |
| 3136 | u64 bytes_used; |
| 3137 | u64 chunk_type; |
| 3138 | |
| 3139 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3140 | ASSERT(cache); |
| 3141 | chunk_type = cache->flags; |
| 3142 | btrfs_put_block_group(cache); |
| 3143 | |
| 3144 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) { |
| 3145 | spin_lock(&fs_info->data_sinfo->lock); |
| 3146 | bytes_used = fs_info->data_sinfo->bytes_used; |
| 3147 | spin_unlock(&fs_info->data_sinfo->lock); |
| 3148 | |
| 3149 | if (!bytes_used) { |
| 3150 | struct btrfs_trans_handle *trans; |
| 3151 | int ret; |
| 3152 | |
| 3153 | trans = btrfs_join_transaction(fs_info->tree_root); |
| 3154 | if (IS_ERR(trans)) |
| 3155 | return PTR_ERR(trans); |
| 3156 | |
| 3157 | ret = btrfs_force_chunk_alloc(trans, fs_info, |
| 3158 | BTRFS_BLOCK_GROUP_DATA); |
| 3159 | btrfs_end_transaction(trans); |
| 3160 | if (ret < 0) |
| 3161 | return ret; |
| 3162 | |
Jeff Mahoney | 75cb379 | 2018-03-20 15:25:26 -0400 | [diff] [blame] | 3163 | btrfs_add_raid_kobjects(fs_info); |
| 3164 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3165 | return 1; |
| 3166 | } |
| 3167 | } |
| 3168 | return 0; |
| 3169 | } |
| 3170 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3171 | static int insert_balance_item(struct btrfs_fs_info *fs_info, |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3172 | struct btrfs_balance_control *bctl) |
| 3173 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3174 | struct btrfs_root *root = fs_info->tree_root; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3175 | struct btrfs_trans_handle *trans; |
| 3176 | struct btrfs_balance_item *item; |
| 3177 | struct btrfs_disk_balance_args disk_bargs; |
| 3178 | struct btrfs_path *path; |
| 3179 | struct extent_buffer *leaf; |
| 3180 | struct btrfs_key key; |
| 3181 | int ret, err; |
| 3182 | |
| 3183 | path = btrfs_alloc_path(); |
| 3184 | if (!path) |
| 3185 | return -ENOMEM; |
| 3186 | |
| 3187 | trans = btrfs_start_transaction(root, 0); |
| 3188 | if (IS_ERR(trans)) { |
| 3189 | btrfs_free_path(path); |
| 3190 | return PTR_ERR(trans); |
| 3191 | } |
| 3192 | |
| 3193 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3194 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3195 | key.offset = 0; |
| 3196 | |
| 3197 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 3198 | sizeof(*item)); |
| 3199 | if (ret) |
| 3200 | goto out; |
| 3201 | |
| 3202 | leaf = path->nodes[0]; |
| 3203 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 3204 | |
David Sterba | b159fa2 | 2016-11-08 18:09:03 +0100 | [diff] [blame] | 3205 | memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item)); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3206 | |
| 3207 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data); |
| 3208 | btrfs_set_balance_data(leaf, item, &disk_bargs); |
| 3209 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta); |
| 3210 | btrfs_set_balance_meta(leaf, item, &disk_bargs); |
| 3211 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys); |
| 3212 | btrfs_set_balance_sys(leaf, item, &disk_bargs); |
| 3213 | |
| 3214 | btrfs_set_balance_flags(leaf, item, bctl->flags); |
| 3215 | |
| 3216 | btrfs_mark_buffer_dirty(leaf); |
| 3217 | out: |
| 3218 | btrfs_free_path(path); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3219 | err = btrfs_commit_transaction(trans); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3220 | if (err && !ret) |
| 3221 | ret = err; |
| 3222 | return ret; |
| 3223 | } |
| 3224 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3225 | static int del_balance_item(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3226 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3227 | struct btrfs_root *root = fs_info->tree_root; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3228 | struct btrfs_trans_handle *trans; |
| 3229 | struct btrfs_path *path; |
| 3230 | struct btrfs_key key; |
| 3231 | int ret, err; |
| 3232 | |
| 3233 | path = btrfs_alloc_path(); |
| 3234 | if (!path) |
| 3235 | return -ENOMEM; |
| 3236 | |
| 3237 | trans = btrfs_start_transaction(root, 0); |
| 3238 | if (IS_ERR(trans)) { |
| 3239 | btrfs_free_path(path); |
| 3240 | return PTR_ERR(trans); |
| 3241 | } |
| 3242 | |
| 3243 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3244 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3245 | key.offset = 0; |
| 3246 | |
| 3247 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 3248 | if (ret < 0) |
| 3249 | goto out; |
| 3250 | if (ret > 0) { |
| 3251 | ret = -ENOENT; |
| 3252 | goto out; |
| 3253 | } |
| 3254 | |
| 3255 | ret = btrfs_del_item(trans, root, path); |
| 3256 | out: |
| 3257 | btrfs_free_path(path); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3258 | err = btrfs_commit_transaction(trans); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3259 | if (err && !ret) |
| 3260 | ret = err; |
| 3261 | return ret; |
| 3262 | } |
| 3263 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3264 | /* |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3265 | * This is a heuristic used to reduce the number of chunks balanced on |
| 3266 | * resume after balance was interrupted. |
| 3267 | */ |
| 3268 | static void update_balance_args(struct btrfs_balance_control *bctl) |
| 3269 | { |
| 3270 | /* |
| 3271 | * Turn on soft mode for chunk types that were being converted. |
| 3272 | */ |
| 3273 | if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3274 | bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3275 | if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3276 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3277 | if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3278 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3279 | |
| 3280 | /* |
| 3281 | * Turn on usage filter if is not already used. The idea is |
| 3282 | * that chunks that we have already balanced should be |
| 3283 | * reasonably full. Don't do it for chunks that are being |
| 3284 | * converted - that will keep us from relocating unconverted |
| 3285 | * (albeit full) chunks. |
| 3286 | */ |
| 3287 | if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3288 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3289 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3290 | bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3291 | bctl->data.usage = 90; |
| 3292 | } |
| 3293 | if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3294 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3295 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3296 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3297 | bctl->sys.usage = 90; |
| 3298 | } |
| 3299 | if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3300 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3301 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3302 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3303 | bctl->meta.usage = 90; |
| 3304 | } |
| 3305 | } |
| 3306 | |
| 3307 | /* |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3308 | * Should be called with both balance and volume mutexes held to |
| 3309 | * serialize other volume operations (add_dev/rm_dev/resize) with |
| 3310 | * restriper. Same goes for unset_balance_control. |
| 3311 | */ |
| 3312 | static void set_balance_control(struct btrfs_balance_control *bctl) |
| 3313 | { |
| 3314 | struct btrfs_fs_info *fs_info = bctl->fs_info; |
| 3315 | |
| 3316 | BUG_ON(fs_info->balance_ctl); |
| 3317 | |
| 3318 | spin_lock(&fs_info->balance_lock); |
| 3319 | fs_info->balance_ctl = bctl; |
| 3320 | spin_unlock(&fs_info->balance_lock); |
| 3321 | } |
| 3322 | |
| 3323 | static void unset_balance_control(struct btrfs_fs_info *fs_info) |
| 3324 | { |
| 3325 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 3326 | |
| 3327 | BUG_ON(!fs_info->balance_ctl); |
| 3328 | |
| 3329 | spin_lock(&fs_info->balance_lock); |
| 3330 | fs_info->balance_ctl = NULL; |
| 3331 | spin_unlock(&fs_info->balance_lock); |
| 3332 | |
| 3333 | kfree(bctl); |
| 3334 | } |
| 3335 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3336 | /* |
| 3337 | * Balance filters. Return 1 if chunk should be filtered out |
| 3338 | * (should not be balanced). |
| 3339 | */ |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3340 | static int chunk_profiles_filter(u64 chunk_type, |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3341 | struct btrfs_balance_args *bargs) |
| 3342 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3343 | chunk_type = chunk_to_extended(chunk_type) & |
| 3344 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3345 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3346 | if (bargs->profiles & chunk_type) |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3347 | return 0; |
| 3348 | |
| 3349 | return 1; |
| 3350 | } |
| 3351 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3352 | static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset, |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3353 | struct btrfs_balance_args *bargs) |
| 3354 | { |
| 3355 | struct btrfs_block_group_cache *cache; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3356 | u64 chunk_used; |
| 3357 | u64 user_thresh_min; |
| 3358 | u64 user_thresh_max; |
| 3359 | int ret = 1; |
| 3360 | |
| 3361 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3362 | chunk_used = btrfs_block_group_used(&cache->item); |
| 3363 | |
| 3364 | if (bargs->usage_min == 0) |
| 3365 | user_thresh_min = 0; |
| 3366 | else |
| 3367 | user_thresh_min = div_factor_fine(cache->key.offset, |
| 3368 | bargs->usage_min); |
| 3369 | |
| 3370 | if (bargs->usage_max == 0) |
| 3371 | user_thresh_max = 1; |
| 3372 | else if (bargs->usage_max > 100) |
| 3373 | user_thresh_max = cache->key.offset; |
| 3374 | else |
| 3375 | user_thresh_max = div_factor_fine(cache->key.offset, |
| 3376 | bargs->usage_max); |
| 3377 | |
| 3378 | if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max) |
| 3379 | ret = 0; |
| 3380 | |
| 3381 | btrfs_put_block_group(cache); |
| 3382 | return ret; |
| 3383 | } |
| 3384 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3385 | static int chunk_usage_filter(struct btrfs_fs_info *fs_info, |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3386 | u64 chunk_offset, struct btrfs_balance_args *bargs) |
| 3387 | { |
| 3388 | struct btrfs_block_group_cache *cache; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3389 | u64 chunk_used, user_thresh; |
| 3390 | int ret = 1; |
| 3391 | |
| 3392 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3393 | chunk_used = btrfs_block_group_used(&cache->item); |
| 3394 | |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3395 | if (bargs->usage_min == 0) |
Ilya Dryomov | 3e39cea | 2013-02-12 16:28:59 +0000 | [diff] [blame] | 3396 | user_thresh = 1; |
Ilya Dryomov | a105bb8 | 2013-01-21 15:15:56 +0200 | [diff] [blame] | 3397 | else if (bargs->usage > 100) |
| 3398 | user_thresh = cache->key.offset; |
| 3399 | else |
| 3400 | user_thresh = div_factor_fine(cache->key.offset, |
| 3401 | bargs->usage); |
| 3402 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3403 | if (chunk_used < user_thresh) |
| 3404 | ret = 0; |
| 3405 | |
| 3406 | btrfs_put_block_group(cache); |
| 3407 | return ret; |
| 3408 | } |
| 3409 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3410 | static int chunk_devid_filter(struct extent_buffer *leaf, |
| 3411 | struct btrfs_chunk *chunk, |
| 3412 | struct btrfs_balance_args *bargs) |
| 3413 | { |
| 3414 | struct btrfs_stripe *stripe; |
| 3415 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3416 | int i; |
| 3417 | |
| 3418 | for (i = 0; i < num_stripes; i++) { |
| 3419 | stripe = btrfs_stripe_nr(chunk, i); |
| 3420 | if (btrfs_stripe_devid(leaf, stripe) == bargs->devid) |
| 3421 | return 0; |
| 3422 | } |
| 3423 | |
| 3424 | return 1; |
| 3425 | } |
| 3426 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3427 | /* [pstart, pend) */ |
| 3428 | static int chunk_drange_filter(struct extent_buffer *leaf, |
| 3429 | struct btrfs_chunk *chunk, |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3430 | struct btrfs_balance_args *bargs) |
| 3431 | { |
| 3432 | struct btrfs_stripe *stripe; |
| 3433 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3434 | u64 stripe_offset; |
| 3435 | u64 stripe_length; |
| 3436 | int factor; |
| 3437 | int i; |
| 3438 | |
| 3439 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID)) |
| 3440 | return 0; |
| 3441 | |
| 3442 | if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3443 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 3444 | factor = num_stripes / 2; |
| 3445 | } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) { |
| 3446 | factor = num_stripes - 1; |
| 3447 | } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) { |
| 3448 | factor = num_stripes - 2; |
| 3449 | } else { |
| 3450 | factor = num_stripes; |
| 3451 | } |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3452 | |
| 3453 | for (i = 0; i < num_stripes; i++) { |
| 3454 | stripe = btrfs_stripe_nr(chunk, i); |
| 3455 | if (btrfs_stripe_devid(leaf, stripe) != bargs->devid) |
| 3456 | continue; |
| 3457 | |
| 3458 | stripe_offset = btrfs_stripe_offset(leaf, stripe); |
| 3459 | stripe_length = btrfs_chunk_length(leaf, chunk); |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 3460 | stripe_length = div_u64(stripe_length, factor); |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3461 | |
| 3462 | if (stripe_offset < bargs->pend && |
| 3463 | stripe_offset + stripe_length > bargs->pstart) |
| 3464 | return 0; |
| 3465 | } |
| 3466 | |
| 3467 | return 1; |
| 3468 | } |
| 3469 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3470 | /* [vstart, vend) */ |
| 3471 | static int chunk_vrange_filter(struct extent_buffer *leaf, |
| 3472 | struct btrfs_chunk *chunk, |
| 3473 | u64 chunk_offset, |
| 3474 | struct btrfs_balance_args *bargs) |
| 3475 | { |
| 3476 | if (chunk_offset < bargs->vend && |
| 3477 | chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart) |
| 3478 | /* at least part of the chunk is inside this vrange */ |
| 3479 | return 0; |
| 3480 | |
| 3481 | return 1; |
| 3482 | } |
| 3483 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3484 | static int chunk_stripes_range_filter(struct extent_buffer *leaf, |
| 3485 | struct btrfs_chunk *chunk, |
| 3486 | struct btrfs_balance_args *bargs) |
| 3487 | { |
| 3488 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3489 | |
| 3490 | if (bargs->stripes_min <= num_stripes |
| 3491 | && num_stripes <= bargs->stripes_max) |
| 3492 | return 0; |
| 3493 | |
| 3494 | return 1; |
| 3495 | } |
| 3496 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3497 | static int chunk_soft_convert_filter(u64 chunk_type, |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3498 | struct btrfs_balance_args *bargs) |
| 3499 | { |
| 3500 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT)) |
| 3501 | return 0; |
| 3502 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3503 | chunk_type = chunk_to_extended(chunk_type) & |
| 3504 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3505 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3506 | if (bargs->target == chunk_type) |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3507 | return 1; |
| 3508 | |
| 3509 | return 0; |
| 3510 | } |
| 3511 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3512 | static int should_balance_chunk(struct btrfs_fs_info *fs_info, |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3513 | struct extent_buffer *leaf, |
| 3514 | struct btrfs_chunk *chunk, u64 chunk_offset) |
| 3515 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3516 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3517 | struct btrfs_balance_args *bargs = NULL; |
| 3518 | u64 chunk_type = btrfs_chunk_type(leaf, chunk); |
| 3519 | |
| 3520 | /* type filter */ |
| 3521 | if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) & |
| 3522 | (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) { |
| 3523 | return 0; |
| 3524 | } |
| 3525 | |
| 3526 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3527 | bargs = &bctl->data; |
| 3528 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3529 | bargs = &bctl->sys; |
| 3530 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3531 | bargs = &bctl->meta; |
| 3532 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3533 | /* profiles filter */ |
| 3534 | if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) && |
| 3535 | chunk_profiles_filter(chunk_type, bargs)) { |
| 3536 | return 0; |
| 3537 | } |
| 3538 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3539 | /* usage filter */ |
| 3540 | if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3541 | chunk_usage_filter(fs_info, chunk_offset, bargs)) { |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3542 | return 0; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3543 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3544 | chunk_usage_range_filter(fs_info, chunk_offset, bargs)) { |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3545 | return 0; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3546 | } |
| 3547 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3548 | /* devid filter */ |
| 3549 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) && |
| 3550 | chunk_devid_filter(leaf, chunk, bargs)) { |
| 3551 | return 0; |
| 3552 | } |
| 3553 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3554 | /* drange filter, makes sense only with devid filter */ |
| 3555 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) && |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 3556 | chunk_drange_filter(leaf, chunk, bargs)) { |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3557 | return 0; |
| 3558 | } |
| 3559 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3560 | /* vrange filter */ |
| 3561 | if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) && |
| 3562 | chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) { |
| 3563 | return 0; |
| 3564 | } |
| 3565 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3566 | /* stripes filter */ |
| 3567 | if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) && |
| 3568 | chunk_stripes_range_filter(leaf, chunk, bargs)) { |
| 3569 | return 0; |
| 3570 | } |
| 3571 | |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3572 | /* soft profile changing mode */ |
| 3573 | if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) && |
| 3574 | chunk_soft_convert_filter(chunk_type, bargs)) { |
| 3575 | return 0; |
| 3576 | } |
| 3577 | |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3578 | /* |
| 3579 | * limited by count, must be the last filter |
| 3580 | */ |
| 3581 | if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) { |
| 3582 | if (bargs->limit == 0) |
| 3583 | return 0; |
| 3584 | else |
| 3585 | bargs->limit--; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3586 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) { |
| 3587 | /* |
| 3588 | * Same logic as the 'limit' filter; the minimum cannot be |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 3589 | * determined here because we do not have the global information |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3590 | * about the count of all chunks that satisfy the filters. |
| 3591 | */ |
| 3592 | if (bargs->limit_max == 0) |
| 3593 | return 0; |
| 3594 | else |
| 3595 | bargs->limit_max--; |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3596 | } |
| 3597 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3598 | return 1; |
| 3599 | } |
| 3600 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3601 | static int __btrfs_balance(struct btrfs_fs_info *fs_info) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3602 | { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3603 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3604 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
| 3605 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 3606 | struct list_head *devices; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3607 | struct btrfs_device *device; |
| 3608 | u64 old_size; |
| 3609 | u64 size_to_free; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3610 | u64 chunk_type; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3611 | struct btrfs_chunk *chunk; |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3612 | struct btrfs_path *path = NULL; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3613 | struct btrfs_key key; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3614 | struct btrfs_key found_key; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3615 | struct btrfs_trans_handle *trans; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3616 | struct extent_buffer *leaf; |
| 3617 | int slot; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3618 | int ret; |
| 3619 | int enospc_errors = 0; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3620 | bool counting = true; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3621 | /* The single value limit and min/max limits use the same bytes in the */ |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3622 | u64 limit_data = bctl->data.limit; |
| 3623 | u64 limit_meta = bctl->meta.limit; |
| 3624 | u64 limit_sys = bctl->sys.limit; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3625 | u32 count_data = 0; |
| 3626 | u32 count_meta = 0; |
| 3627 | u32 count_sys = 0; |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3628 | int chunk_reserved = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3629 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3630 | /* step one make some room on all the devices */ |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3631 | devices = &fs_info->fs_devices->devices; |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 3632 | list_for_each_entry(device, devices, dev_list) { |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 3633 | old_size = btrfs_device_get_total_bytes(device); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3634 | size_to_free = div_factor(old_size, 1); |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3635 | size_to_free = min_t(u64, size_to_free, SZ_1M); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 3636 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) || |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 3637 | btrfs_device_get_total_bytes(device) - |
| 3638 | btrfs_device_get_bytes_used(device) > size_to_free || |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 3639 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3640 | continue; |
| 3641 | |
| 3642 | ret = btrfs_shrink_device(device, old_size - size_to_free); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3643 | if (ret == -ENOSPC) |
| 3644 | break; |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3645 | if (ret) { |
| 3646 | /* btrfs_shrink_device never returns ret > 0 */ |
| 3647 | WARN_ON(ret > 0); |
| 3648 | goto error; |
| 3649 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3650 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3651 | trans = btrfs_start_transaction(dev_root, 0); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3652 | if (IS_ERR(trans)) { |
| 3653 | ret = PTR_ERR(trans); |
| 3654 | btrfs_info_in_rcu(fs_info, |
| 3655 | "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu", |
| 3656 | rcu_str_deref(device->name), ret, |
| 3657 | old_size, old_size - size_to_free); |
| 3658 | goto error; |
| 3659 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3660 | |
| 3661 | ret = btrfs_grow_device(trans, device, old_size); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3662 | if (ret) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3663 | btrfs_end_transaction(trans); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3664 | /* btrfs_grow_device never returns ret > 0 */ |
| 3665 | WARN_ON(ret > 0); |
| 3666 | btrfs_info_in_rcu(fs_info, |
| 3667 | "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu", |
| 3668 | rcu_str_deref(device->name), ret, |
| 3669 | old_size, old_size - size_to_free); |
| 3670 | goto error; |
| 3671 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3672 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3673 | btrfs_end_transaction(trans); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3674 | } |
| 3675 | |
| 3676 | /* step two, relocate all the chunks */ |
| 3677 | path = btrfs_alloc_path(); |
Mark Fasheh | 17e9f79 | 2011-07-12 11:10:23 -0700 | [diff] [blame] | 3678 | if (!path) { |
| 3679 | ret = -ENOMEM; |
| 3680 | goto error; |
| 3681 | } |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3682 | |
| 3683 | /* zero out stat counters */ |
| 3684 | spin_lock(&fs_info->balance_lock); |
| 3685 | memset(&bctl->stat, 0, sizeof(bctl->stat)); |
| 3686 | spin_unlock(&fs_info->balance_lock); |
| 3687 | again: |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3688 | if (!counting) { |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3689 | /* |
| 3690 | * The single value limit and min/max limits use the same bytes |
| 3691 | * in the |
| 3692 | */ |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3693 | bctl->data.limit = limit_data; |
| 3694 | bctl->meta.limit = limit_meta; |
| 3695 | bctl->sys.limit = limit_sys; |
| 3696 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3697 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 3698 | key.offset = (u64)-1; |
| 3699 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 3700 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3701 | while (1) { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3702 | if ((!counting && atomic_read(&fs_info->balance_pause_req)) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3703 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3704 | ret = -ECANCELED; |
| 3705 | goto error; |
| 3706 | } |
| 3707 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3708 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3709 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3710 | if (ret < 0) { |
| 3711 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3712 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3713 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3714 | |
| 3715 | /* |
| 3716 | * this shouldn't happen, it means the last relocate |
| 3717 | * failed |
| 3718 | */ |
| 3719 | if (ret == 0) |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3720 | BUG(); /* FIXME break ? */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3721 | |
| 3722 | ret = btrfs_previous_item(chunk_root, path, 0, |
| 3723 | BTRFS_CHUNK_ITEM_KEY); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3724 | if (ret) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3725 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3726 | ret = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3727 | break; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3728 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3729 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3730 | leaf = path->nodes[0]; |
| 3731 | slot = path->slots[0]; |
| 3732 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 3733 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3734 | if (found_key.objectid != key.objectid) { |
| 3735 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3736 | break; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3737 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3738 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3739 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3740 | chunk_type = btrfs_chunk_type(leaf, chunk); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3741 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3742 | if (!counting) { |
| 3743 | spin_lock(&fs_info->balance_lock); |
| 3744 | bctl->stat.considered++; |
| 3745 | spin_unlock(&fs_info->balance_lock); |
| 3746 | } |
| 3747 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3748 | ret = should_balance_chunk(fs_info, leaf, chunk, |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3749 | found_key.offset); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3750 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3751 | btrfs_release_path(path); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3752 | if (!ret) { |
| 3753 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3754 | goto loop; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3755 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3756 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3757 | if (counting) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3758 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3759 | spin_lock(&fs_info->balance_lock); |
| 3760 | bctl->stat.expected++; |
| 3761 | spin_unlock(&fs_info->balance_lock); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3762 | |
| 3763 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3764 | count_data++; |
| 3765 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3766 | count_sys++; |
| 3767 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3768 | count_meta++; |
| 3769 | |
| 3770 | goto loop; |
| 3771 | } |
| 3772 | |
| 3773 | /* |
| 3774 | * Apply limit_min filter, no need to check if the LIMITS |
| 3775 | * filter is used, limit_min is 0 by default |
| 3776 | */ |
| 3777 | if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) && |
| 3778 | count_data < bctl->data.limit_min) |
| 3779 | || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) && |
| 3780 | count_meta < bctl->meta.limit_min) |
| 3781 | || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) && |
| 3782 | count_sys < bctl->sys.limit_min)) { |
| 3783 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3784 | goto loop; |
| 3785 | } |
| 3786 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3787 | if (!chunk_reserved) { |
| 3788 | /* |
| 3789 | * We may be relocating the only data chunk we have, |
| 3790 | * which could potentially end up with losing data's |
| 3791 | * raid profile, so lets allocate an empty one in |
| 3792 | * advance. |
| 3793 | */ |
| 3794 | ret = btrfs_may_alloc_data_chunk(fs_info, |
| 3795 | found_key.offset); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3796 | if (ret < 0) { |
| 3797 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
| 3798 | goto error; |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3799 | } else if (ret == 1) { |
| 3800 | chunk_reserved = 1; |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3801 | } |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3802 | } |
| 3803 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3804 | ret = btrfs_relocate_chunk(fs_info, found_key.offset); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3805 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 508794e | 2011-07-02 21:24:41 +0000 | [diff] [blame] | 3806 | if (ret && ret != -ENOSPC) |
| 3807 | goto error; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3808 | if (ret == -ENOSPC) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3809 | enospc_errors++; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3810 | } else { |
| 3811 | spin_lock(&fs_info->balance_lock); |
| 3812 | bctl->stat.completed++; |
| 3813 | spin_unlock(&fs_info->balance_lock); |
| 3814 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3815 | loop: |
Ilya Dryomov | 795a332 | 2013-08-27 13:50:44 +0300 | [diff] [blame] | 3816 | if (found_key.offset == 0) |
| 3817 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3818 | key.offset = found_key.offset - 1; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3819 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3820 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3821 | if (counting) { |
| 3822 | btrfs_release_path(path); |
| 3823 | counting = false; |
| 3824 | goto again; |
| 3825 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3826 | error: |
| 3827 | btrfs_free_path(path); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3828 | if (enospc_errors) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3829 | btrfs_info(fs_info, "%d enospc errors during balance", |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3830 | enospc_errors); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3831 | if (!ret) |
| 3832 | ret = -ENOSPC; |
| 3833 | } |
| 3834 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3835 | return ret; |
| 3836 | } |
| 3837 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3838 | /** |
| 3839 | * alloc_profile_is_valid - see if a given profile is valid and reduced |
| 3840 | * @flags: profile to validate |
| 3841 | * @extended: if true @flags is treated as an extended profile |
| 3842 | */ |
| 3843 | static int alloc_profile_is_valid(u64 flags, int extended) |
| 3844 | { |
| 3845 | u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK : |
| 3846 | BTRFS_BLOCK_GROUP_PROFILE_MASK); |
| 3847 | |
| 3848 | flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK; |
| 3849 | |
| 3850 | /* 1) check that all other bits are zeroed */ |
| 3851 | if (flags & ~mask) |
| 3852 | return 0; |
| 3853 | |
| 3854 | /* 2) see if profile is reduced */ |
| 3855 | if (flags == 0) |
| 3856 | return !extended; /* "0" is valid for usual profiles */ |
| 3857 | |
| 3858 | /* true if exactly one bit set */ |
| 3859 | return (flags & (flags - 1)) == 0; |
| 3860 | } |
| 3861 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3862 | static inline int balance_need_close(struct btrfs_fs_info *fs_info) |
| 3863 | { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3864 | /* cancel requested || normal exit path */ |
| 3865 | return atomic_read(&fs_info->balance_cancel_req) || |
| 3866 | (atomic_read(&fs_info->balance_pause_req) == 0 && |
| 3867 | atomic_read(&fs_info->balance_cancel_req) == 0); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3868 | } |
| 3869 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3870 | static void __cancel_balance(struct btrfs_fs_info *fs_info) |
| 3871 | { |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3872 | int ret; |
| 3873 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3874 | unset_balance_control(fs_info); |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3875 | ret = del_balance_item(fs_info); |
Liu Bo | 0f788c5 | 2013-03-04 16:25:40 +0000 | [diff] [blame] | 3876 | if (ret) |
Anand Jain | 34d9700 | 2016-03-16 16:43:06 +0800 | [diff] [blame] | 3877 | btrfs_handle_fs_error(fs_info, ret, NULL); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 3878 | |
David Sterba | 171938e | 2017-03-28 14:44:21 +0200 | [diff] [blame] | 3879 | clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3880 | } |
| 3881 | |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3882 | /* Non-zero return value signifies invalidity */ |
| 3883 | static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg, |
| 3884 | u64 allowed) |
| 3885 | { |
| 3886 | return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3887 | (!alloc_profile_is_valid(bctl_arg->target, 1) || |
| 3888 | (bctl_arg->target & ~allowed))); |
| 3889 | } |
| 3890 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3891 | /* |
| 3892 | * Should be called with both balance and volume mutexes held |
| 3893 | */ |
| 3894 | int btrfs_balance(struct btrfs_balance_control *bctl, |
| 3895 | struct btrfs_ioctl_balance_args *bargs) |
| 3896 | { |
| 3897 | struct btrfs_fs_info *fs_info = bctl->fs_info; |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 3898 | u64 meta_target, data_target; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3899 | u64 allowed; |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3900 | int mixed = 0; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3901 | int ret; |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3902 | u64 num_devices; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3903 | unsigned seq; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3904 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3905 | if (btrfs_fs_closing(fs_info) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3906 | atomic_read(&fs_info->balance_pause_req) || |
| 3907 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3908 | ret = -EINVAL; |
| 3909 | goto out; |
| 3910 | } |
| 3911 | |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3912 | allowed = btrfs_super_incompat_flags(fs_info->super_copy); |
| 3913 | if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 3914 | mixed = 1; |
| 3915 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3916 | /* |
| 3917 | * In case of mixed groups both data and meta should be picked, |
| 3918 | * and identical options should be given for both of them. |
| 3919 | */ |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3920 | allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA; |
| 3921 | if (mixed && (bctl->flags & allowed)) { |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3922 | if (!(bctl->flags & BTRFS_BALANCE_DATA) || |
| 3923 | !(bctl->flags & BTRFS_BALANCE_METADATA) || |
| 3924 | memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3925 | btrfs_err(fs_info, |
| 3926 | "with mixed groups data and metadata balance options must be the same"); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3927 | ret = -EINVAL; |
| 3928 | goto out; |
| 3929 | } |
| 3930 | } |
| 3931 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3932 | num_devices = fs_info->fs_devices->num_devices; |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 3933 | btrfs_dev_replace_read_lock(&fs_info->dev_replace); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3934 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) { |
| 3935 | BUG_ON(num_devices < 1); |
| 3936 | num_devices--; |
| 3937 | } |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 3938 | btrfs_dev_replace_read_unlock(&fs_info->dev_replace); |
Austin S. Hemmelgarn | 88be159 | 2016-03-23 14:22:59 -0400 | [diff] [blame] | 3939 | allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP; |
| 3940 | if (num_devices > 1) |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3941 | allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1); |
Andreas Philipp | 8250dab | 2013-05-11 11:13:03 +0000 | [diff] [blame] | 3942 | if (num_devices > 2) |
| 3943 | allowed |= BTRFS_BLOCK_GROUP_RAID5; |
| 3944 | if (num_devices > 3) |
| 3945 | allowed |= (BTRFS_BLOCK_GROUP_RAID10 | |
| 3946 | BTRFS_BLOCK_GROUP_RAID6); |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3947 | if (validate_convert_profile(&bctl->data, allowed)) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3948 | btrfs_err(fs_info, |
| 3949 | "unable to start balance with target data profile %llu", |
| 3950 | bctl->data.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3951 | ret = -EINVAL; |
| 3952 | goto out; |
| 3953 | } |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3954 | if (validate_convert_profile(&bctl->meta, allowed)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3955 | btrfs_err(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3956 | "unable to start balance with target metadata profile %llu", |
| 3957 | bctl->meta.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3958 | ret = -EINVAL; |
| 3959 | goto out; |
| 3960 | } |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3961 | if (validate_convert_profile(&bctl->sys, allowed)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3962 | btrfs_err(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3963 | "unable to start balance with target system profile %llu", |
| 3964 | bctl->sys.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3965 | ret = -EINVAL; |
| 3966 | goto out; |
| 3967 | } |
| 3968 | |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3969 | /* allow to reduce meta or sys integrity only if force set */ |
| 3970 | allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3971 | BTRFS_BLOCK_GROUP_RAID10 | |
| 3972 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3973 | BTRFS_BLOCK_GROUP_RAID6; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3974 | do { |
| 3975 | seq = read_seqbegin(&fs_info->profiles_lock); |
| 3976 | |
| 3977 | if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3978 | (fs_info->avail_system_alloc_bits & allowed) && |
| 3979 | !(bctl->sys.target & allowed)) || |
| 3980 | ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3981 | (fs_info->avail_metadata_alloc_bits & allowed) && |
| 3982 | !(bctl->meta.target & allowed))) { |
| 3983 | if (bctl->flags & BTRFS_BALANCE_FORCE) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3984 | btrfs_info(fs_info, |
| 3985 | "force reducing metadata integrity"); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3986 | } else { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3987 | btrfs_err(fs_info, |
| 3988 | "balance will reduce metadata integrity, use force if you want this"); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3989 | ret = -EINVAL; |
| 3990 | goto out; |
| 3991 | } |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3992 | } |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3993 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3994 | |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 3995 | /* if we're not converting, the target field is uninitialized */ |
| 3996 | meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ? |
| 3997 | bctl->meta.target : fs_info->avail_metadata_alloc_bits; |
| 3998 | data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ? |
| 3999 | bctl->data.target : fs_info->avail_data_alloc_bits; |
| 4000 | if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) < |
| 4001 | btrfs_get_num_tolerated_disk_barrier_failures(data_target)) { |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 4002 | btrfs_warn(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 4003 | "metadata profile 0x%llx has lower redundancy than data profile 0x%llx", |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 4004 | meta_target, data_target); |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 4005 | } |
| 4006 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4007 | ret = insert_balance_item(fs_info, bctl); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4008 | if (ret && ret != -EEXIST) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4009 | goto out; |
| 4010 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4011 | if (!(bctl->flags & BTRFS_BALANCE_RESUME)) { |
| 4012 | BUG_ON(ret == -EEXIST); |
| 4013 | set_balance_control(bctl); |
| 4014 | } else { |
| 4015 | BUG_ON(ret != -EEXIST); |
| 4016 | spin_lock(&fs_info->balance_lock); |
| 4017 | update_balance_args(bctl); |
| 4018 | spin_unlock(&fs_info->balance_lock); |
| 4019 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4020 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4021 | atomic_inc(&fs_info->balance_running); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4022 | mutex_unlock(&fs_info->balance_mutex); |
| 4023 | |
| 4024 | ret = __btrfs_balance(fs_info); |
| 4025 | |
| 4026 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4027 | atomic_dec(&fs_info->balance_running); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4028 | |
| 4029 | if (bargs) { |
| 4030 | memset(bargs, 0, sizeof(*bargs)); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4031 | update_ioctl_balance_args(fs_info, 0, bargs); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4032 | } |
| 4033 | |
Ilya Dryomov | 3a01aa7 | 2013-03-06 01:57:55 -0700 | [diff] [blame] | 4034 | if ((ret && ret != -ECANCELED && ret != -ENOSPC) || |
| 4035 | balance_need_close(fs_info)) { |
| 4036 | __cancel_balance(fs_info); |
| 4037 | } |
| 4038 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4039 | wake_up(&fs_info->balance_wait_q); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4040 | |
| 4041 | return ret; |
| 4042 | out: |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4043 | if (bctl->flags & BTRFS_BALANCE_RESUME) |
| 4044 | __cancel_balance(fs_info); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 4045 | else { |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4046 | kfree(bctl); |
David Sterba | 171938e | 2017-03-28 14:44:21 +0200 | [diff] [blame] | 4047 | clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 4048 | } |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4049 | return ret; |
| 4050 | } |
| 4051 | |
| 4052 | static int balance_kthread(void *data) |
| 4053 | { |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4054 | struct btrfs_fs_info *fs_info = data; |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4055 | int ret = 0; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4056 | |
| 4057 | mutex_lock(&fs_info->volume_mutex); |
| 4058 | mutex_lock(&fs_info->balance_mutex); |
| 4059 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4060 | if (fs_info->balance_ctl) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4061 | btrfs_info(fs_info, "continuing balance"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4062 | ret = btrfs_balance(fs_info->balance_ctl, NULL); |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4063 | } |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4064 | |
| 4065 | mutex_unlock(&fs_info->balance_mutex); |
| 4066 | mutex_unlock(&fs_info->volume_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4067 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4068 | return ret; |
| 4069 | } |
| 4070 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4071 | int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info) |
| 4072 | { |
| 4073 | struct task_struct *tsk; |
| 4074 | |
| 4075 | spin_lock(&fs_info->balance_lock); |
| 4076 | if (!fs_info->balance_ctl) { |
| 4077 | spin_unlock(&fs_info->balance_lock); |
| 4078 | return 0; |
| 4079 | } |
| 4080 | spin_unlock(&fs_info->balance_lock); |
| 4081 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 4082 | if (btrfs_test_opt(fs_info, SKIP_BALANCE)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4083 | btrfs_info(fs_info, "force skipping balance"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4084 | return 0; |
| 4085 | } |
| 4086 | |
Anand Jain | 02ee654 | 2018-05-17 15:16:51 +0800 | [diff] [blame] | 4087 | /* |
| 4088 | * A ro->rw remount sequence should continue with the paused balance |
| 4089 | * regardless of who pauses it, system or the user as of now, so set |
| 4090 | * the resume flag. |
| 4091 | */ |
| 4092 | spin_lock(&fs_info->balance_lock); |
| 4093 | fs_info->balance_ctl->flags |= BTRFS_BALANCE_RESUME; |
| 4094 | spin_unlock(&fs_info->balance_lock); |
| 4095 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4096 | tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance"); |
Sachin Kamat | cd63397 | 2013-07-15 16:52:18 +0530 | [diff] [blame] | 4097 | return PTR_ERR_OR_ZERO(tsk); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4098 | } |
| 4099 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4100 | int btrfs_recover_balance(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4101 | { |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4102 | struct btrfs_balance_control *bctl; |
| 4103 | struct btrfs_balance_item *item; |
| 4104 | struct btrfs_disk_balance_args disk_bargs; |
| 4105 | struct btrfs_path *path; |
| 4106 | struct extent_buffer *leaf; |
| 4107 | struct btrfs_key key; |
| 4108 | int ret; |
| 4109 | |
| 4110 | path = btrfs_alloc_path(); |
| 4111 | if (!path) |
| 4112 | return -ENOMEM; |
| 4113 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4114 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 4115 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4116 | key.offset = 0; |
| 4117 | |
| 4118 | ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0); |
| 4119 | if (ret < 0) |
| 4120 | goto out; |
| 4121 | if (ret > 0) { /* ret = -ENOENT; */ |
| 4122 | ret = 0; |
| 4123 | goto out; |
| 4124 | } |
| 4125 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4126 | bctl = kzalloc(sizeof(*bctl), GFP_NOFS); |
| 4127 | if (!bctl) { |
| 4128 | ret = -ENOMEM; |
| 4129 | goto out; |
| 4130 | } |
| 4131 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4132 | leaf = path->nodes[0]; |
| 4133 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 4134 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4135 | bctl->fs_info = fs_info; |
| 4136 | bctl->flags = btrfs_balance_flags(leaf, item); |
| 4137 | bctl->flags |= BTRFS_BALANCE_RESUME; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4138 | |
| 4139 | btrfs_balance_data(leaf, item, &disk_bargs); |
| 4140 | btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs); |
| 4141 | btrfs_balance_meta(leaf, item, &disk_bargs); |
| 4142 | btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs); |
| 4143 | btrfs_balance_sys(leaf, item, &disk_bargs); |
| 4144 | btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs); |
| 4145 | |
David Sterba | 171938e | 2017-03-28 14:44:21 +0200 | [diff] [blame] | 4146 | WARN_ON(test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 4147 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4148 | mutex_lock(&fs_info->volume_mutex); |
| 4149 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4150 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4151 | set_balance_control(bctl); |
| 4152 | |
| 4153 | mutex_unlock(&fs_info->balance_mutex); |
| 4154 | mutex_unlock(&fs_info->volume_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4155 | out: |
| 4156 | btrfs_free_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4157 | return ret; |
| 4158 | } |
| 4159 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4160 | int btrfs_pause_balance(struct btrfs_fs_info *fs_info) |
| 4161 | { |
| 4162 | int ret = 0; |
| 4163 | |
| 4164 | mutex_lock(&fs_info->balance_mutex); |
| 4165 | if (!fs_info->balance_ctl) { |
| 4166 | mutex_unlock(&fs_info->balance_mutex); |
| 4167 | return -ENOTCONN; |
| 4168 | } |
| 4169 | |
| 4170 | if (atomic_read(&fs_info->balance_running)) { |
| 4171 | atomic_inc(&fs_info->balance_pause_req); |
| 4172 | mutex_unlock(&fs_info->balance_mutex); |
| 4173 | |
| 4174 | wait_event(fs_info->balance_wait_q, |
| 4175 | atomic_read(&fs_info->balance_running) == 0); |
| 4176 | |
| 4177 | mutex_lock(&fs_info->balance_mutex); |
| 4178 | /* we are good with balance_ctl ripped off from under us */ |
| 4179 | BUG_ON(atomic_read(&fs_info->balance_running)); |
| 4180 | atomic_dec(&fs_info->balance_pause_req); |
| 4181 | } else { |
| 4182 | ret = -ENOTCONN; |
| 4183 | } |
| 4184 | |
| 4185 | mutex_unlock(&fs_info->balance_mutex); |
| 4186 | return ret; |
| 4187 | } |
| 4188 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4189 | int btrfs_cancel_balance(struct btrfs_fs_info *fs_info) |
| 4190 | { |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 4191 | if (sb_rdonly(fs_info->sb)) |
Ilya Dryomov | e649e58 | 2013-10-10 20:40:21 +0300 | [diff] [blame] | 4192 | return -EROFS; |
| 4193 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4194 | mutex_lock(&fs_info->balance_mutex); |
| 4195 | if (!fs_info->balance_ctl) { |
| 4196 | mutex_unlock(&fs_info->balance_mutex); |
| 4197 | return -ENOTCONN; |
| 4198 | } |
| 4199 | |
| 4200 | atomic_inc(&fs_info->balance_cancel_req); |
| 4201 | /* |
| 4202 | * if we are running just wait and return, balance item is |
| 4203 | * deleted in btrfs_balance in this case |
| 4204 | */ |
| 4205 | if (atomic_read(&fs_info->balance_running)) { |
| 4206 | mutex_unlock(&fs_info->balance_mutex); |
| 4207 | wait_event(fs_info->balance_wait_q, |
| 4208 | atomic_read(&fs_info->balance_running) == 0); |
| 4209 | mutex_lock(&fs_info->balance_mutex); |
| 4210 | } else { |
| 4211 | /* __cancel_balance needs volume_mutex */ |
| 4212 | mutex_unlock(&fs_info->balance_mutex); |
| 4213 | mutex_lock(&fs_info->volume_mutex); |
| 4214 | mutex_lock(&fs_info->balance_mutex); |
| 4215 | |
| 4216 | if (fs_info->balance_ctl) |
| 4217 | __cancel_balance(fs_info); |
| 4218 | |
| 4219 | mutex_unlock(&fs_info->volume_mutex); |
| 4220 | } |
| 4221 | |
| 4222 | BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running)); |
| 4223 | atomic_dec(&fs_info->balance_cancel_req); |
| 4224 | mutex_unlock(&fs_info->balance_mutex); |
| 4225 | return 0; |
| 4226 | } |
| 4227 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4228 | static int btrfs_uuid_scan_kthread(void *data) |
| 4229 | { |
| 4230 | struct btrfs_fs_info *fs_info = data; |
| 4231 | struct btrfs_root *root = fs_info->tree_root; |
| 4232 | struct btrfs_key key; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4233 | struct btrfs_path *path = NULL; |
| 4234 | int ret = 0; |
| 4235 | struct extent_buffer *eb; |
| 4236 | int slot; |
| 4237 | struct btrfs_root_item root_item; |
| 4238 | u32 item_size; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4239 | struct btrfs_trans_handle *trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4240 | |
| 4241 | path = btrfs_alloc_path(); |
| 4242 | if (!path) { |
| 4243 | ret = -ENOMEM; |
| 4244 | goto out; |
| 4245 | } |
| 4246 | |
| 4247 | key.objectid = 0; |
| 4248 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4249 | key.offset = 0; |
| 4250 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4251 | while (1) { |
Anand Jain | 7c829b7 | 2018-03-07 17:29:18 +0800 | [diff] [blame] | 4252 | ret = btrfs_search_forward(root, &key, path, |
| 4253 | BTRFS_OLDEST_GENERATION); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4254 | if (ret) { |
| 4255 | if (ret > 0) |
| 4256 | ret = 0; |
| 4257 | break; |
| 4258 | } |
| 4259 | |
| 4260 | if (key.type != BTRFS_ROOT_ITEM_KEY || |
| 4261 | (key.objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 4262 | key.objectid != BTRFS_FS_TREE_OBJECTID) || |
| 4263 | key.objectid > BTRFS_LAST_FREE_OBJECTID) |
| 4264 | goto skip; |
| 4265 | |
| 4266 | eb = path->nodes[0]; |
| 4267 | slot = path->slots[0]; |
| 4268 | item_size = btrfs_item_size_nr(eb, slot); |
| 4269 | if (item_size < sizeof(root_item)) |
| 4270 | goto skip; |
| 4271 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4272 | read_extent_buffer(eb, &root_item, |
| 4273 | btrfs_item_ptr_offset(eb, slot), |
| 4274 | (int)sizeof(root_item)); |
| 4275 | if (btrfs_root_refs(&root_item) == 0) |
| 4276 | goto skip; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4277 | |
| 4278 | if (!btrfs_is_empty_uuid(root_item.uuid) || |
| 4279 | !btrfs_is_empty_uuid(root_item.received_uuid)) { |
| 4280 | if (trans) |
| 4281 | goto update_tree; |
| 4282 | |
| 4283 | btrfs_release_path(path); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4284 | /* |
| 4285 | * 1 - subvol uuid item |
| 4286 | * 1 - received_subvol uuid item |
| 4287 | */ |
| 4288 | trans = btrfs_start_transaction(fs_info->uuid_root, 2); |
| 4289 | if (IS_ERR(trans)) { |
| 4290 | ret = PTR_ERR(trans); |
| 4291 | break; |
| 4292 | } |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4293 | continue; |
| 4294 | } else { |
| 4295 | goto skip; |
| 4296 | } |
| 4297 | update_tree: |
| 4298 | if (!btrfs_is_empty_uuid(root_item.uuid)) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4299 | ret = btrfs_uuid_tree_add(trans, fs_info, |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4300 | root_item.uuid, |
| 4301 | BTRFS_UUID_KEY_SUBVOL, |
| 4302 | key.objectid); |
| 4303 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4304 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4305 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4306 | break; |
| 4307 | } |
| 4308 | } |
| 4309 | |
| 4310 | if (!btrfs_is_empty_uuid(root_item.received_uuid)) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4311 | ret = btrfs_uuid_tree_add(trans, fs_info, |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4312 | root_item.received_uuid, |
| 4313 | BTRFS_UUID_KEY_RECEIVED_SUBVOL, |
| 4314 | key.objectid); |
| 4315 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4316 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4317 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4318 | break; |
| 4319 | } |
| 4320 | } |
| 4321 | |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4322 | skip: |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4323 | if (trans) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4324 | ret = btrfs_end_transaction(trans); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4325 | trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4326 | if (ret) |
| 4327 | break; |
| 4328 | } |
| 4329 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4330 | btrfs_release_path(path); |
| 4331 | if (key.offset < (u64)-1) { |
| 4332 | key.offset++; |
| 4333 | } else if (key.type < BTRFS_ROOT_ITEM_KEY) { |
| 4334 | key.offset = 0; |
| 4335 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4336 | } else if (key.objectid < (u64)-1) { |
| 4337 | key.offset = 0; |
| 4338 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4339 | key.objectid++; |
| 4340 | } else { |
| 4341 | break; |
| 4342 | } |
| 4343 | cond_resched(); |
| 4344 | } |
| 4345 | |
| 4346 | out: |
| 4347 | btrfs_free_path(path); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4348 | if (trans && !IS_ERR(trans)) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4349 | btrfs_end_transaction(trans); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4350 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4351 | btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4352 | else |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 4353 | set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4354 | up(&fs_info->uuid_tree_rescan_sem); |
| 4355 | return 0; |
| 4356 | } |
| 4357 | |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4358 | /* |
| 4359 | * Callback for btrfs_uuid_tree_iterate(). |
| 4360 | * returns: |
| 4361 | * 0 check succeeded, the entry is not outdated. |
Adam Buchbinder | bb7ab3b | 2016-03-04 11:23:12 -0800 | [diff] [blame] | 4362 | * < 0 if an error occurred. |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4363 | * > 0 if the check failed, which means the caller shall remove the entry. |
| 4364 | */ |
| 4365 | static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info, |
| 4366 | u8 *uuid, u8 type, u64 subid) |
| 4367 | { |
| 4368 | struct btrfs_key key; |
| 4369 | int ret = 0; |
| 4370 | struct btrfs_root *subvol_root; |
| 4371 | |
| 4372 | if (type != BTRFS_UUID_KEY_SUBVOL && |
| 4373 | type != BTRFS_UUID_KEY_RECEIVED_SUBVOL) |
| 4374 | goto out; |
| 4375 | |
| 4376 | key.objectid = subid; |
| 4377 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4378 | key.offset = (u64)-1; |
| 4379 | subvol_root = btrfs_read_fs_root_no_name(fs_info, &key); |
| 4380 | if (IS_ERR(subvol_root)) { |
| 4381 | ret = PTR_ERR(subvol_root); |
| 4382 | if (ret == -ENOENT) |
| 4383 | ret = 1; |
| 4384 | goto out; |
| 4385 | } |
| 4386 | |
| 4387 | switch (type) { |
| 4388 | case BTRFS_UUID_KEY_SUBVOL: |
| 4389 | if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE)) |
| 4390 | ret = 1; |
| 4391 | break; |
| 4392 | case BTRFS_UUID_KEY_RECEIVED_SUBVOL: |
| 4393 | if (memcmp(uuid, subvol_root->root_item.received_uuid, |
| 4394 | BTRFS_UUID_SIZE)) |
| 4395 | ret = 1; |
| 4396 | break; |
| 4397 | } |
| 4398 | |
| 4399 | out: |
| 4400 | return ret; |
| 4401 | } |
| 4402 | |
| 4403 | static int btrfs_uuid_rescan_kthread(void *data) |
| 4404 | { |
| 4405 | struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data; |
| 4406 | int ret; |
| 4407 | |
| 4408 | /* |
| 4409 | * 1st step is to iterate through the existing UUID tree and |
| 4410 | * to delete all entries that contain outdated data. |
| 4411 | * 2nd step is to add all missing entries to the UUID tree. |
| 4412 | */ |
| 4413 | ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry); |
| 4414 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4415 | btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4416 | up(&fs_info->uuid_tree_rescan_sem); |
| 4417 | return ret; |
| 4418 | } |
| 4419 | return btrfs_uuid_scan_kthread(data); |
| 4420 | } |
| 4421 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4422 | int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4423 | { |
| 4424 | struct btrfs_trans_handle *trans; |
| 4425 | struct btrfs_root *tree_root = fs_info->tree_root; |
| 4426 | struct btrfs_root *uuid_root; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4427 | struct task_struct *task; |
| 4428 | int ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4429 | |
| 4430 | /* |
| 4431 | * 1 - root node |
| 4432 | * 1 - root item |
| 4433 | */ |
| 4434 | trans = btrfs_start_transaction(tree_root, 2); |
| 4435 | if (IS_ERR(trans)) |
| 4436 | return PTR_ERR(trans); |
| 4437 | |
| 4438 | uuid_root = btrfs_create_tree(trans, fs_info, |
| 4439 | BTRFS_UUID_TREE_OBJECTID); |
| 4440 | if (IS_ERR(uuid_root)) { |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4441 | ret = PTR_ERR(uuid_root); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 4442 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4443 | btrfs_end_transaction(trans); |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4444 | return ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4445 | } |
| 4446 | |
| 4447 | fs_info->uuid_root = uuid_root; |
| 4448 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4449 | ret = btrfs_commit_transaction(trans); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4450 | if (ret) |
| 4451 | return ret; |
| 4452 | |
| 4453 | down(&fs_info->uuid_tree_rescan_sem); |
| 4454 | task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid"); |
| 4455 | if (IS_ERR(task)) { |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4456 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4457 | btrfs_warn(fs_info, "failed to start uuid_scan task"); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4458 | up(&fs_info->uuid_tree_rescan_sem); |
| 4459 | return PTR_ERR(task); |
| 4460 | } |
| 4461 | |
| 4462 | return 0; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4463 | } |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4464 | |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4465 | int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4466 | { |
| 4467 | struct task_struct *task; |
| 4468 | |
| 4469 | down(&fs_info->uuid_tree_rescan_sem); |
| 4470 | task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid"); |
| 4471 | if (IS_ERR(task)) { |
| 4472 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4473 | btrfs_warn(fs_info, "failed to start uuid_rescan task"); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4474 | up(&fs_info->uuid_tree_rescan_sem); |
| 4475 | return PTR_ERR(task); |
| 4476 | } |
| 4477 | |
| 4478 | return 0; |
| 4479 | } |
| 4480 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4481 | /* |
| 4482 | * shrinking a device means finding all of the device extents past |
| 4483 | * the new size, and then following the back refs to the chunks. |
| 4484 | * The chunk relocation code actually frees the device extent |
| 4485 | */ |
| 4486 | int btrfs_shrink_device(struct btrfs_device *device, u64 new_size) |
| 4487 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4488 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 4489 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4490 | struct btrfs_trans_handle *trans; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4491 | struct btrfs_dev_extent *dev_extent = NULL; |
| 4492 | struct btrfs_path *path; |
| 4493 | u64 length; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4494 | u64 chunk_offset; |
| 4495 | int ret; |
| 4496 | int slot; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4497 | int failed = 0; |
| 4498 | bool retried = false; |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4499 | bool checked_pending_chunks = false; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4500 | struct extent_buffer *l; |
| 4501 | struct btrfs_key key; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4502 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4503 | u64 old_total = btrfs_super_total_bytes(super_copy); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4504 | u64 old_size = btrfs_device_get_total_bytes(device); |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4505 | u64 diff; |
| 4506 | |
| 4507 | new_size = round_down(new_size, fs_info->sectorsize); |
Nikolay Borisov | 0e4324a | 2017-07-21 11:28:24 +0300 | [diff] [blame] | 4508 | diff = round_down(old_size - new_size, fs_info->sectorsize); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4509 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 4510 | if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 4511 | return -EINVAL; |
| 4512 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4513 | path = btrfs_alloc_path(); |
| 4514 | if (!path) |
| 4515 | return -ENOMEM; |
| 4516 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 4517 | path->reada = READA_FORWARD; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4518 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4519 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 4520 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4521 | btrfs_device_set_total_bytes(device, new_size); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4522 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4523 | device->fs_devices->total_rw_bytes -= diff; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4524 | atomic64_sub(diff, &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4525 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4526 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4527 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4528 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4529 | key.objectid = device->devid; |
| 4530 | key.offset = (u64)-1; |
| 4531 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 4532 | |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4533 | do { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4534 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4535 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4536 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4537 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4538 | goto done; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4539 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4540 | |
| 4541 | ret = btrfs_previous_item(root, path, 0, key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4542 | if (ret) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4543 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4544 | if (ret < 0) |
| 4545 | goto done; |
| 4546 | if (ret) { |
| 4547 | ret = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4548 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4549 | break; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4550 | } |
| 4551 | |
| 4552 | l = path->nodes[0]; |
| 4553 | slot = path->slots[0]; |
| 4554 | btrfs_item_key_to_cpu(l, &key, path->slots[0]); |
| 4555 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4556 | if (key.objectid != device->devid) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4557 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4558 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4559 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4560 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4561 | |
| 4562 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
| 4563 | length = btrfs_dev_extent_length(l, dev_extent); |
| 4564 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4565 | if (key.offset + length <= new_size) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4566 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4567 | btrfs_release_path(path); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4568 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4569 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4570 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4571 | chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4572 | btrfs_release_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4573 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 4574 | /* |
| 4575 | * We may be relocating the only data chunk we have, |
| 4576 | * which could potentially end up with losing data's |
| 4577 | * raid profile, so lets allocate an empty one in |
| 4578 | * advance. |
| 4579 | */ |
| 4580 | ret = btrfs_may_alloc_data_chunk(fs_info, chunk_offset); |
| 4581 | if (ret < 0) { |
| 4582 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
| 4583 | goto done; |
| 4584 | } |
| 4585 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4586 | ret = btrfs_relocate_chunk(fs_info, chunk_offset); |
| 4587 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4588 | if (ret && ret != -ENOSPC) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4589 | goto done; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4590 | if (ret == -ENOSPC) |
| 4591 | failed++; |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4592 | } while (key.offset-- > 0); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4593 | |
| 4594 | if (failed && !retried) { |
| 4595 | failed = 0; |
| 4596 | retried = true; |
| 4597 | goto again; |
| 4598 | } else if (failed && retried) { |
| 4599 | ret = -ENOSPC; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4600 | goto done; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4601 | } |
| 4602 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4603 | /* Shrinking succeeded, else we would be at "done". */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4604 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 4605 | if (IS_ERR(trans)) { |
| 4606 | ret = PTR_ERR(trans); |
| 4607 | goto done; |
| 4608 | } |
| 4609 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4610 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4611 | |
| 4612 | /* |
| 4613 | * We checked in the above loop all device extents that were already in |
| 4614 | * the device tree. However before we have updated the device's |
| 4615 | * total_bytes to the new size, we might have had chunk allocations that |
| 4616 | * have not complete yet (new block groups attached to transaction |
| 4617 | * handles), and therefore their device extents were not yet in the |
| 4618 | * device tree and we missed them in the loop above. So if we have any |
| 4619 | * pending chunk using a device extent that overlaps the device range |
| 4620 | * that we can not use anymore, commit the current transaction and |
| 4621 | * repeat the search on the device tree - this way we guarantee we will |
| 4622 | * not have chunks using device extents that end beyond 'new_size'. |
| 4623 | */ |
| 4624 | if (!checked_pending_chunks) { |
| 4625 | u64 start = new_size; |
| 4626 | u64 len = old_size - new_size; |
| 4627 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 4628 | if (contains_pending_extent(trans->transaction, device, |
| 4629 | &start, len)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4630 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4631 | checked_pending_chunks = true; |
| 4632 | failed = 0; |
| 4633 | retried = false; |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4634 | ret = btrfs_commit_transaction(trans); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4635 | if (ret) |
| 4636 | goto done; |
| 4637 | goto again; |
| 4638 | } |
| 4639 | } |
| 4640 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4641 | btrfs_device_set_disk_total_bytes(device, new_size); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 4642 | if (list_empty(&device->resized_list)) |
| 4643 | list_add_tail(&device->resized_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4644 | &fs_info->fs_devices->resized_devices); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4645 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4646 | WARN_ON(diff > old_total); |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4647 | btrfs_set_super_total_bytes(super_copy, |
| 4648 | round_down(old_total - diff, fs_info->sectorsize)); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4649 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 4650 | |
| 4651 | /* Now btrfs_update_device() will change the on-disk size. */ |
| 4652 | ret = btrfs_update_device(trans, device); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4653 | btrfs_end_transaction(trans); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4654 | done: |
| 4655 | btrfs_free_path(path); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4656 | if (ret) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4657 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4658 | btrfs_device_set_total_bytes(device, old_size); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4659 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4660 | device->fs_devices->total_rw_bytes += diff; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4661 | atomic64_add(diff, &fs_info->free_chunk_space); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4662 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4663 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4664 | return ret; |
| 4665 | } |
| 4666 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4667 | static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4668 | struct btrfs_key *key, |
| 4669 | struct btrfs_chunk *chunk, int item_size) |
| 4670 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4671 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4672 | struct btrfs_disk_key disk_key; |
| 4673 | u32 array_size; |
| 4674 | u8 *ptr; |
| 4675 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4676 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4677 | array_size = btrfs_super_sys_array_size(super_copy); |
Gui Hecheng | 5f43f86 | 2014-04-21 20:13:11 +0800 | [diff] [blame] | 4678 | if (array_size + item_size + sizeof(disk_key) |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4679 | > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4680 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4681 | return -EFBIG; |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4682 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4683 | |
| 4684 | ptr = super_copy->sys_chunk_array + array_size; |
| 4685 | btrfs_cpu_key_to_disk(&disk_key, key); |
| 4686 | memcpy(ptr, &disk_key, sizeof(disk_key)); |
| 4687 | ptr += sizeof(disk_key); |
| 4688 | memcpy(ptr, chunk, item_size); |
| 4689 | item_size += sizeof(disk_key); |
| 4690 | btrfs_set_super_sys_array_size(super_copy, array_size + item_size); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4691 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4692 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4693 | return 0; |
| 4694 | } |
| 4695 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4696 | /* |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4697 | * sort the devices in descending order by max_avail, total_avail |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4698 | */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4699 | static int btrfs_cmp_device_info(const void *a, const void *b) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4700 | { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4701 | const struct btrfs_device_info *di_a = a; |
| 4702 | const struct btrfs_device_info *di_b = b; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4703 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4704 | if (di_a->max_avail > di_b->max_avail) |
| 4705 | return -1; |
| 4706 | if (di_a->max_avail < di_b->max_avail) |
| 4707 | return 1; |
| 4708 | if (di_a->total_avail > di_b->total_avail) |
| 4709 | return -1; |
| 4710 | if (di_a->total_avail < di_b->total_avail) |
| 4711 | return 1; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4712 | return 0; |
| 4713 | } |
| 4714 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4715 | static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type) |
| 4716 | { |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 4717 | if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK)) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4718 | return; |
| 4719 | |
Miao Xie | ceda086 | 2013-04-11 10:30:16 +0000 | [diff] [blame] | 4720 | btrfs_set_fs_incompat(info, RAID56); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4721 | } |
| 4722 | |
Qu Wenruo | 062d4d1 | 2018-01-30 18:20:46 +0800 | [diff] [blame] | 4723 | #define BTRFS_MAX_DEVS(info) ((BTRFS_MAX_ITEM_SIZE(info) \ |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4724 | - sizeof(struct btrfs_chunk)) \ |
| 4725 | / sizeof(struct btrfs_stripe) + 1) |
| 4726 | |
| 4727 | #define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \ |
| 4728 | - 2 * sizeof(struct btrfs_disk_key) \ |
| 4729 | - 2 * sizeof(struct btrfs_chunk)) \ |
| 4730 | / sizeof(struct btrfs_stripe) + 1) |
| 4731 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4732 | static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans, |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 4733 | u64 start, u64 type) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4734 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4735 | struct btrfs_fs_info *info = trans->fs_info; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4736 | struct btrfs_fs_devices *fs_devices = info->fs_devices; |
Nikolay Borisov | ebcc930 | 2017-06-27 10:02:24 +0300 | [diff] [blame] | 4737 | struct btrfs_device *device; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4738 | struct map_lookup *map = NULL; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4739 | struct extent_map_tree *em_tree; |
| 4740 | struct extent_map *em; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4741 | struct btrfs_device_info *devices_info = NULL; |
| 4742 | u64 total_avail; |
| 4743 | int num_stripes; /* total number of stripes to allocate */ |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4744 | int data_stripes; /* number of stripes that count for |
| 4745 | block group size */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4746 | int sub_stripes; /* sub_stripes info for map */ |
| 4747 | int dev_stripes; /* stripes per dev */ |
| 4748 | int devs_max; /* max devs to use */ |
| 4749 | int devs_min; /* min devs needed */ |
| 4750 | int devs_increment; /* ndevs has to be a multiple of this */ |
| 4751 | int ncopies; /* how many copies to data has */ |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4752 | int ret; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4753 | u64 max_stripe_size; |
| 4754 | u64 max_chunk_size; |
| 4755 | u64 stripe_size; |
| 4756 | u64 num_bytes; |
| 4757 | int ndevs; |
| 4758 | int i; |
| 4759 | int j; |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4760 | int index; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4761 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4762 | BUG_ON(!alloc_profile_is_valid(type, 0)); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4763 | |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 4764 | if (list_empty(&fs_devices->alloc_list)) { |
| 4765 | if (btrfs_test_opt(info, ENOSPC_DEBUG)) |
| 4766 | btrfs_debug(info, "%s: no writable device", __func__); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4767 | return -ENOSPC; |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 4768 | } |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4769 | |
Qu Wenruo | 3e72ee8 | 2018-01-30 18:20:45 +0800 | [diff] [blame] | 4770 | index = btrfs_bg_flags_to_raid_index(type); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4771 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4772 | sub_stripes = btrfs_raid_array[index].sub_stripes; |
| 4773 | dev_stripes = btrfs_raid_array[index].dev_stripes; |
| 4774 | devs_max = btrfs_raid_array[index].devs_max; |
| 4775 | devs_min = btrfs_raid_array[index].devs_min; |
| 4776 | devs_increment = btrfs_raid_array[index].devs_increment; |
| 4777 | ncopies = btrfs_raid_array[index].ncopies; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4778 | |
| 4779 | if (type & BTRFS_BLOCK_GROUP_DATA) { |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4780 | max_stripe_size = SZ_1G; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4781 | max_chunk_size = 10 * max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4782 | if (!devs_max) |
Qu Wenruo | 062d4d1 | 2018-01-30 18:20:46 +0800 | [diff] [blame] | 4783 | devs_max = BTRFS_MAX_DEVS(info); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4784 | } else if (type & BTRFS_BLOCK_GROUP_METADATA) { |
Chris Mason | 1100373 | 2012-01-06 15:47:38 -0500 | [diff] [blame] | 4785 | /* for larger filesystems, use larger metadata chunks */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4786 | if (fs_devices->total_rw_bytes > 50ULL * SZ_1G) |
| 4787 | max_stripe_size = SZ_1G; |
Chris Mason | 1100373 | 2012-01-06 15:47:38 -0500 | [diff] [blame] | 4788 | else |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4789 | max_stripe_size = SZ_256M; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4790 | max_chunk_size = max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4791 | if (!devs_max) |
Qu Wenruo | 062d4d1 | 2018-01-30 18:20:46 +0800 | [diff] [blame] | 4792 | devs_max = BTRFS_MAX_DEVS(info); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4793 | } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4794 | max_stripe_size = SZ_32M; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4795 | max_chunk_size = 2 * max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4796 | if (!devs_max) |
| 4797 | devs_max = BTRFS_MAX_DEVS_SYS_CHUNK; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4798 | } else { |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 4799 | btrfs_err(info, "invalid chunk type 0x%llx requested", |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4800 | type); |
| 4801 | BUG_ON(1); |
| 4802 | } |
| 4803 | |
| 4804 | /* we don't want a chunk larger than 10% of writeable space */ |
| 4805 | max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1), |
| 4806 | max_chunk_size); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4807 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 4808 | devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info), |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4809 | GFP_NOFS); |
| 4810 | if (!devices_info) |
| 4811 | return -ENOMEM; |
| 4812 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4813 | /* |
| 4814 | * in the first pass through the devices list, we gather information |
| 4815 | * about the available holes on each device. |
| 4816 | */ |
| 4817 | ndevs = 0; |
Nikolay Borisov | ebcc930 | 2017-06-27 10:02:24 +0300 | [diff] [blame] | 4818 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4819 | u64 max_avail; |
| 4820 | u64 dev_offset; |
| 4821 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4822 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Julia Lawall | 31b1a2b | 2012-11-03 10:58:34 +0000 | [diff] [blame] | 4823 | WARN(1, KERN_ERR |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4824 | "BTRFS: read-only device in alloc_list\n"); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4825 | continue; |
| 4826 | } |
| 4827 | |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 4828 | if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 4829 | &device->dev_state) || |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 4830 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4831 | continue; |
| 4832 | |
| 4833 | if (device->total_bytes > device->bytes_used) |
| 4834 | total_avail = device->total_bytes - device->bytes_used; |
| 4835 | else |
| 4836 | total_avail = 0; |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 4837 | |
| 4838 | /* If there is no space on this device, skip it. */ |
| 4839 | if (total_avail == 0) |
| 4840 | continue; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4841 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4842 | ret = find_free_dev_extent(trans, device, |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4843 | max_stripe_size * dev_stripes, |
| 4844 | &dev_offset, &max_avail); |
| 4845 | if (ret && ret != -ENOSPC) |
| 4846 | goto error; |
| 4847 | |
| 4848 | if (ret == 0) |
| 4849 | max_avail = max_stripe_size * dev_stripes; |
| 4850 | |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 4851 | if (max_avail < BTRFS_STRIPE_LEN * dev_stripes) { |
| 4852 | if (btrfs_test_opt(info, ENOSPC_DEBUG)) |
| 4853 | btrfs_debug(info, |
| 4854 | "%s: devid %llu has no free space, have=%llu want=%u", |
| 4855 | __func__, device->devid, max_avail, |
| 4856 | BTRFS_STRIPE_LEN * dev_stripes); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4857 | continue; |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 4858 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4859 | |
Eric Sandeen | 063d006 | 2013-01-31 00:55:01 +0000 | [diff] [blame] | 4860 | if (ndevs == fs_devices->rw_devices) { |
| 4861 | WARN(1, "%s: found more than %llu devices\n", |
| 4862 | __func__, fs_devices->rw_devices); |
| 4863 | break; |
| 4864 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4865 | devices_info[ndevs].dev_offset = dev_offset; |
| 4866 | devices_info[ndevs].max_avail = max_avail; |
| 4867 | devices_info[ndevs].total_avail = total_avail; |
| 4868 | devices_info[ndevs].dev = device; |
| 4869 | ++ndevs; |
| 4870 | } |
| 4871 | |
| 4872 | /* |
| 4873 | * now sort the devices by hole size / available space |
| 4874 | */ |
| 4875 | sort(devices_info, ndevs, sizeof(struct btrfs_device_info), |
| 4876 | btrfs_cmp_device_info, NULL); |
| 4877 | |
| 4878 | /* round down to number of usable stripes */ |
Nikolay Borisov | e5600fd | 2017-06-27 10:02:25 +0300 | [diff] [blame] | 4879 | ndevs = round_down(ndevs, devs_increment); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4880 | |
Qu Wenruo | ba89b80 | 2018-01-31 13:56:15 +0800 | [diff] [blame] | 4881 | if (ndevs < devs_min) { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4882 | ret = -ENOSPC; |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 4883 | if (btrfs_test_opt(info, ENOSPC_DEBUG)) { |
| 4884 | btrfs_debug(info, |
| 4885 | "%s: not enough devices with free space: have=%d minimum required=%d", |
Qu Wenruo | ba89b80 | 2018-01-31 13:56:15 +0800 | [diff] [blame] | 4886 | __func__, ndevs, devs_min); |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 4887 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4888 | goto error; |
| 4889 | } |
| 4890 | |
Nikolay Borisov | f148ef4 | 2017-06-27 10:02:26 +0300 | [diff] [blame] | 4891 | ndevs = min(ndevs, devs_max); |
| 4892 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4893 | /* |
Hans van Kranenburg | 92e222d | 2018-02-05 17:45:11 +0100 | [diff] [blame] | 4894 | * The primary goal is to maximize the number of stripes, so use as |
| 4895 | * many devices as possible, even if the stripes are not maximum sized. |
| 4896 | * |
| 4897 | * The DUP profile stores more than one stripe per device, the |
| 4898 | * max_avail is the total size so we have to adjust. |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4899 | */ |
Hans van Kranenburg | 92e222d | 2018-02-05 17:45:11 +0100 | [diff] [blame] | 4900 | stripe_size = div_u64(devices_info[ndevs - 1].max_avail, dev_stripes); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4901 | num_stripes = ndevs * dev_stripes; |
| 4902 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4903 | /* |
| 4904 | * this will have to be fixed for RAID1 and RAID10 over |
| 4905 | * more drives |
| 4906 | */ |
| 4907 | data_stripes = num_stripes / ncopies; |
| 4908 | |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4909 | if (type & BTRFS_BLOCK_GROUP_RAID5) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4910 | data_stripes = num_stripes - 1; |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4911 | |
| 4912 | if (type & BTRFS_BLOCK_GROUP_RAID6) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4913 | data_stripes = num_stripes - 2; |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4914 | |
| 4915 | /* |
| 4916 | * Use the number of data stripes to figure out how big this chunk |
| 4917 | * is really going to be in terms of logical address space, |
| 4918 | * and compare that answer with the max chunk size |
| 4919 | */ |
| 4920 | if (stripe_size * data_stripes > max_chunk_size) { |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 4921 | stripe_size = div_u64(max_chunk_size, data_stripes); |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4922 | |
| 4923 | /* bump the answer up to a 16MB boundary */ |
Qu Wenruo | 793ff2c | 2018-01-31 14:16:34 +0800 | [diff] [blame] | 4924 | stripe_size = round_up(stripe_size, SZ_16M); |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4925 | |
Qu Wenruo | 793ff2c | 2018-01-31 14:16:34 +0800 | [diff] [blame] | 4926 | /* |
| 4927 | * But don't go higher than the limits we found while searching |
| 4928 | * for free extents |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4929 | */ |
Qu Wenruo | 793ff2c | 2018-01-31 14:16:34 +0800 | [diff] [blame] | 4930 | stripe_size = min(devices_info[ndevs - 1].max_avail, |
| 4931 | stripe_size); |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4932 | } |
| 4933 | |
Ilya Dryomov | 37db63a | 2012-04-13 17:05:08 +0300 | [diff] [blame] | 4934 | /* align to BTRFS_STRIPE_LEN */ |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4935 | stripe_size = round_down(stripe_size, BTRFS_STRIPE_LEN); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4936 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4937 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
| 4938 | if (!map) { |
| 4939 | ret = -ENOMEM; |
| 4940 | goto error; |
| 4941 | } |
| 4942 | map->num_stripes = num_stripes; |
Chris Mason | 9b3f68b | 2008-04-18 10:29:51 -0400 | [diff] [blame] | 4943 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4944 | for (i = 0; i < ndevs; ++i) { |
| 4945 | for (j = 0; j < dev_stripes; ++j) { |
| 4946 | int s = i * dev_stripes + j; |
| 4947 | map->stripes[s].dev = devices_info[i].dev; |
| 4948 | map->stripes[s].physical = devices_info[i].dev_offset + |
| 4949 | j * stripe_size; |
Chris Mason | a40a90a | 2008-04-18 11:55:51 -0400 | [diff] [blame] | 4950 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4951 | } |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4952 | map->stripe_len = BTRFS_STRIPE_LEN; |
| 4953 | map->io_align = BTRFS_STRIPE_LEN; |
| 4954 | map->io_width = BTRFS_STRIPE_LEN; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4955 | map->type = type; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 4956 | map->sub_stripes = sub_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4957 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4958 | num_bytes = stripe_size * data_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4959 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4960 | trace_btrfs_chunk_alloc(info, map, start, num_bytes); |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4961 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 4962 | em = alloc_extent_map(); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4963 | if (!em) { |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 4964 | kfree(map); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4965 | ret = -ENOMEM; |
| 4966 | goto error; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4967 | } |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 4968 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 4969 | em->map_lookup = map; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4970 | em->start = start; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4971 | em->len = num_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4972 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4973 | em->block_len = em->len; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4974 | em->orig_block_len = stripe_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4975 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4976 | em_tree = &info->mapping_tree.map_tree; |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4977 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 4978 | ret = add_extent_mapping(em_tree, em, 0); |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4979 | if (ret) { |
Nikolay Borisov | 1efb72a | 2017-08-21 12:43:49 +0300 | [diff] [blame] | 4980 | write_unlock(&em_tree->lock); |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4981 | free_extent_map(em); |
Mark Fasheh | 1dd4602 | 2011-09-08 17:29:00 -0700 | [diff] [blame] | 4982 | goto error; |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4983 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4984 | |
Nikolay Borisov | 1efb72a | 2017-08-21 12:43:49 +0300 | [diff] [blame] | 4985 | list_add_tail(&em->list, &trans->transaction->pending_chunks); |
| 4986 | refcount_inc(&em->refs); |
| 4987 | write_unlock(&em_tree->lock); |
| 4988 | |
Nikolay Borisov | 0174484 | 2017-07-27 14:22:11 +0300 | [diff] [blame] | 4989 | ret = btrfs_make_block_group(trans, info, 0, type, start, num_bytes); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4990 | if (ret) |
| 4991 | goto error_del_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4992 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4993 | for (i = 0; i < map->num_stripes; i++) { |
| 4994 | num_bytes = map->stripes[i].dev->bytes_used + stripe_size; |
| 4995 | btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes); |
| 4996 | } |
Miao Xie | 43530c4 | 2014-09-03 21:35:36 +0800 | [diff] [blame] | 4997 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4998 | atomic64_sub(stripe_size * map->num_stripes, &info->free_chunk_space); |
Miao Xie | 1c11618 | 2014-09-03 21:35:37 +0800 | [diff] [blame] | 4999 | |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 5000 | free_extent_map(em); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5001 | check_raid56_incompat_flag(info, type); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5002 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5003 | kfree(devices_info); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5004 | return 0; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5005 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5006 | error_del_extent: |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 5007 | write_lock(&em_tree->lock); |
| 5008 | remove_extent_mapping(em_tree, em); |
| 5009 | write_unlock(&em_tree->lock); |
| 5010 | |
| 5011 | /* One for our allocation */ |
| 5012 | free_extent_map(em); |
| 5013 | /* One for the tree reference */ |
| 5014 | free_extent_map(em); |
Filipe Manana | 495e64f | 2014-12-02 18:07:30 +0000 | [diff] [blame] | 5015 | /* One for the pending_chunks list reference */ |
| 5016 | free_extent_map(em); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5017 | error: |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 5018 | kfree(devices_info); |
| 5019 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5020 | } |
| 5021 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5022 | int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 5023 | struct btrfs_fs_info *fs_info, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5024 | u64 chunk_offset, u64 chunk_size) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5025 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 5026 | struct btrfs_root *extent_root = fs_info->extent_root; |
| 5027 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5028 | struct btrfs_key key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5029 | struct btrfs_device *device; |
| 5030 | struct btrfs_chunk *chunk; |
| 5031 | struct btrfs_stripe *stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5032 | struct extent_map *em; |
| 5033 | struct map_lookup *map; |
| 5034 | size_t item_size; |
| 5035 | u64 dev_offset; |
| 5036 | u64 stripe_size; |
| 5037 | int i = 0; |
Chris Mason | 140e639 | 2015-12-23 13:30:51 -0800 | [diff] [blame] | 5038 | int ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5039 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5040 | em = get_chunk_map(fs_info, chunk_offset, chunk_size); |
| 5041 | if (IS_ERR(em)) |
| 5042 | return PTR_ERR(em); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5043 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5044 | map = em->map_lookup; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5045 | item_size = btrfs_chunk_item_size(map->num_stripes); |
| 5046 | stripe_size = em->orig_block_len; |
| 5047 | |
| 5048 | chunk = kzalloc(item_size, GFP_NOFS); |
| 5049 | if (!chunk) { |
| 5050 | ret = -ENOMEM; |
| 5051 | goto out; |
| 5052 | } |
| 5053 | |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 5054 | /* |
| 5055 | * Take the device list mutex to prevent races with the final phase of |
| 5056 | * a device replace operation that replaces the device object associated |
| 5057 | * with the map's stripes, because the device object's id can change |
| 5058 | * at any time during that final phase of the device replace operation |
| 5059 | * (dev-replace.c:btrfs_dev_replace_finishing()). |
| 5060 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5061 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5062 | for (i = 0; i < map->num_stripes; i++) { |
| 5063 | device = map->stripes[i].dev; |
| 5064 | dev_offset = map->stripes[i].physical; |
| 5065 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5066 | ret = btrfs_update_device(trans, device); |
Mark Fasheh | 3acd395 | 2011-09-08 17:40:01 -0700 | [diff] [blame] | 5067 | if (ret) |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 5068 | break; |
Nikolay Borisov | b5d9071 | 2017-08-18 17:58:23 +0300 | [diff] [blame] | 5069 | ret = btrfs_alloc_dev_extent(trans, device, chunk_offset, |
| 5070 | dev_offset, stripe_size); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5071 | if (ret) |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 5072 | break; |
| 5073 | } |
| 5074 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5075 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 5076 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5077 | } |
| 5078 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5079 | stripe = &chunk->stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5080 | for (i = 0; i < map->num_stripes; i++) { |
| 5081 | device = map->stripes[i].dev; |
| 5082 | dev_offset = map->stripes[i].physical; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5083 | |
| 5084 | btrfs_set_stack_stripe_devid(stripe, device->devid); |
| 5085 | btrfs_set_stack_stripe_offset(stripe, dev_offset); |
| 5086 | memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE); |
| 5087 | stripe++; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5088 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5089 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5090 | |
| 5091 | btrfs_set_stack_chunk_length(chunk, chunk_size); |
| 5092 | btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid); |
| 5093 | btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len); |
| 5094 | btrfs_set_stack_chunk_type(chunk, map->type); |
| 5095 | btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes); |
| 5096 | btrfs_set_stack_chunk_io_align(chunk, map->stripe_len); |
| 5097 | btrfs_set_stack_chunk_io_width(chunk, map->stripe_len); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5098 | btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5099 | btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes); |
| 5100 | |
| 5101 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 5102 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 5103 | key.offset = chunk_offset; |
| 5104 | |
| 5105 | ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 5106 | if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 5107 | /* |
| 5108 | * TODO: Cleanup of inserted chunk root in case of |
| 5109 | * failure. |
| 5110 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5111 | ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5112 | } |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 5113 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5114 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5115 | kfree(chunk); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5116 | free_extent_map(em); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 5117 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5118 | } |
| 5119 | |
| 5120 | /* |
| 5121 | * Chunk allocation falls into two parts. The first part does works |
| 5122 | * that make the new allocated chunk useable, but not do any operation |
| 5123 | * that modifies the chunk tree. The second part does the works that |
| 5124 | * require modifying the chunk tree. This division is important for the |
| 5125 | * bootstrap process of adding storage to a seed btrfs. |
| 5126 | */ |
| 5127 | int btrfs_alloc_chunk(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5128 | struct btrfs_fs_info *fs_info, u64 type) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5129 | { |
| 5130 | u64 chunk_offset; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5131 | |
David Sterba | a32bf9a | 2018-03-16 02:21:22 +0100 | [diff] [blame] | 5132 | lockdep_assert_held(&fs_info->chunk_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5133 | chunk_offset = find_next_chunk(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 5134 | return __btrfs_alloc_chunk(trans, chunk_offset, type); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5135 | } |
| 5136 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5137 | static noinline int init_first_rw_device(struct btrfs_trans_handle *trans, |
David Sterba | e4a4dce | 2017-02-10 19:49:01 +0100 | [diff] [blame] | 5138 | struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5139 | { |
| 5140 | u64 chunk_offset; |
| 5141 | u64 sys_chunk_offset; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5142 | u64 alloc_profile; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5143 | int ret; |
| 5144 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5145 | chunk_offset = find_next_chunk(fs_info); |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 5146 | alloc_profile = btrfs_metadata_alloc_profile(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 5147 | ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5148 | if (ret) |
| 5149 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5150 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5151 | sys_chunk_offset = find_next_chunk(fs_info); |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 5152 | alloc_profile = btrfs_system_alloc_profile(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 5153 | ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5154 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5155 | } |
| 5156 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5157 | static inline int btrfs_chunk_max_errors(struct map_lookup *map) |
| 5158 | { |
| 5159 | int max_errors; |
| 5160 | |
| 5161 | if (map->type & (BTRFS_BLOCK_GROUP_RAID1 | |
| 5162 | BTRFS_BLOCK_GROUP_RAID10 | |
| 5163 | BTRFS_BLOCK_GROUP_RAID5 | |
| 5164 | BTRFS_BLOCK_GROUP_DUP)) { |
| 5165 | max_errors = 1; |
| 5166 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) { |
| 5167 | max_errors = 2; |
| 5168 | } else { |
| 5169 | max_errors = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5170 | } |
| 5171 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5172 | return max_errors; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5173 | } |
| 5174 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5175 | int btrfs_chunk_readonly(struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5176 | { |
| 5177 | struct extent_map *em; |
| 5178 | struct map_lookup *map; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5179 | int readonly = 0; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5180 | int miss_ndevs = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5181 | int i; |
| 5182 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5183 | em = get_chunk_map(fs_info, chunk_offset, 1); |
| 5184 | if (IS_ERR(em)) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5185 | return 1; |
| 5186 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5187 | map = em->map_lookup; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5188 | for (i = 0; i < map->num_stripes; i++) { |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 5189 | if (test_bit(BTRFS_DEV_STATE_MISSING, |
| 5190 | &map->stripes[i].dev->dev_state)) { |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5191 | miss_ndevs++; |
| 5192 | continue; |
| 5193 | } |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 5194 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, |
| 5195 | &map->stripes[i].dev->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5196 | readonly = 1; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5197 | goto end; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5198 | } |
| 5199 | } |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5200 | |
| 5201 | /* |
| 5202 | * If the number of missing devices is larger than max errors, |
| 5203 | * we can not write the data into that chunk successfully, so |
| 5204 | * set it readonly. |
| 5205 | */ |
| 5206 | if (miss_ndevs > btrfs_chunk_max_errors(map)) |
| 5207 | readonly = 1; |
| 5208 | end: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5209 | free_extent_map(em); |
| 5210 | return readonly; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5211 | } |
| 5212 | |
| 5213 | void btrfs_mapping_init(struct btrfs_mapping_tree *tree) |
| 5214 | { |
David Sterba | a8067e0 | 2011-04-21 00:34:43 +0200 | [diff] [blame] | 5215 | extent_map_tree_init(&tree->map_tree); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5216 | } |
| 5217 | |
| 5218 | void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree) |
| 5219 | { |
| 5220 | struct extent_map *em; |
| 5221 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5222 | while (1) { |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5223 | write_lock(&tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5224 | em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1); |
| 5225 | if (em) |
| 5226 | remove_extent_mapping(&tree->map_tree, em); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5227 | write_unlock(&tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5228 | if (!em) |
| 5229 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5230 | /* once for us */ |
| 5231 | free_extent_map(em); |
| 5232 | /* once for the tree */ |
| 5233 | free_extent_map(em); |
| 5234 | } |
| 5235 | } |
| 5236 | |
Stefan Behrens | 5d96405 | 2012-11-05 14:59:07 +0100 | [diff] [blame] | 5237 | int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len) |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5238 | { |
| 5239 | struct extent_map *em; |
| 5240 | struct map_lookup *map; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5241 | int ret; |
| 5242 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5243 | em = get_chunk_map(fs_info, logical, len); |
| 5244 | if (IS_ERR(em)) |
| 5245 | /* |
| 5246 | * We could return errors for these cases, but that could get |
| 5247 | * ugly and we'd probably do the same thing which is just not do |
| 5248 | * anything else and exit, so return 1 so the callers don't try |
| 5249 | * to use other copies. |
| 5250 | */ |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5251 | return 1; |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5252 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5253 | map = em->map_lookup; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5254 | if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1)) |
| 5255 | ret = map->num_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5256 | else if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
| 5257 | ret = map->sub_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5258 | else if (map->type & BTRFS_BLOCK_GROUP_RAID5) |
| 5259 | ret = 2; |
| 5260 | else if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
Liu Bo | 8810f75 | 2018-01-02 13:36:41 -0700 | [diff] [blame] | 5261 | /* |
| 5262 | * There could be two corrupted data stripes, we need |
| 5263 | * to loop retry in order to rebuild the correct data. |
| 5264 | * |
| 5265 | * Fail a stripe at a time on every retry except the |
| 5266 | * stripe under reconstruction. |
| 5267 | */ |
| 5268 | ret = map->num_stripes; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5269 | else |
| 5270 | ret = 1; |
| 5271 | free_extent_map(em); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5272 | |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 5273 | btrfs_dev_replace_read_lock(&fs_info->dev_replace); |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5274 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) && |
| 5275 | fs_info->dev_replace.tgtdev) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5276 | ret++; |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 5277 | btrfs_dev_replace_read_unlock(&fs_info->dev_replace); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5278 | |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5279 | return ret; |
| 5280 | } |
| 5281 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5282 | unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info, |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5283 | u64 logical) |
| 5284 | { |
| 5285 | struct extent_map *em; |
| 5286 | struct map_lookup *map; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5287 | unsigned long len = fs_info->sectorsize; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5288 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5289 | em = get_chunk_map(fs_info, logical, len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5290 | |
Nikolay Borisov | 69f03f1 | 2017-07-11 16:55:51 +0300 | [diff] [blame] | 5291 | if (!WARN_ON(IS_ERR(em))) { |
| 5292 | map = em->map_lookup; |
| 5293 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 5294 | len = map->stripe_len * nr_data_stripes(map); |
| 5295 | free_extent_map(em); |
| 5296 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5297 | return len; |
| 5298 | } |
| 5299 | |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 5300 | int btrfs_is_parity_mirror(struct btrfs_fs_info *fs_info, u64 logical, u64 len) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5301 | { |
| 5302 | struct extent_map *em; |
| 5303 | struct map_lookup *map; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5304 | int ret = 0; |
| 5305 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5306 | em = get_chunk_map(fs_info, logical, len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5307 | |
Nikolay Borisov | 69f03f1 | 2017-07-11 16:55:51 +0300 | [diff] [blame] | 5308 | if(!WARN_ON(IS_ERR(em))) { |
| 5309 | map = em->map_lookup; |
| 5310 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 5311 | ret = 1; |
| 5312 | free_extent_map(em); |
| 5313 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5314 | return ret; |
| 5315 | } |
| 5316 | |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5317 | static int find_live_mirror(struct btrfs_fs_info *fs_info, |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5318 | struct map_lookup *map, int first, |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5319 | int dev_replace_is_ongoing) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5320 | { |
| 5321 | int i; |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5322 | int num_stripes; |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5323 | int preferred_mirror; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5324 | int tolerance; |
| 5325 | struct btrfs_device *srcdev; |
| 5326 | |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5327 | ASSERT((map->type & |
| 5328 | (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10))); |
| 5329 | |
| 5330 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
| 5331 | num_stripes = map->sub_stripes; |
| 5332 | else |
| 5333 | num_stripes = map->num_stripes; |
| 5334 | |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5335 | preferred_mirror = first + current->pid % num_stripes; |
| 5336 | |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5337 | if (dev_replace_is_ongoing && |
| 5338 | fs_info->dev_replace.cont_reading_from_srcdev_mode == |
| 5339 | BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID) |
| 5340 | srcdev = fs_info->dev_replace.srcdev; |
| 5341 | else |
| 5342 | srcdev = NULL; |
| 5343 | |
| 5344 | /* |
| 5345 | * try to avoid the drive that is the source drive for a |
| 5346 | * dev-replace procedure, only choose it if no other non-missing |
| 5347 | * mirror is available |
| 5348 | */ |
| 5349 | for (tolerance = 0; tolerance < 2; tolerance++) { |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5350 | if (map->stripes[preferred_mirror].dev->bdev && |
| 5351 | (tolerance || map->stripes[preferred_mirror].dev != srcdev)) |
| 5352 | return preferred_mirror; |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5353 | for (i = first; i < first + num_stripes; i++) { |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5354 | if (map->stripes[i].dev->bdev && |
| 5355 | (tolerance || map->stripes[i].dev != srcdev)) |
| 5356 | return i; |
| 5357 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5358 | } |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5359 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5360 | /* we couldn't find one that doesn't fail. Just return something |
| 5361 | * and the io error handling code will clean up eventually |
| 5362 | */ |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5363 | return preferred_mirror; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5364 | } |
| 5365 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5366 | static inline int parity_smaller(u64 a, u64 b) |
| 5367 | { |
| 5368 | return a > b; |
| 5369 | } |
| 5370 | |
| 5371 | /* Bubble-sort the stripe set to put the parity/syndrome stripes last */ |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5372 | static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5373 | { |
| 5374 | struct btrfs_bio_stripe s; |
| 5375 | int i; |
| 5376 | u64 l; |
| 5377 | int again = 1; |
| 5378 | |
| 5379 | while (again) { |
| 5380 | again = 0; |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5381 | for (i = 0; i < num_stripes - 1; i++) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5382 | if (parity_smaller(bbio->raid_map[i], |
| 5383 | bbio->raid_map[i+1])) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5384 | s = bbio->stripes[i]; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5385 | l = bbio->raid_map[i]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5386 | bbio->stripes[i] = bbio->stripes[i+1]; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5387 | bbio->raid_map[i] = bbio->raid_map[i+1]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5388 | bbio->stripes[i+1] = s; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5389 | bbio->raid_map[i+1] = l; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5390 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5391 | again = 1; |
| 5392 | } |
| 5393 | } |
| 5394 | } |
| 5395 | } |
| 5396 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5397 | static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes) |
| 5398 | { |
| 5399 | struct btrfs_bio *bbio = kzalloc( |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5400 | /* the size of the btrfs_bio */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5401 | sizeof(struct btrfs_bio) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5402 | /* plus the variable array for the stripes */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5403 | sizeof(struct btrfs_bio_stripe) * (total_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5404 | /* plus the variable array for the tgt dev */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5405 | sizeof(int) * (real_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5406 | /* |
| 5407 | * plus the raid_map, which includes both the tgt dev |
| 5408 | * and the stripes |
| 5409 | */ |
| 5410 | sizeof(u64) * (total_stripes), |
Michal Hocko | 277fb5f | 2015-08-19 14:17:41 +0200 | [diff] [blame] | 5411 | GFP_NOFS|__GFP_NOFAIL); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5412 | |
| 5413 | atomic_set(&bbio->error, 0); |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5414 | refcount_set(&bbio->refs, 1); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5415 | |
| 5416 | return bbio; |
| 5417 | } |
| 5418 | |
| 5419 | void btrfs_get_bbio(struct btrfs_bio *bbio) |
| 5420 | { |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5421 | WARN_ON(!refcount_read(&bbio->refs)); |
| 5422 | refcount_inc(&bbio->refs); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5423 | } |
| 5424 | |
| 5425 | void btrfs_put_bbio(struct btrfs_bio *bbio) |
| 5426 | { |
| 5427 | if (!bbio) |
| 5428 | return; |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5429 | if (refcount_dec_and_test(&bbio->refs)) |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5430 | kfree(bbio); |
| 5431 | } |
| 5432 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5433 | /* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */ |
| 5434 | /* |
| 5435 | * Please note that, discard won't be sent to target device of device |
| 5436 | * replace. |
| 5437 | */ |
| 5438 | static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info, |
| 5439 | u64 logical, u64 length, |
| 5440 | struct btrfs_bio **bbio_ret) |
| 5441 | { |
| 5442 | struct extent_map *em; |
| 5443 | struct map_lookup *map; |
| 5444 | struct btrfs_bio *bbio; |
| 5445 | u64 offset; |
| 5446 | u64 stripe_nr; |
| 5447 | u64 stripe_nr_end; |
| 5448 | u64 stripe_end_offset; |
| 5449 | u64 stripe_cnt; |
| 5450 | u64 stripe_len; |
| 5451 | u64 stripe_offset; |
| 5452 | u64 num_stripes; |
| 5453 | u32 stripe_index; |
| 5454 | u32 factor = 0; |
| 5455 | u32 sub_stripes = 0; |
| 5456 | u64 stripes_per_dev = 0; |
| 5457 | u32 remaining_stripes = 0; |
| 5458 | u32 last_stripe = 0; |
| 5459 | int ret = 0; |
| 5460 | int i; |
| 5461 | |
| 5462 | /* discard always return a bbio */ |
| 5463 | ASSERT(bbio_ret); |
| 5464 | |
| 5465 | em = get_chunk_map(fs_info, logical, length); |
| 5466 | if (IS_ERR(em)) |
| 5467 | return PTR_ERR(em); |
| 5468 | |
| 5469 | map = em->map_lookup; |
| 5470 | /* we don't discard raid56 yet */ |
| 5471 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
| 5472 | ret = -EOPNOTSUPP; |
| 5473 | goto out; |
| 5474 | } |
| 5475 | |
| 5476 | offset = logical - em->start; |
| 5477 | length = min_t(u64, em->len - offset, length); |
| 5478 | |
| 5479 | stripe_len = map->stripe_len; |
| 5480 | /* |
| 5481 | * stripe_nr counts the total number of stripes we have to stride |
| 5482 | * to get to this block |
| 5483 | */ |
| 5484 | stripe_nr = div64_u64(offset, stripe_len); |
| 5485 | |
| 5486 | /* stripe_offset is the offset of this block in its stripe */ |
| 5487 | stripe_offset = offset - stripe_nr * stripe_len; |
| 5488 | |
| 5489 | stripe_nr_end = round_up(offset + length, map->stripe_len); |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 5490 | stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5491 | stripe_cnt = stripe_nr_end - stripe_nr; |
| 5492 | stripe_end_offset = stripe_nr_end * map->stripe_len - |
| 5493 | (offset + length); |
| 5494 | /* |
| 5495 | * after this, stripe_nr is the number of stripes on this |
| 5496 | * device we have to walk to find the data, and stripe_index is |
| 5497 | * the number of our device in the stripe array |
| 5498 | */ |
| 5499 | num_stripes = 1; |
| 5500 | stripe_index = 0; |
| 5501 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 5502 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5503 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
| 5504 | sub_stripes = 1; |
| 5505 | else |
| 5506 | sub_stripes = map->sub_stripes; |
| 5507 | |
| 5508 | factor = map->num_stripes / sub_stripes; |
| 5509 | num_stripes = min_t(u64, map->num_stripes, |
| 5510 | sub_stripes * stripe_cnt); |
| 5511 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
| 5512 | stripe_index *= sub_stripes; |
| 5513 | stripes_per_dev = div_u64_rem(stripe_cnt, factor, |
| 5514 | &remaining_stripes); |
| 5515 | div_u64_rem(stripe_nr_end - 1, factor, &last_stripe); |
| 5516 | last_stripe *= sub_stripes; |
| 5517 | } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1 | |
| 5518 | BTRFS_BLOCK_GROUP_DUP)) { |
| 5519 | num_stripes = map->num_stripes; |
| 5520 | } else { |
| 5521 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5522 | &stripe_index); |
| 5523 | } |
| 5524 | |
| 5525 | bbio = alloc_btrfs_bio(num_stripes, 0); |
| 5526 | if (!bbio) { |
| 5527 | ret = -ENOMEM; |
| 5528 | goto out; |
| 5529 | } |
| 5530 | |
| 5531 | for (i = 0; i < num_stripes; i++) { |
| 5532 | bbio->stripes[i].physical = |
| 5533 | map->stripes[stripe_index].physical + |
| 5534 | stripe_offset + stripe_nr * map->stripe_len; |
| 5535 | bbio->stripes[i].dev = map->stripes[stripe_index].dev; |
| 5536 | |
| 5537 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 5538 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5539 | bbio->stripes[i].length = stripes_per_dev * |
| 5540 | map->stripe_len; |
| 5541 | |
| 5542 | if (i / sub_stripes < remaining_stripes) |
| 5543 | bbio->stripes[i].length += |
| 5544 | map->stripe_len; |
| 5545 | |
| 5546 | /* |
| 5547 | * Special for the first stripe and |
| 5548 | * the last stripe: |
| 5549 | * |
| 5550 | * |-------|...|-------| |
| 5551 | * |----------| |
| 5552 | * off end_off |
| 5553 | */ |
| 5554 | if (i < sub_stripes) |
| 5555 | bbio->stripes[i].length -= |
| 5556 | stripe_offset; |
| 5557 | |
| 5558 | if (stripe_index >= last_stripe && |
| 5559 | stripe_index <= (last_stripe + |
| 5560 | sub_stripes - 1)) |
| 5561 | bbio->stripes[i].length -= |
| 5562 | stripe_end_offset; |
| 5563 | |
| 5564 | if (i == sub_stripes - 1) |
| 5565 | stripe_offset = 0; |
| 5566 | } else { |
| 5567 | bbio->stripes[i].length = length; |
| 5568 | } |
| 5569 | |
| 5570 | stripe_index++; |
| 5571 | if (stripe_index == map->num_stripes) { |
| 5572 | stripe_index = 0; |
| 5573 | stripe_nr++; |
| 5574 | } |
| 5575 | } |
| 5576 | |
| 5577 | *bbio_ret = bbio; |
| 5578 | bbio->map_type = map->type; |
| 5579 | bbio->num_stripes = num_stripes; |
| 5580 | out: |
| 5581 | free_extent_map(em); |
| 5582 | return ret; |
| 5583 | } |
| 5584 | |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5585 | /* |
| 5586 | * In dev-replace case, for repair case (that's the only case where the mirror |
| 5587 | * is selected explicitly when calling btrfs_map_block), blocks left of the |
| 5588 | * left cursor can also be read from the target drive. |
| 5589 | * |
| 5590 | * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the |
| 5591 | * array of stripes. |
| 5592 | * For READ, it also needs to be supported using the same mirror number. |
| 5593 | * |
| 5594 | * If the requested block is not left of the left cursor, EIO is returned. This |
| 5595 | * can happen because btrfs_num_copies() returns one more in the dev-replace |
| 5596 | * case. |
| 5597 | */ |
| 5598 | static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info, |
| 5599 | u64 logical, u64 length, |
| 5600 | u64 srcdev_devid, int *mirror_num, |
| 5601 | u64 *physical) |
| 5602 | { |
| 5603 | struct btrfs_bio *bbio = NULL; |
| 5604 | int num_stripes; |
| 5605 | int index_srcdev = 0; |
| 5606 | int found = 0; |
| 5607 | u64 physical_of_found = 0; |
| 5608 | int i; |
| 5609 | int ret = 0; |
| 5610 | |
| 5611 | ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS, |
| 5612 | logical, &length, &bbio, 0, 0); |
| 5613 | if (ret) { |
| 5614 | ASSERT(bbio == NULL); |
| 5615 | return ret; |
| 5616 | } |
| 5617 | |
| 5618 | num_stripes = bbio->num_stripes; |
| 5619 | if (*mirror_num > num_stripes) { |
| 5620 | /* |
| 5621 | * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror, |
| 5622 | * that means that the requested area is not left of the left |
| 5623 | * cursor |
| 5624 | */ |
| 5625 | btrfs_put_bbio(bbio); |
| 5626 | return -EIO; |
| 5627 | } |
| 5628 | |
| 5629 | /* |
| 5630 | * process the rest of the function using the mirror_num of the source |
| 5631 | * drive. Therefore look it up first. At the end, patch the device |
| 5632 | * pointer to the one of the target drive. |
| 5633 | */ |
| 5634 | for (i = 0; i < num_stripes; i++) { |
| 5635 | if (bbio->stripes[i].dev->devid != srcdev_devid) |
| 5636 | continue; |
| 5637 | |
| 5638 | /* |
| 5639 | * In case of DUP, in order to keep it simple, only add the |
| 5640 | * mirror with the lowest physical address |
| 5641 | */ |
| 5642 | if (found && |
| 5643 | physical_of_found <= bbio->stripes[i].physical) |
| 5644 | continue; |
| 5645 | |
| 5646 | index_srcdev = i; |
| 5647 | found = 1; |
| 5648 | physical_of_found = bbio->stripes[i].physical; |
| 5649 | } |
| 5650 | |
| 5651 | btrfs_put_bbio(bbio); |
| 5652 | |
| 5653 | ASSERT(found); |
| 5654 | if (!found) |
| 5655 | return -EIO; |
| 5656 | |
| 5657 | *mirror_num = index_srcdev + 1; |
| 5658 | *physical = physical_of_found; |
| 5659 | return ret; |
| 5660 | } |
| 5661 | |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 5662 | static void handle_ops_on_dev_replace(enum btrfs_map_op op, |
| 5663 | struct btrfs_bio **bbio_ret, |
| 5664 | struct btrfs_dev_replace *dev_replace, |
| 5665 | int *num_stripes_ret, int *max_errors_ret) |
| 5666 | { |
| 5667 | struct btrfs_bio *bbio = *bbio_ret; |
| 5668 | u64 srcdev_devid = dev_replace->srcdev->devid; |
| 5669 | int tgtdev_indexes = 0; |
| 5670 | int num_stripes = *num_stripes_ret; |
| 5671 | int max_errors = *max_errors_ret; |
| 5672 | int i; |
| 5673 | |
| 5674 | if (op == BTRFS_MAP_WRITE) { |
| 5675 | int index_where_to_add; |
| 5676 | |
| 5677 | /* |
| 5678 | * duplicate the write operations while the dev replace |
| 5679 | * procedure is running. Since the copying of the old disk to |
| 5680 | * the new disk takes place at run time while the filesystem is |
| 5681 | * mounted writable, the regular write operations to the old |
| 5682 | * disk have to be duplicated to go to the new disk as well. |
| 5683 | * |
| 5684 | * Note that device->missing is handled by the caller, and that |
| 5685 | * the write to the old disk is already set up in the stripes |
| 5686 | * array. |
| 5687 | */ |
| 5688 | index_where_to_add = num_stripes; |
| 5689 | for (i = 0; i < num_stripes; i++) { |
| 5690 | if (bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5691 | /* write to new disk, too */ |
| 5692 | struct btrfs_bio_stripe *new = |
| 5693 | bbio->stripes + index_where_to_add; |
| 5694 | struct btrfs_bio_stripe *old = |
| 5695 | bbio->stripes + i; |
| 5696 | |
| 5697 | new->physical = old->physical; |
| 5698 | new->length = old->length; |
| 5699 | new->dev = dev_replace->tgtdev; |
| 5700 | bbio->tgtdev_map[i] = index_where_to_add; |
| 5701 | index_where_to_add++; |
| 5702 | max_errors++; |
| 5703 | tgtdev_indexes++; |
| 5704 | } |
| 5705 | } |
| 5706 | num_stripes = index_where_to_add; |
| 5707 | } else if (op == BTRFS_MAP_GET_READ_MIRRORS) { |
| 5708 | int index_srcdev = 0; |
| 5709 | int found = 0; |
| 5710 | u64 physical_of_found = 0; |
| 5711 | |
| 5712 | /* |
| 5713 | * During the dev-replace procedure, the target drive can also |
| 5714 | * be used to read data in case it is needed to repair a corrupt |
| 5715 | * block elsewhere. This is possible if the requested area is |
| 5716 | * left of the left cursor. In this area, the target drive is a |
| 5717 | * full copy of the source drive. |
| 5718 | */ |
| 5719 | for (i = 0; i < num_stripes; i++) { |
| 5720 | if (bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5721 | /* |
| 5722 | * In case of DUP, in order to keep it simple, |
| 5723 | * only add the mirror with the lowest physical |
| 5724 | * address |
| 5725 | */ |
| 5726 | if (found && |
| 5727 | physical_of_found <= |
| 5728 | bbio->stripes[i].physical) |
| 5729 | continue; |
| 5730 | index_srcdev = i; |
| 5731 | found = 1; |
| 5732 | physical_of_found = bbio->stripes[i].physical; |
| 5733 | } |
| 5734 | } |
| 5735 | if (found) { |
| 5736 | struct btrfs_bio_stripe *tgtdev_stripe = |
| 5737 | bbio->stripes + num_stripes; |
| 5738 | |
| 5739 | tgtdev_stripe->physical = physical_of_found; |
| 5740 | tgtdev_stripe->length = |
| 5741 | bbio->stripes[index_srcdev].length; |
| 5742 | tgtdev_stripe->dev = dev_replace->tgtdev; |
| 5743 | bbio->tgtdev_map[index_srcdev] = num_stripes; |
| 5744 | |
| 5745 | tgtdev_indexes++; |
| 5746 | num_stripes++; |
| 5747 | } |
| 5748 | } |
| 5749 | |
| 5750 | *num_stripes_ret = num_stripes; |
| 5751 | *max_errors_ret = max_errors; |
| 5752 | bbio->num_tgtdevs = tgtdev_indexes; |
| 5753 | *bbio_ret = bbio; |
| 5754 | } |
| 5755 | |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5756 | static bool need_full_stripe(enum btrfs_map_op op) |
| 5757 | { |
| 5758 | return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS); |
| 5759 | } |
| 5760 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5761 | static int __btrfs_map_block(struct btrfs_fs_info *fs_info, |
| 5762 | enum btrfs_map_op op, |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5763 | u64 logical, u64 *length, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5764 | struct btrfs_bio **bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5765 | int mirror_num, int need_raid_map) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5766 | { |
| 5767 | struct extent_map *em; |
| 5768 | struct map_lookup *map; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5769 | u64 offset; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5770 | u64 stripe_offset; |
| 5771 | u64 stripe_nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5772 | u64 stripe_len; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5773 | u32 stripe_index; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5774 | int i; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5775 | int ret = 0; |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5776 | int num_stripes; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 5777 | int max_errors = 0; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5778 | int tgtdev_indexes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5779 | struct btrfs_bio *bbio = NULL; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5780 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 5781 | int dev_replace_is_ongoing = 0; |
| 5782 | int num_alloc_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5783 | int patch_the_first_stripe_for_dev_replace = 0; |
| 5784 | u64 physical_to_patch_in_first_stripe = 0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5785 | u64 raid56_full_stripe_start = (u64)-1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5786 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5787 | if (op == BTRFS_MAP_DISCARD) |
| 5788 | return __btrfs_map_block_for_discard(fs_info, logical, |
| 5789 | *length, bbio_ret); |
| 5790 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5791 | em = get_chunk_map(fs_info, logical, *length); |
| 5792 | if (IS_ERR(em)) |
| 5793 | return PTR_ERR(em); |
Josef Bacik | 9bb9187 | 2013-04-19 23:45:33 -0400 | [diff] [blame] | 5794 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5795 | map = em->map_lookup; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5796 | offset = logical - em->start; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5797 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5798 | stripe_len = map->stripe_len; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5799 | stripe_nr = offset; |
| 5800 | /* |
| 5801 | * stripe_nr counts the total number of stripes we have to stride |
| 5802 | * to get to this block |
| 5803 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5804 | stripe_nr = div64_u64(stripe_nr, stripe_len); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5805 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5806 | stripe_offset = stripe_nr * stripe_len; |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 5807 | if (offset < stripe_offset) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 5808 | btrfs_crit(fs_info, |
| 5809 | "stripe math has gone wrong, stripe_offset=%llu, offset=%llu, start=%llu, logical=%llu, stripe_len=%llu", |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 5810 | stripe_offset, offset, em->start, logical, |
| 5811 | stripe_len); |
| 5812 | free_extent_map(em); |
| 5813 | return -EINVAL; |
| 5814 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5815 | |
| 5816 | /* stripe_offset is the offset of this block in its stripe*/ |
| 5817 | stripe_offset = offset - stripe_offset; |
| 5818 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5819 | /* if we're here for raid56, we need to know the stripe aligned start */ |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5820 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5821 | unsigned long full_stripe_len = stripe_len * nr_data_stripes(map); |
| 5822 | raid56_full_stripe_start = offset; |
| 5823 | |
| 5824 | /* allow a write of a full stripe, but make sure we don't |
| 5825 | * allow straddling of stripes |
| 5826 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5827 | raid56_full_stripe_start = div64_u64(raid56_full_stripe_start, |
| 5828 | full_stripe_len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5829 | raid56_full_stripe_start *= full_stripe_len; |
| 5830 | } |
| 5831 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5832 | if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5833 | u64 max_len; |
| 5834 | /* For writes to RAID[56], allow a full stripeset across all disks. |
| 5835 | For other RAID types and for RAID[56] reads, just allow a single |
| 5836 | stripe (on a single disk). */ |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5837 | if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5838 | (op == BTRFS_MAP_WRITE)) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5839 | max_len = stripe_len * nr_data_stripes(map) - |
| 5840 | (offset - raid56_full_stripe_start); |
| 5841 | } else { |
| 5842 | /* we limit the length of each bio to what fits in a stripe */ |
| 5843 | max_len = stripe_len - stripe_offset; |
| 5844 | } |
| 5845 | *length = min_t(u64, em->len - offset, max_len); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5846 | } else { |
| 5847 | *length = em->len - offset; |
| 5848 | } |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5849 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5850 | /* This is for when we're called from btrfs_merge_bio_hook() and all |
| 5851 | it cares about is the length */ |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5852 | if (!bbio_ret) |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5853 | goto out; |
| 5854 | |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 5855 | btrfs_dev_replace_read_lock(dev_replace); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5856 | dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace); |
| 5857 | if (!dev_replace_is_ongoing) |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 5858 | btrfs_dev_replace_read_unlock(dev_replace); |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5859 | else |
| 5860 | btrfs_dev_replace_set_lock_blocking(dev_replace); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5861 | |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5862 | if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 && |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5863 | !need_full_stripe(op) && dev_replace->tgtdev != NULL) { |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5864 | ret = get_extra_mirror_from_replace(fs_info, logical, *length, |
| 5865 | dev_replace->srcdev->devid, |
| 5866 | &mirror_num, |
| 5867 | &physical_to_patch_in_first_stripe); |
| 5868 | if (ret) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5869 | goto out; |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5870 | else |
| 5871 | patch_the_first_stripe_for_dev_replace = 1; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5872 | } else if (mirror_num > map->num_stripes) { |
| 5873 | mirror_num = 0; |
| 5874 | } |
| 5875 | |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5876 | num_stripes = 1; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5877 | stripe_index = 0; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5878 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5879 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5880 | &stripe_index); |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5881 | if (!need_full_stripe(op)) |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 5882 | mirror_num = 1; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5883 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5884 | if (need_full_stripe(op)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5885 | num_stripes = map->num_stripes; |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5886 | else if (mirror_num) |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5887 | stripe_index = mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5888 | else { |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5889 | stripe_index = find_live_mirror(fs_info, map, 0, |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5890 | dev_replace_is_ongoing); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5891 | mirror_num = stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5892 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5893 | |
Chris Mason | 611f0e0 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5894 | } else if (map->type & BTRFS_BLOCK_GROUP_DUP) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5895 | if (need_full_stripe(op)) { |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5896 | num_stripes = map->num_stripes; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5897 | } else if (mirror_num) { |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5898 | stripe_index = mirror_num - 1; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5899 | } else { |
| 5900 | mirror_num = 1; |
| 5901 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5902 | |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5903 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5904 | u32 factor = map->num_stripes / map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5905 | |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5906 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5907 | stripe_index *= map->sub_stripes; |
| 5908 | |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5909 | if (need_full_stripe(op)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5910 | num_stripes = map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5911 | else if (mirror_num) |
| 5912 | stripe_index += mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5913 | else { |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 5914 | int old_stripe_index = stripe_index; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5915 | stripe_index = find_live_mirror(fs_info, map, |
| 5916 | stripe_index, |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5917 | dev_replace_is_ongoing); |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 5918 | mirror_num = stripe_index - old_stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5919 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5920 | |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5921 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5922 | if (need_raid_map && (need_full_stripe(op) || mirror_num > 1)) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5923 | /* push stripe_nr back to the start of the full stripe */ |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 5924 | stripe_nr = div64_u64(raid56_full_stripe_start, |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5925 | stripe_len * nr_data_stripes(map)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5926 | |
| 5927 | /* RAID[56] write or recovery. Return all stripes */ |
| 5928 | num_stripes = map->num_stripes; |
| 5929 | max_errors = nr_parity_stripes(map); |
| 5930 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5931 | *length = map->stripe_len; |
| 5932 | stripe_index = 0; |
| 5933 | stripe_offset = 0; |
| 5934 | } else { |
| 5935 | /* |
| 5936 | * Mirror #0 or #1 means the original data block. |
| 5937 | * Mirror #2 is RAID5 parity block. |
| 5938 | * Mirror #3 is RAID6 Q block. |
| 5939 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5940 | stripe_nr = div_u64_rem(stripe_nr, |
| 5941 | nr_data_stripes(map), &stripe_index); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5942 | if (mirror_num > 1) |
| 5943 | stripe_index = nr_data_stripes(map) + |
| 5944 | mirror_num - 2; |
| 5945 | |
| 5946 | /* We distribute the parity blocks across stripes */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5947 | div_u64_rem(stripe_nr + stripe_index, map->num_stripes, |
| 5948 | &stripe_index); |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5949 | if (!need_full_stripe(op) && mirror_num <= 1) |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 5950 | mirror_num = 1; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5951 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5952 | } else { |
| 5953 | /* |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5954 | * after this, stripe_nr is the number of stripes on this |
| 5955 | * device we have to walk to find the data, and stripe_index is |
| 5956 | * the number of our device in the stripe array |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5957 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5958 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5959 | &stripe_index); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5960 | mirror_num = stripe_index + 1; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5961 | } |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 5962 | if (stripe_index >= map->num_stripes) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 5963 | btrfs_crit(fs_info, |
| 5964 | "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u", |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 5965 | stripe_index, map->num_stripes); |
| 5966 | ret = -EINVAL; |
| 5967 | goto out; |
| 5968 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5969 | |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5970 | num_alloc_stripes = num_stripes; |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5971 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) { |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5972 | if (op == BTRFS_MAP_WRITE) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5973 | num_alloc_stripes <<= 1; |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5974 | if (op == BTRFS_MAP_GET_READ_MIRRORS) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5975 | num_alloc_stripes++; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5976 | tgtdev_indexes = num_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5977 | } |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5978 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5979 | bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5980 | if (!bbio) { |
| 5981 | ret = -ENOMEM; |
| 5982 | goto out; |
| 5983 | } |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5984 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5985 | bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5986 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5987 | /* build raid_map */ |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5988 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map && |
| 5989 | (need_full_stripe(op) || mirror_num > 1)) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5990 | u64 tmp; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5991 | unsigned rot; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5992 | |
| 5993 | bbio->raid_map = (u64 *)((void *)bbio->stripes + |
| 5994 | sizeof(struct btrfs_bio_stripe) * |
| 5995 | num_alloc_stripes + |
| 5996 | sizeof(int) * tgtdev_indexes); |
| 5997 | |
| 5998 | /* Work out the disk rotation on this stripe-set */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5999 | div_u64_rem(stripe_nr, num_stripes, &rot); |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6000 | |
| 6001 | /* Fill in the logical address of each stripe */ |
| 6002 | tmp = stripe_nr * nr_data_stripes(map); |
| 6003 | for (i = 0; i < nr_data_stripes(map); i++) |
| 6004 | bbio->raid_map[(i+rot) % num_stripes] = |
| 6005 | em->start + (tmp + i) * map->stripe_len; |
| 6006 | |
| 6007 | bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE; |
| 6008 | if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
| 6009 | bbio->raid_map[(i+rot+1) % num_stripes] = |
| 6010 | RAID6_Q_STRIPE; |
| 6011 | } |
| 6012 | |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 6013 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 6014 | for (i = 0; i < num_stripes; i++) { |
| 6015 | bbio->stripes[i].physical = |
| 6016 | map->stripes[stripe_index].physical + |
| 6017 | stripe_offset + |
| 6018 | stripe_nr * map->stripe_len; |
| 6019 | bbio->stripes[i].dev = |
| 6020 | map->stripes[stripe_index].dev; |
| 6021 | stripe_index++; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6022 | } |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6023 | |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 6024 | if (need_full_stripe(op)) |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 6025 | max_errors = btrfs_chunk_max_errors(map); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6026 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6027 | if (bbio->raid_map) |
| 6028 | sort_parity_stripes(bbio, num_stripes); |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 6029 | |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6030 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL && |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 6031 | need_full_stripe(op)) { |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 6032 | handle_ops_on_dev_replace(op, &bbio, dev_replace, &num_stripes, |
| 6033 | &max_errors); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 6034 | } |
| 6035 | |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6036 | *bbio_ret = bbio; |
Zhao Lei | 10f1190 | 2015-01-20 15:11:43 +0800 | [diff] [blame] | 6037 | bbio->map_type = map->type; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6038 | bbio->num_stripes = num_stripes; |
| 6039 | bbio->max_errors = max_errors; |
| 6040 | bbio->mirror_num = mirror_num; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 6041 | |
| 6042 | /* |
| 6043 | * this is the case that REQ_READ && dev_replace_is_ongoing && |
| 6044 | * mirror_num == num_stripes + 1 && dev_replace target drive is |
| 6045 | * available as a mirror |
| 6046 | */ |
| 6047 | if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) { |
| 6048 | WARN_ON(num_stripes > 1); |
| 6049 | bbio->stripes[0].dev = dev_replace->tgtdev; |
| 6050 | bbio->stripes[0].physical = physical_to_patch_in_first_stripe; |
| 6051 | bbio->mirror_num = map->num_stripes + 1; |
| 6052 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6053 | out: |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 6054 | if (dev_replace_is_ongoing) { |
| 6055 | btrfs_dev_replace_clear_lock_blocking(dev_replace); |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 6056 | btrfs_dev_replace_read_unlock(dev_replace); |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 6057 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6058 | free_extent_map(em); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 6059 | return ret; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6060 | } |
| 6061 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 6062 | int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op, |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6063 | u64 logical, u64 *length, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6064 | struct btrfs_bio **bbio_ret, int mirror_num) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6065 | { |
Mike Christie | b3d3fa5 | 2016-06-05 14:31:53 -0500 | [diff] [blame] | 6066 | return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6067 | mirror_num, 0); |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6068 | } |
| 6069 | |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 6070 | /* For Scrub/replace */ |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 6071 | int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op, |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 6072 | u64 logical, u64 *length, |
David Sterba | 825ad4c | 2017-03-28 14:45:22 +0200 | [diff] [blame] | 6073 | struct btrfs_bio **bbio_ret) |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 6074 | { |
David Sterba | 825ad4c | 2017-03-28 14:45:22 +0200 | [diff] [blame] | 6075 | return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, 0, 1); |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 6076 | } |
| 6077 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6078 | int btrfs_rmap_block(struct btrfs_fs_info *fs_info, |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6079 | u64 chunk_start, u64 physical, u64 devid, |
| 6080 | u64 **logical, int *naddrs, int *stripe_len) |
| 6081 | { |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6082 | struct extent_map *em; |
| 6083 | struct map_lookup *map; |
| 6084 | u64 *buf; |
| 6085 | u64 bytenr; |
| 6086 | u64 length; |
| 6087 | u64 stripe_nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6088 | u64 rmap_len; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6089 | int i, j, nr = 0; |
| 6090 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 6091 | em = get_chunk_map(fs_info, chunk_start, 1); |
| 6092 | if (IS_ERR(em)) |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 6093 | return -EIO; |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 6094 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 6095 | map = em->map_lookup; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6096 | length = em->len; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6097 | rmap_len = map->stripe_len; |
| 6098 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6099 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6100 | length = div_u64(length, map->num_stripes / map->sub_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6101 | else if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6102 | length = div_u64(length, map->num_stripes); |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 6103 | else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6104 | length = div_u64(length, nr_data_stripes(map)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6105 | rmap_len = map->stripe_len * nr_data_stripes(map); |
| 6106 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6107 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 6108 | buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6109 | BUG_ON(!buf); /* -ENOMEM */ |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6110 | |
| 6111 | for (i = 0; i < map->num_stripes; i++) { |
| 6112 | if (devid && map->stripes[i].dev->devid != devid) |
| 6113 | continue; |
| 6114 | if (map->stripes[i].physical > physical || |
| 6115 | map->stripes[i].physical + length <= physical) |
| 6116 | continue; |
| 6117 | |
| 6118 | stripe_nr = physical - map->stripes[i].physical; |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 6119 | stripe_nr = div64_u64(stripe_nr, map->stripe_len); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6120 | |
| 6121 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
| 6122 | stripe_nr = stripe_nr * map->num_stripes + i; |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6123 | stripe_nr = div_u64(stripe_nr, map->sub_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6124 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
| 6125 | stripe_nr = stripe_nr * map->num_stripes + i; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6126 | } /* else if RAID[56], multiply by nr_data_stripes(). |
| 6127 | * Alternatively, just use rmap_len below instead of |
| 6128 | * map->stripe_len */ |
| 6129 | |
| 6130 | bytenr = chunk_start + stripe_nr * rmap_len; |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 6131 | WARN_ON(nr >= map->num_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6132 | for (j = 0; j < nr; j++) { |
| 6133 | if (buf[j] == bytenr) |
| 6134 | break; |
| 6135 | } |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 6136 | if (j == nr) { |
| 6137 | WARN_ON(nr >= map->num_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6138 | buf[nr++] = bytenr; |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 6139 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6140 | } |
| 6141 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6142 | *logical = buf; |
| 6143 | *naddrs = nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6144 | *stripe_len = rmap_len; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6145 | |
| 6146 | free_extent_map(em); |
| 6147 | return 0; |
| 6148 | } |
| 6149 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6150 | static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio) |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6151 | { |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 6152 | bio->bi_private = bbio->private; |
| 6153 | bio->bi_end_io = bbio->end_io; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6154 | bio_endio(bio); |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 6155 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 6156 | btrfs_put_bbio(bbio); |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6157 | } |
| 6158 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6159 | static void btrfs_end_bio(struct bio *bio) |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6160 | { |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6161 | struct btrfs_bio *bbio = bio->bi_private; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6162 | int is_orig_bio = 0; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6163 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6164 | if (bio->bi_status) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6165 | atomic_inc(&bbio->error); |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6166 | if (bio->bi_status == BLK_STS_IOERR || |
| 6167 | bio->bi_status == BLK_STS_TARGET) { |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6168 | unsigned int stripe_index = |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6169 | btrfs_io_bio(bio)->stripe_index; |
Zhao Lei | 65f5333 | 2015-06-08 20:05:50 +0800 | [diff] [blame] | 6170 | struct btrfs_device *dev; |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6171 | |
| 6172 | BUG_ON(stripe_index >= bbio->num_stripes); |
| 6173 | dev = bbio->stripes[stripe_index].dev; |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6174 | if (dev->bdev) { |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6175 | if (bio_op(bio) == REQ_OP_WRITE) |
Anand Jain | 1cb34c8 | 2017-10-21 01:45:33 +0800 | [diff] [blame] | 6176 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6177 | BTRFS_DEV_STAT_WRITE_ERRS); |
| 6178 | else |
Anand Jain | 1cb34c8 | 2017-10-21 01:45:33 +0800 | [diff] [blame] | 6179 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6180 | BTRFS_DEV_STAT_READ_ERRS); |
Christoph Hellwig | 70fd761 | 2016-11-01 07:40:10 -0600 | [diff] [blame] | 6181 | if (bio->bi_opf & REQ_PREFLUSH) |
Anand Jain | 1cb34c8 | 2017-10-21 01:45:33 +0800 | [diff] [blame] | 6182 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6183 | BTRFS_DEV_STAT_FLUSH_ERRS); |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6184 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6185 | } |
| 6186 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6187 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6188 | if (bio == bbio->orig_bio) |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6189 | is_orig_bio = 1; |
| 6190 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6191 | btrfs_bio_counter_dec(bbio->fs_info); |
| 6192 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6193 | if (atomic_dec_and_test(&bbio->stripes_pending)) { |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6194 | if (!is_orig_bio) { |
| 6195 | bio_put(bio); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6196 | bio = bbio->orig_bio; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6197 | } |
Muthu Kumar | c7b22bb | 2014-01-08 14:19:52 -0700 | [diff] [blame] | 6198 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6199 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6200 | /* only send an error to the higher layers if it is |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6201 | * beyond the tolerance of the btrfs bio |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6202 | */ |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6203 | if (atomic_read(&bbio->error) > bbio->max_errors) { |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6204 | bio->bi_status = BLK_STS_IOERR; |
Chris Mason | 5dbc8fc | 2011-12-09 11:07:37 -0500 | [diff] [blame] | 6205 | } else { |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 6206 | /* |
| 6207 | * this bio is actually up to date, we didn't |
| 6208 | * go over the max number of errors |
| 6209 | */ |
Anand Jain | 2dbe0c7 | 2017-10-14 08:35:56 +0800 | [diff] [blame] | 6210 | bio->bi_status = BLK_STS_OK; |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 6211 | } |
Miao Xie | c55f139 | 2014-06-19 10:42:54 +0800 | [diff] [blame] | 6212 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6213 | btrfs_end_bbio(bbio, bio); |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6214 | } else if (!is_orig_bio) { |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6215 | bio_put(bio); |
| 6216 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6217 | } |
| 6218 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6219 | /* |
| 6220 | * see run_scheduled_bios for a description of why bios are collected for |
| 6221 | * async submit. |
| 6222 | * |
| 6223 | * This will add one bio to the pending list for a device and make sure |
| 6224 | * the work struct is scheduled. |
| 6225 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6226 | static noinline void btrfs_schedule_bio(struct btrfs_device *device, |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6227 | struct bio *bio) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6228 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6229 | struct btrfs_fs_info *fs_info = device->fs_info; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6230 | int should_queue = 1; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6231 | struct btrfs_pending_bios *pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6232 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6233 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state) || |
| 6234 | !device->bdev) { |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6235 | bio_io_error(bio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6236 | return; |
| 6237 | } |
| 6238 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6239 | /* don't bother with additional async steps for reads, right now */ |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6240 | if (bio_op(bio) == REQ_OP_READ) { |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6241 | btrfsic_submit_bio(bio); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6242 | return; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6243 | } |
| 6244 | |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 6245 | WARN_ON(bio->bi_next); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6246 | bio->bi_next = NULL; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6247 | |
| 6248 | spin_lock(&device->io_lock); |
Christoph Hellwig | 67f055c | 2016-11-01 07:40:06 -0600 | [diff] [blame] | 6249 | if (op_is_sync(bio->bi_opf)) |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6250 | pending_bios = &device->pending_sync_bios; |
| 6251 | else |
| 6252 | pending_bios = &device->pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6253 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6254 | if (pending_bios->tail) |
| 6255 | pending_bios->tail->bi_next = bio; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6256 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6257 | pending_bios->tail = bio; |
| 6258 | if (!pending_bios->head) |
| 6259 | pending_bios->head = bio; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6260 | if (device->running_pending) |
| 6261 | should_queue = 0; |
| 6262 | |
| 6263 | spin_unlock(&device->io_lock); |
| 6264 | |
| 6265 | if (should_queue) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6266 | btrfs_queue_work(fs_info->submit_workers, &device->work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6267 | } |
| 6268 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6269 | static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio, |
| 6270 | u64 physical, int dev_nr, int async) |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6271 | { |
| 6272 | struct btrfs_device *dev = bbio->stripes[dev_nr].dev; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6273 | struct btrfs_fs_info *fs_info = bbio->fs_info; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6274 | |
| 6275 | bio->bi_private = bbio; |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6276 | btrfs_io_bio(bio)->stripe_index = dev_nr; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6277 | bio->bi_end_io = btrfs_end_bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6278 | bio->bi_iter.bi_sector = physical >> 9; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6279 | #ifdef DEBUG |
| 6280 | { |
| 6281 | struct rcu_string *name; |
| 6282 | |
| 6283 | rcu_read_lock(); |
| 6284 | name = rcu_dereference(dev->name); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6285 | btrfs_debug(fs_info, |
| 6286 | "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u", |
| 6287 | bio_op(bio), bio->bi_opf, |
| 6288 | (u64)bio->bi_iter.bi_sector, |
| 6289 | (u_long)dev->bdev->bd_dev, name->str, dev->devid, |
| 6290 | bio->bi_iter.bi_size); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6291 | rcu_read_unlock(); |
| 6292 | } |
| 6293 | #endif |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 6294 | bio_set_dev(bio, dev->bdev); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6295 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6296 | btrfs_bio_counter_inc_noblocked(fs_info); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6297 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6298 | if (async) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6299 | btrfs_schedule_bio(dev, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6300 | else |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6301 | btrfsic_submit_bio(bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6302 | } |
| 6303 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6304 | static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical) |
| 6305 | { |
| 6306 | atomic_inc(&bbio->error); |
| 6307 | if (atomic_dec_and_test(&bbio->stripes_pending)) { |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6308 | /* Should be the original bio. */ |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6309 | WARN_ON(bio != bbio->orig_bio); |
| 6310 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6311 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6312 | bio->bi_iter.bi_sector = logical >> 9; |
Anand Jain | 102ed2c | 2017-10-14 08:34:02 +0800 | [diff] [blame] | 6313 | if (atomic_read(&bbio->error) > bbio->max_errors) |
| 6314 | bio->bi_status = BLK_STS_IOERR; |
| 6315 | else |
| 6316 | bio->bi_status = BLK_STS_OK; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6317 | btrfs_end_bbio(bbio, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6318 | } |
| 6319 | } |
| 6320 | |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6321 | blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio, |
| 6322 | int mirror_num, int async_submit) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6323 | { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6324 | struct btrfs_device *dev; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6325 | struct bio *first_bio = bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6326 | u64 logical = (u64)bio->bi_iter.bi_sector << 9; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6327 | u64 length = 0; |
| 6328 | u64 map_length; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6329 | int ret; |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6330 | int dev_nr; |
| 6331 | int total_devs; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6332 | struct btrfs_bio *bbio = NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6333 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6334 | length = bio->bi_iter.bi_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6335 | map_length = length; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6336 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6337 | btrfs_bio_counter_inc_blocked(fs_info); |
Liu Bo | bd7d63c | 2017-09-19 17:50:09 -0600 | [diff] [blame] | 6338 | ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical, |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6339 | &map_length, &bbio, mirror_num, 1); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6340 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6341 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6342 | return errno_to_blk_status(ret); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6343 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6344 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6345 | total_devs = bbio->num_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6346 | bbio->orig_bio = first_bio; |
| 6347 | bbio->private = first_bio->bi_private; |
| 6348 | bbio->end_io = first_bio->bi_end_io; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6349 | bbio->fs_info = fs_info; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6350 | atomic_set(&bbio->stripes_pending, bbio->num_stripes); |
| 6351 | |
Zhao Lei | ad1ba2a | 2015-12-15 18:18:09 +0800 | [diff] [blame] | 6352 | if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6353 | ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6354 | /* In this case, map_length has been set to the length of |
| 6355 | a single stripe; not the whole write */ |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6356 | if (bio_op(bio) == REQ_OP_WRITE) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6357 | ret = raid56_parity_write(fs_info, bio, bbio, |
| 6358 | map_length); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6359 | } else { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6360 | ret = raid56_parity_recover(fs_info, bio, bbio, |
| 6361 | map_length, mirror_num, 1); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6362 | } |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 6363 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6364 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6365 | return errno_to_blk_status(ret); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6366 | } |
| 6367 | |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6368 | if (map_length < length) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6369 | btrfs_crit(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6370 | "mapping failed logical %llu bio len %llu len %llu", |
| 6371 | logical, length, map_length); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6372 | BUG(); |
| 6373 | } |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6374 | |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6375 | for (dev_nr = 0; dev_nr < total_devs; dev_nr++) { |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6376 | dev = bbio->stripes[dev_nr].dev; |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6377 | if (!dev || !dev->bdev || |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 6378 | (bio_op(first_bio) == REQ_OP_WRITE && |
| 6379 | !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))) { |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6380 | bbio_error(bbio, first_bio, logical); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6381 | continue; |
| 6382 | } |
| 6383 | |
David Sterba | 3aa8e07 | 2017-06-02 17:38:30 +0200 | [diff] [blame] | 6384 | if (dev_nr < total_devs - 1) |
David Sterba | 8b6c1d5 | 2017-06-02 17:48:13 +0200 | [diff] [blame] | 6385 | bio = btrfs_bio_clone(first_bio); |
David Sterba | 3aa8e07 | 2017-06-02 17:38:30 +0200 | [diff] [blame] | 6386 | else |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6387 | bio = first_bio; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 6388 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6389 | submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical, |
| 6390 | dev_nr, async_submit); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6391 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6392 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6393 | return BLK_STS_OK; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6394 | } |
| 6395 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6396 | struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid, |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6397 | u8 *uuid, u8 *fsid) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6398 | { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6399 | struct btrfs_device *device; |
| 6400 | struct btrfs_fs_devices *cur_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6401 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6402 | cur_devices = fs_info->fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6403 | while (cur_devices) { |
| 6404 | if (!fsid || |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6405 | !memcmp(cur_devices->fsid, fsid, BTRFS_FSID_SIZE)) { |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 6406 | device = find_device(cur_devices, devid, uuid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6407 | if (device) |
| 6408 | return device; |
| 6409 | } |
| 6410 | cur_devices = cur_devices->seed; |
| 6411 | } |
| 6412 | return NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6413 | } |
| 6414 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6415 | static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices, |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6416 | u64 devid, u8 *dev_uuid) |
| 6417 | { |
| 6418 | struct btrfs_device *device; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6419 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6420 | device = btrfs_alloc_device(NULL, &devid, dev_uuid); |
| 6421 | if (IS_ERR(device)) |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6422 | return device; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6423 | |
| 6424 | list_add(&device->dev_list, &fs_devices->devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6425 | device->fs_devices = fs_devices; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6426 | fs_devices->num_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6427 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6428 | set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6429 | fs_devices->missing_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6430 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6431 | return device; |
| 6432 | } |
| 6433 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6434 | /** |
| 6435 | * btrfs_alloc_device - allocate struct btrfs_device |
| 6436 | * @fs_info: used only for generating a new devid, can be NULL if |
| 6437 | * devid is provided (i.e. @devid != NULL). |
| 6438 | * @devid: a pointer to devid for this device. If NULL a new devid |
| 6439 | * is generated. |
| 6440 | * @uuid: a pointer to UUID for this device. If NULL a new UUID |
| 6441 | * is generated. |
| 6442 | * |
| 6443 | * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR() |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 6444 | * on error. Returned struct is not linked onto any lists and must be |
| 6445 | * destroyed with free_device. |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6446 | */ |
| 6447 | struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info, |
| 6448 | const u64 *devid, |
| 6449 | const u8 *uuid) |
| 6450 | { |
| 6451 | struct btrfs_device *dev; |
| 6452 | u64 tmp; |
| 6453 | |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6454 | if (WARN_ON(!devid && !fs_info)) |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6455 | return ERR_PTR(-EINVAL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6456 | |
| 6457 | dev = __alloc_device(); |
| 6458 | if (IS_ERR(dev)) |
| 6459 | return dev; |
| 6460 | |
| 6461 | if (devid) |
| 6462 | tmp = *devid; |
| 6463 | else { |
| 6464 | int ret; |
| 6465 | |
| 6466 | ret = find_next_devid(fs_info, &tmp); |
| 6467 | if (ret) { |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 6468 | free_device(dev); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6469 | return ERR_PTR(ret); |
| 6470 | } |
| 6471 | } |
| 6472 | dev->devid = tmp; |
| 6473 | |
| 6474 | if (uuid) |
| 6475 | memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE); |
| 6476 | else |
| 6477 | generate_random_uuid(dev->uuid); |
| 6478 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 6479 | btrfs_init_work(&dev->work, btrfs_submit_helper, |
| 6480 | pending_bios_fn, NULL, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6481 | |
| 6482 | return dev; |
| 6483 | } |
| 6484 | |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6485 | /* Return -EIO if any error, otherwise return 0. */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6486 | static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6487 | struct extent_buffer *leaf, |
| 6488 | struct btrfs_chunk *chunk, u64 logical) |
| 6489 | { |
| 6490 | u64 length; |
| 6491 | u64 stripe_len; |
| 6492 | u16 num_stripes; |
| 6493 | u16 sub_stripes; |
| 6494 | u64 type; |
| 6495 | |
| 6496 | length = btrfs_chunk_length(leaf, chunk); |
| 6497 | stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
| 6498 | num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 6499 | sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); |
| 6500 | type = btrfs_chunk_type(leaf, chunk); |
| 6501 | |
| 6502 | if (!num_stripes) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6503 | btrfs_err(fs_info, "invalid chunk num_stripes: %u", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6504 | num_stripes); |
| 6505 | return -EIO; |
| 6506 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6507 | if (!IS_ALIGNED(logical, fs_info->sectorsize)) { |
| 6508 | btrfs_err(fs_info, "invalid chunk logical %llu", logical); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6509 | return -EIO; |
| 6510 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6511 | if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) { |
| 6512 | btrfs_err(fs_info, "invalid chunk sectorsize %u", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6513 | btrfs_chunk_sector_size(leaf, chunk)); |
| 6514 | return -EIO; |
| 6515 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6516 | if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) { |
| 6517 | btrfs_err(fs_info, "invalid chunk length %llu", length); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6518 | return -EIO; |
| 6519 | } |
| 6520 | if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6521 | btrfs_err(fs_info, "invalid chunk stripe length: %llu", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6522 | stripe_len); |
| 6523 | return -EIO; |
| 6524 | } |
| 6525 | if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) & |
| 6526 | type) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6527 | btrfs_err(fs_info, "unrecognized chunk type: %llu", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6528 | ~(BTRFS_BLOCK_GROUP_TYPE_MASK | |
| 6529 | BTRFS_BLOCK_GROUP_PROFILE_MASK) & |
| 6530 | btrfs_chunk_type(leaf, chunk)); |
| 6531 | return -EIO; |
| 6532 | } |
| 6533 | if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) || |
| 6534 | (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) || |
| 6535 | (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) || |
| 6536 | (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) || |
| 6537 | (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) || |
| 6538 | ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 && |
| 6539 | num_stripes != 1)) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6540 | btrfs_err(fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6541 | "invalid num_stripes:sub_stripes %u:%u for profile %llu", |
| 6542 | num_stripes, sub_stripes, |
| 6543 | type & BTRFS_BLOCK_GROUP_PROFILE_MASK); |
| 6544 | return -EIO; |
| 6545 | } |
| 6546 | |
| 6547 | return 0; |
| 6548 | } |
| 6549 | |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6550 | static void btrfs_report_missing_device(struct btrfs_fs_info *fs_info, |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6551 | u64 devid, u8 *uuid, bool error) |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6552 | { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6553 | if (error) |
| 6554 | btrfs_err_rl(fs_info, "devid %llu uuid %pU is missing", |
| 6555 | devid, uuid); |
| 6556 | else |
| 6557 | btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing", |
| 6558 | devid, uuid); |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6559 | } |
| 6560 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6561 | static int read_one_chunk(struct btrfs_fs_info *fs_info, struct btrfs_key *key, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6562 | struct extent_buffer *leaf, |
| 6563 | struct btrfs_chunk *chunk) |
| 6564 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6565 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6566 | struct map_lookup *map; |
| 6567 | struct extent_map *em; |
| 6568 | u64 logical; |
| 6569 | u64 length; |
| 6570 | u64 devid; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6571 | u8 uuid[BTRFS_UUID_SIZE]; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6572 | int num_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6573 | int ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6574 | int i; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6575 | |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 6576 | logical = key->offset; |
| 6577 | length = btrfs_chunk_length(leaf, chunk); |
Qu Wenruo | f04b772 | 2015-12-15 09:14:37 +0800 | [diff] [blame] | 6578 | num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6579 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6580 | ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6581 | if (ret) |
| 6582 | return ret; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6583 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6584 | read_lock(&map_tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6585 | em = lookup_extent_mapping(&map_tree->map_tree, logical, 1); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6586 | read_unlock(&map_tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6587 | |
| 6588 | /* already mapped? */ |
| 6589 | if (em && em->start <= logical && em->start + em->len > logical) { |
| 6590 | free_extent_map(em); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6591 | return 0; |
| 6592 | } else if (em) { |
| 6593 | free_extent_map(em); |
| 6594 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6595 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 6596 | em = alloc_extent_map(); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6597 | if (!em) |
| 6598 | return -ENOMEM; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6599 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6600 | if (!map) { |
| 6601 | free_extent_map(em); |
| 6602 | return -ENOMEM; |
| 6603 | } |
| 6604 | |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 6605 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 6606 | em->map_lookup = map; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6607 | em->start = logical; |
| 6608 | em->len = length; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 6609 | em->orig_start = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6610 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6611 | em->block_len = em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6612 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6613 | map->num_stripes = num_stripes; |
| 6614 | map->io_width = btrfs_chunk_io_width(leaf, chunk); |
| 6615 | map->io_align = btrfs_chunk_io_align(leaf, chunk); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6616 | map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
| 6617 | map->type = btrfs_chunk_type(leaf, chunk); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6618 | map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6619 | for (i = 0; i < num_stripes; i++) { |
| 6620 | map->stripes[i].physical = |
| 6621 | btrfs_stripe_offset_nr(leaf, chunk, i); |
| 6622 | devid = btrfs_stripe_devid_nr(leaf, chunk, i); |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6623 | read_extent_buffer(leaf, uuid, (unsigned long) |
| 6624 | btrfs_stripe_dev_uuid_nr(chunk, i), |
| 6625 | BTRFS_UUID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6626 | map->stripes[i].dev = btrfs_find_device(fs_info, devid, |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6627 | uuid, NULL); |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 6628 | if (!map->stripes[i].dev && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6629 | !btrfs_test_opt(fs_info, DEGRADED)) { |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6630 | free_extent_map(em); |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6631 | btrfs_report_missing_device(fs_info, devid, uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 6632 | return -ENOENT; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6633 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6634 | if (!map->stripes[i].dev) { |
| 6635 | map->stripes[i].dev = |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6636 | add_missing_dev(fs_info->fs_devices, devid, |
| 6637 | uuid); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6638 | if (IS_ERR(map->stripes[i].dev)) { |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6639 | free_extent_map(em); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6640 | btrfs_err(fs_info, |
| 6641 | "failed to init missing dev %llu: %ld", |
| 6642 | devid, PTR_ERR(map->stripes[i].dev)); |
| 6643 | return PTR_ERR(map->stripes[i].dev); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6644 | } |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6645 | btrfs_report_missing_device(fs_info, devid, uuid, false); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6646 | } |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 6647 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 6648 | &(map->stripes[i].dev->dev_state)); |
| 6649 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6650 | } |
| 6651 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6652 | write_lock(&map_tree->map_tree.lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 6653 | ret = add_extent_mapping(&map_tree->map_tree, em, 0); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6654 | write_unlock(&map_tree->map_tree.lock); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6655 | BUG_ON(ret); /* Tree corruption */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6656 | free_extent_map(em); |
| 6657 | |
| 6658 | return 0; |
| 6659 | } |
| 6660 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6661 | static void fill_device_from_item(struct extent_buffer *leaf, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6662 | struct btrfs_dev_item *dev_item, |
| 6663 | struct btrfs_device *device) |
| 6664 | { |
| 6665 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6666 | |
| 6667 | device->devid = btrfs_device_id(leaf, dev_item); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 6668 | device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item); |
| 6669 | device->total_bytes = device->disk_total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 6670 | device->commit_total_bytes = device->disk_total_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6671 | device->bytes_used = btrfs_device_bytes_used(leaf, dev_item); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 6672 | device->commit_bytes_used = device->bytes_used; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6673 | device->type = btrfs_device_type(leaf, dev_item); |
| 6674 | device->io_align = btrfs_device_io_align(leaf, dev_item); |
| 6675 | device->io_width = btrfs_device_io_width(leaf, dev_item); |
| 6676 | device->sector_size = btrfs_device_sector_size(leaf, dev_item); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 6677 | WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 6678 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6679 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 6680 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 6681 | read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6682 | } |
| 6683 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6684 | static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info, |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6685 | u8 *fsid) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6686 | { |
| 6687 | struct btrfs_fs_devices *fs_devices; |
| 6688 | int ret; |
| 6689 | |
David Sterba | a32bf9a | 2018-03-16 02:21:22 +0100 | [diff] [blame] | 6690 | lockdep_assert_held(&uuid_mutex); |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 6691 | ASSERT(fsid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6692 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6693 | fs_devices = fs_info->fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6694 | while (fs_devices) { |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6695 | if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE)) |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6696 | return fs_devices; |
| 6697 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6698 | fs_devices = fs_devices->seed; |
| 6699 | } |
| 6700 | |
| 6701 | fs_devices = find_fsid(fsid); |
| 6702 | if (!fs_devices) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6703 | if (!btrfs_test_opt(fs_info, DEGRADED)) |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6704 | return ERR_PTR(-ENOENT); |
| 6705 | |
| 6706 | fs_devices = alloc_fs_devices(fsid); |
| 6707 | if (IS_ERR(fs_devices)) |
| 6708 | return fs_devices; |
| 6709 | |
| 6710 | fs_devices->seeding = 1; |
| 6711 | fs_devices->opened = 1; |
| 6712 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6713 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6714 | |
| 6715 | fs_devices = clone_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6716 | if (IS_ERR(fs_devices)) |
| 6717 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6718 | |
Anand Jain | 897fb57 | 2018-04-12 10:29:28 +0800 | [diff] [blame] | 6719 | ret = open_fs_devices(fs_devices, FMODE_READ, fs_info->bdev_holder); |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 6720 | if (ret) { |
| 6721 | free_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6722 | fs_devices = ERR_PTR(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6723 | goto out; |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 6724 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6725 | |
| 6726 | if (!fs_devices->seeding) { |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 6727 | close_fs_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6728 | free_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6729 | fs_devices = ERR_PTR(-EINVAL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6730 | goto out; |
| 6731 | } |
| 6732 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6733 | fs_devices->seed = fs_info->fs_devices->seed; |
| 6734 | fs_info->fs_devices->seed = fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6735 | out: |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6736 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6737 | } |
| 6738 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6739 | static int read_one_dev(struct btrfs_fs_info *fs_info, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6740 | struct extent_buffer *leaf, |
| 6741 | struct btrfs_dev_item *dev_item) |
| 6742 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6743 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6744 | struct btrfs_device *device; |
| 6745 | u64 devid; |
| 6746 | int ret; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6747 | u8 fs_uuid[BTRFS_FSID_SIZE]; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6748 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 6749 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6750 | devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 6751 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6752 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 6753 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6754 | BTRFS_FSID_SIZE); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6755 | |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6756 | if (memcmp(fs_uuid, fs_info->fsid, BTRFS_FSID_SIZE)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6757 | fs_devices = open_seed_devices(fs_info, fs_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6758 | if (IS_ERR(fs_devices)) |
| 6759 | return PTR_ERR(fs_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6760 | } |
| 6761 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6762 | device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6763 | if (!device) { |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6764 | if (!btrfs_test_opt(fs_info, DEGRADED)) { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6765 | btrfs_report_missing_device(fs_info, devid, |
| 6766 | dev_uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 6767 | return -ENOENT; |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6768 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6769 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6770 | device = add_missing_dev(fs_devices, devid, dev_uuid); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6771 | if (IS_ERR(device)) { |
| 6772 | btrfs_err(fs_info, |
| 6773 | "failed to add missing dev %llu: %ld", |
| 6774 | devid, PTR_ERR(device)); |
| 6775 | return PTR_ERR(device); |
| 6776 | } |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6777 | btrfs_report_missing_device(fs_info, devid, dev_uuid, false); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6778 | } else { |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6779 | if (!device->bdev) { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6780 | if (!btrfs_test_opt(fs_info, DEGRADED)) { |
| 6781 | btrfs_report_missing_device(fs_info, |
| 6782 | devid, dev_uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 6783 | return -ENOENT; |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6784 | } |
| 6785 | btrfs_report_missing_device(fs_info, devid, |
| 6786 | dev_uuid, false); |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6787 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6788 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6789 | if (!device->bdev && |
| 6790 | !test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6791 | /* |
| 6792 | * this happens when a device that was properly setup |
| 6793 | * in the device info lists suddenly goes bad. |
| 6794 | * device->bdev is NULL, and so we have to set |
| 6795 | * device->missing to one here |
| 6796 | */ |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6797 | device->fs_devices->missing_devices++; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6798 | set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6799 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6800 | |
| 6801 | /* Move the device to its own fs_devices */ |
| 6802 | if (device->fs_devices != fs_devices) { |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6803 | ASSERT(test_bit(BTRFS_DEV_STATE_MISSING, |
| 6804 | &device->dev_state)); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6805 | |
| 6806 | list_move(&device->dev_list, &fs_devices->devices); |
| 6807 | device->fs_devices->num_devices--; |
| 6808 | fs_devices->num_devices++; |
| 6809 | |
| 6810 | device->fs_devices->missing_devices--; |
| 6811 | fs_devices->missing_devices++; |
| 6812 | |
| 6813 | device->fs_devices = fs_devices; |
| 6814 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6815 | } |
| 6816 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6817 | if (device->fs_devices != fs_info->fs_devices) { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 6818 | BUG_ON(test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6819 | if (device->generation != |
| 6820 | btrfs_device_generation(leaf, dev_item)) |
| 6821 | return -EINVAL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 6822 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6823 | |
| 6824 | fill_device_from_item(leaf, dev_item, device); |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 6825 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 6826 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 6827 | !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6828 | device->fs_devices->total_rw_bytes += device->total_bytes; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 6829 | atomic64_add(device->total_bytes - device->bytes_used, |
| 6830 | &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 6831 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6832 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6833 | return ret; |
| 6834 | } |
| 6835 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 6836 | int btrfs_read_sys_array(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6837 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 6838 | struct btrfs_root *root = fs_info->tree_root; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6839 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6840 | struct extent_buffer *sb; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6841 | struct btrfs_disk_key *disk_key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6842 | struct btrfs_chunk *chunk; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6843 | u8 *array_ptr; |
| 6844 | unsigned long sb_array_offset; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6845 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6846 | u32 num_stripes; |
| 6847 | u32 array_size; |
| 6848 | u32 len = 0; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6849 | u32 cur_offset; |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6850 | u64 type; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6851 | struct btrfs_key key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6852 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6853 | ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize); |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 6854 | /* |
| 6855 | * This will create extent buffer of nodesize, superblock size is |
| 6856 | * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will |
| 6857 | * overallocate but we can keep it as-is, only the first page is used. |
| 6858 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6859 | sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 6860 | if (IS_ERR(sb)) |
| 6861 | return PTR_ERR(sb); |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 6862 | set_extent_buffer_uptodate(sb); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 6863 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0); |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 6864 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6865 | * The sb extent buffer is artificial and just used to read the system array. |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 6866 | * set_extent_buffer_uptodate() call does not properly mark all it's |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 6867 | * pages up-to-date when the page is larger: extent does not cover the |
| 6868 | * whole page and consequently check_page_uptodate does not find all |
| 6869 | * the page's extents up-to-date (the hole beyond sb), |
| 6870 | * write_extent_buffer then triggers a WARN_ON. |
| 6871 | * |
| 6872 | * Regular short extents go through mark_extent_buffer_dirty/writeback cycle, |
| 6873 | * but sb spans only this function. Add an explicit SetPageUptodate call |
| 6874 | * to silence the warning eg. on PowerPC 64. |
| 6875 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 6876 | if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE) |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 6877 | SetPageUptodate(sb->pages[0]); |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 6878 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6879 | write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6880 | array_size = btrfs_super_sys_array_size(super_copy); |
| 6881 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6882 | array_ptr = super_copy->sys_chunk_array; |
| 6883 | sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array); |
| 6884 | cur_offset = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6885 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6886 | while (cur_offset < array_size) { |
| 6887 | disk_key = (struct btrfs_disk_key *)array_ptr; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6888 | len = sizeof(*disk_key); |
| 6889 | if (cur_offset + len > array_size) |
| 6890 | goto out_short_read; |
| 6891 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6892 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 6893 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6894 | array_ptr += len; |
| 6895 | sb_array_offset += len; |
| 6896 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6897 | |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6898 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6899 | chunk = (struct btrfs_chunk *)sb_array_offset; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6900 | /* |
| 6901 | * At least one btrfs_chunk with one stripe must be |
| 6902 | * present, exact stripe count check comes afterwards |
| 6903 | */ |
| 6904 | len = btrfs_chunk_item_size(1); |
| 6905 | if (cur_offset + len > array_size) |
| 6906 | goto out_short_read; |
| 6907 | |
| 6908 | num_stripes = btrfs_chunk_num_stripes(sb, chunk); |
David Sterba | f5cdedd | 2015-11-30 17:27:06 +0100 | [diff] [blame] | 6909 | if (!num_stripes) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6910 | btrfs_err(fs_info, |
| 6911 | "invalid number of stripes %u in sys_array at offset %u", |
David Sterba | f5cdedd | 2015-11-30 17:27:06 +0100 | [diff] [blame] | 6912 | num_stripes, cur_offset); |
| 6913 | ret = -EIO; |
| 6914 | break; |
| 6915 | } |
| 6916 | |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6917 | type = btrfs_chunk_type(sb, chunk); |
| 6918 | if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6919 | btrfs_err(fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6920 | "invalid chunk type %llu in sys_array at offset %u", |
| 6921 | type, cur_offset); |
| 6922 | ret = -EIO; |
| 6923 | break; |
| 6924 | } |
| 6925 | |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6926 | len = btrfs_chunk_item_size(num_stripes); |
| 6927 | if (cur_offset + len > array_size) |
| 6928 | goto out_short_read; |
| 6929 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6930 | ret = read_one_chunk(fs_info, &key, sb, chunk); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6931 | if (ret) |
| 6932 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6933 | } else { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6934 | btrfs_err(fs_info, |
| 6935 | "unexpected item type %u in sys_array at offset %u", |
| 6936 | (u32)key.type, cur_offset); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6937 | ret = -EIO; |
| 6938 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6939 | } |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6940 | array_ptr += len; |
| 6941 | sb_array_offset += len; |
| 6942 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6943 | } |
Liu Bo | d865177 | 2016-06-03 17:41:42 -0700 | [diff] [blame] | 6944 | clear_extent_buffer_uptodate(sb); |
Liu Bo | 1c8b5b6 | 2016-05-13 17:06:59 -0700 | [diff] [blame] | 6945 | free_extent_buffer_stale(sb); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6946 | return ret; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6947 | |
| 6948 | out_short_read: |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6949 | btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u", |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6950 | len, cur_offset); |
Liu Bo | d865177 | 2016-06-03 17:41:42 -0700 | [diff] [blame] | 6951 | clear_extent_buffer_uptodate(sb); |
Liu Bo | 1c8b5b6 | 2016-05-13 17:06:59 -0700 | [diff] [blame] | 6952 | free_extent_buffer_stale(sb); |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6953 | return -EIO; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6954 | } |
| 6955 | |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6956 | /* |
| 6957 | * Check if all chunks in the fs are OK for read-write degraded mount |
| 6958 | * |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6959 | * If the @failing_dev is specified, it's accounted as missing. |
| 6960 | * |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6961 | * Return true if all chunks meet the minimal RW mount requirements. |
| 6962 | * Return false if any chunk doesn't meet the minimal RW mount requirements. |
| 6963 | */ |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6964 | bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info, |
| 6965 | struct btrfs_device *failing_dev) |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6966 | { |
| 6967 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
| 6968 | struct extent_map *em; |
| 6969 | u64 next_start = 0; |
| 6970 | bool ret = true; |
| 6971 | |
| 6972 | read_lock(&map_tree->map_tree.lock); |
| 6973 | em = lookup_extent_mapping(&map_tree->map_tree, 0, (u64)-1); |
| 6974 | read_unlock(&map_tree->map_tree.lock); |
| 6975 | /* No chunk at all? Return false anyway */ |
| 6976 | if (!em) { |
| 6977 | ret = false; |
| 6978 | goto out; |
| 6979 | } |
| 6980 | while (em) { |
| 6981 | struct map_lookup *map; |
| 6982 | int missing = 0; |
| 6983 | int max_tolerated; |
| 6984 | int i; |
| 6985 | |
| 6986 | map = em->map_lookup; |
| 6987 | max_tolerated = |
| 6988 | btrfs_get_num_tolerated_disk_barrier_failures( |
| 6989 | map->type); |
| 6990 | for (i = 0; i < map->num_stripes; i++) { |
| 6991 | struct btrfs_device *dev = map->stripes[i].dev; |
| 6992 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6993 | if (!dev || !dev->bdev || |
| 6994 | test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) || |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6995 | dev->last_flush_error) |
| 6996 | missing++; |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6997 | else if (failing_dev && failing_dev == dev) |
| 6998 | missing++; |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6999 | } |
| 7000 | if (missing > max_tolerated) { |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 7001 | if (!failing_dev) |
| 7002 | btrfs_warn(fs_info, |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 7003 | "chunk %llu missing %d devices, max tolerance is %d for writeable mount", |
| 7004 | em->start, missing, max_tolerated); |
| 7005 | free_extent_map(em); |
| 7006 | ret = false; |
| 7007 | goto out; |
| 7008 | } |
| 7009 | next_start = extent_map_end(em); |
| 7010 | free_extent_map(em); |
| 7011 | |
| 7012 | read_lock(&map_tree->map_tree.lock); |
| 7013 | em = lookup_extent_mapping(&map_tree->map_tree, next_start, |
| 7014 | (u64)(-1) - next_start); |
| 7015 | read_unlock(&map_tree->map_tree.lock); |
| 7016 | } |
| 7017 | out: |
| 7018 | return ret; |
| 7019 | } |
| 7020 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 7021 | int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7022 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 7023 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7024 | struct btrfs_path *path; |
| 7025 | struct extent_buffer *leaf; |
| 7026 | struct btrfs_key key; |
| 7027 | struct btrfs_key found_key; |
| 7028 | int ret; |
| 7029 | int slot; |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7030 | u64 total_dev = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7031 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7032 | path = btrfs_alloc_path(); |
| 7033 | if (!path) |
| 7034 | return -ENOMEM; |
| 7035 | |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 7036 | mutex_lock(&uuid_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7037 | mutex_lock(&fs_info->chunk_mutex); |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 7038 | |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 7039 | /* |
| 7040 | * Read all device items, and then all the chunk items. All |
| 7041 | * device items are found before any chunk item (their object id |
| 7042 | * is smaller than the lowest possible object id for a chunk |
| 7043 | * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID). |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7044 | */ |
| 7045 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 7046 | key.offset = 0; |
| 7047 | key.type = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7048 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Zhao Lei | ab59381 | 2010-03-25 12:34:49 +0000 | [diff] [blame] | 7049 | if (ret < 0) |
| 7050 | goto error; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7051 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7052 | leaf = path->nodes[0]; |
| 7053 | slot = path->slots[0]; |
| 7054 | if (slot >= btrfs_header_nritems(leaf)) { |
| 7055 | ret = btrfs_next_leaf(root, path); |
| 7056 | if (ret == 0) |
| 7057 | continue; |
| 7058 | if (ret < 0) |
| 7059 | goto error; |
| 7060 | break; |
| 7061 | } |
| 7062 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 7063 | if (found_key.type == BTRFS_DEV_ITEM_KEY) { |
| 7064 | struct btrfs_dev_item *dev_item; |
| 7065 | dev_item = btrfs_item_ptr(leaf, slot, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7066 | struct btrfs_dev_item); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7067 | ret = read_one_dev(fs_info, leaf, dev_item); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 7068 | if (ret) |
| 7069 | goto error; |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7070 | total_dev++; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7071 | } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 7072 | struct btrfs_chunk *chunk; |
| 7073 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7074 | ret = read_one_chunk(fs_info, &found_key, leaf, chunk); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7075 | if (ret) |
| 7076 | goto error; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7077 | } |
| 7078 | path->slots[0]++; |
| 7079 | } |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7080 | |
| 7081 | /* |
| 7082 | * After loading chunk tree, we've got all device information, |
| 7083 | * do another round of validation checks. |
| 7084 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7085 | if (total_dev != fs_info->fs_devices->total_devices) { |
| 7086 | btrfs_err(fs_info, |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7087 | "super_num_devices %llu mismatch with num_devices %llu found here", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7088 | btrfs_super_num_devices(fs_info->super_copy), |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7089 | total_dev); |
| 7090 | ret = -EINVAL; |
| 7091 | goto error; |
| 7092 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7093 | if (btrfs_super_total_bytes(fs_info->super_copy) < |
| 7094 | fs_info->fs_devices->total_rw_bytes) { |
| 7095 | btrfs_err(fs_info, |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7096 | "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7097 | btrfs_super_total_bytes(fs_info->super_copy), |
| 7098 | fs_info->fs_devices->total_rw_bytes); |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7099 | ret = -EINVAL; |
| 7100 | goto error; |
| 7101 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7102 | ret = 0; |
| 7103 | error: |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7104 | mutex_unlock(&fs_info->chunk_mutex); |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 7105 | mutex_unlock(&uuid_mutex); |
| 7106 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7107 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7108 | return ret; |
| 7109 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7110 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7111 | void btrfs_init_devices_late(struct btrfs_fs_info *fs_info) |
| 7112 | { |
| 7113 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7114 | struct btrfs_device *device; |
| 7115 | |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 7116 | while (fs_devices) { |
| 7117 | mutex_lock(&fs_devices->device_list_mutex); |
| 7118 | list_for_each_entry(device, &fs_devices->devices, dev_list) |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7119 | device->fs_info = fs_info; |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 7120 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7121 | |
| 7122 | fs_devices = fs_devices->seed; |
| 7123 | } |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7124 | } |
| 7125 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7126 | static void __btrfs_reset_dev_stats(struct btrfs_device *dev) |
| 7127 | { |
| 7128 | int i; |
| 7129 | |
| 7130 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7131 | btrfs_dev_stat_reset(dev, i); |
| 7132 | } |
| 7133 | |
| 7134 | int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info) |
| 7135 | { |
| 7136 | struct btrfs_key key; |
| 7137 | struct btrfs_key found_key; |
| 7138 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 7139 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7140 | struct extent_buffer *eb; |
| 7141 | int slot; |
| 7142 | int ret = 0; |
| 7143 | struct btrfs_device *device; |
| 7144 | struct btrfs_path *path = NULL; |
| 7145 | int i; |
| 7146 | |
| 7147 | path = btrfs_alloc_path(); |
| 7148 | if (!path) { |
| 7149 | ret = -ENOMEM; |
| 7150 | goto out; |
| 7151 | } |
| 7152 | |
| 7153 | mutex_lock(&fs_devices->device_list_mutex); |
| 7154 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
| 7155 | int item_size; |
| 7156 | struct btrfs_dev_stats_item *ptr; |
| 7157 | |
David Sterba | 242e295 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 7158 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 7159 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7160 | key.offset = device->devid; |
| 7161 | ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0); |
| 7162 | if (ret) { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7163 | __btrfs_reset_dev_stats(device); |
| 7164 | device->dev_stats_valid = 1; |
| 7165 | btrfs_release_path(path); |
| 7166 | continue; |
| 7167 | } |
| 7168 | slot = path->slots[0]; |
| 7169 | eb = path->nodes[0]; |
| 7170 | btrfs_item_key_to_cpu(eb, &found_key, slot); |
| 7171 | item_size = btrfs_item_size_nr(eb, slot); |
| 7172 | |
| 7173 | ptr = btrfs_item_ptr(eb, slot, |
| 7174 | struct btrfs_dev_stats_item); |
| 7175 | |
| 7176 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 7177 | if (item_size >= (1 + i) * sizeof(__le64)) |
| 7178 | btrfs_dev_stat_set(device, i, |
| 7179 | btrfs_dev_stats_value(eb, ptr, i)); |
| 7180 | else |
| 7181 | btrfs_dev_stat_reset(device, i); |
| 7182 | } |
| 7183 | |
| 7184 | device->dev_stats_valid = 1; |
| 7185 | btrfs_dev_stat_print_on_load(device); |
| 7186 | btrfs_release_path(path); |
| 7187 | } |
| 7188 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7189 | |
| 7190 | out: |
| 7191 | btrfs_free_path(path); |
| 7192 | return ret < 0 ? ret : 0; |
| 7193 | } |
| 7194 | |
| 7195 | static int update_dev_stat_item(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7196 | struct btrfs_fs_info *fs_info, |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7197 | struct btrfs_device *device) |
| 7198 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7199 | struct btrfs_root *dev_root = fs_info->dev_root; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7200 | struct btrfs_path *path; |
| 7201 | struct btrfs_key key; |
| 7202 | struct extent_buffer *eb; |
| 7203 | struct btrfs_dev_stats_item *ptr; |
| 7204 | int ret; |
| 7205 | int i; |
| 7206 | |
David Sterba | 242e295 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 7207 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 7208 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7209 | key.offset = device->devid; |
| 7210 | |
| 7211 | path = btrfs_alloc_path(); |
David Sterba | fa25299 | 2017-02-15 09:35:01 +0100 | [diff] [blame] | 7212 | if (!path) |
| 7213 | return -ENOMEM; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7214 | ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1); |
| 7215 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7216 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7217 | "error %d while searching for dev_stats item for device %s", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7218 | ret, rcu_str_deref(device->name)); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7219 | goto out; |
| 7220 | } |
| 7221 | |
| 7222 | if (ret == 0 && |
| 7223 | btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) { |
| 7224 | /* need to delete old one and insert a new one */ |
| 7225 | ret = btrfs_del_item(trans, dev_root, path); |
| 7226 | if (ret != 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7227 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7228 | "delete too small dev_stats item for device %s failed %d", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7229 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7230 | goto out; |
| 7231 | } |
| 7232 | ret = 1; |
| 7233 | } |
| 7234 | |
| 7235 | if (ret == 1) { |
| 7236 | /* need to insert a new item */ |
| 7237 | btrfs_release_path(path); |
| 7238 | ret = btrfs_insert_empty_item(trans, dev_root, path, |
| 7239 | &key, sizeof(*ptr)); |
| 7240 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7241 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7242 | "insert dev_stats item for device %s failed %d", |
| 7243 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7244 | goto out; |
| 7245 | } |
| 7246 | } |
| 7247 | |
| 7248 | eb = path->nodes[0]; |
| 7249 | ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item); |
| 7250 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7251 | btrfs_set_dev_stats_value(eb, ptr, i, |
| 7252 | btrfs_dev_stat_read(device, i)); |
| 7253 | btrfs_mark_buffer_dirty(eb); |
| 7254 | |
| 7255 | out: |
| 7256 | btrfs_free_path(path); |
| 7257 | return ret; |
| 7258 | } |
| 7259 | |
| 7260 | /* |
| 7261 | * called from commit_transaction. Writes all changed device stats to disk. |
| 7262 | */ |
| 7263 | int btrfs_run_dev_stats(struct btrfs_trans_handle *trans, |
| 7264 | struct btrfs_fs_info *fs_info) |
| 7265 | { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7266 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7267 | struct btrfs_device *device; |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7268 | int stats_cnt; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7269 | int ret = 0; |
| 7270 | |
| 7271 | mutex_lock(&fs_devices->device_list_mutex); |
| 7272 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
Nikolay Borisov | 9deae96 | 2017-10-24 13:47:37 +0300 | [diff] [blame] | 7273 | stats_cnt = atomic_read(&device->dev_stats_ccnt); |
| 7274 | if (!device->dev_stats_valid || stats_cnt == 0) |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7275 | continue; |
| 7276 | |
Nikolay Borisov | 9deae96 | 2017-10-24 13:47:37 +0300 | [diff] [blame] | 7277 | |
| 7278 | /* |
| 7279 | * There is a LOAD-LOAD control dependency between the value of |
| 7280 | * dev_stats_ccnt and updating the on-disk values which requires |
| 7281 | * reading the in-memory counters. Such control dependencies |
| 7282 | * require explicit read memory barriers. |
| 7283 | * |
| 7284 | * This memory barriers pairs with smp_mb__before_atomic in |
| 7285 | * btrfs_dev_stat_inc/btrfs_dev_stat_set and with the full |
| 7286 | * barrier implied by atomic_xchg in |
| 7287 | * btrfs_dev_stats_read_and_reset |
| 7288 | */ |
| 7289 | smp_rmb(); |
| 7290 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7291 | ret = update_dev_stat_item(trans, fs_info, device); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7292 | if (!ret) |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7293 | atomic_sub(stats_cnt, &device->dev_stats_ccnt); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7294 | } |
| 7295 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7296 | |
| 7297 | return ret; |
| 7298 | } |
| 7299 | |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7300 | void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index) |
| 7301 | { |
| 7302 | btrfs_dev_stat_inc(dev, index); |
| 7303 | btrfs_dev_stat_print_on_error(dev); |
| 7304 | } |
| 7305 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 7306 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev) |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7307 | { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7308 | if (!dev->dev_stats_valid) |
| 7309 | return; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7310 | btrfs_err_rl_in_rcu(dev->fs_info, |
David Sterba | b14af3b | 2015-10-08 10:43:10 +0200 | [diff] [blame] | 7311 | "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7312 | rcu_str_deref(dev->name), |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7313 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 7314 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 7315 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7316 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 7317 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7318 | } |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7319 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7320 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev) |
| 7321 | { |
Stefan Behrens | a98cdb8 | 2012-07-17 09:02:11 -0600 | [diff] [blame] | 7322 | int i; |
| 7323 | |
| 7324 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7325 | if (btrfs_dev_stat_read(dev, i) != 0) |
| 7326 | break; |
| 7327 | if (i == BTRFS_DEV_STAT_VALUES_MAX) |
| 7328 | return; /* all values == 0, suppress message */ |
| 7329 | |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7330 | btrfs_info_in_rcu(dev->fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7331 | "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7332 | rcu_str_deref(dev->name), |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7333 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 7334 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 7335 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
| 7336 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 7337 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
| 7338 | } |
| 7339 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7340 | int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info, |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 7341 | struct btrfs_ioctl_get_dev_stats *stats) |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7342 | { |
| 7343 | struct btrfs_device *dev; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7344 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7345 | int i; |
| 7346 | |
| 7347 | mutex_lock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7348 | dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7349 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7350 | |
| 7351 | if (!dev) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7352 | btrfs_warn(fs_info, "get dev_stats failed, device not found"); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7353 | return -ENODEV; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7354 | } else if (!dev->dev_stats_valid) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7355 | btrfs_warn(fs_info, "get dev_stats failed, not yet valid"); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7356 | return -ENODEV; |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 7357 | } else if (stats->flags & BTRFS_DEV_STATS_RESET) { |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7358 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 7359 | if (stats->nr_items > i) |
| 7360 | stats->values[i] = |
| 7361 | btrfs_dev_stat_read_and_reset(dev, i); |
| 7362 | else |
| 7363 | btrfs_dev_stat_reset(dev, i); |
| 7364 | } |
| 7365 | } else { |
| 7366 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7367 | if (stats->nr_items > i) |
| 7368 | stats->values[i] = btrfs_dev_stat_read(dev, i); |
| 7369 | } |
| 7370 | if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX) |
| 7371 | stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX; |
| 7372 | return 0; |
| 7373 | } |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7374 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 7375 | void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path) |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7376 | { |
| 7377 | struct buffer_head *bh; |
| 7378 | struct btrfs_super_block *disk_super; |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7379 | int copy_num; |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7380 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7381 | if (!bdev) |
| 7382 | return; |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7383 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7384 | for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX; |
| 7385 | copy_num++) { |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7386 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7387 | if (btrfs_read_dev_one_super(bdev, copy_num, &bh)) |
| 7388 | continue; |
| 7389 | |
| 7390 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 7391 | |
| 7392 | memset(&disk_super->magic, 0, sizeof(disk_super->magic)); |
| 7393 | set_buffer_dirty(bh); |
| 7394 | sync_dirty_buffer(bh); |
| 7395 | brelse(bh); |
| 7396 | } |
| 7397 | |
| 7398 | /* Notify udev that device has changed */ |
| 7399 | btrfs_kobject_uevent(bdev, KOBJ_CHANGE); |
| 7400 | |
| 7401 | /* Update ctime/mtime for device path for libblkid */ |
| 7402 | update_dev_time(device_path); |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7403 | } |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7404 | |
| 7405 | /* |
| 7406 | * Update the size of all devices, which is used for writing out the |
| 7407 | * super blocks. |
| 7408 | */ |
| 7409 | void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info) |
| 7410 | { |
| 7411 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7412 | struct btrfs_device *curr, *next; |
| 7413 | |
| 7414 | if (list_empty(&fs_devices->resized_devices)) |
| 7415 | return; |
| 7416 | |
| 7417 | mutex_lock(&fs_devices->device_list_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7418 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7419 | list_for_each_entry_safe(curr, next, &fs_devices->resized_devices, |
| 7420 | resized_list) { |
| 7421 | list_del_init(&curr->resized_list); |
| 7422 | curr->commit_total_bytes = curr->disk_total_bytes; |
| 7423 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7424 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7425 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7426 | } |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7427 | |
| 7428 | /* Must be invoked during the transaction commit */ |
Nikolay Borisov | e9b919b | 2018-02-07 17:55:49 +0200 | [diff] [blame] | 7429 | void btrfs_update_commit_device_bytes_used(struct btrfs_transaction *trans) |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7430 | { |
Nikolay Borisov | e9b919b | 2018-02-07 17:55:49 +0200 | [diff] [blame] | 7431 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7432 | struct extent_map *em; |
| 7433 | struct map_lookup *map; |
| 7434 | struct btrfs_device *dev; |
| 7435 | int i; |
| 7436 | |
Nikolay Borisov | e9b919b | 2018-02-07 17:55:49 +0200 | [diff] [blame] | 7437 | if (list_empty(&trans->pending_chunks)) |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7438 | return; |
| 7439 | |
| 7440 | /* In order to kick the device replace finish process */ |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7441 | mutex_lock(&fs_info->chunk_mutex); |
Nikolay Borisov | e9b919b | 2018-02-07 17:55:49 +0200 | [diff] [blame] | 7442 | list_for_each_entry(em, &trans->pending_chunks, list) { |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 7443 | map = em->map_lookup; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7444 | |
| 7445 | for (i = 0; i < map->num_stripes; i++) { |
| 7446 | dev = map->stripes[i].dev; |
| 7447 | dev->commit_bytes_used = dev->bytes_used; |
| 7448 | } |
| 7449 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7450 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7451 | } |
Anand Jain | 5a13f43 | 2015-03-10 06:38:31 +0800 | [diff] [blame] | 7452 | |
| 7453 | void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info) |
| 7454 | { |
| 7455 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7456 | while (fs_devices) { |
| 7457 | fs_devices->fs_info = fs_info; |
| 7458 | fs_devices = fs_devices->seed; |
| 7459 | } |
| 7460 | } |
| 7461 | |
| 7462 | void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info) |
| 7463 | { |
| 7464 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7465 | while (fs_devices) { |
| 7466 | fs_devices->fs_info = NULL; |
| 7467 | fs_devices = fs_devices->seed; |
| 7468 | } |
| 7469 | } |