Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 Oracle. All rights reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public |
| 6 | * License v2 as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 11 | * General Public License for more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public |
| 14 | * License along with this program; if not, write to the |
| 15 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 16 | * Boston, MA 021110-1307, USA. |
| 17 | */ |
| 18 | #include <linux/sched.h> |
| 19 | #include <linux/bio.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 21 | #include <linux/buffer_head.h> |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 22 | #include <linux/blkdev.h> |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 23 | #include <linux/iocontext.h> |
Ben Hutchings | 6f88a44 | 2010-12-29 14:55:03 +0000 | [diff] [blame] | 24 | #include <linux/capability.h> |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 25 | #include <linux/ratelimit.h> |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 26 | #include <linux/kthread.h> |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 27 | #include <linux/raid/pq.h> |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 28 | #include <linux/semaphore.h> |
Andy Shevchenko | 8da4b8c | 2016-05-20 17:01:00 -0700 | [diff] [blame] | 29 | #include <linux/uuid.h> |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 30 | #include <asm/div64.h> |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 31 | #include "ctree.h" |
| 32 | #include "extent_map.h" |
| 33 | #include "disk-io.h" |
| 34 | #include "transaction.h" |
| 35 | #include "print-tree.h" |
| 36 | #include "volumes.h" |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 37 | #include "raid56.h" |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 38 | #include "async-thread.h" |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 39 | #include "check-integrity.h" |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 40 | #include "rcu-string.h" |
Miao Xie | 3fed40c | 2012-09-13 04:51:36 -0600 | [diff] [blame] | 41 | #include "math.h" |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 42 | #include "dev-replace.h" |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 43 | #include "sysfs.h" |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 44 | |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 45 | const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = { |
| 46 | [BTRFS_RAID_RAID10] = { |
| 47 | .sub_stripes = 2, |
| 48 | .dev_stripes = 1, |
| 49 | .devs_max = 0, /* 0 == as many as possible */ |
| 50 | .devs_min = 4, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 51 | .tolerated_failures = 1, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 52 | .devs_increment = 2, |
| 53 | .ncopies = 2, |
| 54 | }, |
| 55 | [BTRFS_RAID_RAID1] = { |
| 56 | .sub_stripes = 1, |
| 57 | .dev_stripes = 1, |
| 58 | .devs_max = 2, |
| 59 | .devs_min = 2, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 60 | .tolerated_failures = 1, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 61 | .devs_increment = 2, |
| 62 | .ncopies = 2, |
| 63 | }, |
| 64 | [BTRFS_RAID_DUP] = { |
| 65 | .sub_stripes = 1, |
| 66 | .dev_stripes = 2, |
| 67 | .devs_max = 1, |
| 68 | .devs_min = 1, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 69 | .tolerated_failures = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 70 | .devs_increment = 1, |
| 71 | .ncopies = 2, |
| 72 | }, |
| 73 | [BTRFS_RAID_RAID0] = { |
| 74 | .sub_stripes = 1, |
| 75 | .dev_stripes = 1, |
| 76 | .devs_max = 0, |
| 77 | .devs_min = 2, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 78 | .tolerated_failures = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 79 | .devs_increment = 1, |
| 80 | .ncopies = 1, |
| 81 | }, |
| 82 | [BTRFS_RAID_SINGLE] = { |
| 83 | .sub_stripes = 1, |
| 84 | .dev_stripes = 1, |
| 85 | .devs_max = 1, |
| 86 | .devs_min = 1, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 87 | .tolerated_failures = 0, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 88 | .devs_increment = 1, |
| 89 | .ncopies = 1, |
| 90 | }, |
| 91 | [BTRFS_RAID_RAID5] = { |
| 92 | .sub_stripes = 1, |
| 93 | .dev_stripes = 1, |
| 94 | .devs_max = 0, |
| 95 | .devs_min = 2, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 96 | .tolerated_failures = 1, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 97 | .devs_increment = 1, |
| 98 | .ncopies = 2, |
| 99 | }, |
| 100 | [BTRFS_RAID_RAID6] = { |
| 101 | .sub_stripes = 1, |
| 102 | .dev_stripes = 1, |
| 103 | .devs_max = 0, |
| 104 | .devs_min = 3, |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 105 | .tolerated_failures = 2, |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 106 | .devs_increment = 1, |
| 107 | .ncopies = 3, |
| 108 | }, |
| 109 | }; |
| 110 | |
Colin Ian King | fb75d85 | 2016-01-19 00:05:28 +0000 | [diff] [blame] | 111 | const u64 btrfs_raid_group[BTRFS_NR_RAID_TYPES] = { |
Zhao Lei | af90204 | 2015-09-15 21:08:06 +0800 | [diff] [blame] | 112 | [BTRFS_RAID_RAID10] = BTRFS_BLOCK_GROUP_RAID10, |
| 113 | [BTRFS_RAID_RAID1] = BTRFS_BLOCK_GROUP_RAID1, |
| 114 | [BTRFS_RAID_DUP] = BTRFS_BLOCK_GROUP_DUP, |
| 115 | [BTRFS_RAID_RAID0] = BTRFS_BLOCK_GROUP_RAID0, |
| 116 | [BTRFS_RAID_SINGLE] = 0, |
| 117 | [BTRFS_RAID_RAID5] = BTRFS_BLOCK_GROUP_RAID5, |
| 118 | [BTRFS_RAID_RAID6] = BTRFS_BLOCK_GROUP_RAID6, |
| 119 | }; |
| 120 | |
David Sterba | 621292b | 2016-02-15 16:28:03 +0100 | [diff] [blame] | 121 | /* |
| 122 | * Table to convert BTRFS_RAID_* to the error code if minimum number of devices |
| 123 | * condition is not met. Zero means there's no corresponding |
| 124 | * BTRFS_ERROR_DEV_*_NOT_MET value. |
| 125 | */ |
| 126 | const int btrfs_raid_mindev_error[BTRFS_NR_RAID_TYPES] = { |
| 127 | [BTRFS_RAID_RAID10] = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET, |
| 128 | [BTRFS_RAID_RAID1] = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET, |
| 129 | [BTRFS_RAID_DUP] = 0, |
| 130 | [BTRFS_RAID_RAID0] = 0, |
| 131 | [BTRFS_RAID_SINGLE] = 0, |
| 132 | [BTRFS_RAID_RAID5] = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET, |
| 133 | [BTRFS_RAID_RAID6] = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET, |
| 134 | }; |
| 135 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 136 | static int init_first_rw_device(struct btrfs_trans_handle *trans, |
David Sterba | e4a4dce | 2017-02-10 19:49:01 +0100 | [diff] [blame] | 137 | struct btrfs_fs_info *fs_info); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 138 | static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 139 | static void __btrfs_reset_dev_stats(struct btrfs_device *dev); |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 140 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 141 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *device); |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 142 | static int __btrfs_map_block(struct btrfs_fs_info *fs_info, |
| 143 | enum btrfs_map_op op, |
| 144 | u64 logical, u64 *length, |
| 145 | struct btrfs_bio **bbio_ret, |
| 146 | int mirror_num, int need_raid_map); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 147 | |
David Sterba | 9c6b1c4 | 2017-06-16 22:30:00 +0200 | [diff] [blame] | 148 | /* |
| 149 | * Device locking |
| 150 | * ============== |
| 151 | * |
| 152 | * There are several mutexes that protect manipulation of devices and low-level |
| 153 | * structures like chunks but not block groups, extents or files |
| 154 | * |
| 155 | * uuid_mutex (global lock) |
| 156 | * ------------------------ |
| 157 | * protects the fs_uuids list that tracks all per-fs fs_devices, resulting from |
| 158 | * the SCAN_DEV ioctl registration or from mount either implicitly (the first |
| 159 | * device) or requested by the device= mount option |
| 160 | * |
| 161 | * the mutex can be very coarse and can cover long-running operations |
| 162 | * |
| 163 | * protects: updates to fs_devices counters like missing devices, rw devices, |
| 164 | * seeding, structure cloning, openning/closing devices at mount/umount time |
| 165 | * |
| 166 | * global::fs_devs - add, remove, updates to the global list |
| 167 | * |
| 168 | * does not protect: manipulation of the fs_devices::devices list! |
| 169 | * |
| 170 | * btrfs_device::name - renames (write side), read is RCU |
| 171 | * |
| 172 | * fs_devices::device_list_mutex (per-fs, with RCU) |
| 173 | * ------------------------------------------------ |
| 174 | * protects updates to fs_devices::devices, ie. adding and deleting |
| 175 | * |
| 176 | * simple list traversal with read-only actions can be done with RCU protection |
| 177 | * |
| 178 | * may be used to exclude some operations from running concurrently without any |
| 179 | * modifications to the list (see write_all_supers) |
| 180 | * |
| 181 | * volume_mutex |
| 182 | * ------------ |
| 183 | * coarse lock owned by a mounted filesystem; used to exclude some operations |
| 184 | * that cannot run in parallel and affect the higher-level properties of the |
| 185 | * filesystem like: device add/deleting/resize/replace, or balance |
| 186 | * |
| 187 | * balance_mutex |
| 188 | * ------------- |
| 189 | * protects balance structures (status, state) and context accessed from |
| 190 | * several places (internally, ioctl) |
| 191 | * |
| 192 | * chunk_mutex |
| 193 | * ----------- |
| 194 | * protects chunks, adding or removing during allocation, trim or when a new |
| 195 | * device is added/removed |
| 196 | * |
| 197 | * cleaner_mutex |
| 198 | * ------------- |
| 199 | * a big lock that is held by the cleaner thread and prevents running subvolume |
| 200 | * cleaning together with relocation or delayed iputs |
| 201 | * |
| 202 | * |
| 203 | * Lock nesting |
| 204 | * ============ |
| 205 | * |
| 206 | * uuid_mutex |
| 207 | * volume_mutex |
| 208 | * device_list_mutex |
| 209 | * chunk_mutex |
| 210 | * balance_mutex |
| 211 | */ |
| 212 | |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 213 | DEFINE_MUTEX(uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 214 | static LIST_HEAD(fs_uuids); |
Anand Jain | c73eccf | 2015-03-10 06:38:30 +0800 | [diff] [blame] | 215 | struct list_head *btrfs_get_fs_uuids(void) |
| 216 | { |
| 217 | return &fs_uuids; |
| 218 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 219 | |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 220 | /* |
| 221 | * alloc_fs_devices - allocate struct btrfs_fs_devices |
| 222 | * @fsid: if not NULL, copy the uuid to fs_devices::fsid |
| 223 | * |
| 224 | * Return a pointer to a new struct btrfs_fs_devices on success, or ERR_PTR(). |
| 225 | * The returned struct is not linked onto any lists and can be destroyed with |
| 226 | * kfree() right away. |
| 227 | */ |
| 228 | static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid) |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 229 | { |
| 230 | struct btrfs_fs_devices *fs_devs; |
| 231 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 232 | fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 233 | if (!fs_devs) |
| 234 | return ERR_PTR(-ENOMEM); |
| 235 | |
| 236 | mutex_init(&fs_devs->device_list_mutex); |
| 237 | |
| 238 | INIT_LIST_HEAD(&fs_devs->devices); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 239 | INIT_LIST_HEAD(&fs_devs->resized_devices); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 240 | INIT_LIST_HEAD(&fs_devs->alloc_list); |
| 241 | INIT_LIST_HEAD(&fs_devs->list); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 242 | if (fsid) |
| 243 | memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 244 | |
| 245 | return fs_devs; |
| 246 | } |
| 247 | |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 248 | static void free_device(struct btrfs_device *device) |
| 249 | { |
| 250 | rcu_string_free(device->name); |
| 251 | bio_put(device->flush_bio); |
| 252 | kfree(device); |
| 253 | } |
| 254 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 255 | static void free_fs_devices(struct btrfs_fs_devices *fs_devices) |
| 256 | { |
| 257 | struct btrfs_device *device; |
| 258 | WARN_ON(fs_devices->opened); |
| 259 | while (!list_empty(&fs_devices->devices)) { |
| 260 | device = list_entry(fs_devices->devices.next, |
| 261 | struct btrfs_device, dev_list); |
| 262 | list_del(&device->dev_list); |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 263 | free_device(device); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 264 | } |
| 265 | kfree(fs_devices); |
| 266 | } |
| 267 | |
Lukas Czerner | b8b8ff5 | 2012-12-06 19:25:48 +0000 | [diff] [blame] | 268 | static void btrfs_kobject_uevent(struct block_device *bdev, |
| 269 | enum kobject_action action) |
| 270 | { |
| 271 | int ret; |
| 272 | |
| 273 | ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action); |
| 274 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 275 | pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n", |
Lukas Czerner | b8b8ff5 | 2012-12-06 19:25:48 +0000 | [diff] [blame] | 276 | action, |
| 277 | kobject_name(&disk_to_dev(bdev->bd_disk)->kobj), |
| 278 | &disk_to_dev(bdev->bd_disk)->kobj); |
| 279 | } |
| 280 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 281 | void btrfs_cleanup_fs_uuids(void) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 282 | { |
| 283 | struct btrfs_fs_devices *fs_devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 284 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 285 | while (!list_empty(&fs_uuids)) { |
| 286 | fs_devices = list_entry(fs_uuids.next, |
| 287 | struct btrfs_fs_devices, list); |
| 288 | list_del(&fs_devices->list); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 289 | free_fs_devices(fs_devices); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 290 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 291 | } |
| 292 | |
David Sterba | 48dae9c | 2017-10-30 18:10:25 +0100 | [diff] [blame] | 293 | /* |
| 294 | * Returns a pointer to a new btrfs_device on success; ERR_PTR() on error. |
| 295 | * Returned struct is not linked onto any lists and must be destroyed using |
| 296 | * free_device. |
| 297 | */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 298 | static struct btrfs_device *__alloc_device(void) |
| 299 | { |
| 300 | struct btrfs_device *dev; |
| 301 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 302 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 303 | if (!dev) |
| 304 | return ERR_PTR(-ENOMEM); |
| 305 | |
David Sterba | e0ae999 | 2017-06-06 17:06:06 +0200 | [diff] [blame] | 306 | /* |
| 307 | * Preallocate a bio that's always going to be used for flushing device |
| 308 | * barriers and matches the device lifespan |
| 309 | */ |
| 310 | dev->flush_bio = bio_alloc_bioset(GFP_KERNEL, 0, NULL); |
| 311 | if (!dev->flush_bio) { |
| 312 | kfree(dev); |
| 313 | return ERR_PTR(-ENOMEM); |
| 314 | } |
David Sterba | e0ae999 | 2017-06-06 17:06:06 +0200 | [diff] [blame] | 315 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 316 | INIT_LIST_HEAD(&dev->dev_list); |
| 317 | INIT_LIST_HEAD(&dev->dev_alloc_list); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 318 | INIT_LIST_HEAD(&dev->resized_list); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 319 | |
| 320 | spin_lock_init(&dev->io_lock); |
| 321 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 322 | atomic_set(&dev->reada_in_flight, 0); |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 323 | atomic_set(&dev->dev_stats_ccnt, 0); |
Sebastian Andrzej Siewior | 546bed6 | 2016-01-15 14:37:15 +0100 | [diff] [blame] | 324 | btrfs_device_data_ordered_init(dev); |
Chris Mason | 9bcaaea | 2017-05-04 16:08:08 -0700 | [diff] [blame] | 325 | INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
Mel Gorman | d0164ad | 2015-11-06 16:28:21 -0800 | [diff] [blame] | 326 | INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 327 | |
| 328 | return dev; |
| 329 | } |
| 330 | |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 331 | /* |
| 332 | * Find a device specified by @devid or @uuid in the list of @fs_devices, or |
| 333 | * return NULL. |
| 334 | * |
| 335 | * If devid and uuid are both specified, the match must be exact, otherwise |
| 336 | * only devid is used. |
| 337 | */ |
| 338 | static struct btrfs_device *find_device(struct btrfs_fs_devices *fs_devices, |
| 339 | u64 devid, const u8 *uuid) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 340 | { |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 341 | struct list_head *head = &fs_devices->devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 342 | struct btrfs_device *dev; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 343 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 344 | list_for_each_entry(dev, head, dev_list) { |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 345 | if (dev->devid == devid && |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 346 | (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 347 | return dev; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 348 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 349 | } |
| 350 | return NULL; |
| 351 | } |
| 352 | |
Chris Mason | a1b32a5 | 2008-09-05 16:09:51 -0400 | [diff] [blame] | 353 | static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 354 | { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 355 | struct btrfs_fs_devices *fs_devices; |
| 356 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 357 | list_for_each_entry(fs_devices, &fs_uuids, list) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 358 | if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0) |
| 359 | return fs_devices; |
| 360 | } |
| 361 | return NULL; |
| 362 | } |
| 363 | |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 364 | static int |
| 365 | btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder, |
| 366 | int flush, struct block_device **bdev, |
| 367 | struct buffer_head **bh) |
| 368 | { |
| 369 | int ret; |
| 370 | |
| 371 | *bdev = blkdev_get_by_path(device_path, flags, holder); |
| 372 | |
| 373 | if (IS_ERR(*bdev)) { |
| 374 | ret = PTR_ERR(*bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 375 | goto error; |
| 376 | } |
| 377 | |
| 378 | if (flush) |
| 379 | filemap_write_and_wait((*bdev)->bd_inode->i_mapping); |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 380 | ret = set_blocksize(*bdev, BTRFS_BDEV_BLOCKSIZE); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 381 | if (ret) { |
| 382 | blkdev_put(*bdev, flags); |
| 383 | goto error; |
| 384 | } |
| 385 | invalidate_bdev(*bdev); |
| 386 | *bh = btrfs_read_dev_super(*bdev); |
Anand Jain | 92fc03f | 2015-08-14 18:32:51 +0800 | [diff] [blame] | 387 | if (IS_ERR(*bh)) { |
| 388 | ret = PTR_ERR(*bh); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 389 | blkdev_put(*bdev, flags); |
| 390 | goto error; |
| 391 | } |
| 392 | |
| 393 | return 0; |
| 394 | |
| 395 | error: |
| 396 | *bdev = NULL; |
| 397 | *bh = NULL; |
| 398 | return ret; |
| 399 | } |
| 400 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 401 | static void requeue_list(struct btrfs_pending_bios *pending_bios, |
| 402 | struct bio *head, struct bio *tail) |
| 403 | { |
| 404 | |
| 405 | struct bio *old_head; |
| 406 | |
| 407 | old_head = pending_bios->head; |
| 408 | pending_bios->head = head; |
| 409 | if (pending_bios->tail) |
| 410 | tail->bi_next = old_head; |
| 411 | else |
| 412 | pending_bios->tail = tail; |
| 413 | } |
| 414 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 415 | /* |
| 416 | * we try to collect pending bios for a device so we don't get a large |
| 417 | * number of procs sending bios down to the same device. This greatly |
| 418 | * improves the schedulers ability to collect and merge the bios. |
| 419 | * |
| 420 | * But, it also turns into a long list of bios to process and that is sure |
| 421 | * to eventually make the worker thread block. The solution here is to |
| 422 | * make some progress and then put this work struct back at the end of |
| 423 | * the list if the block device is congested. This way, multiple devices |
| 424 | * can make progress from a single worker thread. |
| 425 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 426 | static noinline void run_scheduled_bios(struct btrfs_device *device) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 427 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 428 | struct btrfs_fs_info *fs_info = device->fs_info; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 429 | struct bio *pending; |
| 430 | struct backing_dev_info *bdi; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 431 | struct btrfs_pending_bios *pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 432 | struct bio *tail; |
| 433 | struct bio *cur; |
| 434 | int again = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 435 | unsigned long num_run; |
Chris Mason | d644d8a | 2009-06-09 15:59:22 -0400 | [diff] [blame] | 436 | unsigned long batch_run = 0; |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 437 | unsigned long last_waited = 0; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 438 | int force_reg = 0; |
Miao Xie | 0e58885 | 2011-08-05 09:32:37 +0000 | [diff] [blame] | 439 | int sync_pending = 0; |
Chris Mason | 211588a | 2011-04-19 20:12:40 -0400 | [diff] [blame] | 440 | struct blk_plug plug; |
| 441 | |
| 442 | /* |
| 443 | * this function runs all the bios we've collected for |
| 444 | * a particular device. We don't want to wander off to |
| 445 | * another device without first sending all of these down. |
| 446 | * So, setup a plug here and finish it off before we return |
| 447 | */ |
| 448 | blk_start_plug(&plug); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 449 | |
Jan Kara | efa7c9f | 2017-02-02 15:56:53 +0100 | [diff] [blame] | 450 | bdi = device->bdev->bd_bdi; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 451 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 452 | loop: |
| 453 | spin_lock(&device->io_lock); |
| 454 | |
Chris Mason | a683705 | 2009-02-04 09:19:41 -0500 | [diff] [blame] | 455 | loop_lock: |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 456 | num_run = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 457 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 458 | /* take all the bios off the list at once and process them |
| 459 | * later on (without the lock held). But, remember the |
| 460 | * tail and other pointers so the bios can be properly reinserted |
| 461 | * into the list if we hit congestion |
| 462 | */ |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 463 | if (!force_reg && device->pending_sync_bios.head) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 464 | pending_bios = &device->pending_sync_bios; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 465 | force_reg = 1; |
| 466 | } else { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 467 | pending_bios = &device->pending_bios; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 468 | force_reg = 0; |
| 469 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 470 | |
| 471 | pending = pending_bios->head; |
| 472 | tail = pending_bios->tail; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 473 | WARN_ON(pending && !tail); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 474 | |
| 475 | /* |
| 476 | * if pending was null this time around, no bios need processing |
| 477 | * at all and we can stop. Otherwise it'll loop back up again |
| 478 | * and do an additional check so no bios are missed. |
| 479 | * |
| 480 | * device->running_pending is used to synchronize with the |
| 481 | * schedule_bio code. |
| 482 | */ |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 483 | if (device->pending_sync_bios.head == NULL && |
| 484 | device->pending_bios.head == NULL) { |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 485 | again = 0; |
| 486 | device->running_pending = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 487 | } else { |
| 488 | again = 1; |
| 489 | device->running_pending = 1; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 490 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 491 | |
| 492 | pending_bios->head = NULL; |
| 493 | pending_bios->tail = NULL; |
| 494 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 495 | spin_unlock(&device->io_lock); |
| 496 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 497 | while (pending) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 498 | |
| 499 | rmb(); |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 500 | /* we want to work on both lists, but do more bios on the |
| 501 | * sync list than the regular list |
| 502 | */ |
| 503 | if ((num_run > 32 && |
| 504 | pending_bios != &device->pending_sync_bios && |
| 505 | device->pending_sync_bios.head) || |
| 506 | (num_run > 64 && pending_bios == &device->pending_sync_bios && |
| 507 | device->pending_bios.head)) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 508 | spin_lock(&device->io_lock); |
| 509 | requeue_list(pending_bios, pending, tail); |
| 510 | goto loop_lock; |
| 511 | } |
| 512 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 513 | cur = pending; |
| 514 | pending = pending->bi_next; |
| 515 | cur->bi_next = NULL; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 516 | |
Jens Axboe | dac5621 | 2015-04-17 16:23:59 -0600 | [diff] [blame] | 517 | BUG_ON(atomic_read(&cur->__bi_cnt) == 0); |
Chris Mason | d644d8a | 2009-06-09 15:59:22 -0400 | [diff] [blame] | 518 | |
Chris Mason | 2ab1ba6 | 2011-08-04 14:28:36 -0400 | [diff] [blame] | 519 | /* |
| 520 | * if we're doing the sync list, record that our |
| 521 | * plug has some sync requests on it |
| 522 | * |
| 523 | * If we're doing the regular list and there are |
| 524 | * sync requests sitting around, unplug before |
| 525 | * we add more |
| 526 | */ |
| 527 | if (pending_bios == &device->pending_sync_bios) { |
| 528 | sync_pending = 1; |
| 529 | } else if (sync_pending) { |
| 530 | blk_finish_plug(&plug); |
| 531 | blk_start_plug(&plug); |
| 532 | sync_pending = 0; |
| 533 | } |
| 534 | |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 535 | btrfsic_submit_bio(cur); |
Chris Mason | 5ff7ba3 | 2010-03-15 10:21:30 -0400 | [diff] [blame] | 536 | num_run++; |
| 537 | batch_run++; |
David Sterba | 853d8ec | 2015-01-08 15:15:19 +0100 | [diff] [blame] | 538 | |
| 539 | cond_resched(); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 540 | |
| 541 | /* |
| 542 | * we made progress, there is more work to do and the bdi |
| 543 | * is now congested. Back off and let other work structs |
| 544 | * run instead |
| 545 | */ |
Chris Mason | 57fd5a5 | 2009-08-07 09:59:15 -0400 | [diff] [blame] | 546 | if (pending && bdi_write_congested(bdi) && batch_run > 8 && |
Chris Mason | 5f2cc08 | 2008-11-07 18:22:45 -0500 | [diff] [blame] | 547 | fs_info->fs_devices->open_devices > 1) { |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 548 | struct io_context *ioc; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 549 | |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 550 | ioc = current->io_context; |
| 551 | |
| 552 | /* |
| 553 | * the main goal here is that we don't want to |
| 554 | * block if we're going to be able to submit |
| 555 | * more requests without blocking. |
| 556 | * |
| 557 | * This code does two great things, it pokes into |
| 558 | * the elevator code from a filesystem _and_ |
| 559 | * it makes assumptions about how batching works. |
| 560 | */ |
| 561 | if (ioc && ioc->nr_batch_requests > 0 && |
| 562 | time_before(jiffies, ioc->last_waited + HZ/50UL) && |
| 563 | (last_waited == 0 || |
| 564 | ioc->last_waited == last_waited)) { |
| 565 | /* |
| 566 | * we want to go through our batch of |
| 567 | * requests and stop. So, we copy out |
| 568 | * the ioc->last_waited time and test |
| 569 | * against it before looping |
| 570 | */ |
| 571 | last_waited = ioc->last_waited; |
David Sterba | 853d8ec | 2015-01-08 15:15:19 +0100 | [diff] [blame] | 572 | cond_resched(); |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 573 | continue; |
| 574 | } |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 575 | spin_lock(&device->io_lock); |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 576 | requeue_list(pending_bios, pending, tail); |
Chris Mason | a683705 | 2009-02-04 09:19:41 -0500 | [diff] [blame] | 577 | device->running_pending = 1; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 578 | |
| 579 | spin_unlock(&device->io_lock); |
Qu Wenruo | a8c93d4e | 2014-02-28 10:46:08 +0800 | [diff] [blame] | 580 | btrfs_queue_work(fs_info->submit_workers, |
| 581 | &device->work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 582 | goto done; |
| 583 | } |
| 584 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 585 | |
Chris Mason | 5168408 | 2010-03-10 15:33:32 -0500 | [diff] [blame] | 586 | cond_resched(); |
| 587 | if (again) |
| 588 | goto loop; |
| 589 | |
| 590 | spin_lock(&device->io_lock); |
| 591 | if (device->pending_bios.head || device->pending_sync_bios.head) |
| 592 | goto loop_lock; |
| 593 | spin_unlock(&device->io_lock); |
| 594 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 595 | done: |
Chris Mason | 211588a | 2011-04-19 20:12:40 -0400 | [diff] [blame] | 596 | blk_finish_plug(&plug); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 597 | } |
| 598 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 599 | static void pending_bios_fn(struct btrfs_work *work) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 600 | { |
| 601 | struct btrfs_device *device; |
| 602 | |
| 603 | device = container_of(work, struct btrfs_device, work); |
| 604 | run_scheduled_bios(device); |
| 605 | } |
| 606 | |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame^] | 607 | /* |
| 608 | * Search and remove all stale (devices which are not mounted) devices. |
| 609 | * When both inputs are NULL, it will search and release all stale devices. |
| 610 | * path: Optional. When provided will it release all unmounted devices |
| 611 | * matching this path only. |
| 612 | * skip_dev: Optional. Will skip this device when searching for the stale |
| 613 | * devices. |
| 614 | */ |
| 615 | static void btrfs_free_stale_devices(const char *path, |
| 616 | struct btrfs_device *skip_dev) |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 617 | { |
Anand Jain | 38cf665 | 2018-01-18 22:00:34 +0800 | [diff] [blame] | 618 | struct btrfs_fs_devices *fs_devs, *tmp_fs_devs; |
| 619 | struct btrfs_device *dev, *tmp_dev; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 620 | |
Anand Jain | 38cf665 | 2018-01-18 22:00:34 +0800 | [diff] [blame] | 621 | list_for_each_entry_safe(fs_devs, tmp_fs_devs, &fs_uuids, list) { |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 622 | |
| 623 | if (fs_devs->opened) |
| 624 | continue; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 625 | |
Anand Jain | 38cf665 | 2018-01-18 22:00:34 +0800 | [diff] [blame] | 626 | list_for_each_entry_safe(dev, tmp_dev, |
| 627 | &fs_devs->devices, dev_list) { |
Anand Jain | 522f1b4 | 2018-01-18 22:00:35 +0800 | [diff] [blame] | 628 | int not_found = 0; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 629 | |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame^] | 630 | if (skip_dev && skip_dev == dev) |
| 631 | continue; |
| 632 | if (path && !dev->name) |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 633 | continue; |
| 634 | |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 635 | rcu_read_lock(); |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame^] | 636 | if (path) |
Anand Jain | 522f1b4 | 2018-01-18 22:00:35 +0800 | [diff] [blame] | 637 | not_found = strcmp(rcu_str_deref(dev->name), |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame^] | 638 | path); |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 639 | rcu_read_unlock(); |
Anand Jain | 38cf665 | 2018-01-18 22:00:34 +0800 | [diff] [blame] | 640 | if (not_found) |
| 641 | continue; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 642 | |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 643 | /* delete the stale device */ |
| 644 | if (fs_devs->num_devices == 1) { |
| 645 | btrfs_sysfs_remove_fsid(fs_devs); |
| 646 | list_del(&fs_devs->list); |
| 647 | free_fs_devices(fs_devs); |
| 648 | } else { |
| 649 | fs_devs->num_devices--; |
| 650 | list_del(&dev->dev_list); |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 651 | free_device(dev); |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 652 | } |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 653 | } |
| 654 | } |
| 655 | } |
| 656 | |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 657 | static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices, |
| 658 | struct btrfs_device *device, fmode_t flags, |
| 659 | void *holder) |
| 660 | { |
| 661 | struct request_queue *q; |
| 662 | struct block_device *bdev; |
| 663 | struct buffer_head *bh; |
| 664 | struct btrfs_super_block *disk_super; |
| 665 | u64 devid; |
| 666 | int ret; |
| 667 | |
| 668 | if (device->bdev) |
| 669 | return -EINVAL; |
| 670 | if (!device->name) |
| 671 | return -EINVAL; |
| 672 | |
| 673 | ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1, |
| 674 | &bdev, &bh); |
| 675 | if (ret) |
| 676 | return ret; |
| 677 | |
| 678 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 679 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 680 | if (devid != device->devid) |
| 681 | goto error_brelse; |
| 682 | |
| 683 | if (memcmp(device->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE)) |
| 684 | goto error_brelse; |
| 685 | |
| 686 | device->generation = btrfs_super_generation(disk_super); |
| 687 | |
| 688 | if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 689 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 690 | fs_devices->seeding = 1; |
| 691 | } else { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 692 | if (bdev_read_only(bdev)) |
| 693 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
| 694 | else |
| 695 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 696 | } |
| 697 | |
| 698 | q = bdev_get_queue(bdev); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 699 | if (!blk_queue_nonrot(q)) |
| 700 | fs_devices->rotating = 1; |
| 701 | |
| 702 | device->bdev = bdev; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 703 | clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 704 | device->mode = flags; |
| 705 | |
| 706 | fs_devices->open_devices++; |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 707 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
| 708 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 709 | fs_devices->rw_devices++; |
| 710 | list_add(&device->dev_alloc_list, &fs_devices->alloc_list); |
| 711 | } |
| 712 | brelse(bh); |
| 713 | |
| 714 | return 0; |
| 715 | |
| 716 | error_brelse: |
| 717 | brelse(bh); |
| 718 | blkdev_put(bdev, flags); |
| 719 | |
| 720 | return -EINVAL; |
| 721 | } |
| 722 | |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 723 | /* |
| 724 | * Add new device to list of registered devices |
| 725 | * |
| 726 | * Returns: |
| 727 | * 1 - first time device is seen |
| 728 | * 0 - device already known |
| 729 | * < 0 - error |
| 730 | */ |
Chris Mason | a1b32a5 | 2008-09-05 16:09:51 -0400 | [diff] [blame] | 731 | static noinline int device_list_add(const char *path, |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 732 | struct btrfs_super_block *disk_super, |
| 733 | u64 devid, struct btrfs_fs_devices **fs_devices_ret) |
| 734 | { |
| 735 | struct btrfs_device *device; |
| 736 | struct btrfs_fs_devices *fs_devices; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 737 | struct rcu_string *name; |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 738 | int ret = 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 739 | u64 found_transid = btrfs_super_generation(disk_super); |
| 740 | |
| 741 | fs_devices = find_fsid(disk_super->fsid); |
| 742 | if (!fs_devices) { |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 743 | fs_devices = alloc_fs_devices(disk_super->fsid); |
| 744 | if (IS_ERR(fs_devices)) |
| 745 | return PTR_ERR(fs_devices); |
| 746 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 747 | list_add(&fs_devices->list, &fs_uuids); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 748 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 749 | device = NULL; |
| 750 | } else { |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 751 | device = find_device(fs_devices, devid, |
| 752 | disk_super->dev_item.uuid); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 753 | } |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 754 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 755 | if (!device) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 756 | if (fs_devices->opened) |
| 757 | return -EBUSY; |
| 758 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 759 | device = btrfs_alloc_device(NULL, &devid, |
| 760 | disk_super->dev_item.uuid); |
| 761 | if (IS_ERR(device)) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 762 | /* we can safely leave the fs_devices entry around */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 763 | return PTR_ERR(device); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 764 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 765 | |
| 766 | name = rcu_string_strdup(path, GFP_NOFS); |
| 767 | if (!name) { |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 768 | free_device(device); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 769 | return -ENOMEM; |
| 770 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 771 | rcu_assign_pointer(device->name, name); |
Arne Jansen | 90519d6 | 2011-05-23 14:30:00 +0200 | [diff] [blame] | 772 | |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 773 | mutex_lock(&fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 774 | list_add_rcu(&device->dev_list, &fs_devices->devices); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 775 | fs_devices->num_devices++; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 776 | mutex_unlock(&fs_devices->device_list_mutex); |
| 777 | |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 778 | ret = 1; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 779 | device->fs_devices = fs_devices; |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame^] | 780 | btrfs_free_stale_devices(path, device); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 781 | } else if (!device->name || strcmp(device->name->str, path)) { |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 782 | /* |
| 783 | * When FS is already mounted. |
| 784 | * 1. If you are here and if the device->name is NULL that |
| 785 | * means this device was missing at time of FS mount. |
| 786 | * 2. If you are here and if the device->name is different |
| 787 | * from 'path' that means either |
| 788 | * a. The same device disappeared and reappeared with |
| 789 | * different name. or |
| 790 | * b. The missing-disk-which-was-replaced, has |
| 791 | * reappeared now. |
| 792 | * |
| 793 | * We must allow 1 and 2a above. But 2b would be a spurious |
| 794 | * and unintentional. |
| 795 | * |
| 796 | * Further in case of 1 and 2a above, the disk at 'path' |
| 797 | * would have missed some transaction when it was away and |
| 798 | * in case of 2a the stale bdev has to be updated as well. |
| 799 | * 2b must not be allowed at all time. |
| 800 | */ |
| 801 | |
| 802 | /* |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 803 | * For now, we do allow update to btrfs_fs_device through the |
| 804 | * btrfs dev scan cli after FS has been mounted. We're still |
| 805 | * tracking a problem where systems fail mount by subvolume id |
| 806 | * when we reject replacement on a mounted FS. |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 807 | */ |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 808 | if (!fs_devices->opened && found_transid < device->generation) { |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 809 | /* |
| 810 | * That is if the FS is _not_ mounted and if you |
| 811 | * are here, that means there is more than one |
| 812 | * disk with same uuid and devid.We keep the one |
| 813 | * with larger generation number or the last-in if |
| 814 | * generation are equal. |
| 815 | */ |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 816 | return -EEXIST; |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 817 | } |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 818 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 819 | name = rcu_string_strdup(path, GFP_NOFS); |
TARUISI Hiroaki | 3a0524d | 2010-02-09 06:36:45 +0000 | [diff] [blame] | 820 | if (!name) |
| 821 | return -ENOMEM; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 822 | rcu_string_free(device->name); |
| 823 | rcu_assign_pointer(device->name, name); |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 824 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 825 | fs_devices->missing_devices--; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 826 | clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 827 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 828 | } |
| 829 | |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 830 | /* |
| 831 | * Unmount does not free the btrfs_device struct but would zero |
| 832 | * generation along with most of the other members. So just update |
| 833 | * it back. We need it to pick the disk with largest generation |
| 834 | * (as above). |
| 835 | */ |
| 836 | if (!fs_devices->opened) |
| 837 | device->generation = found_transid; |
| 838 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 839 | *fs_devices_ret = fs_devices; |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 840 | |
| 841 | return ret; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 842 | } |
| 843 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 844 | static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig) |
| 845 | { |
| 846 | struct btrfs_fs_devices *fs_devices; |
| 847 | struct btrfs_device *device; |
| 848 | struct btrfs_device *orig_dev; |
| 849 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 850 | fs_devices = alloc_fs_devices(orig->fsid); |
| 851 | if (IS_ERR(fs_devices)) |
| 852 | return fs_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 853 | |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 854 | mutex_lock(&orig->device_list_mutex); |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 855 | fs_devices->total_devices = orig->total_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 856 | |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 857 | /* 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] | 858 | list_for_each_entry(orig_dev, &orig->devices, dev_list) { |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 859 | struct rcu_string *name; |
| 860 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 861 | device = btrfs_alloc_device(NULL, &orig_dev->devid, |
| 862 | orig_dev->uuid); |
| 863 | if (IS_ERR(device)) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 864 | goto error; |
| 865 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 866 | /* |
| 867 | * This is ok to do without rcu read locked because we hold the |
| 868 | * uuid mutex so nothing we touch in here is going to disappear. |
| 869 | */ |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 870 | if (orig_dev->name) { |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 871 | name = rcu_string_strdup(orig_dev->name->str, |
| 872 | GFP_KERNEL); |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 873 | if (!name) { |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 874 | free_device(device); |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 875 | goto error; |
| 876 | } |
| 877 | rcu_assign_pointer(device->name, name); |
Julia Lawall | fd2696f | 2009-09-29 13:51:04 -0400 | [diff] [blame] | 878 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 879 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 880 | list_add(&device->dev_list, &fs_devices->devices); |
| 881 | device->fs_devices = fs_devices; |
| 882 | fs_devices->num_devices++; |
| 883 | } |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 884 | mutex_unlock(&orig->device_list_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 885 | return fs_devices; |
| 886 | error: |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 887 | mutex_unlock(&orig->device_list_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 888 | free_fs_devices(fs_devices); |
| 889 | return ERR_PTR(-ENOMEM); |
| 890 | } |
| 891 | |
Eric Sandeen | 9eaed21 | 2014-08-01 18:12:35 -0500 | [diff] [blame] | 892 | void btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices, int step) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 893 | { |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 894 | struct btrfs_device *device, *next; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 895 | struct btrfs_device *latest_dev = NULL; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 896 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 897 | mutex_lock(&uuid_mutex); |
| 898 | again: |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 899 | /* This is the initialized path, it is safe to release the devices. */ |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 900 | list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) { |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 901 | if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 902 | &device->dev_state)) { |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 903 | if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
| 904 | &device->dev_state) && |
| 905 | (!latest_dev || |
| 906 | device->generation > latest_dev->generation)) { |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 907 | latest_dev = device; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 908 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 909 | continue; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 910 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 911 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 912 | if (device->devid == BTRFS_DEV_REPLACE_DEVID) { |
| 913 | /* |
| 914 | * In the first step, keep the device which has |
| 915 | * the correct fsid and the devid that is used |
| 916 | * for the dev_replace procedure. |
| 917 | * In the second step, the dev_replace state is |
| 918 | * read from the device tree and it is known |
| 919 | * whether the procedure is really active or |
| 920 | * not, which means whether this device is |
| 921 | * used or whether it should be removed. |
| 922 | */ |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 923 | if (step == 0 || test_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
| 924 | &device->dev_state)) { |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 925 | continue; |
| 926 | } |
| 927 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 928 | if (device->bdev) { |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 929 | blkdev_put(device->bdev, device->mode); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 930 | device->bdev = NULL; |
| 931 | fs_devices->open_devices--; |
| 932 | } |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 933 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 934 | list_del_init(&device->dev_alloc_list); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 935 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 936 | if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
| 937 | &device->dev_state)) |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 938 | fs_devices->rw_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 939 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 940 | list_del_init(&device->dev_list); |
| 941 | fs_devices->num_devices--; |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 942 | free_device(device); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 943 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 944 | |
| 945 | if (fs_devices->seed) { |
| 946 | fs_devices = fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 947 | goto again; |
| 948 | } |
| 949 | |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 950 | fs_devices->latest_bdev = latest_dev->bdev; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 951 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 952 | mutex_unlock(&uuid_mutex); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 953 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 954 | |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 955 | static void free_device_rcu(struct rcu_head *head) |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 956 | { |
| 957 | struct btrfs_device *device; |
| 958 | |
| 959 | device = container_of(head, struct btrfs_device, rcu); |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 960 | free_device(device); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 961 | } |
| 962 | |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 963 | static void btrfs_close_bdev(struct btrfs_device *device) |
| 964 | { |
David Sterba | 08ffcae | 2017-06-19 16:55:35 +0200 | [diff] [blame] | 965 | if (!device->bdev) |
| 966 | return; |
| 967 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 968 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 969 | sync_blockdev(device->bdev); |
| 970 | invalidate_bdev(device->bdev); |
| 971 | } |
| 972 | |
David Sterba | 08ffcae | 2017-06-19 16:55:35 +0200 | [diff] [blame] | 973 | blkdev_put(device->bdev, device->mode); |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 974 | } |
| 975 | |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 976 | static void btrfs_prepare_close_one_device(struct btrfs_device *device) |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 977 | { |
| 978 | struct btrfs_fs_devices *fs_devices = device->fs_devices; |
| 979 | struct btrfs_device *new_device; |
| 980 | struct rcu_string *name; |
| 981 | |
| 982 | if (device->bdev) |
| 983 | fs_devices->open_devices--; |
| 984 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 985 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 986 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
| 987 | list_del_init(&device->dev_alloc_list); |
| 988 | fs_devices->rw_devices--; |
| 989 | } |
| 990 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 991 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 992 | fs_devices->missing_devices--; |
| 993 | |
| 994 | new_device = btrfs_alloc_device(NULL, &device->devid, |
| 995 | device->uuid); |
| 996 | BUG_ON(IS_ERR(new_device)); /* -ENOMEM */ |
| 997 | |
| 998 | /* Safe because we are under uuid_mutex */ |
| 999 | if (device->name) { |
| 1000 | name = rcu_string_strdup(device->name->str, GFP_NOFS); |
| 1001 | BUG_ON(!name); /* -ENOMEM */ |
| 1002 | rcu_assign_pointer(new_device->name, name); |
| 1003 | } |
| 1004 | |
| 1005 | list_replace_rcu(&device->dev_list, &new_device->dev_list); |
| 1006 | new_device->fs_devices = device->fs_devices; |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1007 | } |
| 1008 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1009 | static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1010 | { |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 1011 | struct btrfs_device *device, *tmp; |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1012 | struct list_head pending_put; |
| 1013 | |
| 1014 | INIT_LIST_HEAD(&pending_put); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1015 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1016 | if (--fs_devices->opened > 0) |
| 1017 | return 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1018 | |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 1019 | mutex_lock(&fs_devices->device_list_mutex); |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 1020 | list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) { |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1021 | btrfs_prepare_close_one_device(device); |
| 1022 | list_add(&device->dev_list, &pending_put); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1023 | } |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 1024 | mutex_unlock(&fs_devices->device_list_mutex); |
| 1025 | |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1026 | /* |
| 1027 | * btrfs_show_devname() is using the device_list_mutex, |
| 1028 | * sometimes call to blkdev_put() leads vfs calling |
| 1029 | * into this func. So do put outside of device_list_mutex, |
| 1030 | * as of now. |
| 1031 | */ |
| 1032 | while (!list_empty(&pending_put)) { |
| 1033 | device = list_first_entry(&pending_put, |
| 1034 | struct btrfs_device, dev_list); |
| 1035 | list_del(&device->dev_list); |
| 1036 | btrfs_close_bdev(device); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 1037 | call_rcu(&device->rcu, free_device_rcu); |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1038 | } |
| 1039 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1040 | WARN_ON(fs_devices->open_devices); |
| 1041 | WARN_ON(fs_devices->rw_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1042 | fs_devices->opened = 0; |
| 1043 | fs_devices->seeding = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1044 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1045 | return 0; |
| 1046 | } |
| 1047 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1048 | int btrfs_close_devices(struct btrfs_fs_devices *fs_devices) |
| 1049 | { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1050 | struct btrfs_fs_devices *seed_devices = NULL; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1051 | int ret; |
| 1052 | |
| 1053 | mutex_lock(&uuid_mutex); |
| 1054 | ret = __btrfs_close_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1055 | if (!fs_devices->opened) { |
| 1056 | seed_devices = fs_devices->seed; |
| 1057 | fs_devices->seed = NULL; |
| 1058 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1059 | mutex_unlock(&uuid_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1060 | |
| 1061 | while (seed_devices) { |
| 1062 | fs_devices = seed_devices; |
| 1063 | seed_devices = fs_devices->seed; |
| 1064 | __btrfs_close_devices(fs_devices); |
| 1065 | free_fs_devices(fs_devices); |
| 1066 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1067 | return ret; |
| 1068 | } |
| 1069 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1070 | static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices, |
| 1071 | fmode_t flags, void *holder) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1072 | { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1073 | struct list_head *head = &fs_devices->devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1074 | struct btrfs_device *device; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 1075 | struct btrfs_device *latest_dev = NULL; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1076 | int ret = 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1077 | |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1078 | flags |= FMODE_EXCL; |
| 1079 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 1080 | list_for_each_entry(device, head, dev_list) { |
Eric Sandeen | f63e0cc | 2013-04-04 20:45:08 +0000 | [diff] [blame] | 1081 | /* Just open everything we can; ignore failures here */ |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 1082 | if (btrfs_open_one_device(fs_devices, device, flags, holder)) |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1083 | continue; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1084 | |
Anand Jain | 9f050db | 2017-11-09 23:45:25 +0800 | [diff] [blame] | 1085 | if (!latest_dev || |
| 1086 | device->generation > latest_dev->generation) |
| 1087 | latest_dev = device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1088 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1089 | if (fs_devices->open_devices == 0) { |
Ilya Dryomov | 20bcd64 | 2011-10-20 00:06:20 +0300 | [diff] [blame] | 1090 | ret = -EINVAL; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1091 | goto out; |
| 1092 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1093 | fs_devices->opened = 1; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 1094 | fs_devices->latest_bdev = latest_dev->bdev; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1095 | fs_devices->total_rw_bytes = 0; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1096 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1097 | return ret; |
| 1098 | } |
| 1099 | |
| 1100 | int btrfs_open_devices(struct btrfs_fs_devices *fs_devices, |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 1101 | fmode_t flags, void *holder) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1102 | { |
| 1103 | int ret; |
| 1104 | |
| 1105 | mutex_lock(&uuid_mutex); |
| 1106 | if (fs_devices->opened) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1107 | fs_devices->opened++; |
| 1108 | ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1109 | } else { |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1110 | ret = __btrfs_open_devices(fs_devices, flags, holder); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1111 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1112 | mutex_unlock(&uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1113 | return ret; |
| 1114 | } |
| 1115 | |
Omar Sandoval | c9162bd | 2017-08-22 23:46:04 -0700 | [diff] [blame] | 1116 | static void btrfs_release_disk_super(struct page *page) |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1117 | { |
| 1118 | kunmap(page); |
| 1119 | put_page(page); |
| 1120 | } |
| 1121 | |
Omar Sandoval | c9162bd | 2017-08-22 23:46:04 -0700 | [diff] [blame] | 1122 | static int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr, |
| 1123 | struct page **page, |
| 1124 | struct btrfs_super_block **disk_super) |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1125 | { |
| 1126 | void *p; |
| 1127 | pgoff_t index; |
| 1128 | |
| 1129 | /* make sure our super fits in the device */ |
| 1130 | if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode)) |
| 1131 | return 1; |
| 1132 | |
| 1133 | /* make sure our super fits in the page */ |
| 1134 | if (sizeof(**disk_super) > PAGE_SIZE) |
| 1135 | return 1; |
| 1136 | |
| 1137 | /* make sure our super doesn't straddle pages on disk */ |
| 1138 | index = bytenr >> PAGE_SHIFT; |
| 1139 | if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index) |
| 1140 | return 1; |
| 1141 | |
| 1142 | /* pull in the page with our super */ |
| 1143 | *page = read_cache_page_gfp(bdev->bd_inode->i_mapping, |
| 1144 | index, GFP_KERNEL); |
| 1145 | |
| 1146 | if (IS_ERR_OR_NULL(*page)) |
| 1147 | return 1; |
| 1148 | |
| 1149 | p = kmap(*page); |
| 1150 | |
| 1151 | /* align our pointer to the offset of the super block */ |
| 1152 | *disk_super = p + (bytenr & ~PAGE_MASK); |
| 1153 | |
| 1154 | if (btrfs_super_bytenr(*disk_super) != bytenr || |
| 1155 | btrfs_super_magic(*disk_super) != BTRFS_MAGIC) { |
| 1156 | btrfs_release_disk_super(*page); |
| 1157 | return 1; |
| 1158 | } |
| 1159 | |
| 1160 | if ((*disk_super)->label[0] && |
| 1161 | (*disk_super)->label[BTRFS_LABEL_SIZE - 1]) |
| 1162 | (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0'; |
| 1163 | |
| 1164 | return 0; |
| 1165 | } |
| 1166 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1167 | /* |
| 1168 | * Look for a btrfs signature on a device. This may be called out of the mount path |
| 1169 | * and we are not allowed to call set_blocksize during the scan. The superblock |
| 1170 | * is read via pagecache |
| 1171 | */ |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 1172 | 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] | 1173 | struct btrfs_fs_devices **fs_devices_ret) |
| 1174 | { |
| 1175 | struct btrfs_super_block *disk_super; |
| 1176 | struct block_device *bdev; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1177 | struct page *page; |
Anand Jain | 05a5c55 | 2017-12-15 15:40:16 +0800 | [diff] [blame] | 1178 | int ret; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1179 | u64 devid; |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 1180 | u64 transid; |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1181 | u64 total_devices; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1182 | u64 bytenr; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1183 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1184 | /* |
| 1185 | * we would like to check all the supers, but that would make |
| 1186 | * a btrfs mount succeed after a mkfs from a different FS. |
| 1187 | * So, we need to add a special mount option to scan for |
| 1188 | * later supers, using BTRFS_SUPER_MIRROR_MAX instead |
| 1189 | */ |
| 1190 | bytenr = btrfs_sb_offset(0); |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1191 | flags |= FMODE_EXCL; |
Al Viro | 10f6327 | 2011-11-17 15:05:22 -0500 | [diff] [blame] | 1192 | mutex_lock(&uuid_mutex); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1193 | |
| 1194 | bdev = blkdev_get_by_path(path, flags, holder); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1195 | if (IS_ERR(bdev)) { |
| 1196 | ret = PTR_ERR(bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1197 | goto error; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1198 | } |
| 1199 | |
Anand Jain | 05a5c55 | 2017-12-15 15:40:16 +0800 | [diff] [blame] | 1200 | if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super)) { |
| 1201 | ret = -EINVAL; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1202 | goto error_bdev_put; |
Anand Jain | 05a5c55 | 2017-12-15 15:40:16 +0800 | [diff] [blame] | 1203 | } |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1204 | |
Xiao Guangrong | a343832 | 2010-01-06 11:48:18 +0000 | [diff] [blame] | 1205 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 1206 | transid = btrfs_super_generation(disk_super); |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1207 | total_devices = btrfs_super_num_devices(disk_super); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1208 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1209 | ret = device_list_add(path, disk_super, devid, fs_devices_ret); |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 1210 | if (ret > 0) { |
Anand Jain | 05a5c55 | 2017-12-15 15:40:16 +0800 | [diff] [blame] | 1211 | if (disk_super->label[0]) |
Jeff Mahoney | 62e8557 | 2016-09-20 10:05:01 -0400 | [diff] [blame] | 1212 | pr_info("BTRFS: device label %s ", disk_super->label); |
Anand Jain | 05a5c55 | 2017-12-15 15:40:16 +0800 | [diff] [blame] | 1213 | else |
Jeff Mahoney | 62e8557 | 2016-09-20 10:05:01 -0400 | [diff] [blame] | 1214 | pr_info("BTRFS: device fsid %pU ", disk_super->fsid); |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 1215 | |
Jeff Mahoney | 62e8557 | 2016-09-20 10:05:01 -0400 | [diff] [blame] | 1216 | pr_cont("devid %llu transid %llu %s\n", devid, transid, path); |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 1217 | ret = 0; |
| 1218 | } |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1219 | if (!ret && fs_devices_ret) |
| 1220 | (*fs_devices_ret)->total_devices = total_devices; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1221 | |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1222 | btrfs_release_disk_super(page); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1223 | |
| 1224 | error_bdev_put: |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1225 | blkdev_put(bdev, flags); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1226 | error: |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1227 | mutex_unlock(&uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1228 | return ret; |
| 1229 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1230 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1231 | /* helper to account the used device space in the range */ |
| 1232 | int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start, |
| 1233 | u64 end, u64 *length) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1234 | { |
| 1235 | struct btrfs_key key; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 1236 | struct btrfs_root *root = device->fs_info->dev_root; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1237 | struct btrfs_dev_extent *dev_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1238 | struct btrfs_path *path; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1239 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1240 | int ret; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1241 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1242 | struct extent_buffer *l; |
| 1243 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1244 | *length = 0; |
| 1245 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1246 | if (start >= device->total_bytes || |
| 1247 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1248 | return 0; |
| 1249 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1250 | path = btrfs_alloc_path(); |
| 1251 | if (!path) |
| 1252 | return -ENOMEM; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1253 | path->reada = READA_FORWARD; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1254 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1255 | key.objectid = device->devid; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1256 | key.offset = start; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1257 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1258 | |
| 1259 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1260 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1261 | goto out; |
Yan Zheng | 1fcbac5 | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 1262 | if (ret > 0) { |
| 1263 | ret = btrfs_previous_item(root, path, key.objectid, key.type); |
| 1264 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1265 | goto out; |
Yan Zheng | 1fcbac5 | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 1266 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1267 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1268 | while (1) { |
| 1269 | l = path->nodes[0]; |
| 1270 | slot = path->slots[0]; |
| 1271 | if (slot >= btrfs_header_nritems(l)) { |
| 1272 | ret = btrfs_next_leaf(root, path); |
| 1273 | if (ret == 0) |
| 1274 | continue; |
| 1275 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1276 | goto out; |
| 1277 | |
| 1278 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1279 | } |
| 1280 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1281 | |
| 1282 | if (key.objectid < device->devid) |
| 1283 | goto next; |
| 1284 | |
| 1285 | if (key.objectid > device->devid) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1286 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1287 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1288 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1289 | goto next; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1290 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1291 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1292 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1293 | dev_extent); |
| 1294 | if (key.offset <= start && extent_end > end) { |
| 1295 | *length = end - start + 1; |
| 1296 | break; |
| 1297 | } else if (key.offset <= start && extent_end > start) |
| 1298 | *length += extent_end - start; |
| 1299 | else if (key.offset > start && extent_end <= end) |
| 1300 | *length += extent_end - key.offset; |
| 1301 | else if (key.offset > start && key.offset <= end) { |
| 1302 | *length += end - key.offset + 1; |
| 1303 | break; |
| 1304 | } else if (key.offset > end) |
| 1305 | break; |
| 1306 | |
| 1307 | next: |
| 1308 | path->slots[0]++; |
| 1309 | } |
| 1310 | ret = 0; |
| 1311 | out: |
| 1312 | btrfs_free_path(path); |
| 1313 | return ret; |
| 1314 | } |
| 1315 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1316 | static int contains_pending_extent(struct btrfs_transaction *transaction, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1317 | struct btrfs_device *device, |
| 1318 | u64 *start, u64 len) |
| 1319 | { |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 1320 | struct btrfs_fs_info *fs_info = device->fs_info; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1321 | struct extent_map *em; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1322 | struct list_head *search_list = &fs_info->pinned_chunks; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1323 | int ret = 0; |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1324 | u64 physical_start = *start; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1325 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1326 | if (transaction) |
| 1327 | search_list = &transaction->pending_chunks; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 1328 | again: |
| 1329 | list_for_each_entry(em, search_list, list) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1330 | struct map_lookup *map; |
| 1331 | int i; |
| 1332 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 1333 | map = em->map_lookup; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1334 | for (i = 0; i < map->num_stripes; i++) { |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1335 | u64 end; |
| 1336 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1337 | if (map->stripes[i].dev != device) |
| 1338 | continue; |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1339 | if (map->stripes[i].physical >= physical_start + len || |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1340 | map->stripes[i].physical + em->orig_block_len <= |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1341 | physical_start) |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1342 | continue; |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1343 | /* |
| 1344 | * Make sure that while processing the pinned list we do |
| 1345 | * not override our *start with a lower value, because |
| 1346 | * we can have pinned chunks that fall within this |
| 1347 | * device hole and that have lower physical addresses |
| 1348 | * than the pending chunks we processed before. If we |
| 1349 | * do not take this special care we can end up getting |
| 1350 | * 2 pending chunks that start at the same physical |
| 1351 | * device offsets because the end offset of a pinned |
| 1352 | * chunk can be equal to the start offset of some |
| 1353 | * pending chunk. |
| 1354 | */ |
| 1355 | end = map->stripes[i].physical + em->orig_block_len; |
| 1356 | if (end > *start) { |
| 1357 | *start = end; |
| 1358 | ret = 1; |
| 1359 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1360 | } |
| 1361 | } |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1362 | if (search_list != &fs_info->pinned_chunks) { |
| 1363 | search_list = &fs_info->pinned_chunks; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 1364 | goto again; |
| 1365 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1366 | |
| 1367 | return ret; |
| 1368 | } |
| 1369 | |
| 1370 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1371 | /* |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1372 | * find_free_dev_extent_start - find free space in the specified device |
| 1373 | * @device: the device which we search the free space in |
| 1374 | * @num_bytes: the size of the free space that we need |
| 1375 | * @search_start: the position from which to begin the search |
| 1376 | * @start: store the start of the free space. |
| 1377 | * @len: the size of the free space. that we find, or the size |
| 1378 | * 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] | 1379 | * |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1380 | * this uses a pretty simple search, the expectation is that it is |
| 1381 | * called very infrequently and that a given device has a small number |
| 1382 | * of extents |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1383 | * |
| 1384 | * @start is used to store the start of the free space if we find. But if we |
| 1385 | * don't find suitable free space, it will be used to store the start position |
| 1386 | * of the max free space. |
| 1387 | * |
| 1388 | * @len is used to store the size of the free space that we find. |
| 1389 | * But if we don't find suitable free space, it is used to store the size of |
| 1390 | * the max free space. |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1391 | */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1392 | int find_free_dev_extent_start(struct btrfs_transaction *transaction, |
| 1393 | struct btrfs_device *device, u64 num_bytes, |
| 1394 | u64 search_start, u64 *start, u64 *len) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1395 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1396 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1397 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1398 | struct btrfs_key key; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1399 | struct btrfs_dev_extent *dev_extent; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1400 | struct btrfs_path *path; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1401 | u64 hole_size; |
| 1402 | u64 max_hole_start; |
| 1403 | u64 max_hole_size; |
| 1404 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1405 | u64 search_end = device->total_bytes; |
| 1406 | int ret; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1407 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1408 | struct extent_buffer *l; |
Filipe Manana | 8cdc7c5 | 2016-01-06 22:42:35 +0000 | [diff] [blame] | 1409 | |
| 1410 | /* |
| 1411 | * We don't want to overwrite the superblock on the drive nor any area |
| 1412 | * used by the boot loader (grub for example), so we make sure to start |
| 1413 | * at an offset of at least 1MB. |
| 1414 | */ |
David Sterba | 0d0c71b | 2017-06-15 01:30:06 +0200 | [diff] [blame] | 1415 | search_start = max_t(u64, search_start, SZ_1M); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1416 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1417 | path = btrfs_alloc_path(); |
| 1418 | if (!path) |
| 1419 | return -ENOMEM; |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1420 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1421 | max_hole_start = search_start; |
| 1422 | max_hole_size = 0; |
| 1423 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1424 | again: |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1425 | if (search_start >= search_end || |
| 1426 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1427 | ret = -ENOSPC; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1428 | goto out; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1429 | } |
| 1430 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1431 | path->reada = READA_FORWARD; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1432 | path->search_commit_root = 1; |
| 1433 | path->skip_locking = 1; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1434 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1435 | key.objectid = device->devid; |
| 1436 | key.offset = search_start; |
| 1437 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1438 | |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 1439 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1440 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1441 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1442 | if (ret > 0) { |
| 1443 | ret = btrfs_previous_item(root, path, key.objectid, key.type); |
| 1444 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1445 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1446 | } |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1447 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1448 | while (1) { |
| 1449 | l = path->nodes[0]; |
| 1450 | slot = path->slots[0]; |
| 1451 | if (slot >= btrfs_header_nritems(l)) { |
| 1452 | ret = btrfs_next_leaf(root, path); |
| 1453 | if (ret == 0) |
| 1454 | continue; |
| 1455 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1456 | goto out; |
| 1457 | |
| 1458 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1459 | } |
| 1460 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1461 | |
| 1462 | if (key.objectid < device->devid) |
| 1463 | goto next; |
| 1464 | |
| 1465 | if (key.objectid > device->devid) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1466 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1467 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1468 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1469 | goto next; |
| 1470 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1471 | if (key.offset > search_start) { |
| 1472 | hole_size = key.offset - search_start; |
| 1473 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1474 | /* |
| 1475 | * Have to check before we set max_hole_start, otherwise |
| 1476 | * we could end up sending back this offset anyway. |
| 1477 | */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1478 | if (contains_pending_extent(transaction, device, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1479 | &search_start, |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1480 | hole_size)) { |
| 1481 | if (key.offset >= search_start) { |
| 1482 | hole_size = key.offset - search_start; |
| 1483 | } else { |
| 1484 | WARN_ON_ONCE(1); |
| 1485 | hole_size = 0; |
| 1486 | } |
| 1487 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1488 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1489 | if (hole_size > max_hole_size) { |
| 1490 | max_hole_start = search_start; |
| 1491 | max_hole_size = hole_size; |
| 1492 | } |
| 1493 | |
| 1494 | /* |
| 1495 | * If this free space is greater than which we need, |
| 1496 | * it must be the max free space that we have found |
| 1497 | * until now, so max_hole_start must point to the start |
| 1498 | * of this free space and the length of this free space |
| 1499 | * is stored in max_hole_size. Thus, we return |
| 1500 | * max_hole_start and max_hole_size and go back to the |
| 1501 | * caller. |
| 1502 | */ |
| 1503 | if (hole_size >= num_bytes) { |
| 1504 | ret = 0; |
| 1505 | goto out; |
| 1506 | } |
| 1507 | } |
| 1508 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1509 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1510 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1511 | dev_extent); |
| 1512 | if (extent_end > search_start) |
| 1513 | search_start = extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1514 | next: |
| 1515 | path->slots[0]++; |
| 1516 | cond_resched(); |
| 1517 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1518 | |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1519 | /* |
| 1520 | * At this point, search_start should be the end of |
| 1521 | * allocated dev extents, and when shrinking the device, |
| 1522 | * search_end may be smaller than search_start. |
| 1523 | */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1524 | if (search_end > search_start) { |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1525 | hole_size = search_end - search_start; |
| 1526 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1527 | if (contains_pending_extent(transaction, device, &search_start, |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1528 | hole_size)) { |
| 1529 | btrfs_release_path(path); |
| 1530 | goto again; |
| 1531 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1532 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1533 | if (hole_size > max_hole_size) { |
| 1534 | max_hole_start = search_start; |
| 1535 | max_hole_size = hole_size; |
| 1536 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1537 | } |
| 1538 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1539 | /* See above. */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1540 | if (max_hole_size < num_bytes) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1541 | ret = -ENOSPC; |
| 1542 | else |
| 1543 | ret = 0; |
| 1544 | |
| 1545 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1546 | btrfs_free_path(path); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1547 | *start = max_hole_start; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 1548 | if (len) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1549 | *len = max_hole_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1550 | return ret; |
| 1551 | } |
| 1552 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1553 | int find_free_dev_extent(struct btrfs_trans_handle *trans, |
| 1554 | struct btrfs_device *device, u64 num_bytes, |
| 1555 | u64 *start, u64 *len) |
| 1556 | { |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1557 | /* FIXME use last free of some kind */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1558 | return find_free_dev_extent_start(trans->transaction, device, |
Filipe Manana | 8cdc7c5 | 2016-01-06 22:42:35 +0000 | [diff] [blame] | 1559 | num_bytes, 0, start, len); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1560 | } |
| 1561 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1562 | static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1563 | struct btrfs_device *device, |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1564 | u64 start, u64 *dev_extent_len) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1565 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1566 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1567 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1568 | int ret; |
| 1569 | struct btrfs_path *path; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1570 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1571 | struct btrfs_key found_key; |
| 1572 | struct extent_buffer *leaf = NULL; |
| 1573 | struct btrfs_dev_extent *extent = NULL; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1574 | |
| 1575 | path = btrfs_alloc_path(); |
| 1576 | if (!path) |
| 1577 | return -ENOMEM; |
| 1578 | |
| 1579 | key.objectid = device->devid; |
| 1580 | key.offset = start; |
| 1581 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1582 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1583 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1584 | if (ret > 0) { |
| 1585 | ret = btrfs_previous_item(root, path, key.objectid, |
| 1586 | BTRFS_DEV_EXTENT_KEY); |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1587 | if (ret) |
| 1588 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1589 | leaf = path->nodes[0]; |
| 1590 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 1591 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1592 | struct btrfs_dev_extent); |
| 1593 | BUG_ON(found_key.offset > start || found_key.offset + |
| 1594 | btrfs_dev_extent_length(leaf, extent) < start); |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1595 | key = found_key; |
| 1596 | btrfs_release_path(path); |
| 1597 | goto again; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1598 | } else if (ret == 0) { |
| 1599 | leaf = path->nodes[0]; |
| 1600 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1601 | struct btrfs_dev_extent); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1602 | } else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1603 | btrfs_handle_fs_error(fs_info, ret, "Slot search failed"); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1604 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1605 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1606 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1607 | *dev_extent_len = btrfs_dev_extent_length(leaf, extent); |
| 1608 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1609 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1610 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1611 | btrfs_handle_fs_error(fs_info, ret, |
| 1612 | "Failed to remove dev extent item"); |
Zhao Lei | 13212b5 | 2015-02-12 14:18:17 +0800 | [diff] [blame] | 1613 | } else { |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 1614 | set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1615 | } |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1616 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1617 | btrfs_free_path(path); |
| 1618 | return ret; |
| 1619 | } |
| 1620 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1621 | static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans, |
| 1622 | struct btrfs_device *device, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1623 | u64 chunk_offset, u64 start, u64 num_bytes) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1624 | { |
| 1625 | int ret; |
| 1626 | struct btrfs_path *path; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1627 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1628 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1629 | struct btrfs_dev_extent *extent; |
| 1630 | struct extent_buffer *leaf; |
| 1631 | struct btrfs_key key; |
| 1632 | |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 1633 | 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] | 1634 | WARN_ON(test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1635 | path = btrfs_alloc_path(); |
| 1636 | if (!path) |
| 1637 | return -ENOMEM; |
| 1638 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1639 | key.objectid = device->devid; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1640 | key.offset = start; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1641 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 1642 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1643 | sizeof(*extent)); |
Mark Fasheh | 2cdcecb | 2011-09-08 17:14:32 -0700 | [diff] [blame] | 1644 | if (ret) |
| 1645 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1646 | |
| 1647 | leaf = path->nodes[0]; |
| 1648 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1649 | struct btrfs_dev_extent); |
Nikolay Borisov | b5d9071 | 2017-08-18 17:58:23 +0300 | [diff] [blame] | 1650 | btrfs_set_dev_extent_chunk_tree(leaf, extent, |
| 1651 | BTRFS_CHUNK_TREE_OBJECTID); |
Nikolay Borisov | 0ca00af | 2017-08-18 17:58:22 +0300 | [diff] [blame] | 1652 | btrfs_set_dev_extent_chunk_objectid(leaf, extent, |
| 1653 | BTRFS_FIRST_CHUNK_TREE_OBJECTID); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1654 | btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset); |
| 1655 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1656 | btrfs_set_dev_extent_length(leaf, extent, num_bytes); |
| 1657 | btrfs_mark_buffer_dirty(leaf); |
Mark Fasheh | 2cdcecb | 2011-09-08 17:14:32 -0700 | [diff] [blame] | 1658 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1659 | btrfs_free_path(path); |
| 1660 | return ret; |
| 1661 | } |
| 1662 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1663 | static u64 find_next_chunk(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1664 | { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1665 | struct extent_map_tree *em_tree; |
| 1666 | struct extent_map *em; |
| 1667 | struct rb_node *n; |
| 1668 | u64 ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1669 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1670 | em_tree = &fs_info->mapping_tree.map_tree; |
| 1671 | read_lock(&em_tree->lock); |
| 1672 | n = rb_last(&em_tree->map); |
| 1673 | if (n) { |
| 1674 | em = rb_entry(n, struct extent_map, rb_node); |
| 1675 | ret = em->start + em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1676 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1677 | read_unlock(&em_tree->lock); |
| 1678 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1679 | return ret; |
| 1680 | } |
| 1681 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1682 | static noinline int find_next_devid(struct btrfs_fs_info *fs_info, |
| 1683 | u64 *devid_ret) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1684 | { |
| 1685 | int ret; |
| 1686 | struct btrfs_key key; |
| 1687 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1688 | struct btrfs_path *path; |
| 1689 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1690 | path = btrfs_alloc_path(); |
| 1691 | if (!path) |
| 1692 | return -ENOMEM; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1693 | |
| 1694 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1695 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1696 | key.offset = (u64)-1; |
| 1697 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1698 | 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] | 1699 | if (ret < 0) |
| 1700 | goto error; |
| 1701 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1702 | BUG_ON(ret == 0); /* Corruption */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1703 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1704 | ret = btrfs_previous_item(fs_info->chunk_root, path, |
| 1705 | BTRFS_DEV_ITEMS_OBJECTID, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1706 | BTRFS_DEV_ITEM_KEY); |
| 1707 | if (ret) { |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1708 | *devid_ret = 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1709 | } else { |
| 1710 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 1711 | path->slots[0]); |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1712 | *devid_ret = found_key.offset + 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1713 | } |
| 1714 | ret = 0; |
| 1715 | error: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1716 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1717 | return ret; |
| 1718 | } |
| 1719 | |
| 1720 | /* |
| 1721 | * the device information is stored in the chunk root |
| 1722 | * the btrfs_device struct should be fully filled in |
| 1723 | */ |
Anand Jain | c74a0b0 | 2017-11-06 16:36:15 +0800 | [diff] [blame] | 1724 | static int btrfs_add_dev_item(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1725 | struct btrfs_fs_info *fs_info, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1726 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1727 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1728 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1729 | int ret; |
| 1730 | struct btrfs_path *path; |
| 1731 | struct btrfs_dev_item *dev_item; |
| 1732 | struct extent_buffer *leaf; |
| 1733 | struct btrfs_key key; |
| 1734 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1735 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1736 | path = btrfs_alloc_path(); |
| 1737 | if (!path) |
| 1738 | return -ENOMEM; |
| 1739 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1740 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1741 | key.type = BTRFS_DEV_ITEM_KEY; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1742 | key.offset = device->devid; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1743 | |
| 1744 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1745 | sizeof(*dev_item)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1746 | if (ret) |
| 1747 | goto out; |
| 1748 | |
| 1749 | leaf = path->nodes[0]; |
| 1750 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 1751 | |
| 1752 | btrfs_set_device_id(leaf, dev_item, device->devid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1753 | btrfs_set_device_generation(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1754 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 1755 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 1756 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 1757 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 1758 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 1759 | btrfs_device_get_disk_total_bytes(device)); |
| 1760 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 1761 | btrfs_device_get_bytes_used(device)); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1762 | btrfs_set_device_group(leaf, dev_item, 0); |
| 1763 | btrfs_set_device_seek_speed(leaf, dev_item, 0); |
| 1764 | btrfs_set_device_bandwidth(leaf, dev_item, 0); |
Chris Mason | c3027eb | 2008-12-08 16:40:21 -0500 | [diff] [blame] | 1765 | btrfs_set_device_start_offset(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1766 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 1767 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1768 | write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 1769 | ptr = btrfs_device_fsid(dev_item); |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 1770 | write_extent_buffer(leaf, fs_info->fsid, ptr, BTRFS_FSID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1771 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1772 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1773 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1774 | out: |
| 1775 | btrfs_free_path(path); |
| 1776 | return ret; |
| 1777 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1778 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1779 | /* |
| 1780 | * Function to update ctime/mtime for a given device path. |
| 1781 | * Mainly used for ctime/mtime based probe like libblkid. |
| 1782 | */ |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 1783 | static void update_dev_time(const char *path_name) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1784 | { |
| 1785 | struct file *filp; |
| 1786 | |
| 1787 | filp = filp_open(path_name, O_RDWR, 0); |
Al Viro | 98af592 | 2014-12-14 02:59:17 -0500 | [diff] [blame] | 1788 | if (IS_ERR(filp)) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1789 | return; |
| 1790 | file_update_time(filp); |
| 1791 | filp_close(filp, NULL); |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1792 | } |
| 1793 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1794 | static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info, |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1795 | struct btrfs_device *device) |
| 1796 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1797 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1798 | int ret; |
| 1799 | struct btrfs_path *path; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1800 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1801 | struct btrfs_trans_handle *trans; |
| 1802 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1803 | path = btrfs_alloc_path(); |
| 1804 | if (!path) |
| 1805 | return -ENOMEM; |
| 1806 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 1807 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 1808 | if (IS_ERR(trans)) { |
| 1809 | btrfs_free_path(path); |
| 1810 | return PTR_ERR(trans); |
| 1811 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1812 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1813 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1814 | key.offset = device->devid; |
| 1815 | |
| 1816 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1817 | if (ret) { |
| 1818 | if (ret > 0) |
| 1819 | ret = -ENOENT; |
| 1820 | btrfs_abort_transaction(trans, ret); |
| 1821 | btrfs_end_transaction(trans); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1822 | goto out; |
| 1823 | } |
| 1824 | |
| 1825 | ret = btrfs_del_item(trans, root, path); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1826 | if (ret) { |
| 1827 | btrfs_abort_transaction(trans, ret); |
| 1828 | btrfs_end_transaction(trans); |
| 1829 | } |
| 1830 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1831 | out: |
| 1832 | btrfs_free_path(path); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1833 | if (!ret) |
| 1834 | ret = btrfs_commit_transaction(trans); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1835 | return ret; |
| 1836 | } |
| 1837 | |
David Sterba | 3cc31a0 | 2016-02-15 16:00:26 +0100 | [diff] [blame] | 1838 | /* |
| 1839 | * Verify that @num_devices satisfies the RAID profile constraints in the whole |
| 1840 | * filesystem. It's up to the caller to adjust that number regarding eg. device |
| 1841 | * replace. |
| 1842 | */ |
| 1843 | static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info, |
| 1844 | u64 num_devices) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1845 | { |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1846 | u64 all_avail; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1847 | unsigned seq; |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1848 | int i; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1849 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1850 | do { |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1851 | seq = read_seqbegin(&fs_info->profiles_lock); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1852 | |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1853 | all_avail = fs_info->avail_data_alloc_bits | |
| 1854 | fs_info->avail_system_alloc_bits | |
| 1855 | fs_info->avail_metadata_alloc_bits; |
| 1856 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1857 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1858 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 1859 | if (!(all_avail & btrfs_raid_group[i])) |
| 1860 | continue; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1861 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1862 | if (num_devices < btrfs_raid_array[i].devs_min) { |
| 1863 | int ret = btrfs_raid_mindev_error[i]; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1864 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1865 | if (ret) |
| 1866 | return ret; |
| 1867 | } |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1868 | } |
| 1869 | |
| 1870 | return 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1871 | } |
| 1872 | |
Omar Sandoval | c9162bd | 2017-08-22 23:46:04 -0700 | [diff] [blame] | 1873 | static struct btrfs_device * btrfs_find_next_active_device( |
| 1874 | struct btrfs_fs_devices *fs_devs, struct btrfs_device *device) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 1875 | { |
| 1876 | struct btrfs_device *next_device; |
| 1877 | |
| 1878 | list_for_each_entry(next_device, &fs_devs->devices, dev_list) { |
| 1879 | if (next_device != device && |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 1880 | !test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state) |
| 1881 | && next_device->bdev) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 1882 | return next_device; |
| 1883 | } |
| 1884 | |
| 1885 | return NULL; |
| 1886 | } |
| 1887 | |
| 1888 | /* |
| 1889 | * Helper function to check if the given device is part of s_bdev / latest_bdev |
| 1890 | * and replace it with the provided or the next active device, in the context |
| 1891 | * where this function called, there should be always be another device (or |
| 1892 | * this_dev) which is active. |
| 1893 | */ |
| 1894 | void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info, |
| 1895 | struct btrfs_device *device, struct btrfs_device *this_dev) |
| 1896 | { |
| 1897 | struct btrfs_device *next_device; |
| 1898 | |
| 1899 | if (this_dev) |
| 1900 | next_device = this_dev; |
| 1901 | else |
| 1902 | next_device = btrfs_find_next_active_device(fs_info->fs_devices, |
| 1903 | device); |
| 1904 | ASSERT(next_device); |
| 1905 | |
| 1906 | if (fs_info->sb->s_bdev && |
| 1907 | (fs_info->sb->s_bdev == device->bdev)) |
| 1908 | fs_info->sb->s_bdev = next_device->bdev; |
| 1909 | |
| 1910 | if (fs_info->fs_devices->latest_bdev == device->bdev) |
| 1911 | fs_info->fs_devices->latest_bdev = next_device->bdev; |
| 1912 | } |
| 1913 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 1914 | int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path, |
| 1915 | u64 devid) |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1916 | { |
| 1917 | struct btrfs_device *device; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1918 | struct btrfs_fs_devices *cur_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1919 | u64 num_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1920 | int ret = 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1921 | |
Anand Jain | 2c99738 | 2017-11-06 10:28:00 +0800 | [diff] [blame] | 1922 | mutex_lock(&fs_info->volume_mutex); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1923 | mutex_lock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1924 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1925 | num_devices = fs_info->fs_devices->num_devices; |
| 1926 | btrfs_dev_replace_lock(&fs_info->dev_replace, 0); |
| 1927 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) { |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1928 | WARN_ON(num_devices < 1); |
| 1929 | num_devices--; |
| 1930 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1931 | btrfs_dev_replace_unlock(&fs_info->dev_replace, 0); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1932 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1933 | ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1934 | if (ret) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1935 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1936 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1937 | ret = btrfs_find_device_by_devspec(fs_info, devid, device_path, |
| 1938 | &device); |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1939 | if (ret) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1940 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1941 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1942 | if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1943 | ret = BTRFS_ERROR_DEV_TGT_REPLACE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1944 | goto out; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1945 | } |
| 1946 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1947 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
| 1948 | fs_info->fs_devices->rw_devices == 1) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1949 | ret = BTRFS_ERROR_DEV_ONLY_WRITABLE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1950 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1951 | } |
| 1952 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1953 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 1954 | mutex_lock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1955 | list_del_init(&device->dev_alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 1956 | device->fs_devices->rw_devices--; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 1957 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1958 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1959 | |
Carey Underwood | d790155 | 2013-03-04 16:37:06 -0600 | [diff] [blame] | 1960 | mutex_unlock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1961 | ret = btrfs_shrink_device(device, 0); |
Carey Underwood | d790155 | 2013-03-04 16:37:06 -0600 | [diff] [blame] | 1962 | mutex_lock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1963 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1964 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1965 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1966 | /* |
| 1967 | * TODO: the superblock still includes this device in its num_devices |
| 1968 | * counter although write_all_supers() is not locked out. This |
| 1969 | * could give a filesystem state which requires a degraded mount. |
| 1970 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1971 | ret = btrfs_rm_dev_item(fs_info, device); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1972 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1973 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1974 | |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 1975 | clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1976 | btrfs_scrub_cancel_dev(fs_info, device); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1977 | |
| 1978 | /* |
| 1979 | * the device list mutex makes sure that we don't change |
| 1980 | * the device list while someone else is writing out all |
Filipe David Borba Manana | d730680 | 2013-08-09 15:41:36 +0100 | [diff] [blame] | 1981 | * the device supers. Whoever is writing all supers, should |
| 1982 | * lock the device list mutex before getting the number of |
| 1983 | * devices in the super block (super_copy). Conversely, |
| 1984 | * whoever updates the number of devices in the super block |
| 1985 | * (super_copy) should hold the device list mutex. |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1986 | */ |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1987 | |
| 1988 | cur_devices = device->fs_devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1989 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1990 | list_del_rcu(&device->dev_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1991 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1992 | device->fs_devices->num_devices--; |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1993 | device->fs_devices->total_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1994 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 1995 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) |
Miao Xie | 3a7d55c | 2014-07-16 18:38:01 +0800 | [diff] [blame] | 1996 | device->fs_devices->missing_devices--; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 1997 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1998 | btrfs_assign_next_active_device(fs_info, device, NULL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1999 | |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2000 | if (device->bdev) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2001 | device->fs_devices->open_devices--; |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2002 | /* remove sysfs entry */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2003 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, device); |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 2004 | } |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 2005 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2006 | num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1; |
| 2007 | btrfs_set_super_num_devices(fs_info->super_copy, num_devices); |
| 2008 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2009 | |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2010 | /* |
| 2011 | * at this point, the device is zero sized and detached from |
| 2012 | * the devices list. All that's left is to zero out the old |
| 2013 | * supers and free the device. |
| 2014 | */ |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2015 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2016 | btrfs_scratch_superblocks(device->bdev, device->name->str); |
| 2017 | |
| 2018 | btrfs_close_bdev(device); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 2019 | call_rcu(&device->rcu, free_device_rcu); |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2020 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2021 | if (cur_devices->open_devices == 0) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2022 | struct btrfs_fs_devices *fs_devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2023 | fs_devices = fs_info->fs_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2024 | while (fs_devices) { |
Rickard Strandqvist | 8321cf2 | 2014-05-22 22:43:43 +0200 | [diff] [blame] | 2025 | if (fs_devices->seed == cur_devices) { |
| 2026 | fs_devices->seed = cur_devices->seed; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2027 | break; |
Rickard Strandqvist | 8321cf2 | 2014-05-22 22:43:43 +0200 | [diff] [blame] | 2028 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2029 | fs_devices = fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2030 | } |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2031 | cur_devices->seed = NULL; |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2032 | __btrfs_close_devices(cur_devices); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2033 | free_fs_devices(cur_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2034 | } |
| 2035 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2036 | out: |
| 2037 | mutex_unlock(&uuid_mutex); |
Anand Jain | 2c99738 | 2017-11-06 10:28:00 +0800 | [diff] [blame] | 2038 | mutex_unlock(&fs_info->volume_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2039 | return ret; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2040 | |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2041 | error_undo: |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2042 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2043 | mutex_lock(&fs_info->chunk_mutex); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2044 | list_add(&device->dev_alloc_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2045 | &fs_info->fs_devices->alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 2046 | device->fs_devices->rw_devices++; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2047 | mutex_unlock(&fs_info->chunk_mutex); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2048 | } |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2049 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2050 | } |
| 2051 | |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 2052 | void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info, |
| 2053 | struct btrfs_device *srcdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2054 | { |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2055 | struct btrfs_fs_devices *fs_devices; |
| 2056 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2057 | WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex)); |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 2058 | |
Anand Jain | 25e8e91 | 2014-08-20 10:56:56 +0800 | [diff] [blame] | 2059 | /* |
| 2060 | * in case of fs with no seed, srcdev->fs_devices will point |
| 2061 | * to fs_devices of fs_info. However when the dev being replaced is |
| 2062 | * a seed dev it will point to the seed's local fs_devices. In short |
| 2063 | * srcdev will have its correct fs_devices in both the cases. |
| 2064 | */ |
| 2065 | fs_devices = srcdev->fs_devices; |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2066 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2067 | list_del_rcu(&srcdev->dev_list); |
David Sterba | 619c47f | 2017-06-19 14:14:22 +0200 | [diff] [blame] | 2068 | list_del(&srcdev->dev_alloc_list); |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2069 | fs_devices->num_devices--; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 2070 | if (test_bit(BTRFS_DEV_STATE_MISSING, &srcdev->dev_state)) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2071 | fs_devices->missing_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2072 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2073 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2074 | fs_devices->rw_devices--; |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 2075 | |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2076 | if (srcdev->bdev) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2077 | fs_devices->open_devices--; |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 2078 | } |
| 2079 | |
| 2080 | void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info, |
| 2081 | struct btrfs_device *srcdev) |
| 2082 | { |
| 2083 | struct btrfs_fs_devices *fs_devices = srcdev->fs_devices; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2084 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2085 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) { |
Anand Jain | 48b3b9d | 2016-04-12 21:36:16 +0800 | [diff] [blame] | 2086 | /* zero out the old super if it is writable */ |
| 2087 | btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str); |
| 2088 | } |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 2089 | |
| 2090 | btrfs_close_bdev(srcdev); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 2091 | call_rcu(&srcdev->rcu, free_device_rcu); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2092 | |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2093 | /* if this is no devs we rather delete the fs_devices */ |
| 2094 | if (!fs_devices->num_devices) { |
| 2095 | struct btrfs_fs_devices *tmp_fs_devices; |
| 2096 | |
Anand Jain | 6dd38f8 | 2017-10-17 06:53:50 +0800 | [diff] [blame] | 2097 | /* |
| 2098 | * On a mounted FS, num_devices can't be zero unless it's a |
| 2099 | * seed. In case of a seed device being replaced, the replace |
| 2100 | * target added to the sprout FS, so there will be no more |
| 2101 | * device left under the seed FS. |
| 2102 | */ |
| 2103 | ASSERT(fs_devices->seeding); |
| 2104 | |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2105 | tmp_fs_devices = fs_info->fs_devices; |
| 2106 | while (tmp_fs_devices) { |
| 2107 | if (tmp_fs_devices->seed == fs_devices) { |
| 2108 | tmp_fs_devices->seed = fs_devices->seed; |
| 2109 | break; |
| 2110 | } |
| 2111 | tmp_fs_devices = tmp_fs_devices->seed; |
| 2112 | } |
| 2113 | fs_devices->seed = NULL; |
Anand Jain | 8bef840 | 2014-08-13 14:24:23 +0800 | [diff] [blame] | 2114 | __btrfs_close_devices(fs_devices); |
| 2115 | free_fs_devices(fs_devices); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2116 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2117 | } |
| 2118 | |
| 2119 | void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info, |
| 2120 | struct btrfs_device *tgtdev) |
| 2121 | { |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 2122 | mutex_lock(&uuid_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2123 | WARN_ON(!tgtdev); |
| 2124 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2125 | |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 2126 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2127 | |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2128 | if (tgtdev->bdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2129 | fs_info->fs_devices->open_devices--; |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2130 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2131 | fs_info->fs_devices->num_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2132 | |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2133 | btrfs_assign_next_active_device(fs_info, tgtdev, NULL); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2134 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2135 | list_del_rcu(&tgtdev->dev_list); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2136 | |
| 2137 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 2138 | mutex_unlock(&uuid_mutex); |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2139 | |
| 2140 | /* |
| 2141 | * The update_dev_time() with in btrfs_scratch_superblocks() |
| 2142 | * may lead to a call to btrfs_show_devname() which will try |
| 2143 | * to hold device_list_mutex. And here this device |
| 2144 | * is already out of device list, so we don't have to hold |
| 2145 | * the device_list_mutex lock. |
| 2146 | */ |
| 2147 | btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str); |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 2148 | |
| 2149 | btrfs_close_bdev(tgtdev); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 2150 | call_rcu(&tgtdev->rcu, free_device_rcu); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2151 | } |
| 2152 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2153 | 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] | 2154 | const char *device_path, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 2155 | struct btrfs_device **device) |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2156 | { |
| 2157 | int ret = 0; |
| 2158 | struct btrfs_super_block *disk_super; |
| 2159 | u64 devid; |
| 2160 | u8 *dev_uuid; |
| 2161 | struct block_device *bdev; |
| 2162 | struct buffer_head *bh; |
| 2163 | |
| 2164 | *device = NULL; |
| 2165 | ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2166 | fs_info->bdev_holder, 0, &bdev, &bh); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2167 | if (ret) |
| 2168 | return ret; |
| 2169 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 2170 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 2171 | dev_uuid = disk_super->dev_item.uuid; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2172 | *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2173 | brelse(bh); |
| 2174 | if (!*device) |
| 2175 | ret = -ENOENT; |
| 2176 | blkdev_put(bdev, FMODE_READ); |
| 2177 | return ret; |
| 2178 | } |
| 2179 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2180 | 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] | 2181 | const char *device_path, |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2182 | struct btrfs_device **device) |
| 2183 | { |
| 2184 | *device = NULL; |
| 2185 | if (strcmp(device_path, "missing") == 0) { |
| 2186 | struct list_head *devices; |
| 2187 | struct btrfs_device *tmp; |
| 2188 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2189 | devices = &fs_info->fs_devices->devices; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2190 | /* |
| 2191 | * It is safe to read the devices since the volume_mutex |
| 2192 | * is held by the caller. |
| 2193 | */ |
| 2194 | list_for_each_entry(tmp, devices, dev_list) { |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2195 | if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 2196 | &tmp->dev_state) && !tmp->bdev) { |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2197 | *device = tmp; |
| 2198 | break; |
| 2199 | } |
| 2200 | } |
| 2201 | |
Anand Jain | d74a625 | 2015-08-14 18:32:56 +0800 | [diff] [blame] | 2202 | if (!*device) |
| 2203 | return BTRFS_ERROR_DEV_MISSING_NOT_FOUND; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2204 | |
| 2205 | return 0; |
| 2206 | } else { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2207 | return btrfs_find_device_by_path(fs_info, device_path, device); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2208 | } |
| 2209 | } |
| 2210 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2211 | /* |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2212 | * Lookup a device given by device id, or the path if the id is 0. |
| 2213 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2214 | 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] | 2215 | const char *devpath, |
| 2216 | struct btrfs_device **device) |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2217 | { |
| 2218 | int ret; |
| 2219 | |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2220 | if (devid) { |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2221 | ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2222 | *device = btrfs_find_device(fs_info, devid, NULL, NULL); |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2223 | if (!*device) |
| 2224 | ret = -ENOENT; |
| 2225 | } else { |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2226 | if (!devpath || !devpath[0]) |
Anand Jain | b3d1b15 | 2016-02-13 10:01:37 +0800 | [diff] [blame] | 2227 | return -EINVAL; |
| 2228 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2229 | ret = btrfs_find_device_missing_or_by_path(fs_info, devpath, |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2230 | device); |
| 2231 | } |
| 2232 | return ret; |
| 2233 | } |
| 2234 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2235 | /* |
| 2236 | * does all the dirty work required for changing file system's UUID. |
| 2237 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2238 | static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2239 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2240 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2241 | struct btrfs_fs_devices *old_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2242 | struct btrfs_fs_devices *seed_devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2243 | struct btrfs_super_block *disk_super = fs_info->super_copy; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2244 | struct btrfs_device *device; |
| 2245 | u64 super_flags; |
| 2246 | |
| 2247 | BUG_ON(!mutex_is_locked(&uuid_mutex)); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2248 | if (!fs_devices->seeding) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2249 | return -EINVAL; |
| 2250 | |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 2251 | seed_devices = alloc_fs_devices(NULL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 2252 | if (IS_ERR(seed_devices)) |
| 2253 | return PTR_ERR(seed_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2254 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2255 | old_devices = clone_fs_devices(fs_devices); |
| 2256 | if (IS_ERR(old_devices)) { |
| 2257 | kfree(seed_devices); |
| 2258 | return PTR_ERR(old_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2259 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2260 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2261 | list_add(&old_devices->list, &fs_uuids); |
| 2262 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2263 | memcpy(seed_devices, fs_devices, sizeof(*seed_devices)); |
| 2264 | seed_devices->opened = 1; |
| 2265 | INIT_LIST_HEAD(&seed_devices->devices); |
| 2266 | INIT_LIST_HEAD(&seed_devices->alloc_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2267 | mutex_init(&seed_devices->device_list_mutex); |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 2268 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2269 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2270 | list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices, |
| 2271 | synchronize_rcu); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2272 | list_for_each_entry(device, &seed_devices->devices, dev_list) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2273 | device->fs_devices = seed_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2274 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2275 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2276 | list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2277 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2278 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2279 | fs_devices->seeding = 0; |
| 2280 | fs_devices->num_devices = 0; |
| 2281 | fs_devices->open_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2282 | fs_devices->missing_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2283 | fs_devices->rotating = 0; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2284 | fs_devices->seed = seed_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2285 | |
| 2286 | generate_random_uuid(fs_devices->fsid); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2287 | memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2288 | memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2289 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 2290 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2291 | super_flags = btrfs_super_flags(disk_super) & |
| 2292 | ~BTRFS_SUPER_FLAG_SEEDING; |
| 2293 | btrfs_set_super_flags(disk_super, super_flags); |
| 2294 | |
| 2295 | return 0; |
| 2296 | } |
| 2297 | |
| 2298 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2299 | * Store the expected generation for seed devices in device items. |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2300 | */ |
| 2301 | static int btrfs_finish_sprout(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2302 | struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2303 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2304 | struct btrfs_root *root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2305 | struct btrfs_path *path; |
| 2306 | struct extent_buffer *leaf; |
| 2307 | struct btrfs_dev_item *dev_item; |
| 2308 | struct btrfs_device *device; |
| 2309 | struct btrfs_key key; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 2310 | u8 fs_uuid[BTRFS_FSID_SIZE]; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2311 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 2312 | u64 devid; |
| 2313 | int ret; |
| 2314 | |
| 2315 | path = btrfs_alloc_path(); |
| 2316 | if (!path) |
| 2317 | return -ENOMEM; |
| 2318 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2319 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2320 | key.offset = 0; |
| 2321 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2322 | |
| 2323 | while (1) { |
| 2324 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2325 | if (ret < 0) |
| 2326 | goto error; |
| 2327 | |
| 2328 | leaf = path->nodes[0]; |
| 2329 | next_slot: |
| 2330 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 2331 | ret = btrfs_next_leaf(root, path); |
| 2332 | if (ret > 0) |
| 2333 | break; |
| 2334 | if (ret < 0) |
| 2335 | goto error; |
| 2336 | leaf = path->nodes[0]; |
| 2337 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2338 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2339 | continue; |
| 2340 | } |
| 2341 | |
| 2342 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 2343 | if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID || |
| 2344 | key.type != BTRFS_DEV_ITEM_KEY) |
| 2345 | break; |
| 2346 | |
| 2347 | dev_item = btrfs_item_ptr(leaf, path->slots[0], |
| 2348 | struct btrfs_dev_item); |
| 2349 | devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 2350 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2351 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 2352 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 2353 | BTRFS_FSID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2354 | device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2355 | BUG_ON(!device); /* Logic error */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2356 | |
| 2357 | if (device->fs_devices->seeding) { |
| 2358 | btrfs_set_device_generation(leaf, dev_item, |
| 2359 | device->generation); |
| 2360 | btrfs_mark_buffer_dirty(leaf); |
| 2361 | } |
| 2362 | |
| 2363 | path->slots[0]++; |
| 2364 | goto next_slot; |
| 2365 | } |
| 2366 | ret = 0; |
| 2367 | error: |
| 2368 | btrfs_free_path(path); |
| 2369 | return ret; |
| 2370 | } |
| 2371 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 2372 | 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] | 2373 | { |
Jeff Mahoney | 5112feb | 2016-06-21 20:16:08 -0400 | [diff] [blame] | 2374 | struct btrfs_root *root = fs_info->dev_root; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2375 | struct request_queue *q; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2376 | struct btrfs_trans_handle *trans; |
| 2377 | struct btrfs_device *device; |
| 2378 | struct block_device *bdev; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2379 | struct list_head *devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2380 | struct super_block *sb = fs_info->sb; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2381 | struct rcu_string *name; |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2382 | u64 tmp; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2383 | int seeding_dev = 0; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2384 | int ret = 0; |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2385 | bool unlocked = false; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2386 | |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 2387 | if (sb_rdonly(sb) && !fs_info->fs_devices->seeding) |
Liu Bo | f8c5d0b | 2012-05-10 18:10:38 +0800 | [diff] [blame] | 2388 | return -EROFS; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2389 | |
Li Zefan | a5d16333 | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 2390 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2391 | fs_info->bdev_holder); |
Josef Bacik | 7f59203 | 2010-01-27 02:09:00 +0000 | [diff] [blame] | 2392 | if (IS_ERR(bdev)) |
| 2393 | return PTR_ERR(bdev); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2394 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2395 | if (fs_info->fs_devices->seeding) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2396 | seeding_dev = 1; |
| 2397 | down_write(&sb->s_umount); |
| 2398 | mutex_lock(&uuid_mutex); |
| 2399 | } |
| 2400 | |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 2401 | filemap_write_and_wait(bdev->bd_inode->i_mapping); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2402 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2403 | devices = &fs_info->fs_devices->devices; |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2404 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2405 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 2406 | list_for_each_entry(device, devices, dev_list) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2407 | if (device->bdev == bdev) { |
| 2408 | ret = -EEXIST; |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2409 | mutex_unlock( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2410 | &fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2411 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2412 | } |
| 2413 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2414 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2415 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2416 | device = btrfs_alloc_device(fs_info, NULL, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2417 | if (IS_ERR(device)) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2418 | /* we can safely leave the fs_devices entry around */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2419 | ret = PTR_ERR(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2420 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2421 | } |
| 2422 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 2423 | name = rcu_string_strdup(device_path, GFP_KERNEL); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2424 | if (!name) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2425 | ret = -ENOMEM; |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2426 | goto error_free_device; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2427 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2428 | rcu_assign_pointer(device->name, name); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2429 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2430 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2431 | if (IS_ERR(trans)) { |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2432 | ret = PTR_ERR(trans); |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2433 | goto error_free_device; |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2434 | } |
| 2435 | |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2436 | q = bdev_get_queue(bdev); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2437 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2438 | device->generation = trans->transid; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2439 | device->io_width = fs_info->sectorsize; |
| 2440 | device->io_align = fs_info->sectorsize; |
| 2441 | device->sector_size = fs_info->sectorsize; |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2442 | device->total_bytes = round_down(i_size_read(bdev->bd_inode), |
| 2443 | fs_info->sectorsize); |
Yan Zheng | 2cc3c55 | 2009-06-04 09:23:50 -0400 | [diff] [blame] | 2444 | device->disk_total_bytes = device->total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2445 | device->commit_total_bytes = device->total_bytes; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2446 | device->fs_info = fs_info; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2447 | device->bdev = bdev; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2448 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2449 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Ilya Dryomov | fb01aa8 | 2011-02-15 18:12:57 +0000 | [diff] [blame] | 2450 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2451 | device->dev_stats_valid = 1; |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 2452 | set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE); |
Zheng Yan | 325cd4b | 2008-09-05 16:43:54 -0400 | [diff] [blame] | 2453 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2454 | if (seeding_dev) { |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 2455 | sb->s_flags &= ~SB_RDONLY; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2456 | ret = btrfs_prepare_sprout(fs_info); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2457 | if (ret) { |
| 2458 | btrfs_abort_transaction(trans, ret); |
| 2459 | goto error_trans; |
| 2460 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2461 | } |
| 2462 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2463 | device->fs_devices = fs_info->fs_devices; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2464 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2465 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2466 | mutex_lock(&fs_info->chunk_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2467 | list_add_rcu(&device->dev_list, &fs_info->fs_devices->devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2468 | list_add(&device->dev_alloc_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2469 | &fs_info->fs_devices->alloc_list); |
| 2470 | fs_info->fs_devices->num_devices++; |
| 2471 | fs_info->fs_devices->open_devices++; |
| 2472 | fs_info->fs_devices->rw_devices++; |
| 2473 | fs_info->fs_devices->total_devices++; |
| 2474 | fs_info->fs_devices->total_rw_bytes += device->total_bytes; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2475 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 2476 | atomic64_add(device->total_bytes, &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 2477 | |
Anand Jain | e884f4f | 2017-04-04 18:40:19 +0800 | [diff] [blame] | 2478 | if (!blk_queue_nonrot(q)) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2479 | fs_info->fs_devices->rotating = 1; |
Chris Mason | c289811 | 2009-06-10 09:51:32 -0400 | [diff] [blame] | 2480 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2481 | tmp = btrfs_super_total_bytes(fs_info->super_copy); |
| 2482 | btrfs_set_super_total_bytes(fs_info->super_copy, |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2483 | round_down(tmp + device->total_bytes, fs_info->sectorsize)); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2484 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2485 | tmp = btrfs_super_num_devices(fs_info->super_copy); |
| 2486 | btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2487 | |
| 2488 | /* add sysfs device entry */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2489 | btrfs_sysfs_add_device_link(fs_info->fs_devices, device); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2490 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2491 | /* |
| 2492 | * we've got more storage, clear any full flags on the space |
| 2493 | * infos |
| 2494 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2495 | btrfs_clear_space_info_full(fs_info); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2496 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2497 | mutex_unlock(&fs_info->chunk_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2498 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2499 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2500 | if (seeding_dev) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2501 | mutex_lock(&fs_info->chunk_mutex); |
David Sterba | e4a4dce | 2017-02-10 19:49:01 +0100 | [diff] [blame] | 2502 | ret = init_first_rw_device(trans, fs_info); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2503 | mutex_unlock(&fs_info->chunk_mutex); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2504 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2505 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2506 | goto error_sysfs; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2507 | } |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2508 | } |
| 2509 | |
Anand Jain | c74a0b0 | 2017-11-06 16:36:15 +0800 | [diff] [blame] | 2510 | ret = btrfs_add_dev_item(trans, fs_info, device); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2511 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2512 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2513 | goto error_sysfs; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2514 | } |
| 2515 | |
| 2516 | if (seeding_dev) { |
| 2517 | char fsid_buf[BTRFS_UUID_UNPARSED_SIZE]; |
| 2518 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2519 | ret = btrfs_finish_sprout(trans, fs_info); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2520 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2521 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2522 | goto error_sysfs; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2523 | } |
Anand Jain | b2373f2 | 2014-06-03 11:36:03 +0800 | [diff] [blame] | 2524 | |
| 2525 | /* Sprouting would change fsid of the mounted root, |
| 2526 | * so rename the fsid on the sysfs |
| 2527 | */ |
| 2528 | snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2529 | fs_info->fsid); |
| 2530 | if (kobject_rename(&fs_info->fs_devices->fsid_kobj, fsid_buf)) |
| 2531 | btrfs_warn(fs_info, |
| 2532 | "sysfs: failed to create fsid for sprout"); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2533 | } |
| 2534 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2535 | ret = btrfs_commit_transaction(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2536 | |
| 2537 | if (seeding_dev) { |
| 2538 | mutex_unlock(&uuid_mutex); |
| 2539 | up_write(&sb->s_umount); |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2540 | unlocked = true; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2541 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2542 | if (ret) /* transaction commit */ |
| 2543 | return ret; |
| 2544 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2545 | ret = btrfs_relocate_sys_chunks(fs_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2546 | if (ret < 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2547 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2548 | "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] | 2549 | trans = btrfs_attach_transaction(root); |
| 2550 | if (IS_ERR(trans)) { |
| 2551 | if (PTR_ERR(trans) == -ENOENT) |
| 2552 | return 0; |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2553 | ret = PTR_ERR(trans); |
| 2554 | trans = NULL; |
| 2555 | goto error_sysfs; |
Miao Xie | 671415b | 2012-10-16 11:26:46 +0000 | [diff] [blame] | 2556 | } |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2557 | ret = btrfs_commit_transaction(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2558 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2559 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 2560 | /* Update ctime/mtime for libblkid */ |
| 2561 | update_dev_time(device_path); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2562 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2563 | |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2564 | error_sysfs: |
| 2565 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, device); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2566 | error_trans: |
Anand Jain | 0af2c4b | 2017-09-28 14:51:09 +0800 | [diff] [blame] | 2567 | if (seeding_dev) |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 2568 | sb->s_flags |= SB_RDONLY; |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2569 | if (trans) |
| 2570 | btrfs_end_transaction(trans); |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2571 | error_free_device: |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 2572 | free_device(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2573 | error: |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 2574 | blkdev_put(bdev, FMODE_EXCL); |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2575 | if (seeding_dev && !unlocked) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2576 | mutex_unlock(&uuid_mutex); |
| 2577 | up_write(&sb->s_umount); |
| 2578 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2579 | return ret; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2580 | } |
| 2581 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2582 | int btrfs_init_dev_replace_tgtdev(struct btrfs_fs_info *fs_info, |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 2583 | const char *device_path, |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2584 | struct btrfs_device *srcdev, |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2585 | struct btrfs_device **device_out) |
| 2586 | { |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2587 | struct btrfs_device *device; |
| 2588 | struct block_device *bdev; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2589 | struct list_head *devices; |
| 2590 | struct rcu_string *name; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2591 | u64 devid = BTRFS_DEV_REPLACE_DEVID; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2592 | int ret = 0; |
| 2593 | |
| 2594 | *device_out = NULL; |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2595 | if (fs_info->fs_devices->seeding) { |
| 2596 | btrfs_err(fs_info, "the filesystem is a seed filesystem!"); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2597 | return -EINVAL; |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2598 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2599 | |
| 2600 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
| 2601 | fs_info->bdev_holder); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2602 | if (IS_ERR(bdev)) { |
| 2603 | btrfs_err(fs_info, "target device %s is invalid!", device_path); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2604 | return PTR_ERR(bdev); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2605 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2606 | |
| 2607 | filemap_write_and_wait(bdev->bd_inode->i_mapping); |
| 2608 | |
| 2609 | devices = &fs_info->fs_devices->devices; |
| 2610 | list_for_each_entry(device, devices, dev_list) { |
| 2611 | if (device->bdev == bdev) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2612 | btrfs_err(fs_info, |
| 2613 | "target device is in the filesystem!"); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2614 | ret = -EEXIST; |
| 2615 | goto error; |
| 2616 | } |
| 2617 | } |
| 2618 | |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2619 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2620 | if (i_size_read(bdev->bd_inode) < |
| 2621 | btrfs_device_get_total_bytes(srcdev)) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2622 | btrfs_err(fs_info, |
| 2623 | "target device is smaller than source device!"); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2624 | ret = -EINVAL; |
| 2625 | goto error; |
| 2626 | } |
| 2627 | |
| 2628 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2629 | device = btrfs_alloc_device(NULL, &devid, NULL); |
| 2630 | if (IS_ERR(device)) { |
| 2631 | ret = PTR_ERR(device); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2632 | goto error; |
| 2633 | } |
| 2634 | |
David Sterba | 6165572 | 2017-06-15 17:16:43 +0200 | [diff] [blame] | 2635 | name = rcu_string_strdup(device_path, GFP_KERNEL); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2636 | if (!name) { |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 2637 | free_device(device); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2638 | ret = -ENOMEM; |
| 2639 | goto error; |
| 2640 | } |
| 2641 | rcu_assign_pointer(device->name, name); |
| 2642 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2643 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2644 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2645 | device->generation = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2646 | device->io_width = fs_info->sectorsize; |
| 2647 | device->io_align = fs_info->sectorsize; |
| 2648 | device->sector_size = fs_info->sectorsize; |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2649 | device->total_bytes = btrfs_device_get_total_bytes(srcdev); |
| 2650 | device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev); |
| 2651 | device->bytes_used = btrfs_device_get_bytes_used(srcdev); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2652 | ASSERT(list_empty(&srcdev->resized_list)); |
| 2653 | device->commit_total_bytes = srcdev->commit_total_bytes; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 2654 | device->commit_bytes_used = device->bytes_used; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2655 | device->fs_info = fs_info; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2656 | device->bdev = bdev; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2657 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2658 | set_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2659 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2660 | device->dev_stats_valid = 1; |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 2661 | set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2662 | device->fs_devices = fs_info->fs_devices; |
| 2663 | list_add(&device->dev_list, &fs_info->fs_devices->devices); |
| 2664 | fs_info->fs_devices->num_devices++; |
| 2665 | fs_info->fs_devices->open_devices++; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2666 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2667 | |
| 2668 | *device_out = device; |
| 2669 | return ret; |
| 2670 | |
| 2671 | error: |
| 2672 | blkdev_put(bdev, FMODE_EXCL); |
| 2673 | return ret; |
| 2674 | } |
| 2675 | |
| 2676 | void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info, |
| 2677 | struct btrfs_device *tgtdev) |
| 2678 | { |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2679 | u32 sectorsize = fs_info->sectorsize; |
| 2680 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2681 | WARN_ON(fs_info->fs_devices->rw_devices == 0); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2682 | tgtdev->io_width = sectorsize; |
| 2683 | tgtdev->io_align = sectorsize; |
| 2684 | tgtdev->sector_size = sectorsize; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2685 | tgtdev->fs_info = fs_info; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2686 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &tgtdev->dev_state); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2687 | } |
| 2688 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2689 | static noinline int btrfs_update_device(struct btrfs_trans_handle *trans, |
| 2690 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2691 | { |
| 2692 | int ret; |
| 2693 | struct btrfs_path *path; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2694 | struct btrfs_root *root = device->fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2695 | struct btrfs_dev_item *dev_item; |
| 2696 | struct extent_buffer *leaf; |
| 2697 | struct btrfs_key key; |
| 2698 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2699 | path = btrfs_alloc_path(); |
| 2700 | if (!path) |
| 2701 | return -ENOMEM; |
| 2702 | |
| 2703 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2704 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2705 | key.offset = device->devid; |
| 2706 | |
| 2707 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2708 | if (ret < 0) |
| 2709 | goto out; |
| 2710 | |
| 2711 | if (ret > 0) { |
| 2712 | ret = -ENOENT; |
| 2713 | goto out; |
| 2714 | } |
| 2715 | |
| 2716 | leaf = path->nodes[0]; |
| 2717 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 2718 | |
| 2719 | btrfs_set_device_id(leaf, dev_item, device->devid); |
| 2720 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 2721 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 2722 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 2723 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2724 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 2725 | btrfs_device_get_disk_total_bytes(device)); |
| 2726 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 2727 | btrfs_device_get_bytes_used(device)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2728 | btrfs_mark_buffer_dirty(leaf); |
| 2729 | |
| 2730 | out: |
| 2731 | btrfs_free_path(path); |
| 2732 | return ret; |
| 2733 | } |
| 2734 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2735 | int btrfs_grow_device(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2736 | struct btrfs_device *device, u64 new_size) |
| 2737 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2738 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 2739 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2740 | struct btrfs_fs_devices *fs_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2741 | u64 old_total; |
| 2742 | u64 diff; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2743 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2744 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2745 | return -EACCES; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2746 | |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2747 | new_size = round_down(new_size, fs_info->sectorsize); |
| 2748 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2749 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2750 | old_total = btrfs_super_total_bytes(super_copy); |
Nikolay Borisov | 0e4324a | 2017-07-21 11:28:24 +0300 | [diff] [blame] | 2751 | diff = round_down(new_size - device->total_bytes, fs_info->sectorsize); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2752 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2753 | if (new_size <= device->total_bytes || |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2754 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2755 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2756 | return -EINVAL; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2757 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2758 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2759 | fs_devices = fs_info->fs_devices; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2760 | |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2761 | btrfs_set_super_total_bytes(super_copy, |
| 2762 | round_down(old_total + diff, fs_info->sectorsize)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2763 | device->fs_devices->total_rw_bytes += diff; |
| 2764 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2765 | btrfs_device_set_total_bytes(device, new_size); |
| 2766 | btrfs_device_set_disk_total_bytes(device, new_size); |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2767 | btrfs_clear_space_info_full(device->fs_info); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2768 | if (list_empty(&device->resized_list)) |
| 2769 | list_add_tail(&device->resized_list, |
| 2770 | &fs_devices->resized_devices); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2771 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 2772 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2773 | return btrfs_update_device(trans, device); |
| 2774 | } |
| 2775 | |
| 2776 | static int btrfs_free_chunk(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2777 | struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2778 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2779 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2780 | int ret; |
| 2781 | struct btrfs_path *path; |
| 2782 | struct btrfs_key key; |
| 2783 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2784 | path = btrfs_alloc_path(); |
| 2785 | if (!path) |
| 2786 | return -ENOMEM; |
| 2787 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2788 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2789 | key.offset = chunk_offset; |
| 2790 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 2791 | |
| 2792 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2793 | if (ret < 0) |
| 2794 | goto out; |
| 2795 | else if (ret > 0) { /* Logic error or corruption */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2796 | btrfs_handle_fs_error(fs_info, -ENOENT, |
| 2797 | "Failed lookup while freeing chunk."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2798 | ret = -ENOENT; |
| 2799 | goto out; |
| 2800 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2801 | |
| 2802 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2803 | if (ret < 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2804 | btrfs_handle_fs_error(fs_info, ret, |
| 2805 | "Failed to delete chunk item."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2806 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2807 | btrfs_free_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 2808 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2809 | } |
| 2810 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2811 | 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] | 2812 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2813 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2814 | struct btrfs_disk_key *disk_key; |
| 2815 | struct btrfs_chunk *chunk; |
| 2816 | u8 *ptr; |
| 2817 | int ret = 0; |
| 2818 | u32 num_stripes; |
| 2819 | u32 array_size; |
| 2820 | u32 len = 0; |
| 2821 | u32 cur; |
| 2822 | struct btrfs_key key; |
| 2823 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2824 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2825 | array_size = btrfs_super_sys_array_size(super_copy); |
| 2826 | |
| 2827 | ptr = super_copy->sys_chunk_array; |
| 2828 | cur = 0; |
| 2829 | |
| 2830 | while (cur < array_size) { |
| 2831 | disk_key = (struct btrfs_disk_key *)ptr; |
| 2832 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 2833 | |
| 2834 | len = sizeof(*disk_key); |
| 2835 | |
| 2836 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 2837 | chunk = (struct btrfs_chunk *)(ptr + len); |
| 2838 | num_stripes = btrfs_stack_chunk_num_stripes(chunk); |
| 2839 | len += btrfs_chunk_item_size(num_stripes); |
| 2840 | } else { |
| 2841 | ret = -EIO; |
| 2842 | break; |
| 2843 | } |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2844 | if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID && |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2845 | key.offset == chunk_offset) { |
| 2846 | memmove(ptr, ptr + len, array_size - (cur + len)); |
| 2847 | array_size -= len; |
| 2848 | btrfs_set_super_sys_array_size(super_copy, array_size); |
| 2849 | } else { |
| 2850 | ptr += len; |
| 2851 | cur += len; |
| 2852 | } |
| 2853 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2854 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2855 | return ret; |
| 2856 | } |
| 2857 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2858 | static struct extent_map *get_chunk_map(struct btrfs_fs_info *fs_info, |
| 2859 | u64 logical, u64 length) |
| 2860 | { |
| 2861 | struct extent_map_tree *em_tree; |
| 2862 | struct extent_map *em; |
| 2863 | |
| 2864 | em_tree = &fs_info->mapping_tree.map_tree; |
| 2865 | read_lock(&em_tree->lock); |
| 2866 | em = lookup_extent_mapping(em_tree, logical, length); |
| 2867 | read_unlock(&em_tree->lock); |
| 2868 | |
| 2869 | if (!em) { |
| 2870 | btrfs_crit(fs_info, "unable to find logical %llu length %llu", |
| 2871 | logical, length); |
| 2872 | return ERR_PTR(-EINVAL); |
| 2873 | } |
| 2874 | |
| 2875 | if (em->start > logical || em->start + em->len < logical) { |
| 2876 | btrfs_crit(fs_info, |
| 2877 | "found a bad mapping, wanted %llu-%llu, found %llu-%llu", |
| 2878 | logical, length, em->start, em->start + em->len); |
| 2879 | free_extent_map(em); |
| 2880 | return ERR_PTR(-EINVAL); |
| 2881 | } |
| 2882 | |
| 2883 | /* callers are responsible for dropping em's ref. */ |
| 2884 | return em; |
| 2885 | } |
| 2886 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2887 | int btrfs_remove_chunk(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2888 | struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2889 | { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2890 | struct extent_map *em; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2891 | struct map_lookup *map; |
| 2892 | u64 dev_extent_len = 0; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2893 | int i, ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2894 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2895 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2896 | em = get_chunk_map(fs_info, chunk_offset, 1); |
| 2897 | if (IS_ERR(em)) { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2898 | /* |
| 2899 | * 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] | 2900 | * user having built with ASSERT enabled, so if ASSERT doesn't |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2901 | * do anything we still error out. |
| 2902 | */ |
| 2903 | ASSERT(0); |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2904 | return PTR_ERR(em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2905 | } |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 2906 | map = em->map_lookup; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2907 | mutex_lock(&fs_info->chunk_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2908 | check_system_chunk(trans, fs_info, map->type); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2909 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2910 | |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2911 | /* |
| 2912 | * Take the device list mutex to prevent races with the final phase of |
| 2913 | * a device replace operation that replaces the device object associated |
| 2914 | * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()). |
| 2915 | */ |
| 2916 | mutex_lock(&fs_devices->device_list_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2917 | for (i = 0; i < map->num_stripes; i++) { |
| 2918 | struct btrfs_device *device = map->stripes[i].dev; |
| 2919 | ret = btrfs_free_dev_extent(trans, device, |
| 2920 | map->stripes[i].physical, |
| 2921 | &dev_extent_len); |
| 2922 | if (ret) { |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2923 | mutex_unlock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2924 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2925 | goto out; |
| 2926 | } |
| 2927 | |
| 2928 | if (device->bytes_used > 0) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2929 | mutex_lock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2930 | btrfs_device_set_bytes_used(device, |
| 2931 | device->bytes_used - dev_extent_len); |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 2932 | atomic64_add(dev_extent_len, &fs_info->free_chunk_space); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2933 | btrfs_clear_space_info_full(fs_info); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2934 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2935 | } |
| 2936 | |
| 2937 | if (map->stripes[i].dev) { |
| 2938 | ret = btrfs_update_device(trans, map->stripes[i].dev); |
| 2939 | if (ret) { |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2940 | mutex_unlock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2941 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2942 | goto out; |
| 2943 | } |
| 2944 | } |
| 2945 | } |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2946 | mutex_unlock(&fs_devices->device_list_mutex); |
| 2947 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2948 | ret = btrfs_free_chunk(trans, fs_info, chunk_offset); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2949 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2950 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2951 | goto out; |
| 2952 | } |
| 2953 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2954 | trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2955 | |
| 2956 | if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2957 | ret = btrfs_del_sys_chunk(fs_info, chunk_offset); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2958 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2959 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2960 | goto out; |
| 2961 | } |
| 2962 | } |
| 2963 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2964 | ret = btrfs_remove_block_group(trans, fs_info, chunk_offset, em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2965 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2966 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2967 | goto out; |
| 2968 | } |
| 2969 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2970 | out: |
| 2971 | /* once for us */ |
| 2972 | free_extent_map(em); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2973 | return ret; |
| 2974 | } |
| 2975 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2976 | 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] | 2977 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2978 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 2979 | struct btrfs_trans_handle *trans; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2980 | int ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2981 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2982 | /* |
| 2983 | * Prevent races with automatic removal of unused block groups. |
| 2984 | * After we relocate and before we remove the chunk with offset |
| 2985 | * chunk_offset, automatic removal of the block group can kick in, |
| 2986 | * resulting in a failure when calling btrfs_remove_chunk() below. |
| 2987 | * |
| 2988 | * Make sure to acquire this mutex before doing a tree search (dev |
| 2989 | * or chunk trees) to find chunks. Otherwise the cleaner kthread might |
| 2990 | * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after |
| 2991 | * we release the path used to search the chunk/dev tree and before |
| 2992 | * the current task acquires this mutex and calls us. |
| 2993 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2994 | ASSERT(mutex_is_locked(&fs_info->delete_unused_bgs_mutex)); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2995 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2996 | ret = btrfs_can_relocate(fs_info, chunk_offset); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2997 | if (ret) |
| 2998 | return -ENOSPC; |
| 2999 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3000 | /* step one, relocate all the extents inside this chunk */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3001 | btrfs_scrub_pause(fs_info); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3002 | ret = btrfs_relocate_block_group(fs_info, chunk_offset); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3003 | btrfs_scrub_continue(fs_info); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3004 | if (ret) |
| 3005 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3006 | |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3007 | trans = btrfs_start_trans_remove_block_group(root->fs_info, |
| 3008 | chunk_offset); |
| 3009 | if (IS_ERR(trans)) { |
| 3010 | ret = PTR_ERR(trans); |
| 3011 | btrfs_handle_fs_error(root->fs_info, ret, NULL); |
| 3012 | return ret; |
| 3013 | } |
Naohiro Aota | 5d8eb6f | 2016-09-02 16:46:32 +0900 | [diff] [blame] | 3014 | |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3015 | /* |
| 3016 | * step two, delete the device extents and the |
| 3017 | * chunk tree entries |
| 3018 | */ |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3019 | ret = btrfs_remove_chunk(trans, fs_info, chunk_offset); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3020 | btrfs_end_transaction(trans); |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3021 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3022 | } |
| 3023 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3024 | static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3025 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3026 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3027 | struct btrfs_path *path; |
| 3028 | struct extent_buffer *leaf; |
| 3029 | struct btrfs_chunk *chunk; |
| 3030 | struct btrfs_key key; |
| 3031 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3032 | u64 chunk_type; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3033 | bool retried = false; |
| 3034 | int failed = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3035 | int ret; |
| 3036 | |
| 3037 | path = btrfs_alloc_path(); |
| 3038 | if (!path) |
| 3039 | return -ENOMEM; |
| 3040 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3041 | again: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3042 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 3043 | key.offset = (u64)-1; |
| 3044 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 3045 | |
| 3046 | while (1) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3047 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3048 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3049 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3050 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3051 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3052 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3053 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3054 | |
| 3055 | ret = btrfs_previous_item(chunk_root, path, key.objectid, |
| 3056 | key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3057 | if (ret) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3058 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3059 | if (ret < 0) |
| 3060 | goto error; |
| 3061 | if (ret > 0) |
| 3062 | break; |
| 3063 | |
| 3064 | leaf = path->nodes[0]; |
| 3065 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 3066 | |
| 3067 | chunk = btrfs_item_ptr(leaf, path->slots[0], |
| 3068 | struct btrfs_chunk); |
| 3069 | chunk_type = btrfs_chunk_type(leaf, chunk); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3070 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3071 | |
| 3072 | if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3073 | ret = btrfs_relocate_chunk(fs_info, found_key.offset); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3074 | if (ret == -ENOSPC) |
| 3075 | failed++; |
HIMANGI SARAOGI | 1458665 | 2014-07-09 03:51:41 +0530 | [diff] [blame] | 3076 | else |
| 3077 | BUG_ON(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3078 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3079 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3080 | |
| 3081 | if (found_key.offset == 0) |
| 3082 | break; |
| 3083 | key.offset = found_key.offset - 1; |
| 3084 | } |
| 3085 | ret = 0; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3086 | if (failed && !retried) { |
| 3087 | failed = 0; |
| 3088 | retried = true; |
| 3089 | goto again; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 3090 | } else if (WARN_ON(failed && retried)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3091 | ret = -ENOSPC; |
| 3092 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3093 | error: |
| 3094 | btrfs_free_path(path); |
| 3095 | return ret; |
| 3096 | } |
| 3097 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3098 | /* |
| 3099 | * return 1 : allocate a data chunk successfully, |
| 3100 | * return <0: errors during allocating a data chunk, |
| 3101 | * return 0 : no need to allocate a data chunk. |
| 3102 | */ |
| 3103 | static int btrfs_may_alloc_data_chunk(struct btrfs_fs_info *fs_info, |
| 3104 | u64 chunk_offset) |
| 3105 | { |
| 3106 | struct btrfs_block_group_cache *cache; |
| 3107 | u64 bytes_used; |
| 3108 | u64 chunk_type; |
| 3109 | |
| 3110 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3111 | ASSERT(cache); |
| 3112 | chunk_type = cache->flags; |
| 3113 | btrfs_put_block_group(cache); |
| 3114 | |
| 3115 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) { |
| 3116 | spin_lock(&fs_info->data_sinfo->lock); |
| 3117 | bytes_used = fs_info->data_sinfo->bytes_used; |
| 3118 | spin_unlock(&fs_info->data_sinfo->lock); |
| 3119 | |
| 3120 | if (!bytes_used) { |
| 3121 | struct btrfs_trans_handle *trans; |
| 3122 | int ret; |
| 3123 | |
| 3124 | trans = btrfs_join_transaction(fs_info->tree_root); |
| 3125 | if (IS_ERR(trans)) |
| 3126 | return PTR_ERR(trans); |
| 3127 | |
| 3128 | ret = btrfs_force_chunk_alloc(trans, fs_info, |
| 3129 | BTRFS_BLOCK_GROUP_DATA); |
| 3130 | btrfs_end_transaction(trans); |
| 3131 | if (ret < 0) |
| 3132 | return ret; |
| 3133 | |
| 3134 | return 1; |
| 3135 | } |
| 3136 | } |
| 3137 | return 0; |
| 3138 | } |
| 3139 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3140 | static int insert_balance_item(struct btrfs_fs_info *fs_info, |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3141 | struct btrfs_balance_control *bctl) |
| 3142 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3143 | struct btrfs_root *root = fs_info->tree_root; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3144 | struct btrfs_trans_handle *trans; |
| 3145 | struct btrfs_balance_item *item; |
| 3146 | struct btrfs_disk_balance_args disk_bargs; |
| 3147 | struct btrfs_path *path; |
| 3148 | struct extent_buffer *leaf; |
| 3149 | struct btrfs_key key; |
| 3150 | int ret, err; |
| 3151 | |
| 3152 | path = btrfs_alloc_path(); |
| 3153 | if (!path) |
| 3154 | return -ENOMEM; |
| 3155 | |
| 3156 | trans = btrfs_start_transaction(root, 0); |
| 3157 | if (IS_ERR(trans)) { |
| 3158 | btrfs_free_path(path); |
| 3159 | return PTR_ERR(trans); |
| 3160 | } |
| 3161 | |
| 3162 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3163 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3164 | key.offset = 0; |
| 3165 | |
| 3166 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 3167 | sizeof(*item)); |
| 3168 | if (ret) |
| 3169 | goto out; |
| 3170 | |
| 3171 | leaf = path->nodes[0]; |
| 3172 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 3173 | |
David Sterba | b159fa2 | 2016-11-08 18:09:03 +0100 | [diff] [blame] | 3174 | memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item)); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3175 | |
| 3176 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data); |
| 3177 | btrfs_set_balance_data(leaf, item, &disk_bargs); |
| 3178 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta); |
| 3179 | btrfs_set_balance_meta(leaf, item, &disk_bargs); |
| 3180 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys); |
| 3181 | btrfs_set_balance_sys(leaf, item, &disk_bargs); |
| 3182 | |
| 3183 | btrfs_set_balance_flags(leaf, item, bctl->flags); |
| 3184 | |
| 3185 | btrfs_mark_buffer_dirty(leaf); |
| 3186 | out: |
| 3187 | btrfs_free_path(path); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3188 | err = btrfs_commit_transaction(trans); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3189 | if (err && !ret) |
| 3190 | ret = err; |
| 3191 | return ret; |
| 3192 | } |
| 3193 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3194 | static int del_balance_item(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3195 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3196 | struct btrfs_root *root = fs_info->tree_root; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3197 | struct btrfs_trans_handle *trans; |
| 3198 | struct btrfs_path *path; |
| 3199 | struct btrfs_key key; |
| 3200 | int ret, err; |
| 3201 | |
| 3202 | path = btrfs_alloc_path(); |
| 3203 | if (!path) |
| 3204 | return -ENOMEM; |
| 3205 | |
| 3206 | trans = btrfs_start_transaction(root, 0); |
| 3207 | if (IS_ERR(trans)) { |
| 3208 | btrfs_free_path(path); |
| 3209 | return PTR_ERR(trans); |
| 3210 | } |
| 3211 | |
| 3212 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3213 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3214 | key.offset = 0; |
| 3215 | |
| 3216 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 3217 | if (ret < 0) |
| 3218 | goto out; |
| 3219 | if (ret > 0) { |
| 3220 | ret = -ENOENT; |
| 3221 | goto out; |
| 3222 | } |
| 3223 | |
| 3224 | ret = btrfs_del_item(trans, root, path); |
| 3225 | out: |
| 3226 | btrfs_free_path(path); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3227 | err = btrfs_commit_transaction(trans); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3228 | if (err && !ret) |
| 3229 | ret = err; |
| 3230 | return ret; |
| 3231 | } |
| 3232 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3233 | /* |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3234 | * This is a heuristic used to reduce the number of chunks balanced on |
| 3235 | * resume after balance was interrupted. |
| 3236 | */ |
| 3237 | static void update_balance_args(struct btrfs_balance_control *bctl) |
| 3238 | { |
| 3239 | /* |
| 3240 | * Turn on soft mode for chunk types that were being converted. |
| 3241 | */ |
| 3242 | if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3243 | bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3244 | if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3245 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3246 | if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3247 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3248 | |
| 3249 | /* |
| 3250 | * Turn on usage filter if is not already used. The idea is |
| 3251 | * that chunks that we have already balanced should be |
| 3252 | * reasonably full. Don't do it for chunks that are being |
| 3253 | * converted - that will keep us from relocating unconverted |
| 3254 | * (albeit full) chunks. |
| 3255 | */ |
| 3256 | if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3257 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3258 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3259 | bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3260 | bctl->data.usage = 90; |
| 3261 | } |
| 3262 | if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3263 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3264 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3265 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3266 | bctl->sys.usage = 90; |
| 3267 | } |
| 3268 | if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3269 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3270 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3271 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3272 | bctl->meta.usage = 90; |
| 3273 | } |
| 3274 | } |
| 3275 | |
| 3276 | /* |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3277 | * Should be called with both balance and volume mutexes held to |
| 3278 | * serialize other volume operations (add_dev/rm_dev/resize) with |
| 3279 | * restriper. Same goes for unset_balance_control. |
| 3280 | */ |
| 3281 | static void set_balance_control(struct btrfs_balance_control *bctl) |
| 3282 | { |
| 3283 | struct btrfs_fs_info *fs_info = bctl->fs_info; |
| 3284 | |
| 3285 | BUG_ON(fs_info->balance_ctl); |
| 3286 | |
| 3287 | spin_lock(&fs_info->balance_lock); |
| 3288 | fs_info->balance_ctl = bctl; |
| 3289 | spin_unlock(&fs_info->balance_lock); |
| 3290 | } |
| 3291 | |
| 3292 | static void unset_balance_control(struct btrfs_fs_info *fs_info) |
| 3293 | { |
| 3294 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 3295 | |
| 3296 | BUG_ON(!fs_info->balance_ctl); |
| 3297 | |
| 3298 | spin_lock(&fs_info->balance_lock); |
| 3299 | fs_info->balance_ctl = NULL; |
| 3300 | spin_unlock(&fs_info->balance_lock); |
| 3301 | |
| 3302 | kfree(bctl); |
| 3303 | } |
| 3304 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3305 | /* |
| 3306 | * Balance filters. Return 1 if chunk should be filtered out |
| 3307 | * (should not be balanced). |
| 3308 | */ |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3309 | static int chunk_profiles_filter(u64 chunk_type, |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3310 | struct btrfs_balance_args *bargs) |
| 3311 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3312 | chunk_type = chunk_to_extended(chunk_type) & |
| 3313 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3314 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3315 | if (bargs->profiles & chunk_type) |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3316 | return 0; |
| 3317 | |
| 3318 | return 1; |
| 3319 | } |
| 3320 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3321 | 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] | 3322 | struct btrfs_balance_args *bargs) |
| 3323 | { |
| 3324 | struct btrfs_block_group_cache *cache; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3325 | u64 chunk_used; |
| 3326 | u64 user_thresh_min; |
| 3327 | u64 user_thresh_max; |
| 3328 | int ret = 1; |
| 3329 | |
| 3330 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3331 | chunk_used = btrfs_block_group_used(&cache->item); |
| 3332 | |
| 3333 | if (bargs->usage_min == 0) |
| 3334 | user_thresh_min = 0; |
| 3335 | else |
| 3336 | user_thresh_min = div_factor_fine(cache->key.offset, |
| 3337 | bargs->usage_min); |
| 3338 | |
| 3339 | if (bargs->usage_max == 0) |
| 3340 | user_thresh_max = 1; |
| 3341 | else if (bargs->usage_max > 100) |
| 3342 | user_thresh_max = cache->key.offset; |
| 3343 | else |
| 3344 | user_thresh_max = div_factor_fine(cache->key.offset, |
| 3345 | bargs->usage_max); |
| 3346 | |
| 3347 | if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max) |
| 3348 | ret = 0; |
| 3349 | |
| 3350 | btrfs_put_block_group(cache); |
| 3351 | return ret; |
| 3352 | } |
| 3353 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3354 | static int chunk_usage_filter(struct btrfs_fs_info *fs_info, |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3355 | u64 chunk_offset, struct btrfs_balance_args *bargs) |
| 3356 | { |
| 3357 | struct btrfs_block_group_cache *cache; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3358 | u64 chunk_used, user_thresh; |
| 3359 | int ret = 1; |
| 3360 | |
| 3361 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3362 | chunk_used = btrfs_block_group_used(&cache->item); |
| 3363 | |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3364 | if (bargs->usage_min == 0) |
Ilya Dryomov | 3e39cea | 2013-02-12 16:28:59 +0000 | [diff] [blame] | 3365 | user_thresh = 1; |
Ilya Dryomov | a105bb8 | 2013-01-21 15:15:56 +0200 | [diff] [blame] | 3366 | else if (bargs->usage > 100) |
| 3367 | user_thresh = cache->key.offset; |
| 3368 | else |
| 3369 | user_thresh = div_factor_fine(cache->key.offset, |
| 3370 | bargs->usage); |
| 3371 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3372 | if (chunk_used < user_thresh) |
| 3373 | ret = 0; |
| 3374 | |
| 3375 | btrfs_put_block_group(cache); |
| 3376 | return ret; |
| 3377 | } |
| 3378 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3379 | static int chunk_devid_filter(struct extent_buffer *leaf, |
| 3380 | struct btrfs_chunk *chunk, |
| 3381 | struct btrfs_balance_args *bargs) |
| 3382 | { |
| 3383 | struct btrfs_stripe *stripe; |
| 3384 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3385 | int i; |
| 3386 | |
| 3387 | for (i = 0; i < num_stripes; i++) { |
| 3388 | stripe = btrfs_stripe_nr(chunk, i); |
| 3389 | if (btrfs_stripe_devid(leaf, stripe) == bargs->devid) |
| 3390 | return 0; |
| 3391 | } |
| 3392 | |
| 3393 | return 1; |
| 3394 | } |
| 3395 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3396 | /* [pstart, pend) */ |
| 3397 | static int chunk_drange_filter(struct extent_buffer *leaf, |
| 3398 | struct btrfs_chunk *chunk, |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3399 | struct btrfs_balance_args *bargs) |
| 3400 | { |
| 3401 | struct btrfs_stripe *stripe; |
| 3402 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3403 | u64 stripe_offset; |
| 3404 | u64 stripe_length; |
| 3405 | int factor; |
| 3406 | int i; |
| 3407 | |
| 3408 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID)) |
| 3409 | return 0; |
| 3410 | |
| 3411 | if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3412 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 3413 | factor = num_stripes / 2; |
| 3414 | } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) { |
| 3415 | factor = num_stripes - 1; |
| 3416 | } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) { |
| 3417 | factor = num_stripes - 2; |
| 3418 | } else { |
| 3419 | factor = num_stripes; |
| 3420 | } |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3421 | |
| 3422 | for (i = 0; i < num_stripes; i++) { |
| 3423 | stripe = btrfs_stripe_nr(chunk, i); |
| 3424 | if (btrfs_stripe_devid(leaf, stripe) != bargs->devid) |
| 3425 | continue; |
| 3426 | |
| 3427 | stripe_offset = btrfs_stripe_offset(leaf, stripe); |
| 3428 | stripe_length = btrfs_chunk_length(leaf, chunk); |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 3429 | stripe_length = div_u64(stripe_length, factor); |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3430 | |
| 3431 | if (stripe_offset < bargs->pend && |
| 3432 | stripe_offset + stripe_length > bargs->pstart) |
| 3433 | return 0; |
| 3434 | } |
| 3435 | |
| 3436 | return 1; |
| 3437 | } |
| 3438 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3439 | /* [vstart, vend) */ |
| 3440 | static int chunk_vrange_filter(struct extent_buffer *leaf, |
| 3441 | struct btrfs_chunk *chunk, |
| 3442 | u64 chunk_offset, |
| 3443 | struct btrfs_balance_args *bargs) |
| 3444 | { |
| 3445 | if (chunk_offset < bargs->vend && |
| 3446 | chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart) |
| 3447 | /* at least part of the chunk is inside this vrange */ |
| 3448 | return 0; |
| 3449 | |
| 3450 | return 1; |
| 3451 | } |
| 3452 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3453 | static int chunk_stripes_range_filter(struct extent_buffer *leaf, |
| 3454 | struct btrfs_chunk *chunk, |
| 3455 | struct btrfs_balance_args *bargs) |
| 3456 | { |
| 3457 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3458 | |
| 3459 | if (bargs->stripes_min <= num_stripes |
| 3460 | && num_stripes <= bargs->stripes_max) |
| 3461 | return 0; |
| 3462 | |
| 3463 | return 1; |
| 3464 | } |
| 3465 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3466 | static int chunk_soft_convert_filter(u64 chunk_type, |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3467 | struct btrfs_balance_args *bargs) |
| 3468 | { |
| 3469 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT)) |
| 3470 | return 0; |
| 3471 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3472 | chunk_type = chunk_to_extended(chunk_type) & |
| 3473 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3474 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3475 | if (bargs->target == chunk_type) |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3476 | return 1; |
| 3477 | |
| 3478 | return 0; |
| 3479 | } |
| 3480 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3481 | static int should_balance_chunk(struct btrfs_fs_info *fs_info, |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3482 | struct extent_buffer *leaf, |
| 3483 | struct btrfs_chunk *chunk, u64 chunk_offset) |
| 3484 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3485 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3486 | struct btrfs_balance_args *bargs = NULL; |
| 3487 | u64 chunk_type = btrfs_chunk_type(leaf, chunk); |
| 3488 | |
| 3489 | /* type filter */ |
| 3490 | if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) & |
| 3491 | (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) { |
| 3492 | return 0; |
| 3493 | } |
| 3494 | |
| 3495 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3496 | bargs = &bctl->data; |
| 3497 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3498 | bargs = &bctl->sys; |
| 3499 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3500 | bargs = &bctl->meta; |
| 3501 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3502 | /* profiles filter */ |
| 3503 | if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) && |
| 3504 | chunk_profiles_filter(chunk_type, bargs)) { |
| 3505 | return 0; |
| 3506 | } |
| 3507 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3508 | /* usage filter */ |
| 3509 | if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3510 | chunk_usage_filter(fs_info, chunk_offset, bargs)) { |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3511 | return 0; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3512 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3513 | chunk_usage_range_filter(fs_info, chunk_offset, bargs)) { |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3514 | return 0; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3515 | } |
| 3516 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3517 | /* devid filter */ |
| 3518 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) && |
| 3519 | chunk_devid_filter(leaf, chunk, bargs)) { |
| 3520 | return 0; |
| 3521 | } |
| 3522 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3523 | /* drange filter, makes sense only with devid filter */ |
| 3524 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) && |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 3525 | chunk_drange_filter(leaf, chunk, bargs)) { |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3526 | return 0; |
| 3527 | } |
| 3528 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3529 | /* vrange filter */ |
| 3530 | if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) && |
| 3531 | chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) { |
| 3532 | return 0; |
| 3533 | } |
| 3534 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3535 | /* stripes filter */ |
| 3536 | if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) && |
| 3537 | chunk_stripes_range_filter(leaf, chunk, bargs)) { |
| 3538 | return 0; |
| 3539 | } |
| 3540 | |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3541 | /* soft profile changing mode */ |
| 3542 | if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) && |
| 3543 | chunk_soft_convert_filter(chunk_type, bargs)) { |
| 3544 | return 0; |
| 3545 | } |
| 3546 | |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3547 | /* |
| 3548 | * limited by count, must be the last filter |
| 3549 | */ |
| 3550 | if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) { |
| 3551 | if (bargs->limit == 0) |
| 3552 | return 0; |
| 3553 | else |
| 3554 | bargs->limit--; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3555 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) { |
| 3556 | /* |
| 3557 | * Same logic as the 'limit' filter; the minimum cannot be |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 3558 | * determined here because we do not have the global information |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3559 | * about the count of all chunks that satisfy the filters. |
| 3560 | */ |
| 3561 | if (bargs->limit_max == 0) |
| 3562 | return 0; |
| 3563 | else |
| 3564 | bargs->limit_max--; |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3565 | } |
| 3566 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3567 | return 1; |
| 3568 | } |
| 3569 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3570 | static int __btrfs_balance(struct btrfs_fs_info *fs_info) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3571 | { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3572 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3573 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
| 3574 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 3575 | struct list_head *devices; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3576 | struct btrfs_device *device; |
| 3577 | u64 old_size; |
| 3578 | u64 size_to_free; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3579 | u64 chunk_type; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3580 | struct btrfs_chunk *chunk; |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3581 | struct btrfs_path *path = NULL; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3582 | struct btrfs_key key; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3583 | struct btrfs_key found_key; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3584 | struct btrfs_trans_handle *trans; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3585 | struct extent_buffer *leaf; |
| 3586 | int slot; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3587 | int ret; |
| 3588 | int enospc_errors = 0; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3589 | bool counting = true; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3590 | /* 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] | 3591 | u64 limit_data = bctl->data.limit; |
| 3592 | u64 limit_meta = bctl->meta.limit; |
| 3593 | u64 limit_sys = bctl->sys.limit; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3594 | u32 count_data = 0; |
| 3595 | u32 count_meta = 0; |
| 3596 | u32 count_sys = 0; |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3597 | int chunk_reserved = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3598 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3599 | /* step one make some room on all the devices */ |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3600 | devices = &fs_info->fs_devices->devices; |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 3601 | list_for_each_entry(device, devices, dev_list) { |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 3602 | old_size = btrfs_device_get_total_bytes(device); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3603 | size_to_free = div_factor(old_size, 1); |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3604 | size_to_free = min_t(u64, size_to_free, SZ_1M); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 3605 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) || |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 3606 | btrfs_device_get_total_bytes(device) - |
| 3607 | btrfs_device_get_bytes_used(device) > size_to_free || |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 3608 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3609 | continue; |
| 3610 | |
| 3611 | ret = btrfs_shrink_device(device, old_size - size_to_free); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3612 | if (ret == -ENOSPC) |
| 3613 | break; |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3614 | if (ret) { |
| 3615 | /* btrfs_shrink_device never returns ret > 0 */ |
| 3616 | WARN_ON(ret > 0); |
| 3617 | goto error; |
| 3618 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3619 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3620 | trans = btrfs_start_transaction(dev_root, 0); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3621 | if (IS_ERR(trans)) { |
| 3622 | ret = PTR_ERR(trans); |
| 3623 | btrfs_info_in_rcu(fs_info, |
| 3624 | "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu", |
| 3625 | rcu_str_deref(device->name), ret, |
| 3626 | old_size, old_size - size_to_free); |
| 3627 | goto error; |
| 3628 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3629 | |
| 3630 | ret = btrfs_grow_device(trans, device, old_size); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3631 | if (ret) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3632 | btrfs_end_transaction(trans); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3633 | /* btrfs_grow_device never returns ret > 0 */ |
| 3634 | WARN_ON(ret > 0); |
| 3635 | btrfs_info_in_rcu(fs_info, |
| 3636 | "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu", |
| 3637 | rcu_str_deref(device->name), ret, |
| 3638 | old_size, old_size - size_to_free); |
| 3639 | goto error; |
| 3640 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3641 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3642 | btrfs_end_transaction(trans); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3643 | } |
| 3644 | |
| 3645 | /* step two, relocate all the chunks */ |
| 3646 | path = btrfs_alloc_path(); |
Mark Fasheh | 17e9f79 | 2011-07-12 11:10:23 -0700 | [diff] [blame] | 3647 | if (!path) { |
| 3648 | ret = -ENOMEM; |
| 3649 | goto error; |
| 3650 | } |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3651 | |
| 3652 | /* zero out stat counters */ |
| 3653 | spin_lock(&fs_info->balance_lock); |
| 3654 | memset(&bctl->stat, 0, sizeof(bctl->stat)); |
| 3655 | spin_unlock(&fs_info->balance_lock); |
| 3656 | again: |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3657 | if (!counting) { |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3658 | /* |
| 3659 | * The single value limit and min/max limits use the same bytes |
| 3660 | * in the |
| 3661 | */ |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3662 | bctl->data.limit = limit_data; |
| 3663 | bctl->meta.limit = limit_meta; |
| 3664 | bctl->sys.limit = limit_sys; |
| 3665 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3666 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 3667 | key.offset = (u64)-1; |
| 3668 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 3669 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3670 | while (1) { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3671 | if ((!counting && atomic_read(&fs_info->balance_pause_req)) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3672 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3673 | ret = -ECANCELED; |
| 3674 | goto error; |
| 3675 | } |
| 3676 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3677 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3678 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3679 | if (ret < 0) { |
| 3680 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3681 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3682 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3683 | |
| 3684 | /* |
| 3685 | * this shouldn't happen, it means the last relocate |
| 3686 | * failed |
| 3687 | */ |
| 3688 | if (ret == 0) |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3689 | BUG(); /* FIXME break ? */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3690 | |
| 3691 | ret = btrfs_previous_item(chunk_root, path, 0, |
| 3692 | BTRFS_CHUNK_ITEM_KEY); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3693 | if (ret) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3694 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3695 | ret = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3696 | break; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3697 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3698 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3699 | leaf = path->nodes[0]; |
| 3700 | slot = path->slots[0]; |
| 3701 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 3702 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3703 | if (found_key.objectid != key.objectid) { |
| 3704 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3705 | break; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3706 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3707 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3708 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3709 | chunk_type = btrfs_chunk_type(leaf, chunk); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3710 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3711 | if (!counting) { |
| 3712 | spin_lock(&fs_info->balance_lock); |
| 3713 | bctl->stat.considered++; |
| 3714 | spin_unlock(&fs_info->balance_lock); |
| 3715 | } |
| 3716 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3717 | ret = should_balance_chunk(fs_info, leaf, chunk, |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3718 | found_key.offset); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3719 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3720 | btrfs_release_path(path); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3721 | if (!ret) { |
| 3722 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3723 | goto loop; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3724 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3725 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3726 | if (counting) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3727 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3728 | spin_lock(&fs_info->balance_lock); |
| 3729 | bctl->stat.expected++; |
| 3730 | spin_unlock(&fs_info->balance_lock); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3731 | |
| 3732 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3733 | count_data++; |
| 3734 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3735 | count_sys++; |
| 3736 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3737 | count_meta++; |
| 3738 | |
| 3739 | goto loop; |
| 3740 | } |
| 3741 | |
| 3742 | /* |
| 3743 | * Apply limit_min filter, no need to check if the LIMITS |
| 3744 | * filter is used, limit_min is 0 by default |
| 3745 | */ |
| 3746 | if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) && |
| 3747 | count_data < bctl->data.limit_min) |
| 3748 | || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) && |
| 3749 | count_meta < bctl->meta.limit_min) |
| 3750 | || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) && |
| 3751 | count_sys < bctl->sys.limit_min)) { |
| 3752 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3753 | goto loop; |
| 3754 | } |
| 3755 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3756 | if (!chunk_reserved) { |
| 3757 | /* |
| 3758 | * We may be relocating the only data chunk we have, |
| 3759 | * which could potentially end up with losing data's |
| 3760 | * raid profile, so lets allocate an empty one in |
| 3761 | * advance. |
| 3762 | */ |
| 3763 | ret = btrfs_may_alloc_data_chunk(fs_info, |
| 3764 | found_key.offset); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3765 | if (ret < 0) { |
| 3766 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
| 3767 | goto error; |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3768 | } else if (ret == 1) { |
| 3769 | chunk_reserved = 1; |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3770 | } |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3771 | } |
| 3772 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3773 | ret = btrfs_relocate_chunk(fs_info, found_key.offset); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3774 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 508794e | 2011-07-02 21:24:41 +0000 | [diff] [blame] | 3775 | if (ret && ret != -ENOSPC) |
| 3776 | goto error; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3777 | if (ret == -ENOSPC) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3778 | enospc_errors++; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3779 | } else { |
| 3780 | spin_lock(&fs_info->balance_lock); |
| 3781 | bctl->stat.completed++; |
| 3782 | spin_unlock(&fs_info->balance_lock); |
| 3783 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3784 | loop: |
Ilya Dryomov | 795a332 | 2013-08-27 13:50:44 +0300 | [diff] [blame] | 3785 | if (found_key.offset == 0) |
| 3786 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3787 | key.offset = found_key.offset - 1; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3788 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3789 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3790 | if (counting) { |
| 3791 | btrfs_release_path(path); |
| 3792 | counting = false; |
| 3793 | goto again; |
| 3794 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3795 | error: |
| 3796 | btrfs_free_path(path); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3797 | if (enospc_errors) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3798 | btrfs_info(fs_info, "%d enospc errors during balance", |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3799 | enospc_errors); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3800 | if (!ret) |
| 3801 | ret = -ENOSPC; |
| 3802 | } |
| 3803 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3804 | return ret; |
| 3805 | } |
| 3806 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3807 | /** |
| 3808 | * alloc_profile_is_valid - see if a given profile is valid and reduced |
| 3809 | * @flags: profile to validate |
| 3810 | * @extended: if true @flags is treated as an extended profile |
| 3811 | */ |
| 3812 | static int alloc_profile_is_valid(u64 flags, int extended) |
| 3813 | { |
| 3814 | u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK : |
| 3815 | BTRFS_BLOCK_GROUP_PROFILE_MASK); |
| 3816 | |
| 3817 | flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK; |
| 3818 | |
| 3819 | /* 1) check that all other bits are zeroed */ |
| 3820 | if (flags & ~mask) |
| 3821 | return 0; |
| 3822 | |
| 3823 | /* 2) see if profile is reduced */ |
| 3824 | if (flags == 0) |
| 3825 | return !extended; /* "0" is valid for usual profiles */ |
| 3826 | |
| 3827 | /* true if exactly one bit set */ |
| 3828 | return (flags & (flags - 1)) == 0; |
| 3829 | } |
| 3830 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3831 | static inline int balance_need_close(struct btrfs_fs_info *fs_info) |
| 3832 | { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3833 | /* cancel requested || normal exit path */ |
| 3834 | return atomic_read(&fs_info->balance_cancel_req) || |
| 3835 | (atomic_read(&fs_info->balance_pause_req) == 0 && |
| 3836 | atomic_read(&fs_info->balance_cancel_req) == 0); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3837 | } |
| 3838 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3839 | static void __cancel_balance(struct btrfs_fs_info *fs_info) |
| 3840 | { |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3841 | int ret; |
| 3842 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3843 | unset_balance_control(fs_info); |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3844 | ret = del_balance_item(fs_info); |
Liu Bo | 0f788c5 | 2013-03-04 16:25:40 +0000 | [diff] [blame] | 3845 | if (ret) |
Anand Jain | 34d9700 | 2016-03-16 16:43:06 +0800 | [diff] [blame] | 3846 | btrfs_handle_fs_error(fs_info, ret, NULL); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 3847 | |
David Sterba | 171938e | 2017-03-28 14:44:21 +0200 | [diff] [blame] | 3848 | clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3849 | } |
| 3850 | |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3851 | /* Non-zero return value signifies invalidity */ |
| 3852 | static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg, |
| 3853 | u64 allowed) |
| 3854 | { |
| 3855 | return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3856 | (!alloc_profile_is_valid(bctl_arg->target, 1) || |
| 3857 | (bctl_arg->target & ~allowed))); |
| 3858 | } |
| 3859 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3860 | /* |
| 3861 | * Should be called with both balance and volume mutexes held |
| 3862 | */ |
| 3863 | int btrfs_balance(struct btrfs_balance_control *bctl, |
| 3864 | struct btrfs_ioctl_balance_args *bargs) |
| 3865 | { |
| 3866 | struct btrfs_fs_info *fs_info = bctl->fs_info; |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 3867 | u64 meta_target, data_target; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3868 | u64 allowed; |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3869 | int mixed = 0; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3870 | int ret; |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3871 | u64 num_devices; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3872 | unsigned seq; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3873 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3874 | if (btrfs_fs_closing(fs_info) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3875 | atomic_read(&fs_info->balance_pause_req) || |
| 3876 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3877 | ret = -EINVAL; |
| 3878 | goto out; |
| 3879 | } |
| 3880 | |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3881 | allowed = btrfs_super_incompat_flags(fs_info->super_copy); |
| 3882 | if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 3883 | mixed = 1; |
| 3884 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3885 | /* |
| 3886 | * In case of mixed groups both data and meta should be picked, |
| 3887 | * and identical options should be given for both of them. |
| 3888 | */ |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3889 | allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA; |
| 3890 | if (mixed && (bctl->flags & allowed)) { |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3891 | if (!(bctl->flags & BTRFS_BALANCE_DATA) || |
| 3892 | !(bctl->flags & BTRFS_BALANCE_METADATA) || |
| 3893 | memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3894 | btrfs_err(fs_info, |
| 3895 | "with mixed groups data and metadata balance options must be the same"); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3896 | ret = -EINVAL; |
| 3897 | goto out; |
| 3898 | } |
| 3899 | } |
| 3900 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3901 | num_devices = fs_info->fs_devices->num_devices; |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 3902 | btrfs_dev_replace_lock(&fs_info->dev_replace, 0); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3903 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) { |
| 3904 | BUG_ON(num_devices < 1); |
| 3905 | num_devices--; |
| 3906 | } |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 3907 | btrfs_dev_replace_unlock(&fs_info->dev_replace, 0); |
Austin S. Hemmelgarn | 88be159 | 2016-03-23 14:22:59 -0400 | [diff] [blame] | 3908 | allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP; |
| 3909 | if (num_devices > 1) |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3910 | allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1); |
Andreas Philipp | 8250dab | 2013-05-11 11:13:03 +0000 | [diff] [blame] | 3911 | if (num_devices > 2) |
| 3912 | allowed |= BTRFS_BLOCK_GROUP_RAID5; |
| 3913 | if (num_devices > 3) |
| 3914 | allowed |= (BTRFS_BLOCK_GROUP_RAID10 | |
| 3915 | BTRFS_BLOCK_GROUP_RAID6); |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3916 | if (validate_convert_profile(&bctl->data, allowed)) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3917 | btrfs_err(fs_info, |
| 3918 | "unable to start balance with target data profile %llu", |
| 3919 | bctl->data.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3920 | ret = -EINVAL; |
| 3921 | goto out; |
| 3922 | } |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3923 | if (validate_convert_profile(&bctl->meta, allowed)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3924 | btrfs_err(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3925 | "unable to start balance with target metadata profile %llu", |
| 3926 | bctl->meta.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3927 | ret = -EINVAL; |
| 3928 | goto out; |
| 3929 | } |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3930 | if (validate_convert_profile(&bctl->sys, allowed)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3931 | btrfs_err(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3932 | "unable to start balance with target system profile %llu", |
| 3933 | bctl->sys.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3934 | ret = -EINVAL; |
| 3935 | goto out; |
| 3936 | } |
| 3937 | |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3938 | /* allow to reduce meta or sys integrity only if force set */ |
| 3939 | allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3940 | BTRFS_BLOCK_GROUP_RAID10 | |
| 3941 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3942 | BTRFS_BLOCK_GROUP_RAID6; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3943 | do { |
| 3944 | seq = read_seqbegin(&fs_info->profiles_lock); |
| 3945 | |
| 3946 | if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3947 | (fs_info->avail_system_alloc_bits & allowed) && |
| 3948 | !(bctl->sys.target & allowed)) || |
| 3949 | ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3950 | (fs_info->avail_metadata_alloc_bits & allowed) && |
| 3951 | !(bctl->meta.target & allowed))) { |
| 3952 | if (bctl->flags & BTRFS_BALANCE_FORCE) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3953 | btrfs_info(fs_info, |
| 3954 | "force reducing metadata integrity"); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3955 | } else { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3956 | btrfs_err(fs_info, |
| 3957 | "balance will reduce metadata integrity, use force if you want this"); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3958 | ret = -EINVAL; |
| 3959 | goto out; |
| 3960 | } |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3961 | } |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3962 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3963 | |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 3964 | /* if we're not converting, the target field is uninitialized */ |
| 3965 | meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ? |
| 3966 | bctl->meta.target : fs_info->avail_metadata_alloc_bits; |
| 3967 | data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ? |
| 3968 | bctl->data.target : fs_info->avail_data_alloc_bits; |
| 3969 | if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) < |
| 3970 | btrfs_get_num_tolerated_disk_barrier_failures(data_target)) { |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 3971 | btrfs_warn(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3972 | "metadata profile 0x%llx has lower redundancy than data profile 0x%llx", |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 3973 | meta_target, data_target); |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 3974 | } |
| 3975 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3976 | ret = insert_balance_item(fs_info, bctl); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3977 | if (ret && ret != -EEXIST) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3978 | goto out; |
| 3979 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3980 | if (!(bctl->flags & BTRFS_BALANCE_RESUME)) { |
| 3981 | BUG_ON(ret == -EEXIST); |
| 3982 | set_balance_control(bctl); |
| 3983 | } else { |
| 3984 | BUG_ON(ret != -EEXIST); |
| 3985 | spin_lock(&fs_info->balance_lock); |
| 3986 | update_balance_args(bctl); |
| 3987 | spin_unlock(&fs_info->balance_lock); |
| 3988 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3989 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3990 | atomic_inc(&fs_info->balance_running); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3991 | mutex_unlock(&fs_info->balance_mutex); |
| 3992 | |
| 3993 | ret = __btrfs_balance(fs_info); |
| 3994 | |
| 3995 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3996 | atomic_dec(&fs_info->balance_running); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3997 | |
| 3998 | if (bargs) { |
| 3999 | memset(bargs, 0, sizeof(*bargs)); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4000 | update_ioctl_balance_args(fs_info, 0, bargs); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4001 | } |
| 4002 | |
Ilya Dryomov | 3a01aa7 | 2013-03-06 01:57:55 -0700 | [diff] [blame] | 4003 | if ((ret && ret != -ECANCELED && ret != -ENOSPC) || |
| 4004 | balance_need_close(fs_info)) { |
| 4005 | __cancel_balance(fs_info); |
| 4006 | } |
| 4007 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4008 | wake_up(&fs_info->balance_wait_q); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4009 | |
| 4010 | return ret; |
| 4011 | out: |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4012 | if (bctl->flags & BTRFS_BALANCE_RESUME) |
| 4013 | __cancel_balance(fs_info); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 4014 | else { |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4015 | kfree(bctl); |
David Sterba | 171938e | 2017-03-28 14:44:21 +0200 | [diff] [blame] | 4016 | clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 4017 | } |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4018 | return ret; |
| 4019 | } |
| 4020 | |
| 4021 | static int balance_kthread(void *data) |
| 4022 | { |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4023 | struct btrfs_fs_info *fs_info = data; |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4024 | int ret = 0; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4025 | |
| 4026 | mutex_lock(&fs_info->volume_mutex); |
| 4027 | mutex_lock(&fs_info->balance_mutex); |
| 4028 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4029 | if (fs_info->balance_ctl) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4030 | btrfs_info(fs_info, "continuing balance"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4031 | ret = btrfs_balance(fs_info->balance_ctl, NULL); |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4032 | } |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4033 | |
| 4034 | mutex_unlock(&fs_info->balance_mutex); |
| 4035 | mutex_unlock(&fs_info->volume_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4036 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4037 | return ret; |
| 4038 | } |
| 4039 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4040 | int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info) |
| 4041 | { |
| 4042 | struct task_struct *tsk; |
| 4043 | |
| 4044 | spin_lock(&fs_info->balance_lock); |
| 4045 | if (!fs_info->balance_ctl) { |
| 4046 | spin_unlock(&fs_info->balance_lock); |
| 4047 | return 0; |
| 4048 | } |
| 4049 | spin_unlock(&fs_info->balance_lock); |
| 4050 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 4051 | if (btrfs_test_opt(fs_info, SKIP_BALANCE)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4052 | btrfs_info(fs_info, "force skipping balance"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4053 | return 0; |
| 4054 | } |
| 4055 | |
| 4056 | tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance"); |
Sachin Kamat | cd63397 | 2013-07-15 16:52:18 +0530 | [diff] [blame] | 4057 | return PTR_ERR_OR_ZERO(tsk); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4058 | } |
| 4059 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4060 | int btrfs_recover_balance(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4061 | { |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4062 | struct btrfs_balance_control *bctl; |
| 4063 | struct btrfs_balance_item *item; |
| 4064 | struct btrfs_disk_balance_args disk_bargs; |
| 4065 | struct btrfs_path *path; |
| 4066 | struct extent_buffer *leaf; |
| 4067 | struct btrfs_key key; |
| 4068 | int ret; |
| 4069 | |
| 4070 | path = btrfs_alloc_path(); |
| 4071 | if (!path) |
| 4072 | return -ENOMEM; |
| 4073 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4074 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 4075 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4076 | key.offset = 0; |
| 4077 | |
| 4078 | ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0); |
| 4079 | if (ret < 0) |
| 4080 | goto out; |
| 4081 | if (ret > 0) { /* ret = -ENOENT; */ |
| 4082 | ret = 0; |
| 4083 | goto out; |
| 4084 | } |
| 4085 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4086 | bctl = kzalloc(sizeof(*bctl), GFP_NOFS); |
| 4087 | if (!bctl) { |
| 4088 | ret = -ENOMEM; |
| 4089 | goto out; |
| 4090 | } |
| 4091 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4092 | leaf = path->nodes[0]; |
| 4093 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 4094 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4095 | bctl->fs_info = fs_info; |
| 4096 | bctl->flags = btrfs_balance_flags(leaf, item); |
| 4097 | bctl->flags |= BTRFS_BALANCE_RESUME; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4098 | |
| 4099 | btrfs_balance_data(leaf, item, &disk_bargs); |
| 4100 | btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs); |
| 4101 | btrfs_balance_meta(leaf, item, &disk_bargs); |
| 4102 | btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs); |
| 4103 | btrfs_balance_sys(leaf, item, &disk_bargs); |
| 4104 | btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs); |
| 4105 | |
David Sterba | 171938e | 2017-03-28 14:44:21 +0200 | [diff] [blame] | 4106 | WARN_ON(test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 4107 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4108 | mutex_lock(&fs_info->volume_mutex); |
| 4109 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4110 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4111 | set_balance_control(bctl); |
| 4112 | |
| 4113 | mutex_unlock(&fs_info->balance_mutex); |
| 4114 | mutex_unlock(&fs_info->volume_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4115 | out: |
| 4116 | btrfs_free_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4117 | return ret; |
| 4118 | } |
| 4119 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4120 | int btrfs_pause_balance(struct btrfs_fs_info *fs_info) |
| 4121 | { |
| 4122 | int ret = 0; |
| 4123 | |
| 4124 | mutex_lock(&fs_info->balance_mutex); |
| 4125 | if (!fs_info->balance_ctl) { |
| 4126 | mutex_unlock(&fs_info->balance_mutex); |
| 4127 | return -ENOTCONN; |
| 4128 | } |
| 4129 | |
| 4130 | if (atomic_read(&fs_info->balance_running)) { |
| 4131 | atomic_inc(&fs_info->balance_pause_req); |
| 4132 | mutex_unlock(&fs_info->balance_mutex); |
| 4133 | |
| 4134 | wait_event(fs_info->balance_wait_q, |
| 4135 | atomic_read(&fs_info->balance_running) == 0); |
| 4136 | |
| 4137 | mutex_lock(&fs_info->balance_mutex); |
| 4138 | /* we are good with balance_ctl ripped off from under us */ |
| 4139 | BUG_ON(atomic_read(&fs_info->balance_running)); |
| 4140 | atomic_dec(&fs_info->balance_pause_req); |
| 4141 | } else { |
| 4142 | ret = -ENOTCONN; |
| 4143 | } |
| 4144 | |
| 4145 | mutex_unlock(&fs_info->balance_mutex); |
| 4146 | return ret; |
| 4147 | } |
| 4148 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4149 | int btrfs_cancel_balance(struct btrfs_fs_info *fs_info) |
| 4150 | { |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 4151 | if (sb_rdonly(fs_info->sb)) |
Ilya Dryomov | e649e58 | 2013-10-10 20:40:21 +0300 | [diff] [blame] | 4152 | return -EROFS; |
| 4153 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4154 | mutex_lock(&fs_info->balance_mutex); |
| 4155 | if (!fs_info->balance_ctl) { |
| 4156 | mutex_unlock(&fs_info->balance_mutex); |
| 4157 | return -ENOTCONN; |
| 4158 | } |
| 4159 | |
| 4160 | atomic_inc(&fs_info->balance_cancel_req); |
| 4161 | /* |
| 4162 | * if we are running just wait and return, balance item is |
| 4163 | * deleted in btrfs_balance in this case |
| 4164 | */ |
| 4165 | if (atomic_read(&fs_info->balance_running)) { |
| 4166 | mutex_unlock(&fs_info->balance_mutex); |
| 4167 | wait_event(fs_info->balance_wait_q, |
| 4168 | atomic_read(&fs_info->balance_running) == 0); |
| 4169 | mutex_lock(&fs_info->balance_mutex); |
| 4170 | } else { |
| 4171 | /* __cancel_balance needs volume_mutex */ |
| 4172 | mutex_unlock(&fs_info->balance_mutex); |
| 4173 | mutex_lock(&fs_info->volume_mutex); |
| 4174 | mutex_lock(&fs_info->balance_mutex); |
| 4175 | |
| 4176 | if (fs_info->balance_ctl) |
| 4177 | __cancel_balance(fs_info); |
| 4178 | |
| 4179 | mutex_unlock(&fs_info->volume_mutex); |
| 4180 | } |
| 4181 | |
| 4182 | BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running)); |
| 4183 | atomic_dec(&fs_info->balance_cancel_req); |
| 4184 | mutex_unlock(&fs_info->balance_mutex); |
| 4185 | return 0; |
| 4186 | } |
| 4187 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4188 | static int btrfs_uuid_scan_kthread(void *data) |
| 4189 | { |
| 4190 | struct btrfs_fs_info *fs_info = data; |
| 4191 | struct btrfs_root *root = fs_info->tree_root; |
| 4192 | struct btrfs_key key; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4193 | struct btrfs_path *path = NULL; |
| 4194 | int ret = 0; |
| 4195 | struct extent_buffer *eb; |
| 4196 | int slot; |
| 4197 | struct btrfs_root_item root_item; |
| 4198 | u32 item_size; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4199 | struct btrfs_trans_handle *trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4200 | |
| 4201 | path = btrfs_alloc_path(); |
| 4202 | if (!path) { |
| 4203 | ret = -ENOMEM; |
| 4204 | goto out; |
| 4205 | } |
| 4206 | |
| 4207 | key.objectid = 0; |
| 4208 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4209 | key.offset = 0; |
| 4210 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4211 | while (1) { |
Filipe David Borba Manana | 6174d3c | 2013-10-01 16:13:42 +0100 | [diff] [blame] | 4212 | ret = btrfs_search_forward(root, &key, path, 0); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4213 | if (ret) { |
| 4214 | if (ret > 0) |
| 4215 | ret = 0; |
| 4216 | break; |
| 4217 | } |
| 4218 | |
| 4219 | if (key.type != BTRFS_ROOT_ITEM_KEY || |
| 4220 | (key.objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 4221 | key.objectid != BTRFS_FS_TREE_OBJECTID) || |
| 4222 | key.objectid > BTRFS_LAST_FREE_OBJECTID) |
| 4223 | goto skip; |
| 4224 | |
| 4225 | eb = path->nodes[0]; |
| 4226 | slot = path->slots[0]; |
| 4227 | item_size = btrfs_item_size_nr(eb, slot); |
| 4228 | if (item_size < sizeof(root_item)) |
| 4229 | goto skip; |
| 4230 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4231 | read_extent_buffer(eb, &root_item, |
| 4232 | btrfs_item_ptr_offset(eb, slot), |
| 4233 | (int)sizeof(root_item)); |
| 4234 | if (btrfs_root_refs(&root_item) == 0) |
| 4235 | goto skip; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4236 | |
| 4237 | if (!btrfs_is_empty_uuid(root_item.uuid) || |
| 4238 | !btrfs_is_empty_uuid(root_item.received_uuid)) { |
| 4239 | if (trans) |
| 4240 | goto update_tree; |
| 4241 | |
| 4242 | btrfs_release_path(path); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4243 | /* |
| 4244 | * 1 - subvol uuid item |
| 4245 | * 1 - received_subvol uuid item |
| 4246 | */ |
| 4247 | trans = btrfs_start_transaction(fs_info->uuid_root, 2); |
| 4248 | if (IS_ERR(trans)) { |
| 4249 | ret = PTR_ERR(trans); |
| 4250 | break; |
| 4251 | } |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4252 | continue; |
| 4253 | } else { |
| 4254 | goto skip; |
| 4255 | } |
| 4256 | update_tree: |
| 4257 | if (!btrfs_is_empty_uuid(root_item.uuid)) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4258 | ret = btrfs_uuid_tree_add(trans, fs_info, |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4259 | root_item.uuid, |
| 4260 | BTRFS_UUID_KEY_SUBVOL, |
| 4261 | key.objectid); |
| 4262 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4263 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4264 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4265 | break; |
| 4266 | } |
| 4267 | } |
| 4268 | |
| 4269 | if (!btrfs_is_empty_uuid(root_item.received_uuid)) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4270 | ret = btrfs_uuid_tree_add(trans, fs_info, |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4271 | root_item.received_uuid, |
| 4272 | BTRFS_UUID_KEY_RECEIVED_SUBVOL, |
| 4273 | key.objectid); |
| 4274 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4275 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4276 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4277 | break; |
| 4278 | } |
| 4279 | } |
| 4280 | |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4281 | skip: |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4282 | if (trans) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4283 | ret = btrfs_end_transaction(trans); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4284 | trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4285 | if (ret) |
| 4286 | break; |
| 4287 | } |
| 4288 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4289 | btrfs_release_path(path); |
| 4290 | if (key.offset < (u64)-1) { |
| 4291 | key.offset++; |
| 4292 | } else if (key.type < BTRFS_ROOT_ITEM_KEY) { |
| 4293 | key.offset = 0; |
| 4294 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4295 | } else if (key.objectid < (u64)-1) { |
| 4296 | key.offset = 0; |
| 4297 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4298 | key.objectid++; |
| 4299 | } else { |
| 4300 | break; |
| 4301 | } |
| 4302 | cond_resched(); |
| 4303 | } |
| 4304 | |
| 4305 | out: |
| 4306 | btrfs_free_path(path); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4307 | if (trans && !IS_ERR(trans)) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4308 | btrfs_end_transaction(trans); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4309 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4310 | btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4311 | else |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 4312 | set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4313 | up(&fs_info->uuid_tree_rescan_sem); |
| 4314 | return 0; |
| 4315 | } |
| 4316 | |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4317 | /* |
| 4318 | * Callback for btrfs_uuid_tree_iterate(). |
| 4319 | * returns: |
| 4320 | * 0 check succeeded, the entry is not outdated. |
Adam Buchbinder | bb7ab3b | 2016-03-04 11:23:12 -0800 | [diff] [blame] | 4321 | * < 0 if an error occurred. |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4322 | * > 0 if the check failed, which means the caller shall remove the entry. |
| 4323 | */ |
| 4324 | static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info, |
| 4325 | u8 *uuid, u8 type, u64 subid) |
| 4326 | { |
| 4327 | struct btrfs_key key; |
| 4328 | int ret = 0; |
| 4329 | struct btrfs_root *subvol_root; |
| 4330 | |
| 4331 | if (type != BTRFS_UUID_KEY_SUBVOL && |
| 4332 | type != BTRFS_UUID_KEY_RECEIVED_SUBVOL) |
| 4333 | goto out; |
| 4334 | |
| 4335 | key.objectid = subid; |
| 4336 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4337 | key.offset = (u64)-1; |
| 4338 | subvol_root = btrfs_read_fs_root_no_name(fs_info, &key); |
| 4339 | if (IS_ERR(subvol_root)) { |
| 4340 | ret = PTR_ERR(subvol_root); |
| 4341 | if (ret == -ENOENT) |
| 4342 | ret = 1; |
| 4343 | goto out; |
| 4344 | } |
| 4345 | |
| 4346 | switch (type) { |
| 4347 | case BTRFS_UUID_KEY_SUBVOL: |
| 4348 | if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE)) |
| 4349 | ret = 1; |
| 4350 | break; |
| 4351 | case BTRFS_UUID_KEY_RECEIVED_SUBVOL: |
| 4352 | if (memcmp(uuid, subvol_root->root_item.received_uuid, |
| 4353 | BTRFS_UUID_SIZE)) |
| 4354 | ret = 1; |
| 4355 | break; |
| 4356 | } |
| 4357 | |
| 4358 | out: |
| 4359 | return ret; |
| 4360 | } |
| 4361 | |
| 4362 | static int btrfs_uuid_rescan_kthread(void *data) |
| 4363 | { |
| 4364 | struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data; |
| 4365 | int ret; |
| 4366 | |
| 4367 | /* |
| 4368 | * 1st step is to iterate through the existing UUID tree and |
| 4369 | * to delete all entries that contain outdated data. |
| 4370 | * 2nd step is to add all missing entries to the UUID tree. |
| 4371 | */ |
| 4372 | ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry); |
| 4373 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4374 | btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4375 | up(&fs_info->uuid_tree_rescan_sem); |
| 4376 | return ret; |
| 4377 | } |
| 4378 | return btrfs_uuid_scan_kthread(data); |
| 4379 | } |
| 4380 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4381 | int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4382 | { |
| 4383 | struct btrfs_trans_handle *trans; |
| 4384 | struct btrfs_root *tree_root = fs_info->tree_root; |
| 4385 | struct btrfs_root *uuid_root; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4386 | struct task_struct *task; |
| 4387 | int ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4388 | |
| 4389 | /* |
| 4390 | * 1 - root node |
| 4391 | * 1 - root item |
| 4392 | */ |
| 4393 | trans = btrfs_start_transaction(tree_root, 2); |
| 4394 | if (IS_ERR(trans)) |
| 4395 | return PTR_ERR(trans); |
| 4396 | |
| 4397 | uuid_root = btrfs_create_tree(trans, fs_info, |
| 4398 | BTRFS_UUID_TREE_OBJECTID); |
| 4399 | if (IS_ERR(uuid_root)) { |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4400 | ret = PTR_ERR(uuid_root); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 4401 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4402 | btrfs_end_transaction(trans); |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4403 | return ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4404 | } |
| 4405 | |
| 4406 | fs_info->uuid_root = uuid_root; |
| 4407 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4408 | ret = btrfs_commit_transaction(trans); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4409 | if (ret) |
| 4410 | return ret; |
| 4411 | |
| 4412 | down(&fs_info->uuid_tree_rescan_sem); |
| 4413 | task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid"); |
| 4414 | if (IS_ERR(task)) { |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4415 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4416 | btrfs_warn(fs_info, "failed to start uuid_scan task"); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4417 | up(&fs_info->uuid_tree_rescan_sem); |
| 4418 | return PTR_ERR(task); |
| 4419 | } |
| 4420 | |
| 4421 | return 0; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4422 | } |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4423 | |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4424 | int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4425 | { |
| 4426 | struct task_struct *task; |
| 4427 | |
| 4428 | down(&fs_info->uuid_tree_rescan_sem); |
| 4429 | task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid"); |
| 4430 | if (IS_ERR(task)) { |
| 4431 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4432 | btrfs_warn(fs_info, "failed to start uuid_rescan task"); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4433 | up(&fs_info->uuid_tree_rescan_sem); |
| 4434 | return PTR_ERR(task); |
| 4435 | } |
| 4436 | |
| 4437 | return 0; |
| 4438 | } |
| 4439 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4440 | /* |
| 4441 | * shrinking a device means finding all of the device extents past |
| 4442 | * the new size, and then following the back refs to the chunks. |
| 4443 | * The chunk relocation code actually frees the device extent |
| 4444 | */ |
| 4445 | int btrfs_shrink_device(struct btrfs_device *device, u64 new_size) |
| 4446 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4447 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 4448 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4449 | struct btrfs_trans_handle *trans; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4450 | struct btrfs_dev_extent *dev_extent = NULL; |
| 4451 | struct btrfs_path *path; |
| 4452 | u64 length; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4453 | u64 chunk_offset; |
| 4454 | int ret; |
| 4455 | int slot; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4456 | int failed = 0; |
| 4457 | bool retried = false; |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4458 | bool checked_pending_chunks = false; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4459 | struct extent_buffer *l; |
| 4460 | struct btrfs_key key; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4461 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4462 | u64 old_total = btrfs_super_total_bytes(super_copy); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4463 | u64 old_size = btrfs_device_get_total_bytes(device); |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4464 | u64 diff; |
| 4465 | |
| 4466 | new_size = round_down(new_size, fs_info->sectorsize); |
Nikolay Borisov | 0e4324a | 2017-07-21 11:28:24 +0300 | [diff] [blame] | 4467 | diff = round_down(old_size - new_size, fs_info->sectorsize); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4468 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 4469 | if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 4470 | return -EINVAL; |
| 4471 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4472 | path = btrfs_alloc_path(); |
| 4473 | if (!path) |
| 4474 | return -ENOMEM; |
| 4475 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 4476 | path->reada = READA_FORWARD; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4477 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4478 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 4479 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4480 | btrfs_device_set_total_bytes(device, new_size); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4481 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4482 | device->fs_devices->total_rw_bytes -= diff; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4483 | atomic64_sub(diff, &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4484 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4485 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4486 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4487 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4488 | key.objectid = device->devid; |
| 4489 | key.offset = (u64)-1; |
| 4490 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 4491 | |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4492 | do { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4493 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4494 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4495 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4496 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4497 | goto done; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4498 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4499 | |
| 4500 | ret = btrfs_previous_item(root, path, 0, key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4501 | if (ret) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4502 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4503 | if (ret < 0) |
| 4504 | goto done; |
| 4505 | if (ret) { |
| 4506 | ret = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4507 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4508 | break; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4509 | } |
| 4510 | |
| 4511 | l = path->nodes[0]; |
| 4512 | slot = path->slots[0]; |
| 4513 | btrfs_item_key_to_cpu(l, &key, path->slots[0]); |
| 4514 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4515 | if (key.objectid != device->devid) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4516 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4517 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4518 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4519 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4520 | |
| 4521 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
| 4522 | length = btrfs_dev_extent_length(l, dev_extent); |
| 4523 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4524 | if (key.offset + length <= new_size) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4525 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4526 | btrfs_release_path(path); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4527 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4528 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4529 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4530 | chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4531 | btrfs_release_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4532 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 4533 | /* |
| 4534 | * We may be relocating the only data chunk we have, |
| 4535 | * which could potentially end up with losing data's |
| 4536 | * raid profile, so lets allocate an empty one in |
| 4537 | * advance. |
| 4538 | */ |
| 4539 | ret = btrfs_may_alloc_data_chunk(fs_info, chunk_offset); |
| 4540 | if (ret < 0) { |
| 4541 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
| 4542 | goto done; |
| 4543 | } |
| 4544 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4545 | ret = btrfs_relocate_chunk(fs_info, chunk_offset); |
| 4546 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4547 | if (ret && ret != -ENOSPC) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4548 | goto done; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4549 | if (ret == -ENOSPC) |
| 4550 | failed++; |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4551 | } while (key.offset-- > 0); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4552 | |
| 4553 | if (failed && !retried) { |
| 4554 | failed = 0; |
| 4555 | retried = true; |
| 4556 | goto again; |
| 4557 | } else if (failed && retried) { |
| 4558 | ret = -ENOSPC; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4559 | goto done; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4560 | } |
| 4561 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4562 | /* Shrinking succeeded, else we would be at "done". */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4563 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 4564 | if (IS_ERR(trans)) { |
| 4565 | ret = PTR_ERR(trans); |
| 4566 | goto done; |
| 4567 | } |
| 4568 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4569 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4570 | |
| 4571 | /* |
| 4572 | * We checked in the above loop all device extents that were already in |
| 4573 | * the device tree. However before we have updated the device's |
| 4574 | * total_bytes to the new size, we might have had chunk allocations that |
| 4575 | * have not complete yet (new block groups attached to transaction |
| 4576 | * handles), and therefore their device extents were not yet in the |
| 4577 | * device tree and we missed them in the loop above. So if we have any |
| 4578 | * pending chunk using a device extent that overlaps the device range |
| 4579 | * that we can not use anymore, commit the current transaction and |
| 4580 | * repeat the search on the device tree - this way we guarantee we will |
| 4581 | * not have chunks using device extents that end beyond 'new_size'. |
| 4582 | */ |
| 4583 | if (!checked_pending_chunks) { |
| 4584 | u64 start = new_size; |
| 4585 | u64 len = old_size - new_size; |
| 4586 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 4587 | if (contains_pending_extent(trans->transaction, device, |
| 4588 | &start, len)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4589 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4590 | checked_pending_chunks = true; |
| 4591 | failed = 0; |
| 4592 | retried = false; |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4593 | ret = btrfs_commit_transaction(trans); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4594 | if (ret) |
| 4595 | goto done; |
| 4596 | goto again; |
| 4597 | } |
| 4598 | } |
| 4599 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4600 | btrfs_device_set_disk_total_bytes(device, new_size); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 4601 | if (list_empty(&device->resized_list)) |
| 4602 | list_add_tail(&device->resized_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4603 | &fs_info->fs_devices->resized_devices); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4604 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4605 | WARN_ON(diff > old_total); |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4606 | btrfs_set_super_total_bytes(super_copy, |
| 4607 | round_down(old_total - diff, fs_info->sectorsize)); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4608 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 4609 | |
| 4610 | /* Now btrfs_update_device() will change the on-disk size. */ |
| 4611 | ret = btrfs_update_device(trans, device); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4612 | btrfs_end_transaction(trans); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4613 | done: |
| 4614 | btrfs_free_path(path); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4615 | if (ret) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4616 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4617 | btrfs_device_set_total_bytes(device, old_size); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4618 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4619 | device->fs_devices->total_rw_bytes += diff; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4620 | atomic64_add(diff, &fs_info->free_chunk_space); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4621 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4622 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4623 | return ret; |
| 4624 | } |
| 4625 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4626 | static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4627 | struct btrfs_key *key, |
| 4628 | struct btrfs_chunk *chunk, int item_size) |
| 4629 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4630 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4631 | struct btrfs_disk_key disk_key; |
| 4632 | u32 array_size; |
| 4633 | u8 *ptr; |
| 4634 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4635 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4636 | array_size = btrfs_super_sys_array_size(super_copy); |
Gui Hecheng | 5f43f86 | 2014-04-21 20:13:11 +0800 | [diff] [blame] | 4637 | if (array_size + item_size + sizeof(disk_key) |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4638 | > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4639 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4640 | return -EFBIG; |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4641 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4642 | |
| 4643 | ptr = super_copy->sys_chunk_array + array_size; |
| 4644 | btrfs_cpu_key_to_disk(&disk_key, key); |
| 4645 | memcpy(ptr, &disk_key, sizeof(disk_key)); |
| 4646 | ptr += sizeof(disk_key); |
| 4647 | memcpy(ptr, chunk, item_size); |
| 4648 | item_size += sizeof(disk_key); |
| 4649 | btrfs_set_super_sys_array_size(super_copy, array_size + item_size); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4650 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4651 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4652 | return 0; |
| 4653 | } |
| 4654 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4655 | /* |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4656 | * sort the devices in descending order by max_avail, total_avail |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4657 | */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4658 | static int btrfs_cmp_device_info(const void *a, const void *b) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4659 | { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4660 | const struct btrfs_device_info *di_a = a; |
| 4661 | const struct btrfs_device_info *di_b = b; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4662 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4663 | if (di_a->max_avail > di_b->max_avail) |
| 4664 | return -1; |
| 4665 | if (di_a->max_avail < di_b->max_avail) |
| 4666 | return 1; |
| 4667 | if (di_a->total_avail > di_b->total_avail) |
| 4668 | return -1; |
| 4669 | if (di_a->total_avail < di_b->total_avail) |
| 4670 | return 1; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4671 | return 0; |
| 4672 | } |
| 4673 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4674 | static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type) |
| 4675 | { |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 4676 | if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK)) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4677 | return; |
| 4678 | |
Miao Xie | ceda086 | 2013-04-11 10:30:16 +0000 | [diff] [blame] | 4679 | btrfs_set_fs_incompat(info, RAID56); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4680 | } |
| 4681 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 4682 | #define BTRFS_MAX_DEVS(r) ((BTRFS_MAX_ITEM_SIZE(r->fs_info) \ |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4683 | - sizeof(struct btrfs_chunk)) \ |
| 4684 | / sizeof(struct btrfs_stripe) + 1) |
| 4685 | |
| 4686 | #define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \ |
| 4687 | - 2 * sizeof(struct btrfs_disk_key) \ |
| 4688 | - 2 * sizeof(struct btrfs_chunk)) \ |
| 4689 | / sizeof(struct btrfs_stripe) + 1) |
| 4690 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4691 | static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans, |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 4692 | u64 start, u64 type) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4693 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4694 | struct btrfs_fs_info *info = trans->fs_info; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4695 | struct btrfs_fs_devices *fs_devices = info->fs_devices; |
Nikolay Borisov | ebcc930 | 2017-06-27 10:02:24 +0300 | [diff] [blame] | 4696 | struct btrfs_device *device; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4697 | struct map_lookup *map = NULL; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4698 | struct extent_map_tree *em_tree; |
| 4699 | struct extent_map *em; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4700 | struct btrfs_device_info *devices_info = NULL; |
| 4701 | u64 total_avail; |
| 4702 | int num_stripes; /* total number of stripes to allocate */ |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4703 | int data_stripes; /* number of stripes that count for |
| 4704 | block group size */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4705 | int sub_stripes; /* sub_stripes info for map */ |
| 4706 | int dev_stripes; /* stripes per dev */ |
| 4707 | int devs_max; /* max devs to use */ |
| 4708 | int devs_min; /* min devs needed */ |
| 4709 | int devs_increment; /* ndevs has to be a multiple of this */ |
| 4710 | int ncopies; /* how many copies to data has */ |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4711 | int ret; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4712 | u64 max_stripe_size; |
| 4713 | u64 max_chunk_size; |
| 4714 | u64 stripe_size; |
| 4715 | u64 num_bytes; |
| 4716 | int ndevs; |
| 4717 | int i; |
| 4718 | int j; |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4719 | int index; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4720 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4721 | BUG_ON(!alloc_profile_is_valid(type, 0)); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4722 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4723 | if (list_empty(&fs_devices->alloc_list)) |
| 4724 | return -ENOSPC; |
| 4725 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4726 | index = __get_raid_index(type); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4727 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4728 | sub_stripes = btrfs_raid_array[index].sub_stripes; |
| 4729 | dev_stripes = btrfs_raid_array[index].dev_stripes; |
| 4730 | devs_max = btrfs_raid_array[index].devs_max; |
| 4731 | devs_min = btrfs_raid_array[index].devs_min; |
| 4732 | devs_increment = btrfs_raid_array[index].devs_increment; |
| 4733 | ncopies = btrfs_raid_array[index].ncopies; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4734 | |
| 4735 | if (type & BTRFS_BLOCK_GROUP_DATA) { |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4736 | max_stripe_size = SZ_1G; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4737 | max_chunk_size = 10 * max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4738 | if (!devs_max) |
| 4739 | devs_max = BTRFS_MAX_DEVS(info->chunk_root); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4740 | } else if (type & BTRFS_BLOCK_GROUP_METADATA) { |
Chris Mason | 1100373 | 2012-01-06 15:47:38 -0500 | [diff] [blame] | 4741 | /* for larger filesystems, use larger metadata chunks */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4742 | if (fs_devices->total_rw_bytes > 50ULL * SZ_1G) |
| 4743 | max_stripe_size = SZ_1G; |
Chris Mason | 1100373 | 2012-01-06 15:47:38 -0500 | [diff] [blame] | 4744 | else |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4745 | max_stripe_size = SZ_256M; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4746 | max_chunk_size = max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4747 | if (!devs_max) |
| 4748 | devs_max = BTRFS_MAX_DEVS(info->chunk_root); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4749 | } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4750 | max_stripe_size = SZ_32M; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4751 | max_chunk_size = 2 * max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4752 | if (!devs_max) |
| 4753 | devs_max = BTRFS_MAX_DEVS_SYS_CHUNK; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4754 | } else { |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 4755 | btrfs_err(info, "invalid chunk type 0x%llx requested", |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4756 | type); |
| 4757 | BUG_ON(1); |
| 4758 | } |
| 4759 | |
| 4760 | /* we don't want a chunk larger than 10% of writeable space */ |
| 4761 | max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1), |
| 4762 | max_chunk_size); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4763 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 4764 | devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info), |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4765 | GFP_NOFS); |
| 4766 | if (!devices_info) |
| 4767 | return -ENOMEM; |
| 4768 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4769 | /* |
| 4770 | * in the first pass through the devices list, we gather information |
| 4771 | * about the available holes on each device. |
| 4772 | */ |
| 4773 | ndevs = 0; |
Nikolay Borisov | ebcc930 | 2017-06-27 10:02:24 +0300 | [diff] [blame] | 4774 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4775 | u64 max_avail; |
| 4776 | u64 dev_offset; |
| 4777 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4778 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Julia Lawall | 31b1a2b | 2012-11-03 10:58:34 +0000 | [diff] [blame] | 4779 | WARN(1, KERN_ERR |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4780 | "BTRFS: read-only device in alloc_list\n"); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4781 | continue; |
| 4782 | } |
| 4783 | |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 4784 | if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 4785 | &device->dev_state) || |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 4786 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4787 | continue; |
| 4788 | |
| 4789 | if (device->total_bytes > device->bytes_used) |
| 4790 | total_avail = device->total_bytes - device->bytes_used; |
| 4791 | else |
| 4792 | total_avail = 0; |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 4793 | |
| 4794 | /* If there is no space on this device, skip it. */ |
| 4795 | if (total_avail == 0) |
| 4796 | continue; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4797 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4798 | ret = find_free_dev_extent(trans, device, |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4799 | max_stripe_size * dev_stripes, |
| 4800 | &dev_offset, &max_avail); |
| 4801 | if (ret && ret != -ENOSPC) |
| 4802 | goto error; |
| 4803 | |
| 4804 | if (ret == 0) |
| 4805 | max_avail = max_stripe_size * dev_stripes; |
| 4806 | |
| 4807 | if (max_avail < BTRFS_STRIPE_LEN * dev_stripes) |
| 4808 | continue; |
| 4809 | |
Eric Sandeen | 063d006 | 2013-01-31 00:55:01 +0000 | [diff] [blame] | 4810 | if (ndevs == fs_devices->rw_devices) { |
| 4811 | WARN(1, "%s: found more than %llu devices\n", |
| 4812 | __func__, fs_devices->rw_devices); |
| 4813 | break; |
| 4814 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4815 | devices_info[ndevs].dev_offset = dev_offset; |
| 4816 | devices_info[ndevs].max_avail = max_avail; |
| 4817 | devices_info[ndevs].total_avail = total_avail; |
| 4818 | devices_info[ndevs].dev = device; |
| 4819 | ++ndevs; |
| 4820 | } |
| 4821 | |
| 4822 | /* |
| 4823 | * now sort the devices by hole size / available space |
| 4824 | */ |
| 4825 | sort(devices_info, ndevs, sizeof(struct btrfs_device_info), |
| 4826 | btrfs_cmp_device_info, NULL); |
| 4827 | |
| 4828 | /* round down to number of usable stripes */ |
Nikolay Borisov | e5600fd | 2017-06-27 10:02:25 +0300 | [diff] [blame] | 4829 | ndevs = round_down(ndevs, devs_increment); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4830 | |
| 4831 | if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) { |
| 4832 | ret = -ENOSPC; |
| 4833 | goto error; |
| 4834 | } |
| 4835 | |
Nikolay Borisov | f148ef4 | 2017-06-27 10:02:26 +0300 | [diff] [blame] | 4836 | ndevs = min(ndevs, devs_max); |
| 4837 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4838 | /* |
| 4839 | * the primary goal is to maximize the number of stripes, so use as many |
| 4840 | * devices as possible, even if the stripes are not maximum sized. |
| 4841 | */ |
| 4842 | stripe_size = devices_info[ndevs-1].max_avail; |
| 4843 | num_stripes = ndevs * dev_stripes; |
| 4844 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4845 | /* |
| 4846 | * this will have to be fixed for RAID1 and RAID10 over |
| 4847 | * more drives |
| 4848 | */ |
| 4849 | data_stripes = num_stripes / ncopies; |
| 4850 | |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4851 | if (type & BTRFS_BLOCK_GROUP_RAID5) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4852 | data_stripes = num_stripes - 1; |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4853 | |
| 4854 | if (type & BTRFS_BLOCK_GROUP_RAID6) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4855 | data_stripes = num_stripes - 2; |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4856 | |
| 4857 | /* |
| 4858 | * Use the number of data stripes to figure out how big this chunk |
| 4859 | * is really going to be in terms of logical address space, |
| 4860 | * and compare that answer with the max chunk size |
| 4861 | */ |
| 4862 | if (stripe_size * data_stripes > max_chunk_size) { |
| 4863 | u64 mask = (1ULL << 24) - 1; |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 4864 | |
| 4865 | stripe_size = div_u64(max_chunk_size, data_stripes); |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4866 | |
| 4867 | /* bump the answer up to a 16MB boundary */ |
| 4868 | stripe_size = (stripe_size + mask) & ~mask; |
| 4869 | |
| 4870 | /* but don't go higher than the limits we found |
| 4871 | * while searching for free extents |
| 4872 | */ |
| 4873 | if (stripe_size > devices_info[ndevs-1].max_avail) |
| 4874 | stripe_size = devices_info[ndevs-1].max_avail; |
| 4875 | } |
| 4876 | |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 4877 | stripe_size = div_u64(stripe_size, dev_stripes); |
Ilya Dryomov | 37db63a | 2012-04-13 17:05:08 +0300 | [diff] [blame] | 4878 | |
| 4879 | /* align to BTRFS_STRIPE_LEN */ |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4880 | stripe_size = round_down(stripe_size, BTRFS_STRIPE_LEN); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4881 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4882 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
| 4883 | if (!map) { |
| 4884 | ret = -ENOMEM; |
| 4885 | goto error; |
| 4886 | } |
| 4887 | map->num_stripes = num_stripes; |
Chris Mason | 9b3f68b | 2008-04-18 10:29:51 -0400 | [diff] [blame] | 4888 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4889 | for (i = 0; i < ndevs; ++i) { |
| 4890 | for (j = 0; j < dev_stripes; ++j) { |
| 4891 | int s = i * dev_stripes + j; |
| 4892 | map->stripes[s].dev = devices_info[i].dev; |
| 4893 | map->stripes[s].physical = devices_info[i].dev_offset + |
| 4894 | j * stripe_size; |
Chris Mason | a40a90a | 2008-04-18 11:55:51 -0400 | [diff] [blame] | 4895 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4896 | } |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4897 | map->stripe_len = BTRFS_STRIPE_LEN; |
| 4898 | map->io_align = BTRFS_STRIPE_LEN; |
| 4899 | map->io_width = BTRFS_STRIPE_LEN; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4900 | map->type = type; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 4901 | map->sub_stripes = sub_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4902 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4903 | num_bytes = stripe_size * data_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4904 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4905 | trace_btrfs_chunk_alloc(info, map, start, num_bytes); |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4906 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 4907 | em = alloc_extent_map(); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4908 | if (!em) { |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 4909 | kfree(map); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4910 | ret = -ENOMEM; |
| 4911 | goto error; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4912 | } |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 4913 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 4914 | em->map_lookup = map; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4915 | em->start = start; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4916 | em->len = num_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4917 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4918 | em->block_len = em->len; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4919 | em->orig_block_len = stripe_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4920 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4921 | em_tree = &info->mapping_tree.map_tree; |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4922 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 4923 | ret = add_extent_mapping(em_tree, em, 0); |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4924 | if (ret) { |
Nikolay Borisov | 1efb72a | 2017-08-21 12:43:49 +0300 | [diff] [blame] | 4925 | write_unlock(&em_tree->lock); |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4926 | free_extent_map(em); |
Mark Fasheh | 1dd4602 | 2011-09-08 17:29:00 -0700 | [diff] [blame] | 4927 | goto error; |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4928 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4929 | |
Nikolay Borisov | 1efb72a | 2017-08-21 12:43:49 +0300 | [diff] [blame] | 4930 | list_add_tail(&em->list, &trans->transaction->pending_chunks); |
| 4931 | refcount_inc(&em->refs); |
| 4932 | write_unlock(&em_tree->lock); |
| 4933 | |
Nikolay Borisov | 0174484 | 2017-07-27 14:22:11 +0300 | [diff] [blame] | 4934 | ret = btrfs_make_block_group(trans, info, 0, type, start, num_bytes); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4935 | if (ret) |
| 4936 | goto error_del_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4937 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4938 | for (i = 0; i < map->num_stripes; i++) { |
| 4939 | num_bytes = map->stripes[i].dev->bytes_used + stripe_size; |
| 4940 | btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes); |
| 4941 | } |
Miao Xie | 43530c4 | 2014-09-03 21:35:36 +0800 | [diff] [blame] | 4942 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4943 | atomic64_sub(stripe_size * map->num_stripes, &info->free_chunk_space); |
Miao Xie | 1c11618 | 2014-09-03 21:35:37 +0800 | [diff] [blame] | 4944 | |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4945 | free_extent_map(em); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4946 | check_raid56_incompat_flag(info, type); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4947 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4948 | kfree(devices_info); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4949 | return 0; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4950 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4951 | error_del_extent: |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4952 | write_lock(&em_tree->lock); |
| 4953 | remove_extent_mapping(em_tree, em); |
| 4954 | write_unlock(&em_tree->lock); |
| 4955 | |
| 4956 | /* One for our allocation */ |
| 4957 | free_extent_map(em); |
| 4958 | /* One for the tree reference */ |
| 4959 | free_extent_map(em); |
Filipe Manana | 495e64f | 2014-12-02 18:07:30 +0000 | [diff] [blame] | 4960 | /* One for the pending_chunks list reference */ |
| 4961 | free_extent_map(em); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4962 | error: |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4963 | kfree(devices_info); |
| 4964 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4965 | } |
| 4966 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4967 | int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4968 | struct btrfs_fs_info *fs_info, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4969 | u64 chunk_offset, u64 chunk_size) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4970 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4971 | struct btrfs_root *extent_root = fs_info->extent_root; |
| 4972 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4973 | struct btrfs_key key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4974 | struct btrfs_device *device; |
| 4975 | struct btrfs_chunk *chunk; |
| 4976 | struct btrfs_stripe *stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4977 | struct extent_map *em; |
| 4978 | struct map_lookup *map; |
| 4979 | size_t item_size; |
| 4980 | u64 dev_offset; |
| 4981 | u64 stripe_size; |
| 4982 | int i = 0; |
Chris Mason | 140e639 | 2015-12-23 13:30:51 -0800 | [diff] [blame] | 4983 | int ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4984 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 4985 | em = get_chunk_map(fs_info, chunk_offset, chunk_size); |
| 4986 | if (IS_ERR(em)) |
| 4987 | return PTR_ERR(em); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4988 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 4989 | map = em->map_lookup; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4990 | item_size = btrfs_chunk_item_size(map->num_stripes); |
| 4991 | stripe_size = em->orig_block_len; |
| 4992 | |
| 4993 | chunk = kzalloc(item_size, GFP_NOFS); |
| 4994 | if (!chunk) { |
| 4995 | ret = -ENOMEM; |
| 4996 | goto out; |
| 4997 | } |
| 4998 | |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 4999 | /* |
| 5000 | * Take the device list mutex to prevent races with the final phase of |
| 5001 | * a device replace operation that replaces the device object associated |
| 5002 | * with the map's stripes, because the device object's id can change |
| 5003 | * at any time during that final phase of the device replace operation |
| 5004 | * (dev-replace.c:btrfs_dev_replace_finishing()). |
| 5005 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5006 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5007 | for (i = 0; i < map->num_stripes; i++) { |
| 5008 | device = map->stripes[i].dev; |
| 5009 | dev_offset = map->stripes[i].physical; |
| 5010 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5011 | ret = btrfs_update_device(trans, device); |
Mark Fasheh | 3acd395 | 2011-09-08 17:40:01 -0700 | [diff] [blame] | 5012 | if (ret) |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 5013 | break; |
Nikolay Borisov | b5d9071 | 2017-08-18 17:58:23 +0300 | [diff] [blame] | 5014 | ret = btrfs_alloc_dev_extent(trans, device, chunk_offset, |
| 5015 | dev_offset, stripe_size); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5016 | if (ret) |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 5017 | break; |
| 5018 | } |
| 5019 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5020 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 5021 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5022 | } |
| 5023 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5024 | stripe = &chunk->stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5025 | for (i = 0; i < map->num_stripes; i++) { |
| 5026 | device = map->stripes[i].dev; |
| 5027 | dev_offset = map->stripes[i].physical; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5028 | |
| 5029 | btrfs_set_stack_stripe_devid(stripe, device->devid); |
| 5030 | btrfs_set_stack_stripe_offset(stripe, dev_offset); |
| 5031 | memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE); |
| 5032 | stripe++; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5033 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5034 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5035 | |
| 5036 | btrfs_set_stack_chunk_length(chunk, chunk_size); |
| 5037 | btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid); |
| 5038 | btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len); |
| 5039 | btrfs_set_stack_chunk_type(chunk, map->type); |
| 5040 | btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes); |
| 5041 | btrfs_set_stack_chunk_io_align(chunk, map->stripe_len); |
| 5042 | btrfs_set_stack_chunk_io_width(chunk, map->stripe_len); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5043 | btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5044 | btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes); |
| 5045 | |
| 5046 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 5047 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 5048 | key.offset = chunk_offset; |
| 5049 | |
| 5050 | ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 5051 | if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 5052 | /* |
| 5053 | * TODO: Cleanup of inserted chunk root in case of |
| 5054 | * failure. |
| 5055 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5056 | ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5057 | } |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 5058 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5059 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5060 | kfree(chunk); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5061 | free_extent_map(em); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 5062 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5063 | } |
| 5064 | |
| 5065 | /* |
| 5066 | * Chunk allocation falls into two parts. The first part does works |
| 5067 | * that make the new allocated chunk useable, but not do any operation |
| 5068 | * that modifies the chunk tree. The second part does the works that |
| 5069 | * require modifying the chunk tree. This division is important for the |
| 5070 | * bootstrap process of adding storage to a seed btrfs. |
| 5071 | */ |
| 5072 | int btrfs_alloc_chunk(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5073 | struct btrfs_fs_info *fs_info, u64 type) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5074 | { |
| 5075 | u64 chunk_offset; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5076 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5077 | ASSERT(mutex_is_locked(&fs_info->chunk_mutex)); |
| 5078 | chunk_offset = find_next_chunk(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 5079 | return __btrfs_alloc_chunk(trans, chunk_offset, type); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5080 | } |
| 5081 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5082 | static noinline int init_first_rw_device(struct btrfs_trans_handle *trans, |
David Sterba | e4a4dce | 2017-02-10 19:49:01 +0100 | [diff] [blame] | 5083 | struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5084 | { |
| 5085 | u64 chunk_offset; |
| 5086 | u64 sys_chunk_offset; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5087 | u64 alloc_profile; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5088 | int ret; |
| 5089 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5090 | chunk_offset = find_next_chunk(fs_info); |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 5091 | alloc_profile = btrfs_metadata_alloc_profile(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 5092 | ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5093 | if (ret) |
| 5094 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5095 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5096 | sys_chunk_offset = find_next_chunk(fs_info); |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 5097 | alloc_profile = btrfs_system_alloc_profile(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 5098 | ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5099 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5100 | } |
| 5101 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5102 | static inline int btrfs_chunk_max_errors(struct map_lookup *map) |
| 5103 | { |
| 5104 | int max_errors; |
| 5105 | |
| 5106 | if (map->type & (BTRFS_BLOCK_GROUP_RAID1 | |
| 5107 | BTRFS_BLOCK_GROUP_RAID10 | |
| 5108 | BTRFS_BLOCK_GROUP_RAID5 | |
| 5109 | BTRFS_BLOCK_GROUP_DUP)) { |
| 5110 | max_errors = 1; |
| 5111 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) { |
| 5112 | max_errors = 2; |
| 5113 | } else { |
| 5114 | max_errors = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5115 | } |
| 5116 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5117 | return max_errors; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5118 | } |
| 5119 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5120 | 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] | 5121 | { |
| 5122 | struct extent_map *em; |
| 5123 | struct map_lookup *map; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5124 | int readonly = 0; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5125 | int miss_ndevs = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5126 | int i; |
| 5127 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5128 | em = get_chunk_map(fs_info, chunk_offset, 1); |
| 5129 | if (IS_ERR(em)) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5130 | return 1; |
| 5131 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5132 | map = em->map_lookup; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5133 | for (i = 0; i < map->num_stripes; i++) { |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 5134 | if (test_bit(BTRFS_DEV_STATE_MISSING, |
| 5135 | &map->stripes[i].dev->dev_state)) { |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5136 | miss_ndevs++; |
| 5137 | continue; |
| 5138 | } |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 5139 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, |
| 5140 | &map->stripes[i].dev->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5141 | readonly = 1; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5142 | goto end; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5143 | } |
| 5144 | } |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5145 | |
| 5146 | /* |
| 5147 | * If the number of missing devices is larger than max errors, |
| 5148 | * we can not write the data into that chunk successfully, so |
| 5149 | * set it readonly. |
| 5150 | */ |
| 5151 | if (miss_ndevs > btrfs_chunk_max_errors(map)) |
| 5152 | readonly = 1; |
| 5153 | end: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5154 | free_extent_map(em); |
| 5155 | return readonly; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5156 | } |
| 5157 | |
| 5158 | void btrfs_mapping_init(struct btrfs_mapping_tree *tree) |
| 5159 | { |
David Sterba | a8067e0 | 2011-04-21 00:34:43 +0200 | [diff] [blame] | 5160 | extent_map_tree_init(&tree->map_tree); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5161 | } |
| 5162 | |
| 5163 | void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree) |
| 5164 | { |
| 5165 | struct extent_map *em; |
| 5166 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5167 | while (1) { |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5168 | write_lock(&tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5169 | em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1); |
| 5170 | if (em) |
| 5171 | remove_extent_mapping(&tree->map_tree, em); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5172 | write_unlock(&tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5173 | if (!em) |
| 5174 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5175 | /* once for us */ |
| 5176 | free_extent_map(em); |
| 5177 | /* once for the tree */ |
| 5178 | free_extent_map(em); |
| 5179 | } |
| 5180 | } |
| 5181 | |
Stefan Behrens | 5d96405 | 2012-11-05 14:59:07 +0100 | [diff] [blame] | 5182 | 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] | 5183 | { |
| 5184 | struct extent_map *em; |
| 5185 | struct map_lookup *map; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5186 | int ret; |
| 5187 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5188 | em = get_chunk_map(fs_info, logical, len); |
| 5189 | if (IS_ERR(em)) |
| 5190 | /* |
| 5191 | * We could return errors for these cases, but that could get |
| 5192 | * ugly and we'd probably do the same thing which is just not do |
| 5193 | * anything else and exit, so return 1 so the callers don't try |
| 5194 | * to use other copies. |
| 5195 | */ |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5196 | return 1; |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5197 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5198 | map = em->map_lookup; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5199 | if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1)) |
| 5200 | ret = map->num_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5201 | else if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
| 5202 | ret = map->sub_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5203 | else if (map->type & BTRFS_BLOCK_GROUP_RAID5) |
| 5204 | ret = 2; |
| 5205 | else if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
Liu Bo | 8810f75 | 2018-01-02 13:36:41 -0700 | [diff] [blame] | 5206 | /* |
| 5207 | * There could be two corrupted data stripes, we need |
| 5208 | * to loop retry in order to rebuild the correct data. |
| 5209 | * |
| 5210 | * Fail a stripe at a time on every retry except the |
| 5211 | * stripe under reconstruction. |
| 5212 | */ |
| 5213 | ret = map->num_stripes; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5214 | else |
| 5215 | ret = 1; |
| 5216 | free_extent_map(em); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5217 | |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5218 | btrfs_dev_replace_lock(&fs_info->dev_replace, 0); |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5219 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) && |
| 5220 | fs_info->dev_replace.tgtdev) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5221 | ret++; |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5222 | btrfs_dev_replace_unlock(&fs_info->dev_replace, 0); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5223 | |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5224 | return ret; |
| 5225 | } |
| 5226 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5227 | unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info, |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5228 | u64 logical) |
| 5229 | { |
| 5230 | struct extent_map *em; |
| 5231 | struct map_lookup *map; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5232 | unsigned long len = fs_info->sectorsize; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5233 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5234 | em = get_chunk_map(fs_info, logical, len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5235 | |
Nikolay Borisov | 69f03f1 | 2017-07-11 16:55:51 +0300 | [diff] [blame] | 5236 | if (!WARN_ON(IS_ERR(em))) { |
| 5237 | map = em->map_lookup; |
| 5238 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 5239 | len = map->stripe_len * nr_data_stripes(map); |
| 5240 | free_extent_map(em); |
| 5241 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5242 | return len; |
| 5243 | } |
| 5244 | |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 5245 | 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] | 5246 | { |
| 5247 | struct extent_map *em; |
| 5248 | struct map_lookup *map; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5249 | int ret = 0; |
| 5250 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5251 | em = get_chunk_map(fs_info, logical, len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5252 | |
Nikolay Borisov | 69f03f1 | 2017-07-11 16:55:51 +0300 | [diff] [blame] | 5253 | if(!WARN_ON(IS_ERR(em))) { |
| 5254 | map = em->map_lookup; |
| 5255 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 5256 | ret = 1; |
| 5257 | free_extent_map(em); |
| 5258 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5259 | return ret; |
| 5260 | } |
| 5261 | |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5262 | static int find_live_mirror(struct btrfs_fs_info *fs_info, |
| 5263 | struct map_lookup *map, int first, int num, |
| 5264 | int optimal, int dev_replace_is_ongoing) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5265 | { |
| 5266 | int i; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5267 | int tolerance; |
| 5268 | struct btrfs_device *srcdev; |
| 5269 | |
| 5270 | if (dev_replace_is_ongoing && |
| 5271 | fs_info->dev_replace.cont_reading_from_srcdev_mode == |
| 5272 | BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID) |
| 5273 | srcdev = fs_info->dev_replace.srcdev; |
| 5274 | else |
| 5275 | srcdev = NULL; |
| 5276 | |
| 5277 | /* |
| 5278 | * try to avoid the drive that is the source drive for a |
| 5279 | * dev-replace procedure, only choose it if no other non-missing |
| 5280 | * mirror is available |
| 5281 | */ |
| 5282 | for (tolerance = 0; tolerance < 2; tolerance++) { |
| 5283 | if (map->stripes[optimal].dev->bdev && |
| 5284 | (tolerance || map->stripes[optimal].dev != srcdev)) |
| 5285 | return optimal; |
| 5286 | for (i = first; i < first + num; i++) { |
| 5287 | if (map->stripes[i].dev->bdev && |
| 5288 | (tolerance || map->stripes[i].dev != srcdev)) |
| 5289 | return i; |
| 5290 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5291 | } |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5292 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5293 | /* we couldn't find one that doesn't fail. Just return something |
| 5294 | * and the io error handling code will clean up eventually |
| 5295 | */ |
| 5296 | return optimal; |
| 5297 | } |
| 5298 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5299 | static inline int parity_smaller(u64 a, u64 b) |
| 5300 | { |
| 5301 | return a > b; |
| 5302 | } |
| 5303 | |
| 5304 | /* Bubble-sort the stripe set to put the parity/syndrome stripes last */ |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5305 | static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5306 | { |
| 5307 | struct btrfs_bio_stripe s; |
| 5308 | int i; |
| 5309 | u64 l; |
| 5310 | int again = 1; |
| 5311 | |
| 5312 | while (again) { |
| 5313 | again = 0; |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5314 | for (i = 0; i < num_stripes - 1; i++) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5315 | if (parity_smaller(bbio->raid_map[i], |
| 5316 | bbio->raid_map[i+1])) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5317 | s = bbio->stripes[i]; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5318 | l = bbio->raid_map[i]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5319 | bbio->stripes[i] = bbio->stripes[i+1]; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5320 | bbio->raid_map[i] = bbio->raid_map[i+1]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5321 | bbio->stripes[i+1] = s; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5322 | bbio->raid_map[i+1] = l; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5323 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5324 | again = 1; |
| 5325 | } |
| 5326 | } |
| 5327 | } |
| 5328 | } |
| 5329 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5330 | static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes) |
| 5331 | { |
| 5332 | struct btrfs_bio *bbio = kzalloc( |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5333 | /* the size of the btrfs_bio */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5334 | sizeof(struct btrfs_bio) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5335 | /* plus the variable array for the stripes */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5336 | sizeof(struct btrfs_bio_stripe) * (total_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5337 | /* plus the variable array for the tgt dev */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5338 | sizeof(int) * (real_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5339 | /* |
| 5340 | * plus the raid_map, which includes both the tgt dev |
| 5341 | * and the stripes |
| 5342 | */ |
| 5343 | sizeof(u64) * (total_stripes), |
Michal Hocko | 277fb5f | 2015-08-19 14:17:41 +0200 | [diff] [blame] | 5344 | GFP_NOFS|__GFP_NOFAIL); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5345 | |
| 5346 | atomic_set(&bbio->error, 0); |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5347 | refcount_set(&bbio->refs, 1); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5348 | |
| 5349 | return bbio; |
| 5350 | } |
| 5351 | |
| 5352 | void btrfs_get_bbio(struct btrfs_bio *bbio) |
| 5353 | { |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5354 | WARN_ON(!refcount_read(&bbio->refs)); |
| 5355 | refcount_inc(&bbio->refs); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5356 | } |
| 5357 | |
| 5358 | void btrfs_put_bbio(struct btrfs_bio *bbio) |
| 5359 | { |
| 5360 | if (!bbio) |
| 5361 | return; |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5362 | if (refcount_dec_and_test(&bbio->refs)) |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5363 | kfree(bbio); |
| 5364 | } |
| 5365 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5366 | /* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */ |
| 5367 | /* |
| 5368 | * Please note that, discard won't be sent to target device of device |
| 5369 | * replace. |
| 5370 | */ |
| 5371 | static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info, |
| 5372 | u64 logical, u64 length, |
| 5373 | struct btrfs_bio **bbio_ret) |
| 5374 | { |
| 5375 | struct extent_map *em; |
| 5376 | struct map_lookup *map; |
| 5377 | struct btrfs_bio *bbio; |
| 5378 | u64 offset; |
| 5379 | u64 stripe_nr; |
| 5380 | u64 stripe_nr_end; |
| 5381 | u64 stripe_end_offset; |
| 5382 | u64 stripe_cnt; |
| 5383 | u64 stripe_len; |
| 5384 | u64 stripe_offset; |
| 5385 | u64 num_stripes; |
| 5386 | u32 stripe_index; |
| 5387 | u32 factor = 0; |
| 5388 | u32 sub_stripes = 0; |
| 5389 | u64 stripes_per_dev = 0; |
| 5390 | u32 remaining_stripes = 0; |
| 5391 | u32 last_stripe = 0; |
| 5392 | int ret = 0; |
| 5393 | int i; |
| 5394 | |
| 5395 | /* discard always return a bbio */ |
| 5396 | ASSERT(bbio_ret); |
| 5397 | |
| 5398 | em = get_chunk_map(fs_info, logical, length); |
| 5399 | if (IS_ERR(em)) |
| 5400 | return PTR_ERR(em); |
| 5401 | |
| 5402 | map = em->map_lookup; |
| 5403 | /* we don't discard raid56 yet */ |
| 5404 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
| 5405 | ret = -EOPNOTSUPP; |
| 5406 | goto out; |
| 5407 | } |
| 5408 | |
| 5409 | offset = logical - em->start; |
| 5410 | length = min_t(u64, em->len - offset, length); |
| 5411 | |
| 5412 | stripe_len = map->stripe_len; |
| 5413 | /* |
| 5414 | * stripe_nr counts the total number of stripes we have to stride |
| 5415 | * to get to this block |
| 5416 | */ |
| 5417 | stripe_nr = div64_u64(offset, stripe_len); |
| 5418 | |
| 5419 | /* stripe_offset is the offset of this block in its stripe */ |
| 5420 | stripe_offset = offset - stripe_nr * stripe_len; |
| 5421 | |
| 5422 | stripe_nr_end = round_up(offset + length, map->stripe_len); |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 5423 | stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5424 | stripe_cnt = stripe_nr_end - stripe_nr; |
| 5425 | stripe_end_offset = stripe_nr_end * map->stripe_len - |
| 5426 | (offset + length); |
| 5427 | /* |
| 5428 | * after this, stripe_nr is the number of stripes on this |
| 5429 | * device we have to walk to find the data, and stripe_index is |
| 5430 | * the number of our device in the stripe array |
| 5431 | */ |
| 5432 | num_stripes = 1; |
| 5433 | stripe_index = 0; |
| 5434 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 5435 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5436 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
| 5437 | sub_stripes = 1; |
| 5438 | else |
| 5439 | sub_stripes = map->sub_stripes; |
| 5440 | |
| 5441 | factor = map->num_stripes / sub_stripes; |
| 5442 | num_stripes = min_t(u64, map->num_stripes, |
| 5443 | sub_stripes * stripe_cnt); |
| 5444 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
| 5445 | stripe_index *= sub_stripes; |
| 5446 | stripes_per_dev = div_u64_rem(stripe_cnt, factor, |
| 5447 | &remaining_stripes); |
| 5448 | div_u64_rem(stripe_nr_end - 1, factor, &last_stripe); |
| 5449 | last_stripe *= sub_stripes; |
| 5450 | } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1 | |
| 5451 | BTRFS_BLOCK_GROUP_DUP)) { |
| 5452 | num_stripes = map->num_stripes; |
| 5453 | } else { |
| 5454 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5455 | &stripe_index); |
| 5456 | } |
| 5457 | |
| 5458 | bbio = alloc_btrfs_bio(num_stripes, 0); |
| 5459 | if (!bbio) { |
| 5460 | ret = -ENOMEM; |
| 5461 | goto out; |
| 5462 | } |
| 5463 | |
| 5464 | for (i = 0; i < num_stripes; i++) { |
| 5465 | bbio->stripes[i].physical = |
| 5466 | map->stripes[stripe_index].physical + |
| 5467 | stripe_offset + stripe_nr * map->stripe_len; |
| 5468 | bbio->stripes[i].dev = map->stripes[stripe_index].dev; |
| 5469 | |
| 5470 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 5471 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5472 | bbio->stripes[i].length = stripes_per_dev * |
| 5473 | map->stripe_len; |
| 5474 | |
| 5475 | if (i / sub_stripes < remaining_stripes) |
| 5476 | bbio->stripes[i].length += |
| 5477 | map->stripe_len; |
| 5478 | |
| 5479 | /* |
| 5480 | * Special for the first stripe and |
| 5481 | * the last stripe: |
| 5482 | * |
| 5483 | * |-------|...|-------| |
| 5484 | * |----------| |
| 5485 | * off end_off |
| 5486 | */ |
| 5487 | if (i < sub_stripes) |
| 5488 | bbio->stripes[i].length -= |
| 5489 | stripe_offset; |
| 5490 | |
| 5491 | if (stripe_index >= last_stripe && |
| 5492 | stripe_index <= (last_stripe + |
| 5493 | sub_stripes - 1)) |
| 5494 | bbio->stripes[i].length -= |
| 5495 | stripe_end_offset; |
| 5496 | |
| 5497 | if (i == sub_stripes - 1) |
| 5498 | stripe_offset = 0; |
| 5499 | } else { |
| 5500 | bbio->stripes[i].length = length; |
| 5501 | } |
| 5502 | |
| 5503 | stripe_index++; |
| 5504 | if (stripe_index == map->num_stripes) { |
| 5505 | stripe_index = 0; |
| 5506 | stripe_nr++; |
| 5507 | } |
| 5508 | } |
| 5509 | |
| 5510 | *bbio_ret = bbio; |
| 5511 | bbio->map_type = map->type; |
| 5512 | bbio->num_stripes = num_stripes; |
| 5513 | out: |
| 5514 | free_extent_map(em); |
| 5515 | return ret; |
| 5516 | } |
| 5517 | |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5518 | /* |
| 5519 | * In dev-replace case, for repair case (that's the only case where the mirror |
| 5520 | * is selected explicitly when calling btrfs_map_block), blocks left of the |
| 5521 | * left cursor can also be read from the target drive. |
| 5522 | * |
| 5523 | * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the |
| 5524 | * array of stripes. |
| 5525 | * For READ, it also needs to be supported using the same mirror number. |
| 5526 | * |
| 5527 | * If the requested block is not left of the left cursor, EIO is returned. This |
| 5528 | * can happen because btrfs_num_copies() returns one more in the dev-replace |
| 5529 | * case. |
| 5530 | */ |
| 5531 | static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info, |
| 5532 | u64 logical, u64 length, |
| 5533 | u64 srcdev_devid, int *mirror_num, |
| 5534 | u64 *physical) |
| 5535 | { |
| 5536 | struct btrfs_bio *bbio = NULL; |
| 5537 | int num_stripes; |
| 5538 | int index_srcdev = 0; |
| 5539 | int found = 0; |
| 5540 | u64 physical_of_found = 0; |
| 5541 | int i; |
| 5542 | int ret = 0; |
| 5543 | |
| 5544 | ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS, |
| 5545 | logical, &length, &bbio, 0, 0); |
| 5546 | if (ret) { |
| 5547 | ASSERT(bbio == NULL); |
| 5548 | return ret; |
| 5549 | } |
| 5550 | |
| 5551 | num_stripes = bbio->num_stripes; |
| 5552 | if (*mirror_num > num_stripes) { |
| 5553 | /* |
| 5554 | * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror, |
| 5555 | * that means that the requested area is not left of the left |
| 5556 | * cursor |
| 5557 | */ |
| 5558 | btrfs_put_bbio(bbio); |
| 5559 | return -EIO; |
| 5560 | } |
| 5561 | |
| 5562 | /* |
| 5563 | * process the rest of the function using the mirror_num of the source |
| 5564 | * drive. Therefore look it up first. At the end, patch the device |
| 5565 | * pointer to the one of the target drive. |
| 5566 | */ |
| 5567 | for (i = 0; i < num_stripes; i++) { |
| 5568 | if (bbio->stripes[i].dev->devid != srcdev_devid) |
| 5569 | continue; |
| 5570 | |
| 5571 | /* |
| 5572 | * In case of DUP, in order to keep it simple, only add the |
| 5573 | * mirror with the lowest physical address |
| 5574 | */ |
| 5575 | if (found && |
| 5576 | physical_of_found <= bbio->stripes[i].physical) |
| 5577 | continue; |
| 5578 | |
| 5579 | index_srcdev = i; |
| 5580 | found = 1; |
| 5581 | physical_of_found = bbio->stripes[i].physical; |
| 5582 | } |
| 5583 | |
| 5584 | btrfs_put_bbio(bbio); |
| 5585 | |
| 5586 | ASSERT(found); |
| 5587 | if (!found) |
| 5588 | return -EIO; |
| 5589 | |
| 5590 | *mirror_num = index_srcdev + 1; |
| 5591 | *physical = physical_of_found; |
| 5592 | return ret; |
| 5593 | } |
| 5594 | |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 5595 | static void handle_ops_on_dev_replace(enum btrfs_map_op op, |
| 5596 | struct btrfs_bio **bbio_ret, |
| 5597 | struct btrfs_dev_replace *dev_replace, |
| 5598 | int *num_stripes_ret, int *max_errors_ret) |
| 5599 | { |
| 5600 | struct btrfs_bio *bbio = *bbio_ret; |
| 5601 | u64 srcdev_devid = dev_replace->srcdev->devid; |
| 5602 | int tgtdev_indexes = 0; |
| 5603 | int num_stripes = *num_stripes_ret; |
| 5604 | int max_errors = *max_errors_ret; |
| 5605 | int i; |
| 5606 | |
| 5607 | if (op == BTRFS_MAP_WRITE) { |
| 5608 | int index_where_to_add; |
| 5609 | |
| 5610 | /* |
| 5611 | * duplicate the write operations while the dev replace |
| 5612 | * procedure is running. Since the copying of the old disk to |
| 5613 | * the new disk takes place at run time while the filesystem is |
| 5614 | * mounted writable, the regular write operations to the old |
| 5615 | * disk have to be duplicated to go to the new disk as well. |
| 5616 | * |
| 5617 | * Note that device->missing is handled by the caller, and that |
| 5618 | * the write to the old disk is already set up in the stripes |
| 5619 | * array. |
| 5620 | */ |
| 5621 | index_where_to_add = num_stripes; |
| 5622 | for (i = 0; i < num_stripes; i++) { |
| 5623 | if (bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5624 | /* write to new disk, too */ |
| 5625 | struct btrfs_bio_stripe *new = |
| 5626 | bbio->stripes + index_where_to_add; |
| 5627 | struct btrfs_bio_stripe *old = |
| 5628 | bbio->stripes + i; |
| 5629 | |
| 5630 | new->physical = old->physical; |
| 5631 | new->length = old->length; |
| 5632 | new->dev = dev_replace->tgtdev; |
| 5633 | bbio->tgtdev_map[i] = index_where_to_add; |
| 5634 | index_where_to_add++; |
| 5635 | max_errors++; |
| 5636 | tgtdev_indexes++; |
| 5637 | } |
| 5638 | } |
| 5639 | num_stripes = index_where_to_add; |
| 5640 | } else if (op == BTRFS_MAP_GET_READ_MIRRORS) { |
| 5641 | int index_srcdev = 0; |
| 5642 | int found = 0; |
| 5643 | u64 physical_of_found = 0; |
| 5644 | |
| 5645 | /* |
| 5646 | * During the dev-replace procedure, the target drive can also |
| 5647 | * be used to read data in case it is needed to repair a corrupt |
| 5648 | * block elsewhere. This is possible if the requested area is |
| 5649 | * left of the left cursor. In this area, the target drive is a |
| 5650 | * full copy of the source drive. |
| 5651 | */ |
| 5652 | for (i = 0; i < num_stripes; i++) { |
| 5653 | if (bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5654 | /* |
| 5655 | * In case of DUP, in order to keep it simple, |
| 5656 | * only add the mirror with the lowest physical |
| 5657 | * address |
| 5658 | */ |
| 5659 | if (found && |
| 5660 | physical_of_found <= |
| 5661 | bbio->stripes[i].physical) |
| 5662 | continue; |
| 5663 | index_srcdev = i; |
| 5664 | found = 1; |
| 5665 | physical_of_found = bbio->stripes[i].physical; |
| 5666 | } |
| 5667 | } |
| 5668 | if (found) { |
| 5669 | struct btrfs_bio_stripe *tgtdev_stripe = |
| 5670 | bbio->stripes + num_stripes; |
| 5671 | |
| 5672 | tgtdev_stripe->physical = physical_of_found; |
| 5673 | tgtdev_stripe->length = |
| 5674 | bbio->stripes[index_srcdev].length; |
| 5675 | tgtdev_stripe->dev = dev_replace->tgtdev; |
| 5676 | bbio->tgtdev_map[index_srcdev] = num_stripes; |
| 5677 | |
| 5678 | tgtdev_indexes++; |
| 5679 | num_stripes++; |
| 5680 | } |
| 5681 | } |
| 5682 | |
| 5683 | *num_stripes_ret = num_stripes; |
| 5684 | *max_errors_ret = max_errors; |
| 5685 | bbio->num_tgtdevs = tgtdev_indexes; |
| 5686 | *bbio_ret = bbio; |
| 5687 | } |
| 5688 | |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5689 | static bool need_full_stripe(enum btrfs_map_op op) |
| 5690 | { |
| 5691 | return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS); |
| 5692 | } |
| 5693 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5694 | static int __btrfs_map_block(struct btrfs_fs_info *fs_info, |
| 5695 | enum btrfs_map_op op, |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5696 | u64 logical, u64 *length, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5697 | struct btrfs_bio **bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5698 | int mirror_num, int need_raid_map) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5699 | { |
| 5700 | struct extent_map *em; |
| 5701 | struct map_lookup *map; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5702 | u64 offset; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5703 | u64 stripe_offset; |
| 5704 | u64 stripe_nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5705 | u64 stripe_len; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5706 | u32 stripe_index; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5707 | int i; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5708 | int ret = 0; |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5709 | int num_stripes; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 5710 | int max_errors = 0; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5711 | int tgtdev_indexes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5712 | struct btrfs_bio *bbio = NULL; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5713 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 5714 | int dev_replace_is_ongoing = 0; |
| 5715 | int num_alloc_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5716 | int patch_the_first_stripe_for_dev_replace = 0; |
| 5717 | u64 physical_to_patch_in_first_stripe = 0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5718 | u64 raid56_full_stripe_start = (u64)-1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5719 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5720 | if (op == BTRFS_MAP_DISCARD) |
| 5721 | return __btrfs_map_block_for_discard(fs_info, logical, |
| 5722 | *length, bbio_ret); |
| 5723 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5724 | em = get_chunk_map(fs_info, logical, *length); |
| 5725 | if (IS_ERR(em)) |
| 5726 | return PTR_ERR(em); |
Josef Bacik | 9bb9187 | 2013-04-19 23:45:33 -0400 | [diff] [blame] | 5727 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5728 | map = em->map_lookup; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5729 | offset = logical - em->start; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5730 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5731 | stripe_len = map->stripe_len; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5732 | stripe_nr = offset; |
| 5733 | /* |
| 5734 | * stripe_nr counts the total number of stripes we have to stride |
| 5735 | * to get to this block |
| 5736 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5737 | stripe_nr = div64_u64(stripe_nr, stripe_len); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5738 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5739 | stripe_offset = stripe_nr * stripe_len; |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 5740 | if (offset < stripe_offset) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 5741 | btrfs_crit(fs_info, |
| 5742 | "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] | 5743 | stripe_offset, offset, em->start, logical, |
| 5744 | stripe_len); |
| 5745 | free_extent_map(em); |
| 5746 | return -EINVAL; |
| 5747 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5748 | |
| 5749 | /* stripe_offset is the offset of this block in its stripe*/ |
| 5750 | stripe_offset = offset - stripe_offset; |
| 5751 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5752 | /* 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] | 5753 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5754 | unsigned long full_stripe_len = stripe_len * nr_data_stripes(map); |
| 5755 | raid56_full_stripe_start = offset; |
| 5756 | |
| 5757 | /* allow a write of a full stripe, but make sure we don't |
| 5758 | * allow straddling of stripes |
| 5759 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5760 | raid56_full_stripe_start = div64_u64(raid56_full_stripe_start, |
| 5761 | full_stripe_len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5762 | raid56_full_stripe_start *= full_stripe_len; |
| 5763 | } |
| 5764 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5765 | if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5766 | u64 max_len; |
| 5767 | /* For writes to RAID[56], allow a full stripeset across all disks. |
| 5768 | For other RAID types and for RAID[56] reads, just allow a single |
| 5769 | stripe (on a single disk). */ |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5770 | if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5771 | (op == BTRFS_MAP_WRITE)) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5772 | max_len = stripe_len * nr_data_stripes(map) - |
| 5773 | (offset - raid56_full_stripe_start); |
| 5774 | } else { |
| 5775 | /* we limit the length of each bio to what fits in a stripe */ |
| 5776 | max_len = stripe_len - stripe_offset; |
| 5777 | } |
| 5778 | *length = min_t(u64, em->len - offset, max_len); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5779 | } else { |
| 5780 | *length = em->len - offset; |
| 5781 | } |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5782 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5783 | /* This is for when we're called from btrfs_merge_bio_hook() and all |
| 5784 | it cares about is the length */ |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5785 | if (!bbio_ret) |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5786 | goto out; |
| 5787 | |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5788 | btrfs_dev_replace_lock(dev_replace, 0); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5789 | dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace); |
| 5790 | if (!dev_replace_is_ongoing) |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5791 | btrfs_dev_replace_unlock(dev_replace, 0); |
| 5792 | else |
| 5793 | btrfs_dev_replace_set_lock_blocking(dev_replace); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5794 | |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5795 | if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 && |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5796 | !need_full_stripe(op) && dev_replace->tgtdev != NULL) { |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5797 | ret = get_extra_mirror_from_replace(fs_info, logical, *length, |
| 5798 | dev_replace->srcdev->devid, |
| 5799 | &mirror_num, |
| 5800 | &physical_to_patch_in_first_stripe); |
| 5801 | if (ret) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5802 | goto out; |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5803 | else |
| 5804 | patch_the_first_stripe_for_dev_replace = 1; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5805 | } else if (mirror_num > map->num_stripes) { |
| 5806 | mirror_num = 0; |
| 5807 | } |
| 5808 | |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5809 | num_stripes = 1; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5810 | stripe_index = 0; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5811 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5812 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5813 | &stripe_index); |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5814 | if (!need_full_stripe(op)) |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 5815 | mirror_num = 1; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5816 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5817 | if (need_full_stripe(op)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5818 | num_stripes = map->num_stripes; |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5819 | else if (mirror_num) |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5820 | stripe_index = mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5821 | else { |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5822 | stripe_index = find_live_mirror(fs_info, map, 0, |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5823 | map->num_stripes, |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5824 | current->pid % map->num_stripes, |
| 5825 | dev_replace_is_ongoing); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5826 | mirror_num = stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5827 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5828 | |
Chris Mason | 611f0e0 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5829 | } else if (map->type & BTRFS_BLOCK_GROUP_DUP) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5830 | if (need_full_stripe(op)) { |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5831 | num_stripes = map->num_stripes; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5832 | } else if (mirror_num) { |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5833 | stripe_index = mirror_num - 1; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5834 | } else { |
| 5835 | mirror_num = 1; |
| 5836 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5837 | |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5838 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5839 | u32 factor = map->num_stripes / map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5840 | |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5841 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5842 | stripe_index *= map->sub_stripes; |
| 5843 | |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5844 | if (need_full_stripe(op)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5845 | num_stripes = map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5846 | else if (mirror_num) |
| 5847 | stripe_index += mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5848 | else { |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 5849 | int old_stripe_index = stripe_index; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5850 | stripe_index = find_live_mirror(fs_info, map, |
| 5851 | stripe_index, |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5852 | map->sub_stripes, stripe_index + |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5853 | current->pid % map->sub_stripes, |
| 5854 | dev_replace_is_ongoing); |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 5855 | mirror_num = stripe_index - old_stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5856 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5857 | |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5858 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5859 | if (need_raid_map && (need_full_stripe(op) || mirror_num > 1)) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5860 | /* push stripe_nr back to the start of the full stripe */ |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 5861 | stripe_nr = div64_u64(raid56_full_stripe_start, |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5862 | stripe_len * nr_data_stripes(map)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5863 | |
| 5864 | /* RAID[56] write or recovery. Return all stripes */ |
| 5865 | num_stripes = map->num_stripes; |
| 5866 | max_errors = nr_parity_stripes(map); |
| 5867 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5868 | *length = map->stripe_len; |
| 5869 | stripe_index = 0; |
| 5870 | stripe_offset = 0; |
| 5871 | } else { |
| 5872 | /* |
| 5873 | * Mirror #0 or #1 means the original data block. |
| 5874 | * Mirror #2 is RAID5 parity block. |
| 5875 | * Mirror #3 is RAID6 Q block. |
| 5876 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5877 | stripe_nr = div_u64_rem(stripe_nr, |
| 5878 | nr_data_stripes(map), &stripe_index); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5879 | if (mirror_num > 1) |
| 5880 | stripe_index = nr_data_stripes(map) + |
| 5881 | mirror_num - 2; |
| 5882 | |
| 5883 | /* We distribute the parity blocks across stripes */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5884 | div_u64_rem(stripe_nr + stripe_index, map->num_stripes, |
| 5885 | &stripe_index); |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5886 | if (!need_full_stripe(op) && mirror_num <= 1) |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 5887 | mirror_num = 1; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5888 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5889 | } else { |
| 5890 | /* |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5891 | * after this, stripe_nr is the number of stripes on this |
| 5892 | * device we have to walk to find the data, and stripe_index is |
| 5893 | * the number of our device in the stripe array |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5894 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5895 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5896 | &stripe_index); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5897 | mirror_num = stripe_index + 1; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5898 | } |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 5899 | if (stripe_index >= map->num_stripes) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 5900 | btrfs_crit(fs_info, |
| 5901 | "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] | 5902 | stripe_index, map->num_stripes); |
| 5903 | ret = -EINVAL; |
| 5904 | goto out; |
| 5905 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5906 | |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5907 | num_alloc_stripes = num_stripes; |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5908 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) { |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5909 | if (op == BTRFS_MAP_WRITE) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5910 | num_alloc_stripes <<= 1; |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5911 | if (op == BTRFS_MAP_GET_READ_MIRRORS) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5912 | num_alloc_stripes++; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5913 | tgtdev_indexes = num_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5914 | } |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5915 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5916 | bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5917 | if (!bbio) { |
| 5918 | ret = -ENOMEM; |
| 5919 | goto out; |
| 5920 | } |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5921 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5922 | bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5923 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5924 | /* build raid_map */ |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5925 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map && |
| 5926 | (need_full_stripe(op) || mirror_num > 1)) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5927 | u64 tmp; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5928 | unsigned rot; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5929 | |
| 5930 | bbio->raid_map = (u64 *)((void *)bbio->stripes + |
| 5931 | sizeof(struct btrfs_bio_stripe) * |
| 5932 | num_alloc_stripes + |
| 5933 | sizeof(int) * tgtdev_indexes); |
| 5934 | |
| 5935 | /* Work out the disk rotation on this stripe-set */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5936 | div_u64_rem(stripe_nr, num_stripes, &rot); |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5937 | |
| 5938 | /* Fill in the logical address of each stripe */ |
| 5939 | tmp = stripe_nr * nr_data_stripes(map); |
| 5940 | for (i = 0; i < nr_data_stripes(map); i++) |
| 5941 | bbio->raid_map[(i+rot) % num_stripes] = |
| 5942 | em->start + (tmp + i) * map->stripe_len; |
| 5943 | |
| 5944 | bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE; |
| 5945 | if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
| 5946 | bbio->raid_map[(i+rot+1) % num_stripes] = |
| 5947 | RAID6_Q_STRIPE; |
| 5948 | } |
| 5949 | |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5950 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5951 | for (i = 0; i < num_stripes; i++) { |
| 5952 | bbio->stripes[i].physical = |
| 5953 | map->stripes[stripe_index].physical + |
| 5954 | stripe_offset + |
| 5955 | stripe_nr * map->stripe_len; |
| 5956 | bbio->stripes[i].dev = |
| 5957 | map->stripes[stripe_index].dev; |
| 5958 | stripe_index++; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5959 | } |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5960 | |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5961 | if (need_full_stripe(op)) |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5962 | max_errors = btrfs_chunk_max_errors(map); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5963 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5964 | if (bbio->raid_map) |
| 5965 | sort_parity_stripes(bbio, num_stripes); |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5966 | |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 5967 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL && |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5968 | need_full_stripe(op)) { |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 5969 | handle_ops_on_dev_replace(op, &bbio, dev_replace, &num_stripes, |
| 5970 | &max_errors); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5971 | } |
| 5972 | |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5973 | *bbio_ret = bbio; |
Zhao Lei | 10f1190 | 2015-01-20 15:11:43 +0800 | [diff] [blame] | 5974 | bbio->map_type = map->type; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5975 | bbio->num_stripes = num_stripes; |
| 5976 | bbio->max_errors = max_errors; |
| 5977 | bbio->mirror_num = mirror_num; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5978 | |
| 5979 | /* |
| 5980 | * this is the case that REQ_READ && dev_replace_is_ongoing && |
| 5981 | * mirror_num == num_stripes + 1 && dev_replace target drive is |
| 5982 | * available as a mirror |
| 5983 | */ |
| 5984 | if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) { |
| 5985 | WARN_ON(num_stripes > 1); |
| 5986 | bbio->stripes[0].dev = dev_replace->tgtdev; |
| 5987 | bbio->stripes[0].physical = physical_to_patch_in_first_stripe; |
| 5988 | bbio->mirror_num = map->num_stripes + 1; |
| 5989 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5990 | out: |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5991 | if (dev_replace_is_ongoing) { |
| 5992 | btrfs_dev_replace_clear_lock_blocking(dev_replace); |
| 5993 | btrfs_dev_replace_unlock(dev_replace, 0); |
| 5994 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5995 | free_extent_map(em); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5996 | return ret; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5997 | } |
| 5998 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5999 | 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] | 6000 | u64 logical, u64 *length, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6001 | struct btrfs_bio **bbio_ret, int mirror_num) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6002 | { |
Mike Christie | b3d3fa5 | 2016-06-05 14:31:53 -0500 | [diff] [blame] | 6003 | return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6004 | mirror_num, 0); |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 6005 | } |
| 6006 | |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 6007 | /* For Scrub/replace */ |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 6008 | 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] | 6009 | u64 logical, u64 *length, |
David Sterba | 825ad4c | 2017-03-28 14:45:22 +0200 | [diff] [blame] | 6010 | struct btrfs_bio **bbio_ret) |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 6011 | { |
David Sterba | 825ad4c | 2017-03-28 14:45:22 +0200 | [diff] [blame] | 6012 | 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] | 6013 | } |
| 6014 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6015 | int btrfs_rmap_block(struct btrfs_fs_info *fs_info, |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6016 | u64 chunk_start, u64 physical, u64 devid, |
| 6017 | u64 **logical, int *naddrs, int *stripe_len) |
| 6018 | { |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6019 | struct extent_map *em; |
| 6020 | struct map_lookup *map; |
| 6021 | u64 *buf; |
| 6022 | u64 bytenr; |
| 6023 | u64 length; |
| 6024 | u64 stripe_nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6025 | u64 rmap_len; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6026 | int i, j, nr = 0; |
| 6027 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 6028 | em = get_chunk_map(fs_info, chunk_start, 1); |
| 6029 | if (IS_ERR(em)) |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 6030 | return -EIO; |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 6031 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 6032 | map = em->map_lookup; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6033 | length = em->len; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6034 | rmap_len = map->stripe_len; |
| 6035 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6036 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6037 | length = div_u64(length, map->num_stripes / map->sub_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6038 | else if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6039 | length = div_u64(length, map->num_stripes); |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 6040 | else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6041 | length = div_u64(length, nr_data_stripes(map)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6042 | rmap_len = map->stripe_len * nr_data_stripes(map); |
| 6043 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6044 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 6045 | buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6046 | BUG_ON(!buf); /* -ENOMEM */ |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6047 | |
| 6048 | for (i = 0; i < map->num_stripes; i++) { |
| 6049 | if (devid && map->stripes[i].dev->devid != devid) |
| 6050 | continue; |
| 6051 | if (map->stripes[i].physical > physical || |
| 6052 | map->stripes[i].physical + length <= physical) |
| 6053 | continue; |
| 6054 | |
| 6055 | stripe_nr = physical - map->stripes[i].physical; |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 6056 | stripe_nr = div64_u64(stripe_nr, map->stripe_len); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6057 | |
| 6058 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
| 6059 | stripe_nr = stripe_nr * map->num_stripes + i; |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6060 | stripe_nr = div_u64(stripe_nr, map->sub_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6061 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
| 6062 | stripe_nr = stripe_nr * map->num_stripes + i; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6063 | } /* else if RAID[56], multiply by nr_data_stripes(). |
| 6064 | * Alternatively, just use rmap_len below instead of |
| 6065 | * map->stripe_len */ |
| 6066 | |
| 6067 | bytenr = chunk_start + stripe_nr * rmap_len; |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 6068 | WARN_ON(nr >= map->num_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6069 | for (j = 0; j < nr; j++) { |
| 6070 | if (buf[j] == bytenr) |
| 6071 | break; |
| 6072 | } |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 6073 | if (j == nr) { |
| 6074 | WARN_ON(nr >= map->num_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6075 | buf[nr++] = bytenr; |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 6076 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6077 | } |
| 6078 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6079 | *logical = buf; |
| 6080 | *naddrs = nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6081 | *stripe_len = rmap_len; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6082 | |
| 6083 | free_extent_map(em); |
| 6084 | return 0; |
| 6085 | } |
| 6086 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6087 | 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] | 6088 | { |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 6089 | bio->bi_private = bbio->private; |
| 6090 | bio->bi_end_io = bbio->end_io; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6091 | bio_endio(bio); |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 6092 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 6093 | btrfs_put_bbio(bbio); |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6094 | } |
| 6095 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6096 | static void btrfs_end_bio(struct bio *bio) |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6097 | { |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6098 | struct btrfs_bio *bbio = bio->bi_private; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6099 | int is_orig_bio = 0; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6100 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6101 | if (bio->bi_status) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6102 | atomic_inc(&bbio->error); |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6103 | if (bio->bi_status == BLK_STS_IOERR || |
| 6104 | bio->bi_status == BLK_STS_TARGET) { |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6105 | unsigned int stripe_index = |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6106 | btrfs_io_bio(bio)->stripe_index; |
Zhao Lei | 65f5333 | 2015-06-08 20:05:50 +0800 | [diff] [blame] | 6107 | struct btrfs_device *dev; |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6108 | |
| 6109 | BUG_ON(stripe_index >= bbio->num_stripes); |
| 6110 | dev = bbio->stripes[stripe_index].dev; |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6111 | if (dev->bdev) { |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6112 | if (bio_op(bio) == REQ_OP_WRITE) |
Anand Jain | 1cb34c8 | 2017-10-21 01:45:33 +0800 | [diff] [blame] | 6113 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6114 | BTRFS_DEV_STAT_WRITE_ERRS); |
| 6115 | else |
Anand Jain | 1cb34c8 | 2017-10-21 01:45:33 +0800 | [diff] [blame] | 6116 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6117 | BTRFS_DEV_STAT_READ_ERRS); |
Christoph Hellwig | 70fd761 | 2016-11-01 07:40:10 -0600 | [diff] [blame] | 6118 | if (bio->bi_opf & REQ_PREFLUSH) |
Anand Jain | 1cb34c8 | 2017-10-21 01:45:33 +0800 | [diff] [blame] | 6119 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6120 | BTRFS_DEV_STAT_FLUSH_ERRS); |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6121 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6122 | } |
| 6123 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6124 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6125 | if (bio == bbio->orig_bio) |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6126 | is_orig_bio = 1; |
| 6127 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6128 | btrfs_bio_counter_dec(bbio->fs_info); |
| 6129 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6130 | if (atomic_dec_and_test(&bbio->stripes_pending)) { |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6131 | if (!is_orig_bio) { |
| 6132 | bio_put(bio); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6133 | bio = bbio->orig_bio; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6134 | } |
Muthu Kumar | c7b22bb | 2014-01-08 14:19:52 -0700 | [diff] [blame] | 6135 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6136 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6137 | /* only send an error to the higher layers if it is |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6138 | * beyond the tolerance of the btrfs bio |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6139 | */ |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6140 | if (atomic_read(&bbio->error) > bbio->max_errors) { |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6141 | bio->bi_status = BLK_STS_IOERR; |
Chris Mason | 5dbc8fc | 2011-12-09 11:07:37 -0500 | [diff] [blame] | 6142 | } else { |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 6143 | /* |
| 6144 | * this bio is actually up to date, we didn't |
| 6145 | * go over the max number of errors |
| 6146 | */ |
Anand Jain | 2dbe0c7 | 2017-10-14 08:35:56 +0800 | [diff] [blame] | 6147 | bio->bi_status = BLK_STS_OK; |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 6148 | } |
Miao Xie | c55f139 | 2014-06-19 10:42:54 +0800 | [diff] [blame] | 6149 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6150 | btrfs_end_bbio(bbio, bio); |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6151 | } else if (!is_orig_bio) { |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6152 | bio_put(bio); |
| 6153 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6154 | } |
| 6155 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6156 | /* |
| 6157 | * see run_scheduled_bios for a description of why bios are collected for |
| 6158 | * async submit. |
| 6159 | * |
| 6160 | * This will add one bio to the pending list for a device and make sure |
| 6161 | * the work struct is scheduled. |
| 6162 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6163 | static noinline void btrfs_schedule_bio(struct btrfs_device *device, |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6164 | struct bio *bio) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6165 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6166 | struct btrfs_fs_info *fs_info = device->fs_info; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6167 | int should_queue = 1; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6168 | struct btrfs_pending_bios *pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6169 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6170 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state) || |
| 6171 | !device->bdev) { |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6172 | bio_io_error(bio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6173 | return; |
| 6174 | } |
| 6175 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6176 | /* don't bother with additional async steps for reads, right now */ |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6177 | if (bio_op(bio) == REQ_OP_READ) { |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6178 | btrfsic_submit_bio(bio); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6179 | return; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6180 | } |
| 6181 | |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 6182 | WARN_ON(bio->bi_next); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6183 | bio->bi_next = NULL; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6184 | |
| 6185 | spin_lock(&device->io_lock); |
Christoph Hellwig | 67f055c | 2016-11-01 07:40:06 -0600 | [diff] [blame] | 6186 | if (op_is_sync(bio->bi_opf)) |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6187 | pending_bios = &device->pending_sync_bios; |
| 6188 | else |
| 6189 | pending_bios = &device->pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6190 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6191 | if (pending_bios->tail) |
| 6192 | pending_bios->tail->bi_next = bio; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6193 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6194 | pending_bios->tail = bio; |
| 6195 | if (!pending_bios->head) |
| 6196 | pending_bios->head = bio; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6197 | if (device->running_pending) |
| 6198 | should_queue = 0; |
| 6199 | |
| 6200 | spin_unlock(&device->io_lock); |
| 6201 | |
| 6202 | if (should_queue) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6203 | btrfs_queue_work(fs_info->submit_workers, &device->work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6204 | } |
| 6205 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6206 | static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio, |
| 6207 | u64 physical, int dev_nr, int async) |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6208 | { |
| 6209 | struct btrfs_device *dev = bbio->stripes[dev_nr].dev; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6210 | struct btrfs_fs_info *fs_info = bbio->fs_info; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6211 | |
| 6212 | bio->bi_private = bbio; |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6213 | btrfs_io_bio(bio)->stripe_index = dev_nr; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6214 | bio->bi_end_io = btrfs_end_bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6215 | bio->bi_iter.bi_sector = physical >> 9; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6216 | #ifdef DEBUG |
| 6217 | { |
| 6218 | struct rcu_string *name; |
| 6219 | |
| 6220 | rcu_read_lock(); |
| 6221 | name = rcu_dereference(dev->name); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6222 | btrfs_debug(fs_info, |
| 6223 | "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u", |
| 6224 | bio_op(bio), bio->bi_opf, |
| 6225 | (u64)bio->bi_iter.bi_sector, |
| 6226 | (u_long)dev->bdev->bd_dev, name->str, dev->devid, |
| 6227 | bio->bi_iter.bi_size); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6228 | rcu_read_unlock(); |
| 6229 | } |
| 6230 | #endif |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 6231 | bio_set_dev(bio, dev->bdev); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6232 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6233 | btrfs_bio_counter_inc_noblocked(fs_info); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6234 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6235 | if (async) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6236 | btrfs_schedule_bio(dev, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6237 | else |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6238 | btrfsic_submit_bio(bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6239 | } |
| 6240 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6241 | static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical) |
| 6242 | { |
| 6243 | atomic_inc(&bbio->error); |
| 6244 | if (atomic_dec_and_test(&bbio->stripes_pending)) { |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6245 | /* Should be the original bio. */ |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6246 | WARN_ON(bio != bbio->orig_bio); |
| 6247 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6248 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6249 | bio->bi_iter.bi_sector = logical >> 9; |
Anand Jain | 102ed2c | 2017-10-14 08:34:02 +0800 | [diff] [blame] | 6250 | if (atomic_read(&bbio->error) > bbio->max_errors) |
| 6251 | bio->bi_status = BLK_STS_IOERR; |
| 6252 | else |
| 6253 | bio->bi_status = BLK_STS_OK; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6254 | btrfs_end_bbio(bbio, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6255 | } |
| 6256 | } |
| 6257 | |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6258 | blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio, |
| 6259 | int mirror_num, int async_submit) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6260 | { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6261 | struct btrfs_device *dev; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6262 | struct bio *first_bio = bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6263 | u64 logical = (u64)bio->bi_iter.bi_sector << 9; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6264 | u64 length = 0; |
| 6265 | u64 map_length; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6266 | int ret; |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6267 | int dev_nr; |
| 6268 | int total_devs; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6269 | struct btrfs_bio *bbio = NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6270 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6271 | length = bio->bi_iter.bi_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6272 | map_length = length; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6273 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6274 | btrfs_bio_counter_inc_blocked(fs_info); |
Liu Bo | bd7d63c | 2017-09-19 17:50:09 -0600 | [diff] [blame] | 6275 | ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical, |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6276 | &map_length, &bbio, mirror_num, 1); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6277 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6278 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6279 | return errno_to_blk_status(ret); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6280 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6281 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6282 | total_devs = bbio->num_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6283 | bbio->orig_bio = first_bio; |
| 6284 | bbio->private = first_bio->bi_private; |
| 6285 | bbio->end_io = first_bio->bi_end_io; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6286 | bbio->fs_info = fs_info; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6287 | atomic_set(&bbio->stripes_pending, bbio->num_stripes); |
| 6288 | |
Zhao Lei | ad1ba2a | 2015-12-15 18:18:09 +0800 | [diff] [blame] | 6289 | if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6290 | ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6291 | /* In this case, map_length has been set to the length of |
| 6292 | a single stripe; not the whole write */ |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6293 | if (bio_op(bio) == REQ_OP_WRITE) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6294 | ret = raid56_parity_write(fs_info, bio, bbio, |
| 6295 | map_length); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6296 | } else { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6297 | ret = raid56_parity_recover(fs_info, bio, bbio, |
| 6298 | map_length, mirror_num, 1); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6299 | } |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 6300 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6301 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6302 | return errno_to_blk_status(ret); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6303 | } |
| 6304 | |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6305 | if (map_length < length) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6306 | btrfs_crit(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6307 | "mapping failed logical %llu bio len %llu len %llu", |
| 6308 | logical, length, map_length); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6309 | BUG(); |
| 6310 | } |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6311 | |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6312 | for (dev_nr = 0; dev_nr < total_devs; dev_nr++) { |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6313 | dev = bbio->stripes[dev_nr].dev; |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6314 | if (!dev || !dev->bdev || |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 6315 | (bio_op(first_bio) == REQ_OP_WRITE && |
| 6316 | !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))) { |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6317 | bbio_error(bbio, first_bio, logical); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6318 | continue; |
| 6319 | } |
| 6320 | |
David Sterba | 3aa8e07 | 2017-06-02 17:38:30 +0200 | [diff] [blame] | 6321 | if (dev_nr < total_devs - 1) |
David Sterba | 8b6c1d5 | 2017-06-02 17:48:13 +0200 | [diff] [blame] | 6322 | bio = btrfs_bio_clone(first_bio); |
David Sterba | 3aa8e07 | 2017-06-02 17:38:30 +0200 | [diff] [blame] | 6323 | else |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6324 | bio = first_bio; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 6325 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6326 | submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical, |
| 6327 | dev_nr, async_submit); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6328 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6329 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6330 | return BLK_STS_OK; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6331 | } |
| 6332 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6333 | 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] | 6334 | u8 *uuid, u8 *fsid) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6335 | { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6336 | struct btrfs_device *device; |
| 6337 | struct btrfs_fs_devices *cur_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6338 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6339 | cur_devices = fs_info->fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6340 | while (cur_devices) { |
| 6341 | if (!fsid || |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6342 | !memcmp(cur_devices->fsid, fsid, BTRFS_FSID_SIZE)) { |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 6343 | device = find_device(cur_devices, devid, uuid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6344 | if (device) |
| 6345 | return device; |
| 6346 | } |
| 6347 | cur_devices = cur_devices->seed; |
| 6348 | } |
| 6349 | return NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6350 | } |
| 6351 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6352 | 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] | 6353 | u64 devid, u8 *dev_uuid) |
| 6354 | { |
| 6355 | struct btrfs_device *device; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6356 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6357 | device = btrfs_alloc_device(NULL, &devid, dev_uuid); |
| 6358 | if (IS_ERR(device)) |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6359 | return device; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6360 | |
| 6361 | list_add(&device->dev_list, &fs_devices->devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6362 | device->fs_devices = fs_devices; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6363 | fs_devices->num_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6364 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6365 | set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6366 | fs_devices->missing_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6367 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6368 | return device; |
| 6369 | } |
| 6370 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6371 | /** |
| 6372 | * btrfs_alloc_device - allocate struct btrfs_device |
| 6373 | * @fs_info: used only for generating a new devid, can be NULL if |
| 6374 | * devid is provided (i.e. @devid != NULL). |
| 6375 | * @devid: a pointer to devid for this device. If NULL a new devid |
| 6376 | * is generated. |
| 6377 | * @uuid: a pointer to UUID for this device. If NULL a new UUID |
| 6378 | * is generated. |
| 6379 | * |
| 6380 | * 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] | 6381 | * on error. Returned struct is not linked onto any lists and must be |
| 6382 | * destroyed with free_device. |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6383 | */ |
| 6384 | struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info, |
| 6385 | const u64 *devid, |
| 6386 | const u8 *uuid) |
| 6387 | { |
| 6388 | struct btrfs_device *dev; |
| 6389 | u64 tmp; |
| 6390 | |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6391 | if (WARN_ON(!devid && !fs_info)) |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6392 | return ERR_PTR(-EINVAL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6393 | |
| 6394 | dev = __alloc_device(); |
| 6395 | if (IS_ERR(dev)) |
| 6396 | return dev; |
| 6397 | |
| 6398 | if (devid) |
| 6399 | tmp = *devid; |
| 6400 | else { |
| 6401 | int ret; |
| 6402 | |
| 6403 | ret = find_next_devid(fs_info, &tmp); |
| 6404 | if (ret) { |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 6405 | free_device(dev); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6406 | return ERR_PTR(ret); |
| 6407 | } |
| 6408 | } |
| 6409 | dev->devid = tmp; |
| 6410 | |
| 6411 | if (uuid) |
| 6412 | memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE); |
| 6413 | else |
| 6414 | generate_random_uuid(dev->uuid); |
| 6415 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 6416 | btrfs_init_work(&dev->work, btrfs_submit_helper, |
| 6417 | pending_bios_fn, NULL, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6418 | |
| 6419 | return dev; |
| 6420 | } |
| 6421 | |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6422 | /* Return -EIO if any error, otherwise return 0. */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6423 | static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6424 | struct extent_buffer *leaf, |
| 6425 | struct btrfs_chunk *chunk, u64 logical) |
| 6426 | { |
| 6427 | u64 length; |
| 6428 | u64 stripe_len; |
| 6429 | u16 num_stripes; |
| 6430 | u16 sub_stripes; |
| 6431 | u64 type; |
| 6432 | |
| 6433 | length = btrfs_chunk_length(leaf, chunk); |
| 6434 | stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
| 6435 | num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 6436 | sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); |
| 6437 | type = btrfs_chunk_type(leaf, chunk); |
| 6438 | |
| 6439 | if (!num_stripes) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6440 | btrfs_err(fs_info, "invalid chunk num_stripes: %u", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6441 | num_stripes); |
| 6442 | return -EIO; |
| 6443 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6444 | if (!IS_ALIGNED(logical, fs_info->sectorsize)) { |
| 6445 | btrfs_err(fs_info, "invalid chunk logical %llu", logical); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6446 | return -EIO; |
| 6447 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6448 | if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) { |
| 6449 | btrfs_err(fs_info, "invalid chunk sectorsize %u", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6450 | btrfs_chunk_sector_size(leaf, chunk)); |
| 6451 | return -EIO; |
| 6452 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6453 | if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) { |
| 6454 | btrfs_err(fs_info, "invalid chunk length %llu", length); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6455 | return -EIO; |
| 6456 | } |
| 6457 | if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6458 | btrfs_err(fs_info, "invalid chunk stripe length: %llu", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6459 | stripe_len); |
| 6460 | return -EIO; |
| 6461 | } |
| 6462 | if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) & |
| 6463 | type) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6464 | btrfs_err(fs_info, "unrecognized chunk type: %llu", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6465 | ~(BTRFS_BLOCK_GROUP_TYPE_MASK | |
| 6466 | BTRFS_BLOCK_GROUP_PROFILE_MASK) & |
| 6467 | btrfs_chunk_type(leaf, chunk)); |
| 6468 | return -EIO; |
| 6469 | } |
| 6470 | if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) || |
| 6471 | (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) || |
| 6472 | (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) || |
| 6473 | (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) || |
| 6474 | (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) || |
| 6475 | ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 && |
| 6476 | num_stripes != 1)) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6477 | btrfs_err(fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6478 | "invalid num_stripes:sub_stripes %u:%u for profile %llu", |
| 6479 | num_stripes, sub_stripes, |
| 6480 | type & BTRFS_BLOCK_GROUP_PROFILE_MASK); |
| 6481 | return -EIO; |
| 6482 | } |
| 6483 | |
| 6484 | return 0; |
| 6485 | } |
| 6486 | |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6487 | static void btrfs_report_missing_device(struct btrfs_fs_info *fs_info, |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6488 | u64 devid, u8 *uuid, bool error) |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6489 | { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6490 | if (error) |
| 6491 | btrfs_err_rl(fs_info, "devid %llu uuid %pU is missing", |
| 6492 | devid, uuid); |
| 6493 | else |
| 6494 | btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing", |
| 6495 | devid, uuid); |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6496 | } |
| 6497 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6498 | 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] | 6499 | struct extent_buffer *leaf, |
| 6500 | struct btrfs_chunk *chunk) |
| 6501 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6502 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6503 | struct map_lookup *map; |
| 6504 | struct extent_map *em; |
| 6505 | u64 logical; |
| 6506 | u64 length; |
| 6507 | u64 devid; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6508 | u8 uuid[BTRFS_UUID_SIZE]; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6509 | int num_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6510 | int ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6511 | int i; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6512 | |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 6513 | logical = key->offset; |
| 6514 | length = btrfs_chunk_length(leaf, chunk); |
Qu Wenruo | f04b772 | 2015-12-15 09:14:37 +0800 | [diff] [blame] | 6515 | num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6516 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6517 | ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6518 | if (ret) |
| 6519 | return ret; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6520 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6521 | read_lock(&map_tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6522 | em = lookup_extent_mapping(&map_tree->map_tree, logical, 1); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6523 | read_unlock(&map_tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6524 | |
| 6525 | /* already mapped? */ |
| 6526 | if (em && em->start <= logical && em->start + em->len > logical) { |
| 6527 | free_extent_map(em); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6528 | return 0; |
| 6529 | } else if (em) { |
| 6530 | free_extent_map(em); |
| 6531 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6532 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 6533 | em = alloc_extent_map(); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6534 | if (!em) |
| 6535 | return -ENOMEM; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6536 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6537 | if (!map) { |
| 6538 | free_extent_map(em); |
| 6539 | return -ENOMEM; |
| 6540 | } |
| 6541 | |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 6542 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 6543 | em->map_lookup = map; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6544 | em->start = logical; |
| 6545 | em->len = length; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 6546 | em->orig_start = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6547 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6548 | em->block_len = em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6549 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6550 | map->num_stripes = num_stripes; |
| 6551 | map->io_width = btrfs_chunk_io_width(leaf, chunk); |
| 6552 | map->io_align = btrfs_chunk_io_align(leaf, chunk); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6553 | map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
| 6554 | map->type = btrfs_chunk_type(leaf, chunk); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6555 | map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6556 | for (i = 0; i < num_stripes; i++) { |
| 6557 | map->stripes[i].physical = |
| 6558 | btrfs_stripe_offset_nr(leaf, chunk, i); |
| 6559 | devid = btrfs_stripe_devid_nr(leaf, chunk, i); |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6560 | read_extent_buffer(leaf, uuid, (unsigned long) |
| 6561 | btrfs_stripe_dev_uuid_nr(chunk, i), |
| 6562 | BTRFS_UUID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6563 | map->stripes[i].dev = btrfs_find_device(fs_info, devid, |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6564 | uuid, NULL); |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 6565 | if (!map->stripes[i].dev && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6566 | !btrfs_test_opt(fs_info, DEGRADED)) { |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6567 | free_extent_map(em); |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6568 | btrfs_report_missing_device(fs_info, devid, uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 6569 | return -ENOENT; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6570 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6571 | if (!map->stripes[i].dev) { |
| 6572 | map->stripes[i].dev = |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6573 | add_missing_dev(fs_info->fs_devices, devid, |
| 6574 | uuid); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6575 | if (IS_ERR(map->stripes[i].dev)) { |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6576 | free_extent_map(em); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6577 | btrfs_err(fs_info, |
| 6578 | "failed to init missing dev %llu: %ld", |
| 6579 | devid, PTR_ERR(map->stripes[i].dev)); |
| 6580 | return PTR_ERR(map->stripes[i].dev); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6581 | } |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6582 | btrfs_report_missing_device(fs_info, devid, uuid, false); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6583 | } |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 6584 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 6585 | &(map->stripes[i].dev->dev_state)); |
| 6586 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6587 | } |
| 6588 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6589 | write_lock(&map_tree->map_tree.lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 6590 | ret = add_extent_mapping(&map_tree->map_tree, em, 0); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6591 | write_unlock(&map_tree->map_tree.lock); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6592 | BUG_ON(ret); /* Tree corruption */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6593 | free_extent_map(em); |
| 6594 | |
| 6595 | return 0; |
| 6596 | } |
| 6597 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6598 | static void fill_device_from_item(struct extent_buffer *leaf, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6599 | struct btrfs_dev_item *dev_item, |
| 6600 | struct btrfs_device *device) |
| 6601 | { |
| 6602 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6603 | |
| 6604 | device->devid = btrfs_device_id(leaf, dev_item); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 6605 | device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item); |
| 6606 | device->total_bytes = device->disk_total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 6607 | device->commit_total_bytes = device->disk_total_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6608 | device->bytes_used = btrfs_device_bytes_used(leaf, dev_item); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 6609 | device->commit_bytes_used = device->bytes_used; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6610 | device->type = btrfs_device_type(leaf, dev_item); |
| 6611 | device->io_align = btrfs_device_io_align(leaf, dev_item); |
| 6612 | device->io_width = btrfs_device_io_width(leaf, dev_item); |
| 6613 | device->sector_size = btrfs_device_sector_size(leaf, dev_item); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 6614 | WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 6615 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6616 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 6617 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 6618 | read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6619 | } |
| 6620 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6621 | 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] | 6622 | u8 *fsid) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6623 | { |
| 6624 | struct btrfs_fs_devices *fs_devices; |
| 6625 | int ret; |
| 6626 | |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6627 | BUG_ON(!mutex_is_locked(&uuid_mutex)); |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 6628 | ASSERT(fsid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6629 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6630 | fs_devices = fs_info->fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6631 | while (fs_devices) { |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6632 | if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE)) |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6633 | return fs_devices; |
| 6634 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6635 | fs_devices = fs_devices->seed; |
| 6636 | } |
| 6637 | |
| 6638 | fs_devices = find_fsid(fsid); |
| 6639 | if (!fs_devices) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6640 | if (!btrfs_test_opt(fs_info, DEGRADED)) |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6641 | return ERR_PTR(-ENOENT); |
| 6642 | |
| 6643 | fs_devices = alloc_fs_devices(fsid); |
| 6644 | if (IS_ERR(fs_devices)) |
| 6645 | return fs_devices; |
| 6646 | |
| 6647 | fs_devices->seeding = 1; |
| 6648 | fs_devices->opened = 1; |
| 6649 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6650 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6651 | |
| 6652 | fs_devices = clone_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6653 | if (IS_ERR(fs_devices)) |
| 6654 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6655 | |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 6656 | ret = __btrfs_open_devices(fs_devices, FMODE_READ, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6657 | fs_info->bdev_holder); |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 6658 | if (ret) { |
| 6659 | free_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6660 | fs_devices = ERR_PTR(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6661 | goto out; |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 6662 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6663 | |
| 6664 | if (!fs_devices->seeding) { |
| 6665 | __btrfs_close_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6666 | free_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6667 | fs_devices = ERR_PTR(-EINVAL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6668 | goto out; |
| 6669 | } |
| 6670 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6671 | fs_devices->seed = fs_info->fs_devices->seed; |
| 6672 | fs_info->fs_devices->seed = fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6673 | out: |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6674 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6675 | } |
| 6676 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6677 | static int read_one_dev(struct btrfs_fs_info *fs_info, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6678 | struct extent_buffer *leaf, |
| 6679 | struct btrfs_dev_item *dev_item) |
| 6680 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6681 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6682 | struct btrfs_device *device; |
| 6683 | u64 devid; |
| 6684 | int ret; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6685 | u8 fs_uuid[BTRFS_FSID_SIZE]; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6686 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 6687 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6688 | devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 6689 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6690 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 6691 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6692 | BTRFS_FSID_SIZE); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6693 | |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6694 | if (memcmp(fs_uuid, fs_info->fsid, BTRFS_FSID_SIZE)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6695 | fs_devices = open_seed_devices(fs_info, fs_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6696 | if (IS_ERR(fs_devices)) |
| 6697 | return PTR_ERR(fs_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6698 | } |
| 6699 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6700 | device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6701 | if (!device) { |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6702 | if (!btrfs_test_opt(fs_info, DEGRADED)) { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6703 | btrfs_report_missing_device(fs_info, devid, |
| 6704 | dev_uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 6705 | return -ENOENT; |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6706 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6707 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6708 | device = add_missing_dev(fs_devices, devid, dev_uuid); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6709 | if (IS_ERR(device)) { |
| 6710 | btrfs_err(fs_info, |
| 6711 | "failed to add missing dev %llu: %ld", |
| 6712 | devid, PTR_ERR(device)); |
| 6713 | return PTR_ERR(device); |
| 6714 | } |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6715 | btrfs_report_missing_device(fs_info, devid, dev_uuid, false); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6716 | } else { |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6717 | if (!device->bdev) { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6718 | if (!btrfs_test_opt(fs_info, DEGRADED)) { |
| 6719 | btrfs_report_missing_device(fs_info, |
| 6720 | devid, dev_uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 6721 | return -ENOENT; |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6722 | } |
| 6723 | btrfs_report_missing_device(fs_info, devid, |
| 6724 | dev_uuid, false); |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6725 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6726 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6727 | if (!device->bdev && |
| 6728 | !test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6729 | /* |
| 6730 | * this happens when a device that was properly setup |
| 6731 | * in the device info lists suddenly goes bad. |
| 6732 | * device->bdev is NULL, and so we have to set |
| 6733 | * device->missing to one here |
| 6734 | */ |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6735 | device->fs_devices->missing_devices++; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6736 | set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6737 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6738 | |
| 6739 | /* Move the device to its own fs_devices */ |
| 6740 | if (device->fs_devices != fs_devices) { |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6741 | ASSERT(test_bit(BTRFS_DEV_STATE_MISSING, |
| 6742 | &device->dev_state)); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6743 | |
| 6744 | list_move(&device->dev_list, &fs_devices->devices); |
| 6745 | device->fs_devices->num_devices--; |
| 6746 | fs_devices->num_devices++; |
| 6747 | |
| 6748 | device->fs_devices->missing_devices--; |
| 6749 | fs_devices->missing_devices++; |
| 6750 | |
| 6751 | device->fs_devices = fs_devices; |
| 6752 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6753 | } |
| 6754 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6755 | if (device->fs_devices != fs_info->fs_devices) { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 6756 | BUG_ON(test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6757 | if (device->generation != |
| 6758 | btrfs_device_generation(leaf, dev_item)) |
| 6759 | return -EINVAL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 6760 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6761 | |
| 6762 | fill_device_from_item(leaf, dev_item, device); |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 6763 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 6764 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 6765 | !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6766 | device->fs_devices->total_rw_bytes += device->total_bytes; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 6767 | atomic64_add(device->total_bytes - device->bytes_used, |
| 6768 | &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 6769 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6770 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6771 | return ret; |
| 6772 | } |
| 6773 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 6774 | int btrfs_read_sys_array(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6775 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 6776 | struct btrfs_root *root = fs_info->tree_root; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6777 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6778 | struct extent_buffer *sb; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6779 | struct btrfs_disk_key *disk_key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6780 | struct btrfs_chunk *chunk; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6781 | u8 *array_ptr; |
| 6782 | unsigned long sb_array_offset; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6783 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6784 | u32 num_stripes; |
| 6785 | u32 array_size; |
| 6786 | u32 len = 0; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6787 | u32 cur_offset; |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6788 | u64 type; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6789 | struct btrfs_key key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6790 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6791 | ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize); |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 6792 | /* |
| 6793 | * This will create extent buffer of nodesize, superblock size is |
| 6794 | * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will |
| 6795 | * overallocate but we can keep it as-is, only the first page is used. |
| 6796 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6797 | sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 6798 | if (IS_ERR(sb)) |
| 6799 | return PTR_ERR(sb); |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 6800 | set_extent_buffer_uptodate(sb); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 6801 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0); |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 6802 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6803 | * 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] | 6804 | * set_extent_buffer_uptodate() call does not properly mark all it's |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 6805 | * pages up-to-date when the page is larger: extent does not cover the |
| 6806 | * whole page and consequently check_page_uptodate does not find all |
| 6807 | * the page's extents up-to-date (the hole beyond sb), |
| 6808 | * write_extent_buffer then triggers a WARN_ON. |
| 6809 | * |
| 6810 | * Regular short extents go through mark_extent_buffer_dirty/writeback cycle, |
| 6811 | * but sb spans only this function. Add an explicit SetPageUptodate call |
| 6812 | * to silence the warning eg. on PowerPC 64. |
| 6813 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 6814 | if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE) |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 6815 | SetPageUptodate(sb->pages[0]); |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 6816 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6817 | write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6818 | array_size = btrfs_super_sys_array_size(super_copy); |
| 6819 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6820 | array_ptr = super_copy->sys_chunk_array; |
| 6821 | sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array); |
| 6822 | cur_offset = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6823 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6824 | while (cur_offset < array_size) { |
| 6825 | disk_key = (struct btrfs_disk_key *)array_ptr; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6826 | len = sizeof(*disk_key); |
| 6827 | if (cur_offset + len > array_size) |
| 6828 | goto out_short_read; |
| 6829 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6830 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 6831 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6832 | array_ptr += len; |
| 6833 | sb_array_offset += len; |
| 6834 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6835 | |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6836 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6837 | chunk = (struct btrfs_chunk *)sb_array_offset; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6838 | /* |
| 6839 | * At least one btrfs_chunk with one stripe must be |
| 6840 | * present, exact stripe count check comes afterwards |
| 6841 | */ |
| 6842 | len = btrfs_chunk_item_size(1); |
| 6843 | if (cur_offset + len > array_size) |
| 6844 | goto out_short_read; |
| 6845 | |
| 6846 | num_stripes = btrfs_chunk_num_stripes(sb, chunk); |
David Sterba | f5cdedd | 2015-11-30 17:27:06 +0100 | [diff] [blame] | 6847 | if (!num_stripes) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6848 | btrfs_err(fs_info, |
| 6849 | "invalid number of stripes %u in sys_array at offset %u", |
David Sterba | f5cdedd | 2015-11-30 17:27:06 +0100 | [diff] [blame] | 6850 | num_stripes, cur_offset); |
| 6851 | ret = -EIO; |
| 6852 | break; |
| 6853 | } |
| 6854 | |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6855 | type = btrfs_chunk_type(sb, chunk); |
| 6856 | if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6857 | btrfs_err(fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6858 | "invalid chunk type %llu in sys_array at offset %u", |
| 6859 | type, cur_offset); |
| 6860 | ret = -EIO; |
| 6861 | break; |
| 6862 | } |
| 6863 | |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6864 | len = btrfs_chunk_item_size(num_stripes); |
| 6865 | if (cur_offset + len > array_size) |
| 6866 | goto out_short_read; |
| 6867 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6868 | ret = read_one_chunk(fs_info, &key, sb, chunk); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6869 | if (ret) |
| 6870 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6871 | } else { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6872 | btrfs_err(fs_info, |
| 6873 | "unexpected item type %u in sys_array at offset %u", |
| 6874 | (u32)key.type, cur_offset); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6875 | ret = -EIO; |
| 6876 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6877 | } |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6878 | array_ptr += len; |
| 6879 | sb_array_offset += len; |
| 6880 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6881 | } |
Liu Bo | d865177 | 2016-06-03 17:41:42 -0700 | [diff] [blame] | 6882 | clear_extent_buffer_uptodate(sb); |
Liu Bo | 1c8b5b6 | 2016-05-13 17:06:59 -0700 | [diff] [blame] | 6883 | free_extent_buffer_stale(sb); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6884 | return ret; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6885 | |
| 6886 | out_short_read: |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6887 | 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] | 6888 | len, cur_offset); |
Liu Bo | d865177 | 2016-06-03 17:41:42 -0700 | [diff] [blame] | 6889 | clear_extent_buffer_uptodate(sb); |
Liu Bo | 1c8b5b6 | 2016-05-13 17:06:59 -0700 | [diff] [blame] | 6890 | free_extent_buffer_stale(sb); |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6891 | return -EIO; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6892 | } |
| 6893 | |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6894 | /* |
| 6895 | * Check if all chunks in the fs are OK for read-write degraded mount |
| 6896 | * |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6897 | * If the @failing_dev is specified, it's accounted as missing. |
| 6898 | * |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6899 | * Return true if all chunks meet the minimal RW mount requirements. |
| 6900 | * Return false if any chunk doesn't meet the minimal RW mount requirements. |
| 6901 | */ |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6902 | bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info, |
| 6903 | struct btrfs_device *failing_dev) |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6904 | { |
| 6905 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
| 6906 | struct extent_map *em; |
| 6907 | u64 next_start = 0; |
| 6908 | bool ret = true; |
| 6909 | |
| 6910 | read_lock(&map_tree->map_tree.lock); |
| 6911 | em = lookup_extent_mapping(&map_tree->map_tree, 0, (u64)-1); |
| 6912 | read_unlock(&map_tree->map_tree.lock); |
| 6913 | /* No chunk at all? Return false anyway */ |
| 6914 | if (!em) { |
| 6915 | ret = false; |
| 6916 | goto out; |
| 6917 | } |
| 6918 | while (em) { |
| 6919 | struct map_lookup *map; |
| 6920 | int missing = 0; |
| 6921 | int max_tolerated; |
| 6922 | int i; |
| 6923 | |
| 6924 | map = em->map_lookup; |
| 6925 | max_tolerated = |
| 6926 | btrfs_get_num_tolerated_disk_barrier_failures( |
| 6927 | map->type); |
| 6928 | for (i = 0; i < map->num_stripes; i++) { |
| 6929 | struct btrfs_device *dev = map->stripes[i].dev; |
| 6930 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6931 | if (!dev || !dev->bdev || |
| 6932 | test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) || |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6933 | dev->last_flush_error) |
| 6934 | missing++; |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6935 | else if (failing_dev && failing_dev == dev) |
| 6936 | missing++; |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6937 | } |
| 6938 | if (missing > max_tolerated) { |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6939 | if (!failing_dev) |
| 6940 | btrfs_warn(fs_info, |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6941 | "chunk %llu missing %d devices, max tolerance is %d for writeable mount", |
| 6942 | em->start, missing, max_tolerated); |
| 6943 | free_extent_map(em); |
| 6944 | ret = false; |
| 6945 | goto out; |
| 6946 | } |
| 6947 | next_start = extent_map_end(em); |
| 6948 | free_extent_map(em); |
| 6949 | |
| 6950 | read_lock(&map_tree->map_tree.lock); |
| 6951 | em = lookup_extent_mapping(&map_tree->map_tree, next_start, |
| 6952 | (u64)(-1) - next_start); |
| 6953 | read_unlock(&map_tree->map_tree.lock); |
| 6954 | } |
| 6955 | out: |
| 6956 | return ret; |
| 6957 | } |
| 6958 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 6959 | int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6960 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 6961 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6962 | struct btrfs_path *path; |
| 6963 | struct extent_buffer *leaf; |
| 6964 | struct btrfs_key key; |
| 6965 | struct btrfs_key found_key; |
| 6966 | int ret; |
| 6967 | int slot; |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 6968 | u64 total_dev = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6969 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6970 | path = btrfs_alloc_path(); |
| 6971 | if (!path) |
| 6972 | return -ENOMEM; |
| 6973 | |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6974 | mutex_lock(&uuid_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 6975 | mutex_lock(&fs_info->chunk_mutex); |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6976 | |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6977 | /* |
| 6978 | * Read all device items, and then all the chunk items. All |
| 6979 | * device items are found before any chunk item (their object id |
| 6980 | * is smaller than the lowest possible object id for a chunk |
| 6981 | * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID). |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6982 | */ |
| 6983 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 6984 | key.offset = 0; |
| 6985 | key.type = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6986 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Zhao Lei | ab59381 | 2010-03-25 12:34:49 +0000 | [diff] [blame] | 6987 | if (ret < 0) |
| 6988 | goto error; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6989 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6990 | leaf = path->nodes[0]; |
| 6991 | slot = path->slots[0]; |
| 6992 | if (slot >= btrfs_header_nritems(leaf)) { |
| 6993 | ret = btrfs_next_leaf(root, path); |
| 6994 | if (ret == 0) |
| 6995 | continue; |
| 6996 | if (ret < 0) |
| 6997 | goto error; |
| 6998 | break; |
| 6999 | } |
| 7000 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 7001 | if (found_key.type == BTRFS_DEV_ITEM_KEY) { |
| 7002 | struct btrfs_dev_item *dev_item; |
| 7003 | dev_item = btrfs_item_ptr(leaf, slot, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7004 | struct btrfs_dev_item); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7005 | ret = read_one_dev(fs_info, leaf, dev_item); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 7006 | if (ret) |
| 7007 | goto error; |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7008 | total_dev++; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7009 | } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 7010 | struct btrfs_chunk *chunk; |
| 7011 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7012 | ret = read_one_chunk(fs_info, &found_key, leaf, chunk); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7013 | if (ret) |
| 7014 | goto error; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7015 | } |
| 7016 | path->slots[0]++; |
| 7017 | } |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7018 | |
| 7019 | /* |
| 7020 | * After loading chunk tree, we've got all device information, |
| 7021 | * do another round of validation checks. |
| 7022 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7023 | if (total_dev != fs_info->fs_devices->total_devices) { |
| 7024 | btrfs_err(fs_info, |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7025 | "super_num_devices %llu mismatch with num_devices %llu found here", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7026 | btrfs_super_num_devices(fs_info->super_copy), |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7027 | total_dev); |
| 7028 | ret = -EINVAL; |
| 7029 | goto error; |
| 7030 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7031 | if (btrfs_super_total_bytes(fs_info->super_copy) < |
| 7032 | fs_info->fs_devices->total_rw_bytes) { |
| 7033 | btrfs_err(fs_info, |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7034 | "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7035 | btrfs_super_total_bytes(fs_info->super_copy), |
| 7036 | fs_info->fs_devices->total_rw_bytes); |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7037 | ret = -EINVAL; |
| 7038 | goto error; |
| 7039 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7040 | ret = 0; |
| 7041 | error: |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7042 | mutex_unlock(&fs_info->chunk_mutex); |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 7043 | mutex_unlock(&uuid_mutex); |
| 7044 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7045 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7046 | return ret; |
| 7047 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7048 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7049 | void btrfs_init_devices_late(struct btrfs_fs_info *fs_info) |
| 7050 | { |
| 7051 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7052 | struct btrfs_device *device; |
| 7053 | |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 7054 | while (fs_devices) { |
| 7055 | mutex_lock(&fs_devices->device_list_mutex); |
| 7056 | list_for_each_entry(device, &fs_devices->devices, dev_list) |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7057 | device->fs_info = fs_info; |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 7058 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7059 | |
| 7060 | fs_devices = fs_devices->seed; |
| 7061 | } |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7062 | } |
| 7063 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7064 | static void __btrfs_reset_dev_stats(struct btrfs_device *dev) |
| 7065 | { |
| 7066 | int i; |
| 7067 | |
| 7068 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7069 | btrfs_dev_stat_reset(dev, i); |
| 7070 | } |
| 7071 | |
| 7072 | int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info) |
| 7073 | { |
| 7074 | struct btrfs_key key; |
| 7075 | struct btrfs_key found_key; |
| 7076 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 7077 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7078 | struct extent_buffer *eb; |
| 7079 | int slot; |
| 7080 | int ret = 0; |
| 7081 | struct btrfs_device *device; |
| 7082 | struct btrfs_path *path = NULL; |
| 7083 | int i; |
| 7084 | |
| 7085 | path = btrfs_alloc_path(); |
| 7086 | if (!path) { |
| 7087 | ret = -ENOMEM; |
| 7088 | goto out; |
| 7089 | } |
| 7090 | |
| 7091 | mutex_lock(&fs_devices->device_list_mutex); |
| 7092 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
| 7093 | int item_size; |
| 7094 | struct btrfs_dev_stats_item *ptr; |
| 7095 | |
David Sterba | 242e295 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 7096 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 7097 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7098 | key.offset = device->devid; |
| 7099 | ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0); |
| 7100 | if (ret) { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7101 | __btrfs_reset_dev_stats(device); |
| 7102 | device->dev_stats_valid = 1; |
| 7103 | btrfs_release_path(path); |
| 7104 | continue; |
| 7105 | } |
| 7106 | slot = path->slots[0]; |
| 7107 | eb = path->nodes[0]; |
| 7108 | btrfs_item_key_to_cpu(eb, &found_key, slot); |
| 7109 | item_size = btrfs_item_size_nr(eb, slot); |
| 7110 | |
| 7111 | ptr = btrfs_item_ptr(eb, slot, |
| 7112 | struct btrfs_dev_stats_item); |
| 7113 | |
| 7114 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 7115 | if (item_size >= (1 + i) * sizeof(__le64)) |
| 7116 | btrfs_dev_stat_set(device, i, |
| 7117 | btrfs_dev_stats_value(eb, ptr, i)); |
| 7118 | else |
| 7119 | btrfs_dev_stat_reset(device, i); |
| 7120 | } |
| 7121 | |
| 7122 | device->dev_stats_valid = 1; |
| 7123 | btrfs_dev_stat_print_on_load(device); |
| 7124 | btrfs_release_path(path); |
| 7125 | } |
| 7126 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7127 | |
| 7128 | out: |
| 7129 | btrfs_free_path(path); |
| 7130 | return ret < 0 ? ret : 0; |
| 7131 | } |
| 7132 | |
| 7133 | static int update_dev_stat_item(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7134 | struct btrfs_fs_info *fs_info, |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7135 | struct btrfs_device *device) |
| 7136 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7137 | struct btrfs_root *dev_root = fs_info->dev_root; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7138 | struct btrfs_path *path; |
| 7139 | struct btrfs_key key; |
| 7140 | struct extent_buffer *eb; |
| 7141 | struct btrfs_dev_stats_item *ptr; |
| 7142 | int ret; |
| 7143 | int i; |
| 7144 | |
David Sterba | 242e295 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 7145 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 7146 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7147 | key.offset = device->devid; |
| 7148 | |
| 7149 | path = btrfs_alloc_path(); |
David Sterba | fa25299 | 2017-02-15 09:35:01 +0100 | [diff] [blame] | 7150 | if (!path) |
| 7151 | return -ENOMEM; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7152 | ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1); |
| 7153 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7154 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7155 | "error %d while searching for dev_stats item for device %s", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7156 | ret, rcu_str_deref(device->name)); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7157 | goto out; |
| 7158 | } |
| 7159 | |
| 7160 | if (ret == 0 && |
| 7161 | btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) { |
| 7162 | /* need to delete old one and insert a new one */ |
| 7163 | ret = btrfs_del_item(trans, dev_root, path); |
| 7164 | if (ret != 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7165 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7166 | "delete too small dev_stats item for device %s failed %d", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7167 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7168 | goto out; |
| 7169 | } |
| 7170 | ret = 1; |
| 7171 | } |
| 7172 | |
| 7173 | if (ret == 1) { |
| 7174 | /* need to insert a new item */ |
| 7175 | btrfs_release_path(path); |
| 7176 | ret = btrfs_insert_empty_item(trans, dev_root, path, |
| 7177 | &key, sizeof(*ptr)); |
| 7178 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7179 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7180 | "insert dev_stats item for device %s failed %d", |
| 7181 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7182 | goto out; |
| 7183 | } |
| 7184 | } |
| 7185 | |
| 7186 | eb = path->nodes[0]; |
| 7187 | ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item); |
| 7188 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7189 | btrfs_set_dev_stats_value(eb, ptr, i, |
| 7190 | btrfs_dev_stat_read(device, i)); |
| 7191 | btrfs_mark_buffer_dirty(eb); |
| 7192 | |
| 7193 | out: |
| 7194 | btrfs_free_path(path); |
| 7195 | return ret; |
| 7196 | } |
| 7197 | |
| 7198 | /* |
| 7199 | * called from commit_transaction. Writes all changed device stats to disk. |
| 7200 | */ |
| 7201 | int btrfs_run_dev_stats(struct btrfs_trans_handle *trans, |
| 7202 | struct btrfs_fs_info *fs_info) |
| 7203 | { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7204 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7205 | struct btrfs_device *device; |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7206 | int stats_cnt; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7207 | int ret = 0; |
| 7208 | |
| 7209 | mutex_lock(&fs_devices->device_list_mutex); |
| 7210 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
Nikolay Borisov | 9deae96 | 2017-10-24 13:47:37 +0300 | [diff] [blame] | 7211 | stats_cnt = atomic_read(&device->dev_stats_ccnt); |
| 7212 | if (!device->dev_stats_valid || stats_cnt == 0) |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7213 | continue; |
| 7214 | |
Nikolay Borisov | 9deae96 | 2017-10-24 13:47:37 +0300 | [diff] [blame] | 7215 | |
| 7216 | /* |
| 7217 | * There is a LOAD-LOAD control dependency between the value of |
| 7218 | * dev_stats_ccnt and updating the on-disk values which requires |
| 7219 | * reading the in-memory counters. Such control dependencies |
| 7220 | * require explicit read memory barriers. |
| 7221 | * |
| 7222 | * This memory barriers pairs with smp_mb__before_atomic in |
| 7223 | * btrfs_dev_stat_inc/btrfs_dev_stat_set and with the full |
| 7224 | * barrier implied by atomic_xchg in |
| 7225 | * btrfs_dev_stats_read_and_reset |
| 7226 | */ |
| 7227 | smp_rmb(); |
| 7228 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7229 | ret = update_dev_stat_item(trans, fs_info, device); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7230 | if (!ret) |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7231 | atomic_sub(stats_cnt, &device->dev_stats_ccnt); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7232 | } |
| 7233 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7234 | |
| 7235 | return ret; |
| 7236 | } |
| 7237 | |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7238 | void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index) |
| 7239 | { |
| 7240 | btrfs_dev_stat_inc(dev, index); |
| 7241 | btrfs_dev_stat_print_on_error(dev); |
| 7242 | } |
| 7243 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 7244 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev) |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7245 | { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7246 | if (!dev->dev_stats_valid) |
| 7247 | return; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7248 | btrfs_err_rl_in_rcu(dev->fs_info, |
David Sterba | b14af3b | 2015-10-08 10:43:10 +0200 | [diff] [blame] | 7249 | "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] | 7250 | rcu_str_deref(dev->name), |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7251 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 7252 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 7253 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7254 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 7255 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7256 | } |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7257 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7258 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev) |
| 7259 | { |
Stefan Behrens | a98cdb8 | 2012-07-17 09:02:11 -0600 | [diff] [blame] | 7260 | int i; |
| 7261 | |
| 7262 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7263 | if (btrfs_dev_stat_read(dev, i) != 0) |
| 7264 | break; |
| 7265 | if (i == BTRFS_DEV_STAT_VALUES_MAX) |
| 7266 | return; /* all values == 0, suppress message */ |
| 7267 | |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7268 | btrfs_info_in_rcu(dev->fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7269 | "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] | 7270 | rcu_str_deref(dev->name), |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7271 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 7272 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 7273 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
| 7274 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 7275 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
| 7276 | } |
| 7277 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7278 | int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info, |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 7279 | struct btrfs_ioctl_get_dev_stats *stats) |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7280 | { |
| 7281 | struct btrfs_device *dev; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7282 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7283 | int i; |
| 7284 | |
| 7285 | mutex_lock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7286 | dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7287 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7288 | |
| 7289 | if (!dev) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7290 | btrfs_warn(fs_info, "get dev_stats failed, device not found"); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7291 | return -ENODEV; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7292 | } else if (!dev->dev_stats_valid) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7293 | btrfs_warn(fs_info, "get dev_stats failed, not yet valid"); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7294 | return -ENODEV; |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 7295 | } else if (stats->flags & BTRFS_DEV_STATS_RESET) { |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7296 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 7297 | if (stats->nr_items > i) |
| 7298 | stats->values[i] = |
| 7299 | btrfs_dev_stat_read_and_reset(dev, i); |
| 7300 | else |
| 7301 | btrfs_dev_stat_reset(dev, i); |
| 7302 | } |
| 7303 | } else { |
| 7304 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7305 | if (stats->nr_items > i) |
| 7306 | stats->values[i] = btrfs_dev_stat_read(dev, i); |
| 7307 | } |
| 7308 | if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX) |
| 7309 | stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX; |
| 7310 | return 0; |
| 7311 | } |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7312 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 7313 | void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path) |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7314 | { |
| 7315 | struct buffer_head *bh; |
| 7316 | struct btrfs_super_block *disk_super; |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7317 | int copy_num; |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7318 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7319 | if (!bdev) |
| 7320 | return; |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7321 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7322 | for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX; |
| 7323 | copy_num++) { |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7324 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7325 | if (btrfs_read_dev_one_super(bdev, copy_num, &bh)) |
| 7326 | continue; |
| 7327 | |
| 7328 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 7329 | |
| 7330 | memset(&disk_super->magic, 0, sizeof(disk_super->magic)); |
| 7331 | set_buffer_dirty(bh); |
| 7332 | sync_dirty_buffer(bh); |
| 7333 | brelse(bh); |
| 7334 | } |
| 7335 | |
| 7336 | /* Notify udev that device has changed */ |
| 7337 | btrfs_kobject_uevent(bdev, KOBJ_CHANGE); |
| 7338 | |
| 7339 | /* Update ctime/mtime for device path for libblkid */ |
| 7340 | update_dev_time(device_path); |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7341 | } |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7342 | |
| 7343 | /* |
| 7344 | * Update the size of all devices, which is used for writing out the |
| 7345 | * super blocks. |
| 7346 | */ |
| 7347 | void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info) |
| 7348 | { |
| 7349 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7350 | struct btrfs_device *curr, *next; |
| 7351 | |
| 7352 | if (list_empty(&fs_devices->resized_devices)) |
| 7353 | return; |
| 7354 | |
| 7355 | mutex_lock(&fs_devices->device_list_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7356 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7357 | list_for_each_entry_safe(curr, next, &fs_devices->resized_devices, |
| 7358 | resized_list) { |
| 7359 | list_del_init(&curr->resized_list); |
| 7360 | curr->commit_total_bytes = curr->disk_total_bytes; |
| 7361 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7362 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7363 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7364 | } |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7365 | |
| 7366 | /* Must be invoked during the transaction commit */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7367 | void btrfs_update_commit_device_bytes_used(struct btrfs_fs_info *fs_info, |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7368 | struct btrfs_transaction *transaction) |
| 7369 | { |
| 7370 | struct extent_map *em; |
| 7371 | struct map_lookup *map; |
| 7372 | struct btrfs_device *dev; |
| 7373 | int i; |
| 7374 | |
| 7375 | if (list_empty(&transaction->pending_chunks)) |
| 7376 | return; |
| 7377 | |
| 7378 | /* In order to kick the device replace finish process */ |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7379 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7380 | list_for_each_entry(em, &transaction->pending_chunks, list) { |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 7381 | map = em->map_lookup; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7382 | |
| 7383 | for (i = 0; i < map->num_stripes; i++) { |
| 7384 | dev = map->stripes[i].dev; |
| 7385 | dev->commit_bytes_used = dev->bytes_used; |
| 7386 | } |
| 7387 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7388 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7389 | } |
Anand Jain | 5a13f43 | 2015-03-10 06:38:31 +0800 | [diff] [blame] | 7390 | |
| 7391 | void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info) |
| 7392 | { |
| 7393 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7394 | while (fs_devices) { |
| 7395 | fs_devices->fs_info = fs_info; |
| 7396 | fs_devices = fs_devices->seed; |
| 7397 | } |
| 7398 | } |
| 7399 | |
| 7400 | void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info) |
| 7401 | { |
| 7402 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7403 | while (fs_devices) { |
| 7404 | fs_devices->fs_info = NULL; |
| 7405 | fs_devices = fs_devices->seed; |
| 7406 | } |
| 7407 | } |