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 | * |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 170 | * balance_mutex |
| 171 | * ------------- |
| 172 | * protects balance structures (status, state) and context accessed from |
| 173 | * several places (internally, ioctl) |
| 174 | * |
| 175 | * chunk_mutex |
| 176 | * ----------- |
| 177 | * protects chunks, adding or removing during allocation, trim or when a new |
| 178 | * device is added/removed |
| 179 | * |
| 180 | * cleaner_mutex |
| 181 | * ------------- |
| 182 | * a big lock that is held by the cleaner thread and prevents running subvolume |
| 183 | * cleaning together with relocation or delayed iputs |
| 184 | * |
| 185 | * |
| 186 | * Lock nesting |
| 187 | * ============ |
| 188 | * |
| 189 | * uuid_mutex |
| 190 | * volume_mutex |
| 191 | * device_list_mutex |
| 192 | * chunk_mutex |
| 193 | * balance_mutex |
Anand Jain | 89595e8 | 2018-04-18 14:59:25 +0800 | [diff] [blame] | 194 | * |
| 195 | * |
| 196 | * Exclusive operations, BTRFS_FS_EXCL_OP |
| 197 | * ====================================== |
| 198 | * |
| 199 | * Maintains the exclusivity of the following operations that apply to the |
| 200 | * whole filesystem and cannot run in parallel. |
| 201 | * |
| 202 | * - Balance (*) |
| 203 | * - Device add |
| 204 | * - Device remove |
| 205 | * - Device replace (*) |
| 206 | * - Resize |
| 207 | * |
| 208 | * The device operations (as above) can be in one of the following states: |
| 209 | * |
| 210 | * - Running state |
| 211 | * - Paused state |
| 212 | * - Completed state |
| 213 | * |
| 214 | * Only device operations marked with (*) can go into the Paused state for the |
| 215 | * following reasons: |
| 216 | * |
| 217 | * - ioctl (only Balance can be Paused through ioctl) |
| 218 | * - filesystem remounted as read-only |
| 219 | * - filesystem unmounted and mounted as read-only |
| 220 | * - system power-cycle and filesystem mounted as read-only |
| 221 | * - filesystem or device errors leading to forced read-only |
| 222 | * |
| 223 | * BTRFS_FS_EXCL_OP flag is set and cleared using atomic operations. |
| 224 | * During the course of Paused state, the BTRFS_FS_EXCL_OP remains set. |
| 225 | * A device operation in Paused or Running state can be canceled or resumed |
| 226 | * either by ioctl (Balance only) or when remounted as read-write. |
| 227 | * BTRFS_FS_EXCL_OP flag is cleared when the device operation is canceled or |
| 228 | * completed. |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 229 | */ |
| 230 | |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 231 | DEFINE_MUTEX(uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 232 | static LIST_HEAD(fs_uuids); |
Anand Jain | c73eccf | 2015-03-10 06:38:30 +0800 | [diff] [blame] | 233 | struct list_head *btrfs_get_fs_uuids(void) |
| 234 | { |
| 235 | return &fs_uuids; |
| 236 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 237 | |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 238 | /* |
| 239 | * alloc_fs_devices - allocate struct btrfs_fs_devices |
| 240 | * @fsid: if not NULL, copy the uuid to fs_devices::fsid |
| 241 | * |
| 242 | * Return a pointer to a new struct btrfs_fs_devices on success, or ERR_PTR(). |
| 243 | * The returned struct is not linked onto any lists and can be destroyed with |
| 244 | * kfree() right away. |
| 245 | */ |
| 246 | static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid) |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 247 | { |
| 248 | struct btrfs_fs_devices *fs_devs; |
| 249 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 250 | fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 251 | if (!fs_devs) |
| 252 | return ERR_PTR(-ENOMEM); |
| 253 | |
| 254 | mutex_init(&fs_devs->device_list_mutex); |
| 255 | |
| 256 | INIT_LIST_HEAD(&fs_devs->devices); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 257 | INIT_LIST_HEAD(&fs_devs->resized_devices); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 258 | INIT_LIST_HEAD(&fs_devs->alloc_list); |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 259 | INIT_LIST_HEAD(&fs_devs->fs_list); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 260 | if (fsid) |
| 261 | memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 262 | |
| 263 | return fs_devs; |
| 264 | } |
| 265 | |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 266 | void btrfs_free_device(struct btrfs_device *device) |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 267 | { |
| 268 | rcu_string_free(device->name); |
| 269 | bio_put(device->flush_bio); |
| 270 | kfree(device); |
| 271 | } |
| 272 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 273 | static void free_fs_devices(struct btrfs_fs_devices *fs_devices) |
| 274 | { |
| 275 | struct btrfs_device *device; |
| 276 | WARN_ON(fs_devices->opened); |
| 277 | while (!list_empty(&fs_devices->devices)) { |
| 278 | device = list_entry(fs_devices->devices.next, |
| 279 | struct btrfs_device, dev_list); |
| 280 | list_del(&device->dev_list); |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 281 | btrfs_free_device(device); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 282 | } |
| 283 | kfree(fs_devices); |
| 284 | } |
| 285 | |
Lukas Czerner | b8b8ff5 | 2012-12-06 19:25:48 +0000 | [diff] [blame] | 286 | static void btrfs_kobject_uevent(struct block_device *bdev, |
| 287 | enum kobject_action action) |
| 288 | { |
| 289 | int ret; |
| 290 | |
| 291 | ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action); |
| 292 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 293 | pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n", |
Lukas Czerner | b8b8ff5 | 2012-12-06 19:25:48 +0000 | [diff] [blame] | 294 | action, |
| 295 | kobject_name(&disk_to_dev(bdev->bd_disk)->kobj), |
| 296 | &disk_to_dev(bdev->bd_disk)->kobj); |
| 297 | } |
| 298 | |
David Sterba | ffc5a37 | 2018-02-19 17:24:15 +0100 | [diff] [blame] | 299 | void __exit btrfs_cleanup_fs_uuids(void) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 300 | { |
| 301 | struct btrfs_fs_devices *fs_devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 302 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 303 | while (!list_empty(&fs_uuids)) { |
| 304 | fs_devices = list_entry(fs_uuids.next, |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 305 | struct btrfs_fs_devices, fs_list); |
| 306 | list_del(&fs_devices->fs_list); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 307 | free_fs_devices(fs_devices); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 308 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 309 | } |
| 310 | |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 311 | /* |
| 312 | * Returns a pointer to a new btrfs_device on success; ERR_PTR() on error. |
| 313 | * Returned struct is not linked onto any lists and must be destroyed using |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 314 | * btrfs_free_device. |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 315 | */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 316 | static struct btrfs_device *__alloc_device(void) |
| 317 | { |
| 318 | struct btrfs_device *dev; |
| 319 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 320 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 321 | if (!dev) |
| 322 | return ERR_PTR(-ENOMEM); |
| 323 | |
David Sterba | e0ae999 | 2017-06-06 17:06:06 +0200 | [diff] [blame] | 324 | /* |
| 325 | * Preallocate a bio that's always going to be used for flushing device |
| 326 | * barriers and matches the device lifespan |
| 327 | */ |
| 328 | dev->flush_bio = bio_alloc_bioset(GFP_KERNEL, 0, NULL); |
| 329 | if (!dev->flush_bio) { |
| 330 | kfree(dev); |
| 331 | return ERR_PTR(-ENOMEM); |
| 332 | } |
David Sterba | e0ae999 | 2017-06-06 17:06:06 +0200 | [diff] [blame] | 333 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 334 | INIT_LIST_HEAD(&dev->dev_list); |
| 335 | INIT_LIST_HEAD(&dev->dev_alloc_list); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 336 | INIT_LIST_HEAD(&dev->resized_list); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 337 | |
| 338 | spin_lock_init(&dev->io_lock); |
| 339 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 340 | atomic_set(&dev->reada_in_flight, 0); |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 341 | atomic_set(&dev->dev_stats_ccnt, 0); |
Sebastian Andrzej Siewior | 546bed6 | 2016-01-15 14:37:15 +0100 | [diff] [blame] | 342 | btrfs_device_data_ordered_init(dev); |
Chris Mason | 9bcaaea | 2017-05-04 16:08:08 -0700 | [diff] [blame] | 343 | INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
Mel Gorman | d0164ad | 2015-11-06 16:28:21 -0800 | [diff] [blame] | 344 | INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 345 | |
| 346 | return dev; |
| 347 | } |
| 348 | |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 349 | /* |
| 350 | * Find a device specified by @devid or @uuid in the list of @fs_devices, or |
| 351 | * return NULL. |
| 352 | * |
| 353 | * If devid and uuid are both specified, the match must be exact, otherwise |
| 354 | * only devid is used. |
| 355 | */ |
| 356 | static struct btrfs_device *find_device(struct btrfs_fs_devices *fs_devices, |
| 357 | u64 devid, const u8 *uuid) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 358 | { |
| 359 | struct btrfs_device *dev; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 360 | |
Anand Jain | 636d2c9 | 2018-04-12 10:29:29 +0800 | [diff] [blame] | 361 | list_for_each_entry(dev, &fs_devices->devices, dev_list) { |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 362 | if (dev->devid == devid && |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 363 | (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 364 | return dev; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 365 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 366 | } |
| 367 | return NULL; |
| 368 | } |
| 369 | |
Chris Mason | a1b32a5 | 2008-09-05 16:09:51 -0400 | [diff] [blame] | 370 | static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 371 | { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 372 | struct btrfs_fs_devices *fs_devices; |
| 373 | |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 374 | list_for_each_entry(fs_devices, &fs_uuids, fs_list) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 375 | if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0) |
| 376 | return fs_devices; |
| 377 | } |
| 378 | return NULL; |
| 379 | } |
| 380 | |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 381 | static int |
| 382 | btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder, |
| 383 | int flush, struct block_device **bdev, |
| 384 | struct buffer_head **bh) |
| 385 | { |
| 386 | int ret; |
| 387 | |
| 388 | *bdev = blkdev_get_by_path(device_path, flags, holder); |
| 389 | |
| 390 | if (IS_ERR(*bdev)) { |
| 391 | ret = PTR_ERR(*bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 392 | goto error; |
| 393 | } |
| 394 | |
| 395 | if (flush) |
| 396 | filemap_write_and_wait((*bdev)->bd_inode->i_mapping); |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 397 | ret = set_blocksize(*bdev, BTRFS_BDEV_BLOCKSIZE); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 398 | if (ret) { |
| 399 | blkdev_put(*bdev, flags); |
| 400 | goto error; |
| 401 | } |
| 402 | invalidate_bdev(*bdev); |
| 403 | *bh = btrfs_read_dev_super(*bdev); |
Anand Jain | 92fc03f | 2015-08-14 18:32:51 +0800 | [diff] [blame] | 404 | if (IS_ERR(*bh)) { |
| 405 | ret = PTR_ERR(*bh); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 406 | blkdev_put(*bdev, flags); |
| 407 | goto error; |
| 408 | } |
| 409 | |
| 410 | return 0; |
| 411 | |
| 412 | error: |
| 413 | *bdev = NULL; |
| 414 | *bh = NULL; |
| 415 | return ret; |
| 416 | } |
| 417 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 418 | static void requeue_list(struct btrfs_pending_bios *pending_bios, |
| 419 | struct bio *head, struct bio *tail) |
| 420 | { |
| 421 | |
| 422 | struct bio *old_head; |
| 423 | |
| 424 | old_head = pending_bios->head; |
| 425 | pending_bios->head = head; |
| 426 | if (pending_bios->tail) |
| 427 | tail->bi_next = old_head; |
| 428 | else |
| 429 | pending_bios->tail = tail; |
| 430 | } |
| 431 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 432 | /* |
| 433 | * we try to collect pending bios for a device so we don't get a large |
| 434 | * number of procs sending bios down to the same device. This greatly |
| 435 | * improves the schedulers ability to collect and merge the bios. |
| 436 | * |
| 437 | * But, it also turns into a long list of bios to process and that is sure |
| 438 | * to eventually make the worker thread block. The solution here is to |
| 439 | * make some progress and then put this work struct back at the end of |
| 440 | * the list if the block device is congested. This way, multiple devices |
| 441 | * can make progress from a single worker thread. |
| 442 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 443 | static noinline void run_scheduled_bios(struct btrfs_device *device) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 444 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 445 | struct btrfs_fs_info *fs_info = device->fs_info; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 446 | struct bio *pending; |
| 447 | struct backing_dev_info *bdi; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 448 | struct btrfs_pending_bios *pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 449 | struct bio *tail; |
| 450 | struct bio *cur; |
| 451 | int again = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 452 | unsigned long num_run; |
Chris Mason | d644d8a | 2009-06-09 15:59:22 -0400 | [diff] [blame] | 453 | unsigned long batch_run = 0; |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 454 | unsigned long last_waited = 0; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 455 | int force_reg = 0; |
Miao Xie | 0e58885 | 2011-08-05 09:32:37 +0000 | [diff] [blame] | 456 | int sync_pending = 0; |
Chris Mason | 211588a | 2011-04-19 20:12:40 -0400 | [diff] [blame] | 457 | struct blk_plug plug; |
| 458 | |
| 459 | /* |
| 460 | * this function runs all the bios we've collected for |
| 461 | * a particular device. We don't want to wander off to |
| 462 | * another device without first sending all of these down. |
| 463 | * So, setup a plug here and finish it off before we return |
| 464 | */ |
| 465 | blk_start_plug(&plug); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 466 | |
Jan Kara | efa7c9f | 2017-02-02 15:56:53 +0100 | [diff] [blame] | 467 | bdi = device->bdev->bd_bdi; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 468 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 469 | loop: |
| 470 | spin_lock(&device->io_lock); |
| 471 | |
Chris Mason | a683705 | 2009-02-04 09:19:41 -0500 | [diff] [blame] | 472 | loop_lock: |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 473 | num_run = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 474 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 475 | /* take all the bios off the list at once and process them |
| 476 | * later on (without the lock held). But, remember the |
| 477 | * tail and other pointers so the bios can be properly reinserted |
| 478 | * into the list if we hit congestion |
| 479 | */ |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 480 | if (!force_reg && device->pending_sync_bios.head) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 481 | pending_bios = &device->pending_sync_bios; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 482 | force_reg = 1; |
| 483 | } else { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 484 | pending_bios = &device->pending_bios; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 485 | force_reg = 0; |
| 486 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 487 | |
| 488 | pending = pending_bios->head; |
| 489 | tail = pending_bios->tail; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 490 | WARN_ON(pending && !tail); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 491 | |
| 492 | /* |
| 493 | * if pending was null this time around, no bios need processing |
| 494 | * at all and we can stop. Otherwise it'll loop back up again |
| 495 | * and do an additional check so no bios are missed. |
| 496 | * |
| 497 | * device->running_pending is used to synchronize with the |
| 498 | * schedule_bio code. |
| 499 | */ |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 500 | if (device->pending_sync_bios.head == NULL && |
| 501 | device->pending_bios.head == NULL) { |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 502 | again = 0; |
| 503 | device->running_pending = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 504 | } else { |
| 505 | again = 1; |
| 506 | device->running_pending = 1; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 507 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 508 | |
| 509 | pending_bios->head = NULL; |
| 510 | pending_bios->tail = NULL; |
| 511 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 512 | spin_unlock(&device->io_lock); |
| 513 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 514 | while (pending) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 515 | |
| 516 | rmb(); |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 517 | /* we want to work on both lists, but do more bios on the |
| 518 | * sync list than the regular list |
| 519 | */ |
| 520 | if ((num_run > 32 && |
| 521 | pending_bios != &device->pending_sync_bios && |
| 522 | device->pending_sync_bios.head) || |
| 523 | (num_run > 64 && pending_bios == &device->pending_sync_bios && |
| 524 | device->pending_bios.head)) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 525 | spin_lock(&device->io_lock); |
| 526 | requeue_list(pending_bios, pending, tail); |
| 527 | goto loop_lock; |
| 528 | } |
| 529 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 530 | cur = pending; |
| 531 | pending = pending->bi_next; |
| 532 | cur->bi_next = NULL; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 533 | |
Jens Axboe | dac5621 | 2015-04-17 16:23:59 -0600 | [diff] [blame] | 534 | BUG_ON(atomic_read(&cur->__bi_cnt) == 0); |
Chris Mason | d644d8a | 2009-06-09 15:59:22 -0400 | [diff] [blame] | 535 | |
Chris Mason | 2ab1ba6 | 2011-08-04 14:28:36 -0400 | [diff] [blame] | 536 | /* |
| 537 | * if we're doing the sync list, record that our |
| 538 | * plug has some sync requests on it |
| 539 | * |
| 540 | * If we're doing the regular list and there are |
| 541 | * sync requests sitting around, unplug before |
| 542 | * we add more |
| 543 | */ |
| 544 | if (pending_bios == &device->pending_sync_bios) { |
| 545 | sync_pending = 1; |
| 546 | } else if (sync_pending) { |
| 547 | blk_finish_plug(&plug); |
| 548 | blk_start_plug(&plug); |
| 549 | sync_pending = 0; |
| 550 | } |
| 551 | |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 552 | btrfsic_submit_bio(cur); |
Chris Mason | 5ff7ba3 | 2010-03-15 10:21:30 -0400 | [diff] [blame] | 553 | num_run++; |
| 554 | batch_run++; |
David Sterba | 853d8ec | 2015-01-08 15:15:19 +0100 | [diff] [blame] | 555 | |
| 556 | cond_resched(); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 557 | |
| 558 | /* |
| 559 | * we made progress, there is more work to do and the bdi |
| 560 | * is now congested. Back off and let other work structs |
| 561 | * run instead |
| 562 | */ |
Chris Mason | 57fd5a5 | 2009-08-07 09:59:15 -0400 | [diff] [blame] | 563 | if (pending && bdi_write_congested(bdi) && batch_run > 8 && |
Chris Mason | 5f2cc08 | 2008-11-07 18:22:45 -0500 | [diff] [blame] | 564 | fs_info->fs_devices->open_devices > 1) { |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 565 | struct io_context *ioc; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 566 | |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 567 | ioc = current->io_context; |
| 568 | |
| 569 | /* |
| 570 | * the main goal here is that we don't want to |
| 571 | * block if we're going to be able to submit |
| 572 | * more requests without blocking. |
| 573 | * |
| 574 | * This code does two great things, it pokes into |
| 575 | * the elevator code from a filesystem _and_ |
| 576 | * it makes assumptions about how batching works. |
| 577 | */ |
| 578 | if (ioc && ioc->nr_batch_requests > 0 && |
| 579 | time_before(jiffies, ioc->last_waited + HZ/50UL) && |
| 580 | (last_waited == 0 || |
| 581 | ioc->last_waited == last_waited)) { |
| 582 | /* |
| 583 | * we want to go through our batch of |
| 584 | * requests and stop. So, we copy out |
| 585 | * the ioc->last_waited time and test |
| 586 | * against it before looping |
| 587 | */ |
| 588 | last_waited = ioc->last_waited; |
David Sterba | 853d8ec | 2015-01-08 15:15:19 +0100 | [diff] [blame] | 589 | cond_resched(); |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 590 | continue; |
| 591 | } |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 592 | spin_lock(&device->io_lock); |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 593 | requeue_list(pending_bios, pending, tail); |
Chris Mason | a683705 | 2009-02-04 09:19:41 -0500 | [diff] [blame] | 594 | device->running_pending = 1; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 595 | |
| 596 | spin_unlock(&device->io_lock); |
Qu Wenruo | a8c93d4e | 2014-02-28 10:46:08 +0800 | [diff] [blame] | 597 | btrfs_queue_work(fs_info->submit_workers, |
| 598 | &device->work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 599 | goto done; |
| 600 | } |
| 601 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 602 | |
Chris Mason | 5168408 | 2010-03-10 15:33:32 -0500 | [diff] [blame] | 603 | cond_resched(); |
| 604 | if (again) |
| 605 | goto loop; |
| 606 | |
| 607 | spin_lock(&device->io_lock); |
| 608 | if (device->pending_bios.head || device->pending_sync_bios.head) |
| 609 | goto loop_lock; |
| 610 | spin_unlock(&device->io_lock); |
| 611 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 612 | done: |
Chris Mason | 211588a | 2011-04-19 20:12:40 -0400 | [diff] [blame] | 613 | blk_finish_plug(&plug); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 614 | } |
| 615 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 616 | static void pending_bios_fn(struct btrfs_work *work) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 617 | { |
| 618 | struct btrfs_device *device; |
| 619 | |
| 620 | device = container_of(work, struct btrfs_device, work); |
| 621 | run_scheduled_bios(device); |
| 622 | } |
| 623 | |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 624 | /* |
| 625 | * Search and remove all stale (devices which are not mounted) devices. |
| 626 | * When both inputs are NULL, it will search and release all stale devices. |
| 627 | * path: Optional. When provided will it release all unmounted devices |
| 628 | * matching this path only. |
| 629 | * skip_dev: Optional. Will skip this device when searching for the stale |
| 630 | * devices. |
| 631 | */ |
| 632 | static void btrfs_free_stale_devices(const char *path, |
| 633 | struct btrfs_device *skip_dev) |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 634 | { |
Anand Jain | 38cf665 | 2018-01-18 22:00:34 +0800 | [diff] [blame] | 635 | struct btrfs_fs_devices *fs_devs, *tmp_fs_devs; |
| 636 | struct btrfs_device *dev, *tmp_dev; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 637 | |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 638 | 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] | 639 | |
| 640 | if (fs_devs->opened) |
| 641 | continue; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 642 | |
Anand Jain | 38cf665 | 2018-01-18 22:00:34 +0800 | [diff] [blame] | 643 | list_for_each_entry_safe(dev, tmp_dev, |
| 644 | &fs_devs->devices, dev_list) { |
Anand Jain | 522f1b4 | 2018-01-18 22:00:35 +0800 | [diff] [blame] | 645 | int not_found = 0; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 646 | |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 647 | if (skip_dev && skip_dev == dev) |
| 648 | continue; |
| 649 | if (path && !dev->name) |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 650 | continue; |
| 651 | |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 652 | rcu_read_lock(); |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 653 | if (path) |
Anand Jain | 522f1b4 | 2018-01-18 22:00:35 +0800 | [diff] [blame] | 654 | not_found = strcmp(rcu_str_deref(dev->name), |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 655 | path); |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 656 | rcu_read_unlock(); |
Anand Jain | 38cf665 | 2018-01-18 22:00:34 +0800 | [diff] [blame] | 657 | if (not_found) |
| 658 | continue; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 659 | |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 660 | /* delete the stale device */ |
| 661 | if (fs_devs->num_devices == 1) { |
| 662 | btrfs_sysfs_remove_fsid(fs_devs); |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 663 | list_del(&fs_devs->fs_list); |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 664 | free_fs_devices(fs_devs); |
Nikolay Borisov | fd649f1 | 2018-01-30 16:07:37 +0200 | [diff] [blame] | 665 | break; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 666 | } else { |
| 667 | fs_devs->num_devices--; |
| 668 | list_del(&dev->dev_list); |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 669 | btrfs_free_device(dev); |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 670 | } |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 671 | } |
| 672 | } |
| 673 | } |
| 674 | |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 675 | static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices, |
| 676 | struct btrfs_device *device, fmode_t flags, |
| 677 | void *holder) |
| 678 | { |
| 679 | struct request_queue *q; |
| 680 | struct block_device *bdev; |
| 681 | struct buffer_head *bh; |
| 682 | struct btrfs_super_block *disk_super; |
| 683 | u64 devid; |
| 684 | int ret; |
| 685 | |
| 686 | if (device->bdev) |
| 687 | return -EINVAL; |
| 688 | if (!device->name) |
| 689 | return -EINVAL; |
| 690 | |
| 691 | ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1, |
| 692 | &bdev, &bh); |
| 693 | if (ret) |
| 694 | return ret; |
| 695 | |
| 696 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 697 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 698 | if (devid != device->devid) |
| 699 | goto error_brelse; |
| 700 | |
| 701 | if (memcmp(device->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE)) |
| 702 | goto error_brelse; |
| 703 | |
| 704 | device->generation = btrfs_super_generation(disk_super); |
| 705 | |
| 706 | if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 707 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 708 | fs_devices->seeding = 1; |
| 709 | } else { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 710 | if (bdev_read_only(bdev)) |
| 711 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
| 712 | else |
| 713 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 714 | } |
| 715 | |
| 716 | q = bdev_get_queue(bdev); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 717 | if (!blk_queue_nonrot(q)) |
| 718 | fs_devices->rotating = 1; |
| 719 | |
| 720 | device->bdev = bdev; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 721 | clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 722 | device->mode = flags; |
| 723 | |
| 724 | fs_devices->open_devices++; |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 725 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
| 726 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 727 | fs_devices->rw_devices++; |
Anand Jain | b1b8e38 | 2018-01-22 14:49:37 -0800 | [diff] [blame] | 728 | list_add_tail(&device->dev_alloc_list, &fs_devices->alloc_list); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 729 | } |
| 730 | brelse(bh); |
| 731 | |
| 732 | return 0; |
| 733 | |
| 734 | error_brelse: |
| 735 | brelse(bh); |
| 736 | blkdev_put(bdev, flags); |
| 737 | |
| 738 | return -EINVAL; |
| 739 | } |
| 740 | |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 741 | /* |
| 742 | * Add new device to list of registered devices |
| 743 | * |
| 744 | * Returns: |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 745 | * device pointer which was just added or updated when successful |
| 746 | * error pointer when failed |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 747 | */ |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 748 | static noinline struct btrfs_device *device_list_add(const char *path, |
Anand Jain | 3acbcbf | 2018-01-18 22:02:36 +0800 | [diff] [blame] | 749 | struct btrfs_super_block *disk_super) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 750 | { |
| 751 | struct btrfs_device *device; |
| 752 | struct btrfs_fs_devices *fs_devices; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 753 | struct rcu_string *name; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 754 | u64 found_transid = btrfs_super_generation(disk_super); |
Anand Jain | 3acbcbf | 2018-01-18 22:02:36 +0800 | [diff] [blame] | 755 | u64 devid = btrfs_stack_device_id(&disk_super->dev_item); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 756 | |
| 757 | fs_devices = find_fsid(disk_super->fsid); |
| 758 | if (!fs_devices) { |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 759 | fs_devices = alloc_fs_devices(disk_super->fsid); |
| 760 | if (IS_ERR(fs_devices)) |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 761 | return ERR_CAST(fs_devices); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 762 | |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 763 | list_add(&fs_devices->fs_list, &fs_uuids); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 764 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 765 | device = NULL; |
| 766 | } else { |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 767 | device = find_device(fs_devices, devid, |
| 768 | disk_super->dev_item.uuid); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 769 | } |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 770 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 771 | if (!device) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 772 | if (fs_devices->opened) |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 773 | return ERR_PTR(-EBUSY); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 774 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 775 | device = btrfs_alloc_device(NULL, &devid, |
| 776 | disk_super->dev_item.uuid); |
| 777 | if (IS_ERR(device)) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 778 | /* we can safely leave the fs_devices entry around */ |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 779 | return device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 780 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 781 | |
| 782 | name = rcu_string_strdup(path, GFP_NOFS); |
| 783 | if (!name) { |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 784 | btrfs_free_device(device); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 785 | return ERR_PTR(-ENOMEM); |
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 | rcu_assign_pointer(device->name, name); |
Arne Jansen | 90519d6 | 2011-05-23 14:30:00 +0200 | [diff] [blame] | 788 | |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 789 | mutex_lock(&fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 790 | list_add_rcu(&device->dev_list, &fs_devices->devices); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 791 | fs_devices->num_devices++; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 792 | mutex_unlock(&fs_devices->device_list_mutex); |
| 793 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 794 | device->fs_devices = fs_devices; |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 795 | btrfs_free_stale_devices(path, device); |
Anand Jain | 327f18c | 2018-01-18 22:02:33 +0800 | [diff] [blame] | 796 | |
| 797 | if (disk_super->label[0]) |
| 798 | pr_info("BTRFS: device label %s devid %llu transid %llu %s\n", |
| 799 | disk_super->label, devid, found_transid, path); |
| 800 | else |
| 801 | pr_info("BTRFS: device fsid %pU devid %llu transid %llu %s\n", |
| 802 | disk_super->fsid, devid, found_transid, path); |
| 803 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 804 | } else if (!device->name || strcmp(device->name->str, path)) { |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 805 | /* |
| 806 | * When FS is already mounted. |
| 807 | * 1. If you are here and if the device->name is NULL that |
| 808 | * means this device was missing at time of FS mount. |
| 809 | * 2. If you are here and if the device->name is different |
| 810 | * from 'path' that means either |
| 811 | * a. The same device disappeared and reappeared with |
| 812 | * different name. or |
| 813 | * b. The missing-disk-which-was-replaced, has |
| 814 | * reappeared now. |
| 815 | * |
| 816 | * We must allow 1 and 2a above. But 2b would be a spurious |
| 817 | * and unintentional. |
| 818 | * |
| 819 | * Further in case of 1 and 2a above, the disk at 'path' |
| 820 | * would have missed some transaction when it was away and |
| 821 | * in case of 2a the stale bdev has to be updated as well. |
| 822 | * 2b must not be allowed at all time. |
| 823 | */ |
| 824 | |
| 825 | /* |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 826 | * For now, we do allow update to btrfs_fs_device through the |
| 827 | * btrfs dev scan cli after FS has been mounted. We're still |
| 828 | * tracking a problem where systems fail mount by subvolume id |
| 829 | * when we reject replacement on a mounted FS. |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 830 | */ |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 831 | if (!fs_devices->opened && found_transid < device->generation) { |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 832 | /* |
| 833 | * That is if the FS is _not_ mounted and if you |
| 834 | * are here, that means there is more than one |
| 835 | * disk with same uuid and devid.We keep the one |
| 836 | * with larger generation number or the last-in if |
| 837 | * generation are equal. |
| 838 | */ |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 839 | return ERR_PTR(-EEXIST); |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 840 | } |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 841 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 842 | name = rcu_string_strdup(path, GFP_NOFS); |
TARUISI Hiroaki | 3a0524d | 2010-02-09 06:36:45 +0000 | [diff] [blame] | 843 | if (!name) |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 844 | return ERR_PTR(-ENOMEM); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 845 | rcu_string_free(device->name); |
| 846 | rcu_assign_pointer(device->name, name); |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 847 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 848 | fs_devices->missing_devices--; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 849 | clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 850 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 851 | } |
| 852 | |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 853 | /* |
| 854 | * Unmount does not free the btrfs_device struct but would zero |
| 855 | * generation along with most of the other members. So just update |
| 856 | * it back. We need it to pick the disk with largest generation |
| 857 | * (as above). |
| 858 | */ |
| 859 | if (!fs_devices->opened) |
| 860 | device->generation = found_transid; |
| 861 | |
Anand Jain | f2788d2 | 2018-01-18 22:02:34 +0800 | [diff] [blame] | 862 | fs_devices->total_devices = btrfs_super_num_devices(disk_super); |
| 863 | |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 864 | return device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 865 | } |
| 866 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 867 | static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig) |
| 868 | { |
| 869 | struct btrfs_fs_devices *fs_devices; |
| 870 | struct btrfs_device *device; |
| 871 | struct btrfs_device *orig_dev; |
| 872 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 873 | fs_devices = alloc_fs_devices(orig->fsid); |
| 874 | if (IS_ERR(fs_devices)) |
| 875 | return fs_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 876 | |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 877 | mutex_lock(&orig->device_list_mutex); |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 878 | fs_devices->total_devices = orig->total_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 879 | |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 880 | /* 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] | 881 | list_for_each_entry(orig_dev, &orig->devices, dev_list) { |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 882 | struct rcu_string *name; |
| 883 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 884 | device = btrfs_alloc_device(NULL, &orig_dev->devid, |
| 885 | orig_dev->uuid); |
| 886 | if (IS_ERR(device)) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 887 | goto error; |
| 888 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 889 | /* |
| 890 | * This is ok to do without rcu read locked because we hold the |
| 891 | * uuid mutex so nothing we touch in here is going to disappear. |
| 892 | */ |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 893 | if (orig_dev->name) { |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 894 | name = rcu_string_strdup(orig_dev->name->str, |
| 895 | GFP_KERNEL); |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 896 | if (!name) { |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 897 | btrfs_free_device(device); |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 898 | goto error; |
| 899 | } |
| 900 | rcu_assign_pointer(device->name, name); |
Julia Lawall | fd2696f | 2009-09-29 13:51:04 -0400 | [diff] [blame] | 901 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 902 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 903 | list_add(&device->dev_list, &fs_devices->devices); |
| 904 | device->fs_devices = fs_devices; |
| 905 | fs_devices->num_devices++; |
| 906 | } |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 907 | mutex_unlock(&orig->device_list_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 908 | return fs_devices; |
| 909 | error: |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 910 | mutex_unlock(&orig->device_list_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 911 | free_fs_devices(fs_devices); |
| 912 | return ERR_PTR(-ENOMEM); |
| 913 | } |
| 914 | |
Anand Jain | 9b99b11 | 2018-02-27 12:41:59 +0800 | [diff] [blame] | 915 | /* |
| 916 | * After we have read the system tree and know devids belonging to |
| 917 | * this filesystem, remove the device which does not belong there. |
| 918 | */ |
| 919 | 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] | 920 | { |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 921 | struct btrfs_device *device, *next; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 922 | struct btrfs_device *latest_dev = NULL; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 923 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 924 | mutex_lock(&uuid_mutex); |
| 925 | again: |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 926 | /* This is the initialized path, it is safe to release the devices. */ |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 927 | list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) { |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 928 | if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 929 | &device->dev_state)) { |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 930 | if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
| 931 | &device->dev_state) && |
| 932 | (!latest_dev || |
| 933 | device->generation > latest_dev->generation)) { |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 934 | latest_dev = device; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 935 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 936 | continue; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 937 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 938 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 939 | if (device->devid == BTRFS_DEV_REPLACE_DEVID) { |
| 940 | /* |
| 941 | * In the first step, keep the device which has |
| 942 | * the correct fsid and the devid that is used |
| 943 | * for the dev_replace procedure. |
| 944 | * In the second step, the dev_replace state is |
| 945 | * read from the device tree and it is known |
| 946 | * whether the procedure is really active or |
| 947 | * not, which means whether this device is |
| 948 | * used or whether it should be removed. |
| 949 | */ |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 950 | if (step == 0 || test_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
| 951 | &device->dev_state)) { |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 952 | continue; |
| 953 | } |
| 954 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 955 | if (device->bdev) { |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 956 | blkdev_put(device->bdev, device->mode); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 957 | device->bdev = NULL; |
| 958 | fs_devices->open_devices--; |
| 959 | } |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 960 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 961 | list_del_init(&device->dev_alloc_list); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 962 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 963 | if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
| 964 | &device->dev_state)) |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 965 | fs_devices->rw_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 966 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 967 | list_del_init(&device->dev_list); |
| 968 | fs_devices->num_devices--; |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 969 | btrfs_free_device(device); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 970 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 971 | |
| 972 | if (fs_devices->seed) { |
| 973 | fs_devices = fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 974 | goto again; |
| 975 | } |
| 976 | |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 977 | fs_devices->latest_bdev = latest_dev->bdev; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 978 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 979 | mutex_unlock(&uuid_mutex); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 980 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 981 | |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 982 | static void free_device_rcu(struct rcu_head *head) |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 983 | { |
| 984 | struct btrfs_device *device; |
| 985 | |
| 986 | device = container_of(head, struct btrfs_device, rcu); |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 987 | btrfs_free_device(device); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 988 | } |
| 989 | |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 990 | static void btrfs_close_bdev(struct btrfs_device *device) |
| 991 | { |
David Sterba | 08ffcae | 2017-06-19 16:55:35 +0200 | [diff] [blame] | 992 | if (!device->bdev) |
| 993 | return; |
| 994 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 995 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 996 | sync_blockdev(device->bdev); |
| 997 | invalidate_bdev(device->bdev); |
| 998 | } |
| 999 | |
David Sterba | 08ffcae | 2017-06-19 16:55:35 +0200 | [diff] [blame] | 1000 | blkdev_put(device->bdev, device->mode); |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 1001 | } |
| 1002 | |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1003 | static void btrfs_prepare_close_one_device(struct btrfs_device *device) |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1004 | { |
| 1005 | struct btrfs_fs_devices *fs_devices = device->fs_devices; |
| 1006 | struct btrfs_device *new_device; |
| 1007 | struct rcu_string *name; |
| 1008 | |
| 1009 | if (device->bdev) |
| 1010 | fs_devices->open_devices--; |
| 1011 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1012 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1013 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
| 1014 | list_del_init(&device->dev_alloc_list); |
| 1015 | fs_devices->rw_devices--; |
| 1016 | } |
| 1017 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 1018 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1019 | fs_devices->missing_devices--; |
| 1020 | |
| 1021 | new_device = btrfs_alloc_device(NULL, &device->devid, |
| 1022 | device->uuid); |
| 1023 | BUG_ON(IS_ERR(new_device)); /* -ENOMEM */ |
| 1024 | |
| 1025 | /* Safe because we are under uuid_mutex */ |
| 1026 | if (device->name) { |
| 1027 | name = rcu_string_strdup(device->name->str, GFP_NOFS); |
| 1028 | BUG_ON(!name); /* -ENOMEM */ |
| 1029 | rcu_assign_pointer(new_device->name, name); |
| 1030 | } |
| 1031 | |
| 1032 | list_replace_rcu(&device->dev_list, &new_device->dev_list); |
| 1033 | new_device->fs_devices = device->fs_devices; |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1034 | } |
| 1035 | |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 1036 | static int close_fs_devices(struct btrfs_fs_devices *fs_devices) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1037 | { |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 1038 | struct btrfs_device *device, *tmp; |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1039 | struct list_head pending_put; |
| 1040 | |
| 1041 | INIT_LIST_HEAD(&pending_put); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1042 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1043 | if (--fs_devices->opened > 0) |
| 1044 | return 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1045 | |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 1046 | mutex_lock(&fs_devices->device_list_mutex); |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 1047 | list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) { |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1048 | btrfs_prepare_close_one_device(device); |
| 1049 | list_add(&device->dev_list, &pending_put); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1050 | } |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 1051 | mutex_unlock(&fs_devices->device_list_mutex); |
| 1052 | |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1053 | /* |
| 1054 | * btrfs_show_devname() is using the device_list_mutex, |
| 1055 | * sometimes call to blkdev_put() leads vfs calling |
| 1056 | * into this func. So do put outside of device_list_mutex, |
| 1057 | * as of now. |
| 1058 | */ |
| 1059 | while (!list_empty(&pending_put)) { |
| 1060 | device = list_first_entry(&pending_put, |
| 1061 | struct btrfs_device, dev_list); |
| 1062 | list_del(&device->dev_list); |
| 1063 | btrfs_close_bdev(device); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 1064 | call_rcu(&device->rcu, free_device_rcu); |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1065 | } |
| 1066 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1067 | WARN_ON(fs_devices->open_devices); |
| 1068 | WARN_ON(fs_devices->rw_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1069 | fs_devices->opened = 0; |
| 1070 | fs_devices->seeding = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1071 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1072 | return 0; |
| 1073 | } |
| 1074 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1075 | int btrfs_close_devices(struct btrfs_fs_devices *fs_devices) |
| 1076 | { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1077 | struct btrfs_fs_devices *seed_devices = NULL; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1078 | int ret; |
| 1079 | |
| 1080 | mutex_lock(&uuid_mutex); |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 1081 | ret = close_fs_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1082 | if (!fs_devices->opened) { |
| 1083 | seed_devices = fs_devices->seed; |
| 1084 | fs_devices->seed = NULL; |
| 1085 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1086 | mutex_unlock(&uuid_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1087 | |
| 1088 | while (seed_devices) { |
| 1089 | fs_devices = seed_devices; |
| 1090 | seed_devices = fs_devices->seed; |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 1091 | close_fs_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1092 | free_fs_devices(fs_devices); |
| 1093 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1094 | return ret; |
| 1095 | } |
| 1096 | |
Anand Jain | 897fb57 | 2018-04-12 10:29:28 +0800 | [diff] [blame] | 1097 | static int open_fs_devices(struct btrfs_fs_devices *fs_devices, |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1098 | fmode_t flags, void *holder) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1099 | { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1100 | struct btrfs_device *device; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 1101 | struct btrfs_device *latest_dev = NULL; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1102 | int ret = 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1103 | |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1104 | flags |= FMODE_EXCL; |
| 1105 | |
Anand Jain | f117e29 | 2018-04-12 10:29:26 +0800 | [diff] [blame] | 1106 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
Eric Sandeen | f63e0cc | 2013-04-04 20:45:08 +0000 | [diff] [blame] | 1107 | /* Just open everything we can; ignore failures here */ |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 1108 | if (btrfs_open_one_device(fs_devices, device, flags, holder)) |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1109 | continue; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1110 | |
Anand Jain | 9f050db | 2017-11-09 23:45:25 +0800 | [diff] [blame] | 1111 | if (!latest_dev || |
| 1112 | device->generation > latest_dev->generation) |
| 1113 | latest_dev = device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1114 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1115 | if (fs_devices->open_devices == 0) { |
Ilya Dryomov | 20bcd64 | 2011-10-20 00:06:20 +0300 | [diff] [blame] | 1116 | ret = -EINVAL; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1117 | goto out; |
| 1118 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1119 | fs_devices->opened = 1; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 1120 | fs_devices->latest_bdev = latest_dev->bdev; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1121 | fs_devices->total_rw_bytes = 0; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1122 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1123 | return ret; |
| 1124 | } |
| 1125 | |
Anand Jain | f8e10cd | 2018-01-22 14:49:36 -0800 | [diff] [blame] | 1126 | static int devid_cmp(void *priv, struct list_head *a, struct list_head *b) |
| 1127 | { |
| 1128 | struct btrfs_device *dev1, *dev2; |
| 1129 | |
| 1130 | dev1 = list_entry(a, struct btrfs_device, dev_list); |
| 1131 | dev2 = list_entry(b, struct btrfs_device, dev_list); |
| 1132 | |
| 1133 | if (dev1->devid < dev2->devid) |
| 1134 | return -1; |
| 1135 | else if (dev1->devid > dev2->devid) |
| 1136 | return 1; |
| 1137 | return 0; |
| 1138 | } |
| 1139 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1140 | int btrfs_open_devices(struct btrfs_fs_devices *fs_devices, |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 1141 | fmode_t flags, void *holder) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1142 | { |
| 1143 | int ret; |
| 1144 | |
| 1145 | mutex_lock(&uuid_mutex); |
| 1146 | if (fs_devices->opened) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1147 | fs_devices->opened++; |
| 1148 | ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1149 | } else { |
Anand Jain | f8e10cd | 2018-01-22 14:49:36 -0800 | [diff] [blame] | 1150 | list_sort(NULL, &fs_devices->devices, devid_cmp); |
Anand Jain | 897fb57 | 2018-04-12 10:29:28 +0800 | [diff] [blame] | 1151 | ret = open_fs_devices(fs_devices, flags, holder); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1152 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1153 | mutex_unlock(&uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1154 | return ret; |
| 1155 | } |
| 1156 | |
Omar Sandoval | c9162bd | 2017-08-22 23:46:04 -0700 | [diff] [blame] | 1157 | static void btrfs_release_disk_super(struct page *page) |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1158 | { |
| 1159 | kunmap(page); |
| 1160 | put_page(page); |
| 1161 | } |
| 1162 | |
Omar Sandoval | c9162bd | 2017-08-22 23:46:04 -0700 | [diff] [blame] | 1163 | static int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr, |
| 1164 | struct page **page, |
| 1165 | struct btrfs_super_block **disk_super) |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1166 | { |
| 1167 | void *p; |
| 1168 | pgoff_t index; |
| 1169 | |
| 1170 | /* make sure our super fits in the device */ |
| 1171 | if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode)) |
| 1172 | return 1; |
| 1173 | |
| 1174 | /* make sure our super fits in the page */ |
| 1175 | if (sizeof(**disk_super) > PAGE_SIZE) |
| 1176 | return 1; |
| 1177 | |
| 1178 | /* make sure our super doesn't straddle pages on disk */ |
| 1179 | index = bytenr >> PAGE_SHIFT; |
| 1180 | if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index) |
| 1181 | return 1; |
| 1182 | |
| 1183 | /* pull in the page with our super */ |
| 1184 | *page = read_cache_page_gfp(bdev->bd_inode->i_mapping, |
| 1185 | index, GFP_KERNEL); |
| 1186 | |
| 1187 | if (IS_ERR_OR_NULL(*page)) |
| 1188 | return 1; |
| 1189 | |
| 1190 | p = kmap(*page); |
| 1191 | |
| 1192 | /* align our pointer to the offset of the super block */ |
| 1193 | *disk_super = p + (bytenr & ~PAGE_MASK); |
| 1194 | |
| 1195 | if (btrfs_super_bytenr(*disk_super) != bytenr || |
| 1196 | btrfs_super_magic(*disk_super) != BTRFS_MAGIC) { |
| 1197 | btrfs_release_disk_super(*page); |
| 1198 | return 1; |
| 1199 | } |
| 1200 | |
| 1201 | if ((*disk_super)->label[0] && |
| 1202 | (*disk_super)->label[BTRFS_LABEL_SIZE - 1]) |
| 1203 | (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0'; |
| 1204 | |
| 1205 | return 0; |
| 1206 | } |
| 1207 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1208 | /* |
| 1209 | * Look for a btrfs signature on a device. This may be called out of the mount path |
| 1210 | * and we are not allowed to call set_blocksize during the scan. The superblock |
| 1211 | * is read via pagecache |
| 1212 | */ |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 1213 | 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] | 1214 | struct btrfs_fs_devices **fs_devices_ret) |
| 1215 | { |
| 1216 | struct btrfs_super_block *disk_super; |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 1217 | struct btrfs_device *device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1218 | struct block_device *bdev; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1219 | struct page *page; |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 1220 | int ret = 0; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1221 | u64 bytenr; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1222 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1223 | /* |
| 1224 | * we would like to check all the supers, but that would make |
| 1225 | * a btrfs mount succeed after a mkfs from a different FS. |
| 1226 | * So, we need to add a special mount option to scan for |
| 1227 | * later supers, using BTRFS_SUPER_MIRROR_MAX instead |
| 1228 | */ |
| 1229 | bytenr = btrfs_sb_offset(0); |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1230 | flags |= FMODE_EXCL; |
Al Viro | 10f6327 | 2011-11-17 15:05:22 -0500 | [diff] [blame] | 1231 | mutex_lock(&uuid_mutex); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1232 | |
| 1233 | bdev = blkdev_get_by_path(path, flags, holder); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1234 | if (IS_ERR(bdev)) { |
| 1235 | ret = PTR_ERR(bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1236 | goto error; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1237 | } |
| 1238 | |
Anand Jain | 05a5c55 | 2017-12-15 15:40:16 +0800 | [diff] [blame] | 1239 | if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super)) { |
| 1240 | ret = -EINVAL; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1241 | goto error_bdev_put; |
Anand Jain | 05a5c55 | 2017-12-15 15:40:16 +0800 | [diff] [blame] | 1242 | } |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1243 | |
Anand Jain | 3acbcbf | 2018-01-18 22:02:36 +0800 | [diff] [blame] | 1244 | device = device_list_add(path, disk_super); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 1245 | if (IS_ERR(device)) |
| 1246 | ret = PTR_ERR(device); |
| 1247 | else |
| 1248 | *fs_devices_ret = device->fs_devices; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1249 | |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1250 | btrfs_release_disk_super(page); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1251 | |
| 1252 | error_bdev_put: |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1253 | blkdev_put(bdev, flags); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1254 | error: |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1255 | mutex_unlock(&uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1256 | return ret; |
| 1257 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1258 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1259 | /* helper to account the used device space in the range */ |
| 1260 | int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start, |
| 1261 | u64 end, u64 *length) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1262 | { |
| 1263 | struct btrfs_key key; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 1264 | struct btrfs_root *root = device->fs_info->dev_root; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1265 | struct btrfs_dev_extent *dev_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1266 | struct btrfs_path *path; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1267 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1268 | int ret; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1269 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1270 | struct extent_buffer *l; |
| 1271 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1272 | *length = 0; |
| 1273 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1274 | if (start >= device->total_bytes || |
| 1275 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1276 | return 0; |
| 1277 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1278 | path = btrfs_alloc_path(); |
| 1279 | if (!path) |
| 1280 | return -ENOMEM; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1281 | path->reada = READA_FORWARD; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1282 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1283 | key.objectid = device->devid; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1284 | key.offset = start; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1285 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1286 | |
| 1287 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1288 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1289 | goto out; |
Yan Zheng | 1fcbac5 | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 1290 | if (ret > 0) { |
| 1291 | ret = btrfs_previous_item(root, path, key.objectid, key.type); |
| 1292 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1293 | goto out; |
Yan Zheng | 1fcbac5 | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 1294 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1295 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1296 | while (1) { |
| 1297 | l = path->nodes[0]; |
| 1298 | slot = path->slots[0]; |
| 1299 | if (slot >= btrfs_header_nritems(l)) { |
| 1300 | ret = btrfs_next_leaf(root, path); |
| 1301 | if (ret == 0) |
| 1302 | continue; |
| 1303 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1304 | goto out; |
| 1305 | |
| 1306 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1307 | } |
| 1308 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1309 | |
| 1310 | if (key.objectid < device->devid) |
| 1311 | goto next; |
| 1312 | |
| 1313 | if (key.objectid > device->devid) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1314 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1315 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1316 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1317 | goto next; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1318 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1319 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1320 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1321 | dev_extent); |
| 1322 | if (key.offset <= start && extent_end > end) { |
| 1323 | *length = end - start + 1; |
| 1324 | break; |
| 1325 | } else if (key.offset <= start && extent_end > start) |
| 1326 | *length += extent_end - start; |
| 1327 | else if (key.offset > start && extent_end <= end) |
| 1328 | *length += extent_end - key.offset; |
| 1329 | else if (key.offset > start && key.offset <= end) { |
| 1330 | *length += end - key.offset + 1; |
| 1331 | break; |
| 1332 | } else if (key.offset > end) |
| 1333 | break; |
| 1334 | |
| 1335 | next: |
| 1336 | path->slots[0]++; |
| 1337 | } |
| 1338 | ret = 0; |
| 1339 | out: |
| 1340 | btrfs_free_path(path); |
| 1341 | return ret; |
| 1342 | } |
| 1343 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1344 | static int contains_pending_extent(struct btrfs_transaction *transaction, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1345 | struct btrfs_device *device, |
| 1346 | u64 *start, u64 len) |
| 1347 | { |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 1348 | struct btrfs_fs_info *fs_info = device->fs_info; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1349 | struct extent_map *em; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1350 | struct list_head *search_list = &fs_info->pinned_chunks; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1351 | int ret = 0; |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1352 | u64 physical_start = *start; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1353 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1354 | if (transaction) |
| 1355 | search_list = &transaction->pending_chunks; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 1356 | again: |
| 1357 | list_for_each_entry(em, search_list, list) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1358 | struct map_lookup *map; |
| 1359 | int i; |
| 1360 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 1361 | map = em->map_lookup; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1362 | for (i = 0; i < map->num_stripes; i++) { |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1363 | u64 end; |
| 1364 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1365 | if (map->stripes[i].dev != device) |
| 1366 | continue; |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1367 | if (map->stripes[i].physical >= physical_start + len || |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1368 | map->stripes[i].physical + em->orig_block_len <= |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1369 | physical_start) |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1370 | continue; |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1371 | /* |
| 1372 | * Make sure that while processing the pinned list we do |
| 1373 | * not override our *start with a lower value, because |
| 1374 | * we can have pinned chunks that fall within this |
| 1375 | * device hole and that have lower physical addresses |
| 1376 | * than the pending chunks we processed before. If we |
| 1377 | * do not take this special care we can end up getting |
| 1378 | * 2 pending chunks that start at the same physical |
| 1379 | * device offsets because the end offset of a pinned |
| 1380 | * chunk can be equal to the start offset of some |
| 1381 | * pending chunk. |
| 1382 | */ |
| 1383 | end = map->stripes[i].physical + em->orig_block_len; |
| 1384 | if (end > *start) { |
| 1385 | *start = end; |
| 1386 | ret = 1; |
| 1387 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1388 | } |
| 1389 | } |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1390 | if (search_list != &fs_info->pinned_chunks) { |
| 1391 | search_list = &fs_info->pinned_chunks; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 1392 | goto again; |
| 1393 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1394 | |
| 1395 | return ret; |
| 1396 | } |
| 1397 | |
| 1398 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1399 | /* |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1400 | * find_free_dev_extent_start - find free space in the specified device |
| 1401 | * @device: the device which we search the free space in |
| 1402 | * @num_bytes: the size of the free space that we need |
| 1403 | * @search_start: the position from which to begin the search |
| 1404 | * @start: store the start of the free space. |
| 1405 | * @len: the size of the free space. that we find, or the size |
| 1406 | * 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] | 1407 | * |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1408 | * this uses a pretty simple search, the expectation is that it is |
| 1409 | * called very infrequently and that a given device has a small number |
| 1410 | * of extents |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1411 | * |
| 1412 | * @start is used to store the start of the free space if we find. But if we |
| 1413 | * don't find suitable free space, it will be used to store the start position |
| 1414 | * of the max free space. |
| 1415 | * |
| 1416 | * @len is used to store the size of the free space that we find. |
| 1417 | * But if we don't find suitable free space, it is used to store the size of |
| 1418 | * the max free space. |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1419 | */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1420 | int find_free_dev_extent_start(struct btrfs_transaction *transaction, |
| 1421 | struct btrfs_device *device, u64 num_bytes, |
| 1422 | u64 search_start, u64 *start, u64 *len) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1423 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1424 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1425 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1426 | struct btrfs_key key; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1427 | struct btrfs_dev_extent *dev_extent; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1428 | struct btrfs_path *path; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1429 | u64 hole_size; |
| 1430 | u64 max_hole_start; |
| 1431 | u64 max_hole_size; |
| 1432 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1433 | u64 search_end = device->total_bytes; |
| 1434 | int ret; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1435 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1436 | struct extent_buffer *l; |
Filipe Manana | 8cdc7c5 | 2016-01-06 22:42:35 +0000 | [diff] [blame] | 1437 | |
| 1438 | /* |
| 1439 | * We don't want to overwrite the superblock on the drive nor any area |
| 1440 | * used by the boot loader (grub for example), so we make sure to start |
| 1441 | * at an offset of at least 1MB. |
| 1442 | */ |
David Sterba | 0d0c71b | 2017-06-15 01:30:06 +0200 | [diff] [blame] | 1443 | search_start = max_t(u64, search_start, SZ_1M); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1444 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1445 | path = btrfs_alloc_path(); |
| 1446 | if (!path) |
| 1447 | return -ENOMEM; |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1448 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1449 | max_hole_start = search_start; |
| 1450 | max_hole_size = 0; |
| 1451 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1452 | again: |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1453 | if (search_start >= search_end || |
| 1454 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1455 | ret = -ENOSPC; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1456 | goto out; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1457 | } |
| 1458 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1459 | path->reada = READA_FORWARD; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1460 | path->search_commit_root = 1; |
| 1461 | path->skip_locking = 1; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1462 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1463 | key.objectid = device->devid; |
| 1464 | key.offset = search_start; |
| 1465 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1466 | |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 1467 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1468 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1469 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1470 | if (ret > 0) { |
| 1471 | ret = btrfs_previous_item(root, path, key.objectid, key.type); |
| 1472 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1473 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1474 | } |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1475 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1476 | while (1) { |
| 1477 | l = path->nodes[0]; |
| 1478 | slot = path->slots[0]; |
| 1479 | if (slot >= btrfs_header_nritems(l)) { |
| 1480 | ret = btrfs_next_leaf(root, path); |
| 1481 | if (ret == 0) |
| 1482 | continue; |
| 1483 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1484 | goto out; |
| 1485 | |
| 1486 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1487 | } |
| 1488 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1489 | |
| 1490 | if (key.objectid < device->devid) |
| 1491 | goto next; |
| 1492 | |
| 1493 | if (key.objectid > device->devid) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1494 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1495 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1496 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1497 | goto next; |
| 1498 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1499 | if (key.offset > search_start) { |
| 1500 | hole_size = key.offset - search_start; |
| 1501 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1502 | /* |
| 1503 | * Have to check before we set max_hole_start, otherwise |
| 1504 | * we could end up sending back this offset anyway. |
| 1505 | */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1506 | if (contains_pending_extent(transaction, device, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1507 | &search_start, |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1508 | hole_size)) { |
| 1509 | if (key.offset >= search_start) { |
| 1510 | hole_size = key.offset - search_start; |
| 1511 | } else { |
| 1512 | WARN_ON_ONCE(1); |
| 1513 | hole_size = 0; |
| 1514 | } |
| 1515 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1516 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1517 | if (hole_size > max_hole_size) { |
| 1518 | max_hole_start = search_start; |
| 1519 | max_hole_size = hole_size; |
| 1520 | } |
| 1521 | |
| 1522 | /* |
| 1523 | * If this free space is greater than which we need, |
| 1524 | * it must be the max free space that we have found |
| 1525 | * until now, so max_hole_start must point to the start |
| 1526 | * of this free space and the length of this free space |
| 1527 | * is stored in max_hole_size. Thus, we return |
| 1528 | * max_hole_start and max_hole_size and go back to the |
| 1529 | * caller. |
| 1530 | */ |
| 1531 | if (hole_size >= num_bytes) { |
| 1532 | ret = 0; |
| 1533 | goto out; |
| 1534 | } |
| 1535 | } |
| 1536 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1537 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1538 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1539 | dev_extent); |
| 1540 | if (extent_end > search_start) |
| 1541 | search_start = extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1542 | next: |
| 1543 | path->slots[0]++; |
| 1544 | cond_resched(); |
| 1545 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1546 | |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1547 | /* |
| 1548 | * At this point, search_start should be the end of |
| 1549 | * allocated dev extents, and when shrinking the device, |
| 1550 | * search_end may be smaller than search_start. |
| 1551 | */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1552 | if (search_end > search_start) { |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1553 | hole_size = search_end - search_start; |
| 1554 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1555 | if (contains_pending_extent(transaction, device, &search_start, |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1556 | hole_size)) { |
| 1557 | btrfs_release_path(path); |
| 1558 | goto again; |
| 1559 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1560 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1561 | if (hole_size > max_hole_size) { |
| 1562 | max_hole_start = search_start; |
| 1563 | max_hole_size = hole_size; |
| 1564 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1565 | } |
| 1566 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1567 | /* See above. */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1568 | if (max_hole_size < num_bytes) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1569 | ret = -ENOSPC; |
| 1570 | else |
| 1571 | ret = 0; |
| 1572 | |
| 1573 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1574 | btrfs_free_path(path); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1575 | *start = max_hole_start; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 1576 | if (len) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1577 | *len = max_hole_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1578 | return ret; |
| 1579 | } |
| 1580 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1581 | int find_free_dev_extent(struct btrfs_trans_handle *trans, |
| 1582 | struct btrfs_device *device, u64 num_bytes, |
| 1583 | u64 *start, u64 *len) |
| 1584 | { |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1585 | /* FIXME use last free of some kind */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1586 | return find_free_dev_extent_start(trans->transaction, device, |
Filipe Manana | 8cdc7c5 | 2016-01-06 22:42:35 +0000 | [diff] [blame] | 1587 | num_bytes, 0, start, len); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1588 | } |
| 1589 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1590 | static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1591 | struct btrfs_device *device, |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1592 | u64 start, u64 *dev_extent_len) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1593 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1594 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1595 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1596 | int ret; |
| 1597 | struct btrfs_path *path; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1598 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1599 | struct btrfs_key found_key; |
| 1600 | struct extent_buffer *leaf = NULL; |
| 1601 | struct btrfs_dev_extent *extent = NULL; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1602 | |
| 1603 | path = btrfs_alloc_path(); |
| 1604 | if (!path) |
| 1605 | return -ENOMEM; |
| 1606 | |
| 1607 | key.objectid = device->devid; |
| 1608 | key.offset = start; |
| 1609 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1610 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1611 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1612 | if (ret > 0) { |
| 1613 | ret = btrfs_previous_item(root, path, key.objectid, |
| 1614 | BTRFS_DEV_EXTENT_KEY); |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1615 | if (ret) |
| 1616 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1617 | leaf = path->nodes[0]; |
| 1618 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 1619 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1620 | struct btrfs_dev_extent); |
| 1621 | BUG_ON(found_key.offset > start || found_key.offset + |
| 1622 | btrfs_dev_extent_length(leaf, extent) < start); |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1623 | key = found_key; |
| 1624 | btrfs_release_path(path); |
| 1625 | goto again; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1626 | } else if (ret == 0) { |
| 1627 | leaf = path->nodes[0]; |
| 1628 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1629 | struct btrfs_dev_extent); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1630 | } else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1631 | btrfs_handle_fs_error(fs_info, ret, "Slot search failed"); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1632 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1633 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1634 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1635 | *dev_extent_len = btrfs_dev_extent_length(leaf, extent); |
| 1636 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1637 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1638 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1639 | btrfs_handle_fs_error(fs_info, ret, |
| 1640 | "Failed to remove dev extent item"); |
Zhao Lei | 13212b5 | 2015-02-12 14:18:17 +0800 | [diff] [blame] | 1641 | } else { |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 1642 | set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1643 | } |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1644 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1645 | btrfs_free_path(path); |
| 1646 | return ret; |
| 1647 | } |
| 1648 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1649 | static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans, |
| 1650 | struct btrfs_device *device, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1651 | u64 chunk_offset, u64 start, u64 num_bytes) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1652 | { |
| 1653 | int ret; |
| 1654 | struct btrfs_path *path; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1655 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1656 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1657 | struct btrfs_dev_extent *extent; |
| 1658 | struct extent_buffer *leaf; |
| 1659 | struct btrfs_key key; |
| 1660 | |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 1661 | 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] | 1662 | WARN_ON(test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1663 | path = btrfs_alloc_path(); |
| 1664 | if (!path) |
| 1665 | return -ENOMEM; |
| 1666 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1667 | key.objectid = device->devid; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1668 | key.offset = start; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1669 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 1670 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1671 | sizeof(*extent)); |
Mark Fasheh | 2cdcecb | 2011-09-08 17:14:32 -0700 | [diff] [blame] | 1672 | if (ret) |
| 1673 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1674 | |
| 1675 | leaf = path->nodes[0]; |
| 1676 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1677 | struct btrfs_dev_extent); |
Nikolay Borisov | b5d9071 | 2017-08-18 17:58:23 +0300 | [diff] [blame] | 1678 | btrfs_set_dev_extent_chunk_tree(leaf, extent, |
| 1679 | BTRFS_CHUNK_TREE_OBJECTID); |
Nikolay Borisov | 0ca00af | 2017-08-18 17:58:22 +0300 | [diff] [blame] | 1680 | btrfs_set_dev_extent_chunk_objectid(leaf, extent, |
| 1681 | BTRFS_FIRST_CHUNK_TREE_OBJECTID); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1682 | btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset); |
| 1683 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1684 | btrfs_set_dev_extent_length(leaf, extent, num_bytes); |
| 1685 | btrfs_mark_buffer_dirty(leaf); |
Mark Fasheh | 2cdcecb | 2011-09-08 17:14:32 -0700 | [diff] [blame] | 1686 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1687 | btrfs_free_path(path); |
| 1688 | return ret; |
| 1689 | } |
| 1690 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1691 | static u64 find_next_chunk(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1692 | { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1693 | struct extent_map_tree *em_tree; |
| 1694 | struct extent_map *em; |
| 1695 | struct rb_node *n; |
| 1696 | u64 ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1697 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1698 | em_tree = &fs_info->mapping_tree.map_tree; |
| 1699 | read_lock(&em_tree->lock); |
| 1700 | n = rb_last(&em_tree->map); |
| 1701 | if (n) { |
| 1702 | em = rb_entry(n, struct extent_map, rb_node); |
| 1703 | ret = em->start + em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1704 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1705 | read_unlock(&em_tree->lock); |
| 1706 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1707 | return ret; |
| 1708 | } |
| 1709 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1710 | static noinline int find_next_devid(struct btrfs_fs_info *fs_info, |
| 1711 | u64 *devid_ret) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1712 | { |
| 1713 | int ret; |
| 1714 | struct btrfs_key key; |
| 1715 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1716 | struct btrfs_path *path; |
| 1717 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1718 | path = btrfs_alloc_path(); |
| 1719 | if (!path) |
| 1720 | return -ENOMEM; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1721 | |
| 1722 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1723 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1724 | key.offset = (u64)-1; |
| 1725 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1726 | 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] | 1727 | if (ret < 0) |
| 1728 | goto error; |
| 1729 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1730 | BUG_ON(ret == 0); /* Corruption */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1731 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1732 | ret = btrfs_previous_item(fs_info->chunk_root, path, |
| 1733 | BTRFS_DEV_ITEMS_OBJECTID, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1734 | BTRFS_DEV_ITEM_KEY); |
| 1735 | if (ret) { |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1736 | *devid_ret = 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1737 | } else { |
| 1738 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 1739 | path->slots[0]); |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1740 | *devid_ret = found_key.offset + 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1741 | } |
| 1742 | ret = 0; |
| 1743 | error: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1744 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1745 | return ret; |
| 1746 | } |
| 1747 | |
| 1748 | /* |
| 1749 | * the device information is stored in the chunk root |
| 1750 | * the btrfs_device struct should be fully filled in |
| 1751 | */ |
Anand Jain | c74a0b0 | 2017-11-06 16:36:15 +0800 | [diff] [blame] | 1752 | static int btrfs_add_dev_item(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1753 | struct btrfs_fs_info *fs_info, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1754 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1755 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1756 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1757 | int ret; |
| 1758 | struct btrfs_path *path; |
| 1759 | struct btrfs_dev_item *dev_item; |
| 1760 | struct extent_buffer *leaf; |
| 1761 | struct btrfs_key key; |
| 1762 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1763 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1764 | path = btrfs_alloc_path(); |
| 1765 | if (!path) |
| 1766 | return -ENOMEM; |
| 1767 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1768 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1769 | key.type = BTRFS_DEV_ITEM_KEY; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1770 | key.offset = device->devid; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1771 | |
| 1772 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1773 | sizeof(*dev_item)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1774 | if (ret) |
| 1775 | goto out; |
| 1776 | |
| 1777 | leaf = path->nodes[0]; |
| 1778 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 1779 | |
| 1780 | btrfs_set_device_id(leaf, dev_item, device->devid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1781 | btrfs_set_device_generation(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1782 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 1783 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 1784 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 1785 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 1786 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 1787 | btrfs_device_get_disk_total_bytes(device)); |
| 1788 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 1789 | btrfs_device_get_bytes_used(device)); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1790 | btrfs_set_device_group(leaf, dev_item, 0); |
| 1791 | btrfs_set_device_seek_speed(leaf, dev_item, 0); |
| 1792 | btrfs_set_device_bandwidth(leaf, dev_item, 0); |
Chris Mason | c3027eb | 2008-12-08 16:40:21 -0500 | [diff] [blame] | 1793 | btrfs_set_device_start_offset(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1794 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 1795 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1796 | write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 1797 | ptr = btrfs_device_fsid(dev_item); |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 1798 | write_extent_buffer(leaf, fs_info->fsid, ptr, BTRFS_FSID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1799 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1800 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1801 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1802 | out: |
| 1803 | btrfs_free_path(path); |
| 1804 | return ret; |
| 1805 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1806 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1807 | /* |
| 1808 | * Function to update ctime/mtime for a given device path. |
| 1809 | * Mainly used for ctime/mtime based probe like libblkid. |
| 1810 | */ |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 1811 | static void update_dev_time(const char *path_name) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1812 | { |
| 1813 | struct file *filp; |
| 1814 | |
| 1815 | filp = filp_open(path_name, O_RDWR, 0); |
Al Viro | 98af592 | 2014-12-14 02:59:17 -0500 | [diff] [blame] | 1816 | if (IS_ERR(filp)) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1817 | return; |
| 1818 | file_update_time(filp); |
| 1819 | filp_close(filp, NULL); |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1820 | } |
| 1821 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1822 | static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info, |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1823 | struct btrfs_device *device) |
| 1824 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1825 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1826 | int ret; |
| 1827 | struct btrfs_path *path; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1828 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1829 | struct btrfs_trans_handle *trans; |
| 1830 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1831 | path = btrfs_alloc_path(); |
| 1832 | if (!path) |
| 1833 | return -ENOMEM; |
| 1834 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 1835 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 1836 | if (IS_ERR(trans)) { |
| 1837 | btrfs_free_path(path); |
| 1838 | return PTR_ERR(trans); |
| 1839 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1840 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1841 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1842 | key.offset = device->devid; |
| 1843 | |
| 1844 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1845 | if (ret) { |
| 1846 | if (ret > 0) |
| 1847 | ret = -ENOENT; |
| 1848 | btrfs_abort_transaction(trans, ret); |
| 1849 | btrfs_end_transaction(trans); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1850 | goto out; |
| 1851 | } |
| 1852 | |
| 1853 | ret = btrfs_del_item(trans, root, path); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1854 | if (ret) { |
| 1855 | btrfs_abort_transaction(trans, ret); |
| 1856 | btrfs_end_transaction(trans); |
| 1857 | } |
| 1858 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1859 | out: |
| 1860 | btrfs_free_path(path); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1861 | if (!ret) |
| 1862 | ret = btrfs_commit_transaction(trans); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1863 | return ret; |
| 1864 | } |
| 1865 | |
David Sterba | 3cc31a0 | 2016-02-15 16:00:26 +0100 | [diff] [blame] | 1866 | /* |
| 1867 | * Verify that @num_devices satisfies the RAID profile constraints in the whole |
| 1868 | * filesystem. It's up to the caller to adjust that number regarding eg. device |
| 1869 | * replace. |
| 1870 | */ |
| 1871 | static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info, |
| 1872 | u64 num_devices) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1873 | { |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1874 | u64 all_avail; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1875 | unsigned seq; |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1876 | int i; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1877 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1878 | do { |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1879 | seq = read_seqbegin(&fs_info->profiles_lock); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1880 | |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1881 | all_avail = fs_info->avail_data_alloc_bits | |
| 1882 | fs_info->avail_system_alloc_bits | |
| 1883 | fs_info->avail_metadata_alloc_bits; |
| 1884 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1885 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1886 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 1887 | if (!(all_avail & btrfs_raid_group[i])) |
| 1888 | continue; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1889 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1890 | if (num_devices < btrfs_raid_array[i].devs_min) { |
| 1891 | int ret = btrfs_raid_mindev_error[i]; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1892 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1893 | if (ret) |
| 1894 | return ret; |
| 1895 | } |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1896 | } |
| 1897 | |
| 1898 | return 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1899 | } |
| 1900 | |
Omar Sandoval | c9162bd | 2017-08-22 23:46:04 -0700 | [diff] [blame] | 1901 | static struct btrfs_device * btrfs_find_next_active_device( |
| 1902 | struct btrfs_fs_devices *fs_devs, struct btrfs_device *device) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 1903 | { |
| 1904 | struct btrfs_device *next_device; |
| 1905 | |
| 1906 | list_for_each_entry(next_device, &fs_devs->devices, dev_list) { |
| 1907 | if (next_device != device && |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 1908 | !test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state) |
| 1909 | && next_device->bdev) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 1910 | return next_device; |
| 1911 | } |
| 1912 | |
| 1913 | return NULL; |
| 1914 | } |
| 1915 | |
| 1916 | /* |
| 1917 | * Helper function to check if the given device is part of s_bdev / latest_bdev |
| 1918 | * and replace it with the provided or the next active device, in the context |
| 1919 | * where this function called, there should be always be another device (or |
| 1920 | * this_dev) which is active. |
| 1921 | */ |
| 1922 | void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info, |
| 1923 | struct btrfs_device *device, struct btrfs_device *this_dev) |
| 1924 | { |
| 1925 | struct btrfs_device *next_device; |
| 1926 | |
| 1927 | if (this_dev) |
| 1928 | next_device = this_dev; |
| 1929 | else |
| 1930 | next_device = btrfs_find_next_active_device(fs_info->fs_devices, |
| 1931 | device); |
| 1932 | ASSERT(next_device); |
| 1933 | |
| 1934 | if (fs_info->sb->s_bdev && |
| 1935 | (fs_info->sb->s_bdev == device->bdev)) |
| 1936 | fs_info->sb->s_bdev = next_device->bdev; |
| 1937 | |
| 1938 | if (fs_info->fs_devices->latest_bdev == device->bdev) |
| 1939 | fs_info->fs_devices->latest_bdev = next_device->bdev; |
| 1940 | } |
| 1941 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 1942 | int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path, |
| 1943 | u64 devid) |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1944 | { |
| 1945 | struct btrfs_device *device; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1946 | struct btrfs_fs_devices *cur_devices; |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame] | 1947 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1948 | u64 num_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1949 | int ret = 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1950 | |
| 1951 | mutex_lock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1952 | |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame] | 1953 | num_devices = fs_devices->num_devices; |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 1954 | btrfs_dev_replace_read_lock(&fs_info->dev_replace); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1955 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) { |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1956 | WARN_ON(num_devices < 1); |
| 1957 | num_devices--; |
| 1958 | } |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 1959 | btrfs_dev_replace_read_unlock(&fs_info->dev_replace); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1960 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1961 | ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1962 | if (ret) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1963 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1964 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1965 | ret = btrfs_find_device_by_devspec(fs_info, devid, device_path, |
| 1966 | &device); |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1967 | if (ret) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1968 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1969 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1970 | if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1971 | ret = BTRFS_ERROR_DEV_TGT_REPLACE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1972 | goto out; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1973 | } |
| 1974 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1975 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
| 1976 | fs_info->fs_devices->rw_devices == 1) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1977 | ret = BTRFS_ERROR_DEV_ONLY_WRITABLE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1978 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1979 | } |
| 1980 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1981 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 1982 | mutex_lock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1983 | list_del_init(&device->dev_alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 1984 | device->fs_devices->rw_devices--; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 1985 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1986 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1987 | |
Carey Underwood | d790155 | 2013-03-04 16:37:06 -0600 | [diff] [blame] | 1988 | mutex_unlock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1989 | ret = btrfs_shrink_device(device, 0); |
Carey Underwood | d790155 | 2013-03-04 16:37:06 -0600 | [diff] [blame] | 1990 | mutex_lock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1991 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1992 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1993 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1994 | /* |
| 1995 | * TODO: the superblock still includes this device in its num_devices |
| 1996 | * counter although write_all_supers() is not locked out. This |
| 1997 | * could give a filesystem state which requires a degraded mount. |
| 1998 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1999 | ret = btrfs_rm_dev_item(fs_info, device); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2000 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2001 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2002 | |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2003 | clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2004 | btrfs_scrub_cancel_dev(fs_info, device); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2005 | |
| 2006 | /* |
| 2007 | * the device list mutex makes sure that we don't change |
| 2008 | * the device list while someone else is writing out all |
Filipe David Borba Manana | d730680 | 2013-08-09 15:41:36 +0100 | [diff] [blame] | 2009 | * the device supers. Whoever is writing all supers, should |
| 2010 | * lock the device list mutex before getting the number of |
| 2011 | * devices in the super block (super_copy). Conversely, |
| 2012 | * whoever updates the number of devices in the super block |
| 2013 | * (super_copy) should hold the device list mutex. |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2014 | */ |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2015 | |
| 2016 | cur_devices = device->fs_devices; |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame] | 2017 | mutex_lock(&fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2018 | list_del_rcu(&device->dev_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2019 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2020 | device->fs_devices->num_devices--; |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 2021 | device->fs_devices->total_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2022 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 2023 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) |
Miao Xie | 3a7d55c | 2014-07-16 18:38:01 +0800 | [diff] [blame] | 2024 | device->fs_devices->missing_devices--; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 2025 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2026 | btrfs_assign_next_active_device(fs_info, device, NULL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2027 | |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2028 | if (device->bdev) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2029 | device->fs_devices->open_devices--; |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2030 | /* remove sysfs entry */ |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame] | 2031 | btrfs_sysfs_rm_device_link(fs_devices, device); |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2032 | } |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 2033 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2034 | num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1; |
| 2035 | btrfs_set_super_num_devices(fs_info->super_copy, num_devices); |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame] | 2036 | mutex_unlock(&fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2037 | |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2038 | /* |
| 2039 | * at this point, the device is zero sized and detached from |
| 2040 | * the devices list. All that's left is to zero out the old |
| 2041 | * supers and free the device. |
| 2042 | */ |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2043 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2044 | btrfs_scratch_superblocks(device->bdev, device->name->str); |
| 2045 | |
| 2046 | btrfs_close_bdev(device); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 2047 | call_rcu(&device->rcu, free_device_rcu); |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2048 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2049 | if (cur_devices->open_devices == 0) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2050 | while (fs_devices) { |
Rickard Strandqvist | 8321cf2 | 2014-05-22 22:43:43 +0200 | [diff] [blame] | 2051 | if (fs_devices->seed == cur_devices) { |
| 2052 | fs_devices->seed = cur_devices->seed; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2053 | break; |
Rickard Strandqvist | 8321cf2 | 2014-05-22 22:43:43 +0200 | [diff] [blame] | 2054 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2055 | fs_devices = fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2056 | } |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2057 | cur_devices->seed = NULL; |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 2058 | close_fs_devices(cur_devices); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2059 | free_fs_devices(cur_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2060 | } |
| 2061 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2062 | out: |
| 2063 | mutex_unlock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2064 | return ret; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2065 | |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2066 | error_undo: |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2067 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2068 | mutex_lock(&fs_info->chunk_mutex); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2069 | list_add(&device->dev_alloc_list, |
Anand Jain | b518519 | 2018-04-12 10:29:30 +0800 | [diff] [blame] | 2070 | &fs_devices->alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 2071 | device->fs_devices->rw_devices++; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2072 | mutex_unlock(&fs_info->chunk_mutex); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2073 | } |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2074 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2075 | } |
| 2076 | |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 2077 | void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info, |
| 2078 | struct btrfs_device *srcdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2079 | { |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2080 | struct btrfs_fs_devices *fs_devices; |
| 2081 | |
David Sterba | a32bf9a | 2018-03-16 02:21:22 +0100 | [diff] [blame] | 2082 | lockdep_assert_held(&fs_info->fs_devices->device_list_mutex); |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 2083 | |
Anand Jain | 25e8e91 | 2014-08-20 10:56:56 +0800 | [diff] [blame] | 2084 | /* |
| 2085 | * in case of fs with no seed, srcdev->fs_devices will point |
| 2086 | * to fs_devices of fs_info. However when the dev being replaced is |
| 2087 | * a seed dev it will point to the seed's local fs_devices. In short |
| 2088 | * srcdev will have its correct fs_devices in both the cases. |
| 2089 | */ |
| 2090 | fs_devices = srcdev->fs_devices; |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2091 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2092 | list_del_rcu(&srcdev->dev_list); |
David Sterba | 619c47f | 2017-06-19 14:14:22 +0200 | [diff] [blame] | 2093 | list_del(&srcdev->dev_alloc_list); |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2094 | fs_devices->num_devices--; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 2095 | if (test_bit(BTRFS_DEV_STATE_MISSING, &srcdev->dev_state)) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2096 | fs_devices->missing_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2097 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2098 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2099 | fs_devices->rw_devices--; |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 2100 | |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2101 | if (srcdev->bdev) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2102 | fs_devices->open_devices--; |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 2103 | } |
| 2104 | |
| 2105 | void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info, |
| 2106 | struct btrfs_device *srcdev) |
| 2107 | { |
| 2108 | struct btrfs_fs_devices *fs_devices = srcdev->fs_devices; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2109 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2110 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) { |
Anand Jain | 48b3b9d | 2016-04-12 21:36:16 +0800 | [diff] [blame] | 2111 | /* zero out the old super if it is writable */ |
| 2112 | btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str); |
| 2113 | } |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 2114 | |
| 2115 | btrfs_close_bdev(srcdev); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 2116 | call_rcu(&srcdev->rcu, free_device_rcu); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2117 | |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2118 | /* if this is no devs we rather delete the fs_devices */ |
| 2119 | if (!fs_devices->num_devices) { |
| 2120 | struct btrfs_fs_devices *tmp_fs_devices; |
| 2121 | |
Anand Jain | 6dd38f8 | 2017-10-17 06:53:50 +0800 | [diff] [blame] | 2122 | /* |
| 2123 | * On a mounted FS, num_devices can't be zero unless it's a |
| 2124 | * seed. In case of a seed device being replaced, the replace |
| 2125 | * target added to the sprout FS, so there will be no more |
| 2126 | * device left under the seed FS. |
| 2127 | */ |
| 2128 | ASSERT(fs_devices->seeding); |
| 2129 | |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2130 | tmp_fs_devices = fs_info->fs_devices; |
| 2131 | while (tmp_fs_devices) { |
| 2132 | if (tmp_fs_devices->seed == fs_devices) { |
| 2133 | tmp_fs_devices->seed = fs_devices->seed; |
| 2134 | break; |
| 2135 | } |
| 2136 | tmp_fs_devices = tmp_fs_devices->seed; |
| 2137 | } |
| 2138 | fs_devices->seed = NULL; |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 2139 | close_fs_devices(fs_devices); |
Anand Jain | 8bef840 | 2014-08-13 14:24:23 +0800 | [diff] [blame] | 2140 | free_fs_devices(fs_devices); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2141 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2142 | } |
| 2143 | |
| 2144 | void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info, |
| 2145 | struct btrfs_device *tgtdev) |
| 2146 | { |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 2147 | mutex_lock(&uuid_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2148 | WARN_ON(!tgtdev); |
| 2149 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2150 | |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 2151 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2152 | |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2153 | if (tgtdev->bdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2154 | fs_info->fs_devices->open_devices--; |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2155 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2156 | fs_info->fs_devices->num_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2157 | |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2158 | btrfs_assign_next_active_device(fs_info, tgtdev, NULL); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2159 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2160 | list_del_rcu(&tgtdev->dev_list); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2161 | |
| 2162 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 2163 | mutex_unlock(&uuid_mutex); |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2164 | |
| 2165 | /* |
| 2166 | * The update_dev_time() with in btrfs_scratch_superblocks() |
| 2167 | * may lead to a call to btrfs_show_devname() which will try |
| 2168 | * to hold device_list_mutex. And here this device |
| 2169 | * is already out of device list, so we don't have to hold |
| 2170 | * the device_list_mutex lock. |
| 2171 | */ |
| 2172 | btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str); |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 2173 | |
| 2174 | btrfs_close_bdev(tgtdev); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 2175 | call_rcu(&tgtdev->rcu, free_device_rcu); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2176 | } |
| 2177 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2178 | 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] | 2179 | const char *device_path, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 2180 | struct btrfs_device **device) |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2181 | { |
| 2182 | int ret = 0; |
| 2183 | struct btrfs_super_block *disk_super; |
| 2184 | u64 devid; |
| 2185 | u8 *dev_uuid; |
| 2186 | struct block_device *bdev; |
| 2187 | struct buffer_head *bh; |
| 2188 | |
| 2189 | *device = NULL; |
| 2190 | ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2191 | fs_info->bdev_holder, 0, &bdev, &bh); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2192 | if (ret) |
| 2193 | return ret; |
| 2194 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 2195 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 2196 | dev_uuid = disk_super->dev_item.uuid; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2197 | *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2198 | brelse(bh); |
| 2199 | if (!*device) |
| 2200 | ret = -ENOENT; |
| 2201 | blkdev_put(bdev, FMODE_READ); |
| 2202 | return ret; |
| 2203 | } |
| 2204 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2205 | 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] | 2206 | const char *device_path, |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2207 | struct btrfs_device **device) |
| 2208 | { |
| 2209 | *device = NULL; |
| 2210 | if (strcmp(device_path, "missing") == 0) { |
| 2211 | struct list_head *devices; |
| 2212 | struct btrfs_device *tmp; |
| 2213 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2214 | devices = &fs_info->fs_devices->devices; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2215 | list_for_each_entry(tmp, devices, dev_list) { |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2216 | if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 2217 | &tmp->dev_state) && !tmp->bdev) { |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2218 | *device = tmp; |
| 2219 | break; |
| 2220 | } |
| 2221 | } |
| 2222 | |
Anand Jain | d74a625 | 2015-08-14 18:32:56 +0800 | [diff] [blame] | 2223 | if (!*device) |
| 2224 | return BTRFS_ERROR_DEV_MISSING_NOT_FOUND; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2225 | |
| 2226 | return 0; |
| 2227 | } else { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2228 | return btrfs_find_device_by_path(fs_info, device_path, device); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2229 | } |
| 2230 | } |
| 2231 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2232 | /* |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2233 | * Lookup a device given by device id, or the path if the id is 0. |
| 2234 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2235 | 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] | 2236 | const char *devpath, |
| 2237 | struct btrfs_device **device) |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2238 | { |
| 2239 | int ret; |
| 2240 | |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2241 | if (devid) { |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2242 | ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2243 | *device = btrfs_find_device(fs_info, devid, NULL, NULL); |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2244 | if (!*device) |
| 2245 | ret = -ENOENT; |
| 2246 | } else { |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2247 | if (!devpath || !devpath[0]) |
Anand Jain | b3d1b15 | 2016-02-13 10:01:37 +0800 | [diff] [blame] | 2248 | return -EINVAL; |
| 2249 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2250 | ret = btrfs_find_device_missing_or_by_path(fs_info, devpath, |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2251 | device); |
| 2252 | } |
| 2253 | return ret; |
| 2254 | } |
| 2255 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2256 | /* |
| 2257 | * does all the dirty work required for changing file system's UUID. |
| 2258 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2259 | static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2260 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2261 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2262 | struct btrfs_fs_devices *old_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2263 | struct btrfs_fs_devices *seed_devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2264 | struct btrfs_super_block *disk_super = fs_info->super_copy; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2265 | struct btrfs_device *device; |
| 2266 | u64 super_flags; |
| 2267 | |
David Sterba | a32bf9a | 2018-03-16 02:21:22 +0100 | [diff] [blame] | 2268 | lockdep_assert_held(&uuid_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2269 | if (!fs_devices->seeding) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2270 | return -EINVAL; |
| 2271 | |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 2272 | seed_devices = alloc_fs_devices(NULL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 2273 | if (IS_ERR(seed_devices)) |
| 2274 | return PTR_ERR(seed_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2275 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2276 | old_devices = clone_fs_devices(fs_devices); |
| 2277 | if (IS_ERR(old_devices)) { |
| 2278 | kfree(seed_devices); |
| 2279 | return PTR_ERR(old_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2280 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2281 | |
Anand Jain | c4babc5 | 2018-04-12 10:29:25 +0800 | [diff] [blame] | 2282 | list_add(&old_devices->fs_list, &fs_uuids); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2283 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2284 | memcpy(seed_devices, fs_devices, sizeof(*seed_devices)); |
| 2285 | seed_devices->opened = 1; |
| 2286 | INIT_LIST_HEAD(&seed_devices->devices); |
| 2287 | INIT_LIST_HEAD(&seed_devices->alloc_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2288 | mutex_init(&seed_devices->device_list_mutex); |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 2289 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2290 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2291 | list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices, |
| 2292 | synchronize_rcu); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2293 | list_for_each_entry(device, &seed_devices->devices, dev_list) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2294 | device->fs_devices = seed_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2295 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2296 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2297 | list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2298 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2299 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2300 | fs_devices->seeding = 0; |
| 2301 | fs_devices->num_devices = 0; |
| 2302 | fs_devices->open_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2303 | fs_devices->missing_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2304 | fs_devices->rotating = 0; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2305 | fs_devices->seed = seed_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2306 | |
| 2307 | generate_random_uuid(fs_devices->fsid); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2308 | memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2309 | memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2310 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 2311 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2312 | super_flags = btrfs_super_flags(disk_super) & |
| 2313 | ~BTRFS_SUPER_FLAG_SEEDING; |
| 2314 | btrfs_set_super_flags(disk_super, super_flags); |
| 2315 | |
| 2316 | return 0; |
| 2317 | } |
| 2318 | |
| 2319 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2320 | * Store the expected generation for seed devices in device items. |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2321 | */ |
| 2322 | static int btrfs_finish_sprout(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2323 | struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2324 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2325 | struct btrfs_root *root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2326 | struct btrfs_path *path; |
| 2327 | struct extent_buffer *leaf; |
| 2328 | struct btrfs_dev_item *dev_item; |
| 2329 | struct btrfs_device *device; |
| 2330 | struct btrfs_key key; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 2331 | u8 fs_uuid[BTRFS_FSID_SIZE]; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2332 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 2333 | u64 devid; |
| 2334 | int ret; |
| 2335 | |
| 2336 | path = btrfs_alloc_path(); |
| 2337 | if (!path) |
| 2338 | return -ENOMEM; |
| 2339 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2340 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2341 | key.offset = 0; |
| 2342 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2343 | |
| 2344 | while (1) { |
| 2345 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2346 | if (ret < 0) |
| 2347 | goto error; |
| 2348 | |
| 2349 | leaf = path->nodes[0]; |
| 2350 | next_slot: |
| 2351 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 2352 | ret = btrfs_next_leaf(root, path); |
| 2353 | if (ret > 0) |
| 2354 | break; |
| 2355 | if (ret < 0) |
| 2356 | goto error; |
| 2357 | leaf = path->nodes[0]; |
| 2358 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2359 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2360 | continue; |
| 2361 | } |
| 2362 | |
| 2363 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 2364 | if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID || |
| 2365 | key.type != BTRFS_DEV_ITEM_KEY) |
| 2366 | break; |
| 2367 | |
| 2368 | dev_item = btrfs_item_ptr(leaf, path->slots[0], |
| 2369 | struct btrfs_dev_item); |
| 2370 | devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 2371 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2372 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 2373 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 2374 | BTRFS_FSID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2375 | device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2376 | BUG_ON(!device); /* Logic error */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2377 | |
| 2378 | if (device->fs_devices->seeding) { |
| 2379 | btrfs_set_device_generation(leaf, dev_item, |
| 2380 | device->generation); |
| 2381 | btrfs_mark_buffer_dirty(leaf); |
| 2382 | } |
| 2383 | |
| 2384 | path->slots[0]++; |
| 2385 | goto next_slot; |
| 2386 | } |
| 2387 | ret = 0; |
| 2388 | error: |
| 2389 | btrfs_free_path(path); |
| 2390 | return ret; |
| 2391 | } |
| 2392 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 2393 | 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] | 2394 | { |
Jeff Mahoney | 5112feb | 2016-06-21 20:16:08 -0400 | [diff] [blame] | 2395 | struct btrfs_root *root = fs_info->dev_root; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2396 | struct request_queue *q; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2397 | struct btrfs_trans_handle *trans; |
| 2398 | struct btrfs_device *device; |
| 2399 | struct block_device *bdev; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2400 | struct list_head *devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2401 | struct super_block *sb = fs_info->sb; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2402 | struct rcu_string *name; |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2403 | u64 tmp; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2404 | int seeding_dev = 0; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2405 | int ret = 0; |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2406 | bool unlocked = false; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2407 | |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 2408 | if (sb_rdonly(sb) && !fs_info->fs_devices->seeding) |
Liu Bo | f8c5d0b | 2012-05-10 18:10:38 +0800 | [diff] [blame] | 2409 | return -EROFS; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2410 | |
Li Zefan | a5d1633 | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 2411 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2412 | fs_info->bdev_holder); |
Josef Bacik | 7f59203 | 2010-01-27 02:09:00 +0000 | [diff] [blame] | 2413 | if (IS_ERR(bdev)) |
| 2414 | return PTR_ERR(bdev); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2415 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2416 | if (fs_info->fs_devices->seeding) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2417 | seeding_dev = 1; |
| 2418 | down_write(&sb->s_umount); |
| 2419 | mutex_lock(&uuid_mutex); |
| 2420 | } |
| 2421 | |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 2422 | filemap_write_and_wait(bdev->bd_inode->i_mapping); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2423 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2424 | devices = &fs_info->fs_devices->devices; |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2425 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2426 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 2427 | list_for_each_entry(device, devices, dev_list) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2428 | if (device->bdev == bdev) { |
| 2429 | ret = -EEXIST; |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2430 | mutex_unlock( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2431 | &fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2432 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2433 | } |
| 2434 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2435 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2436 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2437 | device = btrfs_alloc_device(fs_info, NULL, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2438 | if (IS_ERR(device)) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2439 | /* we can safely leave the fs_devices entry around */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2440 | ret = PTR_ERR(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2441 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2442 | } |
| 2443 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 2444 | name = rcu_string_strdup(device_path, GFP_KERNEL); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2445 | if (!name) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2446 | ret = -ENOMEM; |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2447 | goto error_free_device; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2448 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2449 | rcu_assign_pointer(device->name, name); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2450 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2451 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2452 | if (IS_ERR(trans)) { |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2453 | ret = PTR_ERR(trans); |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2454 | goto error_free_device; |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2455 | } |
| 2456 | |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2457 | q = bdev_get_queue(bdev); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2458 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2459 | device->generation = trans->transid; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2460 | device->io_width = fs_info->sectorsize; |
| 2461 | device->io_align = fs_info->sectorsize; |
| 2462 | device->sector_size = fs_info->sectorsize; |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2463 | device->total_bytes = round_down(i_size_read(bdev->bd_inode), |
| 2464 | fs_info->sectorsize); |
Yan Zheng | 2cc3c55 | 2009-06-04 09:23:50 -0400 | [diff] [blame] | 2465 | device->disk_total_bytes = device->total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2466 | device->commit_total_bytes = device->total_bytes; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2467 | device->fs_info = fs_info; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2468 | device->bdev = bdev; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2469 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2470 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Ilya Dryomov | fb01aa8 | 2011-02-15 18:12:57 +0000 | [diff] [blame] | 2471 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2472 | device->dev_stats_valid = 1; |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 2473 | set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE); |
Zheng Yan | 325cd4b | 2008-09-05 16:43:54 -0400 | [diff] [blame] | 2474 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2475 | if (seeding_dev) { |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 2476 | sb->s_flags &= ~SB_RDONLY; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2477 | ret = btrfs_prepare_sprout(fs_info); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2478 | if (ret) { |
| 2479 | btrfs_abort_transaction(trans, ret); |
| 2480 | goto error_trans; |
| 2481 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2482 | } |
| 2483 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2484 | device->fs_devices = fs_info->fs_devices; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2485 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2486 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2487 | mutex_lock(&fs_info->chunk_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2488 | list_add_rcu(&device->dev_list, &fs_info->fs_devices->devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2489 | list_add(&device->dev_alloc_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2490 | &fs_info->fs_devices->alloc_list); |
| 2491 | fs_info->fs_devices->num_devices++; |
| 2492 | fs_info->fs_devices->open_devices++; |
| 2493 | fs_info->fs_devices->rw_devices++; |
| 2494 | fs_info->fs_devices->total_devices++; |
| 2495 | fs_info->fs_devices->total_rw_bytes += device->total_bytes; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2496 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 2497 | atomic64_add(device->total_bytes, &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 2498 | |
Anand Jain | e884f4f | 2017-04-04 18:40:19 +0800 | [diff] [blame] | 2499 | if (!blk_queue_nonrot(q)) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2500 | fs_info->fs_devices->rotating = 1; |
Chris Mason | c289811 | 2009-06-10 09:51:32 -0400 | [diff] [blame] | 2501 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2502 | tmp = btrfs_super_total_bytes(fs_info->super_copy); |
| 2503 | btrfs_set_super_total_bytes(fs_info->super_copy, |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2504 | round_down(tmp + device->total_bytes, fs_info->sectorsize)); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2505 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2506 | tmp = btrfs_super_num_devices(fs_info->super_copy); |
| 2507 | btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2508 | |
| 2509 | /* add sysfs device entry */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2510 | btrfs_sysfs_add_device_link(fs_info->fs_devices, device); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2511 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2512 | /* |
| 2513 | * we've got more storage, clear any full flags on the space |
| 2514 | * infos |
| 2515 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2516 | btrfs_clear_space_info_full(fs_info); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2517 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2518 | mutex_unlock(&fs_info->chunk_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2519 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2520 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2521 | if (seeding_dev) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2522 | mutex_lock(&fs_info->chunk_mutex); |
David Sterba | e4a4dce | 2017-02-10 19:49:01 +0100 | [diff] [blame] | 2523 | ret = init_first_rw_device(trans, fs_info); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2524 | mutex_unlock(&fs_info->chunk_mutex); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2525 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2526 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2527 | goto error_sysfs; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2528 | } |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2529 | } |
| 2530 | |
Anand Jain | c74a0b0 | 2017-11-06 16:36:15 +0800 | [diff] [blame] | 2531 | ret = btrfs_add_dev_item(trans, fs_info, device); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2532 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2533 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2534 | goto error_sysfs; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2535 | } |
| 2536 | |
| 2537 | if (seeding_dev) { |
| 2538 | char fsid_buf[BTRFS_UUID_UNPARSED_SIZE]; |
| 2539 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2540 | ret = btrfs_finish_sprout(trans, fs_info); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2541 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2542 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2543 | goto error_sysfs; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2544 | } |
Anand Jain | b2373f2 | 2014-06-03 11:36:03 +0800 | [diff] [blame] | 2545 | |
| 2546 | /* Sprouting would change fsid of the mounted root, |
| 2547 | * so rename the fsid on the sysfs |
| 2548 | */ |
| 2549 | snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2550 | fs_info->fsid); |
| 2551 | if (kobject_rename(&fs_info->fs_devices->fsid_kobj, fsid_buf)) |
| 2552 | btrfs_warn(fs_info, |
| 2553 | "sysfs: failed to create fsid for sprout"); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2554 | } |
| 2555 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2556 | ret = btrfs_commit_transaction(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2557 | |
| 2558 | if (seeding_dev) { |
| 2559 | mutex_unlock(&uuid_mutex); |
| 2560 | up_write(&sb->s_umount); |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2561 | unlocked = true; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2562 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2563 | if (ret) /* transaction commit */ |
| 2564 | return ret; |
| 2565 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2566 | ret = btrfs_relocate_sys_chunks(fs_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2567 | if (ret < 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2568 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2569 | "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] | 2570 | trans = btrfs_attach_transaction(root); |
| 2571 | if (IS_ERR(trans)) { |
| 2572 | if (PTR_ERR(trans) == -ENOENT) |
| 2573 | return 0; |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2574 | ret = PTR_ERR(trans); |
| 2575 | trans = NULL; |
| 2576 | goto error_sysfs; |
Miao Xie | 671415b | 2012-10-16 11:26:46 +0000 | [diff] [blame] | 2577 | } |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2578 | ret = btrfs_commit_transaction(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2579 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2580 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 2581 | /* Update ctime/mtime for libblkid */ |
| 2582 | update_dev_time(device_path); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2583 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2584 | |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2585 | error_sysfs: |
| 2586 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, device); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2587 | error_trans: |
Anand Jain | 0af2c4b | 2017-09-28 14:51:09 +0800 | [diff] [blame] | 2588 | if (seeding_dev) |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 2589 | sb->s_flags |= SB_RDONLY; |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2590 | if (trans) |
| 2591 | btrfs_end_transaction(trans); |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2592 | error_free_device: |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 2593 | btrfs_free_device(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2594 | error: |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 2595 | blkdev_put(bdev, FMODE_EXCL); |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2596 | if (seeding_dev && !unlocked) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2597 | mutex_unlock(&uuid_mutex); |
| 2598 | up_write(&sb->s_umount); |
| 2599 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2600 | return ret; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2601 | } |
| 2602 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2603 | static noinline int btrfs_update_device(struct btrfs_trans_handle *trans, |
| 2604 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2605 | { |
| 2606 | int ret; |
| 2607 | struct btrfs_path *path; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2608 | struct btrfs_root *root = device->fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2609 | struct btrfs_dev_item *dev_item; |
| 2610 | struct extent_buffer *leaf; |
| 2611 | struct btrfs_key key; |
| 2612 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2613 | path = btrfs_alloc_path(); |
| 2614 | if (!path) |
| 2615 | return -ENOMEM; |
| 2616 | |
| 2617 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2618 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2619 | key.offset = device->devid; |
| 2620 | |
| 2621 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2622 | if (ret < 0) |
| 2623 | goto out; |
| 2624 | |
| 2625 | if (ret > 0) { |
| 2626 | ret = -ENOENT; |
| 2627 | goto out; |
| 2628 | } |
| 2629 | |
| 2630 | leaf = path->nodes[0]; |
| 2631 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 2632 | |
| 2633 | btrfs_set_device_id(leaf, dev_item, device->devid); |
| 2634 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 2635 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 2636 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 2637 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2638 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 2639 | btrfs_device_get_disk_total_bytes(device)); |
| 2640 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 2641 | btrfs_device_get_bytes_used(device)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2642 | btrfs_mark_buffer_dirty(leaf); |
| 2643 | |
| 2644 | out: |
| 2645 | btrfs_free_path(path); |
| 2646 | return ret; |
| 2647 | } |
| 2648 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2649 | int btrfs_grow_device(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2650 | struct btrfs_device *device, u64 new_size) |
| 2651 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2652 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 2653 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2654 | struct btrfs_fs_devices *fs_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2655 | u64 old_total; |
| 2656 | u64 diff; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2657 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2658 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2659 | return -EACCES; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2660 | |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2661 | new_size = round_down(new_size, fs_info->sectorsize); |
| 2662 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2663 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2664 | old_total = btrfs_super_total_bytes(super_copy); |
Nikolay Borisov | 0e4324a | 2017-07-21 11:28:24 +0300 | [diff] [blame] | 2665 | diff = round_down(new_size - device->total_bytes, fs_info->sectorsize); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2666 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2667 | if (new_size <= device->total_bytes || |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2668 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2669 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2670 | return -EINVAL; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2671 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2672 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2673 | fs_devices = fs_info->fs_devices; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2674 | |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2675 | btrfs_set_super_total_bytes(super_copy, |
| 2676 | round_down(old_total + diff, fs_info->sectorsize)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2677 | device->fs_devices->total_rw_bytes += diff; |
| 2678 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2679 | btrfs_device_set_total_bytes(device, new_size); |
| 2680 | btrfs_device_set_disk_total_bytes(device, new_size); |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2681 | btrfs_clear_space_info_full(device->fs_info); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2682 | if (list_empty(&device->resized_list)) |
| 2683 | list_add_tail(&device->resized_list, |
| 2684 | &fs_devices->resized_devices); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2685 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 2686 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2687 | return btrfs_update_device(trans, device); |
| 2688 | } |
| 2689 | |
| 2690 | static int btrfs_free_chunk(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2691 | struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2692 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2693 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2694 | int ret; |
| 2695 | struct btrfs_path *path; |
| 2696 | struct btrfs_key key; |
| 2697 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2698 | path = btrfs_alloc_path(); |
| 2699 | if (!path) |
| 2700 | return -ENOMEM; |
| 2701 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2702 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2703 | key.offset = chunk_offset; |
| 2704 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 2705 | |
| 2706 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2707 | if (ret < 0) |
| 2708 | goto out; |
| 2709 | else if (ret > 0) { /* Logic error or corruption */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2710 | btrfs_handle_fs_error(fs_info, -ENOENT, |
| 2711 | "Failed lookup while freeing chunk."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2712 | ret = -ENOENT; |
| 2713 | goto out; |
| 2714 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2715 | |
| 2716 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2717 | if (ret < 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2718 | btrfs_handle_fs_error(fs_info, ret, |
| 2719 | "Failed to delete chunk item."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2720 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2721 | btrfs_free_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 2722 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2723 | } |
| 2724 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2725 | 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] | 2726 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2727 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2728 | struct btrfs_disk_key *disk_key; |
| 2729 | struct btrfs_chunk *chunk; |
| 2730 | u8 *ptr; |
| 2731 | int ret = 0; |
| 2732 | u32 num_stripes; |
| 2733 | u32 array_size; |
| 2734 | u32 len = 0; |
| 2735 | u32 cur; |
| 2736 | struct btrfs_key key; |
| 2737 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2738 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2739 | array_size = btrfs_super_sys_array_size(super_copy); |
| 2740 | |
| 2741 | ptr = super_copy->sys_chunk_array; |
| 2742 | cur = 0; |
| 2743 | |
| 2744 | while (cur < array_size) { |
| 2745 | disk_key = (struct btrfs_disk_key *)ptr; |
| 2746 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 2747 | |
| 2748 | len = sizeof(*disk_key); |
| 2749 | |
| 2750 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 2751 | chunk = (struct btrfs_chunk *)(ptr + len); |
| 2752 | num_stripes = btrfs_stack_chunk_num_stripes(chunk); |
| 2753 | len += btrfs_chunk_item_size(num_stripes); |
| 2754 | } else { |
| 2755 | ret = -EIO; |
| 2756 | break; |
| 2757 | } |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2758 | if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID && |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2759 | key.offset == chunk_offset) { |
| 2760 | memmove(ptr, ptr + len, array_size - (cur + len)); |
| 2761 | array_size -= len; |
| 2762 | btrfs_set_super_sys_array_size(super_copy, array_size); |
| 2763 | } else { |
| 2764 | ptr += len; |
| 2765 | cur += len; |
| 2766 | } |
| 2767 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2768 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2769 | return ret; |
| 2770 | } |
| 2771 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2772 | static struct extent_map *get_chunk_map(struct btrfs_fs_info *fs_info, |
| 2773 | u64 logical, u64 length) |
| 2774 | { |
| 2775 | struct extent_map_tree *em_tree; |
| 2776 | struct extent_map *em; |
| 2777 | |
| 2778 | em_tree = &fs_info->mapping_tree.map_tree; |
| 2779 | read_lock(&em_tree->lock); |
| 2780 | em = lookup_extent_mapping(em_tree, logical, length); |
| 2781 | read_unlock(&em_tree->lock); |
| 2782 | |
| 2783 | if (!em) { |
| 2784 | btrfs_crit(fs_info, "unable to find logical %llu length %llu", |
| 2785 | logical, length); |
| 2786 | return ERR_PTR(-EINVAL); |
| 2787 | } |
| 2788 | |
| 2789 | if (em->start > logical || em->start + em->len < logical) { |
| 2790 | btrfs_crit(fs_info, |
| 2791 | "found a bad mapping, wanted %llu-%llu, found %llu-%llu", |
| 2792 | logical, length, em->start, em->start + em->len); |
| 2793 | free_extent_map(em); |
| 2794 | return ERR_PTR(-EINVAL); |
| 2795 | } |
| 2796 | |
| 2797 | /* callers are responsible for dropping em's ref. */ |
| 2798 | return em; |
| 2799 | } |
| 2800 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2801 | int btrfs_remove_chunk(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2802 | struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2803 | { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2804 | struct extent_map *em; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2805 | struct map_lookup *map; |
| 2806 | u64 dev_extent_len = 0; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2807 | int i, ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2808 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2809 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2810 | em = get_chunk_map(fs_info, chunk_offset, 1); |
| 2811 | if (IS_ERR(em)) { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2812 | /* |
| 2813 | * 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] | 2814 | * user having built with ASSERT enabled, so if ASSERT doesn't |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2815 | * do anything we still error out. |
| 2816 | */ |
| 2817 | ASSERT(0); |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2818 | return PTR_ERR(em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2819 | } |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 2820 | map = em->map_lookup; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2821 | mutex_lock(&fs_info->chunk_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2822 | check_system_chunk(trans, fs_info, map->type); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2823 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2824 | |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2825 | /* |
| 2826 | * Take the device list mutex to prevent races with the final phase of |
| 2827 | * a device replace operation that replaces the device object associated |
| 2828 | * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()). |
| 2829 | */ |
| 2830 | mutex_lock(&fs_devices->device_list_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2831 | for (i = 0; i < map->num_stripes; i++) { |
| 2832 | struct btrfs_device *device = map->stripes[i].dev; |
| 2833 | ret = btrfs_free_dev_extent(trans, device, |
| 2834 | map->stripes[i].physical, |
| 2835 | &dev_extent_len); |
| 2836 | if (ret) { |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2837 | mutex_unlock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2838 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2839 | goto out; |
| 2840 | } |
| 2841 | |
| 2842 | if (device->bytes_used > 0) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2843 | mutex_lock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2844 | btrfs_device_set_bytes_used(device, |
| 2845 | device->bytes_used - dev_extent_len); |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 2846 | atomic64_add(dev_extent_len, &fs_info->free_chunk_space); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2847 | btrfs_clear_space_info_full(fs_info); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2848 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2849 | } |
| 2850 | |
| 2851 | if (map->stripes[i].dev) { |
| 2852 | ret = btrfs_update_device(trans, map->stripes[i].dev); |
| 2853 | if (ret) { |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2854 | mutex_unlock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2855 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2856 | goto out; |
| 2857 | } |
| 2858 | } |
| 2859 | } |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2860 | mutex_unlock(&fs_devices->device_list_mutex); |
| 2861 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2862 | ret = btrfs_free_chunk(trans, fs_info, chunk_offset); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2863 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2864 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2865 | goto out; |
| 2866 | } |
| 2867 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2868 | trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2869 | |
| 2870 | if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2871 | ret = btrfs_del_sys_chunk(fs_info, chunk_offset); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2872 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2873 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2874 | goto out; |
| 2875 | } |
| 2876 | } |
| 2877 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2878 | ret = btrfs_remove_block_group(trans, fs_info, chunk_offset, em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2879 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2880 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2881 | goto out; |
| 2882 | } |
| 2883 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2884 | out: |
| 2885 | /* once for us */ |
| 2886 | free_extent_map(em); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2887 | return ret; |
| 2888 | } |
| 2889 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2890 | 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] | 2891 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2892 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 2893 | struct btrfs_trans_handle *trans; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2894 | int ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2895 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2896 | /* |
| 2897 | * Prevent races with automatic removal of unused block groups. |
| 2898 | * After we relocate and before we remove the chunk with offset |
| 2899 | * chunk_offset, automatic removal of the block group can kick in, |
| 2900 | * resulting in a failure when calling btrfs_remove_chunk() below. |
| 2901 | * |
| 2902 | * Make sure to acquire this mutex before doing a tree search (dev |
| 2903 | * or chunk trees) to find chunks. Otherwise the cleaner kthread might |
| 2904 | * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after |
| 2905 | * we release the path used to search the chunk/dev tree and before |
| 2906 | * the current task acquires this mutex and calls us. |
| 2907 | */ |
David Sterba | a32bf9a | 2018-03-16 02:21:22 +0100 | [diff] [blame] | 2908 | lockdep_assert_held(&fs_info->delete_unused_bgs_mutex); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2909 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2910 | ret = btrfs_can_relocate(fs_info, chunk_offset); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2911 | if (ret) |
| 2912 | return -ENOSPC; |
| 2913 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2914 | /* step one, relocate all the extents inside this chunk */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2915 | btrfs_scrub_pause(fs_info); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2916 | ret = btrfs_relocate_block_group(fs_info, chunk_offset); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2917 | btrfs_scrub_continue(fs_info); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2918 | if (ret) |
| 2919 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2920 | |
Jeff Mahoney | 75cb379 | 2018-03-20 15:25:26 -0400 | [diff] [blame] | 2921 | /* |
| 2922 | * We add the kobjects here (and after forcing data chunk creation) |
| 2923 | * since relocation is the only place we'll create chunks of a new |
| 2924 | * type at runtime. The only place where we'll remove the last |
| 2925 | * chunk of a type is the call immediately below this one. Even |
| 2926 | * so, we're protected against races with the cleaner thread since |
| 2927 | * we're covered by the delete_unused_bgs_mutex. |
| 2928 | */ |
| 2929 | btrfs_add_raid_kobjects(fs_info); |
| 2930 | |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 2931 | trans = btrfs_start_trans_remove_block_group(root->fs_info, |
| 2932 | chunk_offset); |
| 2933 | if (IS_ERR(trans)) { |
| 2934 | ret = PTR_ERR(trans); |
| 2935 | btrfs_handle_fs_error(root->fs_info, ret, NULL); |
| 2936 | return ret; |
| 2937 | } |
Naohiro Aota | 5d8eb6f | 2016-09-02 16:46:32 +0900 | [diff] [blame] | 2938 | |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 2939 | /* |
| 2940 | * step two, delete the device extents and the |
| 2941 | * chunk tree entries |
| 2942 | */ |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2943 | ret = btrfs_remove_chunk(trans, fs_info, chunk_offset); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2944 | btrfs_end_transaction(trans); |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 2945 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2946 | } |
| 2947 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2948 | static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2949 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2950 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2951 | struct btrfs_path *path; |
| 2952 | struct extent_buffer *leaf; |
| 2953 | struct btrfs_chunk *chunk; |
| 2954 | struct btrfs_key key; |
| 2955 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2956 | u64 chunk_type; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2957 | bool retried = false; |
| 2958 | int failed = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2959 | int ret; |
| 2960 | |
| 2961 | path = btrfs_alloc_path(); |
| 2962 | if (!path) |
| 2963 | return -ENOMEM; |
| 2964 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2965 | again: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2966 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 2967 | key.offset = (u64)-1; |
| 2968 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 2969 | |
| 2970 | while (1) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2971 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2972 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2973 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2974 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2975 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2976 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2977 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2978 | |
| 2979 | ret = btrfs_previous_item(chunk_root, path, key.objectid, |
| 2980 | key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2981 | if (ret) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2982 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2983 | if (ret < 0) |
| 2984 | goto error; |
| 2985 | if (ret > 0) |
| 2986 | break; |
| 2987 | |
| 2988 | leaf = path->nodes[0]; |
| 2989 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 2990 | |
| 2991 | chunk = btrfs_item_ptr(leaf, path->slots[0], |
| 2992 | struct btrfs_chunk); |
| 2993 | chunk_type = btrfs_chunk_type(leaf, chunk); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2994 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2995 | |
| 2996 | if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2997 | ret = btrfs_relocate_chunk(fs_info, found_key.offset); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2998 | if (ret == -ENOSPC) |
| 2999 | failed++; |
HIMANGI SARAOGI | 1458665 | 2014-07-09 03:51:41 +0530 | [diff] [blame] | 3000 | else |
| 3001 | BUG_ON(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3002 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3003 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3004 | |
| 3005 | if (found_key.offset == 0) |
| 3006 | break; |
| 3007 | key.offset = found_key.offset - 1; |
| 3008 | } |
| 3009 | ret = 0; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3010 | if (failed && !retried) { |
| 3011 | failed = 0; |
| 3012 | retried = true; |
| 3013 | goto again; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 3014 | } else if (WARN_ON(failed && retried)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3015 | ret = -ENOSPC; |
| 3016 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3017 | error: |
| 3018 | btrfs_free_path(path); |
| 3019 | return ret; |
| 3020 | } |
| 3021 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3022 | /* |
| 3023 | * return 1 : allocate a data chunk successfully, |
| 3024 | * return <0: errors during allocating a data chunk, |
| 3025 | * return 0 : no need to allocate a data chunk. |
| 3026 | */ |
| 3027 | static int btrfs_may_alloc_data_chunk(struct btrfs_fs_info *fs_info, |
| 3028 | u64 chunk_offset) |
| 3029 | { |
| 3030 | struct btrfs_block_group_cache *cache; |
| 3031 | u64 bytes_used; |
| 3032 | u64 chunk_type; |
| 3033 | |
| 3034 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3035 | ASSERT(cache); |
| 3036 | chunk_type = cache->flags; |
| 3037 | btrfs_put_block_group(cache); |
| 3038 | |
| 3039 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) { |
| 3040 | spin_lock(&fs_info->data_sinfo->lock); |
| 3041 | bytes_used = fs_info->data_sinfo->bytes_used; |
| 3042 | spin_unlock(&fs_info->data_sinfo->lock); |
| 3043 | |
| 3044 | if (!bytes_used) { |
| 3045 | struct btrfs_trans_handle *trans; |
| 3046 | int ret; |
| 3047 | |
| 3048 | trans = btrfs_join_transaction(fs_info->tree_root); |
| 3049 | if (IS_ERR(trans)) |
| 3050 | return PTR_ERR(trans); |
| 3051 | |
| 3052 | ret = btrfs_force_chunk_alloc(trans, fs_info, |
| 3053 | BTRFS_BLOCK_GROUP_DATA); |
| 3054 | btrfs_end_transaction(trans); |
| 3055 | if (ret < 0) |
| 3056 | return ret; |
| 3057 | |
Jeff Mahoney | 75cb379 | 2018-03-20 15:25:26 -0400 | [diff] [blame] | 3058 | btrfs_add_raid_kobjects(fs_info); |
| 3059 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3060 | return 1; |
| 3061 | } |
| 3062 | } |
| 3063 | return 0; |
| 3064 | } |
| 3065 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3066 | static int insert_balance_item(struct btrfs_fs_info *fs_info, |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3067 | struct btrfs_balance_control *bctl) |
| 3068 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3069 | struct btrfs_root *root = fs_info->tree_root; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3070 | struct btrfs_trans_handle *trans; |
| 3071 | struct btrfs_balance_item *item; |
| 3072 | struct btrfs_disk_balance_args disk_bargs; |
| 3073 | struct btrfs_path *path; |
| 3074 | struct extent_buffer *leaf; |
| 3075 | struct btrfs_key key; |
| 3076 | int ret, err; |
| 3077 | |
| 3078 | path = btrfs_alloc_path(); |
| 3079 | if (!path) |
| 3080 | return -ENOMEM; |
| 3081 | |
| 3082 | trans = btrfs_start_transaction(root, 0); |
| 3083 | if (IS_ERR(trans)) { |
| 3084 | btrfs_free_path(path); |
| 3085 | return PTR_ERR(trans); |
| 3086 | } |
| 3087 | |
| 3088 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3089 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3090 | key.offset = 0; |
| 3091 | |
| 3092 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 3093 | sizeof(*item)); |
| 3094 | if (ret) |
| 3095 | goto out; |
| 3096 | |
| 3097 | leaf = path->nodes[0]; |
| 3098 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 3099 | |
David Sterba | b159fa2 | 2016-11-08 18:09:03 +0100 | [diff] [blame] | 3100 | memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item)); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3101 | |
| 3102 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data); |
| 3103 | btrfs_set_balance_data(leaf, item, &disk_bargs); |
| 3104 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta); |
| 3105 | btrfs_set_balance_meta(leaf, item, &disk_bargs); |
| 3106 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys); |
| 3107 | btrfs_set_balance_sys(leaf, item, &disk_bargs); |
| 3108 | |
| 3109 | btrfs_set_balance_flags(leaf, item, bctl->flags); |
| 3110 | |
| 3111 | btrfs_mark_buffer_dirty(leaf); |
| 3112 | out: |
| 3113 | btrfs_free_path(path); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3114 | err = btrfs_commit_transaction(trans); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3115 | if (err && !ret) |
| 3116 | ret = err; |
| 3117 | return ret; |
| 3118 | } |
| 3119 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3120 | static int del_balance_item(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3121 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3122 | struct btrfs_root *root = fs_info->tree_root; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3123 | struct btrfs_trans_handle *trans; |
| 3124 | struct btrfs_path *path; |
| 3125 | struct btrfs_key key; |
| 3126 | int ret, err; |
| 3127 | |
| 3128 | path = btrfs_alloc_path(); |
| 3129 | if (!path) |
| 3130 | return -ENOMEM; |
| 3131 | |
| 3132 | trans = btrfs_start_transaction(root, 0); |
| 3133 | if (IS_ERR(trans)) { |
| 3134 | btrfs_free_path(path); |
| 3135 | return PTR_ERR(trans); |
| 3136 | } |
| 3137 | |
| 3138 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3139 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3140 | key.offset = 0; |
| 3141 | |
| 3142 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 3143 | if (ret < 0) |
| 3144 | goto out; |
| 3145 | if (ret > 0) { |
| 3146 | ret = -ENOENT; |
| 3147 | goto out; |
| 3148 | } |
| 3149 | |
| 3150 | ret = btrfs_del_item(trans, root, path); |
| 3151 | out: |
| 3152 | btrfs_free_path(path); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3153 | err = btrfs_commit_transaction(trans); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3154 | if (err && !ret) |
| 3155 | ret = err; |
| 3156 | return ret; |
| 3157 | } |
| 3158 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3159 | /* |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3160 | * This is a heuristic used to reduce the number of chunks balanced on |
| 3161 | * resume after balance was interrupted. |
| 3162 | */ |
| 3163 | static void update_balance_args(struct btrfs_balance_control *bctl) |
| 3164 | { |
| 3165 | /* |
| 3166 | * Turn on soft mode for chunk types that were being converted. |
| 3167 | */ |
| 3168 | if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3169 | bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3170 | if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3171 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3172 | if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3173 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3174 | |
| 3175 | /* |
| 3176 | * Turn on usage filter if is not already used. The idea is |
| 3177 | * that chunks that we have already balanced should be |
| 3178 | * reasonably full. Don't do it for chunks that are being |
| 3179 | * converted - that will keep us from relocating unconverted |
| 3180 | * (albeit full) chunks. |
| 3181 | */ |
| 3182 | if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3183 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3184 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3185 | bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3186 | bctl->data.usage = 90; |
| 3187 | } |
| 3188 | if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3189 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3190 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3191 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3192 | bctl->sys.usage = 90; |
| 3193 | } |
| 3194 | if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3195 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3196 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3197 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3198 | bctl->meta.usage = 90; |
| 3199 | } |
| 3200 | } |
| 3201 | |
| 3202 | /* |
David Sterba | dccdb07 | 2018-03-21 00:20:05 +0100 | [diff] [blame] | 3203 | * Should be called with balance mutex held to protect against checking the |
| 3204 | * balance status or progress. Same goes for reset_balance_state. |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3205 | */ |
| 3206 | static void set_balance_control(struct btrfs_balance_control *bctl) |
| 3207 | { |
| 3208 | struct btrfs_fs_info *fs_info = bctl->fs_info; |
| 3209 | |
| 3210 | BUG_ON(fs_info->balance_ctl); |
| 3211 | |
| 3212 | spin_lock(&fs_info->balance_lock); |
| 3213 | fs_info->balance_ctl = bctl; |
| 3214 | spin_unlock(&fs_info->balance_lock); |
| 3215 | } |
| 3216 | |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 3217 | /* |
| 3218 | * Clear the balance status in fs_info and delete the balance item from disk. |
| 3219 | */ |
| 3220 | static void reset_balance_state(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3221 | { |
| 3222 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 3223 | int ret; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3224 | |
| 3225 | BUG_ON(!fs_info->balance_ctl); |
| 3226 | |
| 3227 | spin_lock(&fs_info->balance_lock); |
| 3228 | fs_info->balance_ctl = NULL; |
| 3229 | spin_unlock(&fs_info->balance_lock); |
| 3230 | |
| 3231 | kfree(bctl); |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 3232 | ret = del_balance_item(fs_info); |
| 3233 | if (ret) |
| 3234 | btrfs_handle_fs_error(fs_info, ret, NULL); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3235 | } |
| 3236 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3237 | /* |
| 3238 | * Balance filters. Return 1 if chunk should be filtered out |
| 3239 | * (should not be balanced). |
| 3240 | */ |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3241 | static int chunk_profiles_filter(u64 chunk_type, |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3242 | struct btrfs_balance_args *bargs) |
| 3243 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3244 | chunk_type = chunk_to_extended(chunk_type) & |
| 3245 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3246 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3247 | if (bargs->profiles & chunk_type) |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3248 | return 0; |
| 3249 | |
| 3250 | return 1; |
| 3251 | } |
| 3252 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3253 | 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] | 3254 | struct btrfs_balance_args *bargs) |
| 3255 | { |
| 3256 | struct btrfs_block_group_cache *cache; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3257 | u64 chunk_used; |
| 3258 | u64 user_thresh_min; |
| 3259 | u64 user_thresh_max; |
| 3260 | int ret = 1; |
| 3261 | |
| 3262 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3263 | chunk_used = btrfs_block_group_used(&cache->item); |
| 3264 | |
| 3265 | if (bargs->usage_min == 0) |
| 3266 | user_thresh_min = 0; |
| 3267 | else |
| 3268 | user_thresh_min = div_factor_fine(cache->key.offset, |
| 3269 | bargs->usage_min); |
| 3270 | |
| 3271 | if (bargs->usage_max == 0) |
| 3272 | user_thresh_max = 1; |
| 3273 | else if (bargs->usage_max > 100) |
| 3274 | user_thresh_max = cache->key.offset; |
| 3275 | else |
| 3276 | user_thresh_max = div_factor_fine(cache->key.offset, |
| 3277 | bargs->usage_max); |
| 3278 | |
| 3279 | if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max) |
| 3280 | ret = 0; |
| 3281 | |
| 3282 | btrfs_put_block_group(cache); |
| 3283 | return ret; |
| 3284 | } |
| 3285 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3286 | static int chunk_usage_filter(struct btrfs_fs_info *fs_info, |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3287 | u64 chunk_offset, struct btrfs_balance_args *bargs) |
| 3288 | { |
| 3289 | struct btrfs_block_group_cache *cache; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3290 | u64 chunk_used, user_thresh; |
| 3291 | int ret = 1; |
| 3292 | |
| 3293 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3294 | chunk_used = btrfs_block_group_used(&cache->item); |
| 3295 | |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3296 | if (bargs->usage_min == 0) |
Ilya Dryomov | 3e39cea | 2013-02-12 16:28:59 +0000 | [diff] [blame] | 3297 | user_thresh = 1; |
Ilya Dryomov | a105bb8 | 2013-01-21 15:15:56 +0200 | [diff] [blame] | 3298 | else if (bargs->usage > 100) |
| 3299 | user_thresh = cache->key.offset; |
| 3300 | else |
| 3301 | user_thresh = div_factor_fine(cache->key.offset, |
| 3302 | bargs->usage); |
| 3303 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3304 | if (chunk_used < user_thresh) |
| 3305 | ret = 0; |
| 3306 | |
| 3307 | btrfs_put_block_group(cache); |
| 3308 | return ret; |
| 3309 | } |
| 3310 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3311 | static int chunk_devid_filter(struct extent_buffer *leaf, |
| 3312 | struct btrfs_chunk *chunk, |
| 3313 | struct btrfs_balance_args *bargs) |
| 3314 | { |
| 3315 | struct btrfs_stripe *stripe; |
| 3316 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3317 | int i; |
| 3318 | |
| 3319 | for (i = 0; i < num_stripes; i++) { |
| 3320 | stripe = btrfs_stripe_nr(chunk, i); |
| 3321 | if (btrfs_stripe_devid(leaf, stripe) == bargs->devid) |
| 3322 | return 0; |
| 3323 | } |
| 3324 | |
| 3325 | return 1; |
| 3326 | } |
| 3327 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3328 | /* [pstart, pend) */ |
| 3329 | static int chunk_drange_filter(struct extent_buffer *leaf, |
| 3330 | struct btrfs_chunk *chunk, |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3331 | struct btrfs_balance_args *bargs) |
| 3332 | { |
| 3333 | struct btrfs_stripe *stripe; |
| 3334 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3335 | u64 stripe_offset; |
| 3336 | u64 stripe_length; |
| 3337 | int factor; |
| 3338 | int i; |
| 3339 | |
| 3340 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID)) |
| 3341 | return 0; |
| 3342 | |
| 3343 | if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3344 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 3345 | factor = num_stripes / 2; |
| 3346 | } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) { |
| 3347 | factor = num_stripes - 1; |
| 3348 | } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) { |
| 3349 | factor = num_stripes - 2; |
| 3350 | } else { |
| 3351 | factor = num_stripes; |
| 3352 | } |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3353 | |
| 3354 | for (i = 0; i < num_stripes; i++) { |
| 3355 | stripe = btrfs_stripe_nr(chunk, i); |
| 3356 | if (btrfs_stripe_devid(leaf, stripe) != bargs->devid) |
| 3357 | continue; |
| 3358 | |
| 3359 | stripe_offset = btrfs_stripe_offset(leaf, stripe); |
| 3360 | stripe_length = btrfs_chunk_length(leaf, chunk); |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 3361 | stripe_length = div_u64(stripe_length, factor); |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3362 | |
| 3363 | if (stripe_offset < bargs->pend && |
| 3364 | stripe_offset + stripe_length > bargs->pstart) |
| 3365 | return 0; |
| 3366 | } |
| 3367 | |
| 3368 | return 1; |
| 3369 | } |
| 3370 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3371 | /* [vstart, vend) */ |
| 3372 | static int chunk_vrange_filter(struct extent_buffer *leaf, |
| 3373 | struct btrfs_chunk *chunk, |
| 3374 | u64 chunk_offset, |
| 3375 | struct btrfs_balance_args *bargs) |
| 3376 | { |
| 3377 | if (chunk_offset < bargs->vend && |
| 3378 | chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart) |
| 3379 | /* at least part of the chunk is inside this vrange */ |
| 3380 | return 0; |
| 3381 | |
| 3382 | return 1; |
| 3383 | } |
| 3384 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3385 | static int chunk_stripes_range_filter(struct extent_buffer *leaf, |
| 3386 | struct btrfs_chunk *chunk, |
| 3387 | struct btrfs_balance_args *bargs) |
| 3388 | { |
| 3389 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3390 | |
| 3391 | if (bargs->stripes_min <= num_stripes |
| 3392 | && num_stripes <= bargs->stripes_max) |
| 3393 | return 0; |
| 3394 | |
| 3395 | return 1; |
| 3396 | } |
| 3397 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3398 | static int chunk_soft_convert_filter(u64 chunk_type, |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3399 | struct btrfs_balance_args *bargs) |
| 3400 | { |
| 3401 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT)) |
| 3402 | return 0; |
| 3403 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3404 | chunk_type = chunk_to_extended(chunk_type) & |
| 3405 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3406 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3407 | if (bargs->target == chunk_type) |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3408 | return 1; |
| 3409 | |
| 3410 | return 0; |
| 3411 | } |
| 3412 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3413 | static int should_balance_chunk(struct btrfs_fs_info *fs_info, |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3414 | struct extent_buffer *leaf, |
| 3415 | struct btrfs_chunk *chunk, u64 chunk_offset) |
| 3416 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3417 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3418 | struct btrfs_balance_args *bargs = NULL; |
| 3419 | u64 chunk_type = btrfs_chunk_type(leaf, chunk); |
| 3420 | |
| 3421 | /* type filter */ |
| 3422 | if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) & |
| 3423 | (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) { |
| 3424 | return 0; |
| 3425 | } |
| 3426 | |
| 3427 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3428 | bargs = &bctl->data; |
| 3429 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3430 | bargs = &bctl->sys; |
| 3431 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3432 | bargs = &bctl->meta; |
| 3433 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3434 | /* profiles filter */ |
| 3435 | if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) && |
| 3436 | chunk_profiles_filter(chunk_type, bargs)) { |
| 3437 | return 0; |
| 3438 | } |
| 3439 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3440 | /* usage filter */ |
| 3441 | if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3442 | chunk_usage_filter(fs_info, chunk_offset, bargs)) { |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3443 | return 0; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3444 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3445 | chunk_usage_range_filter(fs_info, chunk_offset, bargs)) { |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3446 | return 0; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3447 | } |
| 3448 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3449 | /* devid filter */ |
| 3450 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) && |
| 3451 | chunk_devid_filter(leaf, chunk, bargs)) { |
| 3452 | return 0; |
| 3453 | } |
| 3454 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3455 | /* drange filter, makes sense only with devid filter */ |
| 3456 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) && |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 3457 | chunk_drange_filter(leaf, chunk, bargs)) { |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3458 | return 0; |
| 3459 | } |
| 3460 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3461 | /* vrange filter */ |
| 3462 | if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) && |
| 3463 | chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) { |
| 3464 | return 0; |
| 3465 | } |
| 3466 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3467 | /* stripes filter */ |
| 3468 | if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) && |
| 3469 | chunk_stripes_range_filter(leaf, chunk, bargs)) { |
| 3470 | return 0; |
| 3471 | } |
| 3472 | |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3473 | /* soft profile changing mode */ |
| 3474 | if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) && |
| 3475 | chunk_soft_convert_filter(chunk_type, bargs)) { |
| 3476 | return 0; |
| 3477 | } |
| 3478 | |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3479 | /* |
| 3480 | * limited by count, must be the last filter |
| 3481 | */ |
| 3482 | if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) { |
| 3483 | if (bargs->limit == 0) |
| 3484 | return 0; |
| 3485 | else |
| 3486 | bargs->limit--; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3487 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) { |
| 3488 | /* |
| 3489 | * Same logic as the 'limit' filter; the minimum cannot be |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 3490 | * determined here because we do not have the global information |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3491 | * about the count of all chunks that satisfy the filters. |
| 3492 | */ |
| 3493 | if (bargs->limit_max == 0) |
| 3494 | return 0; |
| 3495 | else |
| 3496 | bargs->limit_max--; |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3497 | } |
| 3498 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3499 | return 1; |
| 3500 | } |
| 3501 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3502 | static int __btrfs_balance(struct btrfs_fs_info *fs_info) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3503 | { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3504 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3505 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
| 3506 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 3507 | struct list_head *devices; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3508 | struct btrfs_device *device; |
| 3509 | u64 old_size; |
| 3510 | u64 size_to_free; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3511 | u64 chunk_type; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3512 | struct btrfs_chunk *chunk; |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3513 | struct btrfs_path *path = NULL; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3514 | struct btrfs_key key; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3515 | struct btrfs_key found_key; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3516 | struct btrfs_trans_handle *trans; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3517 | struct extent_buffer *leaf; |
| 3518 | int slot; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3519 | int ret; |
| 3520 | int enospc_errors = 0; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3521 | bool counting = true; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3522 | /* 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] | 3523 | u64 limit_data = bctl->data.limit; |
| 3524 | u64 limit_meta = bctl->meta.limit; |
| 3525 | u64 limit_sys = bctl->sys.limit; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3526 | u32 count_data = 0; |
| 3527 | u32 count_meta = 0; |
| 3528 | u32 count_sys = 0; |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3529 | int chunk_reserved = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3530 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3531 | /* step one make some room on all the devices */ |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3532 | devices = &fs_info->fs_devices->devices; |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 3533 | list_for_each_entry(device, devices, dev_list) { |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 3534 | old_size = btrfs_device_get_total_bytes(device); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3535 | size_to_free = div_factor(old_size, 1); |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3536 | size_to_free = min_t(u64, size_to_free, SZ_1M); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 3537 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) || |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 3538 | btrfs_device_get_total_bytes(device) - |
| 3539 | btrfs_device_get_bytes_used(device) > size_to_free || |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 3540 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3541 | continue; |
| 3542 | |
| 3543 | ret = btrfs_shrink_device(device, old_size - size_to_free); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3544 | if (ret == -ENOSPC) |
| 3545 | break; |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3546 | if (ret) { |
| 3547 | /* btrfs_shrink_device never returns ret > 0 */ |
| 3548 | WARN_ON(ret > 0); |
| 3549 | goto error; |
| 3550 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3551 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3552 | trans = btrfs_start_transaction(dev_root, 0); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3553 | if (IS_ERR(trans)) { |
| 3554 | ret = PTR_ERR(trans); |
| 3555 | btrfs_info_in_rcu(fs_info, |
| 3556 | "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu", |
| 3557 | rcu_str_deref(device->name), ret, |
| 3558 | old_size, old_size - size_to_free); |
| 3559 | goto error; |
| 3560 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3561 | |
| 3562 | ret = btrfs_grow_device(trans, device, old_size); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3563 | if (ret) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3564 | btrfs_end_transaction(trans); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3565 | /* btrfs_grow_device never returns ret > 0 */ |
| 3566 | WARN_ON(ret > 0); |
| 3567 | btrfs_info_in_rcu(fs_info, |
| 3568 | "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu", |
| 3569 | rcu_str_deref(device->name), ret, |
| 3570 | old_size, old_size - size_to_free); |
| 3571 | goto error; |
| 3572 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3573 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3574 | btrfs_end_transaction(trans); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3575 | } |
| 3576 | |
| 3577 | /* step two, relocate all the chunks */ |
| 3578 | path = btrfs_alloc_path(); |
Mark Fasheh | 17e9f79 | 2011-07-12 11:10:23 -0700 | [diff] [blame] | 3579 | if (!path) { |
| 3580 | ret = -ENOMEM; |
| 3581 | goto error; |
| 3582 | } |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3583 | |
| 3584 | /* zero out stat counters */ |
| 3585 | spin_lock(&fs_info->balance_lock); |
| 3586 | memset(&bctl->stat, 0, sizeof(bctl->stat)); |
| 3587 | spin_unlock(&fs_info->balance_lock); |
| 3588 | again: |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3589 | if (!counting) { |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3590 | /* |
| 3591 | * The single value limit and min/max limits use the same bytes |
| 3592 | * in the |
| 3593 | */ |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3594 | bctl->data.limit = limit_data; |
| 3595 | bctl->meta.limit = limit_meta; |
| 3596 | bctl->sys.limit = limit_sys; |
| 3597 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3598 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 3599 | key.offset = (u64)-1; |
| 3600 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 3601 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3602 | while (1) { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3603 | if ((!counting && atomic_read(&fs_info->balance_pause_req)) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3604 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3605 | ret = -ECANCELED; |
| 3606 | goto error; |
| 3607 | } |
| 3608 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3609 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3610 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3611 | if (ret < 0) { |
| 3612 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3613 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3614 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3615 | |
| 3616 | /* |
| 3617 | * this shouldn't happen, it means the last relocate |
| 3618 | * failed |
| 3619 | */ |
| 3620 | if (ret == 0) |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3621 | BUG(); /* FIXME break ? */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3622 | |
| 3623 | ret = btrfs_previous_item(chunk_root, path, 0, |
| 3624 | BTRFS_CHUNK_ITEM_KEY); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3625 | if (ret) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3626 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3627 | ret = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3628 | break; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3629 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3630 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3631 | leaf = path->nodes[0]; |
| 3632 | slot = path->slots[0]; |
| 3633 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 3634 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3635 | if (found_key.objectid != key.objectid) { |
| 3636 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3637 | break; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3638 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3639 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3640 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3641 | chunk_type = btrfs_chunk_type(leaf, chunk); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3642 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3643 | if (!counting) { |
| 3644 | spin_lock(&fs_info->balance_lock); |
| 3645 | bctl->stat.considered++; |
| 3646 | spin_unlock(&fs_info->balance_lock); |
| 3647 | } |
| 3648 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3649 | ret = should_balance_chunk(fs_info, leaf, chunk, |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3650 | found_key.offset); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3651 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3652 | btrfs_release_path(path); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3653 | if (!ret) { |
| 3654 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3655 | goto loop; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3656 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3657 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3658 | if (counting) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3659 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3660 | spin_lock(&fs_info->balance_lock); |
| 3661 | bctl->stat.expected++; |
| 3662 | spin_unlock(&fs_info->balance_lock); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3663 | |
| 3664 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3665 | count_data++; |
| 3666 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3667 | count_sys++; |
| 3668 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3669 | count_meta++; |
| 3670 | |
| 3671 | goto loop; |
| 3672 | } |
| 3673 | |
| 3674 | /* |
| 3675 | * Apply limit_min filter, no need to check if the LIMITS |
| 3676 | * filter is used, limit_min is 0 by default |
| 3677 | */ |
| 3678 | if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) && |
| 3679 | count_data < bctl->data.limit_min) |
| 3680 | || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) && |
| 3681 | count_meta < bctl->meta.limit_min) |
| 3682 | || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) && |
| 3683 | count_sys < bctl->sys.limit_min)) { |
| 3684 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3685 | goto loop; |
| 3686 | } |
| 3687 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3688 | if (!chunk_reserved) { |
| 3689 | /* |
| 3690 | * We may be relocating the only data chunk we have, |
| 3691 | * which could potentially end up with losing data's |
| 3692 | * raid profile, so lets allocate an empty one in |
| 3693 | * advance. |
| 3694 | */ |
| 3695 | ret = btrfs_may_alloc_data_chunk(fs_info, |
| 3696 | found_key.offset); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3697 | if (ret < 0) { |
| 3698 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
| 3699 | goto error; |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3700 | } else if (ret == 1) { |
| 3701 | chunk_reserved = 1; |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3702 | } |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3703 | } |
| 3704 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3705 | ret = btrfs_relocate_chunk(fs_info, found_key.offset); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3706 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 508794e | 2011-07-02 21:24:41 +0000 | [diff] [blame] | 3707 | if (ret && ret != -ENOSPC) |
| 3708 | goto error; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3709 | if (ret == -ENOSPC) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3710 | enospc_errors++; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3711 | } else { |
| 3712 | spin_lock(&fs_info->balance_lock); |
| 3713 | bctl->stat.completed++; |
| 3714 | spin_unlock(&fs_info->balance_lock); |
| 3715 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3716 | loop: |
Ilya Dryomov | 795a332 | 2013-08-27 13:50:44 +0300 | [diff] [blame] | 3717 | if (found_key.offset == 0) |
| 3718 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3719 | key.offset = found_key.offset - 1; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3720 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3721 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3722 | if (counting) { |
| 3723 | btrfs_release_path(path); |
| 3724 | counting = false; |
| 3725 | goto again; |
| 3726 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3727 | error: |
| 3728 | btrfs_free_path(path); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3729 | if (enospc_errors) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3730 | btrfs_info(fs_info, "%d enospc errors during balance", |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3731 | enospc_errors); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3732 | if (!ret) |
| 3733 | ret = -ENOSPC; |
| 3734 | } |
| 3735 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3736 | return ret; |
| 3737 | } |
| 3738 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3739 | /** |
| 3740 | * alloc_profile_is_valid - see if a given profile is valid and reduced |
| 3741 | * @flags: profile to validate |
| 3742 | * @extended: if true @flags is treated as an extended profile |
| 3743 | */ |
| 3744 | static int alloc_profile_is_valid(u64 flags, int extended) |
| 3745 | { |
| 3746 | u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK : |
| 3747 | BTRFS_BLOCK_GROUP_PROFILE_MASK); |
| 3748 | |
| 3749 | flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK; |
| 3750 | |
| 3751 | /* 1) check that all other bits are zeroed */ |
| 3752 | if (flags & ~mask) |
| 3753 | return 0; |
| 3754 | |
| 3755 | /* 2) see if profile is reduced */ |
| 3756 | if (flags == 0) |
| 3757 | return !extended; /* "0" is valid for usual profiles */ |
| 3758 | |
| 3759 | /* true if exactly one bit set */ |
| 3760 | return (flags & (flags - 1)) == 0; |
| 3761 | } |
| 3762 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3763 | static inline int balance_need_close(struct btrfs_fs_info *fs_info) |
| 3764 | { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3765 | /* cancel requested || normal exit path */ |
| 3766 | return atomic_read(&fs_info->balance_cancel_req) || |
| 3767 | (atomic_read(&fs_info->balance_pause_req) == 0 && |
| 3768 | atomic_read(&fs_info->balance_cancel_req) == 0); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3769 | } |
| 3770 | |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3771 | /* Non-zero return value signifies invalidity */ |
| 3772 | static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg, |
| 3773 | u64 allowed) |
| 3774 | { |
| 3775 | return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3776 | (!alloc_profile_is_valid(bctl_arg->target, 1) || |
| 3777 | (bctl_arg->target & ~allowed))); |
| 3778 | } |
| 3779 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3780 | /* |
David Sterba | dccdb07 | 2018-03-21 00:20:05 +0100 | [diff] [blame] | 3781 | * Should be called with balance mutexe held |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3782 | */ |
| 3783 | int btrfs_balance(struct btrfs_balance_control *bctl, |
| 3784 | struct btrfs_ioctl_balance_args *bargs) |
| 3785 | { |
| 3786 | struct btrfs_fs_info *fs_info = bctl->fs_info; |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 3787 | u64 meta_target, data_target; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3788 | u64 allowed; |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3789 | int mixed = 0; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3790 | int ret; |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3791 | u64 num_devices; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3792 | unsigned seq; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3793 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3794 | if (btrfs_fs_closing(fs_info) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3795 | atomic_read(&fs_info->balance_pause_req) || |
| 3796 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3797 | ret = -EINVAL; |
| 3798 | goto out; |
| 3799 | } |
| 3800 | |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3801 | allowed = btrfs_super_incompat_flags(fs_info->super_copy); |
| 3802 | if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 3803 | mixed = 1; |
| 3804 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3805 | /* |
| 3806 | * In case of mixed groups both data and meta should be picked, |
| 3807 | * and identical options should be given for both of them. |
| 3808 | */ |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3809 | allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA; |
| 3810 | if (mixed && (bctl->flags & allowed)) { |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3811 | if (!(bctl->flags & BTRFS_BALANCE_DATA) || |
| 3812 | !(bctl->flags & BTRFS_BALANCE_METADATA) || |
| 3813 | memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3814 | btrfs_err(fs_info, |
| 3815 | "with mixed groups data and metadata balance options must be the same"); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3816 | ret = -EINVAL; |
| 3817 | goto out; |
| 3818 | } |
| 3819 | } |
| 3820 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3821 | num_devices = fs_info->fs_devices->num_devices; |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 3822 | btrfs_dev_replace_read_lock(&fs_info->dev_replace); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3823 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) { |
| 3824 | BUG_ON(num_devices < 1); |
| 3825 | num_devices--; |
| 3826 | } |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 3827 | btrfs_dev_replace_read_unlock(&fs_info->dev_replace); |
Austin S. Hemmelgarn | 88be159 | 2016-03-23 14:22:59 -0400 | [diff] [blame] | 3828 | allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP; |
| 3829 | if (num_devices > 1) |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3830 | allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1); |
Andreas Philipp | 8250dab | 2013-05-11 11:13:03 +0000 | [diff] [blame] | 3831 | if (num_devices > 2) |
| 3832 | allowed |= BTRFS_BLOCK_GROUP_RAID5; |
| 3833 | if (num_devices > 3) |
| 3834 | allowed |= (BTRFS_BLOCK_GROUP_RAID10 | |
| 3835 | BTRFS_BLOCK_GROUP_RAID6); |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3836 | if (validate_convert_profile(&bctl->data, allowed)) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3837 | btrfs_err(fs_info, |
| 3838 | "unable to start balance with target data profile %llu", |
| 3839 | bctl->data.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3840 | ret = -EINVAL; |
| 3841 | goto out; |
| 3842 | } |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3843 | if (validate_convert_profile(&bctl->meta, allowed)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3844 | btrfs_err(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3845 | "unable to start balance with target metadata profile %llu", |
| 3846 | bctl->meta.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3847 | ret = -EINVAL; |
| 3848 | goto out; |
| 3849 | } |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3850 | if (validate_convert_profile(&bctl->sys, allowed)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3851 | btrfs_err(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3852 | "unable to start balance with target system profile %llu", |
| 3853 | bctl->sys.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3854 | ret = -EINVAL; |
| 3855 | goto out; |
| 3856 | } |
| 3857 | |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3858 | /* allow to reduce meta or sys integrity only if force set */ |
| 3859 | allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3860 | BTRFS_BLOCK_GROUP_RAID10 | |
| 3861 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3862 | BTRFS_BLOCK_GROUP_RAID6; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3863 | do { |
| 3864 | seq = read_seqbegin(&fs_info->profiles_lock); |
| 3865 | |
| 3866 | if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3867 | (fs_info->avail_system_alloc_bits & allowed) && |
| 3868 | !(bctl->sys.target & allowed)) || |
| 3869 | ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3870 | (fs_info->avail_metadata_alloc_bits & allowed) && |
| 3871 | !(bctl->meta.target & allowed))) { |
| 3872 | if (bctl->flags & BTRFS_BALANCE_FORCE) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3873 | btrfs_info(fs_info, |
| 3874 | "force reducing metadata integrity"); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3875 | } else { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3876 | btrfs_err(fs_info, |
| 3877 | "balance will reduce metadata integrity, use force if you want this"); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3878 | ret = -EINVAL; |
| 3879 | goto out; |
| 3880 | } |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3881 | } |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3882 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3883 | |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 3884 | /* if we're not converting, the target field is uninitialized */ |
| 3885 | meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ? |
| 3886 | bctl->meta.target : fs_info->avail_metadata_alloc_bits; |
| 3887 | data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ? |
| 3888 | bctl->data.target : fs_info->avail_data_alloc_bits; |
| 3889 | if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) < |
| 3890 | btrfs_get_num_tolerated_disk_barrier_failures(data_target)) { |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 3891 | btrfs_warn(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3892 | "metadata profile 0x%llx has lower redundancy than data profile 0x%llx", |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 3893 | meta_target, data_target); |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 3894 | } |
| 3895 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3896 | ret = insert_balance_item(fs_info, bctl); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3897 | if (ret && ret != -EEXIST) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3898 | goto out; |
| 3899 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3900 | if (!(bctl->flags & BTRFS_BALANCE_RESUME)) { |
| 3901 | BUG_ON(ret == -EEXIST); |
| 3902 | set_balance_control(bctl); |
| 3903 | } else { |
| 3904 | BUG_ON(ret != -EEXIST); |
| 3905 | spin_lock(&fs_info->balance_lock); |
| 3906 | update_balance_args(bctl); |
| 3907 | spin_unlock(&fs_info->balance_lock); |
| 3908 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3909 | |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 3910 | ASSERT(!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
| 3911 | set_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3912 | mutex_unlock(&fs_info->balance_mutex); |
| 3913 | |
| 3914 | ret = __btrfs_balance(fs_info); |
| 3915 | |
| 3916 | mutex_lock(&fs_info->balance_mutex); |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 3917 | clear_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3918 | |
| 3919 | if (bargs) { |
| 3920 | memset(bargs, 0, sizeof(*bargs)); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3921 | update_ioctl_balance_args(fs_info, 0, bargs); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3922 | } |
| 3923 | |
Ilya Dryomov | 3a01aa7 | 2013-03-06 01:57:55 -0700 | [diff] [blame] | 3924 | if ((ret && ret != -ECANCELED && ret != -ENOSPC) || |
| 3925 | balance_need_close(fs_info)) { |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 3926 | reset_balance_state(fs_info); |
David Sterba | a17c95d | 2018-03-20 17:28:05 +0100 | [diff] [blame] | 3927 | clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags); |
Ilya Dryomov | 3a01aa7 | 2013-03-06 01:57:55 -0700 | [diff] [blame] | 3928 | } |
| 3929 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3930 | wake_up(&fs_info->balance_wait_q); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3931 | |
| 3932 | return ret; |
| 3933 | out: |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3934 | if (bctl->flags & BTRFS_BALANCE_RESUME) |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 3935 | reset_balance_state(fs_info); |
David Sterba | a17c95d | 2018-03-20 17:28:05 +0100 | [diff] [blame] | 3936 | else |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3937 | kfree(bctl); |
David Sterba | a17c95d | 2018-03-20 17:28:05 +0100 | [diff] [blame] | 3938 | clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags); |
| 3939 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3940 | return ret; |
| 3941 | } |
| 3942 | |
| 3943 | static int balance_kthread(void *data) |
| 3944 | { |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3945 | struct btrfs_fs_info *fs_info = data; |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3946 | int ret = 0; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3947 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3948 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3949 | if (fs_info->balance_ctl) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3950 | btrfs_info(fs_info, "continuing balance"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3951 | ret = btrfs_balance(fs_info->balance_ctl, NULL); |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3952 | } |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3953 | mutex_unlock(&fs_info->balance_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3954 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3955 | return ret; |
| 3956 | } |
| 3957 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3958 | int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info) |
| 3959 | { |
| 3960 | struct task_struct *tsk; |
| 3961 | |
| 3962 | spin_lock(&fs_info->balance_lock); |
| 3963 | if (!fs_info->balance_ctl) { |
| 3964 | spin_unlock(&fs_info->balance_lock); |
| 3965 | return 0; |
| 3966 | } |
| 3967 | spin_unlock(&fs_info->balance_lock); |
| 3968 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 3969 | if (btrfs_test_opt(fs_info, SKIP_BALANCE)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3970 | btrfs_info(fs_info, "force skipping balance"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3971 | return 0; |
| 3972 | } |
| 3973 | |
Anand Jain | 02ee654 | 2018-05-17 15:16:51 +0800 | [diff] [blame] | 3974 | /* |
| 3975 | * A ro->rw remount sequence should continue with the paused balance |
| 3976 | * regardless of who pauses it, system or the user as of now, so set |
| 3977 | * the resume flag. |
| 3978 | */ |
| 3979 | spin_lock(&fs_info->balance_lock); |
| 3980 | fs_info->balance_ctl->flags |= BTRFS_BALANCE_RESUME; |
| 3981 | spin_unlock(&fs_info->balance_lock); |
| 3982 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3983 | tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance"); |
Sachin Kamat | cd63397 | 2013-07-15 16:52:18 +0530 | [diff] [blame] | 3984 | return PTR_ERR_OR_ZERO(tsk); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3985 | } |
| 3986 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3987 | int btrfs_recover_balance(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3988 | { |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3989 | struct btrfs_balance_control *bctl; |
| 3990 | struct btrfs_balance_item *item; |
| 3991 | struct btrfs_disk_balance_args disk_bargs; |
| 3992 | struct btrfs_path *path; |
| 3993 | struct extent_buffer *leaf; |
| 3994 | struct btrfs_key key; |
| 3995 | int ret; |
| 3996 | |
| 3997 | path = btrfs_alloc_path(); |
| 3998 | if (!path) |
| 3999 | return -ENOMEM; |
| 4000 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4001 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 4002 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4003 | key.offset = 0; |
| 4004 | |
| 4005 | ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0); |
| 4006 | if (ret < 0) |
| 4007 | goto out; |
| 4008 | if (ret > 0) { /* ret = -ENOENT; */ |
| 4009 | ret = 0; |
| 4010 | goto out; |
| 4011 | } |
| 4012 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4013 | bctl = kzalloc(sizeof(*bctl), GFP_NOFS); |
| 4014 | if (!bctl) { |
| 4015 | ret = -ENOMEM; |
| 4016 | goto out; |
| 4017 | } |
| 4018 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4019 | leaf = path->nodes[0]; |
| 4020 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 4021 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4022 | bctl->fs_info = fs_info; |
| 4023 | bctl->flags = btrfs_balance_flags(leaf, item); |
| 4024 | bctl->flags |= BTRFS_BALANCE_RESUME; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4025 | |
| 4026 | btrfs_balance_data(leaf, item, &disk_bargs); |
| 4027 | btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs); |
| 4028 | btrfs_balance_meta(leaf, item, &disk_bargs); |
| 4029 | btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs); |
| 4030 | btrfs_balance_sys(leaf, item, &disk_bargs); |
| 4031 | btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs); |
| 4032 | |
David Sterba | eee95e3 | 2018-03-20 20:07:58 +0100 | [diff] [blame] | 4033 | /* |
| 4034 | * This should never happen, as the paused balance state is recovered |
| 4035 | * during mount without any chance of other exclusive ops to collide. |
| 4036 | * |
| 4037 | * This gives the exclusive op status to balance and keeps in paused |
| 4038 | * state until user intervention (cancel or umount). If the ownership |
| 4039 | * cannot be assigned, show a message but do not fail. The balance |
| 4040 | * is in a paused state and must have fs_info::balance_ctl properly |
| 4041 | * set up. |
| 4042 | */ |
| 4043 | if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) |
| 4044 | btrfs_warn(fs_info, |
| 4045 | "cannot set exclusive op status to balance, resume manually"); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 4046 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4047 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4048 | set_balance_control(bctl); |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4049 | mutex_unlock(&fs_info->balance_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4050 | out: |
| 4051 | btrfs_free_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4052 | return ret; |
| 4053 | } |
| 4054 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4055 | int btrfs_pause_balance(struct btrfs_fs_info *fs_info) |
| 4056 | { |
| 4057 | int ret = 0; |
| 4058 | |
| 4059 | mutex_lock(&fs_info->balance_mutex); |
| 4060 | if (!fs_info->balance_ctl) { |
| 4061 | mutex_unlock(&fs_info->balance_mutex); |
| 4062 | return -ENOTCONN; |
| 4063 | } |
| 4064 | |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4065 | if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) { |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4066 | atomic_inc(&fs_info->balance_pause_req); |
| 4067 | mutex_unlock(&fs_info->balance_mutex); |
| 4068 | |
| 4069 | wait_event(fs_info->balance_wait_q, |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4070 | !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4071 | |
| 4072 | mutex_lock(&fs_info->balance_mutex); |
| 4073 | /* we are good with balance_ctl ripped off from under us */ |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4074 | BUG_ON(test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4075 | atomic_dec(&fs_info->balance_pause_req); |
| 4076 | } else { |
| 4077 | ret = -ENOTCONN; |
| 4078 | } |
| 4079 | |
| 4080 | mutex_unlock(&fs_info->balance_mutex); |
| 4081 | return ret; |
| 4082 | } |
| 4083 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4084 | int btrfs_cancel_balance(struct btrfs_fs_info *fs_info) |
| 4085 | { |
| 4086 | mutex_lock(&fs_info->balance_mutex); |
| 4087 | if (!fs_info->balance_ctl) { |
| 4088 | mutex_unlock(&fs_info->balance_mutex); |
| 4089 | return -ENOTCONN; |
| 4090 | } |
| 4091 | |
David Sterba | cf7d20f | 2018-03-21 01:45:32 +0100 | [diff] [blame^] | 4092 | /* |
| 4093 | * A paused balance with the item stored on disk can be resumed at |
| 4094 | * mount time if the mount is read-write. Otherwise it's still paused |
| 4095 | * and we must not allow cancelling as it deletes the item. |
| 4096 | */ |
| 4097 | if (sb_rdonly(fs_info->sb)) { |
| 4098 | mutex_unlock(&fs_info->balance_mutex); |
| 4099 | return -EROFS; |
| 4100 | } |
| 4101 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4102 | atomic_inc(&fs_info->balance_cancel_req); |
| 4103 | /* |
| 4104 | * if we are running just wait and return, balance item is |
| 4105 | * deleted in btrfs_balance in this case |
| 4106 | */ |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4107 | if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4108 | mutex_unlock(&fs_info->balance_mutex); |
| 4109 | wait_event(fs_info->balance_wait_q, |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4110 | !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4111 | mutex_lock(&fs_info->balance_mutex); |
| 4112 | } else { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4113 | mutex_unlock(&fs_info->balance_mutex); |
David Sterba | dccdb07 | 2018-03-21 00:20:05 +0100 | [diff] [blame] | 4114 | /* |
| 4115 | * Lock released to allow other waiters to continue, we'll |
| 4116 | * reexamine the status again. |
| 4117 | */ |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4118 | mutex_lock(&fs_info->balance_mutex); |
| 4119 | |
David Sterba | a17c95d | 2018-03-20 17:28:05 +0100 | [diff] [blame] | 4120 | if (fs_info->balance_ctl) { |
David Sterba | 149196a | 2018-03-20 20:23:09 +0100 | [diff] [blame] | 4121 | reset_balance_state(fs_info); |
David Sterba | a17c95d | 2018-03-20 17:28:05 +0100 | [diff] [blame] | 4122 | clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags); |
| 4123 | } |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4124 | } |
| 4125 | |
David Sterba | 3009a62 | 2018-03-21 01:31:04 +0100 | [diff] [blame] | 4126 | BUG_ON(fs_info->balance_ctl || |
| 4127 | test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)); |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4128 | atomic_dec(&fs_info->balance_cancel_req); |
| 4129 | mutex_unlock(&fs_info->balance_mutex); |
| 4130 | return 0; |
| 4131 | } |
| 4132 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4133 | static int btrfs_uuid_scan_kthread(void *data) |
| 4134 | { |
| 4135 | struct btrfs_fs_info *fs_info = data; |
| 4136 | struct btrfs_root *root = fs_info->tree_root; |
| 4137 | struct btrfs_key key; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4138 | struct btrfs_path *path = NULL; |
| 4139 | int ret = 0; |
| 4140 | struct extent_buffer *eb; |
| 4141 | int slot; |
| 4142 | struct btrfs_root_item root_item; |
| 4143 | u32 item_size; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4144 | struct btrfs_trans_handle *trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4145 | |
| 4146 | path = btrfs_alloc_path(); |
| 4147 | if (!path) { |
| 4148 | ret = -ENOMEM; |
| 4149 | goto out; |
| 4150 | } |
| 4151 | |
| 4152 | key.objectid = 0; |
| 4153 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4154 | key.offset = 0; |
| 4155 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4156 | while (1) { |
Anand Jain | 7c829b7 | 2018-03-07 17:29:18 +0800 | [diff] [blame] | 4157 | ret = btrfs_search_forward(root, &key, path, |
| 4158 | BTRFS_OLDEST_GENERATION); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4159 | if (ret) { |
| 4160 | if (ret > 0) |
| 4161 | ret = 0; |
| 4162 | break; |
| 4163 | } |
| 4164 | |
| 4165 | if (key.type != BTRFS_ROOT_ITEM_KEY || |
| 4166 | (key.objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 4167 | key.objectid != BTRFS_FS_TREE_OBJECTID) || |
| 4168 | key.objectid > BTRFS_LAST_FREE_OBJECTID) |
| 4169 | goto skip; |
| 4170 | |
| 4171 | eb = path->nodes[0]; |
| 4172 | slot = path->slots[0]; |
| 4173 | item_size = btrfs_item_size_nr(eb, slot); |
| 4174 | if (item_size < sizeof(root_item)) |
| 4175 | goto skip; |
| 4176 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4177 | read_extent_buffer(eb, &root_item, |
| 4178 | btrfs_item_ptr_offset(eb, slot), |
| 4179 | (int)sizeof(root_item)); |
| 4180 | if (btrfs_root_refs(&root_item) == 0) |
| 4181 | goto skip; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4182 | |
| 4183 | if (!btrfs_is_empty_uuid(root_item.uuid) || |
| 4184 | !btrfs_is_empty_uuid(root_item.received_uuid)) { |
| 4185 | if (trans) |
| 4186 | goto update_tree; |
| 4187 | |
| 4188 | btrfs_release_path(path); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4189 | /* |
| 4190 | * 1 - subvol uuid item |
| 4191 | * 1 - received_subvol uuid item |
| 4192 | */ |
| 4193 | trans = btrfs_start_transaction(fs_info->uuid_root, 2); |
| 4194 | if (IS_ERR(trans)) { |
| 4195 | ret = PTR_ERR(trans); |
| 4196 | break; |
| 4197 | } |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4198 | continue; |
| 4199 | } else { |
| 4200 | goto skip; |
| 4201 | } |
| 4202 | update_tree: |
| 4203 | if (!btrfs_is_empty_uuid(root_item.uuid)) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4204 | ret = btrfs_uuid_tree_add(trans, fs_info, |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4205 | root_item.uuid, |
| 4206 | BTRFS_UUID_KEY_SUBVOL, |
| 4207 | key.objectid); |
| 4208 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4209 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4210 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4211 | break; |
| 4212 | } |
| 4213 | } |
| 4214 | |
| 4215 | if (!btrfs_is_empty_uuid(root_item.received_uuid)) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4216 | ret = btrfs_uuid_tree_add(trans, fs_info, |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4217 | root_item.received_uuid, |
| 4218 | BTRFS_UUID_KEY_RECEIVED_SUBVOL, |
| 4219 | key.objectid); |
| 4220 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4221 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4222 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4223 | break; |
| 4224 | } |
| 4225 | } |
| 4226 | |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4227 | skip: |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4228 | if (trans) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4229 | ret = btrfs_end_transaction(trans); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4230 | trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4231 | if (ret) |
| 4232 | break; |
| 4233 | } |
| 4234 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4235 | btrfs_release_path(path); |
| 4236 | if (key.offset < (u64)-1) { |
| 4237 | key.offset++; |
| 4238 | } else if (key.type < BTRFS_ROOT_ITEM_KEY) { |
| 4239 | key.offset = 0; |
| 4240 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4241 | } else if (key.objectid < (u64)-1) { |
| 4242 | key.offset = 0; |
| 4243 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4244 | key.objectid++; |
| 4245 | } else { |
| 4246 | break; |
| 4247 | } |
| 4248 | cond_resched(); |
| 4249 | } |
| 4250 | |
| 4251 | out: |
| 4252 | btrfs_free_path(path); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4253 | if (trans && !IS_ERR(trans)) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4254 | btrfs_end_transaction(trans); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4255 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4256 | btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4257 | else |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 4258 | set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4259 | up(&fs_info->uuid_tree_rescan_sem); |
| 4260 | return 0; |
| 4261 | } |
| 4262 | |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4263 | /* |
| 4264 | * Callback for btrfs_uuid_tree_iterate(). |
| 4265 | * returns: |
| 4266 | * 0 check succeeded, the entry is not outdated. |
Adam Buchbinder | bb7ab3b | 2016-03-04 11:23:12 -0800 | [diff] [blame] | 4267 | * < 0 if an error occurred. |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4268 | * > 0 if the check failed, which means the caller shall remove the entry. |
| 4269 | */ |
| 4270 | static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info, |
| 4271 | u8 *uuid, u8 type, u64 subid) |
| 4272 | { |
| 4273 | struct btrfs_key key; |
| 4274 | int ret = 0; |
| 4275 | struct btrfs_root *subvol_root; |
| 4276 | |
| 4277 | if (type != BTRFS_UUID_KEY_SUBVOL && |
| 4278 | type != BTRFS_UUID_KEY_RECEIVED_SUBVOL) |
| 4279 | goto out; |
| 4280 | |
| 4281 | key.objectid = subid; |
| 4282 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4283 | key.offset = (u64)-1; |
| 4284 | subvol_root = btrfs_read_fs_root_no_name(fs_info, &key); |
| 4285 | if (IS_ERR(subvol_root)) { |
| 4286 | ret = PTR_ERR(subvol_root); |
| 4287 | if (ret == -ENOENT) |
| 4288 | ret = 1; |
| 4289 | goto out; |
| 4290 | } |
| 4291 | |
| 4292 | switch (type) { |
| 4293 | case BTRFS_UUID_KEY_SUBVOL: |
| 4294 | if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE)) |
| 4295 | ret = 1; |
| 4296 | break; |
| 4297 | case BTRFS_UUID_KEY_RECEIVED_SUBVOL: |
| 4298 | if (memcmp(uuid, subvol_root->root_item.received_uuid, |
| 4299 | BTRFS_UUID_SIZE)) |
| 4300 | ret = 1; |
| 4301 | break; |
| 4302 | } |
| 4303 | |
| 4304 | out: |
| 4305 | return ret; |
| 4306 | } |
| 4307 | |
| 4308 | static int btrfs_uuid_rescan_kthread(void *data) |
| 4309 | { |
| 4310 | struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data; |
| 4311 | int ret; |
| 4312 | |
| 4313 | /* |
| 4314 | * 1st step is to iterate through the existing UUID tree and |
| 4315 | * to delete all entries that contain outdated data. |
| 4316 | * 2nd step is to add all missing entries to the UUID tree. |
| 4317 | */ |
| 4318 | ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry); |
| 4319 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4320 | btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4321 | up(&fs_info->uuid_tree_rescan_sem); |
| 4322 | return ret; |
| 4323 | } |
| 4324 | return btrfs_uuid_scan_kthread(data); |
| 4325 | } |
| 4326 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4327 | int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4328 | { |
| 4329 | struct btrfs_trans_handle *trans; |
| 4330 | struct btrfs_root *tree_root = fs_info->tree_root; |
| 4331 | struct btrfs_root *uuid_root; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4332 | struct task_struct *task; |
| 4333 | int ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4334 | |
| 4335 | /* |
| 4336 | * 1 - root node |
| 4337 | * 1 - root item |
| 4338 | */ |
| 4339 | trans = btrfs_start_transaction(tree_root, 2); |
| 4340 | if (IS_ERR(trans)) |
| 4341 | return PTR_ERR(trans); |
| 4342 | |
| 4343 | uuid_root = btrfs_create_tree(trans, fs_info, |
| 4344 | BTRFS_UUID_TREE_OBJECTID); |
| 4345 | if (IS_ERR(uuid_root)) { |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4346 | ret = PTR_ERR(uuid_root); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 4347 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4348 | btrfs_end_transaction(trans); |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4349 | return ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4350 | } |
| 4351 | |
| 4352 | fs_info->uuid_root = uuid_root; |
| 4353 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4354 | ret = btrfs_commit_transaction(trans); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4355 | if (ret) |
| 4356 | return ret; |
| 4357 | |
| 4358 | down(&fs_info->uuid_tree_rescan_sem); |
| 4359 | task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid"); |
| 4360 | if (IS_ERR(task)) { |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4361 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4362 | btrfs_warn(fs_info, "failed to start uuid_scan task"); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4363 | up(&fs_info->uuid_tree_rescan_sem); |
| 4364 | return PTR_ERR(task); |
| 4365 | } |
| 4366 | |
| 4367 | return 0; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4368 | } |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4369 | |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4370 | int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4371 | { |
| 4372 | struct task_struct *task; |
| 4373 | |
| 4374 | down(&fs_info->uuid_tree_rescan_sem); |
| 4375 | task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid"); |
| 4376 | if (IS_ERR(task)) { |
| 4377 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4378 | btrfs_warn(fs_info, "failed to start uuid_rescan task"); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4379 | up(&fs_info->uuid_tree_rescan_sem); |
| 4380 | return PTR_ERR(task); |
| 4381 | } |
| 4382 | |
| 4383 | return 0; |
| 4384 | } |
| 4385 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4386 | /* |
| 4387 | * shrinking a device means finding all of the device extents past |
| 4388 | * the new size, and then following the back refs to the chunks. |
| 4389 | * The chunk relocation code actually frees the device extent |
| 4390 | */ |
| 4391 | int btrfs_shrink_device(struct btrfs_device *device, u64 new_size) |
| 4392 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4393 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 4394 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4395 | struct btrfs_trans_handle *trans; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4396 | struct btrfs_dev_extent *dev_extent = NULL; |
| 4397 | struct btrfs_path *path; |
| 4398 | u64 length; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4399 | u64 chunk_offset; |
| 4400 | int ret; |
| 4401 | int slot; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4402 | int failed = 0; |
| 4403 | bool retried = false; |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4404 | bool checked_pending_chunks = false; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4405 | struct extent_buffer *l; |
| 4406 | struct btrfs_key key; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4407 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4408 | u64 old_total = btrfs_super_total_bytes(super_copy); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4409 | u64 old_size = btrfs_device_get_total_bytes(device); |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4410 | u64 diff; |
| 4411 | |
| 4412 | new_size = round_down(new_size, fs_info->sectorsize); |
Nikolay Borisov | 0e4324a | 2017-07-21 11:28:24 +0300 | [diff] [blame] | 4413 | diff = round_down(old_size - new_size, fs_info->sectorsize); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4414 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 4415 | if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 4416 | return -EINVAL; |
| 4417 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4418 | path = btrfs_alloc_path(); |
| 4419 | if (!path) |
| 4420 | return -ENOMEM; |
| 4421 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 4422 | path->reada = READA_FORWARD; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4423 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4424 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 4425 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4426 | btrfs_device_set_total_bytes(device, new_size); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4427 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4428 | device->fs_devices->total_rw_bytes -= diff; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4429 | atomic64_sub(diff, &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4430 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4431 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4432 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4433 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4434 | key.objectid = device->devid; |
| 4435 | key.offset = (u64)-1; |
| 4436 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 4437 | |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4438 | do { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4439 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4440 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4441 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4442 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4443 | goto done; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4444 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4445 | |
| 4446 | ret = btrfs_previous_item(root, path, 0, key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4447 | if (ret) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4448 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4449 | if (ret < 0) |
| 4450 | goto done; |
| 4451 | if (ret) { |
| 4452 | ret = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4453 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4454 | break; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4455 | } |
| 4456 | |
| 4457 | l = path->nodes[0]; |
| 4458 | slot = path->slots[0]; |
| 4459 | btrfs_item_key_to_cpu(l, &key, path->slots[0]); |
| 4460 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4461 | if (key.objectid != device->devid) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4462 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4463 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4464 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4465 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4466 | |
| 4467 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
| 4468 | length = btrfs_dev_extent_length(l, dev_extent); |
| 4469 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4470 | if (key.offset + length <= new_size) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4471 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4472 | btrfs_release_path(path); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4473 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4474 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4475 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4476 | chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4477 | btrfs_release_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4478 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 4479 | /* |
| 4480 | * We may be relocating the only data chunk we have, |
| 4481 | * which could potentially end up with losing data's |
| 4482 | * raid profile, so lets allocate an empty one in |
| 4483 | * advance. |
| 4484 | */ |
| 4485 | ret = btrfs_may_alloc_data_chunk(fs_info, chunk_offset); |
| 4486 | if (ret < 0) { |
| 4487 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
| 4488 | goto done; |
| 4489 | } |
| 4490 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4491 | ret = btrfs_relocate_chunk(fs_info, chunk_offset); |
| 4492 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4493 | if (ret && ret != -ENOSPC) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4494 | goto done; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4495 | if (ret == -ENOSPC) |
| 4496 | failed++; |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4497 | } while (key.offset-- > 0); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4498 | |
| 4499 | if (failed && !retried) { |
| 4500 | failed = 0; |
| 4501 | retried = true; |
| 4502 | goto again; |
| 4503 | } else if (failed && retried) { |
| 4504 | ret = -ENOSPC; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4505 | goto done; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4506 | } |
| 4507 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4508 | /* Shrinking succeeded, else we would be at "done". */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4509 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 4510 | if (IS_ERR(trans)) { |
| 4511 | ret = PTR_ERR(trans); |
| 4512 | goto done; |
| 4513 | } |
| 4514 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4515 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4516 | |
| 4517 | /* |
| 4518 | * We checked in the above loop all device extents that were already in |
| 4519 | * the device tree. However before we have updated the device's |
| 4520 | * total_bytes to the new size, we might have had chunk allocations that |
| 4521 | * have not complete yet (new block groups attached to transaction |
| 4522 | * handles), and therefore their device extents were not yet in the |
| 4523 | * device tree and we missed them in the loop above. So if we have any |
| 4524 | * pending chunk using a device extent that overlaps the device range |
| 4525 | * that we can not use anymore, commit the current transaction and |
| 4526 | * repeat the search on the device tree - this way we guarantee we will |
| 4527 | * not have chunks using device extents that end beyond 'new_size'. |
| 4528 | */ |
| 4529 | if (!checked_pending_chunks) { |
| 4530 | u64 start = new_size; |
| 4531 | u64 len = old_size - new_size; |
| 4532 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 4533 | if (contains_pending_extent(trans->transaction, device, |
| 4534 | &start, len)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4535 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4536 | checked_pending_chunks = true; |
| 4537 | failed = 0; |
| 4538 | retried = false; |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4539 | ret = btrfs_commit_transaction(trans); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4540 | if (ret) |
| 4541 | goto done; |
| 4542 | goto again; |
| 4543 | } |
| 4544 | } |
| 4545 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4546 | btrfs_device_set_disk_total_bytes(device, new_size); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 4547 | if (list_empty(&device->resized_list)) |
| 4548 | list_add_tail(&device->resized_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4549 | &fs_info->fs_devices->resized_devices); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4550 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4551 | WARN_ON(diff > old_total); |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4552 | btrfs_set_super_total_bytes(super_copy, |
| 4553 | round_down(old_total - diff, fs_info->sectorsize)); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4554 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 4555 | |
| 4556 | /* Now btrfs_update_device() will change the on-disk size. */ |
| 4557 | ret = btrfs_update_device(trans, device); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4558 | btrfs_end_transaction(trans); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4559 | done: |
| 4560 | btrfs_free_path(path); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4561 | if (ret) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4562 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4563 | btrfs_device_set_total_bytes(device, old_size); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4564 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4565 | device->fs_devices->total_rw_bytes += diff; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4566 | atomic64_add(diff, &fs_info->free_chunk_space); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4567 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4568 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4569 | return ret; |
| 4570 | } |
| 4571 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4572 | static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4573 | struct btrfs_key *key, |
| 4574 | struct btrfs_chunk *chunk, int item_size) |
| 4575 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4576 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4577 | struct btrfs_disk_key disk_key; |
| 4578 | u32 array_size; |
| 4579 | u8 *ptr; |
| 4580 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4581 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4582 | array_size = btrfs_super_sys_array_size(super_copy); |
Gui Hecheng | 5f43f86 | 2014-04-21 20:13:11 +0800 | [diff] [blame] | 4583 | if (array_size + item_size + sizeof(disk_key) |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4584 | > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4585 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4586 | return -EFBIG; |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4587 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4588 | |
| 4589 | ptr = super_copy->sys_chunk_array + array_size; |
| 4590 | btrfs_cpu_key_to_disk(&disk_key, key); |
| 4591 | memcpy(ptr, &disk_key, sizeof(disk_key)); |
| 4592 | ptr += sizeof(disk_key); |
| 4593 | memcpy(ptr, chunk, item_size); |
| 4594 | item_size += sizeof(disk_key); |
| 4595 | btrfs_set_super_sys_array_size(super_copy, array_size + item_size); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4596 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4597 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4598 | return 0; |
| 4599 | } |
| 4600 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4601 | /* |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4602 | * sort the devices in descending order by max_avail, total_avail |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4603 | */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4604 | static int btrfs_cmp_device_info(const void *a, const void *b) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4605 | { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4606 | const struct btrfs_device_info *di_a = a; |
| 4607 | const struct btrfs_device_info *di_b = b; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4608 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4609 | if (di_a->max_avail > di_b->max_avail) |
| 4610 | return -1; |
| 4611 | if (di_a->max_avail < di_b->max_avail) |
| 4612 | return 1; |
| 4613 | if (di_a->total_avail > di_b->total_avail) |
| 4614 | return -1; |
| 4615 | if (di_a->total_avail < di_b->total_avail) |
| 4616 | return 1; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4617 | return 0; |
| 4618 | } |
| 4619 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4620 | static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type) |
| 4621 | { |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 4622 | if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK)) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4623 | return; |
| 4624 | |
Miao Xie | ceda086 | 2013-04-11 10:30:16 +0000 | [diff] [blame] | 4625 | btrfs_set_fs_incompat(info, RAID56); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4626 | } |
| 4627 | |
Qu Wenruo | 062d4d1 | 2018-01-30 18:20:46 +0800 | [diff] [blame] | 4628 | #define BTRFS_MAX_DEVS(info) ((BTRFS_MAX_ITEM_SIZE(info) \ |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4629 | - sizeof(struct btrfs_chunk)) \ |
| 4630 | / sizeof(struct btrfs_stripe) + 1) |
| 4631 | |
| 4632 | #define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \ |
| 4633 | - 2 * sizeof(struct btrfs_disk_key) \ |
| 4634 | - 2 * sizeof(struct btrfs_chunk)) \ |
| 4635 | / sizeof(struct btrfs_stripe) + 1) |
| 4636 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4637 | static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans, |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 4638 | u64 start, u64 type) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4639 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4640 | struct btrfs_fs_info *info = trans->fs_info; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4641 | struct btrfs_fs_devices *fs_devices = info->fs_devices; |
Nikolay Borisov | ebcc930 | 2017-06-27 10:02:24 +0300 | [diff] [blame] | 4642 | struct btrfs_device *device; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4643 | struct map_lookup *map = NULL; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4644 | struct extent_map_tree *em_tree; |
| 4645 | struct extent_map *em; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4646 | struct btrfs_device_info *devices_info = NULL; |
| 4647 | u64 total_avail; |
| 4648 | int num_stripes; /* total number of stripes to allocate */ |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4649 | int data_stripes; /* number of stripes that count for |
| 4650 | block group size */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4651 | int sub_stripes; /* sub_stripes info for map */ |
| 4652 | int dev_stripes; /* stripes per dev */ |
| 4653 | int devs_max; /* max devs to use */ |
| 4654 | int devs_min; /* min devs needed */ |
| 4655 | int devs_increment; /* ndevs has to be a multiple of this */ |
| 4656 | int ncopies; /* how many copies to data has */ |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4657 | int ret; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4658 | u64 max_stripe_size; |
| 4659 | u64 max_chunk_size; |
| 4660 | u64 stripe_size; |
| 4661 | u64 num_bytes; |
| 4662 | int ndevs; |
| 4663 | int i; |
| 4664 | int j; |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4665 | int index; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4666 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4667 | BUG_ON(!alloc_profile_is_valid(type, 0)); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4668 | |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 4669 | if (list_empty(&fs_devices->alloc_list)) { |
| 4670 | if (btrfs_test_opt(info, ENOSPC_DEBUG)) |
| 4671 | btrfs_debug(info, "%s: no writable device", __func__); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4672 | return -ENOSPC; |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 4673 | } |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4674 | |
Qu Wenruo | 3e72ee8 | 2018-01-30 18:20:45 +0800 | [diff] [blame] | 4675 | index = btrfs_bg_flags_to_raid_index(type); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4676 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4677 | sub_stripes = btrfs_raid_array[index].sub_stripes; |
| 4678 | dev_stripes = btrfs_raid_array[index].dev_stripes; |
| 4679 | devs_max = btrfs_raid_array[index].devs_max; |
| 4680 | devs_min = btrfs_raid_array[index].devs_min; |
| 4681 | devs_increment = btrfs_raid_array[index].devs_increment; |
| 4682 | ncopies = btrfs_raid_array[index].ncopies; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4683 | |
| 4684 | if (type & BTRFS_BLOCK_GROUP_DATA) { |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4685 | max_stripe_size = SZ_1G; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4686 | max_chunk_size = 10 * max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4687 | if (!devs_max) |
Qu Wenruo | 062d4d1 | 2018-01-30 18:20:46 +0800 | [diff] [blame] | 4688 | devs_max = BTRFS_MAX_DEVS(info); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4689 | } else if (type & BTRFS_BLOCK_GROUP_METADATA) { |
Chris Mason | 1100373 | 2012-01-06 15:47:38 -0500 | [diff] [blame] | 4690 | /* for larger filesystems, use larger metadata chunks */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4691 | if (fs_devices->total_rw_bytes > 50ULL * SZ_1G) |
| 4692 | max_stripe_size = SZ_1G; |
Chris Mason | 1100373 | 2012-01-06 15:47:38 -0500 | [diff] [blame] | 4693 | else |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4694 | max_stripe_size = SZ_256M; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4695 | max_chunk_size = max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4696 | if (!devs_max) |
Qu Wenruo | 062d4d1 | 2018-01-30 18:20:46 +0800 | [diff] [blame] | 4697 | devs_max = BTRFS_MAX_DEVS(info); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4698 | } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4699 | max_stripe_size = SZ_32M; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4700 | max_chunk_size = 2 * max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4701 | if (!devs_max) |
| 4702 | devs_max = BTRFS_MAX_DEVS_SYS_CHUNK; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4703 | } else { |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 4704 | btrfs_err(info, "invalid chunk type 0x%llx requested", |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4705 | type); |
| 4706 | BUG_ON(1); |
| 4707 | } |
| 4708 | |
| 4709 | /* we don't want a chunk larger than 10% of writeable space */ |
| 4710 | max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1), |
| 4711 | max_chunk_size); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4712 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 4713 | devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info), |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4714 | GFP_NOFS); |
| 4715 | if (!devices_info) |
| 4716 | return -ENOMEM; |
| 4717 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4718 | /* |
| 4719 | * in the first pass through the devices list, we gather information |
| 4720 | * about the available holes on each device. |
| 4721 | */ |
| 4722 | ndevs = 0; |
Nikolay Borisov | ebcc930 | 2017-06-27 10:02:24 +0300 | [diff] [blame] | 4723 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4724 | u64 max_avail; |
| 4725 | u64 dev_offset; |
| 4726 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4727 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Julia Lawall | 31b1a2b | 2012-11-03 10:58:34 +0000 | [diff] [blame] | 4728 | WARN(1, KERN_ERR |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4729 | "BTRFS: read-only device in alloc_list\n"); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4730 | continue; |
| 4731 | } |
| 4732 | |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 4733 | if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 4734 | &device->dev_state) || |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 4735 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4736 | continue; |
| 4737 | |
| 4738 | if (device->total_bytes > device->bytes_used) |
| 4739 | total_avail = device->total_bytes - device->bytes_used; |
| 4740 | else |
| 4741 | total_avail = 0; |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 4742 | |
| 4743 | /* If there is no space on this device, skip it. */ |
| 4744 | if (total_avail == 0) |
| 4745 | continue; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4746 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4747 | ret = find_free_dev_extent(trans, device, |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4748 | max_stripe_size * dev_stripes, |
| 4749 | &dev_offset, &max_avail); |
| 4750 | if (ret && ret != -ENOSPC) |
| 4751 | goto error; |
| 4752 | |
| 4753 | if (ret == 0) |
| 4754 | max_avail = max_stripe_size * dev_stripes; |
| 4755 | |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 4756 | if (max_avail < BTRFS_STRIPE_LEN * dev_stripes) { |
| 4757 | if (btrfs_test_opt(info, ENOSPC_DEBUG)) |
| 4758 | btrfs_debug(info, |
| 4759 | "%s: devid %llu has no free space, have=%llu want=%u", |
| 4760 | __func__, device->devid, max_avail, |
| 4761 | BTRFS_STRIPE_LEN * dev_stripes); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4762 | continue; |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 4763 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4764 | |
Eric Sandeen | 063d006 | 2013-01-31 00:55:01 +0000 | [diff] [blame] | 4765 | if (ndevs == fs_devices->rw_devices) { |
| 4766 | WARN(1, "%s: found more than %llu devices\n", |
| 4767 | __func__, fs_devices->rw_devices); |
| 4768 | break; |
| 4769 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4770 | devices_info[ndevs].dev_offset = dev_offset; |
| 4771 | devices_info[ndevs].max_avail = max_avail; |
| 4772 | devices_info[ndevs].total_avail = total_avail; |
| 4773 | devices_info[ndevs].dev = device; |
| 4774 | ++ndevs; |
| 4775 | } |
| 4776 | |
| 4777 | /* |
| 4778 | * now sort the devices by hole size / available space |
| 4779 | */ |
| 4780 | sort(devices_info, ndevs, sizeof(struct btrfs_device_info), |
| 4781 | btrfs_cmp_device_info, NULL); |
| 4782 | |
| 4783 | /* round down to number of usable stripes */ |
Nikolay Borisov | e5600fd | 2017-06-27 10:02:25 +0300 | [diff] [blame] | 4784 | ndevs = round_down(ndevs, devs_increment); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4785 | |
Qu Wenruo | ba89b80 | 2018-01-31 13:56:15 +0800 | [diff] [blame] | 4786 | if (ndevs < devs_min) { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4787 | ret = -ENOSPC; |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 4788 | if (btrfs_test_opt(info, ENOSPC_DEBUG)) { |
| 4789 | btrfs_debug(info, |
| 4790 | "%s: not enough devices with free space: have=%d minimum required=%d", |
Qu Wenruo | ba89b80 | 2018-01-31 13:56:15 +0800 | [diff] [blame] | 4791 | __func__, ndevs, devs_min); |
Qu Wenruo | 4117f20 | 2018-01-22 13:50:54 +0800 | [diff] [blame] | 4792 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4793 | goto error; |
| 4794 | } |
| 4795 | |
Nikolay Borisov | f148ef4 | 2017-06-27 10:02:26 +0300 | [diff] [blame] | 4796 | ndevs = min(ndevs, devs_max); |
| 4797 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4798 | /* |
Hans van Kranenburg | 92e222d | 2018-02-05 17:45:11 +0100 | [diff] [blame] | 4799 | * The primary goal is to maximize the number of stripes, so use as |
| 4800 | * many devices as possible, even if the stripes are not maximum sized. |
| 4801 | * |
| 4802 | * The DUP profile stores more than one stripe per device, the |
| 4803 | * max_avail is the total size so we have to adjust. |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4804 | */ |
Hans van Kranenburg | 92e222d | 2018-02-05 17:45:11 +0100 | [diff] [blame] | 4805 | stripe_size = div_u64(devices_info[ndevs - 1].max_avail, dev_stripes); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4806 | num_stripes = ndevs * dev_stripes; |
| 4807 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4808 | /* |
| 4809 | * this will have to be fixed for RAID1 and RAID10 over |
| 4810 | * more drives |
| 4811 | */ |
| 4812 | data_stripes = num_stripes / ncopies; |
| 4813 | |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4814 | if (type & BTRFS_BLOCK_GROUP_RAID5) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4815 | data_stripes = num_stripes - 1; |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4816 | |
| 4817 | if (type & BTRFS_BLOCK_GROUP_RAID6) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4818 | data_stripes = num_stripes - 2; |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4819 | |
| 4820 | /* |
| 4821 | * Use the number of data stripes to figure out how big this chunk |
| 4822 | * is really going to be in terms of logical address space, |
| 4823 | * and compare that answer with the max chunk size |
| 4824 | */ |
| 4825 | if (stripe_size * data_stripes > max_chunk_size) { |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 4826 | stripe_size = div_u64(max_chunk_size, data_stripes); |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4827 | |
| 4828 | /* bump the answer up to a 16MB boundary */ |
Qu Wenruo | 793ff2c | 2018-01-31 14:16:34 +0800 | [diff] [blame] | 4829 | stripe_size = round_up(stripe_size, SZ_16M); |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4830 | |
Qu Wenruo | 793ff2c | 2018-01-31 14:16:34 +0800 | [diff] [blame] | 4831 | /* |
| 4832 | * But don't go higher than the limits we found while searching |
| 4833 | * for free extents |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4834 | */ |
Qu Wenruo | 793ff2c | 2018-01-31 14:16:34 +0800 | [diff] [blame] | 4835 | stripe_size = min(devices_info[ndevs - 1].max_avail, |
| 4836 | stripe_size); |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4837 | } |
| 4838 | |
Ilya Dryomov | 37db63a | 2012-04-13 17:05:08 +0300 | [diff] [blame] | 4839 | /* align to BTRFS_STRIPE_LEN */ |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4840 | stripe_size = round_down(stripe_size, BTRFS_STRIPE_LEN); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4841 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4842 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
| 4843 | if (!map) { |
| 4844 | ret = -ENOMEM; |
| 4845 | goto error; |
| 4846 | } |
| 4847 | map->num_stripes = num_stripes; |
Chris Mason | 9b3f68b | 2008-04-18 10:29:51 -0400 | [diff] [blame] | 4848 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4849 | for (i = 0; i < ndevs; ++i) { |
| 4850 | for (j = 0; j < dev_stripes; ++j) { |
| 4851 | int s = i * dev_stripes + j; |
| 4852 | map->stripes[s].dev = devices_info[i].dev; |
| 4853 | map->stripes[s].physical = devices_info[i].dev_offset + |
| 4854 | j * stripe_size; |
Chris Mason | a40a90a | 2008-04-18 11:55:51 -0400 | [diff] [blame] | 4855 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4856 | } |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4857 | map->stripe_len = BTRFS_STRIPE_LEN; |
| 4858 | map->io_align = BTRFS_STRIPE_LEN; |
| 4859 | map->io_width = BTRFS_STRIPE_LEN; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4860 | map->type = type; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 4861 | map->sub_stripes = sub_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4862 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4863 | num_bytes = stripe_size * data_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4864 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4865 | trace_btrfs_chunk_alloc(info, map, start, num_bytes); |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4866 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 4867 | em = alloc_extent_map(); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4868 | if (!em) { |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 4869 | kfree(map); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4870 | ret = -ENOMEM; |
| 4871 | goto error; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4872 | } |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 4873 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 4874 | em->map_lookup = map; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4875 | em->start = start; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4876 | em->len = num_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4877 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4878 | em->block_len = em->len; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4879 | em->orig_block_len = stripe_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4880 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4881 | em_tree = &info->mapping_tree.map_tree; |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4882 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 4883 | ret = add_extent_mapping(em_tree, em, 0); |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4884 | if (ret) { |
Nikolay Borisov | 1efb72a | 2017-08-21 12:43:49 +0300 | [diff] [blame] | 4885 | write_unlock(&em_tree->lock); |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4886 | free_extent_map(em); |
Mark Fasheh | 1dd4602 | 2011-09-08 17:29:00 -0700 | [diff] [blame] | 4887 | goto error; |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4888 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4889 | |
Nikolay Borisov | 1efb72a | 2017-08-21 12:43:49 +0300 | [diff] [blame] | 4890 | list_add_tail(&em->list, &trans->transaction->pending_chunks); |
| 4891 | refcount_inc(&em->refs); |
| 4892 | write_unlock(&em_tree->lock); |
| 4893 | |
Nikolay Borisov | 0174484 | 2017-07-27 14:22:11 +0300 | [diff] [blame] | 4894 | ret = btrfs_make_block_group(trans, info, 0, type, start, num_bytes); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4895 | if (ret) |
| 4896 | goto error_del_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4897 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4898 | for (i = 0; i < map->num_stripes; i++) { |
| 4899 | num_bytes = map->stripes[i].dev->bytes_used + stripe_size; |
| 4900 | btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes); |
| 4901 | } |
Miao Xie | 43530c4 | 2014-09-03 21:35:36 +0800 | [diff] [blame] | 4902 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4903 | atomic64_sub(stripe_size * map->num_stripes, &info->free_chunk_space); |
Miao Xie | 1c11618 | 2014-09-03 21:35:37 +0800 | [diff] [blame] | 4904 | |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4905 | free_extent_map(em); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4906 | check_raid56_incompat_flag(info, type); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4907 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4908 | kfree(devices_info); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4909 | return 0; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4910 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4911 | error_del_extent: |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4912 | write_lock(&em_tree->lock); |
| 4913 | remove_extent_mapping(em_tree, em); |
| 4914 | write_unlock(&em_tree->lock); |
| 4915 | |
| 4916 | /* One for our allocation */ |
| 4917 | free_extent_map(em); |
| 4918 | /* One for the tree reference */ |
| 4919 | free_extent_map(em); |
Filipe Manana | 495e64f | 2014-12-02 18:07:30 +0000 | [diff] [blame] | 4920 | /* One for the pending_chunks list reference */ |
| 4921 | free_extent_map(em); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4922 | error: |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4923 | kfree(devices_info); |
| 4924 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4925 | } |
| 4926 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4927 | int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4928 | struct btrfs_fs_info *fs_info, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4929 | u64 chunk_offset, u64 chunk_size) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4930 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4931 | struct btrfs_root *extent_root = fs_info->extent_root; |
| 4932 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4933 | struct btrfs_key key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4934 | struct btrfs_device *device; |
| 4935 | struct btrfs_chunk *chunk; |
| 4936 | struct btrfs_stripe *stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4937 | struct extent_map *em; |
| 4938 | struct map_lookup *map; |
| 4939 | size_t item_size; |
| 4940 | u64 dev_offset; |
| 4941 | u64 stripe_size; |
| 4942 | int i = 0; |
Chris Mason | 140e639 | 2015-12-23 13:30:51 -0800 | [diff] [blame] | 4943 | int ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4944 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 4945 | em = get_chunk_map(fs_info, chunk_offset, chunk_size); |
| 4946 | if (IS_ERR(em)) |
| 4947 | return PTR_ERR(em); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4948 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 4949 | map = em->map_lookup; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4950 | item_size = btrfs_chunk_item_size(map->num_stripes); |
| 4951 | stripe_size = em->orig_block_len; |
| 4952 | |
| 4953 | chunk = kzalloc(item_size, GFP_NOFS); |
| 4954 | if (!chunk) { |
| 4955 | ret = -ENOMEM; |
| 4956 | goto out; |
| 4957 | } |
| 4958 | |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 4959 | /* |
| 4960 | * Take the device list mutex to prevent races with the final phase of |
| 4961 | * a device replace operation that replaces the device object associated |
| 4962 | * with the map's stripes, because the device object's id can change |
| 4963 | * at any time during that final phase of the device replace operation |
| 4964 | * (dev-replace.c:btrfs_dev_replace_finishing()). |
| 4965 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4966 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4967 | for (i = 0; i < map->num_stripes; i++) { |
| 4968 | device = map->stripes[i].dev; |
| 4969 | dev_offset = map->stripes[i].physical; |
| 4970 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4971 | ret = btrfs_update_device(trans, device); |
Mark Fasheh | 3acd395 | 2011-09-08 17:40:01 -0700 | [diff] [blame] | 4972 | if (ret) |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 4973 | break; |
Nikolay Borisov | b5d9071 | 2017-08-18 17:58:23 +0300 | [diff] [blame] | 4974 | ret = btrfs_alloc_dev_extent(trans, device, chunk_offset, |
| 4975 | dev_offset, stripe_size); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4976 | if (ret) |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 4977 | break; |
| 4978 | } |
| 4979 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4980 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 4981 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4982 | } |
| 4983 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4984 | stripe = &chunk->stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4985 | for (i = 0; i < map->num_stripes; i++) { |
| 4986 | device = map->stripes[i].dev; |
| 4987 | dev_offset = map->stripes[i].physical; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4988 | |
| 4989 | btrfs_set_stack_stripe_devid(stripe, device->devid); |
| 4990 | btrfs_set_stack_stripe_offset(stripe, dev_offset); |
| 4991 | memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE); |
| 4992 | stripe++; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4993 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4994 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4995 | |
| 4996 | btrfs_set_stack_chunk_length(chunk, chunk_size); |
| 4997 | btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid); |
| 4998 | btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len); |
| 4999 | btrfs_set_stack_chunk_type(chunk, map->type); |
| 5000 | btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes); |
| 5001 | btrfs_set_stack_chunk_io_align(chunk, map->stripe_len); |
| 5002 | btrfs_set_stack_chunk_io_width(chunk, map->stripe_len); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5003 | btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5004 | btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes); |
| 5005 | |
| 5006 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 5007 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 5008 | key.offset = chunk_offset; |
| 5009 | |
| 5010 | ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 5011 | if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 5012 | /* |
| 5013 | * TODO: Cleanup of inserted chunk root in case of |
| 5014 | * failure. |
| 5015 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5016 | ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5017 | } |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 5018 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5019 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5020 | kfree(chunk); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5021 | free_extent_map(em); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 5022 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5023 | } |
| 5024 | |
| 5025 | /* |
| 5026 | * Chunk allocation falls into two parts. The first part does works |
| 5027 | * that make the new allocated chunk useable, but not do any operation |
| 5028 | * that modifies the chunk tree. The second part does the works that |
| 5029 | * require modifying the chunk tree. This division is important for the |
| 5030 | * bootstrap process of adding storage to a seed btrfs. |
| 5031 | */ |
| 5032 | int btrfs_alloc_chunk(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5033 | struct btrfs_fs_info *fs_info, u64 type) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5034 | { |
| 5035 | u64 chunk_offset; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5036 | |
David Sterba | a32bf9a | 2018-03-16 02:21:22 +0100 | [diff] [blame] | 5037 | lockdep_assert_held(&fs_info->chunk_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5038 | chunk_offset = find_next_chunk(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 5039 | return __btrfs_alloc_chunk(trans, chunk_offset, type); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5040 | } |
| 5041 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5042 | static noinline int init_first_rw_device(struct btrfs_trans_handle *trans, |
David Sterba | e4a4dce | 2017-02-10 19:49:01 +0100 | [diff] [blame] | 5043 | struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5044 | { |
| 5045 | u64 chunk_offset; |
| 5046 | u64 sys_chunk_offset; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5047 | u64 alloc_profile; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5048 | int ret; |
| 5049 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5050 | chunk_offset = find_next_chunk(fs_info); |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 5051 | alloc_profile = btrfs_metadata_alloc_profile(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 5052 | ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5053 | if (ret) |
| 5054 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5055 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5056 | sys_chunk_offset = find_next_chunk(fs_info); |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 5057 | alloc_profile = btrfs_system_alloc_profile(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 5058 | ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5059 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5060 | } |
| 5061 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5062 | static inline int btrfs_chunk_max_errors(struct map_lookup *map) |
| 5063 | { |
| 5064 | int max_errors; |
| 5065 | |
| 5066 | if (map->type & (BTRFS_BLOCK_GROUP_RAID1 | |
| 5067 | BTRFS_BLOCK_GROUP_RAID10 | |
| 5068 | BTRFS_BLOCK_GROUP_RAID5 | |
| 5069 | BTRFS_BLOCK_GROUP_DUP)) { |
| 5070 | max_errors = 1; |
| 5071 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) { |
| 5072 | max_errors = 2; |
| 5073 | } else { |
| 5074 | max_errors = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5075 | } |
| 5076 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5077 | return max_errors; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5078 | } |
| 5079 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5080 | 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] | 5081 | { |
| 5082 | struct extent_map *em; |
| 5083 | struct map_lookup *map; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5084 | int readonly = 0; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5085 | int miss_ndevs = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5086 | int i; |
| 5087 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5088 | em = get_chunk_map(fs_info, chunk_offset, 1); |
| 5089 | if (IS_ERR(em)) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5090 | return 1; |
| 5091 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5092 | map = em->map_lookup; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5093 | for (i = 0; i < map->num_stripes; i++) { |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 5094 | if (test_bit(BTRFS_DEV_STATE_MISSING, |
| 5095 | &map->stripes[i].dev->dev_state)) { |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5096 | miss_ndevs++; |
| 5097 | continue; |
| 5098 | } |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 5099 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, |
| 5100 | &map->stripes[i].dev->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5101 | readonly = 1; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5102 | goto end; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5103 | } |
| 5104 | } |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5105 | |
| 5106 | /* |
| 5107 | * If the number of missing devices is larger than max errors, |
| 5108 | * we can not write the data into that chunk successfully, so |
| 5109 | * set it readonly. |
| 5110 | */ |
| 5111 | if (miss_ndevs > btrfs_chunk_max_errors(map)) |
| 5112 | readonly = 1; |
| 5113 | end: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5114 | free_extent_map(em); |
| 5115 | return readonly; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5116 | } |
| 5117 | |
| 5118 | void btrfs_mapping_init(struct btrfs_mapping_tree *tree) |
| 5119 | { |
David Sterba | a8067e0 | 2011-04-21 00:34:43 +0200 | [diff] [blame] | 5120 | extent_map_tree_init(&tree->map_tree); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5121 | } |
| 5122 | |
| 5123 | void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree) |
| 5124 | { |
| 5125 | struct extent_map *em; |
| 5126 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5127 | while (1) { |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5128 | write_lock(&tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5129 | em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1); |
| 5130 | if (em) |
| 5131 | remove_extent_mapping(&tree->map_tree, em); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5132 | write_unlock(&tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5133 | if (!em) |
| 5134 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5135 | /* once for us */ |
| 5136 | free_extent_map(em); |
| 5137 | /* once for the tree */ |
| 5138 | free_extent_map(em); |
| 5139 | } |
| 5140 | } |
| 5141 | |
Stefan Behrens | 5d96405 | 2012-11-05 14:59:07 +0100 | [diff] [blame] | 5142 | 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] | 5143 | { |
| 5144 | struct extent_map *em; |
| 5145 | struct map_lookup *map; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5146 | int ret; |
| 5147 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5148 | em = get_chunk_map(fs_info, logical, len); |
| 5149 | if (IS_ERR(em)) |
| 5150 | /* |
| 5151 | * We could return errors for these cases, but that could get |
| 5152 | * ugly and we'd probably do the same thing which is just not do |
| 5153 | * anything else and exit, so return 1 so the callers don't try |
| 5154 | * to use other copies. |
| 5155 | */ |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5156 | return 1; |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5157 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5158 | map = em->map_lookup; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5159 | if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1)) |
| 5160 | ret = map->num_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5161 | else if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
| 5162 | ret = map->sub_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5163 | else if (map->type & BTRFS_BLOCK_GROUP_RAID5) |
| 5164 | ret = 2; |
| 5165 | else if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
Liu Bo | 8810f75 | 2018-01-02 13:36:41 -0700 | [diff] [blame] | 5166 | /* |
| 5167 | * There could be two corrupted data stripes, we need |
| 5168 | * to loop retry in order to rebuild the correct data. |
| 5169 | * |
| 5170 | * Fail a stripe at a time on every retry except the |
| 5171 | * stripe under reconstruction. |
| 5172 | */ |
| 5173 | ret = map->num_stripes; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5174 | else |
| 5175 | ret = 1; |
| 5176 | free_extent_map(em); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5177 | |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 5178 | btrfs_dev_replace_read_lock(&fs_info->dev_replace); |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5179 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) && |
| 5180 | fs_info->dev_replace.tgtdev) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5181 | ret++; |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 5182 | btrfs_dev_replace_read_unlock(&fs_info->dev_replace); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5183 | |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5184 | return ret; |
| 5185 | } |
| 5186 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5187 | unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info, |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5188 | u64 logical) |
| 5189 | { |
| 5190 | struct extent_map *em; |
| 5191 | struct map_lookup *map; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5192 | unsigned long len = fs_info->sectorsize; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5193 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5194 | em = get_chunk_map(fs_info, logical, len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5195 | |
Nikolay Borisov | 69f03f1 | 2017-07-11 16:55:51 +0300 | [diff] [blame] | 5196 | if (!WARN_ON(IS_ERR(em))) { |
| 5197 | map = em->map_lookup; |
| 5198 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 5199 | len = map->stripe_len * nr_data_stripes(map); |
| 5200 | free_extent_map(em); |
| 5201 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5202 | return len; |
| 5203 | } |
| 5204 | |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 5205 | 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] | 5206 | { |
| 5207 | struct extent_map *em; |
| 5208 | struct map_lookup *map; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5209 | int ret = 0; |
| 5210 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5211 | em = get_chunk_map(fs_info, logical, len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5212 | |
Nikolay Borisov | 69f03f1 | 2017-07-11 16:55:51 +0300 | [diff] [blame] | 5213 | if(!WARN_ON(IS_ERR(em))) { |
| 5214 | map = em->map_lookup; |
| 5215 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 5216 | ret = 1; |
| 5217 | free_extent_map(em); |
| 5218 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5219 | return ret; |
| 5220 | } |
| 5221 | |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5222 | static int find_live_mirror(struct btrfs_fs_info *fs_info, |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5223 | struct map_lookup *map, int first, |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5224 | int dev_replace_is_ongoing) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5225 | { |
| 5226 | int i; |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5227 | int num_stripes; |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5228 | int preferred_mirror; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5229 | int tolerance; |
| 5230 | struct btrfs_device *srcdev; |
| 5231 | |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5232 | ASSERT((map->type & |
| 5233 | (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10))); |
| 5234 | |
| 5235 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
| 5236 | num_stripes = map->sub_stripes; |
| 5237 | else |
| 5238 | num_stripes = map->num_stripes; |
| 5239 | |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5240 | preferred_mirror = first + current->pid % num_stripes; |
| 5241 | |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5242 | if (dev_replace_is_ongoing && |
| 5243 | fs_info->dev_replace.cont_reading_from_srcdev_mode == |
| 5244 | BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID) |
| 5245 | srcdev = fs_info->dev_replace.srcdev; |
| 5246 | else |
| 5247 | srcdev = NULL; |
| 5248 | |
| 5249 | /* |
| 5250 | * try to avoid the drive that is the source drive for a |
| 5251 | * dev-replace procedure, only choose it if no other non-missing |
| 5252 | * mirror is available |
| 5253 | */ |
| 5254 | for (tolerance = 0; tolerance < 2; tolerance++) { |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5255 | if (map->stripes[preferred_mirror].dev->bdev && |
| 5256 | (tolerance || map->stripes[preferred_mirror].dev != srcdev)) |
| 5257 | return preferred_mirror; |
Anand Jain | 99f92a7 | 2018-03-14 16:29:12 +0800 | [diff] [blame] | 5258 | for (i = first; i < first + num_stripes; i++) { |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5259 | if (map->stripes[i].dev->bdev && |
| 5260 | (tolerance || map->stripes[i].dev != srcdev)) |
| 5261 | return i; |
| 5262 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5263 | } |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5264 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5265 | /* we couldn't find one that doesn't fail. Just return something |
| 5266 | * and the io error handling code will clean up eventually |
| 5267 | */ |
Anand Jain | 8ba0ae7 | 2018-03-14 16:29:13 +0800 | [diff] [blame] | 5268 | return preferred_mirror; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5269 | } |
| 5270 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5271 | static inline int parity_smaller(u64 a, u64 b) |
| 5272 | { |
| 5273 | return a > b; |
| 5274 | } |
| 5275 | |
| 5276 | /* Bubble-sort the stripe set to put the parity/syndrome stripes last */ |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5277 | static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5278 | { |
| 5279 | struct btrfs_bio_stripe s; |
| 5280 | int i; |
| 5281 | u64 l; |
| 5282 | int again = 1; |
| 5283 | |
| 5284 | while (again) { |
| 5285 | again = 0; |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5286 | for (i = 0; i < num_stripes - 1; i++) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5287 | if (parity_smaller(bbio->raid_map[i], |
| 5288 | bbio->raid_map[i+1])) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5289 | s = bbio->stripes[i]; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5290 | l = bbio->raid_map[i]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5291 | bbio->stripes[i] = bbio->stripes[i+1]; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5292 | bbio->raid_map[i] = bbio->raid_map[i+1]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5293 | bbio->stripes[i+1] = s; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5294 | bbio->raid_map[i+1] = l; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5295 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5296 | again = 1; |
| 5297 | } |
| 5298 | } |
| 5299 | } |
| 5300 | } |
| 5301 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5302 | static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes) |
| 5303 | { |
| 5304 | struct btrfs_bio *bbio = kzalloc( |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5305 | /* the size of the btrfs_bio */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5306 | sizeof(struct btrfs_bio) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5307 | /* plus the variable array for the stripes */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5308 | sizeof(struct btrfs_bio_stripe) * (total_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5309 | /* plus the variable array for the tgt dev */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5310 | sizeof(int) * (real_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5311 | /* |
| 5312 | * plus the raid_map, which includes both the tgt dev |
| 5313 | * and the stripes |
| 5314 | */ |
| 5315 | sizeof(u64) * (total_stripes), |
Michal Hocko | 277fb5f | 2015-08-19 14:17:41 +0200 | [diff] [blame] | 5316 | GFP_NOFS|__GFP_NOFAIL); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5317 | |
| 5318 | atomic_set(&bbio->error, 0); |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5319 | refcount_set(&bbio->refs, 1); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5320 | |
| 5321 | return bbio; |
| 5322 | } |
| 5323 | |
| 5324 | void btrfs_get_bbio(struct btrfs_bio *bbio) |
| 5325 | { |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5326 | WARN_ON(!refcount_read(&bbio->refs)); |
| 5327 | refcount_inc(&bbio->refs); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5328 | } |
| 5329 | |
| 5330 | void btrfs_put_bbio(struct btrfs_bio *bbio) |
| 5331 | { |
| 5332 | if (!bbio) |
| 5333 | return; |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5334 | if (refcount_dec_and_test(&bbio->refs)) |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5335 | kfree(bbio); |
| 5336 | } |
| 5337 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5338 | /* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */ |
| 5339 | /* |
| 5340 | * Please note that, discard won't be sent to target device of device |
| 5341 | * replace. |
| 5342 | */ |
| 5343 | static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info, |
| 5344 | u64 logical, u64 length, |
| 5345 | struct btrfs_bio **bbio_ret) |
| 5346 | { |
| 5347 | struct extent_map *em; |
| 5348 | struct map_lookup *map; |
| 5349 | struct btrfs_bio *bbio; |
| 5350 | u64 offset; |
| 5351 | u64 stripe_nr; |
| 5352 | u64 stripe_nr_end; |
| 5353 | u64 stripe_end_offset; |
| 5354 | u64 stripe_cnt; |
| 5355 | u64 stripe_len; |
| 5356 | u64 stripe_offset; |
| 5357 | u64 num_stripes; |
| 5358 | u32 stripe_index; |
| 5359 | u32 factor = 0; |
| 5360 | u32 sub_stripes = 0; |
| 5361 | u64 stripes_per_dev = 0; |
| 5362 | u32 remaining_stripes = 0; |
| 5363 | u32 last_stripe = 0; |
| 5364 | int ret = 0; |
| 5365 | int i; |
| 5366 | |
| 5367 | /* discard always return a bbio */ |
| 5368 | ASSERT(bbio_ret); |
| 5369 | |
| 5370 | em = get_chunk_map(fs_info, logical, length); |
| 5371 | if (IS_ERR(em)) |
| 5372 | return PTR_ERR(em); |
| 5373 | |
| 5374 | map = em->map_lookup; |
| 5375 | /* we don't discard raid56 yet */ |
| 5376 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
| 5377 | ret = -EOPNOTSUPP; |
| 5378 | goto out; |
| 5379 | } |
| 5380 | |
| 5381 | offset = logical - em->start; |
| 5382 | length = min_t(u64, em->len - offset, length); |
| 5383 | |
| 5384 | stripe_len = map->stripe_len; |
| 5385 | /* |
| 5386 | * stripe_nr counts the total number of stripes we have to stride |
| 5387 | * to get to this block |
| 5388 | */ |
| 5389 | stripe_nr = div64_u64(offset, stripe_len); |
| 5390 | |
| 5391 | /* stripe_offset is the offset of this block in its stripe */ |
| 5392 | stripe_offset = offset - stripe_nr * stripe_len; |
| 5393 | |
| 5394 | stripe_nr_end = round_up(offset + length, map->stripe_len); |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 5395 | stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5396 | stripe_cnt = stripe_nr_end - stripe_nr; |
| 5397 | stripe_end_offset = stripe_nr_end * map->stripe_len - |
| 5398 | (offset + length); |
| 5399 | /* |
| 5400 | * after this, stripe_nr is the number of stripes on this |
| 5401 | * device we have to walk to find the data, and stripe_index is |
| 5402 | * the number of our device in the stripe array |
| 5403 | */ |
| 5404 | num_stripes = 1; |
| 5405 | stripe_index = 0; |
| 5406 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 5407 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5408 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
| 5409 | sub_stripes = 1; |
| 5410 | else |
| 5411 | sub_stripes = map->sub_stripes; |
| 5412 | |
| 5413 | factor = map->num_stripes / sub_stripes; |
| 5414 | num_stripes = min_t(u64, map->num_stripes, |
| 5415 | sub_stripes * stripe_cnt); |
| 5416 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
| 5417 | stripe_index *= sub_stripes; |
| 5418 | stripes_per_dev = div_u64_rem(stripe_cnt, factor, |
| 5419 | &remaining_stripes); |
| 5420 | div_u64_rem(stripe_nr_end - 1, factor, &last_stripe); |
| 5421 | last_stripe *= sub_stripes; |
| 5422 | } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1 | |
| 5423 | BTRFS_BLOCK_GROUP_DUP)) { |
| 5424 | num_stripes = map->num_stripes; |
| 5425 | } else { |
| 5426 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5427 | &stripe_index); |
| 5428 | } |
| 5429 | |
| 5430 | bbio = alloc_btrfs_bio(num_stripes, 0); |
| 5431 | if (!bbio) { |
| 5432 | ret = -ENOMEM; |
| 5433 | goto out; |
| 5434 | } |
| 5435 | |
| 5436 | for (i = 0; i < num_stripes; i++) { |
| 5437 | bbio->stripes[i].physical = |
| 5438 | map->stripes[stripe_index].physical + |
| 5439 | stripe_offset + stripe_nr * map->stripe_len; |
| 5440 | bbio->stripes[i].dev = map->stripes[stripe_index].dev; |
| 5441 | |
| 5442 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 5443 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5444 | bbio->stripes[i].length = stripes_per_dev * |
| 5445 | map->stripe_len; |
| 5446 | |
| 5447 | if (i / sub_stripes < remaining_stripes) |
| 5448 | bbio->stripes[i].length += |
| 5449 | map->stripe_len; |
| 5450 | |
| 5451 | /* |
| 5452 | * Special for the first stripe and |
| 5453 | * the last stripe: |
| 5454 | * |
| 5455 | * |-------|...|-------| |
| 5456 | * |----------| |
| 5457 | * off end_off |
| 5458 | */ |
| 5459 | if (i < sub_stripes) |
| 5460 | bbio->stripes[i].length -= |
| 5461 | stripe_offset; |
| 5462 | |
| 5463 | if (stripe_index >= last_stripe && |
| 5464 | stripe_index <= (last_stripe + |
| 5465 | sub_stripes - 1)) |
| 5466 | bbio->stripes[i].length -= |
| 5467 | stripe_end_offset; |
| 5468 | |
| 5469 | if (i == sub_stripes - 1) |
| 5470 | stripe_offset = 0; |
| 5471 | } else { |
| 5472 | bbio->stripes[i].length = length; |
| 5473 | } |
| 5474 | |
| 5475 | stripe_index++; |
| 5476 | if (stripe_index == map->num_stripes) { |
| 5477 | stripe_index = 0; |
| 5478 | stripe_nr++; |
| 5479 | } |
| 5480 | } |
| 5481 | |
| 5482 | *bbio_ret = bbio; |
| 5483 | bbio->map_type = map->type; |
| 5484 | bbio->num_stripes = num_stripes; |
| 5485 | out: |
| 5486 | free_extent_map(em); |
| 5487 | return ret; |
| 5488 | } |
| 5489 | |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5490 | /* |
| 5491 | * In dev-replace case, for repair case (that's the only case where the mirror |
| 5492 | * is selected explicitly when calling btrfs_map_block), blocks left of the |
| 5493 | * left cursor can also be read from the target drive. |
| 5494 | * |
| 5495 | * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the |
| 5496 | * array of stripes. |
| 5497 | * For READ, it also needs to be supported using the same mirror number. |
| 5498 | * |
| 5499 | * If the requested block is not left of the left cursor, EIO is returned. This |
| 5500 | * can happen because btrfs_num_copies() returns one more in the dev-replace |
| 5501 | * case. |
| 5502 | */ |
| 5503 | static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info, |
| 5504 | u64 logical, u64 length, |
| 5505 | u64 srcdev_devid, int *mirror_num, |
| 5506 | u64 *physical) |
| 5507 | { |
| 5508 | struct btrfs_bio *bbio = NULL; |
| 5509 | int num_stripes; |
| 5510 | int index_srcdev = 0; |
| 5511 | int found = 0; |
| 5512 | u64 physical_of_found = 0; |
| 5513 | int i; |
| 5514 | int ret = 0; |
| 5515 | |
| 5516 | ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS, |
| 5517 | logical, &length, &bbio, 0, 0); |
| 5518 | if (ret) { |
| 5519 | ASSERT(bbio == NULL); |
| 5520 | return ret; |
| 5521 | } |
| 5522 | |
| 5523 | num_stripes = bbio->num_stripes; |
| 5524 | if (*mirror_num > num_stripes) { |
| 5525 | /* |
| 5526 | * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror, |
| 5527 | * that means that the requested area is not left of the left |
| 5528 | * cursor |
| 5529 | */ |
| 5530 | btrfs_put_bbio(bbio); |
| 5531 | return -EIO; |
| 5532 | } |
| 5533 | |
| 5534 | /* |
| 5535 | * process the rest of the function using the mirror_num of the source |
| 5536 | * drive. Therefore look it up first. At the end, patch the device |
| 5537 | * pointer to the one of the target drive. |
| 5538 | */ |
| 5539 | for (i = 0; i < num_stripes; i++) { |
| 5540 | if (bbio->stripes[i].dev->devid != srcdev_devid) |
| 5541 | continue; |
| 5542 | |
| 5543 | /* |
| 5544 | * In case of DUP, in order to keep it simple, only add the |
| 5545 | * mirror with the lowest physical address |
| 5546 | */ |
| 5547 | if (found && |
| 5548 | physical_of_found <= bbio->stripes[i].physical) |
| 5549 | continue; |
| 5550 | |
| 5551 | index_srcdev = i; |
| 5552 | found = 1; |
| 5553 | physical_of_found = bbio->stripes[i].physical; |
| 5554 | } |
| 5555 | |
| 5556 | btrfs_put_bbio(bbio); |
| 5557 | |
| 5558 | ASSERT(found); |
| 5559 | if (!found) |
| 5560 | return -EIO; |
| 5561 | |
| 5562 | *mirror_num = index_srcdev + 1; |
| 5563 | *physical = physical_of_found; |
| 5564 | return ret; |
| 5565 | } |
| 5566 | |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 5567 | static void handle_ops_on_dev_replace(enum btrfs_map_op op, |
| 5568 | struct btrfs_bio **bbio_ret, |
| 5569 | struct btrfs_dev_replace *dev_replace, |
| 5570 | int *num_stripes_ret, int *max_errors_ret) |
| 5571 | { |
| 5572 | struct btrfs_bio *bbio = *bbio_ret; |
| 5573 | u64 srcdev_devid = dev_replace->srcdev->devid; |
| 5574 | int tgtdev_indexes = 0; |
| 5575 | int num_stripes = *num_stripes_ret; |
| 5576 | int max_errors = *max_errors_ret; |
| 5577 | int i; |
| 5578 | |
| 5579 | if (op == BTRFS_MAP_WRITE) { |
| 5580 | int index_where_to_add; |
| 5581 | |
| 5582 | /* |
| 5583 | * duplicate the write operations while the dev replace |
| 5584 | * procedure is running. Since the copying of the old disk to |
| 5585 | * the new disk takes place at run time while the filesystem is |
| 5586 | * mounted writable, the regular write operations to the old |
| 5587 | * disk have to be duplicated to go to the new disk as well. |
| 5588 | * |
| 5589 | * Note that device->missing is handled by the caller, and that |
| 5590 | * the write to the old disk is already set up in the stripes |
| 5591 | * array. |
| 5592 | */ |
| 5593 | index_where_to_add = num_stripes; |
| 5594 | for (i = 0; i < num_stripes; i++) { |
| 5595 | if (bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5596 | /* write to new disk, too */ |
| 5597 | struct btrfs_bio_stripe *new = |
| 5598 | bbio->stripes + index_where_to_add; |
| 5599 | struct btrfs_bio_stripe *old = |
| 5600 | bbio->stripes + i; |
| 5601 | |
| 5602 | new->physical = old->physical; |
| 5603 | new->length = old->length; |
| 5604 | new->dev = dev_replace->tgtdev; |
| 5605 | bbio->tgtdev_map[i] = index_where_to_add; |
| 5606 | index_where_to_add++; |
| 5607 | max_errors++; |
| 5608 | tgtdev_indexes++; |
| 5609 | } |
| 5610 | } |
| 5611 | num_stripes = index_where_to_add; |
| 5612 | } else if (op == BTRFS_MAP_GET_READ_MIRRORS) { |
| 5613 | int index_srcdev = 0; |
| 5614 | int found = 0; |
| 5615 | u64 physical_of_found = 0; |
| 5616 | |
| 5617 | /* |
| 5618 | * During the dev-replace procedure, the target drive can also |
| 5619 | * be used to read data in case it is needed to repair a corrupt |
| 5620 | * block elsewhere. This is possible if the requested area is |
| 5621 | * left of the left cursor. In this area, the target drive is a |
| 5622 | * full copy of the source drive. |
| 5623 | */ |
| 5624 | for (i = 0; i < num_stripes; i++) { |
| 5625 | if (bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5626 | /* |
| 5627 | * In case of DUP, in order to keep it simple, |
| 5628 | * only add the mirror with the lowest physical |
| 5629 | * address |
| 5630 | */ |
| 5631 | if (found && |
| 5632 | physical_of_found <= |
| 5633 | bbio->stripes[i].physical) |
| 5634 | continue; |
| 5635 | index_srcdev = i; |
| 5636 | found = 1; |
| 5637 | physical_of_found = bbio->stripes[i].physical; |
| 5638 | } |
| 5639 | } |
| 5640 | if (found) { |
| 5641 | struct btrfs_bio_stripe *tgtdev_stripe = |
| 5642 | bbio->stripes + num_stripes; |
| 5643 | |
| 5644 | tgtdev_stripe->physical = physical_of_found; |
| 5645 | tgtdev_stripe->length = |
| 5646 | bbio->stripes[index_srcdev].length; |
| 5647 | tgtdev_stripe->dev = dev_replace->tgtdev; |
| 5648 | bbio->tgtdev_map[index_srcdev] = num_stripes; |
| 5649 | |
| 5650 | tgtdev_indexes++; |
| 5651 | num_stripes++; |
| 5652 | } |
| 5653 | } |
| 5654 | |
| 5655 | *num_stripes_ret = num_stripes; |
| 5656 | *max_errors_ret = max_errors; |
| 5657 | bbio->num_tgtdevs = tgtdev_indexes; |
| 5658 | *bbio_ret = bbio; |
| 5659 | } |
| 5660 | |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5661 | static bool need_full_stripe(enum btrfs_map_op op) |
| 5662 | { |
| 5663 | return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS); |
| 5664 | } |
| 5665 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5666 | static int __btrfs_map_block(struct btrfs_fs_info *fs_info, |
| 5667 | enum btrfs_map_op op, |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5668 | u64 logical, u64 *length, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5669 | struct btrfs_bio **bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5670 | int mirror_num, int need_raid_map) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5671 | { |
| 5672 | struct extent_map *em; |
| 5673 | struct map_lookup *map; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5674 | u64 offset; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5675 | u64 stripe_offset; |
| 5676 | u64 stripe_nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5677 | u64 stripe_len; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5678 | u32 stripe_index; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5679 | int i; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5680 | int ret = 0; |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5681 | int num_stripes; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 5682 | int max_errors = 0; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5683 | int tgtdev_indexes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5684 | struct btrfs_bio *bbio = NULL; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5685 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 5686 | int dev_replace_is_ongoing = 0; |
| 5687 | int num_alloc_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5688 | int patch_the_first_stripe_for_dev_replace = 0; |
| 5689 | u64 physical_to_patch_in_first_stripe = 0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5690 | u64 raid56_full_stripe_start = (u64)-1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5691 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5692 | if (op == BTRFS_MAP_DISCARD) |
| 5693 | return __btrfs_map_block_for_discard(fs_info, logical, |
| 5694 | *length, bbio_ret); |
| 5695 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5696 | em = get_chunk_map(fs_info, logical, *length); |
| 5697 | if (IS_ERR(em)) |
| 5698 | return PTR_ERR(em); |
Josef Bacik | 9bb9187 | 2013-04-19 23:45:33 -0400 | [diff] [blame] | 5699 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5700 | map = em->map_lookup; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5701 | offset = logical - em->start; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5702 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5703 | stripe_len = map->stripe_len; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5704 | stripe_nr = offset; |
| 5705 | /* |
| 5706 | * stripe_nr counts the total number of stripes we have to stride |
| 5707 | * to get to this block |
| 5708 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5709 | stripe_nr = div64_u64(stripe_nr, stripe_len); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5710 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5711 | stripe_offset = stripe_nr * stripe_len; |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 5712 | if (offset < stripe_offset) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 5713 | btrfs_crit(fs_info, |
| 5714 | "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] | 5715 | stripe_offset, offset, em->start, logical, |
| 5716 | stripe_len); |
| 5717 | free_extent_map(em); |
| 5718 | return -EINVAL; |
| 5719 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5720 | |
| 5721 | /* stripe_offset is the offset of this block in its stripe*/ |
| 5722 | stripe_offset = offset - stripe_offset; |
| 5723 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5724 | /* 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] | 5725 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5726 | unsigned long full_stripe_len = stripe_len * nr_data_stripes(map); |
| 5727 | raid56_full_stripe_start = offset; |
| 5728 | |
| 5729 | /* allow a write of a full stripe, but make sure we don't |
| 5730 | * allow straddling of stripes |
| 5731 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5732 | raid56_full_stripe_start = div64_u64(raid56_full_stripe_start, |
| 5733 | full_stripe_len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5734 | raid56_full_stripe_start *= full_stripe_len; |
| 5735 | } |
| 5736 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5737 | if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5738 | u64 max_len; |
| 5739 | /* For writes to RAID[56], allow a full stripeset across all disks. |
| 5740 | For other RAID types and for RAID[56] reads, just allow a single |
| 5741 | stripe (on a single disk). */ |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5742 | if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5743 | (op == BTRFS_MAP_WRITE)) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5744 | max_len = stripe_len * nr_data_stripes(map) - |
| 5745 | (offset - raid56_full_stripe_start); |
| 5746 | } else { |
| 5747 | /* we limit the length of each bio to what fits in a stripe */ |
| 5748 | max_len = stripe_len - stripe_offset; |
| 5749 | } |
| 5750 | *length = min_t(u64, em->len - offset, max_len); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5751 | } else { |
| 5752 | *length = em->len - offset; |
| 5753 | } |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5754 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5755 | /* This is for when we're called from btrfs_merge_bio_hook() and all |
| 5756 | it cares about is the length */ |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5757 | if (!bbio_ret) |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5758 | goto out; |
| 5759 | |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 5760 | btrfs_dev_replace_read_lock(dev_replace); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5761 | dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace); |
| 5762 | if (!dev_replace_is_ongoing) |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 5763 | btrfs_dev_replace_read_unlock(dev_replace); |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5764 | else |
| 5765 | btrfs_dev_replace_set_lock_blocking(dev_replace); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5766 | |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5767 | if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 && |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5768 | !need_full_stripe(op) && dev_replace->tgtdev != NULL) { |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5769 | ret = get_extra_mirror_from_replace(fs_info, logical, *length, |
| 5770 | dev_replace->srcdev->devid, |
| 5771 | &mirror_num, |
| 5772 | &physical_to_patch_in_first_stripe); |
| 5773 | if (ret) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5774 | goto out; |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5775 | else |
| 5776 | patch_the_first_stripe_for_dev_replace = 1; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5777 | } else if (mirror_num > map->num_stripes) { |
| 5778 | mirror_num = 0; |
| 5779 | } |
| 5780 | |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5781 | num_stripes = 1; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5782 | stripe_index = 0; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5783 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5784 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5785 | &stripe_index); |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5786 | if (!need_full_stripe(op)) |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 5787 | mirror_num = 1; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5788 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5789 | if (need_full_stripe(op)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5790 | num_stripes = map->num_stripes; |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5791 | else if (mirror_num) |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5792 | stripe_index = mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5793 | else { |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5794 | stripe_index = find_live_mirror(fs_info, map, 0, |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5795 | dev_replace_is_ongoing); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5796 | mirror_num = stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5797 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5798 | |
Chris Mason | 611f0e0 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5799 | } else if (map->type & BTRFS_BLOCK_GROUP_DUP) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5800 | if (need_full_stripe(op)) { |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5801 | num_stripes = map->num_stripes; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5802 | } else if (mirror_num) { |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5803 | stripe_index = mirror_num - 1; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5804 | } else { |
| 5805 | mirror_num = 1; |
| 5806 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5807 | |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5808 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5809 | u32 factor = map->num_stripes / map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5810 | |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5811 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5812 | stripe_index *= map->sub_stripes; |
| 5813 | |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5814 | if (need_full_stripe(op)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5815 | num_stripes = map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5816 | else if (mirror_num) |
| 5817 | stripe_index += mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5818 | else { |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 5819 | int old_stripe_index = stripe_index; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5820 | stripe_index = find_live_mirror(fs_info, map, |
| 5821 | stripe_index, |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5822 | dev_replace_is_ongoing); |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 5823 | mirror_num = stripe_index - old_stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5824 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5825 | |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5826 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5827 | if (need_raid_map && (need_full_stripe(op) || mirror_num > 1)) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5828 | /* push stripe_nr back to the start of the full stripe */ |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 5829 | stripe_nr = div64_u64(raid56_full_stripe_start, |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5830 | stripe_len * nr_data_stripes(map)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5831 | |
| 5832 | /* RAID[56] write or recovery. Return all stripes */ |
| 5833 | num_stripes = map->num_stripes; |
| 5834 | max_errors = nr_parity_stripes(map); |
| 5835 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5836 | *length = map->stripe_len; |
| 5837 | stripe_index = 0; |
| 5838 | stripe_offset = 0; |
| 5839 | } else { |
| 5840 | /* |
| 5841 | * Mirror #0 or #1 means the original data block. |
| 5842 | * Mirror #2 is RAID5 parity block. |
| 5843 | * Mirror #3 is RAID6 Q block. |
| 5844 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5845 | stripe_nr = div_u64_rem(stripe_nr, |
| 5846 | nr_data_stripes(map), &stripe_index); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5847 | if (mirror_num > 1) |
| 5848 | stripe_index = nr_data_stripes(map) + |
| 5849 | mirror_num - 2; |
| 5850 | |
| 5851 | /* We distribute the parity blocks across stripes */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5852 | div_u64_rem(stripe_nr + stripe_index, map->num_stripes, |
| 5853 | &stripe_index); |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5854 | if (!need_full_stripe(op) && mirror_num <= 1) |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 5855 | mirror_num = 1; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5856 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5857 | } else { |
| 5858 | /* |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5859 | * after this, stripe_nr is the number of stripes on this |
| 5860 | * device we have to walk to find the data, and stripe_index is |
| 5861 | * the number of our device in the stripe array |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5862 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5863 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5864 | &stripe_index); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5865 | mirror_num = stripe_index + 1; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5866 | } |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 5867 | if (stripe_index >= map->num_stripes) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 5868 | btrfs_crit(fs_info, |
| 5869 | "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] | 5870 | stripe_index, map->num_stripes); |
| 5871 | ret = -EINVAL; |
| 5872 | goto out; |
| 5873 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5874 | |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5875 | num_alloc_stripes = num_stripes; |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5876 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) { |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5877 | if (op == BTRFS_MAP_WRITE) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5878 | num_alloc_stripes <<= 1; |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5879 | if (op == BTRFS_MAP_GET_READ_MIRRORS) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5880 | num_alloc_stripes++; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5881 | tgtdev_indexes = num_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5882 | } |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5883 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5884 | bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5885 | if (!bbio) { |
| 5886 | ret = -ENOMEM; |
| 5887 | goto out; |
| 5888 | } |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5889 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5890 | bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5891 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5892 | /* build raid_map */ |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5893 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map && |
| 5894 | (need_full_stripe(op) || mirror_num > 1)) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5895 | u64 tmp; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5896 | unsigned rot; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5897 | |
| 5898 | bbio->raid_map = (u64 *)((void *)bbio->stripes + |
| 5899 | sizeof(struct btrfs_bio_stripe) * |
| 5900 | num_alloc_stripes + |
| 5901 | sizeof(int) * tgtdev_indexes); |
| 5902 | |
| 5903 | /* Work out the disk rotation on this stripe-set */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5904 | div_u64_rem(stripe_nr, num_stripes, &rot); |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5905 | |
| 5906 | /* Fill in the logical address of each stripe */ |
| 5907 | tmp = stripe_nr * nr_data_stripes(map); |
| 5908 | for (i = 0; i < nr_data_stripes(map); i++) |
| 5909 | bbio->raid_map[(i+rot) % num_stripes] = |
| 5910 | em->start + (tmp + i) * map->stripe_len; |
| 5911 | |
| 5912 | bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE; |
| 5913 | if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
| 5914 | bbio->raid_map[(i+rot+1) % num_stripes] = |
| 5915 | RAID6_Q_STRIPE; |
| 5916 | } |
| 5917 | |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5918 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5919 | for (i = 0; i < num_stripes; i++) { |
| 5920 | bbio->stripes[i].physical = |
| 5921 | map->stripes[stripe_index].physical + |
| 5922 | stripe_offset + |
| 5923 | stripe_nr * map->stripe_len; |
| 5924 | bbio->stripes[i].dev = |
| 5925 | map->stripes[stripe_index].dev; |
| 5926 | stripe_index++; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5927 | } |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5928 | |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5929 | if (need_full_stripe(op)) |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5930 | max_errors = btrfs_chunk_max_errors(map); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5931 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5932 | if (bbio->raid_map) |
| 5933 | sort_parity_stripes(bbio, num_stripes); |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5934 | |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 5935 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL && |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5936 | need_full_stripe(op)) { |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 5937 | handle_ops_on_dev_replace(op, &bbio, dev_replace, &num_stripes, |
| 5938 | &max_errors); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5939 | } |
| 5940 | |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5941 | *bbio_ret = bbio; |
Zhao Lei | 10f1190 | 2015-01-20 15:11:43 +0800 | [diff] [blame] | 5942 | bbio->map_type = map->type; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5943 | bbio->num_stripes = num_stripes; |
| 5944 | bbio->max_errors = max_errors; |
| 5945 | bbio->mirror_num = mirror_num; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5946 | |
| 5947 | /* |
| 5948 | * this is the case that REQ_READ && dev_replace_is_ongoing && |
| 5949 | * mirror_num == num_stripes + 1 && dev_replace target drive is |
| 5950 | * available as a mirror |
| 5951 | */ |
| 5952 | if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) { |
| 5953 | WARN_ON(num_stripes > 1); |
| 5954 | bbio->stripes[0].dev = dev_replace->tgtdev; |
| 5955 | bbio->stripes[0].physical = physical_to_patch_in_first_stripe; |
| 5956 | bbio->mirror_num = map->num_stripes + 1; |
| 5957 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5958 | out: |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5959 | if (dev_replace_is_ongoing) { |
| 5960 | btrfs_dev_replace_clear_lock_blocking(dev_replace); |
David Sterba | 7e79cb8 | 2018-03-24 02:11:38 +0100 | [diff] [blame] | 5961 | btrfs_dev_replace_read_unlock(dev_replace); |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5962 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5963 | free_extent_map(em); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5964 | return ret; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5965 | } |
| 5966 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5967 | 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] | 5968 | u64 logical, u64 *length, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5969 | struct btrfs_bio **bbio_ret, int mirror_num) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5970 | { |
Mike Christie | b3d3fa5 | 2016-06-05 14:31:53 -0500 | [diff] [blame] | 5971 | return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5972 | mirror_num, 0); |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5973 | } |
| 5974 | |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 5975 | /* For Scrub/replace */ |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5976 | 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] | 5977 | u64 logical, u64 *length, |
David Sterba | 825ad4c | 2017-03-28 14:45:22 +0200 | [diff] [blame] | 5978 | struct btrfs_bio **bbio_ret) |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 5979 | { |
David Sterba | 825ad4c | 2017-03-28 14:45:22 +0200 | [diff] [blame] | 5980 | 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] | 5981 | } |
| 5982 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 5983 | int btrfs_rmap_block(struct btrfs_fs_info *fs_info, |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5984 | u64 chunk_start, u64 physical, u64 devid, |
| 5985 | u64 **logical, int *naddrs, int *stripe_len) |
| 5986 | { |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5987 | struct extent_map *em; |
| 5988 | struct map_lookup *map; |
| 5989 | u64 *buf; |
| 5990 | u64 bytenr; |
| 5991 | u64 length; |
| 5992 | u64 stripe_nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5993 | u64 rmap_len; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5994 | int i, j, nr = 0; |
| 5995 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5996 | em = get_chunk_map(fs_info, chunk_start, 1); |
| 5997 | if (IS_ERR(em)) |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 5998 | return -EIO; |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 5999 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 6000 | map = em->map_lookup; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6001 | length = em->len; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6002 | rmap_len = map->stripe_len; |
| 6003 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6004 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6005 | length = div_u64(length, map->num_stripes / map->sub_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6006 | else if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6007 | length = div_u64(length, map->num_stripes); |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 6008 | else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6009 | length = div_u64(length, nr_data_stripes(map)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6010 | rmap_len = map->stripe_len * nr_data_stripes(map); |
| 6011 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6012 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 6013 | buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6014 | BUG_ON(!buf); /* -ENOMEM */ |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6015 | |
| 6016 | for (i = 0; i < map->num_stripes; i++) { |
| 6017 | if (devid && map->stripes[i].dev->devid != devid) |
| 6018 | continue; |
| 6019 | if (map->stripes[i].physical > physical || |
| 6020 | map->stripes[i].physical + length <= physical) |
| 6021 | continue; |
| 6022 | |
| 6023 | stripe_nr = physical - map->stripes[i].physical; |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 6024 | stripe_nr = div64_u64(stripe_nr, map->stripe_len); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6025 | |
| 6026 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
| 6027 | stripe_nr = stripe_nr * map->num_stripes + i; |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6028 | stripe_nr = div_u64(stripe_nr, map->sub_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6029 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
| 6030 | stripe_nr = stripe_nr * map->num_stripes + i; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6031 | } /* else if RAID[56], multiply by nr_data_stripes(). |
| 6032 | * Alternatively, just use rmap_len below instead of |
| 6033 | * map->stripe_len */ |
| 6034 | |
| 6035 | bytenr = chunk_start + stripe_nr * rmap_len; |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 6036 | WARN_ON(nr >= map->num_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6037 | for (j = 0; j < nr; j++) { |
| 6038 | if (buf[j] == bytenr) |
| 6039 | break; |
| 6040 | } |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 6041 | if (j == nr) { |
| 6042 | WARN_ON(nr >= map->num_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6043 | buf[nr++] = bytenr; |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 6044 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6045 | } |
| 6046 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6047 | *logical = buf; |
| 6048 | *naddrs = nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6049 | *stripe_len = rmap_len; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6050 | |
| 6051 | free_extent_map(em); |
| 6052 | return 0; |
| 6053 | } |
| 6054 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6055 | 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] | 6056 | { |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 6057 | bio->bi_private = bbio->private; |
| 6058 | bio->bi_end_io = bbio->end_io; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6059 | bio_endio(bio); |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 6060 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 6061 | btrfs_put_bbio(bbio); |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6062 | } |
| 6063 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6064 | static void btrfs_end_bio(struct bio *bio) |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6065 | { |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6066 | struct btrfs_bio *bbio = bio->bi_private; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6067 | int is_orig_bio = 0; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6068 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6069 | if (bio->bi_status) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6070 | atomic_inc(&bbio->error); |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6071 | if (bio->bi_status == BLK_STS_IOERR || |
| 6072 | bio->bi_status == BLK_STS_TARGET) { |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6073 | unsigned int stripe_index = |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6074 | btrfs_io_bio(bio)->stripe_index; |
Zhao Lei | 65f5333 | 2015-06-08 20:05:50 +0800 | [diff] [blame] | 6075 | struct btrfs_device *dev; |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6076 | |
| 6077 | BUG_ON(stripe_index >= bbio->num_stripes); |
| 6078 | dev = bbio->stripes[stripe_index].dev; |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6079 | if (dev->bdev) { |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6080 | if (bio_op(bio) == REQ_OP_WRITE) |
Anand Jain | 1cb34c8 | 2017-10-21 01:45:33 +0800 | [diff] [blame] | 6081 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6082 | BTRFS_DEV_STAT_WRITE_ERRS); |
| 6083 | else |
Anand Jain | 1cb34c8 | 2017-10-21 01:45:33 +0800 | [diff] [blame] | 6084 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6085 | BTRFS_DEV_STAT_READ_ERRS); |
Christoph Hellwig | 70fd761 | 2016-11-01 07:40:10 -0600 | [diff] [blame] | 6086 | if (bio->bi_opf & REQ_PREFLUSH) |
Anand Jain | 1cb34c8 | 2017-10-21 01:45:33 +0800 | [diff] [blame] | 6087 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6088 | BTRFS_DEV_STAT_FLUSH_ERRS); |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6089 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6090 | } |
| 6091 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6092 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6093 | if (bio == bbio->orig_bio) |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6094 | is_orig_bio = 1; |
| 6095 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6096 | btrfs_bio_counter_dec(bbio->fs_info); |
| 6097 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6098 | if (atomic_dec_and_test(&bbio->stripes_pending)) { |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6099 | if (!is_orig_bio) { |
| 6100 | bio_put(bio); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6101 | bio = bbio->orig_bio; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6102 | } |
Muthu Kumar | c7b22bb | 2014-01-08 14:19:52 -0700 | [diff] [blame] | 6103 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6104 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6105 | /* only send an error to the higher layers if it is |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6106 | * beyond the tolerance of the btrfs bio |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6107 | */ |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6108 | if (atomic_read(&bbio->error) > bbio->max_errors) { |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6109 | bio->bi_status = BLK_STS_IOERR; |
Chris Mason | 5dbc8fc | 2011-12-09 11:07:37 -0500 | [diff] [blame] | 6110 | } else { |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 6111 | /* |
| 6112 | * this bio is actually up to date, we didn't |
| 6113 | * go over the max number of errors |
| 6114 | */ |
Anand Jain | 2dbe0c7 | 2017-10-14 08:35:56 +0800 | [diff] [blame] | 6115 | bio->bi_status = BLK_STS_OK; |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 6116 | } |
Miao Xie | c55f139 | 2014-06-19 10:42:54 +0800 | [diff] [blame] | 6117 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6118 | btrfs_end_bbio(bbio, bio); |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6119 | } else if (!is_orig_bio) { |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6120 | bio_put(bio); |
| 6121 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6122 | } |
| 6123 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6124 | /* |
| 6125 | * see run_scheduled_bios for a description of why bios are collected for |
| 6126 | * async submit. |
| 6127 | * |
| 6128 | * This will add one bio to the pending list for a device and make sure |
| 6129 | * the work struct is scheduled. |
| 6130 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6131 | static noinline void btrfs_schedule_bio(struct btrfs_device *device, |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6132 | struct bio *bio) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6133 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6134 | struct btrfs_fs_info *fs_info = device->fs_info; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6135 | int should_queue = 1; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6136 | struct btrfs_pending_bios *pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6137 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6138 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state) || |
| 6139 | !device->bdev) { |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6140 | bio_io_error(bio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6141 | return; |
| 6142 | } |
| 6143 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6144 | /* don't bother with additional async steps for reads, right now */ |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6145 | if (bio_op(bio) == REQ_OP_READ) { |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6146 | btrfsic_submit_bio(bio); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6147 | return; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6148 | } |
| 6149 | |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 6150 | WARN_ON(bio->bi_next); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6151 | bio->bi_next = NULL; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6152 | |
| 6153 | spin_lock(&device->io_lock); |
Christoph Hellwig | 67f055c | 2016-11-01 07:40:06 -0600 | [diff] [blame] | 6154 | if (op_is_sync(bio->bi_opf)) |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6155 | pending_bios = &device->pending_sync_bios; |
| 6156 | else |
| 6157 | pending_bios = &device->pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6158 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6159 | if (pending_bios->tail) |
| 6160 | pending_bios->tail->bi_next = bio; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6161 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6162 | pending_bios->tail = bio; |
| 6163 | if (!pending_bios->head) |
| 6164 | pending_bios->head = bio; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6165 | if (device->running_pending) |
| 6166 | should_queue = 0; |
| 6167 | |
| 6168 | spin_unlock(&device->io_lock); |
| 6169 | |
| 6170 | if (should_queue) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6171 | btrfs_queue_work(fs_info->submit_workers, &device->work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6172 | } |
| 6173 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6174 | static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio, |
| 6175 | u64 physical, int dev_nr, int async) |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6176 | { |
| 6177 | struct btrfs_device *dev = bbio->stripes[dev_nr].dev; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6178 | struct btrfs_fs_info *fs_info = bbio->fs_info; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6179 | |
| 6180 | bio->bi_private = bbio; |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6181 | btrfs_io_bio(bio)->stripe_index = dev_nr; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6182 | bio->bi_end_io = btrfs_end_bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6183 | bio->bi_iter.bi_sector = physical >> 9; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6184 | #ifdef DEBUG |
| 6185 | { |
| 6186 | struct rcu_string *name; |
| 6187 | |
| 6188 | rcu_read_lock(); |
| 6189 | name = rcu_dereference(dev->name); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6190 | btrfs_debug(fs_info, |
| 6191 | "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u", |
| 6192 | bio_op(bio), bio->bi_opf, |
| 6193 | (u64)bio->bi_iter.bi_sector, |
| 6194 | (u_long)dev->bdev->bd_dev, name->str, dev->devid, |
| 6195 | bio->bi_iter.bi_size); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6196 | rcu_read_unlock(); |
| 6197 | } |
| 6198 | #endif |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 6199 | bio_set_dev(bio, dev->bdev); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6200 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6201 | btrfs_bio_counter_inc_noblocked(fs_info); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6202 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6203 | if (async) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6204 | btrfs_schedule_bio(dev, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6205 | else |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6206 | btrfsic_submit_bio(bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6207 | } |
| 6208 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6209 | static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical) |
| 6210 | { |
| 6211 | atomic_inc(&bbio->error); |
| 6212 | if (atomic_dec_and_test(&bbio->stripes_pending)) { |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6213 | /* Should be the original bio. */ |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6214 | WARN_ON(bio != bbio->orig_bio); |
| 6215 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6216 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6217 | bio->bi_iter.bi_sector = logical >> 9; |
Anand Jain | 102ed2c | 2017-10-14 08:34:02 +0800 | [diff] [blame] | 6218 | if (atomic_read(&bbio->error) > bbio->max_errors) |
| 6219 | bio->bi_status = BLK_STS_IOERR; |
| 6220 | else |
| 6221 | bio->bi_status = BLK_STS_OK; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6222 | btrfs_end_bbio(bbio, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6223 | } |
| 6224 | } |
| 6225 | |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6226 | blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio, |
| 6227 | int mirror_num, int async_submit) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6228 | { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6229 | struct btrfs_device *dev; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6230 | struct bio *first_bio = bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6231 | u64 logical = (u64)bio->bi_iter.bi_sector << 9; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6232 | u64 length = 0; |
| 6233 | u64 map_length; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6234 | int ret; |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6235 | int dev_nr; |
| 6236 | int total_devs; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6237 | struct btrfs_bio *bbio = NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6238 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6239 | length = bio->bi_iter.bi_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6240 | map_length = length; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6241 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6242 | btrfs_bio_counter_inc_blocked(fs_info); |
Liu Bo | bd7d63c | 2017-09-19 17:50:09 -0600 | [diff] [blame] | 6243 | ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical, |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6244 | &map_length, &bbio, mirror_num, 1); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6245 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6246 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6247 | return errno_to_blk_status(ret); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6248 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6249 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6250 | total_devs = bbio->num_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6251 | bbio->orig_bio = first_bio; |
| 6252 | bbio->private = first_bio->bi_private; |
| 6253 | bbio->end_io = first_bio->bi_end_io; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6254 | bbio->fs_info = fs_info; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6255 | atomic_set(&bbio->stripes_pending, bbio->num_stripes); |
| 6256 | |
Zhao Lei | ad1ba2a | 2015-12-15 18:18:09 +0800 | [diff] [blame] | 6257 | if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6258 | ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6259 | /* In this case, map_length has been set to the length of |
| 6260 | a single stripe; not the whole write */ |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6261 | if (bio_op(bio) == REQ_OP_WRITE) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6262 | ret = raid56_parity_write(fs_info, bio, bbio, |
| 6263 | map_length); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6264 | } else { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6265 | ret = raid56_parity_recover(fs_info, bio, bbio, |
| 6266 | map_length, mirror_num, 1); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6267 | } |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 6268 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6269 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6270 | return errno_to_blk_status(ret); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6271 | } |
| 6272 | |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6273 | if (map_length < length) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6274 | btrfs_crit(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6275 | "mapping failed logical %llu bio len %llu len %llu", |
| 6276 | logical, length, map_length); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6277 | BUG(); |
| 6278 | } |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6279 | |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6280 | for (dev_nr = 0; dev_nr < total_devs; dev_nr++) { |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6281 | dev = bbio->stripes[dev_nr].dev; |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6282 | if (!dev || !dev->bdev || |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 6283 | (bio_op(first_bio) == REQ_OP_WRITE && |
| 6284 | !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))) { |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6285 | bbio_error(bbio, first_bio, logical); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6286 | continue; |
| 6287 | } |
| 6288 | |
David Sterba | 3aa8e07 | 2017-06-02 17:38:30 +0200 | [diff] [blame] | 6289 | if (dev_nr < total_devs - 1) |
David Sterba | 8b6c1d5 | 2017-06-02 17:48:13 +0200 | [diff] [blame] | 6290 | bio = btrfs_bio_clone(first_bio); |
David Sterba | 3aa8e07 | 2017-06-02 17:38:30 +0200 | [diff] [blame] | 6291 | else |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6292 | bio = first_bio; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 6293 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6294 | submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical, |
| 6295 | dev_nr, async_submit); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6296 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6297 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6298 | return BLK_STS_OK; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6299 | } |
| 6300 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6301 | 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] | 6302 | u8 *uuid, u8 *fsid) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6303 | { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6304 | struct btrfs_device *device; |
| 6305 | struct btrfs_fs_devices *cur_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6306 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6307 | cur_devices = fs_info->fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6308 | while (cur_devices) { |
| 6309 | if (!fsid || |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6310 | !memcmp(cur_devices->fsid, fsid, BTRFS_FSID_SIZE)) { |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 6311 | device = find_device(cur_devices, devid, uuid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6312 | if (device) |
| 6313 | return device; |
| 6314 | } |
| 6315 | cur_devices = cur_devices->seed; |
| 6316 | } |
| 6317 | return NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6318 | } |
| 6319 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6320 | 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] | 6321 | u64 devid, u8 *dev_uuid) |
| 6322 | { |
| 6323 | struct btrfs_device *device; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6324 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6325 | device = btrfs_alloc_device(NULL, &devid, dev_uuid); |
| 6326 | if (IS_ERR(device)) |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6327 | return device; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6328 | |
| 6329 | list_add(&device->dev_list, &fs_devices->devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6330 | device->fs_devices = fs_devices; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6331 | fs_devices->num_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6332 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6333 | set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6334 | fs_devices->missing_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6335 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6336 | return device; |
| 6337 | } |
| 6338 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6339 | /** |
| 6340 | * btrfs_alloc_device - allocate struct btrfs_device |
| 6341 | * @fs_info: used only for generating a new devid, can be NULL if |
| 6342 | * devid is provided (i.e. @devid != NULL). |
| 6343 | * @devid: a pointer to devid for this device. If NULL a new devid |
| 6344 | * is generated. |
| 6345 | * @uuid: a pointer to UUID for this device. If NULL a new UUID |
| 6346 | * is generated. |
| 6347 | * |
| 6348 | * 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] | 6349 | * on error. Returned struct is not linked onto any lists and must be |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 6350 | * destroyed with btrfs_free_device. |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6351 | */ |
| 6352 | struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info, |
| 6353 | const u64 *devid, |
| 6354 | const u8 *uuid) |
| 6355 | { |
| 6356 | struct btrfs_device *dev; |
| 6357 | u64 tmp; |
| 6358 | |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6359 | if (WARN_ON(!devid && !fs_info)) |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6360 | return ERR_PTR(-EINVAL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6361 | |
| 6362 | dev = __alloc_device(); |
| 6363 | if (IS_ERR(dev)) |
| 6364 | return dev; |
| 6365 | |
| 6366 | if (devid) |
| 6367 | tmp = *devid; |
| 6368 | else { |
| 6369 | int ret; |
| 6370 | |
| 6371 | ret = find_next_devid(fs_info, &tmp); |
| 6372 | if (ret) { |
David Sterba | a425f9d | 2018-03-20 15:47:33 +0100 | [diff] [blame] | 6373 | btrfs_free_device(dev); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6374 | return ERR_PTR(ret); |
| 6375 | } |
| 6376 | } |
| 6377 | dev->devid = tmp; |
| 6378 | |
| 6379 | if (uuid) |
| 6380 | memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE); |
| 6381 | else |
| 6382 | generate_random_uuid(dev->uuid); |
| 6383 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 6384 | btrfs_init_work(&dev->work, btrfs_submit_helper, |
| 6385 | pending_bios_fn, NULL, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6386 | |
| 6387 | return dev; |
| 6388 | } |
| 6389 | |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6390 | /* Return -EIO if any error, otherwise return 0. */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6391 | static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6392 | struct extent_buffer *leaf, |
| 6393 | struct btrfs_chunk *chunk, u64 logical) |
| 6394 | { |
| 6395 | u64 length; |
| 6396 | u64 stripe_len; |
| 6397 | u16 num_stripes; |
| 6398 | u16 sub_stripes; |
| 6399 | u64 type; |
| 6400 | |
| 6401 | length = btrfs_chunk_length(leaf, chunk); |
| 6402 | stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
| 6403 | num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 6404 | sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); |
| 6405 | type = btrfs_chunk_type(leaf, chunk); |
| 6406 | |
| 6407 | if (!num_stripes) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6408 | btrfs_err(fs_info, "invalid chunk num_stripes: %u", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6409 | num_stripes); |
| 6410 | return -EIO; |
| 6411 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6412 | if (!IS_ALIGNED(logical, fs_info->sectorsize)) { |
| 6413 | btrfs_err(fs_info, "invalid chunk logical %llu", logical); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6414 | return -EIO; |
| 6415 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6416 | if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) { |
| 6417 | btrfs_err(fs_info, "invalid chunk sectorsize %u", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6418 | btrfs_chunk_sector_size(leaf, chunk)); |
| 6419 | return -EIO; |
| 6420 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6421 | if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) { |
| 6422 | btrfs_err(fs_info, "invalid chunk length %llu", length); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6423 | return -EIO; |
| 6424 | } |
| 6425 | if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6426 | btrfs_err(fs_info, "invalid chunk stripe length: %llu", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6427 | stripe_len); |
| 6428 | return -EIO; |
| 6429 | } |
| 6430 | if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) & |
| 6431 | type) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6432 | btrfs_err(fs_info, "unrecognized chunk type: %llu", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6433 | ~(BTRFS_BLOCK_GROUP_TYPE_MASK | |
| 6434 | BTRFS_BLOCK_GROUP_PROFILE_MASK) & |
| 6435 | btrfs_chunk_type(leaf, chunk)); |
| 6436 | return -EIO; |
| 6437 | } |
| 6438 | if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) || |
| 6439 | (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) || |
| 6440 | (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) || |
| 6441 | (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) || |
| 6442 | (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) || |
| 6443 | ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 && |
| 6444 | num_stripes != 1)) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6445 | btrfs_err(fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6446 | "invalid num_stripes:sub_stripes %u:%u for profile %llu", |
| 6447 | num_stripes, sub_stripes, |
| 6448 | type & BTRFS_BLOCK_GROUP_PROFILE_MASK); |
| 6449 | return -EIO; |
| 6450 | } |
| 6451 | |
| 6452 | return 0; |
| 6453 | } |
| 6454 | |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6455 | static void btrfs_report_missing_device(struct btrfs_fs_info *fs_info, |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6456 | u64 devid, u8 *uuid, bool error) |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6457 | { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6458 | if (error) |
| 6459 | btrfs_err_rl(fs_info, "devid %llu uuid %pU is missing", |
| 6460 | devid, uuid); |
| 6461 | else |
| 6462 | btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing", |
| 6463 | devid, uuid); |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6464 | } |
| 6465 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6466 | 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] | 6467 | struct extent_buffer *leaf, |
| 6468 | struct btrfs_chunk *chunk) |
| 6469 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6470 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6471 | struct map_lookup *map; |
| 6472 | struct extent_map *em; |
| 6473 | u64 logical; |
| 6474 | u64 length; |
| 6475 | u64 devid; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6476 | u8 uuid[BTRFS_UUID_SIZE]; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6477 | int num_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6478 | int ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6479 | int i; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6480 | |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 6481 | logical = key->offset; |
| 6482 | length = btrfs_chunk_length(leaf, chunk); |
Qu Wenruo | f04b772 | 2015-12-15 09:14:37 +0800 | [diff] [blame] | 6483 | num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6484 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6485 | ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6486 | if (ret) |
| 6487 | return ret; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6488 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6489 | read_lock(&map_tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6490 | em = lookup_extent_mapping(&map_tree->map_tree, logical, 1); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6491 | read_unlock(&map_tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6492 | |
| 6493 | /* already mapped? */ |
| 6494 | if (em && em->start <= logical && em->start + em->len > logical) { |
| 6495 | free_extent_map(em); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6496 | return 0; |
| 6497 | } else if (em) { |
| 6498 | free_extent_map(em); |
| 6499 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6500 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 6501 | em = alloc_extent_map(); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6502 | if (!em) |
| 6503 | return -ENOMEM; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6504 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6505 | if (!map) { |
| 6506 | free_extent_map(em); |
| 6507 | return -ENOMEM; |
| 6508 | } |
| 6509 | |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 6510 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 6511 | em->map_lookup = map; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6512 | em->start = logical; |
| 6513 | em->len = length; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 6514 | em->orig_start = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6515 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6516 | em->block_len = em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6517 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6518 | map->num_stripes = num_stripes; |
| 6519 | map->io_width = btrfs_chunk_io_width(leaf, chunk); |
| 6520 | map->io_align = btrfs_chunk_io_align(leaf, chunk); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6521 | map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
| 6522 | map->type = btrfs_chunk_type(leaf, chunk); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6523 | map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6524 | for (i = 0; i < num_stripes; i++) { |
| 6525 | map->stripes[i].physical = |
| 6526 | btrfs_stripe_offset_nr(leaf, chunk, i); |
| 6527 | devid = btrfs_stripe_devid_nr(leaf, chunk, i); |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6528 | read_extent_buffer(leaf, uuid, (unsigned long) |
| 6529 | btrfs_stripe_dev_uuid_nr(chunk, i), |
| 6530 | BTRFS_UUID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6531 | map->stripes[i].dev = btrfs_find_device(fs_info, devid, |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6532 | uuid, NULL); |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 6533 | if (!map->stripes[i].dev && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6534 | !btrfs_test_opt(fs_info, DEGRADED)) { |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6535 | free_extent_map(em); |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6536 | btrfs_report_missing_device(fs_info, devid, uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 6537 | return -ENOENT; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6538 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6539 | if (!map->stripes[i].dev) { |
| 6540 | map->stripes[i].dev = |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6541 | add_missing_dev(fs_info->fs_devices, devid, |
| 6542 | uuid); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6543 | if (IS_ERR(map->stripes[i].dev)) { |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6544 | free_extent_map(em); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6545 | btrfs_err(fs_info, |
| 6546 | "failed to init missing dev %llu: %ld", |
| 6547 | devid, PTR_ERR(map->stripes[i].dev)); |
| 6548 | return PTR_ERR(map->stripes[i].dev); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6549 | } |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6550 | btrfs_report_missing_device(fs_info, devid, uuid, false); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6551 | } |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 6552 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 6553 | &(map->stripes[i].dev->dev_state)); |
| 6554 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6555 | } |
| 6556 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6557 | write_lock(&map_tree->map_tree.lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 6558 | ret = add_extent_mapping(&map_tree->map_tree, em, 0); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6559 | write_unlock(&map_tree->map_tree.lock); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6560 | BUG_ON(ret); /* Tree corruption */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6561 | free_extent_map(em); |
| 6562 | |
| 6563 | return 0; |
| 6564 | } |
| 6565 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6566 | static void fill_device_from_item(struct extent_buffer *leaf, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6567 | struct btrfs_dev_item *dev_item, |
| 6568 | struct btrfs_device *device) |
| 6569 | { |
| 6570 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6571 | |
| 6572 | device->devid = btrfs_device_id(leaf, dev_item); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 6573 | device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item); |
| 6574 | device->total_bytes = device->disk_total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 6575 | device->commit_total_bytes = device->disk_total_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6576 | device->bytes_used = btrfs_device_bytes_used(leaf, dev_item); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 6577 | device->commit_bytes_used = device->bytes_used; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6578 | device->type = btrfs_device_type(leaf, dev_item); |
| 6579 | device->io_align = btrfs_device_io_align(leaf, dev_item); |
| 6580 | device->io_width = btrfs_device_io_width(leaf, dev_item); |
| 6581 | device->sector_size = btrfs_device_sector_size(leaf, dev_item); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 6582 | WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 6583 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6584 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 6585 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 6586 | read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6587 | } |
| 6588 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6589 | 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] | 6590 | u8 *fsid) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6591 | { |
| 6592 | struct btrfs_fs_devices *fs_devices; |
| 6593 | int ret; |
| 6594 | |
David Sterba | a32bf9a | 2018-03-16 02:21:22 +0100 | [diff] [blame] | 6595 | lockdep_assert_held(&uuid_mutex); |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 6596 | ASSERT(fsid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6597 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6598 | fs_devices = fs_info->fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6599 | while (fs_devices) { |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6600 | if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE)) |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6601 | return fs_devices; |
| 6602 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6603 | fs_devices = fs_devices->seed; |
| 6604 | } |
| 6605 | |
| 6606 | fs_devices = find_fsid(fsid); |
| 6607 | if (!fs_devices) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6608 | if (!btrfs_test_opt(fs_info, DEGRADED)) |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6609 | return ERR_PTR(-ENOENT); |
| 6610 | |
| 6611 | fs_devices = alloc_fs_devices(fsid); |
| 6612 | if (IS_ERR(fs_devices)) |
| 6613 | return fs_devices; |
| 6614 | |
| 6615 | fs_devices->seeding = 1; |
| 6616 | fs_devices->opened = 1; |
| 6617 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6618 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6619 | |
| 6620 | fs_devices = clone_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6621 | if (IS_ERR(fs_devices)) |
| 6622 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6623 | |
Anand Jain | 897fb57 | 2018-04-12 10:29:28 +0800 | [diff] [blame] | 6624 | ret = open_fs_devices(fs_devices, FMODE_READ, fs_info->bdev_holder); |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 6625 | if (ret) { |
| 6626 | free_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6627 | fs_devices = ERR_PTR(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6628 | goto out; |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 6629 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6630 | |
| 6631 | if (!fs_devices->seeding) { |
Anand Jain | 0226e0e | 2018-04-12 10:29:27 +0800 | [diff] [blame] | 6632 | close_fs_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6633 | free_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6634 | fs_devices = ERR_PTR(-EINVAL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6635 | goto out; |
| 6636 | } |
| 6637 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6638 | fs_devices->seed = fs_info->fs_devices->seed; |
| 6639 | fs_info->fs_devices->seed = fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6640 | out: |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6641 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6642 | } |
| 6643 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6644 | static int read_one_dev(struct btrfs_fs_info *fs_info, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6645 | struct extent_buffer *leaf, |
| 6646 | struct btrfs_dev_item *dev_item) |
| 6647 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6648 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6649 | struct btrfs_device *device; |
| 6650 | u64 devid; |
| 6651 | int ret; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6652 | u8 fs_uuid[BTRFS_FSID_SIZE]; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6653 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 6654 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6655 | devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 6656 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6657 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 6658 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6659 | BTRFS_FSID_SIZE); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6660 | |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6661 | if (memcmp(fs_uuid, fs_info->fsid, BTRFS_FSID_SIZE)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6662 | fs_devices = open_seed_devices(fs_info, fs_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6663 | if (IS_ERR(fs_devices)) |
| 6664 | return PTR_ERR(fs_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6665 | } |
| 6666 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6667 | device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6668 | if (!device) { |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6669 | if (!btrfs_test_opt(fs_info, DEGRADED)) { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6670 | btrfs_report_missing_device(fs_info, devid, |
| 6671 | dev_uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 6672 | return -ENOENT; |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6673 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6674 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6675 | device = add_missing_dev(fs_devices, devid, dev_uuid); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6676 | if (IS_ERR(device)) { |
| 6677 | btrfs_err(fs_info, |
| 6678 | "failed to add missing dev %llu: %ld", |
| 6679 | devid, PTR_ERR(device)); |
| 6680 | return PTR_ERR(device); |
| 6681 | } |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6682 | btrfs_report_missing_device(fs_info, devid, dev_uuid, false); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6683 | } else { |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6684 | if (!device->bdev) { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6685 | if (!btrfs_test_opt(fs_info, DEGRADED)) { |
| 6686 | btrfs_report_missing_device(fs_info, |
| 6687 | devid, dev_uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 6688 | return -ENOENT; |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6689 | } |
| 6690 | btrfs_report_missing_device(fs_info, devid, |
| 6691 | dev_uuid, false); |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6692 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6693 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6694 | if (!device->bdev && |
| 6695 | !test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6696 | /* |
| 6697 | * this happens when a device that was properly setup |
| 6698 | * in the device info lists suddenly goes bad. |
| 6699 | * device->bdev is NULL, and so we have to set |
| 6700 | * device->missing to one here |
| 6701 | */ |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6702 | device->fs_devices->missing_devices++; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6703 | set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6704 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6705 | |
| 6706 | /* Move the device to its own fs_devices */ |
| 6707 | if (device->fs_devices != fs_devices) { |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6708 | ASSERT(test_bit(BTRFS_DEV_STATE_MISSING, |
| 6709 | &device->dev_state)); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6710 | |
| 6711 | list_move(&device->dev_list, &fs_devices->devices); |
| 6712 | device->fs_devices->num_devices--; |
| 6713 | fs_devices->num_devices++; |
| 6714 | |
| 6715 | device->fs_devices->missing_devices--; |
| 6716 | fs_devices->missing_devices++; |
| 6717 | |
| 6718 | device->fs_devices = fs_devices; |
| 6719 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6720 | } |
| 6721 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6722 | if (device->fs_devices != fs_info->fs_devices) { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 6723 | BUG_ON(test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6724 | if (device->generation != |
| 6725 | btrfs_device_generation(leaf, dev_item)) |
| 6726 | return -EINVAL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 6727 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6728 | |
| 6729 | fill_device_from_item(leaf, dev_item, device); |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 6730 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 6731 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 6732 | !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6733 | device->fs_devices->total_rw_bytes += device->total_bytes; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 6734 | atomic64_add(device->total_bytes - device->bytes_used, |
| 6735 | &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 6736 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6737 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6738 | return ret; |
| 6739 | } |
| 6740 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 6741 | int btrfs_read_sys_array(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6742 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 6743 | struct btrfs_root *root = fs_info->tree_root; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6744 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6745 | struct extent_buffer *sb; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6746 | struct btrfs_disk_key *disk_key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6747 | struct btrfs_chunk *chunk; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6748 | u8 *array_ptr; |
| 6749 | unsigned long sb_array_offset; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6750 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6751 | u32 num_stripes; |
| 6752 | u32 array_size; |
| 6753 | u32 len = 0; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6754 | u32 cur_offset; |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6755 | u64 type; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6756 | struct btrfs_key key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6757 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6758 | ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize); |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 6759 | /* |
| 6760 | * This will create extent buffer of nodesize, superblock size is |
| 6761 | * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will |
| 6762 | * overallocate but we can keep it as-is, only the first page is used. |
| 6763 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6764 | sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 6765 | if (IS_ERR(sb)) |
| 6766 | return PTR_ERR(sb); |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 6767 | set_extent_buffer_uptodate(sb); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 6768 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0); |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 6769 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6770 | * 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] | 6771 | * set_extent_buffer_uptodate() call does not properly mark all it's |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 6772 | * pages up-to-date when the page is larger: extent does not cover the |
| 6773 | * whole page and consequently check_page_uptodate does not find all |
| 6774 | * the page's extents up-to-date (the hole beyond sb), |
| 6775 | * write_extent_buffer then triggers a WARN_ON. |
| 6776 | * |
| 6777 | * Regular short extents go through mark_extent_buffer_dirty/writeback cycle, |
| 6778 | * but sb spans only this function. Add an explicit SetPageUptodate call |
| 6779 | * to silence the warning eg. on PowerPC 64. |
| 6780 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 6781 | if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE) |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 6782 | SetPageUptodate(sb->pages[0]); |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 6783 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6784 | write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6785 | array_size = btrfs_super_sys_array_size(super_copy); |
| 6786 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6787 | array_ptr = super_copy->sys_chunk_array; |
| 6788 | sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array); |
| 6789 | cur_offset = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6790 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6791 | while (cur_offset < array_size) { |
| 6792 | disk_key = (struct btrfs_disk_key *)array_ptr; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6793 | len = sizeof(*disk_key); |
| 6794 | if (cur_offset + len > array_size) |
| 6795 | goto out_short_read; |
| 6796 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6797 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 6798 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6799 | array_ptr += len; |
| 6800 | sb_array_offset += len; |
| 6801 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6802 | |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6803 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6804 | chunk = (struct btrfs_chunk *)sb_array_offset; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6805 | /* |
| 6806 | * At least one btrfs_chunk with one stripe must be |
| 6807 | * present, exact stripe count check comes afterwards |
| 6808 | */ |
| 6809 | len = btrfs_chunk_item_size(1); |
| 6810 | if (cur_offset + len > array_size) |
| 6811 | goto out_short_read; |
| 6812 | |
| 6813 | num_stripes = btrfs_chunk_num_stripes(sb, chunk); |
David Sterba | f5cdedd | 2015-11-30 17:27:06 +0100 | [diff] [blame] | 6814 | if (!num_stripes) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6815 | btrfs_err(fs_info, |
| 6816 | "invalid number of stripes %u in sys_array at offset %u", |
David Sterba | f5cdedd | 2015-11-30 17:27:06 +0100 | [diff] [blame] | 6817 | num_stripes, cur_offset); |
| 6818 | ret = -EIO; |
| 6819 | break; |
| 6820 | } |
| 6821 | |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6822 | type = btrfs_chunk_type(sb, chunk); |
| 6823 | if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6824 | btrfs_err(fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6825 | "invalid chunk type %llu in sys_array at offset %u", |
| 6826 | type, cur_offset); |
| 6827 | ret = -EIO; |
| 6828 | break; |
| 6829 | } |
| 6830 | |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6831 | len = btrfs_chunk_item_size(num_stripes); |
| 6832 | if (cur_offset + len > array_size) |
| 6833 | goto out_short_read; |
| 6834 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6835 | ret = read_one_chunk(fs_info, &key, sb, chunk); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6836 | if (ret) |
| 6837 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6838 | } else { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6839 | btrfs_err(fs_info, |
| 6840 | "unexpected item type %u in sys_array at offset %u", |
| 6841 | (u32)key.type, cur_offset); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6842 | ret = -EIO; |
| 6843 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6844 | } |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6845 | array_ptr += len; |
| 6846 | sb_array_offset += len; |
| 6847 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6848 | } |
Liu Bo | d865177 | 2016-06-03 17:41:42 -0700 | [diff] [blame] | 6849 | clear_extent_buffer_uptodate(sb); |
Liu Bo | 1c8b5b6 | 2016-05-13 17:06:59 -0700 | [diff] [blame] | 6850 | free_extent_buffer_stale(sb); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6851 | return ret; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6852 | |
| 6853 | out_short_read: |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6854 | 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] | 6855 | len, cur_offset); |
Liu Bo | d865177 | 2016-06-03 17:41:42 -0700 | [diff] [blame] | 6856 | clear_extent_buffer_uptodate(sb); |
Liu Bo | 1c8b5b6 | 2016-05-13 17:06:59 -0700 | [diff] [blame] | 6857 | free_extent_buffer_stale(sb); |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6858 | return -EIO; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6859 | } |
| 6860 | |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6861 | /* |
| 6862 | * Check if all chunks in the fs are OK for read-write degraded mount |
| 6863 | * |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6864 | * If the @failing_dev is specified, it's accounted as missing. |
| 6865 | * |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6866 | * Return true if all chunks meet the minimal RW mount requirements. |
| 6867 | * Return false if any chunk doesn't meet the minimal RW mount requirements. |
| 6868 | */ |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6869 | bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info, |
| 6870 | struct btrfs_device *failing_dev) |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6871 | { |
| 6872 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
| 6873 | struct extent_map *em; |
| 6874 | u64 next_start = 0; |
| 6875 | bool ret = true; |
| 6876 | |
| 6877 | read_lock(&map_tree->map_tree.lock); |
| 6878 | em = lookup_extent_mapping(&map_tree->map_tree, 0, (u64)-1); |
| 6879 | read_unlock(&map_tree->map_tree.lock); |
| 6880 | /* No chunk at all? Return false anyway */ |
| 6881 | if (!em) { |
| 6882 | ret = false; |
| 6883 | goto out; |
| 6884 | } |
| 6885 | while (em) { |
| 6886 | struct map_lookup *map; |
| 6887 | int missing = 0; |
| 6888 | int max_tolerated; |
| 6889 | int i; |
| 6890 | |
| 6891 | map = em->map_lookup; |
| 6892 | max_tolerated = |
| 6893 | btrfs_get_num_tolerated_disk_barrier_failures( |
| 6894 | map->type); |
| 6895 | for (i = 0; i < map->num_stripes; i++) { |
| 6896 | struct btrfs_device *dev = map->stripes[i].dev; |
| 6897 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6898 | if (!dev || !dev->bdev || |
| 6899 | test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) || |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6900 | dev->last_flush_error) |
| 6901 | missing++; |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6902 | else if (failing_dev && failing_dev == dev) |
| 6903 | missing++; |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6904 | } |
| 6905 | if (missing > max_tolerated) { |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6906 | if (!failing_dev) |
| 6907 | btrfs_warn(fs_info, |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6908 | "chunk %llu missing %d devices, max tolerance is %d for writeable mount", |
| 6909 | em->start, missing, max_tolerated); |
| 6910 | free_extent_map(em); |
| 6911 | ret = false; |
| 6912 | goto out; |
| 6913 | } |
| 6914 | next_start = extent_map_end(em); |
| 6915 | free_extent_map(em); |
| 6916 | |
| 6917 | read_lock(&map_tree->map_tree.lock); |
| 6918 | em = lookup_extent_mapping(&map_tree->map_tree, next_start, |
| 6919 | (u64)(-1) - next_start); |
| 6920 | read_unlock(&map_tree->map_tree.lock); |
| 6921 | } |
| 6922 | out: |
| 6923 | return ret; |
| 6924 | } |
| 6925 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 6926 | int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6927 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 6928 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6929 | struct btrfs_path *path; |
| 6930 | struct extent_buffer *leaf; |
| 6931 | struct btrfs_key key; |
| 6932 | struct btrfs_key found_key; |
| 6933 | int ret; |
| 6934 | int slot; |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 6935 | u64 total_dev = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6936 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6937 | path = btrfs_alloc_path(); |
| 6938 | if (!path) |
| 6939 | return -ENOMEM; |
| 6940 | |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6941 | mutex_lock(&uuid_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 6942 | mutex_lock(&fs_info->chunk_mutex); |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6943 | |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6944 | /* |
| 6945 | * Read all device items, and then all the chunk items. All |
| 6946 | * device items are found before any chunk item (their object id |
| 6947 | * is smaller than the lowest possible object id for a chunk |
| 6948 | * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID). |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6949 | */ |
| 6950 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 6951 | key.offset = 0; |
| 6952 | key.type = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6953 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Zhao Lei | ab59381 | 2010-03-25 12:34:49 +0000 | [diff] [blame] | 6954 | if (ret < 0) |
| 6955 | goto error; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6956 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6957 | leaf = path->nodes[0]; |
| 6958 | slot = path->slots[0]; |
| 6959 | if (slot >= btrfs_header_nritems(leaf)) { |
| 6960 | ret = btrfs_next_leaf(root, path); |
| 6961 | if (ret == 0) |
| 6962 | continue; |
| 6963 | if (ret < 0) |
| 6964 | goto error; |
| 6965 | break; |
| 6966 | } |
| 6967 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6968 | if (found_key.type == BTRFS_DEV_ITEM_KEY) { |
| 6969 | struct btrfs_dev_item *dev_item; |
| 6970 | dev_item = btrfs_item_ptr(leaf, slot, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6971 | struct btrfs_dev_item); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6972 | ret = read_one_dev(fs_info, leaf, dev_item); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6973 | if (ret) |
| 6974 | goto error; |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 6975 | total_dev++; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6976 | } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 6977 | struct btrfs_chunk *chunk; |
| 6978 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6979 | ret = read_one_chunk(fs_info, &found_key, leaf, chunk); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6980 | if (ret) |
| 6981 | goto error; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6982 | } |
| 6983 | path->slots[0]++; |
| 6984 | } |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 6985 | |
| 6986 | /* |
| 6987 | * After loading chunk tree, we've got all device information, |
| 6988 | * do another round of validation checks. |
| 6989 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6990 | if (total_dev != fs_info->fs_devices->total_devices) { |
| 6991 | btrfs_err(fs_info, |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 6992 | "super_num_devices %llu mismatch with num_devices %llu found here", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6993 | btrfs_super_num_devices(fs_info->super_copy), |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 6994 | total_dev); |
| 6995 | ret = -EINVAL; |
| 6996 | goto error; |
| 6997 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6998 | if (btrfs_super_total_bytes(fs_info->super_copy) < |
| 6999 | fs_info->fs_devices->total_rw_bytes) { |
| 7000 | btrfs_err(fs_info, |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7001 | "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7002 | btrfs_super_total_bytes(fs_info->super_copy), |
| 7003 | fs_info->fs_devices->total_rw_bytes); |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7004 | ret = -EINVAL; |
| 7005 | goto error; |
| 7006 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7007 | ret = 0; |
| 7008 | error: |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7009 | mutex_unlock(&fs_info->chunk_mutex); |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 7010 | mutex_unlock(&uuid_mutex); |
| 7011 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7012 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7013 | return ret; |
| 7014 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7015 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7016 | void btrfs_init_devices_late(struct btrfs_fs_info *fs_info) |
| 7017 | { |
| 7018 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7019 | struct btrfs_device *device; |
| 7020 | |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 7021 | while (fs_devices) { |
| 7022 | mutex_lock(&fs_devices->device_list_mutex); |
| 7023 | list_for_each_entry(device, &fs_devices->devices, dev_list) |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7024 | device->fs_info = fs_info; |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 7025 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7026 | |
| 7027 | fs_devices = fs_devices->seed; |
| 7028 | } |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7029 | } |
| 7030 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7031 | static void __btrfs_reset_dev_stats(struct btrfs_device *dev) |
| 7032 | { |
| 7033 | int i; |
| 7034 | |
| 7035 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7036 | btrfs_dev_stat_reset(dev, i); |
| 7037 | } |
| 7038 | |
| 7039 | int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info) |
| 7040 | { |
| 7041 | struct btrfs_key key; |
| 7042 | struct btrfs_key found_key; |
| 7043 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 7044 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7045 | struct extent_buffer *eb; |
| 7046 | int slot; |
| 7047 | int ret = 0; |
| 7048 | struct btrfs_device *device; |
| 7049 | struct btrfs_path *path = NULL; |
| 7050 | int i; |
| 7051 | |
| 7052 | path = btrfs_alloc_path(); |
| 7053 | if (!path) { |
| 7054 | ret = -ENOMEM; |
| 7055 | goto out; |
| 7056 | } |
| 7057 | |
| 7058 | mutex_lock(&fs_devices->device_list_mutex); |
| 7059 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
| 7060 | int item_size; |
| 7061 | struct btrfs_dev_stats_item *ptr; |
| 7062 | |
David Sterba | 242e295 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 7063 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 7064 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7065 | key.offset = device->devid; |
| 7066 | ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0); |
| 7067 | if (ret) { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7068 | __btrfs_reset_dev_stats(device); |
| 7069 | device->dev_stats_valid = 1; |
| 7070 | btrfs_release_path(path); |
| 7071 | continue; |
| 7072 | } |
| 7073 | slot = path->slots[0]; |
| 7074 | eb = path->nodes[0]; |
| 7075 | btrfs_item_key_to_cpu(eb, &found_key, slot); |
| 7076 | item_size = btrfs_item_size_nr(eb, slot); |
| 7077 | |
| 7078 | ptr = btrfs_item_ptr(eb, slot, |
| 7079 | struct btrfs_dev_stats_item); |
| 7080 | |
| 7081 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 7082 | if (item_size >= (1 + i) * sizeof(__le64)) |
| 7083 | btrfs_dev_stat_set(device, i, |
| 7084 | btrfs_dev_stats_value(eb, ptr, i)); |
| 7085 | else |
| 7086 | btrfs_dev_stat_reset(device, i); |
| 7087 | } |
| 7088 | |
| 7089 | device->dev_stats_valid = 1; |
| 7090 | btrfs_dev_stat_print_on_load(device); |
| 7091 | btrfs_release_path(path); |
| 7092 | } |
| 7093 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7094 | |
| 7095 | out: |
| 7096 | btrfs_free_path(path); |
| 7097 | return ret < 0 ? ret : 0; |
| 7098 | } |
| 7099 | |
| 7100 | static int update_dev_stat_item(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7101 | struct btrfs_fs_info *fs_info, |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7102 | struct btrfs_device *device) |
| 7103 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7104 | struct btrfs_root *dev_root = fs_info->dev_root; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7105 | struct btrfs_path *path; |
| 7106 | struct btrfs_key key; |
| 7107 | struct extent_buffer *eb; |
| 7108 | struct btrfs_dev_stats_item *ptr; |
| 7109 | int ret; |
| 7110 | int i; |
| 7111 | |
David Sterba | 242e295 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 7112 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 7113 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7114 | key.offset = device->devid; |
| 7115 | |
| 7116 | path = btrfs_alloc_path(); |
David Sterba | fa25299 | 2017-02-15 09:35:01 +0100 | [diff] [blame] | 7117 | if (!path) |
| 7118 | return -ENOMEM; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7119 | ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1); |
| 7120 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7121 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7122 | "error %d while searching for dev_stats item for device %s", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7123 | ret, rcu_str_deref(device->name)); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7124 | goto out; |
| 7125 | } |
| 7126 | |
| 7127 | if (ret == 0 && |
| 7128 | btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) { |
| 7129 | /* need to delete old one and insert a new one */ |
| 7130 | ret = btrfs_del_item(trans, dev_root, path); |
| 7131 | if (ret != 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7132 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7133 | "delete too small dev_stats item for device %s failed %d", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7134 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7135 | goto out; |
| 7136 | } |
| 7137 | ret = 1; |
| 7138 | } |
| 7139 | |
| 7140 | if (ret == 1) { |
| 7141 | /* need to insert a new item */ |
| 7142 | btrfs_release_path(path); |
| 7143 | ret = btrfs_insert_empty_item(trans, dev_root, path, |
| 7144 | &key, sizeof(*ptr)); |
| 7145 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7146 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7147 | "insert dev_stats item for device %s failed %d", |
| 7148 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7149 | goto out; |
| 7150 | } |
| 7151 | } |
| 7152 | |
| 7153 | eb = path->nodes[0]; |
| 7154 | ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item); |
| 7155 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7156 | btrfs_set_dev_stats_value(eb, ptr, i, |
| 7157 | btrfs_dev_stat_read(device, i)); |
| 7158 | btrfs_mark_buffer_dirty(eb); |
| 7159 | |
| 7160 | out: |
| 7161 | btrfs_free_path(path); |
| 7162 | return ret; |
| 7163 | } |
| 7164 | |
| 7165 | /* |
| 7166 | * called from commit_transaction. Writes all changed device stats to disk. |
| 7167 | */ |
| 7168 | int btrfs_run_dev_stats(struct btrfs_trans_handle *trans, |
| 7169 | struct btrfs_fs_info *fs_info) |
| 7170 | { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7171 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7172 | struct btrfs_device *device; |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7173 | int stats_cnt; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7174 | int ret = 0; |
| 7175 | |
| 7176 | mutex_lock(&fs_devices->device_list_mutex); |
| 7177 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
Nikolay Borisov | 9deae96 | 2017-10-24 13:47:37 +0300 | [diff] [blame] | 7178 | stats_cnt = atomic_read(&device->dev_stats_ccnt); |
| 7179 | if (!device->dev_stats_valid || stats_cnt == 0) |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7180 | continue; |
| 7181 | |
Nikolay Borisov | 9deae96 | 2017-10-24 13:47:37 +0300 | [diff] [blame] | 7182 | |
| 7183 | /* |
| 7184 | * There is a LOAD-LOAD control dependency between the value of |
| 7185 | * dev_stats_ccnt and updating the on-disk values which requires |
| 7186 | * reading the in-memory counters. Such control dependencies |
| 7187 | * require explicit read memory barriers. |
| 7188 | * |
| 7189 | * This memory barriers pairs with smp_mb__before_atomic in |
| 7190 | * btrfs_dev_stat_inc/btrfs_dev_stat_set and with the full |
| 7191 | * barrier implied by atomic_xchg in |
| 7192 | * btrfs_dev_stats_read_and_reset |
| 7193 | */ |
| 7194 | smp_rmb(); |
| 7195 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7196 | ret = update_dev_stat_item(trans, fs_info, device); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7197 | if (!ret) |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7198 | atomic_sub(stats_cnt, &device->dev_stats_ccnt); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7199 | } |
| 7200 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7201 | |
| 7202 | return ret; |
| 7203 | } |
| 7204 | |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7205 | void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index) |
| 7206 | { |
| 7207 | btrfs_dev_stat_inc(dev, index); |
| 7208 | btrfs_dev_stat_print_on_error(dev); |
| 7209 | } |
| 7210 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 7211 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev) |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7212 | { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7213 | if (!dev->dev_stats_valid) |
| 7214 | return; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7215 | btrfs_err_rl_in_rcu(dev->fs_info, |
David Sterba | b14af3b | 2015-10-08 10:43:10 +0200 | [diff] [blame] | 7216 | "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] | 7217 | rcu_str_deref(dev->name), |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7218 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 7219 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 7220 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7221 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 7222 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7223 | } |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7224 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7225 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev) |
| 7226 | { |
Stefan Behrens | a98cdb8 | 2012-07-17 09:02:11 -0600 | [diff] [blame] | 7227 | int i; |
| 7228 | |
| 7229 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7230 | if (btrfs_dev_stat_read(dev, i) != 0) |
| 7231 | break; |
| 7232 | if (i == BTRFS_DEV_STAT_VALUES_MAX) |
| 7233 | return; /* all values == 0, suppress message */ |
| 7234 | |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7235 | btrfs_info_in_rcu(dev->fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7236 | "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] | 7237 | rcu_str_deref(dev->name), |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7238 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 7239 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 7240 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
| 7241 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 7242 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
| 7243 | } |
| 7244 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7245 | int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info, |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 7246 | struct btrfs_ioctl_get_dev_stats *stats) |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7247 | { |
| 7248 | struct btrfs_device *dev; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7249 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7250 | int i; |
| 7251 | |
| 7252 | mutex_lock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7253 | dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7254 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7255 | |
| 7256 | if (!dev) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7257 | btrfs_warn(fs_info, "get dev_stats failed, device not found"); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7258 | return -ENODEV; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7259 | } else if (!dev->dev_stats_valid) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7260 | btrfs_warn(fs_info, "get dev_stats failed, not yet valid"); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7261 | return -ENODEV; |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 7262 | } else if (stats->flags & BTRFS_DEV_STATS_RESET) { |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7263 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 7264 | if (stats->nr_items > i) |
| 7265 | stats->values[i] = |
| 7266 | btrfs_dev_stat_read_and_reset(dev, i); |
| 7267 | else |
| 7268 | btrfs_dev_stat_reset(dev, i); |
| 7269 | } |
| 7270 | } else { |
| 7271 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7272 | if (stats->nr_items > i) |
| 7273 | stats->values[i] = btrfs_dev_stat_read(dev, i); |
| 7274 | } |
| 7275 | if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX) |
| 7276 | stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX; |
| 7277 | return 0; |
| 7278 | } |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7279 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 7280 | void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path) |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7281 | { |
| 7282 | struct buffer_head *bh; |
| 7283 | struct btrfs_super_block *disk_super; |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7284 | int copy_num; |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7285 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7286 | if (!bdev) |
| 7287 | return; |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7288 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7289 | for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX; |
| 7290 | copy_num++) { |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7291 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7292 | if (btrfs_read_dev_one_super(bdev, copy_num, &bh)) |
| 7293 | continue; |
| 7294 | |
| 7295 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 7296 | |
| 7297 | memset(&disk_super->magic, 0, sizeof(disk_super->magic)); |
| 7298 | set_buffer_dirty(bh); |
| 7299 | sync_dirty_buffer(bh); |
| 7300 | brelse(bh); |
| 7301 | } |
| 7302 | |
| 7303 | /* Notify udev that device has changed */ |
| 7304 | btrfs_kobject_uevent(bdev, KOBJ_CHANGE); |
| 7305 | |
| 7306 | /* Update ctime/mtime for device path for libblkid */ |
| 7307 | update_dev_time(device_path); |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7308 | } |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7309 | |
| 7310 | /* |
| 7311 | * Update the size of all devices, which is used for writing out the |
| 7312 | * super blocks. |
| 7313 | */ |
| 7314 | void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info) |
| 7315 | { |
| 7316 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7317 | struct btrfs_device *curr, *next; |
| 7318 | |
| 7319 | if (list_empty(&fs_devices->resized_devices)) |
| 7320 | return; |
| 7321 | |
| 7322 | mutex_lock(&fs_devices->device_list_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7323 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7324 | list_for_each_entry_safe(curr, next, &fs_devices->resized_devices, |
| 7325 | resized_list) { |
| 7326 | list_del_init(&curr->resized_list); |
| 7327 | curr->commit_total_bytes = curr->disk_total_bytes; |
| 7328 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7329 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7330 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7331 | } |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7332 | |
| 7333 | /* Must be invoked during the transaction commit */ |
Nikolay Borisov | e9b919b | 2018-02-07 17:55:49 +0200 | [diff] [blame] | 7334 | void btrfs_update_commit_device_bytes_used(struct btrfs_transaction *trans) |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7335 | { |
Nikolay Borisov | e9b919b | 2018-02-07 17:55:49 +0200 | [diff] [blame] | 7336 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7337 | struct extent_map *em; |
| 7338 | struct map_lookup *map; |
| 7339 | struct btrfs_device *dev; |
| 7340 | int i; |
| 7341 | |
Nikolay Borisov | e9b919b | 2018-02-07 17:55:49 +0200 | [diff] [blame] | 7342 | if (list_empty(&trans->pending_chunks)) |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7343 | return; |
| 7344 | |
| 7345 | /* In order to kick the device replace finish process */ |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7346 | mutex_lock(&fs_info->chunk_mutex); |
Nikolay Borisov | e9b919b | 2018-02-07 17:55:49 +0200 | [diff] [blame] | 7347 | list_for_each_entry(em, &trans->pending_chunks, list) { |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 7348 | map = em->map_lookup; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7349 | |
| 7350 | for (i = 0; i < map->num_stripes; i++) { |
| 7351 | dev = map->stripes[i].dev; |
| 7352 | dev->commit_bytes_used = dev->bytes_used; |
| 7353 | } |
| 7354 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7355 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7356 | } |
Anand Jain | 5a13f43 | 2015-03-10 06:38:31 +0800 | [diff] [blame] | 7357 | |
| 7358 | void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info) |
| 7359 | { |
| 7360 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7361 | while (fs_devices) { |
| 7362 | fs_devices->fs_info = fs_info; |
| 7363 | fs_devices = fs_devices->seed; |
| 7364 | } |
| 7365 | } |
| 7366 | |
| 7367 | void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info) |
| 7368 | { |
| 7369 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7370 | while (fs_devices) { |
| 7371 | fs_devices->fs_info = NULL; |
| 7372 | fs_devices = fs_devices->seed; |
| 7373 | } |
| 7374 | } |