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); |
Nikolay Borisov | fd649f1 | 2018-01-30 16:07:37 +0200 | [diff] [blame] | 648 | break; |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 649 | } else { |
| 650 | fs_devs->num_devices--; |
| 651 | list_del(&dev->dev_list); |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 652 | free_device(dev); |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 653 | } |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 654 | } |
| 655 | } |
| 656 | } |
| 657 | |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 658 | static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices, |
| 659 | struct btrfs_device *device, fmode_t flags, |
| 660 | void *holder) |
| 661 | { |
| 662 | struct request_queue *q; |
| 663 | struct block_device *bdev; |
| 664 | struct buffer_head *bh; |
| 665 | struct btrfs_super_block *disk_super; |
| 666 | u64 devid; |
| 667 | int ret; |
| 668 | |
| 669 | if (device->bdev) |
| 670 | return -EINVAL; |
| 671 | if (!device->name) |
| 672 | return -EINVAL; |
| 673 | |
| 674 | ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1, |
| 675 | &bdev, &bh); |
| 676 | if (ret) |
| 677 | return ret; |
| 678 | |
| 679 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 680 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 681 | if (devid != device->devid) |
| 682 | goto error_brelse; |
| 683 | |
| 684 | if (memcmp(device->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE)) |
| 685 | goto error_brelse; |
| 686 | |
| 687 | device->generation = btrfs_super_generation(disk_super); |
| 688 | |
| 689 | if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 690 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 691 | fs_devices->seeding = 1; |
| 692 | } else { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 693 | if (bdev_read_only(bdev)) |
| 694 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
| 695 | else |
| 696 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | q = bdev_get_queue(bdev); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 700 | if (!blk_queue_nonrot(q)) |
| 701 | fs_devices->rotating = 1; |
| 702 | |
| 703 | device->bdev = bdev; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 704 | clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 705 | device->mode = flags; |
| 706 | |
| 707 | fs_devices->open_devices++; |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 708 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
| 709 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 710 | fs_devices->rw_devices++; |
| 711 | list_add(&device->dev_alloc_list, &fs_devices->alloc_list); |
| 712 | } |
| 713 | brelse(bh); |
| 714 | |
| 715 | return 0; |
| 716 | |
| 717 | error_brelse: |
| 718 | brelse(bh); |
| 719 | blkdev_put(bdev, flags); |
| 720 | |
| 721 | return -EINVAL; |
| 722 | } |
| 723 | |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 724 | /* |
| 725 | * Add new device to list of registered devices |
| 726 | * |
| 727 | * Returns: |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 728 | * device pointer which was just added or updated when successful |
| 729 | * error pointer when failed |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 730 | */ |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 731 | static noinline struct btrfs_device *device_list_add(const char *path, |
Anand Jain | 3acbcbf | 2018-01-18 22:02:36 +0800 | [diff] [blame] | 732 | struct btrfs_super_block *disk_super) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 733 | { |
| 734 | struct btrfs_device *device; |
| 735 | struct btrfs_fs_devices *fs_devices; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 736 | struct rcu_string *name; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 737 | u64 found_transid = btrfs_super_generation(disk_super); |
Anand Jain | 3acbcbf | 2018-01-18 22:02:36 +0800 | [diff] [blame] | 738 | u64 devid = btrfs_stack_device_id(&disk_super->dev_item); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 739 | |
| 740 | fs_devices = find_fsid(disk_super->fsid); |
| 741 | if (!fs_devices) { |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 742 | fs_devices = alloc_fs_devices(disk_super->fsid); |
| 743 | if (IS_ERR(fs_devices)) |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 744 | return ERR_CAST(fs_devices); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 745 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 746 | list_add(&fs_devices->list, &fs_uuids); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 747 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 748 | device = NULL; |
| 749 | } else { |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 750 | device = find_device(fs_devices, devid, |
| 751 | disk_super->dev_item.uuid); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 752 | } |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 753 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 754 | if (!device) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 755 | if (fs_devices->opened) |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 756 | return ERR_PTR(-EBUSY); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 757 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 758 | device = btrfs_alloc_device(NULL, &devid, |
| 759 | disk_super->dev_item.uuid); |
| 760 | if (IS_ERR(device)) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 761 | /* we can safely leave the fs_devices entry around */ |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 762 | return device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 763 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 764 | |
| 765 | name = rcu_string_strdup(path, GFP_NOFS); |
| 766 | if (!name) { |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 767 | free_device(device); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 768 | return ERR_PTR(-ENOMEM); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 769 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 770 | rcu_assign_pointer(device->name, name); |
Arne Jansen | 90519d6 | 2011-05-23 14:30:00 +0200 | [diff] [blame] | 771 | |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 772 | mutex_lock(&fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 773 | list_add_rcu(&device->dev_list, &fs_devices->devices); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 774 | fs_devices->num_devices++; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 775 | mutex_unlock(&fs_devices->device_list_mutex); |
| 776 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 777 | device->fs_devices = fs_devices; |
Anand Jain | d8367db | 2018-01-18 22:00:37 +0800 | [diff] [blame] | 778 | btrfs_free_stale_devices(path, device); |
Anand Jain | 327f18c | 2018-01-18 22:02:33 +0800 | [diff] [blame] | 779 | |
| 780 | if (disk_super->label[0]) |
| 781 | pr_info("BTRFS: device label %s devid %llu transid %llu %s\n", |
| 782 | disk_super->label, devid, found_transid, path); |
| 783 | else |
| 784 | pr_info("BTRFS: device fsid %pU devid %llu transid %llu %s\n", |
| 785 | disk_super->fsid, devid, found_transid, path); |
| 786 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 787 | } else if (!device->name || strcmp(device->name->str, path)) { |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 788 | /* |
| 789 | * When FS is already mounted. |
| 790 | * 1. If you are here and if the device->name is NULL that |
| 791 | * means this device was missing at time of FS mount. |
| 792 | * 2. If you are here and if the device->name is different |
| 793 | * from 'path' that means either |
| 794 | * a. The same device disappeared and reappeared with |
| 795 | * different name. or |
| 796 | * b. The missing-disk-which-was-replaced, has |
| 797 | * reappeared now. |
| 798 | * |
| 799 | * We must allow 1 and 2a above. But 2b would be a spurious |
| 800 | * and unintentional. |
| 801 | * |
| 802 | * Further in case of 1 and 2a above, the disk at 'path' |
| 803 | * would have missed some transaction when it was away and |
| 804 | * in case of 2a the stale bdev has to be updated as well. |
| 805 | * 2b must not be allowed at all time. |
| 806 | */ |
| 807 | |
| 808 | /* |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 809 | * For now, we do allow update to btrfs_fs_device through the |
| 810 | * btrfs dev scan cli after FS has been mounted. We're still |
| 811 | * tracking a problem where systems fail mount by subvolume id |
| 812 | * when we reject replacement on a mounted FS. |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 813 | */ |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 814 | if (!fs_devices->opened && found_transid < device->generation) { |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 815 | /* |
| 816 | * That is if the FS is _not_ mounted and if you |
| 817 | * are here, that means there is more than one |
| 818 | * disk with same uuid and devid.We keep the one |
| 819 | * with larger generation number or the last-in if |
| 820 | * generation are equal. |
| 821 | */ |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 822 | return ERR_PTR(-EEXIST); |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 823 | } |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 824 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 825 | name = rcu_string_strdup(path, GFP_NOFS); |
TARUISI Hiroaki | 3a0524d | 2010-02-09 06:36:45 +0000 | [diff] [blame] | 826 | if (!name) |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 827 | return ERR_PTR(-ENOMEM); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 828 | rcu_string_free(device->name); |
| 829 | rcu_assign_pointer(device->name, name); |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 830 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 831 | fs_devices->missing_devices--; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 832 | clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 833 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 834 | } |
| 835 | |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 836 | /* |
| 837 | * Unmount does not free the btrfs_device struct but would zero |
| 838 | * generation along with most of the other members. So just update |
| 839 | * it back. We need it to pick the disk with largest generation |
| 840 | * (as above). |
| 841 | */ |
| 842 | if (!fs_devices->opened) |
| 843 | device->generation = found_transid; |
| 844 | |
Anand Jain | f2788d2 | 2018-01-18 22:02:34 +0800 | [diff] [blame] | 845 | fs_devices->total_devices = btrfs_super_num_devices(disk_super); |
| 846 | |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 847 | return device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 848 | } |
| 849 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 850 | static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig) |
| 851 | { |
| 852 | struct btrfs_fs_devices *fs_devices; |
| 853 | struct btrfs_device *device; |
| 854 | struct btrfs_device *orig_dev; |
| 855 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 856 | fs_devices = alloc_fs_devices(orig->fsid); |
| 857 | if (IS_ERR(fs_devices)) |
| 858 | return fs_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 859 | |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 860 | mutex_lock(&orig->device_list_mutex); |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 861 | fs_devices->total_devices = orig->total_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 862 | |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 863 | /* 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] | 864 | list_for_each_entry(orig_dev, &orig->devices, dev_list) { |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 865 | struct rcu_string *name; |
| 866 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 867 | device = btrfs_alloc_device(NULL, &orig_dev->devid, |
| 868 | orig_dev->uuid); |
| 869 | if (IS_ERR(device)) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 870 | goto error; |
| 871 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 872 | /* |
| 873 | * This is ok to do without rcu read locked because we hold the |
| 874 | * uuid mutex so nothing we touch in here is going to disappear. |
| 875 | */ |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 876 | if (orig_dev->name) { |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 877 | name = rcu_string_strdup(orig_dev->name->str, |
| 878 | GFP_KERNEL); |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 879 | if (!name) { |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 880 | free_device(device); |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 881 | goto error; |
| 882 | } |
| 883 | rcu_assign_pointer(device->name, name); |
Julia Lawall | fd2696f | 2009-09-29 13:51:04 -0400 | [diff] [blame] | 884 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 885 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 886 | list_add(&device->dev_list, &fs_devices->devices); |
| 887 | device->fs_devices = fs_devices; |
| 888 | fs_devices->num_devices++; |
| 889 | } |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 890 | mutex_unlock(&orig->device_list_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 891 | return fs_devices; |
| 892 | error: |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 893 | mutex_unlock(&orig->device_list_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 894 | free_fs_devices(fs_devices); |
| 895 | return ERR_PTR(-ENOMEM); |
| 896 | } |
| 897 | |
Eric Sandeen | 9eaed21 | 2014-08-01 18:12:35 -0500 | [diff] [blame] | 898 | 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] | 899 | { |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 900 | struct btrfs_device *device, *next; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 901 | struct btrfs_device *latest_dev = NULL; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 902 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 903 | mutex_lock(&uuid_mutex); |
| 904 | again: |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 905 | /* This is the initialized path, it is safe to release the devices. */ |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 906 | list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) { |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 907 | if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 908 | &device->dev_state)) { |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 909 | if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
| 910 | &device->dev_state) && |
| 911 | (!latest_dev || |
| 912 | device->generation > latest_dev->generation)) { |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 913 | latest_dev = device; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 914 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 915 | continue; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 916 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 917 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 918 | if (device->devid == BTRFS_DEV_REPLACE_DEVID) { |
| 919 | /* |
| 920 | * In the first step, keep the device which has |
| 921 | * the correct fsid and the devid that is used |
| 922 | * for the dev_replace procedure. |
| 923 | * In the second step, the dev_replace state is |
| 924 | * read from the device tree and it is known |
| 925 | * whether the procedure is really active or |
| 926 | * not, which means whether this device is |
| 927 | * used or whether it should be removed. |
| 928 | */ |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 929 | if (step == 0 || test_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
| 930 | &device->dev_state)) { |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 931 | continue; |
| 932 | } |
| 933 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 934 | if (device->bdev) { |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 935 | blkdev_put(device->bdev, device->mode); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 936 | device->bdev = NULL; |
| 937 | fs_devices->open_devices--; |
| 938 | } |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 939 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 940 | list_del_init(&device->dev_alloc_list); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 941 | clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 942 | if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT, |
| 943 | &device->dev_state)) |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 944 | fs_devices->rw_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 945 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 946 | list_del_init(&device->dev_list); |
| 947 | fs_devices->num_devices--; |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 948 | free_device(device); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 949 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 950 | |
| 951 | if (fs_devices->seed) { |
| 952 | fs_devices = fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 953 | goto again; |
| 954 | } |
| 955 | |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 956 | fs_devices->latest_bdev = latest_dev->bdev; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 957 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 958 | mutex_unlock(&uuid_mutex); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 959 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 960 | |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 961 | static void free_device_rcu(struct rcu_head *head) |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 962 | { |
| 963 | struct btrfs_device *device; |
| 964 | |
| 965 | device = container_of(head, struct btrfs_device, rcu); |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 966 | free_device(device); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 967 | } |
| 968 | |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 969 | static void btrfs_close_bdev(struct btrfs_device *device) |
| 970 | { |
David Sterba | 08ffcae | 2017-06-19 16:55:35 +0200 | [diff] [blame] | 971 | if (!device->bdev) |
| 972 | return; |
| 973 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 974 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 975 | sync_blockdev(device->bdev); |
| 976 | invalidate_bdev(device->bdev); |
| 977 | } |
| 978 | |
David Sterba | 08ffcae | 2017-06-19 16:55:35 +0200 | [diff] [blame] | 979 | blkdev_put(device->bdev, device->mode); |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 980 | } |
| 981 | |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 982 | static void btrfs_prepare_close_one_device(struct btrfs_device *device) |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 983 | { |
| 984 | struct btrfs_fs_devices *fs_devices = device->fs_devices; |
| 985 | struct btrfs_device *new_device; |
| 986 | struct rcu_string *name; |
| 987 | |
| 988 | if (device->bdev) |
| 989 | fs_devices->open_devices--; |
| 990 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 991 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 992 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
| 993 | list_del_init(&device->dev_alloc_list); |
| 994 | fs_devices->rw_devices--; |
| 995 | } |
| 996 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 997 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 998 | fs_devices->missing_devices--; |
| 999 | |
| 1000 | new_device = btrfs_alloc_device(NULL, &device->devid, |
| 1001 | device->uuid); |
| 1002 | BUG_ON(IS_ERR(new_device)); /* -ENOMEM */ |
| 1003 | |
| 1004 | /* Safe because we are under uuid_mutex */ |
| 1005 | if (device->name) { |
| 1006 | name = rcu_string_strdup(device->name->str, GFP_NOFS); |
| 1007 | BUG_ON(!name); /* -ENOMEM */ |
| 1008 | rcu_assign_pointer(new_device->name, name); |
| 1009 | } |
| 1010 | |
| 1011 | list_replace_rcu(&device->dev_list, &new_device->dev_list); |
| 1012 | new_device->fs_devices = device->fs_devices; |
Anand Jain | f448341a | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 1013 | } |
| 1014 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1015 | static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1016 | { |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 1017 | struct btrfs_device *device, *tmp; |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1018 | struct list_head pending_put; |
| 1019 | |
| 1020 | INIT_LIST_HEAD(&pending_put); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1021 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1022 | if (--fs_devices->opened > 0) |
| 1023 | return 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1024 | |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 1025 | mutex_lock(&fs_devices->device_list_mutex); |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 1026 | list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) { |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1027 | btrfs_prepare_close_one_device(device); |
| 1028 | list_add(&device->dev_list, &pending_put); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1029 | } |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 1030 | mutex_unlock(&fs_devices->device_list_mutex); |
| 1031 | |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1032 | /* |
| 1033 | * btrfs_show_devname() is using the device_list_mutex, |
| 1034 | * sometimes call to blkdev_put() leads vfs calling |
| 1035 | * into this func. So do put outside of device_list_mutex, |
| 1036 | * as of now. |
| 1037 | */ |
| 1038 | while (!list_empty(&pending_put)) { |
| 1039 | device = list_first_entry(&pending_put, |
| 1040 | struct btrfs_device, dev_list); |
| 1041 | list_del(&device->dev_list); |
| 1042 | btrfs_close_bdev(device); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 1043 | call_rcu(&device->rcu, free_device_rcu); |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 1044 | } |
| 1045 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1046 | WARN_ON(fs_devices->open_devices); |
| 1047 | WARN_ON(fs_devices->rw_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1048 | fs_devices->opened = 0; |
| 1049 | fs_devices->seeding = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1050 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1051 | return 0; |
| 1052 | } |
| 1053 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1054 | int btrfs_close_devices(struct btrfs_fs_devices *fs_devices) |
| 1055 | { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1056 | struct btrfs_fs_devices *seed_devices = NULL; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1057 | int ret; |
| 1058 | |
| 1059 | mutex_lock(&uuid_mutex); |
| 1060 | ret = __btrfs_close_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1061 | if (!fs_devices->opened) { |
| 1062 | seed_devices = fs_devices->seed; |
| 1063 | fs_devices->seed = NULL; |
| 1064 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1065 | mutex_unlock(&uuid_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1066 | |
| 1067 | while (seed_devices) { |
| 1068 | fs_devices = seed_devices; |
| 1069 | seed_devices = fs_devices->seed; |
| 1070 | __btrfs_close_devices(fs_devices); |
| 1071 | free_fs_devices(fs_devices); |
| 1072 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1073 | return ret; |
| 1074 | } |
| 1075 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1076 | static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices, |
| 1077 | fmode_t flags, void *holder) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1078 | { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1079 | struct list_head *head = &fs_devices->devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1080 | struct btrfs_device *device; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 1081 | struct btrfs_device *latest_dev = NULL; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1082 | int ret = 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1083 | |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1084 | flags |= FMODE_EXCL; |
| 1085 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 1086 | list_for_each_entry(device, head, dev_list) { |
Eric Sandeen | f63e0cc | 2013-04-04 20:45:08 +0000 | [diff] [blame] | 1087 | /* Just open everything we can; ignore failures here */ |
Anand Jain | 0fb08bc | 2017-11-09 23:45:24 +0800 | [diff] [blame] | 1088 | if (btrfs_open_one_device(fs_devices, device, flags, holder)) |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1089 | continue; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1090 | |
Anand Jain | 9f050db | 2017-11-09 23:45:25 +0800 | [diff] [blame] | 1091 | if (!latest_dev || |
| 1092 | device->generation > latest_dev->generation) |
| 1093 | latest_dev = device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1094 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1095 | if (fs_devices->open_devices == 0) { |
Ilya Dryomov | 20bcd64 | 2011-10-20 00:06:20 +0300 | [diff] [blame] | 1096 | ret = -EINVAL; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1097 | goto out; |
| 1098 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1099 | fs_devices->opened = 1; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 1100 | fs_devices->latest_bdev = latest_dev->bdev; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1101 | fs_devices->total_rw_bytes = 0; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1102 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1103 | return ret; |
| 1104 | } |
| 1105 | |
| 1106 | int btrfs_open_devices(struct btrfs_fs_devices *fs_devices, |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 1107 | fmode_t flags, void *holder) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1108 | { |
| 1109 | int ret; |
| 1110 | |
| 1111 | mutex_lock(&uuid_mutex); |
| 1112 | if (fs_devices->opened) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1113 | fs_devices->opened++; |
| 1114 | ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1115 | } else { |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1116 | ret = __btrfs_open_devices(fs_devices, flags, holder); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1117 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1118 | mutex_unlock(&uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1119 | return ret; |
| 1120 | } |
| 1121 | |
Omar Sandoval | c9162bd | 2017-08-22 23:46:04 -0700 | [diff] [blame] | 1122 | static void btrfs_release_disk_super(struct page *page) |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1123 | { |
| 1124 | kunmap(page); |
| 1125 | put_page(page); |
| 1126 | } |
| 1127 | |
Omar Sandoval | c9162bd | 2017-08-22 23:46:04 -0700 | [diff] [blame] | 1128 | static int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr, |
| 1129 | struct page **page, |
| 1130 | struct btrfs_super_block **disk_super) |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1131 | { |
| 1132 | void *p; |
| 1133 | pgoff_t index; |
| 1134 | |
| 1135 | /* make sure our super fits in the device */ |
| 1136 | if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode)) |
| 1137 | return 1; |
| 1138 | |
| 1139 | /* make sure our super fits in the page */ |
| 1140 | if (sizeof(**disk_super) > PAGE_SIZE) |
| 1141 | return 1; |
| 1142 | |
| 1143 | /* make sure our super doesn't straddle pages on disk */ |
| 1144 | index = bytenr >> PAGE_SHIFT; |
| 1145 | if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index) |
| 1146 | return 1; |
| 1147 | |
| 1148 | /* pull in the page with our super */ |
| 1149 | *page = read_cache_page_gfp(bdev->bd_inode->i_mapping, |
| 1150 | index, GFP_KERNEL); |
| 1151 | |
| 1152 | if (IS_ERR_OR_NULL(*page)) |
| 1153 | return 1; |
| 1154 | |
| 1155 | p = kmap(*page); |
| 1156 | |
| 1157 | /* align our pointer to the offset of the super block */ |
| 1158 | *disk_super = p + (bytenr & ~PAGE_MASK); |
| 1159 | |
| 1160 | if (btrfs_super_bytenr(*disk_super) != bytenr || |
| 1161 | btrfs_super_magic(*disk_super) != BTRFS_MAGIC) { |
| 1162 | btrfs_release_disk_super(*page); |
| 1163 | return 1; |
| 1164 | } |
| 1165 | |
| 1166 | if ((*disk_super)->label[0] && |
| 1167 | (*disk_super)->label[BTRFS_LABEL_SIZE - 1]) |
| 1168 | (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0'; |
| 1169 | |
| 1170 | return 0; |
| 1171 | } |
| 1172 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1173 | /* |
| 1174 | * Look for a btrfs signature on a device. This may be called out of the mount path |
| 1175 | * and we are not allowed to call set_blocksize during the scan. The superblock |
| 1176 | * is read via pagecache |
| 1177 | */ |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 1178 | 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] | 1179 | struct btrfs_fs_devices **fs_devices_ret) |
| 1180 | { |
| 1181 | struct btrfs_super_block *disk_super; |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 1182 | struct btrfs_device *device; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1183 | struct block_device *bdev; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1184 | struct page *page; |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 1185 | int ret = 0; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1186 | u64 bytenr; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1187 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1188 | /* |
| 1189 | * we would like to check all the supers, but that would make |
| 1190 | * a btrfs mount succeed after a mkfs from a different FS. |
| 1191 | * So, we need to add a special mount option to scan for |
| 1192 | * later supers, using BTRFS_SUPER_MIRROR_MAX instead |
| 1193 | */ |
| 1194 | bytenr = btrfs_sb_offset(0); |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1195 | flags |= FMODE_EXCL; |
Al Viro | 10f6327 | 2011-11-17 15:05:22 -0500 | [diff] [blame] | 1196 | mutex_lock(&uuid_mutex); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1197 | |
| 1198 | bdev = blkdev_get_by_path(path, flags, holder); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1199 | if (IS_ERR(bdev)) { |
| 1200 | ret = PTR_ERR(bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1201 | goto error; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1202 | } |
| 1203 | |
Anand Jain | 05a5c55 | 2017-12-15 15:40:16 +0800 | [diff] [blame] | 1204 | if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super)) { |
| 1205 | ret = -EINVAL; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1206 | goto error_bdev_put; |
Anand Jain | 05a5c55 | 2017-12-15 15:40:16 +0800 | [diff] [blame] | 1207 | } |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1208 | |
Anand Jain | 3acbcbf | 2018-01-18 22:02:36 +0800 | [diff] [blame] | 1209 | device = device_list_add(path, disk_super); |
Anand Jain | e124ece | 2018-01-18 22:02:35 +0800 | [diff] [blame] | 1210 | if (IS_ERR(device)) |
| 1211 | ret = PTR_ERR(device); |
| 1212 | else |
| 1213 | *fs_devices_ret = device->fs_devices; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1214 | |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1215 | btrfs_release_disk_super(page); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1216 | |
| 1217 | error_bdev_put: |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1218 | blkdev_put(bdev, flags); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1219 | error: |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1220 | mutex_unlock(&uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1221 | return ret; |
| 1222 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1223 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1224 | /* helper to account the used device space in the range */ |
| 1225 | int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start, |
| 1226 | u64 end, u64 *length) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1227 | { |
| 1228 | struct btrfs_key key; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 1229 | struct btrfs_root *root = device->fs_info->dev_root; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1230 | struct btrfs_dev_extent *dev_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1231 | struct btrfs_path *path; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1232 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1233 | int ret; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1234 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1235 | struct extent_buffer *l; |
| 1236 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1237 | *length = 0; |
| 1238 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1239 | if (start >= device->total_bytes || |
| 1240 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1241 | return 0; |
| 1242 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1243 | path = btrfs_alloc_path(); |
| 1244 | if (!path) |
| 1245 | return -ENOMEM; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1246 | path->reada = READA_FORWARD; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1247 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1248 | key.objectid = device->devid; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1249 | key.offset = start; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1250 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1251 | |
| 1252 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1253 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1254 | goto out; |
Yan Zheng | 1fcbac5 | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 1255 | if (ret > 0) { |
| 1256 | ret = btrfs_previous_item(root, path, key.objectid, key.type); |
| 1257 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1258 | goto out; |
Yan Zheng | 1fcbac5 | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 1259 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1260 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1261 | while (1) { |
| 1262 | l = path->nodes[0]; |
| 1263 | slot = path->slots[0]; |
| 1264 | if (slot >= btrfs_header_nritems(l)) { |
| 1265 | ret = btrfs_next_leaf(root, path); |
| 1266 | if (ret == 0) |
| 1267 | continue; |
| 1268 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1269 | goto out; |
| 1270 | |
| 1271 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1272 | } |
| 1273 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1274 | |
| 1275 | if (key.objectid < device->devid) |
| 1276 | goto next; |
| 1277 | |
| 1278 | if (key.objectid > device->devid) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1279 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1280 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1281 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1282 | goto next; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1283 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1284 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1285 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1286 | dev_extent); |
| 1287 | if (key.offset <= start && extent_end > end) { |
| 1288 | *length = end - start + 1; |
| 1289 | break; |
| 1290 | } else if (key.offset <= start && extent_end > start) |
| 1291 | *length += extent_end - start; |
| 1292 | else if (key.offset > start && extent_end <= end) |
| 1293 | *length += extent_end - key.offset; |
| 1294 | else if (key.offset > start && key.offset <= end) { |
| 1295 | *length += end - key.offset + 1; |
| 1296 | break; |
| 1297 | } else if (key.offset > end) |
| 1298 | break; |
| 1299 | |
| 1300 | next: |
| 1301 | path->slots[0]++; |
| 1302 | } |
| 1303 | ret = 0; |
| 1304 | out: |
| 1305 | btrfs_free_path(path); |
| 1306 | return ret; |
| 1307 | } |
| 1308 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1309 | static int contains_pending_extent(struct btrfs_transaction *transaction, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1310 | struct btrfs_device *device, |
| 1311 | u64 *start, u64 len) |
| 1312 | { |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 1313 | struct btrfs_fs_info *fs_info = device->fs_info; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1314 | struct extent_map *em; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1315 | struct list_head *search_list = &fs_info->pinned_chunks; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1316 | int ret = 0; |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1317 | u64 physical_start = *start; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1318 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1319 | if (transaction) |
| 1320 | search_list = &transaction->pending_chunks; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 1321 | again: |
| 1322 | list_for_each_entry(em, search_list, list) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1323 | struct map_lookup *map; |
| 1324 | int i; |
| 1325 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 1326 | map = em->map_lookup; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1327 | for (i = 0; i < map->num_stripes; i++) { |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1328 | u64 end; |
| 1329 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1330 | if (map->stripes[i].dev != device) |
| 1331 | continue; |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1332 | if (map->stripes[i].physical >= physical_start + len || |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1333 | map->stripes[i].physical + em->orig_block_len <= |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1334 | physical_start) |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1335 | continue; |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1336 | /* |
| 1337 | * Make sure that while processing the pinned list we do |
| 1338 | * not override our *start with a lower value, because |
| 1339 | * we can have pinned chunks that fall within this |
| 1340 | * device hole and that have lower physical addresses |
| 1341 | * than the pending chunks we processed before. If we |
| 1342 | * do not take this special care we can end up getting |
| 1343 | * 2 pending chunks that start at the same physical |
| 1344 | * device offsets because the end offset of a pinned |
| 1345 | * chunk can be equal to the start offset of some |
| 1346 | * pending chunk. |
| 1347 | */ |
| 1348 | end = map->stripes[i].physical + em->orig_block_len; |
| 1349 | if (end > *start) { |
| 1350 | *start = end; |
| 1351 | ret = 1; |
| 1352 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1353 | } |
| 1354 | } |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1355 | if (search_list != &fs_info->pinned_chunks) { |
| 1356 | search_list = &fs_info->pinned_chunks; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 1357 | goto again; |
| 1358 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1359 | |
| 1360 | return ret; |
| 1361 | } |
| 1362 | |
| 1363 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1364 | /* |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1365 | * find_free_dev_extent_start - find free space in the specified device |
| 1366 | * @device: the device which we search the free space in |
| 1367 | * @num_bytes: the size of the free space that we need |
| 1368 | * @search_start: the position from which to begin the search |
| 1369 | * @start: store the start of the free space. |
| 1370 | * @len: the size of the free space. that we find, or the size |
| 1371 | * 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] | 1372 | * |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1373 | * this uses a pretty simple search, the expectation is that it is |
| 1374 | * called very infrequently and that a given device has a small number |
| 1375 | * of extents |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1376 | * |
| 1377 | * @start is used to store the start of the free space if we find. But if we |
| 1378 | * don't find suitable free space, it will be used to store the start position |
| 1379 | * of the max free space. |
| 1380 | * |
| 1381 | * @len is used to store the size of the free space that we find. |
| 1382 | * But if we don't find suitable free space, it is used to store the size of |
| 1383 | * the max free space. |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1384 | */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1385 | int find_free_dev_extent_start(struct btrfs_transaction *transaction, |
| 1386 | struct btrfs_device *device, u64 num_bytes, |
| 1387 | u64 search_start, u64 *start, u64 *len) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1388 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1389 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1390 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1391 | struct btrfs_key key; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1392 | struct btrfs_dev_extent *dev_extent; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1393 | struct btrfs_path *path; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1394 | u64 hole_size; |
| 1395 | u64 max_hole_start; |
| 1396 | u64 max_hole_size; |
| 1397 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1398 | u64 search_end = device->total_bytes; |
| 1399 | int ret; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1400 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1401 | struct extent_buffer *l; |
Filipe Manana | 8cdc7c5 | 2016-01-06 22:42:35 +0000 | [diff] [blame] | 1402 | |
| 1403 | /* |
| 1404 | * We don't want to overwrite the superblock on the drive nor any area |
| 1405 | * used by the boot loader (grub for example), so we make sure to start |
| 1406 | * at an offset of at least 1MB. |
| 1407 | */ |
David Sterba | 0d0c71b | 2017-06-15 01:30:06 +0200 | [diff] [blame] | 1408 | search_start = max_t(u64, search_start, SZ_1M); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1409 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1410 | path = btrfs_alloc_path(); |
| 1411 | if (!path) |
| 1412 | return -ENOMEM; |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1413 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1414 | max_hole_start = search_start; |
| 1415 | max_hole_size = 0; |
| 1416 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1417 | again: |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1418 | if (search_start >= search_end || |
| 1419 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1420 | ret = -ENOSPC; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1421 | goto out; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1422 | } |
| 1423 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1424 | path->reada = READA_FORWARD; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1425 | path->search_commit_root = 1; |
| 1426 | path->skip_locking = 1; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1427 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1428 | key.objectid = device->devid; |
| 1429 | key.offset = search_start; |
| 1430 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1431 | |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 1432 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1433 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1434 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1435 | if (ret > 0) { |
| 1436 | ret = btrfs_previous_item(root, path, key.objectid, key.type); |
| 1437 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1438 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1439 | } |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1440 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1441 | while (1) { |
| 1442 | l = path->nodes[0]; |
| 1443 | slot = path->slots[0]; |
| 1444 | if (slot >= btrfs_header_nritems(l)) { |
| 1445 | ret = btrfs_next_leaf(root, path); |
| 1446 | if (ret == 0) |
| 1447 | continue; |
| 1448 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1449 | goto out; |
| 1450 | |
| 1451 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1452 | } |
| 1453 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1454 | |
| 1455 | if (key.objectid < device->devid) |
| 1456 | goto next; |
| 1457 | |
| 1458 | if (key.objectid > device->devid) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1459 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1460 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1461 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1462 | goto next; |
| 1463 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1464 | if (key.offset > search_start) { |
| 1465 | hole_size = key.offset - search_start; |
| 1466 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1467 | /* |
| 1468 | * Have to check before we set max_hole_start, otherwise |
| 1469 | * we could end up sending back this offset anyway. |
| 1470 | */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1471 | if (contains_pending_extent(transaction, device, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1472 | &search_start, |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1473 | hole_size)) { |
| 1474 | if (key.offset >= search_start) { |
| 1475 | hole_size = key.offset - search_start; |
| 1476 | } else { |
| 1477 | WARN_ON_ONCE(1); |
| 1478 | hole_size = 0; |
| 1479 | } |
| 1480 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1481 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1482 | if (hole_size > max_hole_size) { |
| 1483 | max_hole_start = search_start; |
| 1484 | max_hole_size = hole_size; |
| 1485 | } |
| 1486 | |
| 1487 | /* |
| 1488 | * If this free space is greater than which we need, |
| 1489 | * it must be the max free space that we have found |
| 1490 | * until now, so max_hole_start must point to the start |
| 1491 | * of this free space and the length of this free space |
| 1492 | * is stored in max_hole_size. Thus, we return |
| 1493 | * max_hole_start and max_hole_size and go back to the |
| 1494 | * caller. |
| 1495 | */ |
| 1496 | if (hole_size >= num_bytes) { |
| 1497 | ret = 0; |
| 1498 | goto out; |
| 1499 | } |
| 1500 | } |
| 1501 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1502 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1503 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1504 | dev_extent); |
| 1505 | if (extent_end > search_start) |
| 1506 | search_start = extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1507 | next: |
| 1508 | path->slots[0]++; |
| 1509 | cond_resched(); |
| 1510 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1511 | |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1512 | /* |
| 1513 | * At this point, search_start should be the end of |
| 1514 | * allocated dev extents, and when shrinking the device, |
| 1515 | * search_end may be smaller than search_start. |
| 1516 | */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1517 | if (search_end > search_start) { |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1518 | hole_size = search_end - search_start; |
| 1519 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1520 | if (contains_pending_extent(transaction, device, &search_start, |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1521 | hole_size)) { |
| 1522 | btrfs_release_path(path); |
| 1523 | goto again; |
| 1524 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1525 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1526 | if (hole_size > max_hole_size) { |
| 1527 | max_hole_start = search_start; |
| 1528 | max_hole_size = hole_size; |
| 1529 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1530 | } |
| 1531 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1532 | /* See above. */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1533 | if (max_hole_size < num_bytes) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1534 | ret = -ENOSPC; |
| 1535 | else |
| 1536 | ret = 0; |
| 1537 | |
| 1538 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1539 | btrfs_free_path(path); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1540 | *start = max_hole_start; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 1541 | if (len) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1542 | *len = max_hole_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1543 | return ret; |
| 1544 | } |
| 1545 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1546 | int find_free_dev_extent(struct btrfs_trans_handle *trans, |
| 1547 | struct btrfs_device *device, u64 num_bytes, |
| 1548 | u64 *start, u64 *len) |
| 1549 | { |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1550 | /* FIXME use last free of some kind */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1551 | return find_free_dev_extent_start(trans->transaction, device, |
Filipe Manana | 8cdc7c5 | 2016-01-06 22:42:35 +0000 | [diff] [blame] | 1552 | num_bytes, 0, start, len); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1553 | } |
| 1554 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1555 | static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1556 | struct btrfs_device *device, |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1557 | u64 start, u64 *dev_extent_len) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1558 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1559 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1560 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1561 | int ret; |
| 1562 | struct btrfs_path *path; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1563 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1564 | struct btrfs_key found_key; |
| 1565 | struct extent_buffer *leaf = NULL; |
| 1566 | struct btrfs_dev_extent *extent = NULL; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1567 | |
| 1568 | path = btrfs_alloc_path(); |
| 1569 | if (!path) |
| 1570 | return -ENOMEM; |
| 1571 | |
| 1572 | key.objectid = device->devid; |
| 1573 | key.offset = start; |
| 1574 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1575 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1576 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1577 | if (ret > 0) { |
| 1578 | ret = btrfs_previous_item(root, path, key.objectid, |
| 1579 | BTRFS_DEV_EXTENT_KEY); |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1580 | if (ret) |
| 1581 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1582 | leaf = path->nodes[0]; |
| 1583 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 1584 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1585 | struct btrfs_dev_extent); |
| 1586 | BUG_ON(found_key.offset > start || found_key.offset + |
| 1587 | btrfs_dev_extent_length(leaf, extent) < start); |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1588 | key = found_key; |
| 1589 | btrfs_release_path(path); |
| 1590 | goto again; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1591 | } else if (ret == 0) { |
| 1592 | leaf = path->nodes[0]; |
| 1593 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1594 | struct btrfs_dev_extent); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1595 | } else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1596 | btrfs_handle_fs_error(fs_info, ret, "Slot search failed"); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1597 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1598 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1599 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1600 | *dev_extent_len = btrfs_dev_extent_length(leaf, extent); |
| 1601 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1602 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1603 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1604 | btrfs_handle_fs_error(fs_info, ret, |
| 1605 | "Failed to remove dev extent item"); |
Zhao Lei | 13212b5 | 2015-02-12 14:18:17 +0800 | [diff] [blame] | 1606 | } else { |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 1607 | set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1608 | } |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1609 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1610 | btrfs_free_path(path); |
| 1611 | return ret; |
| 1612 | } |
| 1613 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1614 | static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans, |
| 1615 | struct btrfs_device *device, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1616 | u64 chunk_offset, u64 start, u64 num_bytes) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1617 | { |
| 1618 | int ret; |
| 1619 | struct btrfs_path *path; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1620 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1621 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1622 | struct btrfs_dev_extent *extent; |
| 1623 | struct extent_buffer *leaf; |
| 1624 | struct btrfs_key key; |
| 1625 | |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 1626 | 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] | 1627 | WARN_ON(test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1628 | path = btrfs_alloc_path(); |
| 1629 | if (!path) |
| 1630 | return -ENOMEM; |
| 1631 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1632 | key.objectid = device->devid; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1633 | key.offset = start; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1634 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 1635 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1636 | sizeof(*extent)); |
Mark Fasheh | 2cdcecb | 2011-09-08 17:14:32 -0700 | [diff] [blame] | 1637 | if (ret) |
| 1638 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1639 | |
| 1640 | leaf = path->nodes[0]; |
| 1641 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1642 | struct btrfs_dev_extent); |
Nikolay Borisov | b5d9071 | 2017-08-18 17:58:23 +0300 | [diff] [blame] | 1643 | btrfs_set_dev_extent_chunk_tree(leaf, extent, |
| 1644 | BTRFS_CHUNK_TREE_OBJECTID); |
Nikolay Borisov | 0ca00af | 2017-08-18 17:58:22 +0300 | [diff] [blame] | 1645 | btrfs_set_dev_extent_chunk_objectid(leaf, extent, |
| 1646 | BTRFS_FIRST_CHUNK_TREE_OBJECTID); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1647 | btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset); |
| 1648 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1649 | btrfs_set_dev_extent_length(leaf, extent, num_bytes); |
| 1650 | btrfs_mark_buffer_dirty(leaf); |
Mark Fasheh | 2cdcecb | 2011-09-08 17:14:32 -0700 | [diff] [blame] | 1651 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1652 | btrfs_free_path(path); |
| 1653 | return ret; |
| 1654 | } |
| 1655 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1656 | static u64 find_next_chunk(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1657 | { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1658 | struct extent_map_tree *em_tree; |
| 1659 | struct extent_map *em; |
| 1660 | struct rb_node *n; |
| 1661 | u64 ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1662 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1663 | em_tree = &fs_info->mapping_tree.map_tree; |
| 1664 | read_lock(&em_tree->lock); |
| 1665 | n = rb_last(&em_tree->map); |
| 1666 | if (n) { |
| 1667 | em = rb_entry(n, struct extent_map, rb_node); |
| 1668 | ret = em->start + em->len; |
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 | read_unlock(&em_tree->lock); |
| 1671 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1672 | return ret; |
| 1673 | } |
| 1674 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1675 | static noinline int find_next_devid(struct btrfs_fs_info *fs_info, |
| 1676 | u64 *devid_ret) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1677 | { |
| 1678 | int ret; |
| 1679 | struct btrfs_key key; |
| 1680 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1681 | struct btrfs_path *path; |
| 1682 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1683 | path = btrfs_alloc_path(); |
| 1684 | if (!path) |
| 1685 | return -ENOMEM; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1686 | |
| 1687 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1688 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1689 | key.offset = (u64)-1; |
| 1690 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1691 | 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] | 1692 | if (ret < 0) |
| 1693 | goto error; |
| 1694 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1695 | BUG_ON(ret == 0); /* Corruption */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1696 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1697 | ret = btrfs_previous_item(fs_info->chunk_root, path, |
| 1698 | BTRFS_DEV_ITEMS_OBJECTID, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1699 | BTRFS_DEV_ITEM_KEY); |
| 1700 | if (ret) { |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1701 | *devid_ret = 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1702 | } else { |
| 1703 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 1704 | path->slots[0]); |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1705 | *devid_ret = found_key.offset + 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1706 | } |
| 1707 | ret = 0; |
| 1708 | error: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1709 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1710 | return ret; |
| 1711 | } |
| 1712 | |
| 1713 | /* |
| 1714 | * the device information is stored in the chunk root |
| 1715 | * the btrfs_device struct should be fully filled in |
| 1716 | */ |
Anand Jain | c74a0b0 | 2017-11-06 16:36:15 +0800 | [diff] [blame] | 1717 | static int btrfs_add_dev_item(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1718 | struct btrfs_fs_info *fs_info, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1719 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1720 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1721 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1722 | int ret; |
| 1723 | struct btrfs_path *path; |
| 1724 | struct btrfs_dev_item *dev_item; |
| 1725 | struct extent_buffer *leaf; |
| 1726 | struct btrfs_key key; |
| 1727 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1728 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1729 | path = btrfs_alloc_path(); |
| 1730 | if (!path) |
| 1731 | return -ENOMEM; |
| 1732 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1733 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1734 | key.type = BTRFS_DEV_ITEM_KEY; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1735 | key.offset = device->devid; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1736 | |
| 1737 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1738 | sizeof(*dev_item)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1739 | if (ret) |
| 1740 | goto out; |
| 1741 | |
| 1742 | leaf = path->nodes[0]; |
| 1743 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 1744 | |
| 1745 | btrfs_set_device_id(leaf, dev_item, device->devid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1746 | btrfs_set_device_generation(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1747 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 1748 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 1749 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 1750 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 1751 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 1752 | btrfs_device_get_disk_total_bytes(device)); |
| 1753 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 1754 | btrfs_device_get_bytes_used(device)); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1755 | btrfs_set_device_group(leaf, dev_item, 0); |
| 1756 | btrfs_set_device_seek_speed(leaf, dev_item, 0); |
| 1757 | btrfs_set_device_bandwidth(leaf, dev_item, 0); |
Chris Mason | c3027eb | 2008-12-08 16:40:21 -0500 | [diff] [blame] | 1758 | btrfs_set_device_start_offset(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1759 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 1760 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1761 | write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 1762 | ptr = btrfs_device_fsid(dev_item); |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 1763 | write_extent_buffer(leaf, fs_info->fsid, ptr, BTRFS_FSID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1764 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1765 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1766 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1767 | out: |
| 1768 | btrfs_free_path(path); |
| 1769 | return ret; |
| 1770 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1771 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1772 | /* |
| 1773 | * Function to update ctime/mtime for a given device path. |
| 1774 | * Mainly used for ctime/mtime based probe like libblkid. |
| 1775 | */ |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 1776 | static void update_dev_time(const char *path_name) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1777 | { |
| 1778 | struct file *filp; |
| 1779 | |
| 1780 | filp = filp_open(path_name, O_RDWR, 0); |
Al Viro | 98af592 | 2014-12-14 02:59:17 -0500 | [diff] [blame] | 1781 | if (IS_ERR(filp)) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1782 | return; |
| 1783 | file_update_time(filp); |
| 1784 | filp_close(filp, NULL); |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1785 | } |
| 1786 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1787 | static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info, |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1788 | struct btrfs_device *device) |
| 1789 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1790 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1791 | int ret; |
| 1792 | struct btrfs_path *path; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1793 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1794 | struct btrfs_trans_handle *trans; |
| 1795 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1796 | path = btrfs_alloc_path(); |
| 1797 | if (!path) |
| 1798 | return -ENOMEM; |
| 1799 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 1800 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 1801 | if (IS_ERR(trans)) { |
| 1802 | btrfs_free_path(path); |
| 1803 | return PTR_ERR(trans); |
| 1804 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1805 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1806 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1807 | key.offset = device->devid; |
| 1808 | |
| 1809 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1810 | if (ret) { |
| 1811 | if (ret > 0) |
| 1812 | ret = -ENOENT; |
| 1813 | btrfs_abort_transaction(trans, ret); |
| 1814 | btrfs_end_transaction(trans); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1815 | goto out; |
| 1816 | } |
| 1817 | |
| 1818 | ret = btrfs_del_item(trans, root, path); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1819 | if (ret) { |
| 1820 | btrfs_abort_transaction(trans, ret); |
| 1821 | btrfs_end_transaction(trans); |
| 1822 | } |
| 1823 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1824 | out: |
| 1825 | btrfs_free_path(path); |
Nikolay Borisov | 5e9f2ad | 2017-10-23 09:58:46 +0300 | [diff] [blame] | 1826 | if (!ret) |
| 1827 | ret = btrfs_commit_transaction(trans); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1828 | return ret; |
| 1829 | } |
| 1830 | |
David Sterba | 3cc31a0 | 2016-02-15 16:00:26 +0100 | [diff] [blame] | 1831 | /* |
| 1832 | * Verify that @num_devices satisfies the RAID profile constraints in the whole |
| 1833 | * filesystem. It's up to the caller to adjust that number regarding eg. device |
| 1834 | * replace. |
| 1835 | */ |
| 1836 | static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info, |
| 1837 | u64 num_devices) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1838 | { |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1839 | u64 all_avail; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1840 | unsigned seq; |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1841 | int i; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1842 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1843 | do { |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1844 | seq = read_seqbegin(&fs_info->profiles_lock); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1845 | |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1846 | all_avail = fs_info->avail_data_alloc_bits | |
| 1847 | fs_info->avail_system_alloc_bits | |
| 1848 | fs_info->avail_metadata_alloc_bits; |
| 1849 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1850 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1851 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 1852 | if (!(all_avail & btrfs_raid_group[i])) |
| 1853 | continue; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1854 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1855 | if (num_devices < btrfs_raid_array[i].devs_min) { |
| 1856 | int ret = btrfs_raid_mindev_error[i]; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1857 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1858 | if (ret) |
| 1859 | return ret; |
| 1860 | } |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1861 | } |
| 1862 | |
| 1863 | return 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1864 | } |
| 1865 | |
Omar Sandoval | c9162bd | 2017-08-22 23:46:04 -0700 | [diff] [blame] | 1866 | static struct btrfs_device * btrfs_find_next_active_device( |
| 1867 | struct btrfs_fs_devices *fs_devs, struct btrfs_device *device) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 1868 | { |
| 1869 | struct btrfs_device *next_device; |
| 1870 | |
| 1871 | list_for_each_entry(next_device, &fs_devs->devices, dev_list) { |
| 1872 | if (next_device != device && |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 1873 | !test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state) |
| 1874 | && next_device->bdev) |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 1875 | return next_device; |
| 1876 | } |
| 1877 | |
| 1878 | return NULL; |
| 1879 | } |
| 1880 | |
| 1881 | /* |
| 1882 | * Helper function to check if the given device is part of s_bdev / latest_bdev |
| 1883 | * and replace it with the provided or the next active device, in the context |
| 1884 | * where this function called, there should be always be another device (or |
| 1885 | * this_dev) which is active. |
| 1886 | */ |
| 1887 | void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info, |
| 1888 | struct btrfs_device *device, struct btrfs_device *this_dev) |
| 1889 | { |
| 1890 | struct btrfs_device *next_device; |
| 1891 | |
| 1892 | if (this_dev) |
| 1893 | next_device = this_dev; |
| 1894 | else |
| 1895 | next_device = btrfs_find_next_active_device(fs_info->fs_devices, |
| 1896 | device); |
| 1897 | ASSERT(next_device); |
| 1898 | |
| 1899 | if (fs_info->sb->s_bdev && |
| 1900 | (fs_info->sb->s_bdev == device->bdev)) |
| 1901 | fs_info->sb->s_bdev = next_device->bdev; |
| 1902 | |
| 1903 | if (fs_info->fs_devices->latest_bdev == device->bdev) |
| 1904 | fs_info->fs_devices->latest_bdev = next_device->bdev; |
| 1905 | } |
| 1906 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 1907 | int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path, |
| 1908 | u64 devid) |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1909 | { |
| 1910 | struct btrfs_device *device; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1911 | struct btrfs_fs_devices *cur_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1912 | u64 num_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1913 | int ret = 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1914 | |
Anand Jain | 2c99738 | 2017-11-06 10:28:00 +0800 | [diff] [blame] | 1915 | mutex_lock(&fs_info->volume_mutex); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1916 | mutex_lock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1917 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1918 | num_devices = fs_info->fs_devices->num_devices; |
| 1919 | btrfs_dev_replace_lock(&fs_info->dev_replace, 0); |
| 1920 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) { |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1921 | WARN_ON(num_devices < 1); |
| 1922 | num_devices--; |
| 1923 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1924 | btrfs_dev_replace_unlock(&fs_info->dev_replace, 0); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1925 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1926 | ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1927 | if (ret) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1928 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1929 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1930 | ret = btrfs_find_device_by_devspec(fs_info, devid, device_path, |
| 1931 | &device); |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1932 | if (ret) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1933 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1934 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 1935 | if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1936 | ret = BTRFS_ERROR_DEV_TGT_REPLACE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1937 | goto out; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1938 | } |
| 1939 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1940 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
| 1941 | fs_info->fs_devices->rw_devices == 1) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1942 | ret = BTRFS_ERROR_DEV_ONLY_WRITABLE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1943 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1944 | } |
| 1945 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 1946 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 1947 | mutex_lock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1948 | list_del_init(&device->dev_alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 1949 | device->fs_devices->rw_devices--; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 1950 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1951 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1952 | |
Carey Underwood | d790155 | 2013-03-04 16:37:06 -0600 | [diff] [blame] | 1953 | mutex_unlock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1954 | ret = btrfs_shrink_device(device, 0); |
Carey Underwood | d790155 | 2013-03-04 16:37:06 -0600 | [diff] [blame] | 1955 | mutex_lock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1956 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1957 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1958 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1959 | /* |
| 1960 | * TODO: the superblock still includes this device in its num_devices |
| 1961 | * counter although write_all_supers() is not locked out. This |
| 1962 | * could give a filesystem state which requires a degraded mount. |
| 1963 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1964 | ret = btrfs_rm_dev_item(fs_info, device); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1965 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1966 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1967 | |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 1968 | clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1969 | btrfs_scrub_cancel_dev(fs_info, device); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1970 | |
| 1971 | /* |
| 1972 | * the device list mutex makes sure that we don't change |
| 1973 | * the device list while someone else is writing out all |
Filipe David Borba Manana | d730680 | 2013-08-09 15:41:36 +0100 | [diff] [blame] | 1974 | * the device supers. Whoever is writing all supers, should |
| 1975 | * lock the device list mutex before getting the number of |
| 1976 | * devices in the super block (super_copy). Conversely, |
| 1977 | * whoever updates the number of devices in the super block |
| 1978 | * (super_copy) should hold the device list mutex. |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1979 | */ |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1980 | |
| 1981 | cur_devices = device->fs_devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1982 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1983 | list_del_rcu(&device->dev_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1984 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1985 | device->fs_devices->num_devices--; |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1986 | device->fs_devices->total_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1987 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 1988 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) |
Miao Xie | 3a7d55c | 2014-07-16 18:38:01 +0800 | [diff] [blame] | 1989 | device->fs_devices->missing_devices--; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 1990 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1991 | btrfs_assign_next_active_device(fs_info, device, NULL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1992 | |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 1993 | if (device->bdev) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1994 | device->fs_devices->open_devices--; |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 1995 | /* remove sysfs entry */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1996 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, device); |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 1997 | } |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 1998 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1999 | num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1; |
| 2000 | btrfs_set_super_num_devices(fs_info->super_copy, num_devices); |
| 2001 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2002 | |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2003 | /* |
| 2004 | * at this point, the device is zero sized and detached from |
| 2005 | * the devices list. All that's left is to zero out the old |
| 2006 | * supers and free the device. |
| 2007 | */ |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2008 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2009 | btrfs_scratch_superblocks(device->bdev, device->name->str); |
| 2010 | |
| 2011 | btrfs_close_bdev(device); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 2012 | call_rcu(&device->rcu, free_device_rcu); |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 2013 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2014 | if (cur_devices->open_devices == 0) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2015 | struct btrfs_fs_devices *fs_devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2016 | fs_devices = fs_info->fs_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2017 | while (fs_devices) { |
Rickard Strandqvist | 8321cf2 | 2014-05-22 22:43:43 +0200 | [diff] [blame] | 2018 | if (fs_devices->seed == cur_devices) { |
| 2019 | fs_devices->seed = cur_devices->seed; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2020 | break; |
Rickard Strandqvist | 8321cf2 | 2014-05-22 22:43:43 +0200 | [diff] [blame] | 2021 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2022 | fs_devices = fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2023 | } |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2024 | cur_devices->seed = NULL; |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2025 | __btrfs_close_devices(cur_devices); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2026 | free_fs_devices(cur_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2027 | } |
| 2028 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2029 | out: |
| 2030 | mutex_unlock(&uuid_mutex); |
Anand Jain | 2c99738 | 2017-11-06 10:28:00 +0800 | [diff] [blame] | 2031 | mutex_unlock(&fs_info->volume_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2032 | return ret; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2033 | |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2034 | error_undo: |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2035 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2036 | mutex_lock(&fs_info->chunk_mutex); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2037 | list_add(&device->dev_alloc_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2038 | &fs_info->fs_devices->alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 2039 | device->fs_devices->rw_devices++; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2040 | mutex_unlock(&fs_info->chunk_mutex); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 2041 | } |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 2042 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2043 | } |
| 2044 | |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 2045 | void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info, |
| 2046 | struct btrfs_device *srcdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2047 | { |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2048 | struct btrfs_fs_devices *fs_devices; |
| 2049 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2050 | WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex)); |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 2051 | |
Anand Jain | 25e8e91 | 2014-08-20 10:56:56 +0800 | [diff] [blame] | 2052 | /* |
| 2053 | * in case of fs with no seed, srcdev->fs_devices will point |
| 2054 | * to fs_devices of fs_info. However when the dev being replaced is |
| 2055 | * a seed dev it will point to the seed's local fs_devices. In short |
| 2056 | * srcdev will have its correct fs_devices in both the cases. |
| 2057 | */ |
| 2058 | fs_devices = srcdev->fs_devices; |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2059 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2060 | list_del_rcu(&srcdev->dev_list); |
David Sterba | 619c47f | 2017-06-19 14:14:22 +0200 | [diff] [blame] | 2061 | list_del(&srcdev->dev_alloc_list); |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2062 | fs_devices->num_devices--; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 2063 | if (test_bit(BTRFS_DEV_STATE_MISSING, &srcdev->dev_state)) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2064 | fs_devices->missing_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2065 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2066 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2067 | fs_devices->rw_devices--; |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 2068 | |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2069 | if (srcdev->bdev) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2070 | fs_devices->open_devices--; |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 2071 | } |
| 2072 | |
| 2073 | void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info, |
| 2074 | struct btrfs_device *srcdev) |
| 2075 | { |
| 2076 | struct btrfs_fs_devices *fs_devices = srcdev->fs_devices; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2077 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2078 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) { |
Anand Jain | 48b3b9d | 2016-04-12 21:36:16 +0800 | [diff] [blame] | 2079 | /* zero out the old super if it is writable */ |
| 2080 | btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str); |
| 2081 | } |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 2082 | |
| 2083 | btrfs_close_bdev(srcdev); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 2084 | call_rcu(&srcdev->rcu, free_device_rcu); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2085 | |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2086 | /* if this is no devs we rather delete the fs_devices */ |
| 2087 | if (!fs_devices->num_devices) { |
| 2088 | struct btrfs_fs_devices *tmp_fs_devices; |
| 2089 | |
Anand Jain | 6dd38f8 | 2017-10-17 06:53:50 +0800 | [diff] [blame] | 2090 | /* |
| 2091 | * On a mounted FS, num_devices can't be zero unless it's a |
| 2092 | * seed. In case of a seed device being replaced, the replace |
| 2093 | * target added to the sprout FS, so there will be no more |
| 2094 | * device left under the seed FS. |
| 2095 | */ |
| 2096 | ASSERT(fs_devices->seeding); |
| 2097 | |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2098 | tmp_fs_devices = fs_info->fs_devices; |
| 2099 | while (tmp_fs_devices) { |
| 2100 | if (tmp_fs_devices->seed == fs_devices) { |
| 2101 | tmp_fs_devices->seed = fs_devices->seed; |
| 2102 | break; |
| 2103 | } |
| 2104 | tmp_fs_devices = tmp_fs_devices->seed; |
| 2105 | } |
| 2106 | fs_devices->seed = NULL; |
Anand Jain | 8bef840 | 2014-08-13 14:24:23 +0800 | [diff] [blame] | 2107 | __btrfs_close_devices(fs_devices); |
| 2108 | free_fs_devices(fs_devices); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2109 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2110 | } |
| 2111 | |
| 2112 | void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info, |
| 2113 | struct btrfs_device *tgtdev) |
| 2114 | { |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 2115 | mutex_lock(&uuid_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2116 | WARN_ON(!tgtdev); |
| 2117 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2118 | |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 2119 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2120 | |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2121 | if (tgtdev->bdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2122 | fs_info->fs_devices->open_devices--; |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2123 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2124 | fs_info->fs_devices->num_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2125 | |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2126 | btrfs_assign_next_active_device(fs_info, tgtdev, NULL); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2127 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2128 | list_del_rcu(&tgtdev->dev_list); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2129 | |
| 2130 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 2131 | mutex_unlock(&uuid_mutex); |
Anand Jain | 779bf3fe | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2132 | |
| 2133 | /* |
| 2134 | * The update_dev_time() with in btrfs_scratch_superblocks() |
| 2135 | * may lead to a call to btrfs_show_devname() which will try |
| 2136 | * to hold device_list_mutex. And here this device |
| 2137 | * is already out of device list, so we don't have to hold |
| 2138 | * the device_list_mutex lock. |
| 2139 | */ |
| 2140 | btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str); |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 2141 | |
| 2142 | btrfs_close_bdev(tgtdev); |
David Sterba | f06c596 | 2017-06-06 17:08:23 +0200 | [diff] [blame] | 2143 | call_rcu(&tgtdev->rcu, free_device_rcu); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2144 | } |
| 2145 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2146 | 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] | 2147 | const char *device_path, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 2148 | struct btrfs_device **device) |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2149 | { |
| 2150 | int ret = 0; |
| 2151 | struct btrfs_super_block *disk_super; |
| 2152 | u64 devid; |
| 2153 | u8 *dev_uuid; |
| 2154 | struct block_device *bdev; |
| 2155 | struct buffer_head *bh; |
| 2156 | |
| 2157 | *device = NULL; |
| 2158 | ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2159 | fs_info->bdev_holder, 0, &bdev, &bh); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2160 | if (ret) |
| 2161 | return ret; |
| 2162 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 2163 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 2164 | dev_uuid = disk_super->dev_item.uuid; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2165 | *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2166 | brelse(bh); |
| 2167 | if (!*device) |
| 2168 | ret = -ENOENT; |
| 2169 | blkdev_put(bdev, FMODE_READ); |
| 2170 | return ret; |
| 2171 | } |
| 2172 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2173 | 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] | 2174 | const char *device_path, |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2175 | struct btrfs_device **device) |
| 2176 | { |
| 2177 | *device = NULL; |
| 2178 | if (strcmp(device_path, "missing") == 0) { |
| 2179 | struct list_head *devices; |
| 2180 | struct btrfs_device *tmp; |
| 2181 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2182 | devices = &fs_info->fs_devices->devices; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2183 | /* |
| 2184 | * It is safe to read the devices since the volume_mutex |
| 2185 | * is held by the caller. |
| 2186 | */ |
| 2187 | list_for_each_entry(tmp, devices, dev_list) { |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2188 | if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 2189 | &tmp->dev_state) && !tmp->bdev) { |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2190 | *device = tmp; |
| 2191 | break; |
| 2192 | } |
| 2193 | } |
| 2194 | |
Anand Jain | d74a625 | 2015-08-14 18:32:56 +0800 | [diff] [blame] | 2195 | if (!*device) |
| 2196 | return BTRFS_ERROR_DEV_MISSING_NOT_FOUND; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2197 | |
| 2198 | return 0; |
| 2199 | } else { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2200 | return btrfs_find_device_by_path(fs_info, device_path, device); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2201 | } |
| 2202 | } |
| 2203 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2204 | /* |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2205 | * Lookup a device given by device id, or the path if the id is 0. |
| 2206 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2207 | 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] | 2208 | const char *devpath, |
| 2209 | struct btrfs_device **device) |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2210 | { |
| 2211 | int ret; |
| 2212 | |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2213 | if (devid) { |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2214 | ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2215 | *device = btrfs_find_device(fs_info, devid, NULL, NULL); |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2216 | if (!*device) |
| 2217 | ret = -ENOENT; |
| 2218 | } else { |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2219 | if (!devpath || !devpath[0]) |
Anand Jain | b3d1b15 | 2016-02-13 10:01:37 +0800 | [diff] [blame] | 2220 | return -EINVAL; |
| 2221 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2222 | ret = btrfs_find_device_missing_or_by_path(fs_info, devpath, |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2223 | device); |
| 2224 | } |
| 2225 | return ret; |
| 2226 | } |
| 2227 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2228 | /* |
| 2229 | * does all the dirty work required for changing file system's UUID. |
| 2230 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2231 | static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2232 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2233 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2234 | struct btrfs_fs_devices *old_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2235 | struct btrfs_fs_devices *seed_devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2236 | struct btrfs_super_block *disk_super = fs_info->super_copy; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2237 | struct btrfs_device *device; |
| 2238 | u64 super_flags; |
| 2239 | |
| 2240 | BUG_ON(!mutex_is_locked(&uuid_mutex)); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2241 | if (!fs_devices->seeding) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2242 | return -EINVAL; |
| 2243 | |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 2244 | seed_devices = alloc_fs_devices(NULL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 2245 | if (IS_ERR(seed_devices)) |
| 2246 | return PTR_ERR(seed_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2247 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2248 | old_devices = clone_fs_devices(fs_devices); |
| 2249 | if (IS_ERR(old_devices)) { |
| 2250 | kfree(seed_devices); |
| 2251 | return PTR_ERR(old_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2252 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2253 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2254 | list_add(&old_devices->list, &fs_uuids); |
| 2255 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2256 | memcpy(seed_devices, fs_devices, sizeof(*seed_devices)); |
| 2257 | seed_devices->opened = 1; |
| 2258 | INIT_LIST_HEAD(&seed_devices->devices); |
| 2259 | INIT_LIST_HEAD(&seed_devices->alloc_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2260 | mutex_init(&seed_devices->device_list_mutex); |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 2261 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2262 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2263 | list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices, |
| 2264 | synchronize_rcu); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2265 | list_for_each_entry(device, &seed_devices->devices, dev_list) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2266 | device->fs_devices = seed_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2267 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2268 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2269 | list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2270 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2271 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2272 | fs_devices->seeding = 0; |
| 2273 | fs_devices->num_devices = 0; |
| 2274 | fs_devices->open_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2275 | fs_devices->missing_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2276 | fs_devices->rotating = 0; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2277 | fs_devices->seed = seed_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2278 | |
| 2279 | generate_random_uuid(fs_devices->fsid); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2280 | memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2281 | memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2282 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 2283 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2284 | super_flags = btrfs_super_flags(disk_super) & |
| 2285 | ~BTRFS_SUPER_FLAG_SEEDING; |
| 2286 | btrfs_set_super_flags(disk_super, super_flags); |
| 2287 | |
| 2288 | return 0; |
| 2289 | } |
| 2290 | |
| 2291 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2292 | * Store the expected generation for seed devices in device items. |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2293 | */ |
| 2294 | static int btrfs_finish_sprout(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2295 | struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2296 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2297 | struct btrfs_root *root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2298 | struct btrfs_path *path; |
| 2299 | struct extent_buffer *leaf; |
| 2300 | struct btrfs_dev_item *dev_item; |
| 2301 | struct btrfs_device *device; |
| 2302 | struct btrfs_key key; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 2303 | u8 fs_uuid[BTRFS_FSID_SIZE]; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2304 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 2305 | u64 devid; |
| 2306 | int ret; |
| 2307 | |
| 2308 | path = btrfs_alloc_path(); |
| 2309 | if (!path) |
| 2310 | return -ENOMEM; |
| 2311 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2312 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2313 | key.offset = 0; |
| 2314 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2315 | |
| 2316 | while (1) { |
| 2317 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2318 | if (ret < 0) |
| 2319 | goto error; |
| 2320 | |
| 2321 | leaf = path->nodes[0]; |
| 2322 | next_slot: |
| 2323 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 2324 | ret = btrfs_next_leaf(root, path); |
| 2325 | if (ret > 0) |
| 2326 | break; |
| 2327 | if (ret < 0) |
| 2328 | goto error; |
| 2329 | leaf = path->nodes[0]; |
| 2330 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2331 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2332 | continue; |
| 2333 | } |
| 2334 | |
| 2335 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 2336 | if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID || |
| 2337 | key.type != BTRFS_DEV_ITEM_KEY) |
| 2338 | break; |
| 2339 | |
| 2340 | dev_item = btrfs_item_ptr(leaf, path->slots[0], |
| 2341 | struct btrfs_dev_item); |
| 2342 | devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 2343 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2344 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 2345 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 2346 | BTRFS_FSID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2347 | device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2348 | BUG_ON(!device); /* Logic error */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2349 | |
| 2350 | if (device->fs_devices->seeding) { |
| 2351 | btrfs_set_device_generation(leaf, dev_item, |
| 2352 | device->generation); |
| 2353 | btrfs_mark_buffer_dirty(leaf); |
| 2354 | } |
| 2355 | |
| 2356 | path->slots[0]++; |
| 2357 | goto next_slot; |
| 2358 | } |
| 2359 | ret = 0; |
| 2360 | error: |
| 2361 | btrfs_free_path(path); |
| 2362 | return ret; |
| 2363 | } |
| 2364 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 2365 | 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] | 2366 | { |
Jeff Mahoney | 5112feb | 2016-06-21 20:16:08 -0400 | [diff] [blame] | 2367 | struct btrfs_root *root = fs_info->dev_root; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2368 | struct request_queue *q; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2369 | struct btrfs_trans_handle *trans; |
| 2370 | struct btrfs_device *device; |
| 2371 | struct block_device *bdev; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2372 | struct list_head *devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2373 | struct super_block *sb = fs_info->sb; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2374 | struct rcu_string *name; |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2375 | u64 tmp; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2376 | int seeding_dev = 0; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2377 | int ret = 0; |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2378 | bool unlocked = false; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2379 | |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 2380 | if (sb_rdonly(sb) && !fs_info->fs_devices->seeding) |
Liu Bo | f8c5d0b | 2012-05-10 18:10:38 +0800 | [diff] [blame] | 2381 | return -EROFS; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2382 | |
Li Zefan | a5d16333 | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 2383 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2384 | fs_info->bdev_holder); |
Josef Bacik | 7f59203 | 2010-01-27 02:09:00 +0000 | [diff] [blame] | 2385 | if (IS_ERR(bdev)) |
| 2386 | return PTR_ERR(bdev); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2387 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2388 | if (fs_info->fs_devices->seeding) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2389 | seeding_dev = 1; |
| 2390 | down_write(&sb->s_umount); |
| 2391 | mutex_lock(&uuid_mutex); |
| 2392 | } |
| 2393 | |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 2394 | filemap_write_and_wait(bdev->bd_inode->i_mapping); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2395 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2396 | devices = &fs_info->fs_devices->devices; |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2397 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2398 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 2399 | list_for_each_entry(device, devices, dev_list) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2400 | if (device->bdev == bdev) { |
| 2401 | ret = -EEXIST; |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2402 | mutex_unlock( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2403 | &fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2404 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2405 | } |
| 2406 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2407 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2408 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2409 | device = btrfs_alloc_device(fs_info, NULL, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2410 | if (IS_ERR(device)) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2411 | /* we can safely leave the fs_devices entry around */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2412 | ret = PTR_ERR(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2413 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2414 | } |
| 2415 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 2416 | name = rcu_string_strdup(device_path, GFP_KERNEL); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2417 | if (!name) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2418 | ret = -ENOMEM; |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2419 | goto error_free_device; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2420 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2421 | rcu_assign_pointer(device->name, name); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2422 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2423 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2424 | if (IS_ERR(trans)) { |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2425 | ret = PTR_ERR(trans); |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2426 | goto error_free_device; |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2427 | } |
| 2428 | |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2429 | q = bdev_get_queue(bdev); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2430 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2431 | device->generation = trans->transid; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2432 | device->io_width = fs_info->sectorsize; |
| 2433 | device->io_align = fs_info->sectorsize; |
| 2434 | device->sector_size = fs_info->sectorsize; |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2435 | device->total_bytes = round_down(i_size_read(bdev->bd_inode), |
| 2436 | fs_info->sectorsize); |
Yan Zheng | 2cc3c55 | 2009-06-04 09:23:50 -0400 | [diff] [blame] | 2437 | device->disk_total_bytes = device->total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2438 | device->commit_total_bytes = device->total_bytes; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2439 | device->fs_info = fs_info; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2440 | device->bdev = bdev; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2441 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2442 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Ilya Dryomov | fb01aa8 | 2011-02-15 18:12:57 +0000 | [diff] [blame] | 2443 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2444 | device->dev_stats_valid = 1; |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 2445 | set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE); |
Zheng Yan | 325cd4b | 2008-09-05 16:43:54 -0400 | [diff] [blame] | 2446 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2447 | if (seeding_dev) { |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 2448 | sb->s_flags &= ~SB_RDONLY; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2449 | ret = btrfs_prepare_sprout(fs_info); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2450 | if (ret) { |
| 2451 | btrfs_abort_transaction(trans, ret); |
| 2452 | goto error_trans; |
| 2453 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2454 | } |
| 2455 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2456 | device->fs_devices = fs_info->fs_devices; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2457 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2458 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2459 | mutex_lock(&fs_info->chunk_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2460 | list_add_rcu(&device->dev_list, &fs_info->fs_devices->devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2461 | list_add(&device->dev_alloc_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2462 | &fs_info->fs_devices->alloc_list); |
| 2463 | fs_info->fs_devices->num_devices++; |
| 2464 | fs_info->fs_devices->open_devices++; |
| 2465 | fs_info->fs_devices->rw_devices++; |
| 2466 | fs_info->fs_devices->total_devices++; |
| 2467 | fs_info->fs_devices->total_rw_bytes += device->total_bytes; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2468 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 2469 | atomic64_add(device->total_bytes, &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 2470 | |
Anand Jain | e884f4f | 2017-04-04 18:40:19 +0800 | [diff] [blame] | 2471 | if (!blk_queue_nonrot(q)) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2472 | fs_info->fs_devices->rotating = 1; |
Chris Mason | c289811 | 2009-06-10 09:51:32 -0400 | [diff] [blame] | 2473 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2474 | tmp = btrfs_super_total_bytes(fs_info->super_copy); |
| 2475 | btrfs_set_super_total_bytes(fs_info->super_copy, |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2476 | round_down(tmp + device->total_bytes, fs_info->sectorsize)); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2477 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2478 | tmp = btrfs_super_num_devices(fs_info->super_copy); |
| 2479 | btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2480 | |
| 2481 | /* add sysfs device entry */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2482 | btrfs_sysfs_add_device_link(fs_info->fs_devices, device); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2483 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2484 | /* |
| 2485 | * we've got more storage, clear any full flags on the space |
| 2486 | * infos |
| 2487 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2488 | btrfs_clear_space_info_full(fs_info); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2489 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2490 | mutex_unlock(&fs_info->chunk_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2491 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2492 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2493 | if (seeding_dev) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2494 | mutex_lock(&fs_info->chunk_mutex); |
David Sterba | e4a4dce | 2017-02-10 19:49:01 +0100 | [diff] [blame] | 2495 | ret = init_first_rw_device(trans, fs_info); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2496 | mutex_unlock(&fs_info->chunk_mutex); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2497 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2498 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2499 | goto error_sysfs; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2500 | } |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2501 | } |
| 2502 | |
Anand Jain | c74a0b0 | 2017-11-06 16:36:15 +0800 | [diff] [blame] | 2503 | ret = btrfs_add_dev_item(trans, fs_info, device); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [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; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2507 | } |
| 2508 | |
| 2509 | if (seeding_dev) { |
| 2510 | char fsid_buf[BTRFS_UUID_UNPARSED_SIZE]; |
| 2511 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2512 | ret = btrfs_finish_sprout(trans, fs_info); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2513 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2514 | btrfs_abort_transaction(trans, ret); |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2515 | goto error_sysfs; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2516 | } |
Anand Jain | b2373f2 | 2014-06-03 11:36:03 +0800 | [diff] [blame] | 2517 | |
| 2518 | /* Sprouting would change fsid of the mounted root, |
| 2519 | * so rename the fsid on the sysfs |
| 2520 | */ |
| 2521 | snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2522 | fs_info->fsid); |
| 2523 | if (kobject_rename(&fs_info->fs_devices->fsid_kobj, fsid_buf)) |
| 2524 | btrfs_warn(fs_info, |
| 2525 | "sysfs: failed to create fsid for sprout"); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2526 | } |
| 2527 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2528 | ret = btrfs_commit_transaction(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2529 | |
| 2530 | if (seeding_dev) { |
| 2531 | mutex_unlock(&uuid_mutex); |
| 2532 | up_write(&sb->s_umount); |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2533 | unlocked = true; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2534 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2535 | if (ret) /* transaction commit */ |
| 2536 | return ret; |
| 2537 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2538 | ret = btrfs_relocate_sys_chunks(fs_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2539 | if (ret < 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2540 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2541 | "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] | 2542 | trans = btrfs_attach_transaction(root); |
| 2543 | if (IS_ERR(trans)) { |
| 2544 | if (PTR_ERR(trans) == -ENOENT) |
| 2545 | return 0; |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2546 | ret = PTR_ERR(trans); |
| 2547 | trans = NULL; |
| 2548 | goto error_sysfs; |
Miao Xie | 671415b | 2012-10-16 11:26:46 +0000 | [diff] [blame] | 2549 | } |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2550 | ret = btrfs_commit_transaction(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2551 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2552 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 2553 | /* Update ctime/mtime for libblkid */ |
| 2554 | update_dev_time(device_path); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2555 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2556 | |
Anand Jain | d31c32f | 2017-09-28 14:51:10 +0800 | [diff] [blame] | 2557 | error_sysfs: |
| 2558 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, device); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2559 | error_trans: |
Anand Jain | 0af2c4b | 2017-09-28 14:51:09 +0800 | [diff] [blame] | 2560 | if (seeding_dev) |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 2561 | sb->s_flags |= SB_RDONLY; |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2562 | if (trans) |
| 2563 | btrfs_end_transaction(trans); |
David Sterba | 5c4cf6c | 2017-10-30 19:29:46 +0100 | [diff] [blame] | 2564 | error_free_device: |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 2565 | free_device(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2566 | error: |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 2567 | blkdev_put(bdev, FMODE_EXCL); |
Anand Jain | 7132a26 | 2017-09-28 14:51:11 +0800 | [diff] [blame] | 2568 | if (seeding_dev && !unlocked) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2569 | mutex_unlock(&uuid_mutex); |
| 2570 | up_write(&sb->s_umount); |
| 2571 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2572 | return ret; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2573 | } |
| 2574 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2575 | int btrfs_init_dev_replace_tgtdev(struct btrfs_fs_info *fs_info, |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 2576 | const char *device_path, |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2577 | struct btrfs_device *srcdev, |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2578 | struct btrfs_device **device_out) |
| 2579 | { |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2580 | struct btrfs_device *device; |
| 2581 | struct block_device *bdev; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2582 | struct list_head *devices; |
| 2583 | struct rcu_string *name; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2584 | u64 devid = BTRFS_DEV_REPLACE_DEVID; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2585 | int ret = 0; |
| 2586 | |
| 2587 | *device_out = NULL; |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2588 | if (fs_info->fs_devices->seeding) { |
| 2589 | btrfs_err(fs_info, "the filesystem is a seed filesystem!"); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2590 | return -EINVAL; |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2591 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2592 | |
| 2593 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
| 2594 | fs_info->bdev_holder); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2595 | if (IS_ERR(bdev)) { |
| 2596 | btrfs_err(fs_info, "target device %s is invalid!", device_path); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2597 | return PTR_ERR(bdev); |
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 | filemap_write_and_wait(bdev->bd_inode->i_mapping); |
| 2601 | |
| 2602 | devices = &fs_info->fs_devices->devices; |
| 2603 | list_for_each_entry(device, devices, dev_list) { |
| 2604 | if (device->bdev == bdev) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2605 | btrfs_err(fs_info, |
| 2606 | "target device is in the filesystem!"); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2607 | ret = -EEXIST; |
| 2608 | goto error; |
| 2609 | } |
| 2610 | } |
| 2611 | |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2612 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2613 | if (i_size_read(bdev->bd_inode) < |
| 2614 | btrfs_device_get_total_bytes(srcdev)) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2615 | btrfs_err(fs_info, |
| 2616 | "target device is smaller than source device!"); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2617 | ret = -EINVAL; |
| 2618 | goto error; |
| 2619 | } |
| 2620 | |
| 2621 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2622 | device = btrfs_alloc_device(NULL, &devid, NULL); |
| 2623 | if (IS_ERR(device)) { |
| 2624 | ret = PTR_ERR(device); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2625 | goto error; |
| 2626 | } |
| 2627 | |
David Sterba | 6165572 | 2017-06-15 17:16:43 +0200 | [diff] [blame] | 2628 | name = rcu_string_strdup(device_path, GFP_KERNEL); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2629 | if (!name) { |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 2630 | free_device(device); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2631 | ret = -ENOMEM; |
| 2632 | goto error; |
| 2633 | } |
| 2634 | rcu_assign_pointer(device->name, name); |
| 2635 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2636 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2637 | set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2638 | device->generation = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2639 | device->io_width = fs_info->sectorsize; |
| 2640 | device->io_align = fs_info->sectorsize; |
| 2641 | device->sector_size = fs_info->sectorsize; |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2642 | device->total_bytes = btrfs_device_get_total_bytes(srcdev); |
| 2643 | device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev); |
| 2644 | device->bytes_used = btrfs_device_get_bytes_used(srcdev); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2645 | ASSERT(list_empty(&srcdev->resized_list)); |
| 2646 | device->commit_total_bytes = srcdev->commit_total_bytes; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 2647 | device->commit_bytes_used = device->bytes_used; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2648 | device->fs_info = fs_info; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2649 | device->bdev = bdev; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2650 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2651 | set_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2652 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2653 | device->dev_stats_valid = 1; |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 2654 | set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2655 | device->fs_devices = fs_info->fs_devices; |
| 2656 | list_add(&device->dev_list, &fs_info->fs_devices->devices); |
| 2657 | fs_info->fs_devices->num_devices++; |
| 2658 | fs_info->fs_devices->open_devices++; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2659 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2660 | |
| 2661 | *device_out = device; |
| 2662 | return ret; |
| 2663 | |
| 2664 | error: |
| 2665 | blkdev_put(bdev, FMODE_EXCL); |
| 2666 | return ret; |
| 2667 | } |
| 2668 | |
| 2669 | void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info, |
| 2670 | struct btrfs_device *tgtdev) |
| 2671 | { |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2672 | u32 sectorsize = fs_info->sectorsize; |
| 2673 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2674 | WARN_ON(fs_info->fs_devices->rw_devices == 0); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2675 | tgtdev->io_width = sectorsize; |
| 2676 | tgtdev->io_align = sectorsize; |
| 2677 | tgtdev->sector_size = sectorsize; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2678 | tgtdev->fs_info = fs_info; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 2679 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &tgtdev->dev_state); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2680 | } |
| 2681 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2682 | static noinline int btrfs_update_device(struct btrfs_trans_handle *trans, |
| 2683 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2684 | { |
| 2685 | int ret; |
| 2686 | struct btrfs_path *path; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2687 | struct btrfs_root *root = device->fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2688 | struct btrfs_dev_item *dev_item; |
| 2689 | struct extent_buffer *leaf; |
| 2690 | struct btrfs_key key; |
| 2691 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2692 | path = btrfs_alloc_path(); |
| 2693 | if (!path) |
| 2694 | return -ENOMEM; |
| 2695 | |
| 2696 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2697 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2698 | key.offset = device->devid; |
| 2699 | |
| 2700 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2701 | if (ret < 0) |
| 2702 | goto out; |
| 2703 | |
| 2704 | if (ret > 0) { |
| 2705 | ret = -ENOENT; |
| 2706 | goto out; |
| 2707 | } |
| 2708 | |
| 2709 | leaf = path->nodes[0]; |
| 2710 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 2711 | |
| 2712 | btrfs_set_device_id(leaf, dev_item, device->devid); |
| 2713 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 2714 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 2715 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 2716 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2717 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 2718 | btrfs_device_get_disk_total_bytes(device)); |
| 2719 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 2720 | btrfs_device_get_bytes_used(device)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2721 | btrfs_mark_buffer_dirty(leaf); |
| 2722 | |
| 2723 | out: |
| 2724 | btrfs_free_path(path); |
| 2725 | return ret; |
| 2726 | } |
| 2727 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2728 | int btrfs_grow_device(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2729 | struct btrfs_device *device, u64 new_size) |
| 2730 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2731 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 2732 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2733 | struct btrfs_fs_devices *fs_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2734 | u64 old_total; |
| 2735 | u64 diff; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2736 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 2737 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2738 | return -EACCES; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2739 | |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2740 | new_size = round_down(new_size, fs_info->sectorsize); |
| 2741 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2742 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2743 | old_total = btrfs_super_total_bytes(super_copy); |
Nikolay Borisov | 0e4324a | 2017-07-21 11:28:24 +0300 | [diff] [blame] | 2744 | diff = round_down(new_size - device->total_bytes, fs_info->sectorsize); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2745 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2746 | if (new_size <= device->total_bytes || |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 2747 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2748 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2749 | return -EINVAL; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2750 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2751 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2752 | fs_devices = fs_info->fs_devices; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2753 | |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2754 | btrfs_set_super_total_bytes(super_copy, |
| 2755 | round_down(old_total + diff, fs_info->sectorsize)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2756 | device->fs_devices->total_rw_bytes += diff; |
| 2757 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2758 | btrfs_device_set_total_bytes(device, new_size); |
| 2759 | btrfs_device_set_disk_total_bytes(device, new_size); |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2760 | btrfs_clear_space_info_full(device->fs_info); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2761 | if (list_empty(&device->resized_list)) |
| 2762 | list_add_tail(&device->resized_list, |
| 2763 | &fs_devices->resized_devices); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2764 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 2765 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2766 | return btrfs_update_device(trans, device); |
| 2767 | } |
| 2768 | |
| 2769 | static int btrfs_free_chunk(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2770 | struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2771 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2772 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2773 | int ret; |
| 2774 | struct btrfs_path *path; |
| 2775 | struct btrfs_key key; |
| 2776 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2777 | path = btrfs_alloc_path(); |
| 2778 | if (!path) |
| 2779 | return -ENOMEM; |
| 2780 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2781 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2782 | key.offset = chunk_offset; |
| 2783 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 2784 | |
| 2785 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2786 | if (ret < 0) |
| 2787 | goto out; |
| 2788 | else if (ret > 0) { /* Logic error or corruption */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2789 | btrfs_handle_fs_error(fs_info, -ENOENT, |
| 2790 | "Failed lookup while freeing chunk."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2791 | ret = -ENOENT; |
| 2792 | goto out; |
| 2793 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2794 | |
| 2795 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2796 | if (ret < 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2797 | btrfs_handle_fs_error(fs_info, ret, |
| 2798 | "Failed to delete chunk item."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2799 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2800 | btrfs_free_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 2801 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2802 | } |
| 2803 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2804 | 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] | 2805 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2806 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2807 | struct btrfs_disk_key *disk_key; |
| 2808 | struct btrfs_chunk *chunk; |
| 2809 | u8 *ptr; |
| 2810 | int ret = 0; |
| 2811 | u32 num_stripes; |
| 2812 | u32 array_size; |
| 2813 | u32 len = 0; |
| 2814 | u32 cur; |
| 2815 | struct btrfs_key key; |
| 2816 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2817 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2818 | array_size = btrfs_super_sys_array_size(super_copy); |
| 2819 | |
| 2820 | ptr = super_copy->sys_chunk_array; |
| 2821 | cur = 0; |
| 2822 | |
| 2823 | while (cur < array_size) { |
| 2824 | disk_key = (struct btrfs_disk_key *)ptr; |
| 2825 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 2826 | |
| 2827 | len = sizeof(*disk_key); |
| 2828 | |
| 2829 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 2830 | chunk = (struct btrfs_chunk *)(ptr + len); |
| 2831 | num_stripes = btrfs_stack_chunk_num_stripes(chunk); |
| 2832 | len += btrfs_chunk_item_size(num_stripes); |
| 2833 | } else { |
| 2834 | ret = -EIO; |
| 2835 | break; |
| 2836 | } |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2837 | if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID && |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2838 | key.offset == chunk_offset) { |
| 2839 | memmove(ptr, ptr + len, array_size - (cur + len)); |
| 2840 | array_size -= len; |
| 2841 | btrfs_set_super_sys_array_size(super_copy, array_size); |
| 2842 | } else { |
| 2843 | ptr += len; |
| 2844 | cur += len; |
| 2845 | } |
| 2846 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2847 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2848 | return ret; |
| 2849 | } |
| 2850 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2851 | static struct extent_map *get_chunk_map(struct btrfs_fs_info *fs_info, |
| 2852 | u64 logical, u64 length) |
| 2853 | { |
| 2854 | struct extent_map_tree *em_tree; |
| 2855 | struct extent_map *em; |
| 2856 | |
| 2857 | em_tree = &fs_info->mapping_tree.map_tree; |
| 2858 | read_lock(&em_tree->lock); |
| 2859 | em = lookup_extent_mapping(em_tree, logical, length); |
| 2860 | read_unlock(&em_tree->lock); |
| 2861 | |
| 2862 | if (!em) { |
| 2863 | btrfs_crit(fs_info, "unable to find logical %llu length %llu", |
| 2864 | logical, length); |
| 2865 | return ERR_PTR(-EINVAL); |
| 2866 | } |
| 2867 | |
| 2868 | if (em->start > logical || em->start + em->len < logical) { |
| 2869 | btrfs_crit(fs_info, |
| 2870 | "found a bad mapping, wanted %llu-%llu, found %llu-%llu", |
| 2871 | logical, length, em->start, em->start + em->len); |
| 2872 | free_extent_map(em); |
| 2873 | return ERR_PTR(-EINVAL); |
| 2874 | } |
| 2875 | |
| 2876 | /* callers are responsible for dropping em's ref. */ |
| 2877 | return em; |
| 2878 | } |
| 2879 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2880 | int btrfs_remove_chunk(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2881 | struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2882 | { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2883 | struct extent_map *em; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2884 | struct map_lookup *map; |
| 2885 | u64 dev_extent_len = 0; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2886 | int i, ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2887 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2888 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2889 | em = get_chunk_map(fs_info, chunk_offset, 1); |
| 2890 | if (IS_ERR(em)) { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2891 | /* |
| 2892 | * 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] | 2893 | * user having built with ASSERT enabled, so if ASSERT doesn't |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2894 | * do anything we still error out. |
| 2895 | */ |
| 2896 | ASSERT(0); |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2897 | return PTR_ERR(em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2898 | } |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 2899 | map = em->map_lookup; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2900 | mutex_lock(&fs_info->chunk_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2901 | check_system_chunk(trans, fs_info, map->type); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2902 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2903 | |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2904 | /* |
| 2905 | * Take the device list mutex to prevent races with the final phase of |
| 2906 | * a device replace operation that replaces the device object associated |
| 2907 | * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()). |
| 2908 | */ |
| 2909 | mutex_lock(&fs_devices->device_list_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2910 | for (i = 0; i < map->num_stripes; i++) { |
| 2911 | struct btrfs_device *device = map->stripes[i].dev; |
| 2912 | ret = btrfs_free_dev_extent(trans, device, |
| 2913 | map->stripes[i].physical, |
| 2914 | &dev_extent_len); |
| 2915 | if (ret) { |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2916 | mutex_unlock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2917 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2918 | goto out; |
| 2919 | } |
| 2920 | |
| 2921 | if (device->bytes_used > 0) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2922 | mutex_lock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2923 | btrfs_device_set_bytes_used(device, |
| 2924 | device->bytes_used - dev_extent_len); |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 2925 | atomic64_add(dev_extent_len, &fs_info->free_chunk_space); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2926 | btrfs_clear_space_info_full(fs_info); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2927 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2928 | } |
| 2929 | |
| 2930 | if (map->stripes[i].dev) { |
| 2931 | ret = btrfs_update_device(trans, map->stripes[i].dev); |
| 2932 | if (ret) { |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2933 | mutex_unlock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2934 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2935 | goto out; |
| 2936 | } |
| 2937 | } |
| 2938 | } |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2939 | mutex_unlock(&fs_devices->device_list_mutex); |
| 2940 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2941 | ret = btrfs_free_chunk(trans, fs_info, chunk_offset); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2942 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2943 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2944 | goto out; |
| 2945 | } |
| 2946 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2947 | trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2948 | |
| 2949 | if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2950 | ret = btrfs_del_sys_chunk(fs_info, chunk_offset); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2951 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2952 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2953 | goto out; |
| 2954 | } |
| 2955 | } |
| 2956 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2957 | ret = btrfs_remove_block_group(trans, fs_info, chunk_offset, em); |
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 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2963 | out: |
| 2964 | /* once for us */ |
| 2965 | free_extent_map(em); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2966 | return ret; |
| 2967 | } |
| 2968 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2969 | 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] | 2970 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2971 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 2972 | struct btrfs_trans_handle *trans; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2973 | int ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2974 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2975 | /* |
| 2976 | * Prevent races with automatic removal of unused block groups. |
| 2977 | * After we relocate and before we remove the chunk with offset |
| 2978 | * chunk_offset, automatic removal of the block group can kick in, |
| 2979 | * resulting in a failure when calling btrfs_remove_chunk() below. |
| 2980 | * |
| 2981 | * Make sure to acquire this mutex before doing a tree search (dev |
| 2982 | * or chunk trees) to find chunks. Otherwise the cleaner kthread might |
| 2983 | * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after |
| 2984 | * we release the path used to search the chunk/dev tree and before |
| 2985 | * the current task acquires this mutex and calls us. |
| 2986 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2987 | ASSERT(mutex_is_locked(&fs_info->delete_unused_bgs_mutex)); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2988 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2989 | ret = btrfs_can_relocate(fs_info, chunk_offset); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2990 | if (ret) |
| 2991 | return -ENOSPC; |
| 2992 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2993 | /* step one, relocate all the extents inside this chunk */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2994 | btrfs_scrub_pause(fs_info); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2995 | ret = btrfs_relocate_block_group(fs_info, chunk_offset); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2996 | btrfs_scrub_continue(fs_info); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2997 | if (ret) |
| 2998 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2999 | |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3000 | trans = btrfs_start_trans_remove_block_group(root->fs_info, |
| 3001 | chunk_offset); |
| 3002 | if (IS_ERR(trans)) { |
| 3003 | ret = PTR_ERR(trans); |
| 3004 | btrfs_handle_fs_error(root->fs_info, ret, NULL); |
| 3005 | return ret; |
| 3006 | } |
Naohiro Aota | 5d8eb6f | 2016-09-02 16:46:32 +0900 | [diff] [blame] | 3007 | |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3008 | /* |
| 3009 | * step two, delete the device extents and the |
| 3010 | * chunk tree entries |
| 3011 | */ |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3012 | ret = btrfs_remove_chunk(trans, fs_info, chunk_offset); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3013 | btrfs_end_transaction(trans); |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 3014 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3015 | } |
| 3016 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3017 | static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3018 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3019 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3020 | struct btrfs_path *path; |
| 3021 | struct extent_buffer *leaf; |
| 3022 | struct btrfs_chunk *chunk; |
| 3023 | struct btrfs_key key; |
| 3024 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3025 | u64 chunk_type; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3026 | bool retried = false; |
| 3027 | int failed = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3028 | int ret; |
| 3029 | |
| 3030 | path = btrfs_alloc_path(); |
| 3031 | if (!path) |
| 3032 | return -ENOMEM; |
| 3033 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3034 | again: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3035 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 3036 | key.offset = (u64)-1; |
| 3037 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 3038 | |
| 3039 | while (1) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3040 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3041 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3042 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3043 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3044 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3045 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3046 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3047 | |
| 3048 | ret = btrfs_previous_item(chunk_root, path, key.objectid, |
| 3049 | key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3050 | if (ret) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3051 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3052 | if (ret < 0) |
| 3053 | goto error; |
| 3054 | if (ret > 0) |
| 3055 | break; |
| 3056 | |
| 3057 | leaf = path->nodes[0]; |
| 3058 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 3059 | |
| 3060 | chunk = btrfs_item_ptr(leaf, path->slots[0], |
| 3061 | struct btrfs_chunk); |
| 3062 | chunk_type = btrfs_chunk_type(leaf, chunk); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3063 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3064 | |
| 3065 | if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3066 | ret = btrfs_relocate_chunk(fs_info, found_key.offset); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3067 | if (ret == -ENOSPC) |
| 3068 | failed++; |
HIMANGI SARAOGI | 1458665 | 2014-07-09 03:51:41 +0530 | [diff] [blame] | 3069 | else |
| 3070 | BUG_ON(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3071 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3072 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3073 | |
| 3074 | if (found_key.offset == 0) |
| 3075 | break; |
| 3076 | key.offset = found_key.offset - 1; |
| 3077 | } |
| 3078 | ret = 0; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3079 | if (failed && !retried) { |
| 3080 | failed = 0; |
| 3081 | retried = true; |
| 3082 | goto again; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 3083 | } else if (WARN_ON(failed && retried)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3084 | ret = -ENOSPC; |
| 3085 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3086 | error: |
| 3087 | btrfs_free_path(path); |
| 3088 | return ret; |
| 3089 | } |
| 3090 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3091 | /* |
| 3092 | * return 1 : allocate a data chunk successfully, |
| 3093 | * return <0: errors during allocating a data chunk, |
| 3094 | * return 0 : no need to allocate a data chunk. |
| 3095 | */ |
| 3096 | static int btrfs_may_alloc_data_chunk(struct btrfs_fs_info *fs_info, |
| 3097 | u64 chunk_offset) |
| 3098 | { |
| 3099 | struct btrfs_block_group_cache *cache; |
| 3100 | u64 bytes_used; |
| 3101 | u64 chunk_type; |
| 3102 | |
| 3103 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3104 | ASSERT(cache); |
| 3105 | chunk_type = cache->flags; |
| 3106 | btrfs_put_block_group(cache); |
| 3107 | |
| 3108 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) { |
| 3109 | spin_lock(&fs_info->data_sinfo->lock); |
| 3110 | bytes_used = fs_info->data_sinfo->bytes_used; |
| 3111 | spin_unlock(&fs_info->data_sinfo->lock); |
| 3112 | |
| 3113 | if (!bytes_used) { |
| 3114 | struct btrfs_trans_handle *trans; |
| 3115 | int ret; |
| 3116 | |
| 3117 | trans = btrfs_join_transaction(fs_info->tree_root); |
| 3118 | if (IS_ERR(trans)) |
| 3119 | return PTR_ERR(trans); |
| 3120 | |
| 3121 | ret = btrfs_force_chunk_alloc(trans, fs_info, |
| 3122 | BTRFS_BLOCK_GROUP_DATA); |
| 3123 | btrfs_end_transaction(trans); |
| 3124 | if (ret < 0) |
| 3125 | return ret; |
| 3126 | |
| 3127 | return 1; |
| 3128 | } |
| 3129 | } |
| 3130 | return 0; |
| 3131 | } |
| 3132 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3133 | static int insert_balance_item(struct btrfs_fs_info *fs_info, |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3134 | struct btrfs_balance_control *bctl) |
| 3135 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3136 | struct btrfs_root *root = fs_info->tree_root; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3137 | struct btrfs_trans_handle *trans; |
| 3138 | struct btrfs_balance_item *item; |
| 3139 | struct btrfs_disk_balance_args disk_bargs; |
| 3140 | struct btrfs_path *path; |
| 3141 | struct extent_buffer *leaf; |
| 3142 | struct btrfs_key key; |
| 3143 | int ret, err; |
| 3144 | |
| 3145 | path = btrfs_alloc_path(); |
| 3146 | if (!path) |
| 3147 | return -ENOMEM; |
| 3148 | |
| 3149 | trans = btrfs_start_transaction(root, 0); |
| 3150 | if (IS_ERR(trans)) { |
| 3151 | btrfs_free_path(path); |
| 3152 | return PTR_ERR(trans); |
| 3153 | } |
| 3154 | |
| 3155 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3156 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3157 | key.offset = 0; |
| 3158 | |
| 3159 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 3160 | sizeof(*item)); |
| 3161 | if (ret) |
| 3162 | goto out; |
| 3163 | |
| 3164 | leaf = path->nodes[0]; |
| 3165 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 3166 | |
David Sterba | b159fa2 | 2016-11-08 18:09:03 +0100 | [diff] [blame] | 3167 | memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item)); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3168 | |
| 3169 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data); |
| 3170 | btrfs_set_balance_data(leaf, item, &disk_bargs); |
| 3171 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta); |
| 3172 | btrfs_set_balance_meta(leaf, item, &disk_bargs); |
| 3173 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys); |
| 3174 | btrfs_set_balance_sys(leaf, item, &disk_bargs); |
| 3175 | |
| 3176 | btrfs_set_balance_flags(leaf, item, bctl->flags); |
| 3177 | |
| 3178 | btrfs_mark_buffer_dirty(leaf); |
| 3179 | out: |
| 3180 | btrfs_free_path(path); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3181 | err = btrfs_commit_transaction(trans); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3182 | if (err && !ret) |
| 3183 | ret = err; |
| 3184 | return ret; |
| 3185 | } |
| 3186 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3187 | static int del_balance_item(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3188 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3189 | struct btrfs_root *root = fs_info->tree_root; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3190 | struct btrfs_trans_handle *trans; |
| 3191 | struct btrfs_path *path; |
| 3192 | struct btrfs_key key; |
| 3193 | int ret, err; |
| 3194 | |
| 3195 | path = btrfs_alloc_path(); |
| 3196 | if (!path) |
| 3197 | return -ENOMEM; |
| 3198 | |
| 3199 | trans = btrfs_start_transaction(root, 0); |
| 3200 | if (IS_ERR(trans)) { |
| 3201 | btrfs_free_path(path); |
| 3202 | return PTR_ERR(trans); |
| 3203 | } |
| 3204 | |
| 3205 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3206 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3207 | key.offset = 0; |
| 3208 | |
| 3209 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 3210 | if (ret < 0) |
| 3211 | goto out; |
| 3212 | if (ret > 0) { |
| 3213 | ret = -ENOENT; |
| 3214 | goto out; |
| 3215 | } |
| 3216 | |
| 3217 | ret = btrfs_del_item(trans, root, path); |
| 3218 | out: |
| 3219 | btrfs_free_path(path); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3220 | err = btrfs_commit_transaction(trans); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3221 | if (err && !ret) |
| 3222 | ret = err; |
| 3223 | return ret; |
| 3224 | } |
| 3225 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3226 | /* |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3227 | * This is a heuristic used to reduce the number of chunks balanced on |
| 3228 | * resume after balance was interrupted. |
| 3229 | */ |
| 3230 | static void update_balance_args(struct btrfs_balance_control *bctl) |
| 3231 | { |
| 3232 | /* |
| 3233 | * Turn on soft mode for chunk types that were being converted. |
| 3234 | */ |
| 3235 | if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3236 | bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3237 | if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3238 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3239 | if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3240 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3241 | |
| 3242 | /* |
| 3243 | * Turn on usage filter if is not already used. The idea is |
| 3244 | * that chunks that we have already balanced should be |
| 3245 | * reasonably full. Don't do it for chunks that are being |
| 3246 | * converted - that will keep us from relocating unconverted |
| 3247 | * (albeit full) chunks. |
| 3248 | */ |
| 3249 | if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3250 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3251 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3252 | bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3253 | bctl->data.usage = 90; |
| 3254 | } |
| 3255 | if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3256 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3257 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3258 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3259 | bctl->sys.usage = 90; |
| 3260 | } |
| 3261 | if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3262 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3263 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3264 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3265 | bctl->meta.usage = 90; |
| 3266 | } |
| 3267 | } |
| 3268 | |
| 3269 | /* |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3270 | * Should be called with both balance and volume mutexes held to |
| 3271 | * serialize other volume operations (add_dev/rm_dev/resize) with |
| 3272 | * restriper. Same goes for unset_balance_control. |
| 3273 | */ |
| 3274 | static void set_balance_control(struct btrfs_balance_control *bctl) |
| 3275 | { |
| 3276 | struct btrfs_fs_info *fs_info = bctl->fs_info; |
| 3277 | |
| 3278 | BUG_ON(fs_info->balance_ctl); |
| 3279 | |
| 3280 | spin_lock(&fs_info->balance_lock); |
| 3281 | fs_info->balance_ctl = bctl; |
| 3282 | spin_unlock(&fs_info->balance_lock); |
| 3283 | } |
| 3284 | |
| 3285 | static void unset_balance_control(struct btrfs_fs_info *fs_info) |
| 3286 | { |
| 3287 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 3288 | |
| 3289 | BUG_ON(!fs_info->balance_ctl); |
| 3290 | |
| 3291 | spin_lock(&fs_info->balance_lock); |
| 3292 | fs_info->balance_ctl = NULL; |
| 3293 | spin_unlock(&fs_info->balance_lock); |
| 3294 | |
| 3295 | kfree(bctl); |
| 3296 | } |
| 3297 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3298 | /* |
| 3299 | * Balance filters. Return 1 if chunk should be filtered out |
| 3300 | * (should not be balanced). |
| 3301 | */ |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3302 | static int chunk_profiles_filter(u64 chunk_type, |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3303 | struct btrfs_balance_args *bargs) |
| 3304 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3305 | chunk_type = chunk_to_extended(chunk_type) & |
| 3306 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3307 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3308 | if (bargs->profiles & chunk_type) |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3309 | return 0; |
| 3310 | |
| 3311 | return 1; |
| 3312 | } |
| 3313 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3314 | 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] | 3315 | struct btrfs_balance_args *bargs) |
| 3316 | { |
| 3317 | struct btrfs_block_group_cache *cache; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3318 | u64 chunk_used; |
| 3319 | u64 user_thresh_min; |
| 3320 | u64 user_thresh_max; |
| 3321 | int ret = 1; |
| 3322 | |
| 3323 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3324 | chunk_used = btrfs_block_group_used(&cache->item); |
| 3325 | |
| 3326 | if (bargs->usage_min == 0) |
| 3327 | user_thresh_min = 0; |
| 3328 | else |
| 3329 | user_thresh_min = div_factor_fine(cache->key.offset, |
| 3330 | bargs->usage_min); |
| 3331 | |
| 3332 | if (bargs->usage_max == 0) |
| 3333 | user_thresh_max = 1; |
| 3334 | else if (bargs->usage_max > 100) |
| 3335 | user_thresh_max = cache->key.offset; |
| 3336 | else |
| 3337 | user_thresh_max = div_factor_fine(cache->key.offset, |
| 3338 | bargs->usage_max); |
| 3339 | |
| 3340 | if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max) |
| 3341 | ret = 0; |
| 3342 | |
| 3343 | btrfs_put_block_group(cache); |
| 3344 | return ret; |
| 3345 | } |
| 3346 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3347 | static int chunk_usage_filter(struct btrfs_fs_info *fs_info, |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3348 | u64 chunk_offset, struct btrfs_balance_args *bargs) |
| 3349 | { |
| 3350 | struct btrfs_block_group_cache *cache; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3351 | u64 chunk_used, user_thresh; |
| 3352 | int ret = 1; |
| 3353 | |
| 3354 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3355 | chunk_used = btrfs_block_group_used(&cache->item); |
| 3356 | |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3357 | if (bargs->usage_min == 0) |
Ilya Dryomov | 3e39cea | 2013-02-12 16:28:59 +0000 | [diff] [blame] | 3358 | user_thresh = 1; |
Ilya Dryomov | a105bb8 | 2013-01-21 15:15:56 +0200 | [diff] [blame] | 3359 | else if (bargs->usage > 100) |
| 3360 | user_thresh = cache->key.offset; |
| 3361 | else |
| 3362 | user_thresh = div_factor_fine(cache->key.offset, |
| 3363 | bargs->usage); |
| 3364 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3365 | if (chunk_used < user_thresh) |
| 3366 | ret = 0; |
| 3367 | |
| 3368 | btrfs_put_block_group(cache); |
| 3369 | return ret; |
| 3370 | } |
| 3371 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3372 | static int chunk_devid_filter(struct extent_buffer *leaf, |
| 3373 | struct btrfs_chunk *chunk, |
| 3374 | struct btrfs_balance_args *bargs) |
| 3375 | { |
| 3376 | struct btrfs_stripe *stripe; |
| 3377 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3378 | int i; |
| 3379 | |
| 3380 | for (i = 0; i < num_stripes; i++) { |
| 3381 | stripe = btrfs_stripe_nr(chunk, i); |
| 3382 | if (btrfs_stripe_devid(leaf, stripe) == bargs->devid) |
| 3383 | return 0; |
| 3384 | } |
| 3385 | |
| 3386 | return 1; |
| 3387 | } |
| 3388 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3389 | /* [pstart, pend) */ |
| 3390 | static int chunk_drange_filter(struct extent_buffer *leaf, |
| 3391 | struct btrfs_chunk *chunk, |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3392 | struct btrfs_balance_args *bargs) |
| 3393 | { |
| 3394 | struct btrfs_stripe *stripe; |
| 3395 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3396 | u64 stripe_offset; |
| 3397 | u64 stripe_length; |
| 3398 | int factor; |
| 3399 | int i; |
| 3400 | |
| 3401 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID)) |
| 3402 | return 0; |
| 3403 | |
| 3404 | if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3405 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 3406 | factor = num_stripes / 2; |
| 3407 | } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) { |
| 3408 | factor = num_stripes - 1; |
| 3409 | } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) { |
| 3410 | factor = num_stripes - 2; |
| 3411 | } else { |
| 3412 | factor = num_stripes; |
| 3413 | } |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3414 | |
| 3415 | for (i = 0; i < num_stripes; i++) { |
| 3416 | stripe = btrfs_stripe_nr(chunk, i); |
| 3417 | if (btrfs_stripe_devid(leaf, stripe) != bargs->devid) |
| 3418 | continue; |
| 3419 | |
| 3420 | stripe_offset = btrfs_stripe_offset(leaf, stripe); |
| 3421 | stripe_length = btrfs_chunk_length(leaf, chunk); |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 3422 | stripe_length = div_u64(stripe_length, factor); |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3423 | |
| 3424 | if (stripe_offset < bargs->pend && |
| 3425 | stripe_offset + stripe_length > bargs->pstart) |
| 3426 | return 0; |
| 3427 | } |
| 3428 | |
| 3429 | return 1; |
| 3430 | } |
| 3431 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3432 | /* [vstart, vend) */ |
| 3433 | static int chunk_vrange_filter(struct extent_buffer *leaf, |
| 3434 | struct btrfs_chunk *chunk, |
| 3435 | u64 chunk_offset, |
| 3436 | struct btrfs_balance_args *bargs) |
| 3437 | { |
| 3438 | if (chunk_offset < bargs->vend && |
| 3439 | chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart) |
| 3440 | /* at least part of the chunk is inside this vrange */ |
| 3441 | return 0; |
| 3442 | |
| 3443 | return 1; |
| 3444 | } |
| 3445 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3446 | static int chunk_stripes_range_filter(struct extent_buffer *leaf, |
| 3447 | struct btrfs_chunk *chunk, |
| 3448 | struct btrfs_balance_args *bargs) |
| 3449 | { |
| 3450 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3451 | |
| 3452 | if (bargs->stripes_min <= num_stripes |
| 3453 | && num_stripes <= bargs->stripes_max) |
| 3454 | return 0; |
| 3455 | |
| 3456 | return 1; |
| 3457 | } |
| 3458 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3459 | static int chunk_soft_convert_filter(u64 chunk_type, |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3460 | struct btrfs_balance_args *bargs) |
| 3461 | { |
| 3462 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT)) |
| 3463 | return 0; |
| 3464 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3465 | chunk_type = chunk_to_extended(chunk_type) & |
| 3466 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3467 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3468 | if (bargs->target == chunk_type) |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3469 | return 1; |
| 3470 | |
| 3471 | return 0; |
| 3472 | } |
| 3473 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3474 | static int should_balance_chunk(struct btrfs_fs_info *fs_info, |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3475 | struct extent_buffer *leaf, |
| 3476 | struct btrfs_chunk *chunk, u64 chunk_offset) |
| 3477 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3478 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3479 | struct btrfs_balance_args *bargs = NULL; |
| 3480 | u64 chunk_type = btrfs_chunk_type(leaf, chunk); |
| 3481 | |
| 3482 | /* type filter */ |
| 3483 | if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) & |
| 3484 | (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) { |
| 3485 | return 0; |
| 3486 | } |
| 3487 | |
| 3488 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3489 | bargs = &bctl->data; |
| 3490 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3491 | bargs = &bctl->sys; |
| 3492 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3493 | bargs = &bctl->meta; |
| 3494 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3495 | /* profiles filter */ |
| 3496 | if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) && |
| 3497 | chunk_profiles_filter(chunk_type, bargs)) { |
| 3498 | return 0; |
| 3499 | } |
| 3500 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3501 | /* usage filter */ |
| 3502 | if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3503 | chunk_usage_filter(fs_info, chunk_offset, bargs)) { |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3504 | return 0; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3505 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3506 | chunk_usage_range_filter(fs_info, chunk_offset, bargs)) { |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3507 | return 0; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3508 | } |
| 3509 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3510 | /* devid filter */ |
| 3511 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) && |
| 3512 | chunk_devid_filter(leaf, chunk, bargs)) { |
| 3513 | return 0; |
| 3514 | } |
| 3515 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3516 | /* drange filter, makes sense only with devid filter */ |
| 3517 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) && |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 3518 | chunk_drange_filter(leaf, chunk, bargs)) { |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3519 | return 0; |
| 3520 | } |
| 3521 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3522 | /* vrange filter */ |
| 3523 | if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) && |
| 3524 | chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) { |
| 3525 | return 0; |
| 3526 | } |
| 3527 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3528 | /* stripes filter */ |
| 3529 | if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) && |
| 3530 | chunk_stripes_range_filter(leaf, chunk, bargs)) { |
| 3531 | return 0; |
| 3532 | } |
| 3533 | |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3534 | /* soft profile changing mode */ |
| 3535 | if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) && |
| 3536 | chunk_soft_convert_filter(chunk_type, bargs)) { |
| 3537 | return 0; |
| 3538 | } |
| 3539 | |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3540 | /* |
| 3541 | * limited by count, must be the last filter |
| 3542 | */ |
| 3543 | if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) { |
| 3544 | if (bargs->limit == 0) |
| 3545 | return 0; |
| 3546 | else |
| 3547 | bargs->limit--; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3548 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) { |
| 3549 | /* |
| 3550 | * Same logic as the 'limit' filter; the minimum cannot be |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 3551 | * determined here because we do not have the global information |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3552 | * about the count of all chunks that satisfy the filters. |
| 3553 | */ |
| 3554 | if (bargs->limit_max == 0) |
| 3555 | return 0; |
| 3556 | else |
| 3557 | bargs->limit_max--; |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3558 | } |
| 3559 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3560 | return 1; |
| 3561 | } |
| 3562 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3563 | static int __btrfs_balance(struct btrfs_fs_info *fs_info) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3564 | { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3565 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3566 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
| 3567 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 3568 | struct list_head *devices; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3569 | struct btrfs_device *device; |
| 3570 | u64 old_size; |
| 3571 | u64 size_to_free; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3572 | u64 chunk_type; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3573 | struct btrfs_chunk *chunk; |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3574 | struct btrfs_path *path = NULL; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3575 | struct btrfs_key key; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3576 | struct btrfs_key found_key; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3577 | struct btrfs_trans_handle *trans; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3578 | struct extent_buffer *leaf; |
| 3579 | int slot; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3580 | int ret; |
| 3581 | int enospc_errors = 0; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3582 | bool counting = true; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3583 | /* 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] | 3584 | u64 limit_data = bctl->data.limit; |
| 3585 | u64 limit_meta = bctl->meta.limit; |
| 3586 | u64 limit_sys = bctl->sys.limit; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3587 | u32 count_data = 0; |
| 3588 | u32 count_meta = 0; |
| 3589 | u32 count_sys = 0; |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3590 | int chunk_reserved = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3591 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3592 | /* step one make some room on all the devices */ |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3593 | devices = &fs_info->fs_devices->devices; |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 3594 | list_for_each_entry(device, devices, dev_list) { |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 3595 | old_size = btrfs_device_get_total_bytes(device); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3596 | size_to_free = div_factor(old_size, 1); |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3597 | size_to_free = min_t(u64, size_to_free, SZ_1M); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 3598 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) || |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 3599 | btrfs_device_get_total_bytes(device) - |
| 3600 | btrfs_device_get_bytes_used(device) > size_to_free || |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 3601 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3602 | continue; |
| 3603 | |
| 3604 | ret = btrfs_shrink_device(device, old_size - size_to_free); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3605 | if (ret == -ENOSPC) |
| 3606 | break; |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3607 | if (ret) { |
| 3608 | /* btrfs_shrink_device never returns ret > 0 */ |
| 3609 | WARN_ON(ret > 0); |
| 3610 | goto error; |
| 3611 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3612 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3613 | trans = btrfs_start_transaction(dev_root, 0); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3614 | if (IS_ERR(trans)) { |
| 3615 | ret = PTR_ERR(trans); |
| 3616 | btrfs_info_in_rcu(fs_info, |
| 3617 | "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu", |
| 3618 | rcu_str_deref(device->name), ret, |
| 3619 | old_size, old_size - size_to_free); |
| 3620 | goto error; |
| 3621 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3622 | |
| 3623 | ret = btrfs_grow_device(trans, device, old_size); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3624 | if (ret) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3625 | btrfs_end_transaction(trans); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3626 | /* btrfs_grow_device never returns ret > 0 */ |
| 3627 | WARN_ON(ret > 0); |
| 3628 | btrfs_info_in_rcu(fs_info, |
| 3629 | "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu", |
| 3630 | rcu_str_deref(device->name), ret, |
| 3631 | old_size, old_size - size_to_free); |
| 3632 | goto error; |
| 3633 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3634 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3635 | btrfs_end_transaction(trans); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3636 | } |
| 3637 | |
| 3638 | /* step two, relocate all the chunks */ |
| 3639 | path = btrfs_alloc_path(); |
Mark Fasheh | 17e9f79 | 2011-07-12 11:10:23 -0700 | [diff] [blame] | 3640 | if (!path) { |
| 3641 | ret = -ENOMEM; |
| 3642 | goto error; |
| 3643 | } |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3644 | |
| 3645 | /* zero out stat counters */ |
| 3646 | spin_lock(&fs_info->balance_lock); |
| 3647 | memset(&bctl->stat, 0, sizeof(bctl->stat)); |
| 3648 | spin_unlock(&fs_info->balance_lock); |
| 3649 | again: |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3650 | if (!counting) { |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3651 | /* |
| 3652 | * The single value limit and min/max limits use the same bytes |
| 3653 | * in the |
| 3654 | */ |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3655 | bctl->data.limit = limit_data; |
| 3656 | bctl->meta.limit = limit_meta; |
| 3657 | bctl->sys.limit = limit_sys; |
| 3658 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3659 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 3660 | key.offset = (u64)-1; |
| 3661 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 3662 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3663 | while (1) { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3664 | if ((!counting && atomic_read(&fs_info->balance_pause_req)) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3665 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3666 | ret = -ECANCELED; |
| 3667 | goto error; |
| 3668 | } |
| 3669 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3670 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3671 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3672 | if (ret < 0) { |
| 3673 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3674 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3675 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3676 | |
| 3677 | /* |
| 3678 | * this shouldn't happen, it means the last relocate |
| 3679 | * failed |
| 3680 | */ |
| 3681 | if (ret == 0) |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3682 | BUG(); /* FIXME break ? */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3683 | |
| 3684 | ret = btrfs_previous_item(chunk_root, path, 0, |
| 3685 | BTRFS_CHUNK_ITEM_KEY); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3686 | if (ret) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3687 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3688 | ret = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3689 | break; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3690 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3691 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3692 | leaf = path->nodes[0]; |
| 3693 | slot = path->slots[0]; |
| 3694 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 3695 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3696 | if (found_key.objectid != key.objectid) { |
| 3697 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3698 | break; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3699 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3700 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3701 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3702 | chunk_type = btrfs_chunk_type(leaf, chunk); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3703 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3704 | if (!counting) { |
| 3705 | spin_lock(&fs_info->balance_lock); |
| 3706 | bctl->stat.considered++; |
| 3707 | spin_unlock(&fs_info->balance_lock); |
| 3708 | } |
| 3709 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3710 | ret = should_balance_chunk(fs_info, leaf, chunk, |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3711 | found_key.offset); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3712 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3713 | btrfs_release_path(path); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3714 | if (!ret) { |
| 3715 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3716 | goto loop; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3717 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3718 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3719 | if (counting) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3720 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3721 | spin_lock(&fs_info->balance_lock); |
| 3722 | bctl->stat.expected++; |
| 3723 | spin_unlock(&fs_info->balance_lock); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3724 | |
| 3725 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3726 | count_data++; |
| 3727 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3728 | count_sys++; |
| 3729 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3730 | count_meta++; |
| 3731 | |
| 3732 | goto loop; |
| 3733 | } |
| 3734 | |
| 3735 | /* |
| 3736 | * Apply limit_min filter, no need to check if the LIMITS |
| 3737 | * filter is used, limit_min is 0 by default |
| 3738 | */ |
| 3739 | if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) && |
| 3740 | count_data < bctl->data.limit_min) |
| 3741 | || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) && |
| 3742 | count_meta < bctl->meta.limit_min) |
| 3743 | || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) && |
| 3744 | count_sys < bctl->sys.limit_min)) { |
| 3745 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3746 | goto loop; |
| 3747 | } |
| 3748 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3749 | if (!chunk_reserved) { |
| 3750 | /* |
| 3751 | * We may be relocating the only data chunk we have, |
| 3752 | * which could potentially end up with losing data's |
| 3753 | * raid profile, so lets allocate an empty one in |
| 3754 | * advance. |
| 3755 | */ |
| 3756 | ret = btrfs_may_alloc_data_chunk(fs_info, |
| 3757 | found_key.offset); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3758 | if (ret < 0) { |
| 3759 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
| 3760 | goto error; |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 3761 | } else if (ret == 1) { |
| 3762 | chunk_reserved = 1; |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3763 | } |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3764 | } |
| 3765 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3766 | ret = btrfs_relocate_chunk(fs_info, found_key.offset); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3767 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 508794e | 2011-07-02 21:24:41 +0000 | [diff] [blame] | 3768 | if (ret && ret != -ENOSPC) |
| 3769 | goto error; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3770 | if (ret == -ENOSPC) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3771 | enospc_errors++; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3772 | } else { |
| 3773 | spin_lock(&fs_info->balance_lock); |
| 3774 | bctl->stat.completed++; |
| 3775 | spin_unlock(&fs_info->balance_lock); |
| 3776 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3777 | loop: |
Ilya Dryomov | 795a332 | 2013-08-27 13:50:44 +0300 | [diff] [blame] | 3778 | if (found_key.offset == 0) |
| 3779 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3780 | key.offset = found_key.offset - 1; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3781 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3782 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3783 | if (counting) { |
| 3784 | btrfs_release_path(path); |
| 3785 | counting = false; |
| 3786 | goto again; |
| 3787 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3788 | error: |
| 3789 | btrfs_free_path(path); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3790 | if (enospc_errors) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3791 | btrfs_info(fs_info, "%d enospc errors during balance", |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3792 | enospc_errors); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3793 | if (!ret) |
| 3794 | ret = -ENOSPC; |
| 3795 | } |
| 3796 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3797 | return ret; |
| 3798 | } |
| 3799 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3800 | /** |
| 3801 | * alloc_profile_is_valid - see if a given profile is valid and reduced |
| 3802 | * @flags: profile to validate |
| 3803 | * @extended: if true @flags is treated as an extended profile |
| 3804 | */ |
| 3805 | static int alloc_profile_is_valid(u64 flags, int extended) |
| 3806 | { |
| 3807 | u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK : |
| 3808 | BTRFS_BLOCK_GROUP_PROFILE_MASK); |
| 3809 | |
| 3810 | flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK; |
| 3811 | |
| 3812 | /* 1) check that all other bits are zeroed */ |
| 3813 | if (flags & ~mask) |
| 3814 | return 0; |
| 3815 | |
| 3816 | /* 2) see if profile is reduced */ |
| 3817 | if (flags == 0) |
| 3818 | return !extended; /* "0" is valid for usual profiles */ |
| 3819 | |
| 3820 | /* true if exactly one bit set */ |
| 3821 | return (flags & (flags - 1)) == 0; |
| 3822 | } |
| 3823 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3824 | static inline int balance_need_close(struct btrfs_fs_info *fs_info) |
| 3825 | { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3826 | /* cancel requested || normal exit path */ |
| 3827 | return atomic_read(&fs_info->balance_cancel_req) || |
| 3828 | (atomic_read(&fs_info->balance_pause_req) == 0 && |
| 3829 | atomic_read(&fs_info->balance_cancel_req) == 0); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3830 | } |
| 3831 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3832 | static void __cancel_balance(struct btrfs_fs_info *fs_info) |
| 3833 | { |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3834 | int ret; |
| 3835 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3836 | unset_balance_control(fs_info); |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3837 | ret = del_balance_item(fs_info); |
Liu Bo | 0f788c5 | 2013-03-04 16:25:40 +0000 | [diff] [blame] | 3838 | if (ret) |
Anand Jain | 34d9700 | 2016-03-16 16:43:06 +0800 | [diff] [blame] | 3839 | btrfs_handle_fs_error(fs_info, ret, NULL); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 3840 | |
David Sterba | 171938e | 2017-03-28 14:44:21 +0200 | [diff] [blame] | 3841 | clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3842 | } |
| 3843 | |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3844 | /* Non-zero return value signifies invalidity */ |
| 3845 | static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg, |
| 3846 | u64 allowed) |
| 3847 | { |
| 3848 | return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3849 | (!alloc_profile_is_valid(bctl_arg->target, 1) || |
| 3850 | (bctl_arg->target & ~allowed))); |
| 3851 | } |
| 3852 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3853 | /* |
| 3854 | * Should be called with both balance and volume mutexes held |
| 3855 | */ |
| 3856 | int btrfs_balance(struct btrfs_balance_control *bctl, |
| 3857 | struct btrfs_ioctl_balance_args *bargs) |
| 3858 | { |
| 3859 | struct btrfs_fs_info *fs_info = bctl->fs_info; |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 3860 | u64 meta_target, data_target; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3861 | u64 allowed; |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3862 | int mixed = 0; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3863 | int ret; |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3864 | u64 num_devices; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3865 | unsigned seq; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3866 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3867 | if (btrfs_fs_closing(fs_info) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3868 | atomic_read(&fs_info->balance_pause_req) || |
| 3869 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3870 | ret = -EINVAL; |
| 3871 | goto out; |
| 3872 | } |
| 3873 | |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3874 | allowed = btrfs_super_incompat_flags(fs_info->super_copy); |
| 3875 | if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 3876 | mixed = 1; |
| 3877 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3878 | /* |
| 3879 | * In case of mixed groups both data and meta should be picked, |
| 3880 | * and identical options should be given for both of them. |
| 3881 | */ |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3882 | allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA; |
| 3883 | if (mixed && (bctl->flags & allowed)) { |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3884 | if (!(bctl->flags & BTRFS_BALANCE_DATA) || |
| 3885 | !(bctl->flags & BTRFS_BALANCE_METADATA) || |
| 3886 | memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3887 | btrfs_err(fs_info, |
| 3888 | "with mixed groups data and metadata balance options must be the same"); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3889 | ret = -EINVAL; |
| 3890 | goto out; |
| 3891 | } |
| 3892 | } |
| 3893 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3894 | num_devices = fs_info->fs_devices->num_devices; |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 3895 | btrfs_dev_replace_lock(&fs_info->dev_replace, 0); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3896 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) { |
| 3897 | BUG_ON(num_devices < 1); |
| 3898 | num_devices--; |
| 3899 | } |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 3900 | btrfs_dev_replace_unlock(&fs_info->dev_replace, 0); |
Austin S. Hemmelgarn | 88be159 | 2016-03-23 14:22:59 -0400 | [diff] [blame] | 3901 | allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP; |
| 3902 | if (num_devices > 1) |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3903 | allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1); |
Andreas Philipp | 8250dab | 2013-05-11 11:13:03 +0000 | [diff] [blame] | 3904 | if (num_devices > 2) |
| 3905 | allowed |= BTRFS_BLOCK_GROUP_RAID5; |
| 3906 | if (num_devices > 3) |
| 3907 | allowed |= (BTRFS_BLOCK_GROUP_RAID10 | |
| 3908 | BTRFS_BLOCK_GROUP_RAID6); |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3909 | if (validate_convert_profile(&bctl->data, allowed)) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3910 | btrfs_err(fs_info, |
| 3911 | "unable to start balance with target data profile %llu", |
| 3912 | bctl->data.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3913 | ret = -EINVAL; |
| 3914 | goto out; |
| 3915 | } |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3916 | if (validate_convert_profile(&bctl->meta, allowed)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3917 | btrfs_err(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3918 | "unable to start balance with target metadata profile %llu", |
| 3919 | bctl->meta.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->sys, 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 system profile %llu", |
| 3926 | bctl->sys.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3927 | ret = -EINVAL; |
| 3928 | goto out; |
| 3929 | } |
| 3930 | |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3931 | /* allow to reduce meta or sys integrity only if force set */ |
| 3932 | allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3933 | BTRFS_BLOCK_GROUP_RAID10 | |
| 3934 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3935 | BTRFS_BLOCK_GROUP_RAID6; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3936 | do { |
| 3937 | seq = read_seqbegin(&fs_info->profiles_lock); |
| 3938 | |
| 3939 | if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3940 | (fs_info->avail_system_alloc_bits & allowed) && |
| 3941 | !(bctl->sys.target & allowed)) || |
| 3942 | ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3943 | (fs_info->avail_metadata_alloc_bits & allowed) && |
| 3944 | !(bctl->meta.target & allowed))) { |
| 3945 | if (bctl->flags & BTRFS_BALANCE_FORCE) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3946 | btrfs_info(fs_info, |
| 3947 | "force reducing metadata integrity"); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3948 | } else { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3949 | btrfs_err(fs_info, |
| 3950 | "balance will reduce metadata integrity, use force if you want this"); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3951 | ret = -EINVAL; |
| 3952 | goto out; |
| 3953 | } |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3954 | } |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3955 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3956 | |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 3957 | /* if we're not converting, the target field is uninitialized */ |
| 3958 | meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ? |
| 3959 | bctl->meta.target : fs_info->avail_metadata_alloc_bits; |
| 3960 | data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ? |
| 3961 | bctl->data.target : fs_info->avail_data_alloc_bits; |
| 3962 | if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) < |
| 3963 | btrfs_get_num_tolerated_disk_barrier_failures(data_target)) { |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 3964 | btrfs_warn(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3965 | "metadata profile 0x%llx has lower redundancy than data profile 0x%llx", |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 3966 | meta_target, data_target); |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 3967 | } |
| 3968 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3969 | ret = insert_balance_item(fs_info, bctl); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3970 | if (ret && ret != -EEXIST) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3971 | goto out; |
| 3972 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3973 | if (!(bctl->flags & BTRFS_BALANCE_RESUME)) { |
| 3974 | BUG_ON(ret == -EEXIST); |
| 3975 | set_balance_control(bctl); |
| 3976 | } else { |
| 3977 | BUG_ON(ret != -EEXIST); |
| 3978 | spin_lock(&fs_info->balance_lock); |
| 3979 | update_balance_args(bctl); |
| 3980 | spin_unlock(&fs_info->balance_lock); |
| 3981 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3982 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3983 | atomic_inc(&fs_info->balance_running); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3984 | mutex_unlock(&fs_info->balance_mutex); |
| 3985 | |
| 3986 | ret = __btrfs_balance(fs_info); |
| 3987 | |
| 3988 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3989 | atomic_dec(&fs_info->balance_running); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3990 | |
| 3991 | if (bargs) { |
| 3992 | memset(bargs, 0, sizeof(*bargs)); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3993 | update_ioctl_balance_args(fs_info, 0, bargs); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3994 | } |
| 3995 | |
Ilya Dryomov | 3a01aa7 | 2013-03-06 01:57:55 -0700 | [diff] [blame] | 3996 | if ((ret && ret != -ECANCELED && ret != -ENOSPC) || |
| 3997 | balance_need_close(fs_info)) { |
| 3998 | __cancel_balance(fs_info); |
| 3999 | } |
| 4000 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4001 | wake_up(&fs_info->balance_wait_q); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4002 | |
| 4003 | return ret; |
| 4004 | out: |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4005 | if (bctl->flags & BTRFS_BALANCE_RESUME) |
| 4006 | __cancel_balance(fs_info); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 4007 | else { |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4008 | kfree(bctl); |
David Sterba | 171938e | 2017-03-28 14:44:21 +0200 | [diff] [blame] | 4009 | clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 4010 | } |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4011 | return ret; |
| 4012 | } |
| 4013 | |
| 4014 | static int balance_kthread(void *data) |
| 4015 | { |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4016 | struct btrfs_fs_info *fs_info = data; |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4017 | int ret = 0; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4018 | |
| 4019 | mutex_lock(&fs_info->volume_mutex); |
| 4020 | mutex_lock(&fs_info->balance_mutex); |
| 4021 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4022 | if (fs_info->balance_ctl) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4023 | btrfs_info(fs_info, "continuing balance"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4024 | ret = btrfs_balance(fs_info->balance_ctl, NULL); |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4025 | } |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4026 | |
| 4027 | mutex_unlock(&fs_info->balance_mutex); |
| 4028 | mutex_unlock(&fs_info->volume_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4029 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4030 | return ret; |
| 4031 | } |
| 4032 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4033 | int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info) |
| 4034 | { |
| 4035 | struct task_struct *tsk; |
| 4036 | |
| 4037 | spin_lock(&fs_info->balance_lock); |
| 4038 | if (!fs_info->balance_ctl) { |
| 4039 | spin_unlock(&fs_info->balance_lock); |
| 4040 | return 0; |
| 4041 | } |
| 4042 | spin_unlock(&fs_info->balance_lock); |
| 4043 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 4044 | if (btrfs_test_opt(fs_info, SKIP_BALANCE)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4045 | btrfs_info(fs_info, "force skipping balance"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4046 | return 0; |
| 4047 | } |
| 4048 | |
| 4049 | tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance"); |
Sachin Kamat | cd63397 | 2013-07-15 16:52:18 +0530 | [diff] [blame] | 4050 | return PTR_ERR_OR_ZERO(tsk); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 4051 | } |
| 4052 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4053 | int btrfs_recover_balance(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4054 | { |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4055 | struct btrfs_balance_control *bctl; |
| 4056 | struct btrfs_balance_item *item; |
| 4057 | struct btrfs_disk_balance_args disk_bargs; |
| 4058 | struct btrfs_path *path; |
| 4059 | struct extent_buffer *leaf; |
| 4060 | struct btrfs_key key; |
| 4061 | int ret; |
| 4062 | |
| 4063 | path = btrfs_alloc_path(); |
| 4064 | if (!path) |
| 4065 | return -ENOMEM; |
| 4066 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4067 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 4068 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4069 | key.offset = 0; |
| 4070 | |
| 4071 | ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0); |
| 4072 | if (ret < 0) |
| 4073 | goto out; |
| 4074 | if (ret > 0) { /* ret = -ENOENT; */ |
| 4075 | ret = 0; |
| 4076 | goto out; |
| 4077 | } |
| 4078 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4079 | bctl = kzalloc(sizeof(*bctl), GFP_NOFS); |
| 4080 | if (!bctl) { |
| 4081 | ret = -ENOMEM; |
| 4082 | goto out; |
| 4083 | } |
| 4084 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4085 | leaf = path->nodes[0]; |
| 4086 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 4087 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4088 | bctl->fs_info = fs_info; |
| 4089 | bctl->flags = btrfs_balance_flags(leaf, item); |
| 4090 | bctl->flags |= BTRFS_BALANCE_RESUME; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4091 | |
| 4092 | btrfs_balance_data(leaf, item, &disk_bargs); |
| 4093 | btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs); |
| 4094 | btrfs_balance_meta(leaf, item, &disk_bargs); |
| 4095 | btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs); |
| 4096 | btrfs_balance_sys(leaf, item, &disk_bargs); |
| 4097 | btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs); |
| 4098 | |
David Sterba | 171938e | 2017-03-28 14:44:21 +0200 | [diff] [blame] | 4099 | 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] | 4100 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4101 | mutex_lock(&fs_info->volume_mutex); |
| 4102 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4103 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4104 | set_balance_control(bctl); |
| 4105 | |
| 4106 | mutex_unlock(&fs_info->balance_mutex); |
| 4107 | mutex_unlock(&fs_info->volume_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4108 | out: |
| 4109 | btrfs_free_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4110 | return ret; |
| 4111 | } |
| 4112 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4113 | int btrfs_pause_balance(struct btrfs_fs_info *fs_info) |
| 4114 | { |
| 4115 | int ret = 0; |
| 4116 | |
| 4117 | mutex_lock(&fs_info->balance_mutex); |
| 4118 | if (!fs_info->balance_ctl) { |
| 4119 | mutex_unlock(&fs_info->balance_mutex); |
| 4120 | return -ENOTCONN; |
| 4121 | } |
| 4122 | |
| 4123 | if (atomic_read(&fs_info->balance_running)) { |
| 4124 | atomic_inc(&fs_info->balance_pause_req); |
| 4125 | mutex_unlock(&fs_info->balance_mutex); |
| 4126 | |
| 4127 | wait_event(fs_info->balance_wait_q, |
| 4128 | atomic_read(&fs_info->balance_running) == 0); |
| 4129 | |
| 4130 | mutex_lock(&fs_info->balance_mutex); |
| 4131 | /* we are good with balance_ctl ripped off from under us */ |
| 4132 | BUG_ON(atomic_read(&fs_info->balance_running)); |
| 4133 | atomic_dec(&fs_info->balance_pause_req); |
| 4134 | } else { |
| 4135 | ret = -ENOTCONN; |
| 4136 | } |
| 4137 | |
| 4138 | mutex_unlock(&fs_info->balance_mutex); |
| 4139 | return ret; |
| 4140 | } |
| 4141 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4142 | int btrfs_cancel_balance(struct btrfs_fs_info *fs_info) |
| 4143 | { |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 4144 | if (sb_rdonly(fs_info->sb)) |
Ilya Dryomov | e649e58 | 2013-10-10 20:40:21 +0300 | [diff] [blame] | 4145 | return -EROFS; |
| 4146 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4147 | mutex_lock(&fs_info->balance_mutex); |
| 4148 | if (!fs_info->balance_ctl) { |
| 4149 | mutex_unlock(&fs_info->balance_mutex); |
| 4150 | return -ENOTCONN; |
| 4151 | } |
| 4152 | |
| 4153 | atomic_inc(&fs_info->balance_cancel_req); |
| 4154 | /* |
| 4155 | * if we are running just wait and return, balance item is |
| 4156 | * deleted in btrfs_balance in this case |
| 4157 | */ |
| 4158 | if (atomic_read(&fs_info->balance_running)) { |
| 4159 | mutex_unlock(&fs_info->balance_mutex); |
| 4160 | wait_event(fs_info->balance_wait_q, |
| 4161 | atomic_read(&fs_info->balance_running) == 0); |
| 4162 | mutex_lock(&fs_info->balance_mutex); |
| 4163 | } else { |
| 4164 | /* __cancel_balance needs volume_mutex */ |
| 4165 | mutex_unlock(&fs_info->balance_mutex); |
| 4166 | mutex_lock(&fs_info->volume_mutex); |
| 4167 | mutex_lock(&fs_info->balance_mutex); |
| 4168 | |
| 4169 | if (fs_info->balance_ctl) |
| 4170 | __cancel_balance(fs_info); |
| 4171 | |
| 4172 | mutex_unlock(&fs_info->volume_mutex); |
| 4173 | } |
| 4174 | |
| 4175 | BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running)); |
| 4176 | atomic_dec(&fs_info->balance_cancel_req); |
| 4177 | mutex_unlock(&fs_info->balance_mutex); |
| 4178 | return 0; |
| 4179 | } |
| 4180 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4181 | static int btrfs_uuid_scan_kthread(void *data) |
| 4182 | { |
| 4183 | struct btrfs_fs_info *fs_info = data; |
| 4184 | struct btrfs_root *root = fs_info->tree_root; |
| 4185 | struct btrfs_key key; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4186 | struct btrfs_path *path = NULL; |
| 4187 | int ret = 0; |
| 4188 | struct extent_buffer *eb; |
| 4189 | int slot; |
| 4190 | struct btrfs_root_item root_item; |
| 4191 | u32 item_size; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4192 | struct btrfs_trans_handle *trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4193 | |
| 4194 | path = btrfs_alloc_path(); |
| 4195 | if (!path) { |
| 4196 | ret = -ENOMEM; |
| 4197 | goto out; |
| 4198 | } |
| 4199 | |
| 4200 | key.objectid = 0; |
| 4201 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4202 | key.offset = 0; |
| 4203 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4204 | while (1) { |
Filipe David Borba Manana | 6174d3c | 2013-10-01 16:13:42 +0100 | [diff] [blame] | 4205 | ret = btrfs_search_forward(root, &key, path, 0); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4206 | if (ret) { |
| 4207 | if (ret > 0) |
| 4208 | ret = 0; |
| 4209 | break; |
| 4210 | } |
| 4211 | |
| 4212 | if (key.type != BTRFS_ROOT_ITEM_KEY || |
| 4213 | (key.objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 4214 | key.objectid != BTRFS_FS_TREE_OBJECTID) || |
| 4215 | key.objectid > BTRFS_LAST_FREE_OBJECTID) |
| 4216 | goto skip; |
| 4217 | |
| 4218 | eb = path->nodes[0]; |
| 4219 | slot = path->slots[0]; |
| 4220 | item_size = btrfs_item_size_nr(eb, slot); |
| 4221 | if (item_size < sizeof(root_item)) |
| 4222 | goto skip; |
| 4223 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4224 | read_extent_buffer(eb, &root_item, |
| 4225 | btrfs_item_ptr_offset(eb, slot), |
| 4226 | (int)sizeof(root_item)); |
| 4227 | if (btrfs_root_refs(&root_item) == 0) |
| 4228 | goto skip; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4229 | |
| 4230 | if (!btrfs_is_empty_uuid(root_item.uuid) || |
| 4231 | !btrfs_is_empty_uuid(root_item.received_uuid)) { |
| 4232 | if (trans) |
| 4233 | goto update_tree; |
| 4234 | |
| 4235 | btrfs_release_path(path); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4236 | /* |
| 4237 | * 1 - subvol uuid item |
| 4238 | * 1 - received_subvol uuid item |
| 4239 | */ |
| 4240 | trans = btrfs_start_transaction(fs_info->uuid_root, 2); |
| 4241 | if (IS_ERR(trans)) { |
| 4242 | ret = PTR_ERR(trans); |
| 4243 | break; |
| 4244 | } |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4245 | continue; |
| 4246 | } else { |
| 4247 | goto skip; |
| 4248 | } |
| 4249 | update_tree: |
| 4250 | if (!btrfs_is_empty_uuid(root_item.uuid)) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4251 | ret = btrfs_uuid_tree_add(trans, fs_info, |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4252 | root_item.uuid, |
| 4253 | BTRFS_UUID_KEY_SUBVOL, |
| 4254 | key.objectid); |
| 4255 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4256 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4257 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4258 | break; |
| 4259 | } |
| 4260 | } |
| 4261 | |
| 4262 | if (!btrfs_is_empty_uuid(root_item.received_uuid)) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4263 | ret = btrfs_uuid_tree_add(trans, fs_info, |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4264 | root_item.received_uuid, |
| 4265 | BTRFS_UUID_KEY_RECEIVED_SUBVOL, |
| 4266 | key.objectid); |
| 4267 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4268 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4269 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4270 | break; |
| 4271 | } |
| 4272 | } |
| 4273 | |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4274 | skip: |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4275 | if (trans) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4276 | ret = btrfs_end_transaction(trans); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4277 | trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4278 | if (ret) |
| 4279 | break; |
| 4280 | } |
| 4281 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4282 | btrfs_release_path(path); |
| 4283 | if (key.offset < (u64)-1) { |
| 4284 | key.offset++; |
| 4285 | } else if (key.type < BTRFS_ROOT_ITEM_KEY) { |
| 4286 | key.offset = 0; |
| 4287 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4288 | } else if (key.objectid < (u64)-1) { |
| 4289 | key.offset = 0; |
| 4290 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4291 | key.objectid++; |
| 4292 | } else { |
| 4293 | break; |
| 4294 | } |
| 4295 | cond_resched(); |
| 4296 | } |
| 4297 | |
| 4298 | out: |
| 4299 | btrfs_free_path(path); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4300 | if (trans && !IS_ERR(trans)) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4301 | btrfs_end_transaction(trans); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4302 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4303 | btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4304 | else |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 4305 | set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4306 | up(&fs_info->uuid_tree_rescan_sem); |
| 4307 | return 0; |
| 4308 | } |
| 4309 | |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4310 | /* |
| 4311 | * Callback for btrfs_uuid_tree_iterate(). |
| 4312 | * returns: |
| 4313 | * 0 check succeeded, the entry is not outdated. |
Adam Buchbinder | bb7ab3b | 2016-03-04 11:23:12 -0800 | [diff] [blame] | 4314 | * < 0 if an error occurred. |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4315 | * > 0 if the check failed, which means the caller shall remove the entry. |
| 4316 | */ |
| 4317 | static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info, |
| 4318 | u8 *uuid, u8 type, u64 subid) |
| 4319 | { |
| 4320 | struct btrfs_key key; |
| 4321 | int ret = 0; |
| 4322 | struct btrfs_root *subvol_root; |
| 4323 | |
| 4324 | if (type != BTRFS_UUID_KEY_SUBVOL && |
| 4325 | type != BTRFS_UUID_KEY_RECEIVED_SUBVOL) |
| 4326 | goto out; |
| 4327 | |
| 4328 | key.objectid = subid; |
| 4329 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4330 | key.offset = (u64)-1; |
| 4331 | subvol_root = btrfs_read_fs_root_no_name(fs_info, &key); |
| 4332 | if (IS_ERR(subvol_root)) { |
| 4333 | ret = PTR_ERR(subvol_root); |
| 4334 | if (ret == -ENOENT) |
| 4335 | ret = 1; |
| 4336 | goto out; |
| 4337 | } |
| 4338 | |
| 4339 | switch (type) { |
| 4340 | case BTRFS_UUID_KEY_SUBVOL: |
| 4341 | if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE)) |
| 4342 | ret = 1; |
| 4343 | break; |
| 4344 | case BTRFS_UUID_KEY_RECEIVED_SUBVOL: |
| 4345 | if (memcmp(uuid, subvol_root->root_item.received_uuid, |
| 4346 | BTRFS_UUID_SIZE)) |
| 4347 | ret = 1; |
| 4348 | break; |
| 4349 | } |
| 4350 | |
| 4351 | out: |
| 4352 | return ret; |
| 4353 | } |
| 4354 | |
| 4355 | static int btrfs_uuid_rescan_kthread(void *data) |
| 4356 | { |
| 4357 | struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data; |
| 4358 | int ret; |
| 4359 | |
| 4360 | /* |
| 4361 | * 1st step is to iterate through the existing UUID tree and |
| 4362 | * to delete all entries that contain outdated data. |
| 4363 | * 2nd step is to add all missing entries to the UUID tree. |
| 4364 | */ |
| 4365 | ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry); |
| 4366 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4367 | btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4368 | up(&fs_info->uuid_tree_rescan_sem); |
| 4369 | return ret; |
| 4370 | } |
| 4371 | return btrfs_uuid_scan_kthread(data); |
| 4372 | } |
| 4373 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4374 | int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4375 | { |
| 4376 | struct btrfs_trans_handle *trans; |
| 4377 | struct btrfs_root *tree_root = fs_info->tree_root; |
| 4378 | struct btrfs_root *uuid_root; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4379 | struct task_struct *task; |
| 4380 | int ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4381 | |
| 4382 | /* |
| 4383 | * 1 - root node |
| 4384 | * 1 - root item |
| 4385 | */ |
| 4386 | trans = btrfs_start_transaction(tree_root, 2); |
| 4387 | if (IS_ERR(trans)) |
| 4388 | return PTR_ERR(trans); |
| 4389 | |
| 4390 | uuid_root = btrfs_create_tree(trans, fs_info, |
| 4391 | BTRFS_UUID_TREE_OBJECTID); |
| 4392 | if (IS_ERR(uuid_root)) { |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4393 | ret = PTR_ERR(uuid_root); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 4394 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4395 | btrfs_end_transaction(trans); |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4396 | return ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4397 | } |
| 4398 | |
| 4399 | fs_info->uuid_root = uuid_root; |
| 4400 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4401 | ret = btrfs_commit_transaction(trans); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4402 | if (ret) |
| 4403 | return ret; |
| 4404 | |
| 4405 | down(&fs_info->uuid_tree_rescan_sem); |
| 4406 | task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid"); |
| 4407 | if (IS_ERR(task)) { |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4408 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4409 | btrfs_warn(fs_info, "failed to start uuid_scan task"); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4410 | up(&fs_info->uuid_tree_rescan_sem); |
| 4411 | return PTR_ERR(task); |
| 4412 | } |
| 4413 | |
| 4414 | return 0; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4415 | } |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4416 | |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4417 | int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4418 | { |
| 4419 | struct task_struct *task; |
| 4420 | |
| 4421 | down(&fs_info->uuid_tree_rescan_sem); |
| 4422 | task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid"); |
| 4423 | if (IS_ERR(task)) { |
| 4424 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4425 | btrfs_warn(fs_info, "failed to start uuid_rescan task"); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4426 | up(&fs_info->uuid_tree_rescan_sem); |
| 4427 | return PTR_ERR(task); |
| 4428 | } |
| 4429 | |
| 4430 | return 0; |
| 4431 | } |
| 4432 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4433 | /* |
| 4434 | * shrinking a device means finding all of the device extents past |
| 4435 | * the new size, and then following the back refs to the chunks. |
| 4436 | * The chunk relocation code actually frees the device extent |
| 4437 | */ |
| 4438 | int btrfs_shrink_device(struct btrfs_device *device, u64 new_size) |
| 4439 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4440 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 4441 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4442 | struct btrfs_trans_handle *trans; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4443 | struct btrfs_dev_extent *dev_extent = NULL; |
| 4444 | struct btrfs_path *path; |
| 4445 | u64 length; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4446 | u64 chunk_offset; |
| 4447 | int ret; |
| 4448 | int slot; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4449 | int failed = 0; |
| 4450 | bool retried = false; |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4451 | bool checked_pending_chunks = false; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4452 | struct extent_buffer *l; |
| 4453 | struct btrfs_key key; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4454 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4455 | u64 old_total = btrfs_super_total_bytes(super_copy); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4456 | u64 old_size = btrfs_device_get_total_bytes(device); |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4457 | u64 diff; |
| 4458 | |
| 4459 | new_size = round_down(new_size, fs_info->sectorsize); |
Nikolay Borisov | 0e4324a | 2017-07-21 11:28:24 +0300 | [diff] [blame] | 4460 | diff = round_down(old_size - new_size, fs_info->sectorsize); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4461 | |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 4462 | if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 4463 | return -EINVAL; |
| 4464 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4465 | path = btrfs_alloc_path(); |
| 4466 | if (!path) |
| 4467 | return -ENOMEM; |
| 4468 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 4469 | path->reada = READA_FORWARD; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4470 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4471 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 4472 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4473 | btrfs_device_set_total_bytes(device, new_size); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4474 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4475 | device->fs_devices->total_rw_bytes -= diff; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4476 | atomic64_sub(diff, &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4477 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4478 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4479 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4480 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4481 | key.objectid = device->devid; |
| 4482 | key.offset = (u64)-1; |
| 4483 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 4484 | |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4485 | do { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4486 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4487 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4488 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4489 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4490 | goto done; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4491 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4492 | |
| 4493 | ret = btrfs_previous_item(root, path, 0, key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4494 | if (ret) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4495 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4496 | if (ret < 0) |
| 4497 | goto done; |
| 4498 | if (ret) { |
| 4499 | ret = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4500 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4501 | break; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4502 | } |
| 4503 | |
| 4504 | l = path->nodes[0]; |
| 4505 | slot = path->slots[0]; |
| 4506 | btrfs_item_key_to_cpu(l, &key, path->slots[0]); |
| 4507 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4508 | if (key.objectid != device->devid) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4509 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4510 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4511 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4512 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4513 | |
| 4514 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
| 4515 | length = btrfs_dev_extent_length(l, dev_extent); |
| 4516 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4517 | if (key.offset + length <= new_size) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4518 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4519 | btrfs_release_path(path); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4520 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4521 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4522 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4523 | chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4524 | btrfs_release_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4525 | |
Liu Bo | a6f93c7 | 2017-11-15 16:28:11 -0700 | [diff] [blame] | 4526 | /* |
| 4527 | * We may be relocating the only data chunk we have, |
| 4528 | * which could potentially end up with losing data's |
| 4529 | * raid profile, so lets allocate an empty one in |
| 4530 | * advance. |
| 4531 | */ |
| 4532 | ret = btrfs_may_alloc_data_chunk(fs_info, chunk_offset); |
| 4533 | if (ret < 0) { |
| 4534 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
| 4535 | goto done; |
| 4536 | } |
| 4537 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4538 | ret = btrfs_relocate_chunk(fs_info, chunk_offset); |
| 4539 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4540 | if (ret && ret != -ENOSPC) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4541 | goto done; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4542 | if (ret == -ENOSPC) |
| 4543 | failed++; |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4544 | } while (key.offset-- > 0); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4545 | |
| 4546 | if (failed && !retried) { |
| 4547 | failed = 0; |
| 4548 | retried = true; |
| 4549 | goto again; |
| 4550 | } else if (failed && retried) { |
| 4551 | ret = -ENOSPC; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4552 | goto done; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4553 | } |
| 4554 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4555 | /* Shrinking succeeded, else we would be at "done". */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4556 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 4557 | if (IS_ERR(trans)) { |
| 4558 | ret = PTR_ERR(trans); |
| 4559 | goto done; |
| 4560 | } |
| 4561 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4562 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4563 | |
| 4564 | /* |
| 4565 | * We checked in the above loop all device extents that were already in |
| 4566 | * the device tree. However before we have updated the device's |
| 4567 | * total_bytes to the new size, we might have had chunk allocations that |
| 4568 | * have not complete yet (new block groups attached to transaction |
| 4569 | * handles), and therefore their device extents were not yet in the |
| 4570 | * device tree and we missed them in the loop above. So if we have any |
| 4571 | * pending chunk using a device extent that overlaps the device range |
| 4572 | * that we can not use anymore, commit the current transaction and |
| 4573 | * repeat the search on the device tree - this way we guarantee we will |
| 4574 | * not have chunks using device extents that end beyond 'new_size'. |
| 4575 | */ |
| 4576 | if (!checked_pending_chunks) { |
| 4577 | u64 start = new_size; |
| 4578 | u64 len = old_size - new_size; |
| 4579 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 4580 | if (contains_pending_extent(trans->transaction, device, |
| 4581 | &start, len)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4582 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4583 | checked_pending_chunks = true; |
| 4584 | failed = 0; |
| 4585 | retried = false; |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4586 | ret = btrfs_commit_transaction(trans); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4587 | if (ret) |
| 4588 | goto done; |
| 4589 | goto again; |
| 4590 | } |
| 4591 | } |
| 4592 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4593 | btrfs_device_set_disk_total_bytes(device, new_size); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 4594 | if (list_empty(&device->resized_list)) |
| 4595 | list_add_tail(&device->resized_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4596 | &fs_info->fs_devices->resized_devices); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4597 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4598 | WARN_ON(diff > old_total); |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4599 | btrfs_set_super_total_bytes(super_copy, |
| 4600 | round_down(old_total - diff, fs_info->sectorsize)); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4601 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 4602 | |
| 4603 | /* Now btrfs_update_device() will change the on-disk size. */ |
| 4604 | ret = btrfs_update_device(trans, device); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4605 | btrfs_end_transaction(trans); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4606 | done: |
| 4607 | btrfs_free_path(path); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4608 | if (ret) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4609 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4610 | btrfs_device_set_total_bytes(device, old_size); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4611 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4612 | device->fs_devices->total_rw_bytes += diff; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4613 | atomic64_add(diff, &fs_info->free_chunk_space); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4614 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4615 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4616 | return ret; |
| 4617 | } |
| 4618 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4619 | static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4620 | struct btrfs_key *key, |
| 4621 | struct btrfs_chunk *chunk, int item_size) |
| 4622 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4623 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4624 | struct btrfs_disk_key disk_key; |
| 4625 | u32 array_size; |
| 4626 | u8 *ptr; |
| 4627 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4628 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4629 | array_size = btrfs_super_sys_array_size(super_copy); |
Gui Hecheng | 5f43f86 | 2014-04-21 20:13:11 +0800 | [diff] [blame] | 4630 | if (array_size + item_size + sizeof(disk_key) |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4631 | > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4632 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4633 | return -EFBIG; |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4634 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4635 | |
| 4636 | ptr = super_copy->sys_chunk_array + array_size; |
| 4637 | btrfs_cpu_key_to_disk(&disk_key, key); |
| 4638 | memcpy(ptr, &disk_key, sizeof(disk_key)); |
| 4639 | ptr += sizeof(disk_key); |
| 4640 | memcpy(ptr, chunk, item_size); |
| 4641 | item_size += sizeof(disk_key); |
| 4642 | btrfs_set_super_sys_array_size(super_copy, array_size + item_size); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4643 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4644 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4645 | return 0; |
| 4646 | } |
| 4647 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4648 | /* |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4649 | * sort the devices in descending order by max_avail, total_avail |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4650 | */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4651 | static int btrfs_cmp_device_info(const void *a, const void *b) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4652 | { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4653 | const struct btrfs_device_info *di_a = a; |
| 4654 | const struct btrfs_device_info *di_b = b; |
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 | if (di_a->max_avail > di_b->max_avail) |
| 4657 | return -1; |
| 4658 | if (di_a->max_avail < di_b->max_avail) |
| 4659 | return 1; |
| 4660 | if (di_a->total_avail > di_b->total_avail) |
| 4661 | return -1; |
| 4662 | if (di_a->total_avail < di_b->total_avail) |
| 4663 | return 1; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4664 | return 0; |
| 4665 | } |
| 4666 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4667 | static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type) |
| 4668 | { |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 4669 | if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK)) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4670 | return; |
| 4671 | |
Miao Xie | ceda086 | 2013-04-11 10:30:16 +0000 | [diff] [blame] | 4672 | btrfs_set_fs_incompat(info, RAID56); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4673 | } |
| 4674 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 4675 | #define BTRFS_MAX_DEVS(r) ((BTRFS_MAX_ITEM_SIZE(r->fs_info) \ |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4676 | - sizeof(struct btrfs_chunk)) \ |
| 4677 | / sizeof(struct btrfs_stripe) + 1) |
| 4678 | |
| 4679 | #define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \ |
| 4680 | - 2 * sizeof(struct btrfs_disk_key) \ |
| 4681 | - 2 * sizeof(struct btrfs_chunk)) \ |
| 4682 | / sizeof(struct btrfs_stripe) + 1) |
| 4683 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4684 | static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans, |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 4685 | u64 start, u64 type) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4686 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4687 | struct btrfs_fs_info *info = trans->fs_info; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4688 | struct btrfs_fs_devices *fs_devices = info->fs_devices; |
Nikolay Borisov | ebcc930 | 2017-06-27 10:02:24 +0300 | [diff] [blame] | 4689 | struct btrfs_device *device; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4690 | struct map_lookup *map = NULL; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4691 | struct extent_map_tree *em_tree; |
| 4692 | struct extent_map *em; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4693 | struct btrfs_device_info *devices_info = NULL; |
| 4694 | u64 total_avail; |
| 4695 | int num_stripes; /* total number of stripes to allocate */ |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4696 | int data_stripes; /* number of stripes that count for |
| 4697 | block group size */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4698 | int sub_stripes; /* sub_stripes info for map */ |
| 4699 | int dev_stripes; /* stripes per dev */ |
| 4700 | int devs_max; /* max devs to use */ |
| 4701 | int devs_min; /* min devs needed */ |
| 4702 | int devs_increment; /* ndevs has to be a multiple of this */ |
| 4703 | int ncopies; /* how many copies to data has */ |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4704 | int ret; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4705 | u64 max_stripe_size; |
| 4706 | u64 max_chunk_size; |
| 4707 | u64 stripe_size; |
| 4708 | u64 num_bytes; |
| 4709 | int ndevs; |
| 4710 | int i; |
| 4711 | int j; |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4712 | int index; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4713 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4714 | BUG_ON(!alloc_profile_is_valid(type, 0)); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4715 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4716 | if (list_empty(&fs_devices->alloc_list)) |
| 4717 | return -ENOSPC; |
| 4718 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4719 | index = __get_raid_index(type); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4720 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4721 | sub_stripes = btrfs_raid_array[index].sub_stripes; |
| 4722 | dev_stripes = btrfs_raid_array[index].dev_stripes; |
| 4723 | devs_max = btrfs_raid_array[index].devs_max; |
| 4724 | devs_min = btrfs_raid_array[index].devs_min; |
| 4725 | devs_increment = btrfs_raid_array[index].devs_increment; |
| 4726 | ncopies = btrfs_raid_array[index].ncopies; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4727 | |
| 4728 | if (type & BTRFS_BLOCK_GROUP_DATA) { |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4729 | max_stripe_size = SZ_1G; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4730 | max_chunk_size = 10 * max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4731 | if (!devs_max) |
| 4732 | devs_max = BTRFS_MAX_DEVS(info->chunk_root); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4733 | } else if (type & BTRFS_BLOCK_GROUP_METADATA) { |
Chris Mason | 1100373 | 2012-01-06 15:47:38 -0500 | [diff] [blame] | 4734 | /* for larger filesystems, use larger metadata chunks */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4735 | if (fs_devices->total_rw_bytes > 50ULL * SZ_1G) |
| 4736 | max_stripe_size = SZ_1G; |
Chris Mason | 1100373 | 2012-01-06 15:47:38 -0500 | [diff] [blame] | 4737 | else |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4738 | max_stripe_size = SZ_256M; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4739 | max_chunk_size = max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4740 | if (!devs_max) |
| 4741 | devs_max = BTRFS_MAX_DEVS(info->chunk_root); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4742 | } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4743 | max_stripe_size = SZ_32M; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4744 | max_chunk_size = 2 * max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4745 | if (!devs_max) |
| 4746 | devs_max = BTRFS_MAX_DEVS_SYS_CHUNK; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4747 | } else { |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 4748 | btrfs_err(info, "invalid chunk type 0x%llx requested", |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4749 | type); |
| 4750 | BUG_ON(1); |
| 4751 | } |
| 4752 | |
| 4753 | /* we don't want a chunk larger than 10% of writeable space */ |
| 4754 | max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1), |
| 4755 | max_chunk_size); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4756 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 4757 | devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info), |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4758 | GFP_NOFS); |
| 4759 | if (!devices_info) |
| 4760 | return -ENOMEM; |
| 4761 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4762 | /* |
| 4763 | * in the first pass through the devices list, we gather information |
| 4764 | * about the available holes on each device. |
| 4765 | */ |
| 4766 | ndevs = 0; |
Nikolay Borisov | ebcc930 | 2017-06-27 10:02:24 +0300 | [diff] [blame] | 4767 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4768 | u64 max_avail; |
| 4769 | u64 dev_offset; |
| 4770 | |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 4771 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { |
Julia Lawall | 31b1a2b | 2012-11-03 10:58:34 +0000 | [diff] [blame] | 4772 | WARN(1, KERN_ERR |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4773 | "BTRFS: read-only device in alloc_list\n"); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4774 | continue; |
| 4775 | } |
| 4776 | |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 4777 | if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 4778 | &device->dev_state) || |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 4779 | test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4780 | continue; |
| 4781 | |
| 4782 | if (device->total_bytes > device->bytes_used) |
| 4783 | total_avail = device->total_bytes - device->bytes_used; |
| 4784 | else |
| 4785 | total_avail = 0; |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 4786 | |
| 4787 | /* If there is no space on this device, skip it. */ |
| 4788 | if (total_avail == 0) |
| 4789 | continue; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4790 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4791 | ret = find_free_dev_extent(trans, device, |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4792 | max_stripe_size * dev_stripes, |
| 4793 | &dev_offset, &max_avail); |
| 4794 | if (ret && ret != -ENOSPC) |
| 4795 | goto error; |
| 4796 | |
| 4797 | if (ret == 0) |
| 4798 | max_avail = max_stripe_size * dev_stripes; |
| 4799 | |
| 4800 | if (max_avail < BTRFS_STRIPE_LEN * dev_stripes) |
| 4801 | continue; |
| 4802 | |
Eric Sandeen | 063d006 | 2013-01-31 00:55:01 +0000 | [diff] [blame] | 4803 | if (ndevs == fs_devices->rw_devices) { |
| 4804 | WARN(1, "%s: found more than %llu devices\n", |
| 4805 | __func__, fs_devices->rw_devices); |
| 4806 | break; |
| 4807 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4808 | devices_info[ndevs].dev_offset = dev_offset; |
| 4809 | devices_info[ndevs].max_avail = max_avail; |
| 4810 | devices_info[ndevs].total_avail = total_avail; |
| 4811 | devices_info[ndevs].dev = device; |
| 4812 | ++ndevs; |
| 4813 | } |
| 4814 | |
| 4815 | /* |
| 4816 | * now sort the devices by hole size / available space |
| 4817 | */ |
| 4818 | sort(devices_info, ndevs, sizeof(struct btrfs_device_info), |
| 4819 | btrfs_cmp_device_info, NULL); |
| 4820 | |
| 4821 | /* round down to number of usable stripes */ |
Nikolay Borisov | e5600fd | 2017-06-27 10:02:25 +0300 | [diff] [blame] | 4822 | ndevs = round_down(ndevs, devs_increment); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4823 | |
| 4824 | if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) { |
| 4825 | ret = -ENOSPC; |
| 4826 | goto error; |
| 4827 | } |
| 4828 | |
Nikolay Borisov | f148ef4 | 2017-06-27 10:02:26 +0300 | [diff] [blame] | 4829 | ndevs = min(ndevs, devs_max); |
| 4830 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4831 | /* |
Hans van Kranenburg | 92e222d | 2018-02-05 17:45:11 +0100 | [diff] [blame^] | 4832 | * The primary goal is to maximize the number of stripes, so use as |
| 4833 | * many devices as possible, even if the stripes are not maximum sized. |
| 4834 | * |
| 4835 | * The DUP profile stores more than one stripe per device, the |
| 4836 | * max_avail is the total size so we have to adjust. |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4837 | */ |
Hans van Kranenburg | 92e222d | 2018-02-05 17:45:11 +0100 | [diff] [blame^] | 4838 | stripe_size = div_u64(devices_info[ndevs - 1].max_avail, dev_stripes); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4839 | num_stripes = ndevs * dev_stripes; |
| 4840 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4841 | /* |
| 4842 | * this will have to be fixed for RAID1 and RAID10 over |
| 4843 | * more drives |
| 4844 | */ |
| 4845 | data_stripes = num_stripes / ncopies; |
| 4846 | |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4847 | if (type & BTRFS_BLOCK_GROUP_RAID5) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4848 | data_stripes = num_stripes - 1; |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4849 | |
| 4850 | if (type & BTRFS_BLOCK_GROUP_RAID6) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4851 | data_stripes = num_stripes - 2; |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4852 | |
| 4853 | /* |
| 4854 | * Use the number of data stripes to figure out how big this chunk |
| 4855 | * is really going to be in terms of logical address space, |
| 4856 | * and compare that answer with the max chunk size |
| 4857 | */ |
| 4858 | if (stripe_size * data_stripes > max_chunk_size) { |
| 4859 | u64 mask = (1ULL << 24) - 1; |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 4860 | |
| 4861 | stripe_size = div_u64(max_chunk_size, data_stripes); |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4862 | |
| 4863 | /* bump the answer up to a 16MB boundary */ |
| 4864 | stripe_size = (stripe_size + mask) & ~mask; |
| 4865 | |
| 4866 | /* but don't go higher than the limits we found |
| 4867 | * while searching for free extents |
| 4868 | */ |
| 4869 | if (stripe_size > devices_info[ndevs-1].max_avail) |
| 4870 | stripe_size = devices_info[ndevs-1].max_avail; |
| 4871 | } |
| 4872 | |
Ilya Dryomov | 37db63a | 2012-04-13 17:05:08 +0300 | [diff] [blame] | 4873 | /* align to BTRFS_STRIPE_LEN */ |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4874 | stripe_size = round_down(stripe_size, BTRFS_STRIPE_LEN); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4875 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4876 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
| 4877 | if (!map) { |
| 4878 | ret = -ENOMEM; |
| 4879 | goto error; |
| 4880 | } |
| 4881 | map->num_stripes = num_stripes; |
Chris Mason | 9b3f68b | 2008-04-18 10:29:51 -0400 | [diff] [blame] | 4882 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4883 | for (i = 0; i < ndevs; ++i) { |
| 4884 | for (j = 0; j < dev_stripes; ++j) { |
| 4885 | int s = i * dev_stripes + j; |
| 4886 | map->stripes[s].dev = devices_info[i].dev; |
| 4887 | map->stripes[s].physical = devices_info[i].dev_offset + |
| 4888 | j * stripe_size; |
Chris Mason | a40a90a | 2008-04-18 11:55:51 -0400 | [diff] [blame] | 4889 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4890 | } |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4891 | map->stripe_len = BTRFS_STRIPE_LEN; |
| 4892 | map->io_align = BTRFS_STRIPE_LEN; |
| 4893 | map->io_width = BTRFS_STRIPE_LEN; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4894 | map->type = type; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 4895 | map->sub_stripes = sub_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4896 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4897 | num_bytes = stripe_size * data_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4898 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4899 | trace_btrfs_chunk_alloc(info, map, start, num_bytes); |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4900 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 4901 | em = alloc_extent_map(); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4902 | if (!em) { |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 4903 | kfree(map); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4904 | ret = -ENOMEM; |
| 4905 | goto error; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4906 | } |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 4907 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 4908 | em->map_lookup = map; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4909 | em->start = start; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4910 | em->len = num_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4911 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4912 | em->block_len = em->len; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4913 | em->orig_block_len = stripe_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4914 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4915 | em_tree = &info->mapping_tree.map_tree; |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4916 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 4917 | ret = add_extent_mapping(em_tree, em, 0); |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4918 | if (ret) { |
Nikolay Borisov | 1efb72a | 2017-08-21 12:43:49 +0300 | [diff] [blame] | 4919 | write_unlock(&em_tree->lock); |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4920 | free_extent_map(em); |
Mark Fasheh | 1dd4602 | 2011-09-08 17:29:00 -0700 | [diff] [blame] | 4921 | goto error; |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4922 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4923 | |
Nikolay Borisov | 1efb72a | 2017-08-21 12:43:49 +0300 | [diff] [blame] | 4924 | list_add_tail(&em->list, &trans->transaction->pending_chunks); |
| 4925 | refcount_inc(&em->refs); |
| 4926 | write_unlock(&em_tree->lock); |
| 4927 | |
Nikolay Borisov | 0174484 | 2017-07-27 14:22:11 +0300 | [diff] [blame] | 4928 | ret = btrfs_make_block_group(trans, info, 0, type, start, num_bytes); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4929 | if (ret) |
| 4930 | goto error_del_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4931 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4932 | for (i = 0; i < map->num_stripes; i++) { |
| 4933 | num_bytes = map->stripes[i].dev->bytes_used + stripe_size; |
| 4934 | btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes); |
| 4935 | } |
Miao Xie | 43530c4 | 2014-09-03 21:35:36 +0800 | [diff] [blame] | 4936 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4937 | atomic64_sub(stripe_size * map->num_stripes, &info->free_chunk_space); |
Miao Xie | 1c11618 | 2014-09-03 21:35:37 +0800 | [diff] [blame] | 4938 | |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4939 | free_extent_map(em); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4940 | check_raid56_incompat_flag(info, type); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4941 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4942 | kfree(devices_info); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4943 | return 0; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4944 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4945 | error_del_extent: |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4946 | write_lock(&em_tree->lock); |
| 4947 | remove_extent_mapping(em_tree, em); |
| 4948 | write_unlock(&em_tree->lock); |
| 4949 | |
| 4950 | /* One for our allocation */ |
| 4951 | free_extent_map(em); |
| 4952 | /* One for the tree reference */ |
| 4953 | free_extent_map(em); |
Filipe Manana | 495e64f | 2014-12-02 18:07:30 +0000 | [diff] [blame] | 4954 | /* One for the pending_chunks list reference */ |
| 4955 | free_extent_map(em); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4956 | error: |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4957 | kfree(devices_info); |
| 4958 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4959 | } |
| 4960 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4961 | int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4962 | struct btrfs_fs_info *fs_info, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4963 | u64 chunk_offset, u64 chunk_size) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4964 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4965 | struct btrfs_root *extent_root = fs_info->extent_root; |
| 4966 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4967 | struct btrfs_key key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4968 | struct btrfs_device *device; |
| 4969 | struct btrfs_chunk *chunk; |
| 4970 | struct btrfs_stripe *stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4971 | struct extent_map *em; |
| 4972 | struct map_lookup *map; |
| 4973 | size_t item_size; |
| 4974 | u64 dev_offset; |
| 4975 | u64 stripe_size; |
| 4976 | int i = 0; |
Chris Mason | 140e639 | 2015-12-23 13:30:51 -0800 | [diff] [blame] | 4977 | int ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4978 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 4979 | em = get_chunk_map(fs_info, chunk_offset, chunk_size); |
| 4980 | if (IS_ERR(em)) |
| 4981 | return PTR_ERR(em); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4982 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 4983 | map = em->map_lookup; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4984 | item_size = btrfs_chunk_item_size(map->num_stripes); |
| 4985 | stripe_size = em->orig_block_len; |
| 4986 | |
| 4987 | chunk = kzalloc(item_size, GFP_NOFS); |
| 4988 | if (!chunk) { |
| 4989 | ret = -ENOMEM; |
| 4990 | goto out; |
| 4991 | } |
| 4992 | |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 4993 | /* |
| 4994 | * Take the device list mutex to prevent races with the final phase of |
| 4995 | * a device replace operation that replaces the device object associated |
| 4996 | * with the map's stripes, because the device object's id can change |
| 4997 | * at any time during that final phase of the device replace operation |
| 4998 | * (dev-replace.c:btrfs_dev_replace_finishing()). |
| 4999 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5000 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5001 | for (i = 0; i < map->num_stripes; i++) { |
| 5002 | device = map->stripes[i].dev; |
| 5003 | dev_offset = map->stripes[i].physical; |
| 5004 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5005 | ret = btrfs_update_device(trans, device); |
Mark Fasheh | 3acd395 | 2011-09-08 17:40:01 -0700 | [diff] [blame] | 5006 | if (ret) |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 5007 | break; |
Nikolay Borisov | b5d9071 | 2017-08-18 17:58:23 +0300 | [diff] [blame] | 5008 | ret = btrfs_alloc_dev_extent(trans, device, chunk_offset, |
| 5009 | dev_offset, stripe_size); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5010 | if (ret) |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 5011 | break; |
| 5012 | } |
| 5013 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5014 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 5015 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5016 | } |
| 5017 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5018 | stripe = &chunk->stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5019 | for (i = 0; i < map->num_stripes; i++) { |
| 5020 | device = map->stripes[i].dev; |
| 5021 | dev_offset = map->stripes[i].physical; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5022 | |
| 5023 | btrfs_set_stack_stripe_devid(stripe, device->devid); |
| 5024 | btrfs_set_stack_stripe_offset(stripe, dev_offset); |
| 5025 | memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE); |
| 5026 | stripe++; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5027 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5028 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5029 | |
| 5030 | btrfs_set_stack_chunk_length(chunk, chunk_size); |
| 5031 | btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid); |
| 5032 | btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len); |
| 5033 | btrfs_set_stack_chunk_type(chunk, map->type); |
| 5034 | btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes); |
| 5035 | btrfs_set_stack_chunk_io_align(chunk, map->stripe_len); |
| 5036 | btrfs_set_stack_chunk_io_width(chunk, map->stripe_len); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5037 | btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5038 | btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes); |
| 5039 | |
| 5040 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 5041 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 5042 | key.offset = chunk_offset; |
| 5043 | |
| 5044 | ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 5045 | if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 5046 | /* |
| 5047 | * TODO: Cleanup of inserted chunk root in case of |
| 5048 | * failure. |
| 5049 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5050 | ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5051 | } |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 5052 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5053 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5054 | kfree(chunk); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5055 | free_extent_map(em); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 5056 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5057 | } |
| 5058 | |
| 5059 | /* |
| 5060 | * Chunk allocation falls into two parts. The first part does works |
| 5061 | * that make the new allocated chunk useable, but not do any operation |
| 5062 | * that modifies the chunk tree. The second part does the works that |
| 5063 | * require modifying the chunk tree. This division is important for the |
| 5064 | * bootstrap process of adding storage to a seed btrfs. |
| 5065 | */ |
| 5066 | int btrfs_alloc_chunk(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5067 | struct btrfs_fs_info *fs_info, u64 type) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5068 | { |
| 5069 | u64 chunk_offset; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5070 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5071 | ASSERT(mutex_is_locked(&fs_info->chunk_mutex)); |
| 5072 | chunk_offset = find_next_chunk(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 5073 | return __btrfs_alloc_chunk(trans, chunk_offset, type); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5074 | } |
| 5075 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5076 | static noinline int init_first_rw_device(struct btrfs_trans_handle *trans, |
David Sterba | e4a4dce | 2017-02-10 19:49:01 +0100 | [diff] [blame] | 5077 | struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5078 | { |
| 5079 | u64 chunk_offset; |
| 5080 | u64 sys_chunk_offset; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5081 | u64 alloc_profile; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5082 | int ret; |
| 5083 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 5084 | chunk_offset = find_next_chunk(fs_info); |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 5085 | alloc_profile = btrfs_metadata_alloc_profile(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 5086 | ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5087 | if (ret) |
| 5088 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5089 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5090 | sys_chunk_offset = find_next_chunk(fs_info); |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 5091 | alloc_profile = btrfs_system_alloc_profile(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 5092 | ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5093 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5094 | } |
| 5095 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5096 | static inline int btrfs_chunk_max_errors(struct map_lookup *map) |
| 5097 | { |
| 5098 | int max_errors; |
| 5099 | |
| 5100 | if (map->type & (BTRFS_BLOCK_GROUP_RAID1 | |
| 5101 | BTRFS_BLOCK_GROUP_RAID10 | |
| 5102 | BTRFS_BLOCK_GROUP_RAID5 | |
| 5103 | BTRFS_BLOCK_GROUP_DUP)) { |
| 5104 | max_errors = 1; |
| 5105 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) { |
| 5106 | max_errors = 2; |
| 5107 | } else { |
| 5108 | max_errors = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5109 | } |
| 5110 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5111 | return max_errors; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5112 | } |
| 5113 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5114 | 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] | 5115 | { |
| 5116 | struct extent_map *em; |
| 5117 | struct map_lookup *map; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5118 | int readonly = 0; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5119 | int miss_ndevs = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5120 | int i; |
| 5121 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5122 | em = get_chunk_map(fs_info, chunk_offset, 1); |
| 5123 | if (IS_ERR(em)) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5124 | return 1; |
| 5125 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5126 | map = em->map_lookup; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5127 | for (i = 0; i < map->num_stripes; i++) { |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 5128 | if (test_bit(BTRFS_DEV_STATE_MISSING, |
| 5129 | &map->stripes[i].dev->dev_state)) { |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5130 | miss_ndevs++; |
| 5131 | continue; |
| 5132 | } |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 5133 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, |
| 5134 | &map->stripes[i].dev->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5135 | readonly = 1; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5136 | goto end; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5137 | } |
| 5138 | } |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5139 | |
| 5140 | /* |
| 5141 | * If the number of missing devices is larger than max errors, |
| 5142 | * we can not write the data into that chunk successfully, so |
| 5143 | * set it readonly. |
| 5144 | */ |
| 5145 | if (miss_ndevs > btrfs_chunk_max_errors(map)) |
| 5146 | readonly = 1; |
| 5147 | end: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5148 | free_extent_map(em); |
| 5149 | return readonly; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5150 | } |
| 5151 | |
| 5152 | void btrfs_mapping_init(struct btrfs_mapping_tree *tree) |
| 5153 | { |
David Sterba | a8067e0 | 2011-04-21 00:34:43 +0200 | [diff] [blame] | 5154 | extent_map_tree_init(&tree->map_tree); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5155 | } |
| 5156 | |
| 5157 | void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree) |
| 5158 | { |
| 5159 | struct extent_map *em; |
| 5160 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5161 | while (1) { |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5162 | write_lock(&tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5163 | em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1); |
| 5164 | if (em) |
| 5165 | remove_extent_mapping(&tree->map_tree, em); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5166 | write_unlock(&tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5167 | if (!em) |
| 5168 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5169 | /* once for us */ |
| 5170 | free_extent_map(em); |
| 5171 | /* once for the tree */ |
| 5172 | free_extent_map(em); |
| 5173 | } |
| 5174 | } |
| 5175 | |
Stefan Behrens | 5d96405 | 2012-11-05 14:59:07 +0100 | [diff] [blame] | 5176 | 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] | 5177 | { |
| 5178 | struct extent_map *em; |
| 5179 | struct map_lookup *map; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5180 | int ret; |
| 5181 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5182 | em = get_chunk_map(fs_info, logical, len); |
| 5183 | if (IS_ERR(em)) |
| 5184 | /* |
| 5185 | * We could return errors for these cases, but that could get |
| 5186 | * ugly and we'd probably do the same thing which is just not do |
| 5187 | * anything else and exit, so return 1 so the callers don't try |
| 5188 | * to use other copies. |
| 5189 | */ |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5190 | return 1; |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5191 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5192 | map = em->map_lookup; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5193 | if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1)) |
| 5194 | ret = map->num_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5195 | else if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
| 5196 | ret = map->sub_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5197 | else if (map->type & BTRFS_BLOCK_GROUP_RAID5) |
| 5198 | ret = 2; |
| 5199 | else if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
Liu Bo | 8810f75 | 2018-01-02 13:36:41 -0700 | [diff] [blame] | 5200 | /* |
| 5201 | * There could be two corrupted data stripes, we need |
| 5202 | * to loop retry in order to rebuild the correct data. |
| 5203 | * |
| 5204 | * Fail a stripe at a time on every retry except the |
| 5205 | * stripe under reconstruction. |
| 5206 | */ |
| 5207 | ret = map->num_stripes; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5208 | else |
| 5209 | ret = 1; |
| 5210 | free_extent_map(em); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5211 | |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5212 | btrfs_dev_replace_lock(&fs_info->dev_replace, 0); |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5213 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) && |
| 5214 | fs_info->dev_replace.tgtdev) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5215 | ret++; |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5216 | btrfs_dev_replace_unlock(&fs_info->dev_replace, 0); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5217 | |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5218 | return ret; |
| 5219 | } |
| 5220 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5221 | unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info, |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5222 | u64 logical) |
| 5223 | { |
| 5224 | struct extent_map *em; |
| 5225 | struct map_lookup *map; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5226 | unsigned long len = fs_info->sectorsize; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5227 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5228 | em = get_chunk_map(fs_info, logical, len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5229 | |
Nikolay Borisov | 69f03f1 | 2017-07-11 16:55:51 +0300 | [diff] [blame] | 5230 | if (!WARN_ON(IS_ERR(em))) { |
| 5231 | map = em->map_lookup; |
| 5232 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 5233 | len = map->stripe_len * nr_data_stripes(map); |
| 5234 | free_extent_map(em); |
| 5235 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5236 | return len; |
| 5237 | } |
| 5238 | |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 5239 | 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] | 5240 | { |
| 5241 | struct extent_map *em; |
| 5242 | struct map_lookup *map; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5243 | int ret = 0; |
| 5244 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5245 | em = get_chunk_map(fs_info, logical, len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5246 | |
Nikolay Borisov | 69f03f1 | 2017-07-11 16:55:51 +0300 | [diff] [blame] | 5247 | if(!WARN_ON(IS_ERR(em))) { |
| 5248 | map = em->map_lookup; |
| 5249 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 5250 | ret = 1; |
| 5251 | free_extent_map(em); |
| 5252 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5253 | return ret; |
| 5254 | } |
| 5255 | |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5256 | static int find_live_mirror(struct btrfs_fs_info *fs_info, |
| 5257 | struct map_lookup *map, int first, int num, |
| 5258 | int optimal, int dev_replace_is_ongoing) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5259 | { |
| 5260 | int i; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5261 | int tolerance; |
| 5262 | struct btrfs_device *srcdev; |
| 5263 | |
| 5264 | if (dev_replace_is_ongoing && |
| 5265 | fs_info->dev_replace.cont_reading_from_srcdev_mode == |
| 5266 | BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID) |
| 5267 | srcdev = fs_info->dev_replace.srcdev; |
| 5268 | else |
| 5269 | srcdev = NULL; |
| 5270 | |
| 5271 | /* |
| 5272 | * try to avoid the drive that is the source drive for a |
| 5273 | * dev-replace procedure, only choose it if no other non-missing |
| 5274 | * mirror is available |
| 5275 | */ |
| 5276 | for (tolerance = 0; tolerance < 2; tolerance++) { |
| 5277 | if (map->stripes[optimal].dev->bdev && |
| 5278 | (tolerance || map->stripes[optimal].dev != srcdev)) |
| 5279 | return optimal; |
| 5280 | for (i = first; i < first + num; i++) { |
| 5281 | if (map->stripes[i].dev->bdev && |
| 5282 | (tolerance || map->stripes[i].dev != srcdev)) |
| 5283 | return i; |
| 5284 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5285 | } |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5286 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5287 | /* we couldn't find one that doesn't fail. Just return something |
| 5288 | * and the io error handling code will clean up eventually |
| 5289 | */ |
| 5290 | return optimal; |
| 5291 | } |
| 5292 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5293 | static inline int parity_smaller(u64 a, u64 b) |
| 5294 | { |
| 5295 | return a > b; |
| 5296 | } |
| 5297 | |
| 5298 | /* Bubble-sort the stripe set to put the parity/syndrome stripes last */ |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5299 | static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5300 | { |
| 5301 | struct btrfs_bio_stripe s; |
| 5302 | int i; |
| 5303 | u64 l; |
| 5304 | int again = 1; |
| 5305 | |
| 5306 | while (again) { |
| 5307 | again = 0; |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5308 | for (i = 0; i < num_stripes - 1; i++) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5309 | if (parity_smaller(bbio->raid_map[i], |
| 5310 | bbio->raid_map[i+1])) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5311 | s = bbio->stripes[i]; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5312 | l = bbio->raid_map[i]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5313 | bbio->stripes[i] = bbio->stripes[i+1]; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5314 | bbio->raid_map[i] = bbio->raid_map[i+1]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5315 | bbio->stripes[i+1] = s; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5316 | bbio->raid_map[i+1] = l; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5317 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5318 | again = 1; |
| 5319 | } |
| 5320 | } |
| 5321 | } |
| 5322 | } |
| 5323 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5324 | static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes) |
| 5325 | { |
| 5326 | struct btrfs_bio *bbio = kzalloc( |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5327 | /* the size of the btrfs_bio */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5328 | sizeof(struct btrfs_bio) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5329 | /* plus the variable array for the stripes */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5330 | sizeof(struct btrfs_bio_stripe) * (total_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5331 | /* plus the variable array for the tgt dev */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5332 | sizeof(int) * (real_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5333 | /* |
| 5334 | * plus the raid_map, which includes both the tgt dev |
| 5335 | * and the stripes |
| 5336 | */ |
| 5337 | sizeof(u64) * (total_stripes), |
Michal Hocko | 277fb5f | 2015-08-19 14:17:41 +0200 | [diff] [blame] | 5338 | GFP_NOFS|__GFP_NOFAIL); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5339 | |
| 5340 | atomic_set(&bbio->error, 0); |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5341 | refcount_set(&bbio->refs, 1); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5342 | |
| 5343 | return bbio; |
| 5344 | } |
| 5345 | |
| 5346 | void btrfs_get_bbio(struct btrfs_bio *bbio) |
| 5347 | { |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5348 | WARN_ON(!refcount_read(&bbio->refs)); |
| 5349 | refcount_inc(&bbio->refs); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5350 | } |
| 5351 | |
| 5352 | void btrfs_put_bbio(struct btrfs_bio *bbio) |
| 5353 | { |
| 5354 | if (!bbio) |
| 5355 | return; |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5356 | if (refcount_dec_and_test(&bbio->refs)) |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5357 | kfree(bbio); |
| 5358 | } |
| 5359 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5360 | /* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */ |
| 5361 | /* |
| 5362 | * Please note that, discard won't be sent to target device of device |
| 5363 | * replace. |
| 5364 | */ |
| 5365 | static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info, |
| 5366 | u64 logical, u64 length, |
| 5367 | struct btrfs_bio **bbio_ret) |
| 5368 | { |
| 5369 | struct extent_map *em; |
| 5370 | struct map_lookup *map; |
| 5371 | struct btrfs_bio *bbio; |
| 5372 | u64 offset; |
| 5373 | u64 stripe_nr; |
| 5374 | u64 stripe_nr_end; |
| 5375 | u64 stripe_end_offset; |
| 5376 | u64 stripe_cnt; |
| 5377 | u64 stripe_len; |
| 5378 | u64 stripe_offset; |
| 5379 | u64 num_stripes; |
| 5380 | u32 stripe_index; |
| 5381 | u32 factor = 0; |
| 5382 | u32 sub_stripes = 0; |
| 5383 | u64 stripes_per_dev = 0; |
| 5384 | u32 remaining_stripes = 0; |
| 5385 | u32 last_stripe = 0; |
| 5386 | int ret = 0; |
| 5387 | int i; |
| 5388 | |
| 5389 | /* discard always return a bbio */ |
| 5390 | ASSERT(bbio_ret); |
| 5391 | |
| 5392 | em = get_chunk_map(fs_info, logical, length); |
| 5393 | if (IS_ERR(em)) |
| 5394 | return PTR_ERR(em); |
| 5395 | |
| 5396 | map = em->map_lookup; |
| 5397 | /* we don't discard raid56 yet */ |
| 5398 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
| 5399 | ret = -EOPNOTSUPP; |
| 5400 | goto out; |
| 5401 | } |
| 5402 | |
| 5403 | offset = logical - em->start; |
| 5404 | length = min_t(u64, em->len - offset, length); |
| 5405 | |
| 5406 | stripe_len = map->stripe_len; |
| 5407 | /* |
| 5408 | * stripe_nr counts the total number of stripes we have to stride |
| 5409 | * to get to this block |
| 5410 | */ |
| 5411 | stripe_nr = div64_u64(offset, stripe_len); |
| 5412 | |
| 5413 | /* stripe_offset is the offset of this block in its stripe */ |
| 5414 | stripe_offset = offset - stripe_nr * stripe_len; |
| 5415 | |
| 5416 | stripe_nr_end = round_up(offset + length, map->stripe_len); |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 5417 | stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5418 | stripe_cnt = stripe_nr_end - stripe_nr; |
| 5419 | stripe_end_offset = stripe_nr_end * map->stripe_len - |
| 5420 | (offset + length); |
| 5421 | /* |
| 5422 | * after this, stripe_nr is the number of stripes on this |
| 5423 | * device we have to walk to find the data, and stripe_index is |
| 5424 | * the number of our device in the stripe array |
| 5425 | */ |
| 5426 | num_stripes = 1; |
| 5427 | stripe_index = 0; |
| 5428 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 5429 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5430 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
| 5431 | sub_stripes = 1; |
| 5432 | else |
| 5433 | sub_stripes = map->sub_stripes; |
| 5434 | |
| 5435 | factor = map->num_stripes / sub_stripes; |
| 5436 | num_stripes = min_t(u64, map->num_stripes, |
| 5437 | sub_stripes * stripe_cnt); |
| 5438 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
| 5439 | stripe_index *= sub_stripes; |
| 5440 | stripes_per_dev = div_u64_rem(stripe_cnt, factor, |
| 5441 | &remaining_stripes); |
| 5442 | div_u64_rem(stripe_nr_end - 1, factor, &last_stripe); |
| 5443 | last_stripe *= sub_stripes; |
| 5444 | } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1 | |
| 5445 | BTRFS_BLOCK_GROUP_DUP)) { |
| 5446 | num_stripes = map->num_stripes; |
| 5447 | } else { |
| 5448 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5449 | &stripe_index); |
| 5450 | } |
| 5451 | |
| 5452 | bbio = alloc_btrfs_bio(num_stripes, 0); |
| 5453 | if (!bbio) { |
| 5454 | ret = -ENOMEM; |
| 5455 | goto out; |
| 5456 | } |
| 5457 | |
| 5458 | for (i = 0; i < num_stripes; i++) { |
| 5459 | bbio->stripes[i].physical = |
| 5460 | map->stripes[stripe_index].physical + |
| 5461 | stripe_offset + stripe_nr * map->stripe_len; |
| 5462 | bbio->stripes[i].dev = map->stripes[stripe_index].dev; |
| 5463 | |
| 5464 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 5465 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5466 | bbio->stripes[i].length = stripes_per_dev * |
| 5467 | map->stripe_len; |
| 5468 | |
| 5469 | if (i / sub_stripes < remaining_stripes) |
| 5470 | bbio->stripes[i].length += |
| 5471 | map->stripe_len; |
| 5472 | |
| 5473 | /* |
| 5474 | * Special for the first stripe and |
| 5475 | * the last stripe: |
| 5476 | * |
| 5477 | * |-------|...|-------| |
| 5478 | * |----------| |
| 5479 | * off end_off |
| 5480 | */ |
| 5481 | if (i < sub_stripes) |
| 5482 | bbio->stripes[i].length -= |
| 5483 | stripe_offset; |
| 5484 | |
| 5485 | if (stripe_index >= last_stripe && |
| 5486 | stripe_index <= (last_stripe + |
| 5487 | sub_stripes - 1)) |
| 5488 | bbio->stripes[i].length -= |
| 5489 | stripe_end_offset; |
| 5490 | |
| 5491 | if (i == sub_stripes - 1) |
| 5492 | stripe_offset = 0; |
| 5493 | } else { |
| 5494 | bbio->stripes[i].length = length; |
| 5495 | } |
| 5496 | |
| 5497 | stripe_index++; |
| 5498 | if (stripe_index == map->num_stripes) { |
| 5499 | stripe_index = 0; |
| 5500 | stripe_nr++; |
| 5501 | } |
| 5502 | } |
| 5503 | |
| 5504 | *bbio_ret = bbio; |
| 5505 | bbio->map_type = map->type; |
| 5506 | bbio->num_stripes = num_stripes; |
| 5507 | out: |
| 5508 | free_extent_map(em); |
| 5509 | return ret; |
| 5510 | } |
| 5511 | |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5512 | /* |
| 5513 | * In dev-replace case, for repair case (that's the only case where the mirror |
| 5514 | * is selected explicitly when calling btrfs_map_block), blocks left of the |
| 5515 | * left cursor can also be read from the target drive. |
| 5516 | * |
| 5517 | * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the |
| 5518 | * array of stripes. |
| 5519 | * For READ, it also needs to be supported using the same mirror number. |
| 5520 | * |
| 5521 | * If the requested block is not left of the left cursor, EIO is returned. This |
| 5522 | * can happen because btrfs_num_copies() returns one more in the dev-replace |
| 5523 | * case. |
| 5524 | */ |
| 5525 | static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info, |
| 5526 | u64 logical, u64 length, |
| 5527 | u64 srcdev_devid, int *mirror_num, |
| 5528 | u64 *physical) |
| 5529 | { |
| 5530 | struct btrfs_bio *bbio = NULL; |
| 5531 | int num_stripes; |
| 5532 | int index_srcdev = 0; |
| 5533 | int found = 0; |
| 5534 | u64 physical_of_found = 0; |
| 5535 | int i; |
| 5536 | int ret = 0; |
| 5537 | |
| 5538 | ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS, |
| 5539 | logical, &length, &bbio, 0, 0); |
| 5540 | if (ret) { |
| 5541 | ASSERT(bbio == NULL); |
| 5542 | return ret; |
| 5543 | } |
| 5544 | |
| 5545 | num_stripes = bbio->num_stripes; |
| 5546 | if (*mirror_num > num_stripes) { |
| 5547 | /* |
| 5548 | * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror, |
| 5549 | * that means that the requested area is not left of the left |
| 5550 | * cursor |
| 5551 | */ |
| 5552 | btrfs_put_bbio(bbio); |
| 5553 | return -EIO; |
| 5554 | } |
| 5555 | |
| 5556 | /* |
| 5557 | * process the rest of the function using the mirror_num of the source |
| 5558 | * drive. Therefore look it up first. At the end, patch the device |
| 5559 | * pointer to the one of the target drive. |
| 5560 | */ |
| 5561 | for (i = 0; i < num_stripes; i++) { |
| 5562 | if (bbio->stripes[i].dev->devid != srcdev_devid) |
| 5563 | continue; |
| 5564 | |
| 5565 | /* |
| 5566 | * In case of DUP, in order to keep it simple, only add the |
| 5567 | * mirror with the lowest physical address |
| 5568 | */ |
| 5569 | if (found && |
| 5570 | physical_of_found <= bbio->stripes[i].physical) |
| 5571 | continue; |
| 5572 | |
| 5573 | index_srcdev = i; |
| 5574 | found = 1; |
| 5575 | physical_of_found = bbio->stripes[i].physical; |
| 5576 | } |
| 5577 | |
| 5578 | btrfs_put_bbio(bbio); |
| 5579 | |
| 5580 | ASSERT(found); |
| 5581 | if (!found) |
| 5582 | return -EIO; |
| 5583 | |
| 5584 | *mirror_num = index_srcdev + 1; |
| 5585 | *physical = physical_of_found; |
| 5586 | return ret; |
| 5587 | } |
| 5588 | |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 5589 | static void handle_ops_on_dev_replace(enum btrfs_map_op op, |
| 5590 | struct btrfs_bio **bbio_ret, |
| 5591 | struct btrfs_dev_replace *dev_replace, |
| 5592 | int *num_stripes_ret, int *max_errors_ret) |
| 5593 | { |
| 5594 | struct btrfs_bio *bbio = *bbio_ret; |
| 5595 | u64 srcdev_devid = dev_replace->srcdev->devid; |
| 5596 | int tgtdev_indexes = 0; |
| 5597 | int num_stripes = *num_stripes_ret; |
| 5598 | int max_errors = *max_errors_ret; |
| 5599 | int i; |
| 5600 | |
| 5601 | if (op == BTRFS_MAP_WRITE) { |
| 5602 | int index_where_to_add; |
| 5603 | |
| 5604 | /* |
| 5605 | * duplicate the write operations while the dev replace |
| 5606 | * procedure is running. Since the copying of the old disk to |
| 5607 | * the new disk takes place at run time while the filesystem is |
| 5608 | * mounted writable, the regular write operations to the old |
| 5609 | * disk have to be duplicated to go to the new disk as well. |
| 5610 | * |
| 5611 | * Note that device->missing is handled by the caller, and that |
| 5612 | * the write to the old disk is already set up in the stripes |
| 5613 | * array. |
| 5614 | */ |
| 5615 | index_where_to_add = num_stripes; |
| 5616 | for (i = 0; i < num_stripes; i++) { |
| 5617 | if (bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5618 | /* write to new disk, too */ |
| 5619 | struct btrfs_bio_stripe *new = |
| 5620 | bbio->stripes + index_where_to_add; |
| 5621 | struct btrfs_bio_stripe *old = |
| 5622 | bbio->stripes + i; |
| 5623 | |
| 5624 | new->physical = old->physical; |
| 5625 | new->length = old->length; |
| 5626 | new->dev = dev_replace->tgtdev; |
| 5627 | bbio->tgtdev_map[i] = index_where_to_add; |
| 5628 | index_where_to_add++; |
| 5629 | max_errors++; |
| 5630 | tgtdev_indexes++; |
| 5631 | } |
| 5632 | } |
| 5633 | num_stripes = index_where_to_add; |
| 5634 | } else if (op == BTRFS_MAP_GET_READ_MIRRORS) { |
| 5635 | int index_srcdev = 0; |
| 5636 | int found = 0; |
| 5637 | u64 physical_of_found = 0; |
| 5638 | |
| 5639 | /* |
| 5640 | * During the dev-replace procedure, the target drive can also |
| 5641 | * be used to read data in case it is needed to repair a corrupt |
| 5642 | * block elsewhere. This is possible if the requested area is |
| 5643 | * left of the left cursor. In this area, the target drive is a |
| 5644 | * full copy of the source drive. |
| 5645 | */ |
| 5646 | for (i = 0; i < num_stripes; i++) { |
| 5647 | if (bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5648 | /* |
| 5649 | * In case of DUP, in order to keep it simple, |
| 5650 | * only add the mirror with the lowest physical |
| 5651 | * address |
| 5652 | */ |
| 5653 | if (found && |
| 5654 | physical_of_found <= |
| 5655 | bbio->stripes[i].physical) |
| 5656 | continue; |
| 5657 | index_srcdev = i; |
| 5658 | found = 1; |
| 5659 | physical_of_found = bbio->stripes[i].physical; |
| 5660 | } |
| 5661 | } |
| 5662 | if (found) { |
| 5663 | struct btrfs_bio_stripe *tgtdev_stripe = |
| 5664 | bbio->stripes + num_stripes; |
| 5665 | |
| 5666 | tgtdev_stripe->physical = physical_of_found; |
| 5667 | tgtdev_stripe->length = |
| 5668 | bbio->stripes[index_srcdev].length; |
| 5669 | tgtdev_stripe->dev = dev_replace->tgtdev; |
| 5670 | bbio->tgtdev_map[index_srcdev] = num_stripes; |
| 5671 | |
| 5672 | tgtdev_indexes++; |
| 5673 | num_stripes++; |
| 5674 | } |
| 5675 | } |
| 5676 | |
| 5677 | *num_stripes_ret = num_stripes; |
| 5678 | *max_errors_ret = max_errors; |
| 5679 | bbio->num_tgtdevs = tgtdev_indexes; |
| 5680 | *bbio_ret = bbio; |
| 5681 | } |
| 5682 | |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5683 | static bool need_full_stripe(enum btrfs_map_op op) |
| 5684 | { |
| 5685 | return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS); |
| 5686 | } |
| 5687 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5688 | static int __btrfs_map_block(struct btrfs_fs_info *fs_info, |
| 5689 | enum btrfs_map_op op, |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5690 | u64 logical, u64 *length, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5691 | struct btrfs_bio **bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5692 | int mirror_num, int need_raid_map) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5693 | { |
| 5694 | struct extent_map *em; |
| 5695 | struct map_lookup *map; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5696 | u64 offset; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5697 | u64 stripe_offset; |
| 5698 | u64 stripe_nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5699 | u64 stripe_len; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5700 | u32 stripe_index; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5701 | int i; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5702 | int ret = 0; |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5703 | int num_stripes; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 5704 | int max_errors = 0; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5705 | int tgtdev_indexes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5706 | struct btrfs_bio *bbio = NULL; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5707 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 5708 | int dev_replace_is_ongoing = 0; |
| 5709 | int num_alloc_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5710 | int patch_the_first_stripe_for_dev_replace = 0; |
| 5711 | u64 physical_to_patch_in_first_stripe = 0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5712 | u64 raid56_full_stripe_start = (u64)-1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5713 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5714 | if (op == BTRFS_MAP_DISCARD) |
| 5715 | return __btrfs_map_block_for_discard(fs_info, logical, |
| 5716 | *length, bbio_ret); |
| 5717 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5718 | em = get_chunk_map(fs_info, logical, *length); |
| 5719 | if (IS_ERR(em)) |
| 5720 | return PTR_ERR(em); |
Josef Bacik | 9bb9187 | 2013-04-19 23:45:33 -0400 | [diff] [blame] | 5721 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5722 | map = em->map_lookup; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5723 | offset = logical - em->start; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5724 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5725 | stripe_len = map->stripe_len; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5726 | stripe_nr = offset; |
| 5727 | /* |
| 5728 | * stripe_nr counts the total number of stripes we have to stride |
| 5729 | * to get to this block |
| 5730 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5731 | stripe_nr = div64_u64(stripe_nr, stripe_len); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5732 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5733 | stripe_offset = stripe_nr * stripe_len; |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 5734 | if (offset < stripe_offset) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 5735 | btrfs_crit(fs_info, |
| 5736 | "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] | 5737 | stripe_offset, offset, em->start, logical, |
| 5738 | stripe_len); |
| 5739 | free_extent_map(em); |
| 5740 | return -EINVAL; |
| 5741 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5742 | |
| 5743 | /* stripe_offset is the offset of this block in its stripe*/ |
| 5744 | stripe_offset = offset - stripe_offset; |
| 5745 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5746 | /* 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] | 5747 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5748 | unsigned long full_stripe_len = stripe_len * nr_data_stripes(map); |
| 5749 | raid56_full_stripe_start = offset; |
| 5750 | |
| 5751 | /* allow a write of a full stripe, but make sure we don't |
| 5752 | * allow straddling of stripes |
| 5753 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5754 | raid56_full_stripe_start = div64_u64(raid56_full_stripe_start, |
| 5755 | full_stripe_len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5756 | raid56_full_stripe_start *= full_stripe_len; |
| 5757 | } |
| 5758 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5759 | if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5760 | u64 max_len; |
| 5761 | /* For writes to RAID[56], allow a full stripeset across all disks. |
| 5762 | For other RAID types and for RAID[56] reads, just allow a single |
| 5763 | stripe (on a single disk). */ |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5764 | if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5765 | (op == BTRFS_MAP_WRITE)) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5766 | max_len = stripe_len * nr_data_stripes(map) - |
| 5767 | (offset - raid56_full_stripe_start); |
| 5768 | } else { |
| 5769 | /* we limit the length of each bio to what fits in a stripe */ |
| 5770 | max_len = stripe_len - stripe_offset; |
| 5771 | } |
| 5772 | *length = min_t(u64, em->len - offset, max_len); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5773 | } else { |
| 5774 | *length = em->len - offset; |
| 5775 | } |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5776 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5777 | /* This is for when we're called from btrfs_merge_bio_hook() and all |
| 5778 | it cares about is the length */ |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5779 | if (!bbio_ret) |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5780 | goto out; |
| 5781 | |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5782 | btrfs_dev_replace_lock(dev_replace, 0); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5783 | dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace); |
| 5784 | if (!dev_replace_is_ongoing) |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5785 | btrfs_dev_replace_unlock(dev_replace, 0); |
| 5786 | else |
| 5787 | btrfs_dev_replace_set_lock_blocking(dev_replace); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5788 | |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5789 | if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 && |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5790 | !need_full_stripe(op) && dev_replace->tgtdev != NULL) { |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5791 | ret = get_extra_mirror_from_replace(fs_info, logical, *length, |
| 5792 | dev_replace->srcdev->devid, |
| 5793 | &mirror_num, |
| 5794 | &physical_to_patch_in_first_stripe); |
| 5795 | if (ret) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5796 | goto out; |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5797 | else |
| 5798 | patch_the_first_stripe_for_dev_replace = 1; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5799 | } else if (mirror_num > map->num_stripes) { |
| 5800 | mirror_num = 0; |
| 5801 | } |
| 5802 | |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5803 | num_stripes = 1; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5804 | stripe_index = 0; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5805 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5806 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5807 | &stripe_index); |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5808 | if (!need_full_stripe(op)) |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 5809 | mirror_num = 1; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5810 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5811 | if (need_full_stripe(op)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5812 | num_stripes = map->num_stripes; |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5813 | else if (mirror_num) |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5814 | stripe_index = mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5815 | else { |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5816 | stripe_index = find_live_mirror(fs_info, map, 0, |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5817 | map->num_stripes, |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5818 | current->pid % map->num_stripes, |
| 5819 | dev_replace_is_ongoing); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5820 | mirror_num = stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5821 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5822 | |
Chris Mason | 611f0e0 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5823 | } else if (map->type & BTRFS_BLOCK_GROUP_DUP) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5824 | if (need_full_stripe(op)) { |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5825 | num_stripes = map->num_stripes; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5826 | } else if (mirror_num) { |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5827 | stripe_index = mirror_num - 1; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5828 | } else { |
| 5829 | mirror_num = 1; |
| 5830 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5831 | |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5832 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5833 | u32 factor = map->num_stripes / map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5834 | |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5835 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5836 | stripe_index *= map->sub_stripes; |
| 5837 | |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5838 | if (need_full_stripe(op)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5839 | num_stripes = map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5840 | else if (mirror_num) |
| 5841 | stripe_index += mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5842 | else { |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 5843 | int old_stripe_index = stripe_index; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5844 | stripe_index = find_live_mirror(fs_info, map, |
| 5845 | stripe_index, |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5846 | map->sub_stripes, stripe_index + |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5847 | current->pid % map->sub_stripes, |
| 5848 | dev_replace_is_ongoing); |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 5849 | mirror_num = stripe_index - old_stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5850 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5851 | |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5852 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5853 | if (need_raid_map && (need_full_stripe(op) || mirror_num > 1)) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5854 | /* push stripe_nr back to the start of the full stripe */ |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 5855 | stripe_nr = div64_u64(raid56_full_stripe_start, |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5856 | stripe_len * nr_data_stripes(map)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5857 | |
| 5858 | /* RAID[56] write or recovery. Return all stripes */ |
| 5859 | num_stripes = map->num_stripes; |
| 5860 | max_errors = nr_parity_stripes(map); |
| 5861 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5862 | *length = map->stripe_len; |
| 5863 | stripe_index = 0; |
| 5864 | stripe_offset = 0; |
| 5865 | } else { |
| 5866 | /* |
| 5867 | * Mirror #0 or #1 means the original data block. |
| 5868 | * Mirror #2 is RAID5 parity block. |
| 5869 | * Mirror #3 is RAID6 Q block. |
| 5870 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5871 | stripe_nr = div_u64_rem(stripe_nr, |
| 5872 | nr_data_stripes(map), &stripe_index); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5873 | if (mirror_num > 1) |
| 5874 | stripe_index = nr_data_stripes(map) + |
| 5875 | mirror_num - 2; |
| 5876 | |
| 5877 | /* We distribute the parity blocks across stripes */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5878 | div_u64_rem(stripe_nr + stripe_index, map->num_stripes, |
| 5879 | &stripe_index); |
Anand Jain | de48373 | 2017-10-12 16:43:00 +0800 | [diff] [blame] | 5880 | if (!need_full_stripe(op) && mirror_num <= 1) |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 5881 | mirror_num = 1; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5882 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5883 | } else { |
| 5884 | /* |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5885 | * after this, stripe_nr is the number of stripes on this |
| 5886 | * device we have to walk to find the data, and stripe_index is |
| 5887 | * the number of our device in the stripe array |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5888 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5889 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5890 | &stripe_index); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5891 | mirror_num = stripe_index + 1; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5892 | } |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 5893 | if (stripe_index >= map->num_stripes) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 5894 | btrfs_crit(fs_info, |
| 5895 | "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] | 5896 | stripe_index, map->num_stripes); |
| 5897 | ret = -EINVAL; |
| 5898 | goto out; |
| 5899 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5900 | |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5901 | num_alloc_stripes = num_stripes; |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5902 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) { |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5903 | if (op == BTRFS_MAP_WRITE) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5904 | num_alloc_stripes <<= 1; |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5905 | if (op == BTRFS_MAP_GET_READ_MIRRORS) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5906 | num_alloc_stripes++; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5907 | tgtdev_indexes = num_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5908 | } |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5909 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5910 | bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5911 | if (!bbio) { |
| 5912 | ret = -ENOMEM; |
| 5913 | goto out; |
| 5914 | } |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5915 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5916 | bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5917 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5918 | /* build raid_map */ |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5919 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map && |
| 5920 | (need_full_stripe(op) || mirror_num > 1)) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5921 | u64 tmp; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5922 | unsigned rot; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5923 | |
| 5924 | bbio->raid_map = (u64 *)((void *)bbio->stripes + |
| 5925 | sizeof(struct btrfs_bio_stripe) * |
| 5926 | num_alloc_stripes + |
| 5927 | sizeof(int) * tgtdev_indexes); |
| 5928 | |
| 5929 | /* Work out the disk rotation on this stripe-set */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5930 | div_u64_rem(stripe_nr, num_stripes, &rot); |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5931 | |
| 5932 | /* Fill in the logical address of each stripe */ |
| 5933 | tmp = stripe_nr * nr_data_stripes(map); |
| 5934 | for (i = 0; i < nr_data_stripes(map); i++) |
| 5935 | bbio->raid_map[(i+rot) % num_stripes] = |
| 5936 | em->start + (tmp + i) * map->stripe_len; |
| 5937 | |
| 5938 | bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE; |
| 5939 | if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
| 5940 | bbio->raid_map[(i+rot+1) % num_stripes] = |
| 5941 | RAID6_Q_STRIPE; |
| 5942 | } |
| 5943 | |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5944 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5945 | for (i = 0; i < num_stripes; i++) { |
| 5946 | bbio->stripes[i].physical = |
| 5947 | map->stripes[stripe_index].physical + |
| 5948 | stripe_offset + |
| 5949 | stripe_nr * map->stripe_len; |
| 5950 | bbio->stripes[i].dev = |
| 5951 | map->stripes[stripe_index].dev; |
| 5952 | stripe_index++; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5953 | } |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5954 | |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5955 | if (need_full_stripe(op)) |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5956 | max_errors = btrfs_chunk_max_errors(map); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5957 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5958 | if (bbio->raid_map) |
| 5959 | sort_parity_stripes(bbio, num_stripes); |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5960 | |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 5961 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL && |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5962 | need_full_stripe(op)) { |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 5963 | handle_ops_on_dev_replace(op, &bbio, dev_replace, &num_stripes, |
| 5964 | &max_errors); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5965 | } |
| 5966 | |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5967 | *bbio_ret = bbio; |
Zhao Lei | 10f1190 | 2015-01-20 15:11:43 +0800 | [diff] [blame] | 5968 | bbio->map_type = map->type; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5969 | bbio->num_stripes = num_stripes; |
| 5970 | bbio->max_errors = max_errors; |
| 5971 | bbio->mirror_num = mirror_num; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5972 | |
| 5973 | /* |
| 5974 | * this is the case that REQ_READ && dev_replace_is_ongoing && |
| 5975 | * mirror_num == num_stripes + 1 && dev_replace target drive is |
| 5976 | * available as a mirror |
| 5977 | */ |
| 5978 | if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) { |
| 5979 | WARN_ON(num_stripes > 1); |
| 5980 | bbio->stripes[0].dev = dev_replace->tgtdev; |
| 5981 | bbio->stripes[0].physical = physical_to_patch_in_first_stripe; |
| 5982 | bbio->mirror_num = map->num_stripes + 1; |
| 5983 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5984 | out: |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5985 | if (dev_replace_is_ongoing) { |
| 5986 | btrfs_dev_replace_clear_lock_blocking(dev_replace); |
| 5987 | btrfs_dev_replace_unlock(dev_replace, 0); |
| 5988 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5989 | free_extent_map(em); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5990 | return ret; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5991 | } |
| 5992 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5993 | 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] | 5994 | u64 logical, u64 *length, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5995 | struct btrfs_bio **bbio_ret, int mirror_num) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5996 | { |
Mike Christie | b3d3fa5 | 2016-06-05 14:31:53 -0500 | [diff] [blame] | 5997 | return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5998 | mirror_num, 0); |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5999 | } |
| 6000 | |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 6001 | /* For Scrub/replace */ |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 6002 | 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] | 6003 | u64 logical, u64 *length, |
David Sterba | 825ad4c | 2017-03-28 14:45:22 +0200 | [diff] [blame] | 6004 | struct btrfs_bio **bbio_ret) |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 6005 | { |
David Sterba | 825ad4c | 2017-03-28 14:45:22 +0200 | [diff] [blame] | 6006 | 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] | 6007 | } |
| 6008 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6009 | int btrfs_rmap_block(struct btrfs_fs_info *fs_info, |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6010 | u64 chunk_start, u64 physical, u64 devid, |
| 6011 | u64 **logical, int *naddrs, int *stripe_len) |
| 6012 | { |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6013 | struct extent_map *em; |
| 6014 | struct map_lookup *map; |
| 6015 | u64 *buf; |
| 6016 | u64 bytenr; |
| 6017 | u64 length; |
| 6018 | u64 stripe_nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6019 | u64 rmap_len; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6020 | int i, j, nr = 0; |
| 6021 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 6022 | em = get_chunk_map(fs_info, chunk_start, 1); |
| 6023 | if (IS_ERR(em)) |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 6024 | return -EIO; |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 6025 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 6026 | map = em->map_lookup; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6027 | length = em->len; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6028 | rmap_len = map->stripe_len; |
| 6029 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6030 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6031 | length = div_u64(length, map->num_stripes / map->sub_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6032 | else if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6033 | length = div_u64(length, map->num_stripes); |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 6034 | else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6035 | length = div_u64(length, nr_data_stripes(map)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6036 | rmap_len = map->stripe_len * nr_data_stripes(map); |
| 6037 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6038 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 6039 | buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6040 | BUG_ON(!buf); /* -ENOMEM */ |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6041 | |
| 6042 | for (i = 0; i < map->num_stripes; i++) { |
| 6043 | if (devid && map->stripes[i].dev->devid != devid) |
| 6044 | continue; |
| 6045 | if (map->stripes[i].physical > physical || |
| 6046 | map->stripes[i].physical + length <= physical) |
| 6047 | continue; |
| 6048 | |
| 6049 | stripe_nr = physical - map->stripes[i].physical; |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 6050 | stripe_nr = div64_u64(stripe_nr, map->stripe_len); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6051 | |
| 6052 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
| 6053 | stripe_nr = stripe_nr * map->num_stripes + i; |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 6054 | stripe_nr = div_u64(stripe_nr, map->sub_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6055 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
| 6056 | stripe_nr = stripe_nr * map->num_stripes + i; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6057 | } /* else if RAID[56], multiply by nr_data_stripes(). |
| 6058 | * Alternatively, just use rmap_len below instead of |
| 6059 | * map->stripe_len */ |
| 6060 | |
| 6061 | bytenr = chunk_start + stripe_nr * rmap_len; |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 6062 | WARN_ON(nr >= map->num_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6063 | for (j = 0; j < nr; j++) { |
| 6064 | if (buf[j] == bytenr) |
| 6065 | break; |
| 6066 | } |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 6067 | if (j == nr) { |
| 6068 | WARN_ON(nr >= map->num_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6069 | buf[nr++] = bytenr; |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 6070 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6071 | } |
| 6072 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6073 | *logical = buf; |
| 6074 | *naddrs = nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6075 | *stripe_len = rmap_len; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 6076 | |
| 6077 | free_extent_map(em); |
| 6078 | return 0; |
| 6079 | } |
| 6080 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6081 | 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] | 6082 | { |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 6083 | bio->bi_private = bbio->private; |
| 6084 | bio->bi_end_io = bbio->end_io; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6085 | bio_endio(bio); |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 6086 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 6087 | btrfs_put_bbio(bbio); |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6088 | } |
| 6089 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6090 | static void btrfs_end_bio(struct bio *bio) |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6091 | { |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6092 | struct btrfs_bio *bbio = bio->bi_private; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6093 | int is_orig_bio = 0; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6094 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6095 | if (bio->bi_status) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6096 | atomic_inc(&bbio->error); |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6097 | if (bio->bi_status == BLK_STS_IOERR || |
| 6098 | bio->bi_status == BLK_STS_TARGET) { |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6099 | unsigned int stripe_index = |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6100 | btrfs_io_bio(bio)->stripe_index; |
Zhao Lei | 65f5333 | 2015-06-08 20:05:50 +0800 | [diff] [blame] | 6101 | struct btrfs_device *dev; |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6102 | |
| 6103 | BUG_ON(stripe_index >= bbio->num_stripes); |
| 6104 | dev = bbio->stripes[stripe_index].dev; |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6105 | if (dev->bdev) { |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6106 | if (bio_op(bio) == REQ_OP_WRITE) |
Anand Jain | 1cb34c8 | 2017-10-21 01:45:33 +0800 | [diff] [blame] | 6107 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6108 | BTRFS_DEV_STAT_WRITE_ERRS); |
| 6109 | else |
Anand Jain | 1cb34c8 | 2017-10-21 01:45:33 +0800 | [diff] [blame] | 6110 | btrfs_dev_stat_inc_and_print(dev, |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6111 | BTRFS_DEV_STAT_READ_ERRS); |
Christoph Hellwig | 70fd761 | 2016-11-01 07:40:10 -0600 | [diff] [blame] | 6112 | if (bio->bi_opf & REQ_PREFLUSH) |
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_FLUSH_ERRS); |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6115 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6116 | } |
| 6117 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6118 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6119 | if (bio == bbio->orig_bio) |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6120 | is_orig_bio = 1; |
| 6121 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6122 | btrfs_bio_counter_dec(bbio->fs_info); |
| 6123 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6124 | if (atomic_dec_and_test(&bbio->stripes_pending)) { |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6125 | if (!is_orig_bio) { |
| 6126 | bio_put(bio); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6127 | bio = bbio->orig_bio; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6128 | } |
Muthu Kumar | c7b22bb | 2014-01-08 14:19:52 -0700 | [diff] [blame] | 6129 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6130 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6131 | /* only send an error to the higher layers if it is |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6132 | * beyond the tolerance of the btrfs bio |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6133 | */ |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6134 | if (atomic_read(&bbio->error) > bbio->max_errors) { |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6135 | bio->bi_status = BLK_STS_IOERR; |
Chris Mason | 5dbc8fc | 2011-12-09 11:07:37 -0500 | [diff] [blame] | 6136 | } else { |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 6137 | /* |
| 6138 | * this bio is actually up to date, we didn't |
| 6139 | * go over the max number of errors |
| 6140 | */ |
Anand Jain | 2dbe0c7 | 2017-10-14 08:35:56 +0800 | [diff] [blame] | 6141 | bio->bi_status = BLK_STS_OK; |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 6142 | } |
Miao Xie | c55f139 | 2014-06-19 10:42:54 +0800 | [diff] [blame] | 6143 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6144 | btrfs_end_bbio(bbio, bio); |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6145 | } else if (!is_orig_bio) { |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6146 | bio_put(bio); |
| 6147 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6148 | } |
| 6149 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6150 | /* |
| 6151 | * see run_scheduled_bios for a description of why bios are collected for |
| 6152 | * async submit. |
| 6153 | * |
| 6154 | * This will add one bio to the pending list for a device and make sure |
| 6155 | * the work struct is scheduled. |
| 6156 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6157 | static noinline void btrfs_schedule_bio(struct btrfs_device *device, |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6158 | struct bio *bio) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6159 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6160 | struct btrfs_fs_info *fs_info = device->fs_info; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6161 | int should_queue = 1; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6162 | struct btrfs_pending_bios *pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6163 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6164 | if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state) || |
| 6165 | !device->bdev) { |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6166 | bio_io_error(bio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6167 | return; |
| 6168 | } |
| 6169 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6170 | /* don't bother with additional async steps for reads, right now */ |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6171 | if (bio_op(bio) == REQ_OP_READ) { |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6172 | btrfsic_submit_bio(bio); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6173 | return; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6174 | } |
| 6175 | |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 6176 | WARN_ON(bio->bi_next); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6177 | bio->bi_next = NULL; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6178 | |
| 6179 | spin_lock(&device->io_lock); |
Christoph Hellwig | 67f055c | 2016-11-01 07:40:06 -0600 | [diff] [blame] | 6180 | if (op_is_sync(bio->bi_opf)) |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6181 | pending_bios = &device->pending_sync_bios; |
| 6182 | else |
| 6183 | pending_bios = &device->pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6184 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6185 | if (pending_bios->tail) |
| 6186 | pending_bios->tail->bi_next = bio; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6187 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6188 | pending_bios->tail = bio; |
| 6189 | if (!pending_bios->head) |
| 6190 | pending_bios->head = bio; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6191 | if (device->running_pending) |
| 6192 | should_queue = 0; |
| 6193 | |
| 6194 | spin_unlock(&device->io_lock); |
| 6195 | |
| 6196 | if (should_queue) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6197 | btrfs_queue_work(fs_info->submit_workers, &device->work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6198 | } |
| 6199 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6200 | static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio, |
| 6201 | u64 physical, int dev_nr, int async) |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6202 | { |
| 6203 | struct btrfs_device *dev = bbio->stripes[dev_nr].dev; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6204 | struct btrfs_fs_info *fs_info = bbio->fs_info; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6205 | |
| 6206 | bio->bi_private = bbio; |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6207 | btrfs_io_bio(bio)->stripe_index = dev_nr; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6208 | bio->bi_end_io = btrfs_end_bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6209 | bio->bi_iter.bi_sector = physical >> 9; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6210 | #ifdef DEBUG |
| 6211 | { |
| 6212 | struct rcu_string *name; |
| 6213 | |
| 6214 | rcu_read_lock(); |
| 6215 | name = rcu_dereference(dev->name); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6216 | btrfs_debug(fs_info, |
| 6217 | "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u", |
| 6218 | bio_op(bio), bio->bi_opf, |
| 6219 | (u64)bio->bi_iter.bi_sector, |
| 6220 | (u_long)dev->bdev->bd_dev, name->str, dev->devid, |
| 6221 | bio->bi_iter.bi_size); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6222 | rcu_read_unlock(); |
| 6223 | } |
| 6224 | #endif |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 6225 | bio_set_dev(bio, dev->bdev); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6226 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6227 | btrfs_bio_counter_inc_noblocked(fs_info); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6228 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6229 | if (async) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6230 | btrfs_schedule_bio(dev, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6231 | else |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6232 | btrfsic_submit_bio(bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6233 | } |
| 6234 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6235 | static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical) |
| 6236 | { |
| 6237 | atomic_inc(&bbio->error); |
| 6238 | if (atomic_dec_and_test(&bbio->stripes_pending)) { |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6239 | /* Should be the original bio. */ |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6240 | WARN_ON(bio != bbio->orig_bio); |
| 6241 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6242 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6243 | bio->bi_iter.bi_sector = logical >> 9; |
Anand Jain | 102ed2c | 2017-10-14 08:34:02 +0800 | [diff] [blame] | 6244 | if (atomic_read(&bbio->error) > bbio->max_errors) |
| 6245 | bio->bi_status = BLK_STS_IOERR; |
| 6246 | else |
| 6247 | bio->bi_status = BLK_STS_OK; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6248 | btrfs_end_bbio(bbio, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6249 | } |
| 6250 | } |
| 6251 | |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6252 | blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio, |
| 6253 | int mirror_num, int async_submit) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6254 | { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6255 | struct btrfs_device *dev; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6256 | struct bio *first_bio = bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6257 | u64 logical = (u64)bio->bi_iter.bi_sector << 9; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6258 | u64 length = 0; |
| 6259 | u64 map_length; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6260 | int ret; |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6261 | int dev_nr; |
| 6262 | int total_devs; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6263 | struct btrfs_bio *bbio = NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6264 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6265 | length = bio->bi_iter.bi_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6266 | map_length = length; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6267 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6268 | btrfs_bio_counter_inc_blocked(fs_info); |
Liu Bo | bd7d63c | 2017-09-19 17:50:09 -0600 | [diff] [blame] | 6269 | ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical, |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6270 | &map_length, &bbio, mirror_num, 1); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6271 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6272 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6273 | return errno_to_blk_status(ret); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6274 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6275 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6276 | total_devs = bbio->num_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6277 | bbio->orig_bio = first_bio; |
| 6278 | bbio->private = first_bio->bi_private; |
| 6279 | bbio->end_io = first_bio->bi_end_io; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6280 | bbio->fs_info = fs_info; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6281 | atomic_set(&bbio->stripes_pending, bbio->num_stripes); |
| 6282 | |
Zhao Lei | ad1ba2a | 2015-12-15 18:18:09 +0800 | [diff] [blame] | 6283 | if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6284 | ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6285 | /* In this case, map_length has been set to the length of |
| 6286 | a single stripe; not the whole write */ |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6287 | if (bio_op(bio) == REQ_OP_WRITE) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6288 | ret = raid56_parity_write(fs_info, bio, bbio, |
| 6289 | map_length); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6290 | } else { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6291 | ret = raid56_parity_recover(fs_info, bio, bbio, |
| 6292 | map_length, mirror_num, 1); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6293 | } |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 6294 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6295 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6296 | return errno_to_blk_status(ret); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6297 | } |
| 6298 | |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6299 | if (map_length < length) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6300 | btrfs_crit(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6301 | "mapping failed logical %llu bio len %llu len %llu", |
| 6302 | logical, length, map_length); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6303 | BUG(); |
| 6304 | } |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6305 | |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6306 | for (dev_nr = 0; dev_nr < total_devs; dev_nr++) { |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6307 | dev = bbio->stripes[dev_nr].dev; |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6308 | if (!dev || !dev->bdev || |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 6309 | (bio_op(first_bio) == REQ_OP_WRITE && |
| 6310 | !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))) { |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6311 | bbio_error(bbio, first_bio, logical); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6312 | continue; |
| 6313 | } |
| 6314 | |
David Sterba | 3aa8e07 | 2017-06-02 17:38:30 +0200 | [diff] [blame] | 6315 | if (dev_nr < total_devs - 1) |
David Sterba | 8b6c1d5 | 2017-06-02 17:48:13 +0200 | [diff] [blame] | 6316 | bio = btrfs_bio_clone(first_bio); |
David Sterba | 3aa8e07 | 2017-06-02 17:38:30 +0200 | [diff] [blame] | 6317 | else |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6318 | bio = first_bio; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 6319 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6320 | submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical, |
| 6321 | dev_nr, async_submit); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6322 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6323 | btrfs_bio_counter_dec(fs_info); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 6324 | return BLK_STS_OK; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6325 | } |
| 6326 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6327 | 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] | 6328 | u8 *uuid, u8 *fsid) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6329 | { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6330 | struct btrfs_device *device; |
| 6331 | struct btrfs_fs_devices *cur_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6332 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6333 | cur_devices = fs_info->fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6334 | while (cur_devices) { |
| 6335 | if (!fsid || |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6336 | !memcmp(cur_devices->fsid, fsid, BTRFS_FSID_SIZE)) { |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 6337 | device = find_device(cur_devices, devid, uuid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6338 | if (device) |
| 6339 | return device; |
| 6340 | } |
| 6341 | cur_devices = cur_devices->seed; |
| 6342 | } |
| 6343 | return NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6344 | } |
| 6345 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6346 | 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] | 6347 | u64 devid, u8 *dev_uuid) |
| 6348 | { |
| 6349 | struct btrfs_device *device; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6350 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6351 | device = btrfs_alloc_device(NULL, &devid, dev_uuid); |
| 6352 | if (IS_ERR(device)) |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6353 | return device; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6354 | |
| 6355 | list_add(&device->dev_list, &fs_devices->devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6356 | device->fs_devices = fs_devices; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6357 | fs_devices->num_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6358 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6359 | set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6360 | fs_devices->missing_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6361 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6362 | return device; |
| 6363 | } |
| 6364 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6365 | /** |
| 6366 | * btrfs_alloc_device - allocate struct btrfs_device |
| 6367 | * @fs_info: used only for generating a new devid, can be NULL if |
| 6368 | * devid is provided (i.e. @devid != NULL). |
| 6369 | * @devid: a pointer to devid for this device. If NULL a new devid |
| 6370 | * is generated. |
| 6371 | * @uuid: a pointer to UUID for this device. If NULL a new UUID |
| 6372 | * is generated. |
| 6373 | * |
| 6374 | * 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] | 6375 | * on error. Returned struct is not linked onto any lists and must be |
| 6376 | * destroyed with free_device. |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6377 | */ |
| 6378 | struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info, |
| 6379 | const u64 *devid, |
| 6380 | const u8 *uuid) |
| 6381 | { |
| 6382 | struct btrfs_device *dev; |
| 6383 | u64 tmp; |
| 6384 | |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6385 | if (WARN_ON(!devid && !fs_info)) |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6386 | return ERR_PTR(-EINVAL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6387 | |
| 6388 | dev = __alloc_device(); |
| 6389 | if (IS_ERR(dev)) |
| 6390 | return dev; |
| 6391 | |
| 6392 | if (devid) |
| 6393 | tmp = *devid; |
| 6394 | else { |
| 6395 | int ret; |
| 6396 | |
| 6397 | ret = find_next_devid(fs_info, &tmp); |
| 6398 | if (ret) { |
David Sterba | 55de480 | 2017-10-30 18:55:47 +0100 | [diff] [blame] | 6399 | free_device(dev); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6400 | return ERR_PTR(ret); |
| 6401 | } |
| 6402 | } |
| 6403 | dev->devid = tmp; |
| 6404 | |
| 6405 | if (uuid) |
| 6406 | memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE); |
| 6407 | else |
| 6408 | generate_random_uuid(dev->uuid); |
| 6409 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 6410 | btrfs_init_work(&dev->work, btrfs_submit_helper, |
| 6411 | pending_bios_fn, NULL, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6412 | |
| 6413 | return dev; |
| 6414 | } |
| 6415 | |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6416 | /* Return -EIO if any error, otherwise return 0. */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6417 | static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6418 | struct extent_buffer *leaf, |
| 6419 | struct btrfs_chunk *chunk, u64 logical) |
| 6420 | { |
| 6421 | u64 length; |
| 6422 | u64 stripe_len; |
| 6423 | u16 num_stripes; |
| 6424 | u16 sub_stripes; |
| 6425 | u64 type; |
| 6426 | |
| 6427 | length = btrfs_chunk_length(leaf, chunk); |
| 6428 | stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
| 6429 | num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 6430 | sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); |
| 6431 | type = btrfs_chunk_type(leaf, chunk); |
| 6432 | |
| 6433 | if (!num_stripes) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6434 | btrfs_err(fs_info, "invalid chunk num_stripes: %u", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6435 | num_stripes); |
| 6436 | return -EIO; |
| 6437 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6438 | if (!IS_ALIGNED(logical, fs_info->sectorsize)) { |
| 6439 | btrfs_err(fs_info, "invalid chunk logical %llu", logical); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6440 | return -EIO; |
| 6441 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6442 | if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) { |
| 6443 | btrfs_err(fs_info, "invalid chunk sectorsize %u", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6444 | btrfs_chunk_sector_size(leaf, chunk)); |
| 6445 | return -EIO; |
| 6446 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6447 | if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) { |
| 6448 | btrfs_err(fs_info, "invalid chunk length %llu", length); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6449 | return -EIO; |
| 6450 | } |
| 6451 | if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6452 | btrfs_err(fs_info, "invalid chunk stripe length: %llu", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6453 | stripe_len); |
| 6454 | return -EIO; |
| 6455 | } |
| 6456 | if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) & |
| 6457 | type) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6458 | btrfs_err(fs_info, "unrecognized chunk type: %llu", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6459 | ~(BTRFS_BLOCK_GROUP_TYPE_MASK | |
| 6460 | BTRFS_BLOCK_GROUP_PROFILE_MASK) & |
| 6461 | btrfs_chunk_type(leaf, chunk)); |
| 6462 | return -EIO; |
| 6463 | } |
| 6464 | if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) || |
| 6465 | (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) || |
| 6466 | (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) || |
| 6467 | (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) || |
| 6468 | (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) || |
| 6469 | ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 && |
| 6470 | num_stripes != 1)) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6471 | btrfs_err(fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6472 | "invalid num_stripes:sub_stripes %u:%u for profile %llu", |
| 6473 | num_stripes, sub_stripes, |
| 6474 | type & BTRFS_BLOCK_GROUP_PROFILE_MASK); |
| 6475 | return -EIO; |
| 6476 | } |
| 6477 | |
| 6478 | return 0; |
| 6479 | } |
| 6480 | |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6481 | static void btrfs_report_missing_device(struct btrfs_fs_info *fs_info, |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6482 | u64 devid, u8 *uuid, bool error) |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6483 | { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6484 | if (error) |
| 6485 | btrfs_err_rl(fs_info, "devid %llu uuid %pU is missing", |
| 6486 | devid, uuid); |
| 6487 | else |
| 6488 | btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing", |
| 6489 | devid, uuid); |
Anand Jain | 5a2b8e6 | 2017-10-09 11:07:45 +0800 | [diff] [blame] | 6490 | } |
| 6491 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6492 | 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] | 6493 | struct extent_buffer *leaf, |
| 6494 | struct btrfs_chunk *chunk) |
| 6495 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6496 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6497 | struct map_lookup *map; |
| 6498 | struct extent_map *em; |
| 6499 | u64 logical; |
| 6500 | u64 length; |
| 6501 | u64 devid; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6502 | u8 uuid[BTRFS_UUID_SIZE]; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6503 | int num_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6504 | int ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6505 | int i; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6506 | |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 6507 | logical = key->offset; |
| 6508 | length = btrfs_chunk_length(leaf, chunk); |
Qu Wenruo | f04b772 | 2015-12-15 09:14:37 +0800 | [diff] [blame] | 6509 | num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6510 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6511 | ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6512 | if (ret) |
| 6513 | return ret; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6514 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6515 | read_lock(&map_tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6516 | em = lookup_extent_mapping(&map_tree->map_tree, logical, 1); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6517 | read_unlock(&map_tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6518 | |
| 6519 | /* already mapped? */ |
| 6520 | if (em && em->start <= logical && em->start + em->len > logical) { |
| 6521 | free_extent_map(em); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6522 | return 0; |
| 6523 | } else if (em) { |
| 6524 | free_extent_map(em); |
| 6525 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6526 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 6527 | em = alloc_extent_map(); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6528 | if (!em) |
| 6529 | return -ENOMEM; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6530 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6531 | if (!map) { |
| 6532 | free_extent_map(em); |
| 6533 | return -ENOMEM; |
| 6534 | } |
| 6535 | |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 6536 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 6537 | em->map_lookup = map; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6538 | em->start = logical; |
| 6539 | em->len = length; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 6540 | em->orig_start = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6541 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6542 | em->block_len = em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6543 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6544 | map->num_stripes = num_stripes; |
| 6545 | map->io_width = btrfs_chunk_io_width(leaf, chunk); |
| 6546 | map->io_align = btrfs_chunk_io_align(leaf, chunk); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6547 | map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
| 6548 | map->type = btrfs_chunk_type(leaf, chunk); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6549 | map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6550 | for (i = 0; i < num_stripes; i++) { |
| 6551 | map->stripes[i].physical = |
| 6552 | btrfs_stripe_offset_nr(leaf, chunk, i); |
| 6553 | devid = btrfs_stripe_devid_nr(leaf, chunk, i); |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6554 | read_extent_buffer(leaf, uuid, (unsigned long) |
| 6555 | btrfs_stripe_dev_uuid_nr(chunk, i), |
| 6556 | BTRFS_UUID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6557 | map->stripes[i].dev = btrfs_find_device(fs_info, devid, |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6558 | uuid, NULL); |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 6559 | if (!map->stripes[i].dev && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6560 | !btrfs_test_opt(fs_info, DEGRADED)) { |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6561 | free_extent_map(em); |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6562 | btrfs_report_missing_device(fs_info, devid, uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 6563 | return -ENOENT; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6564 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6565 | if (!map->stripes[i].dev) { |
| 6566 | map->stripes[i].dev = |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6567 | add_missing_dev(fs_info->fs_devices, devid, |
| 6568 | uuid); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6569 | if (IS_ERR(map->stripes[i].dev)) { |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6570 | free_extent_map(em); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6571 | btrfs_err(fs_info, |
| 6572 | "failed to init missing dev %llu: %ld", |
| 6573 | devid, PTR_ERR(map->stripes[i].dev)); |
| 6574 | return PTR_ERR(map->stripes[i].dev); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6575 | } |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6576 | btrfs_report_missing_device(fs_info, devid, uuid, false); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6577 | } |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 6578 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, |
| 6579 | &(map->stripes[i].dev->dev_state)); |
| 6580 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6581 | } |
| 6582 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6583 | write_lock(&map_tree->map_tree.lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 6584 | ret = add_extent_mapping(&map_tree->map_tree, em, 0); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6585 | write_unlock(&map_tree->map_tree.lock); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6586 | BUG_ON(ret); /* Tree corruption */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6587 | free_extent_map(em); |
| 6588 | |
| 6589 | return 0; |
| 6590 | } |
| 6591 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6592 | static void fill_device_from_item(struct extent_buffer *leaf, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6593 | struct btrfs_dev_item *dev_item, |
| 6594 | struct btrfs_device *device) |
| 6595 | { |
| 6596 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6597 | |
| 6598 | device->devid = btrfs_device_id(leaf, dev_item); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 6599 | device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item); |
| 6600 | device->total_bytes = device->disk_total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 6601 | device->commit_total_bytes = device->disk_total_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6602 | device->bytes_used = btrfs_device_bytes_used(leaf, dev_item); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 6603 | device->commit_bytes_used = device->bytes_used; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6604 | device->type = btrfs_device_type(leaf, dev_item); |
| 6605 | device->io_align = btrfs_device_io_align(leaf, dev_item); |
| 6606 | device->io_width = btrfs_device_io_width(leaf, dev_item); |
| 6607 | device->sector_size = btrfs_device_sector_size(leaf, dev_item); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 6608 | WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID); |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 6609 | clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6610 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 6611 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 6612 | read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6613 | } |
| 6614 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6615 | 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] | 6616 | u8 *fsid) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6617 | { |
| 6618 | struct btrfs_fs_devices *fs_devices; |
| 6619 | int ret; |
| 6620 | |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6621 | BUG_ON(!mutex_is_locked(&uuid_mutex)); |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 6622 | ASSERT(fsid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6623 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6624 | fs_devices = fs_info->fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6625 | while (fs_devices) { |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6626 | if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE)) |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6627 | return fs_devices; |
| 6628 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6629 | fs_devices = fs_devices->seed; |
| 6630 | } |
| 6631 | |
| 6632 | fs_devices = find_fsid(fsid); |
| 6633 | if (!fs_devices) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6634 | if (!btrfs_test_opt(fs_info, DEGRADED)) |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6635 | return ERR_PTR(-ENOENT); |
| 6636 | |
| 6637 | fs_devices = alloc_fs_devices(fsid); |
| 6638 | if (IS_ERR(fs_devices)) |
| 6639 | return fs_devices; |
| 6640 | |
| 6641 | fs_devices->seeding = 1; |
| 6642 | fs_devices->opened = 1; |
| 6643 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6644 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6645 | |
| 6646 | fs_devices = clone_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6647 | if (IS_ERR(fs_devices)) |
| 6648 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6649 | |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 6650 | ret = __btrfs_open_devices(fs_devices, FMODE_READ, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6651 | fs_info->bdev_holder); |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 6652 | if (ret) { |
| 6653 | free_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6654 | fs_devices = ERR_PTR(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6655 | goto out; |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 6656 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6657 | |
| 6658 | if (!fs_devices->seeding) { |
| 6659 | __btrfs_close_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6660 | free_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6661 | fs_devices = ERR_PTR(-EINVAL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6662 | goto out; |
| 6663 | } |
| 6664 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6665 | fs_devices->seed = fs_info->fs_devices->seed; |
| 6666 | fs_info->fs_devices->seed = fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6667 | out: |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6668 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6669 | } |
| 6670 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6671 | static int read_one_dev(struct btrfs_fs_info *fs_info, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6672 | struct extent_buffer *leaf, |
| 6673 | struct btrfs_dev_item *dev_item) |
| 6674 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6675 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6676 | struct btrfs_device *device; |
| 6677 | u64 devid; |
| 6678 | int ret; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6679 | u8 fs_uuid[BTRFS_FSID_SIZE]; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6680 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 6681 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6682 | devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 6683 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6684 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 6685 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6686 | BTRFS_FSID_SIZE); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6687 | |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6688 | if (memcmp(fs_uuid, fs_info->fsid, BTRFS_FSID_SIZE)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6689 | fs_devices = open_seed_devices(fs_info, fs_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6690 | if (IS_ERR(fs_devices)) |
| 6691 | return PTR_ERR(fs_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6692 | } |
| 6693 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6694 | device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6695 | if (!device) { |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6696 | if (!btrfs_test_opt(fs_info, DEGRADED)) { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6697 | btrfs_report_missing_device(fs_info, devid, |
| 6698 | dev_uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 6699 | return -ENOENT; |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6700 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6701 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6702 | device = add_missing_dev(fs_devices, devid, dev_uuid); |
Anand Jain | adfb69a | 2017-10-11 12:46:18 +0800 | [diff] [blame] | 6703 | if (IS_ERR(device)) { |
| 6704 | btrfs_err(fs_info, |
| 6705 | "failed to add missing dev %llu: %ld", |
| 6706 | devid, PTR_ERR(device)); |
| 6707 | return PTR_ERR(device); |
| 6708 | } |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6709 | btrfs_report_missing_device(fs_info, devid, dev_uuid, false); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6710 | } else { |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6711 | if (!device->bdev) { |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6712 | if (!btrfs_test_opt(fs_info, DEGRADED)) { |
| 6713 | btrfs_report_missing_device(fs_info, |
| 6714 | devid, dev_uuid, true); |
Anand Jain | 45dbdbc | 2017-10-09 11:07:44 +0800 | [diff] [blame] | 6715 | return -ENOENT; |
Anand Jain | 2b902df | 2017-10-09 11:07:46 +0800 | [diff] [blame] | 6716 | } |
| 6717 | btrfs_report_missing_device(fs_info, devid, |
| 6718 | dev_uuid, false); |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6719 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6720 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6721 | if (!device->bdev && |
| 6722 | !test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6723 | /* |
| 6724 | * this happens when a device that was properly setup |
| 6725 | * in the device info lists suddenly goes bad. |
| 6726 | * device->bdev is NULL, and so we have to set |
| 6727 | * device->missing to one here |
| 6728 | */ |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6729 | device->fs_devices->missing_devices++; |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6730 | set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6731 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6732 | |
| 6733 | /* Move the device to its own fs_devices */ |
| 6734 | if (device->fs_devices != fs_devices) { |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6735 | ASSERT(test_bit(BTRFS_DEV_STATE_MISSING, |
| 6736 | &device->dev_state)); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6737 | |
| 6738 | list_move(&device->dev_list, &fs_devices->devices); |
| 6739 | device->fs_devices->num_devices--; |
| 6740 | fs_devices->num_devices++; |
| 6741 | |
| 6742 | device->fs_devices->missing_devices--; |
| 6743 | fs_devices->missing_devices++; |
| 6744 | |
| 6745 | device->fs_devices = fs_devices; |
| 6746 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6747 | } |
| 6748 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6749 | if (device->fs_devices != fs_info->fs_devices) { |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 6750 | BUG_ON(test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6751 | if (device->generation != |
| 6752 | btrfs_device_generation(leaf, dev_item)) |
| 6753 | return -EINVAL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 6754 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6755 | |
| 6756 | fill_device_from_item(leaf, dev_item, device); |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 6757 | set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state); |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 6758 | if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) && |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 6759 | !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6760 | device->fs_devices->total_rw_bytes += device->total_bytes; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 6761 | atomic64_add(device->total_bytes - device->bytes_used, |
| 6762 | &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 6763 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6764 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6765 | return ret; |
| 6766 | } |
| 6767 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 6768 | int btrfs_read_sys_array(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6769 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 6770 | struct btrfs_root *root = fs_info->tree_root; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6771 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6772 | struct extent_buffer *sb; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6773 | struct btrfs_disk_key *disk_key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6774 | struct btrfs_chunk *chunk; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6775 | u8 *array_ptr; |
| 6776 | unsigned long sb_array_offset; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6777 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6778 | u32 num_stripes; |
| 6779 | u32 array_size; |
| 6780 | u32 len = 0; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6781 | u32 cur_offset; |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6782 | u64 type; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6783 | struct btrfs_key key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6784 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6785 | ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize); |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 6786 | /* |
| 6787 | * This will create extent buffer of nodesize, superblock size is |
| 6788 | * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will |
| 6789 | * overallocate but we can keep it as-is, only the first page is used. |
| 6790 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6791 | sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 6792 | if (IS_ERR(sb)) |
| 6793 | return PTR_ERR(sb); |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 6794 | set_extent_buffer_uptodate(sb); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 6795 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0); |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 6796 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6797 | * 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] | 6798 | * set_extent_buffer_uptodate() call does not properly mark all it's |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 6799 | * pages up-to-date when the page is larger: extent does not cover the |
| 6800 | * whole page and consequently check_page_uptodate does not find all |
| 6801 | * the page's extents up-to-date (the hole beyond sb), |
| 6802 | * write_extent_buffer then triggers a WARN_ON. |
| 6803 | * |
| 6804 | * Regular short extents go through mark_extent_buffer_dirty/writeback cycle, |
| 6805 | * but sb spans only this function. Add an explicit SetPageUptodate call |
| 6806 | * to silence the warning eg. on PowerPC 64. |
| 6807 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 6808 | if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE) |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 6809 | SetPageUptodate(sb->pages[0]); |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 6810 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6811 | write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6812 | array_size = btrfs_super_sys_array_size(super_copy); |
| 6813 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6814 | array_ptr = super_copy->sys_chunk_array; |
| 6815 | sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array); |
| 6816 | cur_offset = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6817 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6818 | while (cur_offset < array_size) { |
| 6819 | disk_key = (struct btrfs_disk_key *)array_ptr; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6820 | len = sizeof(*disk_key); |
| 6821 | if (cur_offset + len > array_size) |
| 6822 | goto out_short_read; |
| 6823 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6824 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 6825 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6826 | array_ptr += len; |
| 6827 | sb_array_offset += len; |
| 6828 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6829 | |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6830 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6831 | chunk = (struct btrfs_chunk *)sb_array_offset; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6832 | /* |
| 6833 | * At least one btrfs_chunk with one stripe must be |
| 6834 | * present, exact stripe count check comes afterwards |
| 6835 | */ |
| 6836 | len = btrfs_chunk_item_size(1); |
| 6837 | if (cur_offset + len > array_size) |
| 6838 | goto out_short_read; |
| 6839 | |
| 6840 | num_stripes = btrfs_chunk_num_stripes(sb, chunk); |
David Sterba | f5cdedd | 2015-11-30 17:27:06 +0100 | [diff] [blame] | 6841 | if (!num_stripes) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6842 | btrfs_err(fs_info, |
| 6843 | "invalid number of stripes %u in sys_array at offset %u", |
David Sterba | f5cdedd | 2015-11-30 17:27:06 +0100 | [diff] [blame] | 6844 | num_stripes, cur_offset); |
| 6845 | ret = -EIO; |
| 6846 | break; |
| 6847 | } |
| 6848 | |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6849 | type = btrfs_chunk_type(sb, chunk); |
| 6850 | if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6851 | btrfs_err(fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6852 | "invalid chunk type %llu in sys_array at offset %u", |
| 6853 | type, cur_offset); |
| 6854 | ret = -EIO; |
| 6855 | break; |
| 6856 | } |
| 6857 | |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6858 | len = btrfs_chunk_item_size(num_stripes); |
| 6859 | if (cur_offset + len > array_size) |
| 6860 | goto out_short_read; |
| 6861 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6862 | ret = read_one_chunk(fs_info, &key, sb, chunk); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6863 | if (ret) |
| 6864 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6865 | } else { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6866 | btrfs_err(fs_info, |
| 6867 | "unexpected item type %u in sys_array at offset %u", |
| 6868 | (u32)key.type, cur_offset); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6869 | ret = -EIO; |
| 6870 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6871 | } |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6872 | array_ptr += len; |
| 6873 | sb_array_offset += len; |
| 6874 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6875 | } |
Liu Bo | d865177 | 2016-06-03 17:41:42 -0700 | [diff] [blame] | 6876 | clear_extent_buffer_uptodate(sb); |
Liu Bo | 1c8b5b6 | 2016-05-13 17:06:59 -0700 | [diff] [blame] | 6877 | free_extent_buffer_stale(sb); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6878 | return ret; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6879 | |
| 6880 | out_short_read: |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6881 | 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] | 6882 | len, cur_offset); |
Liu Bo | d865177 | 2016-06-03 17:41:42 -0700 | [diff] [blame] | 6883 | clear_extent_buffer_uptodate(sb); |
Liu Bo | 1c8b5b6 | 2016-05-13 17:06:59 -0700 | [diff] [blame] | 6884 | free_extent_buffer_stale(sb); |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6885 | return -EIO; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6886 | } |
| 6887 | |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6888 | /* |
| 6889 | * Check if all chunks in the fs are OK for read-write degraded mount |
| 6890 | * |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6891 | * If the @failing_dev is specified, it's accounted as missing. |
| 6892 | * |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6893 | * Return true if all chunks meet the minimal RW mount requirements. |
| 6894 | * Return false if any chunk doesn't meet the minimal RW mount requirements. |
| 6895 | */ |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6896 | bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info, |
| 6897 | struct btrfs_device *failing_dev) |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6898 | { |
| 6899 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
| 6900 | struct extent_map *em; |
| 6901 | u64 next_start = 0; |
| 6902 | bool ret = true; |
| 6903 | |
| 6904 | read_lock(&map_tree->map_tree.lock); |
| 6905 | em = lookup_extent_mapping(&map_tree->map_tree, 0, (u64)-1); |
| 6906 | read_unlock(&map_tree->map_tree.lock); |
| 6907 | /* No chunk at all? Return false anyway */ |
| 6908 | if (!em) { |
| 6909 | ret = false; |
| 6910 | goto out; |
| 6911 | } |
| 6912 | while (em) { |
| 6913 | struct map_lookup *map; |
| 6914 | int missing = 0; |
| 6915 | int max_tolerated; |
| 6916 | int i; |
| 6917 | |
| 6918 | map = em->map_lookup; |
| 6919 | max_tolerated = |
| 6920 | btrfs_get_num_tolerated_disk_barrier_failures( |
| 6921 | map->type); |
| 6922 | for (i = 0; i < map->num_stripes; i++) { |
| 6923 | struct btrfs_device *dev = map->stripes[i].dev; |
| 6924 | |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 6925 | if (!dev || !dev->bdev || |
| 6926 | test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) || |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6927 | dev->last_flush_error) |
| 6928 | missing++; |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6929 | else if (failing_dev && failing_dev == dev) |
| 6930 | missing++; |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6931 | } |
| 6932 | if (missing > max_tolerated) { |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 6933 | if (!failing_dev) |
| 6934 | btrfs_warn(fs_info, |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6935 | "chunk %llu missing %d devices, max tolerance is %d for writeable mount", |
| 6936 | em->start, missing, max_tolerated); |
| 6937 | free_extent_map(em); |
| 6938 | ret = false; |
| 6939 | goto out; |
| 6940 | } |
| 6941 | next_start = extent_map_end(em); |
| 6942 | free_extent_map(em); |
| 6943 | |
| 6944 | read_lock(&map_tree->map_tree.lock); |
| 6945 | em = lookup_extent_mapping(&map_tree->map_tree, next_start, |
| 6946 | (u64)(-1) - next_start); |
| 6947 | read_unlock(&map_tree->map_tree.lock); |
| 6948 | } |
| 6949 | out: |
| 6950 | return ret; |
| 6951 | } |
| 6952 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 6953 | int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6954 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 6955 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6956 | struct btrfs_path *path; |
| 6957 | struct extent_buffer *leaf; |
| 6958 | struct btrfs_key key; |
| 6959 | struct btrfs_key found_key; |
| 6960 | int ret; |
| 6961 | int slot; |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 6962 | u64 total_dev = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6963 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6964 | path = btrfs_alloc_path(); |
| 6965 | if (!path) |
| 6966 | return -ENOMEM; |
| 6967 | |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6968 | mutex_lock(&uuid_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 6969 | mutex_lock(&fs_info->chunk_mutex); |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6970 | |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6971 | /* |
| 6972 | * Read all device items, and then all the chunk items. All |
| 6973 | * device items are found before any chunk item (their object id |
| 6974 | * is smaller than the lowest possible object id for a chunk |
| 6975 | * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID). |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6976 | */ |
| 6977 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 6978 | key.offset = 0; |
| 6979 | key.type = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6980 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Zhao Lei | ab59381 | 2010-03-25 12:34:49 +0000 | [diff] [blame] | 6981 | if (ret < 0) |
| 6982 | goto error; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6983 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6984 | leaf = path->nodes[0]; |
| 6985 | slot = path->slots[0]; |
| 6986 | if (slot >= btrfs_header_nritems(leaf)) { |
| 6987 | ret = btrfs_next_leaf(root, path); |
| 6988 | if (ret == 0) |
| 6989 | continue; |
| 6990 | if (ret < 0) |
| 6991 | goto error; |
| 6992 | break; |
| 6993 | } |
| 6994 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6995 | if (found_key.type == BTRFS_DEV_ITEM_KEY) { |
| 6996 | struct btrfs_dev_item *dev_item; |
| 6997 | dev_item = btrfs_item_ptr(leaf, slot, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6998 | struct btrfs_dev_item); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6999 | ret = read_one_dev(fs_info, leaf, dev_item); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 7000 | if (ret) |
| 7001 | goto error; |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7002 | total_dev++; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7003 | } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 7004 | struct btrfs_chunk *chunk; |
| 7005 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7006 | ret = read_one_chunk(fs_info, &found_key, leaf, chunk); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7007 | if (ret) |
| 7008 | goto error; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7009 | } |
| 7010 | path->slots[0]++; |
| 7011 | } |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7012 | |
| 7013 | /* |
| 7014 | * After loading chunk tree, we've got all device information, |
| 7015 | * do another round of validation checks. |
| 7016 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7017 | if (total_dev != fs_info->fs_devices->total_devices) { |
| 7018 | btrfs_err(fs_info, |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7019 | "super_num_devices %llu mismatch with num_devices %llu found here", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7020 | btrfs_super_num_devices(fs_info->super_copy), |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7021 | total_dev); |
| 7022 | ret = -EINVAL; |
| 7023 | goto error; |
| 7024 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7025 | if (btrfs_super_total_bytes(fs_info->super_copy) < |
| 7026 | fs_info->fs_devices->total_rw_bytes) { |
| 7027 | btrfs_err(fs_info, |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7028 | "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7029 | btrfs_super_total_bytes(fs_info->super_copy), |
| 7030 | fs_info->fs_devices->total_rw_bytes); |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 7031 | ret = -EINVAL; |
| 7032 | goto error; |
| 7033 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7034 | ret = 0; |
| 7035 | error: |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7036 | mutex_unlock(&fs_info->chunk_mutex); |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 7037 | mutex_unlock(&uuid_mutex); |
| 7038 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 7039 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 7040 | return ret; |
| 7041 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7042 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7043 | void btrfs_init_devices_late(struct btrfs_fs_info *fs_info) |
| 7044 | { |
| 7045 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7046 | struct btrfs_device *device; |
| 7047 | |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 7048 | while (fs_devices) { |
| 7049 | mutex_lock(&fs_devices->device_list_mutex); |
| 7050 | list_for_each_entry(device, &fs_devices->devices, dev_list) |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7051 | device->fs_info = fs_info; |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 7052 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7053 | |
| 7054 | fs_devices = fs_devices->seed; |
| 7055 | } |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7056 | } |
| 7057 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7058 | static void __btrfs_reset_dev_stats(struct btrfs_device *dev) |
| 7059 | { |
| 7060 | int i; |
| 7061 | |
| 7062 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7063 | btrfs_dev_stat_reset(dev, i); |
| 7064 | } |
| 7065 | |
| 7066 | int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info) |
| 7067 | { |
| 7068 | struct btrfs_key key; |
| 7069 | struct btrfs_key found_key; |
| 7070 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 7071 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7072 | struct extent_buffer *eb; |
| 7073 | int slot; |
| 7074 | int ret = 0; |
| 7075 | struct btrfs_device *device; |
| 7076 | struct btrfs_path *path = NULL; |
| 7077 | int i; |
| 7078 | |
| 7079 | path = btrfs_alloc_path(); |
| 7080 | if (!path) { |
| 7081 | ret = -ENOMEM; |
| 7082 | goto out; |
| 7083 | } |
| 7084 | |
| 7085 | mutex_lock(&fs_devices->device_list_mutex); |
| 7086 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
| 7087 | int item_size; |
| 7088 | struct btrfs_dev_stats_item *ptr; |
| 7089 | |
David Sterba | 242e295 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 7090 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 7091 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7092 | key.offset = device->devid; |
| 7093 | ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0); |
| 7094 | if (ret) { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7095 | __btrfs_reset_dev_stats(device); |
| 7096 | device->dev_stats_valid = 1; |
| 7097 | btrfs_release_path(path); |
| 7098 | continue; |
| 7099 | } |
| 7100 | slot = path->slots[0]; |
| 7101 | eb = path->nodes[0]; |
| 7102 | btrfs_item_key_to_cpu(eb, &found_key, slot); |
| 7103 | item_size = btrfs_item_size_nr(eb, slot); |
| 7104 | |
| 7105 | ptr = btrfs_item_ptr(eb, slot, |
| 7106 | struct btrfs_dev_stats_item); |
| 7107 | |
| 7108 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 7109 | if (item_size >= (1 + i) * sizeof(__le64)) |
| 7110 | btrfs_dev_stat_set(device, i, |
| 7111 | btrfs_dev_stats_value(eb, ptr, i)); |
| 7112 | else |
| 7113 | btrfs_dev_stat_reset(device, i); |
| 7114 | } |
| 7115 | |
| 7116 | device->dev_stats_valid = 1; |
| 7117 | btrfs_dev_stat_print_on_load(device); |
| 7118 | btrfs_release_path(path); |
| 7119 | } |
| 7120 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7121 | |
| 7122 | out: |
| 7123 | btrfs_free_path(path); |
| 7124 | return ret < 0 ? ret : 0; |
| 7125 | } |
| 7126 | |
| 7127 | static int update_dev_stat_item(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7128 | struct btrfs_fs_info *fs_info, |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7129 | struct btrfs_device *device) |
| 7130 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7131 | struct btrfs_root *dev_root = fs_info->dev_root; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7132 | struct btrfs_path *path; |
| 7133 | struct btrfs_key key; |
| 7134 | struct extent_buffer *eb; |
| 7135 | struct btrfs_dev_stats_item *ptr; |
| 7136 | int ret; |
| 7137 | int i; |
| 7138 | |
David Sterba | 242e295 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 7139 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 7140 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7141 | key.offset = device->devid; |
| 7142 | |
| 7143 | path = btrfs_alloc_path(); |
David Sterba | fa25299 | 2017-02-15 09:35:01 +0100 | [diff] [blame] | 7144 | if (!path) |
| 7145 | return -ENOMEM; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7146 | ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1); |
| 7147 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7148 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7149 | "error %d while searching for dev_stats item for device %s", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7150 | ret, rcu_str_deref(device->name)); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7151 | goto out; |
| 7152 | } |
| 7153 | |
| 7154 | if (ret == 0 && |
| 7155 | btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) { |
| 7156 | /* need to delete old one and insert a new one */ |
| 7157 | ret = btrfs_del_item(trans, dev_root, path); |
| 7158 | if (ret != 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7159 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7160 | "delete too small dev_stats item for device %s failed %d", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7161 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7162 | goto out; |
| 7163 | } |
| 7164 | ret = 1; |
| 7165 | } |
| 7166 | |
| 7167 | if (ret == 1) { |
| 7168 | /* need to insert a new item */ |
| 7169 | btrfs_release_path(path); |
| 7170 | ret = btrfs_insert_empty_item(trans, dev_root, path, |
| 7171 | &key, sizeof(*ptr)); |
| 7172 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7173 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7174 | "insert dev_stats item for device %s failed %d", |
| 7175 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7176 | goto out; |
| 7177 | } |
| 7178 | } |
| 7179 | |
| 7180 | eb = path->nodes[0]; |
| 7181 | ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item); |
| 7182 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7183 | btrfs_set_dev_stats_value(eb, ptr, i, |
| 7184 | btrfs_dev_stat_read(device, i)); |
| 7185 | btrfs_mark_buffer_dirty(eb); |
| 7186 | |
| 7187 | out: |
| 7188 | btrfs_free_path(path); |
| 7189 | return ret; |
| 7190 | } |
| 7191 | |
| 7192 | /* |
| 7193 | * called from commit_transaction. Writes all changed device stats to disk. |
| 7194 | */ |
| 7195 | int btrfs_run_dev_stats(struct btrfs_trans_handle *trans, |
| 7196 | struct btrfs_fs_info *fs_info) |
| 7197 | { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7198 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7199 | struct btrfs_device *device; |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7200 | int stats_cnt; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7201 | int ret = 0; |
| 7202 | |
| 7203 | mutex_lock(&fs_devices->device_list_mutex); |
| 7204 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
Nikolay Borisov | 9deae96 | 2017-10-24 13:47:37 +0300 | [diff] [blame] | 7205 | stats_cnt = atomic_read(&device->dev_stats_ccnt); |
| 7206 | if (!device->dev_stats_valid || stats_cnt == 0) |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7207 | continue; |
| 7208 | |
Nikolay Borisov | 9deae96 | 2017-10-24 13:47:37 +0300 | [diff] [blame] | 7209 | |
| 7210 | /* |
| 7211 | * There is a LOAD-LOAD control dependency between the value of |
| 7212 | * dev_stats_ccnt and updating the on-disk values which requires |
| 7213 | * reading the in-memory counters. Such control dependencies |
| 7214 | * require explicit read memory barriers. |
| 7215 | * |
| 7216 | * This memory barriers pairs with smp_mb__before_atomic in |
| 7217 | * btrfs_dev_stat_inc/btrfs_dev_stat_set and with the full |
| 7218 | * barrier implied by atomic_xchg in |
| 7219 | * btrfs_dev_stats_read_and_reset |
| 7220 | */ |
| 7221 | smp_rmb(); |
| 7222 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7223 | ret = update_dev_stat_item(trans, fs_info, device); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7224 | if (!ret) |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7225 | atomic_sub(stats_cnt, &device->dev_stats_ccnt); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7226 | } |
| 7227 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7228 | |
| 7229 | return ret; |
| 7230 | } |
| 7231 | |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7232 | void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index) |
| 7233 | { |
| 7234 | btrfs_dev_stat_inc(dev, index); |
| 7235 | btrfs_dev_stat_print_on_error(dev); |
| 7236 | } |
| 7237 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 7238 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev) |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7239 | { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7240 | if (!dev->dev_stats_valid) |
| 7241 | return; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7242 | btrfs_err_rl_in_rcu(dev->fs_info, |
David Sterba | b14af3b | 2015-10-08 10:43:10 +0200 | [diff] [blame] | 7243 | "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] | 7244 | rcu_str_deref(dev->name), |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7245 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 7246 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 7247 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7248 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 7249 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7250 | } |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7251 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7252 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev) |
| 7253 | { |
Stefan Behrens | a98cdb8 | 2012-07-17 09:02:11 -0600 | [diff] [blame] | 7254 | int i; |
| 7255 | |
| 7256 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7257 | if (btrfs_dev_stat_read(dev, i) != 0) |
| 7258 | break; |
| 7259 | if (i == BTRFS_DEV_STAT_VALUES_MAX) |
| 7260 | return; /* all values == 0, suppress message */ |
| 7261 | |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7262 | btrfs_info_in_rcu(dev->fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7263 | "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] | 7264 | rcu_str_deref(dev->name), |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7265 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 7266 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 7267 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
| 7268 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 7269 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
| 7270 | } |
| 7271 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7272 | int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info, |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 7273 | struct btrfs_ioctl_get_dev_stats *stats) |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7274 | { |
| 7275 | struct btrfs_device *dev; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7276 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7277 | int i; |
| 7278 | |
| 7279 | mutex_lock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7280 | dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7281 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7282 | |
| 7283 | if (!dev) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7284 | btrfs_warn(fs_info, "get dev_stats failed, device not found"); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7285 | return -ENODEV; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7286 | } else if (!dev->dev_stats_valid) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7287 | btrfs_warn(fs_info, "get dev_stats failed, not yet valid"); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7288 | return -ENODEV; |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 7289 | } else if (stats->flags & BTRFS_DEV_STATS_RESET) { |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7290 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 7291 | if (stats->nr_items > i) |
| 7292 | stats->values[i] = |
| 7293 | btrfs_dev_stat_read_and_reset(dev, i); |
| 7294 | else |
| 7295 | btrfs_dev_stat_reset(dev, i); |
| 7296 | } |
| 7297 | } else { |
| 7298 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7299 | if (stats->nr_items > i) |
| 7300 | stats->values[i] = btrfs_dev_stat_read(dev, i); |
| 7301 | } |
| 7302 | if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX) |
| 7303 | stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX; |
| 7304 | return 0; |
| 7305 | } |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7306 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 7307 | void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path) |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7308 | { |
| 7309 | struct buffer_head *bh; |
| 7310 | struct btrfs_super_block *disk_super; |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7311 | int copy_num; |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7312 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7313 | if (!bdev) |
| 7314 | return; |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7315 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7316 | for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX; |
| 7317 | 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 (btrfs_read_dev_one_super(bdev, copy_num, &bh)) |
| 7320 | continue; |
| 7321 | |
| 7322 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 7323 | |
| 7324 | memset(&disk_super->magic, 0, sizeof(disk_super->magic)); |
| 7325 | set_buffer_dirty(bh); |
| 7326 | sync_dirty_buffer(bh); |
| 7327 | brelse(bh); |
| 7328 | } |
| 7329 | |
| 7330 | /* Notify udev that device has changed */ |
| 7331 | btrfs_kobject_uevent(bdev, KOBJ_CHANGE); |
| 7332 | |
| 7333 | /* Update ctime/mtime for device path for libblkid */ |
| 7334 | update_dev_time(device_path); |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7335 | } |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7336 | |
| 7337 | /* |
| 7338 | * Update the size of all devices, which is used for writing out the |
| 7339 | * super blocks. |
| 7340 | */ |
| 7341 | void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info) |
| 7342 | { |
| 7343 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7344 | struct btrfs_device *curr, *next; |
| 7345 | |
| 7346 | if (list_empty(&fs_devices->resized_devices)) |
| 7347 | return; |
| 7348 | |
| 7349 | mutex_lock(&fs_devices->device_list_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7350 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7351 | list_for_each_entry_safe(curr, next, &fs_devices->resized_devices, |
| 7352 | resized_list) { |
| 7353 | list_del_init(&curr->resized_list); |
| 7354 | curr->commit_total_bytes = curr->disk_total_bytes; |
| 7355 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7356 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7357 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7358 | } |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7359 | |
| 7360 | /* Must be invoked during the transaction commit */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7361 | 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] | 7362 | struct btrfs_transaction *transaction) |
| 7363 | { |
| 7364 | struct extent_map *em; |
| 7365 | struct map_lookup *map; |
| 7366 | struct btrfs_device *dev; |
| 7367 | int i; |
| 7368 | |
| 7369 | if (list_empty(&transaction->pending_chunks)) |
| 7370 | return; |
| 7371 | |
| 7372 | /* In order to kick the device replace finish process */ |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7373 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7374 | list_for_each_entry(em, &transaction->pending_chunks, list) { |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 7375 | map = em->map_lookup; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7376 | |
| 7377 | for (i = 0; i < map->num_stripes; i++) { |
| 7378 | dev = map->stripes[i].dev; |
| 7379 | dev->commit_bytes_used = dev->bytes_used; |
| 7380 | } |
| 7381 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7382 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7383 | } |
Anand Jain | 5a13f43 | 2015-03-10 06:38:31 +0800 | [diff] [blame] | 7384 | |
| 7385 | void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info) |
| 7386 | { |
| 7387 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7388 | while (fs_devices) { |
| 7389 | fs_devices->fs_info = fs_info; |
| 7390 | fs_devices = fs_devices->seed; |
| 7391 | } |
| 7392 | } |
| 7393 | |
| 7394 | void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info) |
| 7395 | { |
| 7396 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7397 | while (fs_devices) { |
| 7398 | fs_devices->fs_info = NULL; |
| 7399 | fs_devices = fs_devices->seed; |
| 7400 | } |
| 7401 | } |