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 | |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 148 | DEFINE_MUTEX(uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 149 | static LIST_HEAD(fs_uuids); |
Anand Jain | c73eccf | 2015-03-10 06:38:30 +0800 | [diff] [blame] | 150 | struct list_head *btrfs_get_fs_uuids(void) |
| 151 | { |
| 152 | return &fs_uuids; |
| 153 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 154 | |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 155 | /* |
| 156 | * alloc_fs_devices - allocate struct btrfs_fs_devices |
| 157 | * @fsid: if not NULL, copy the uuid to fs_devices::fsid |
| 158 | * |
| 159 | * Return a pointer to a new struct btrfs_fs_devices on success, or ERR_PTR(). |
| 160 | * The returned struct is not linked onto any lists and can be destroyed with |
| 161 | * kfree() right away. |
| 162 | */ |
| 163 | static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid) |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 164 | { |
| 165 | struct btrfs_fs_devices *fs_devs; |
| 166 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 167 | fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 168 | if (!fs_devs) |
| 169 | return ERR_PTR(-ENOMEM); |
| 170 | |
| 171 | mutex_init(&fs_devs->device_list_mutex); |
| 172 | |
| 173 | INIT_LIST_HEAD(&fs_devs->devices); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 174 | INIT_LIST_HEAD(&fs_devs->resized_devices); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 175 | INIT_LIST_HEAD(&fs_devs->alloc_list); |
| 176 | INIT_LIST_HEAD(&fs_devs->list); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 177 | if (fsid) |
| 178 | memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 179 | |
| 180 | return fs_devs; |
| 181 | } |
| 182 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 183 | static void free_fs_devices(struct btrfs_fs_devices *fs_devices) |
| 184 | { |
| 185 | struct btrfs_device *device; |
| 186 | WARN_ON(fs_devices->opened); |
| 187 | while (!list_empty(&fs_devices->devices)) { |
| 188 | device = list_entry(fs_devices->devices.next, |
| 189 | struct btrfs_device, dev_list); |
| 190 | list_del(&device->dev_list); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 191 | rcu_string_free(device->name); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 192 | kfree(device); |
| 193 | } |
| 194 | kfree(fs_devices); |
| 195 | } |
| 196 | |
Lukas Czerner | b8b8ff5 | 2012-12-06 19:25:48 +0000 | [diff] [blame] | 197 | static void btrfs_kobject_uevent(struct block_device *bdev, |
| 198 | enum kobject_action action) |
| 199 | { |
| 200 | int ret; |
| 201 | |
| 202 | ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action); |
| 203 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 204 | pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n", |
Lukas Czerner | b8b8ff5 | 2012-12-06 19:25:48 +0000 | [diff] [blame] | 205 | action, |
| 206 | kobject_name(&disk_to_dev(bdev->bd_disk)->kobj), |
| 207 | &disk_to_dev(bdev->bd_disk)->kobj); |
| 208 | } |
| 209 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 210 | void btrfs_cleanup_fs_uuids(void) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 211 | { |
| 212 | struct btrfs_fs_devices *fs_devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 213 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 214 | while (!list_empty(&fs_uuids)) { |
| 215 | fs_devices = list_entry(fs_uuids.next, |
| 216 | struct btrfs_fs_devices, list); |
| 217 | list_del(&fs_devices->list); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 218 | free_fs_devices(fs_devices); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 219 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 220 | } |
| 221 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 222 | static struct btrfs_device *__alloc_device(void) |
| 223 | { |
| 224 | struct btrfs_device *dev; |
| 225 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 226 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 227 | if (!dev) |
| 228 | return ERR_PTR(-ENOMEM); |
| 229 | |
David Sterba | e0ae999 | 2017-06-06 17:06:06 +0200 | [diff] [blame] | 230 | /* |
| 231 | * Preallocate a bio that's always going to be used for flushing device |
| 232 | * barriers and matches the device lifespan |
| 233 | */ |
| 234 | dev->flush_bio = bio_alloc_bioset(GFP_KERNEL, 0, NULL); |
| 235 | if (!dev->flush_bio) { |
| 236 | kfree(dev); |
| 237 | return ERR_PTR(-ENOMEM); |
| 238 | } |
| 239 | bio_get(dev->flush_bio); |
| 240 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 241 | INIT_LIST_HEAD(&dev->dev_list); |
| 242 | INIT_LIST_HEAD(&dev->dev_alloc_list); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 243 | INIT_LIST_HEAD(&dev->resized_list); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 244 | |
| 245 | spin_lock_init(&dev->io_lock); |
| 246 | |
| 247 | spin_lock_init(&dev->reada_lock); |
| 248 | atomic_set(&dev->reada_in_flight, 0); |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 249 | atomic_set(&dev->dev_stats_ccnt, 0); |
Sebastian Andrzej Siewior | 546bed6 | 2016-01-15 14:37:15 +0100 | [diff] [blame] | 250 | btrfs_device_data_ordered_init(dev); |
Chris Mason | 9bcaaea | 2017-05-04 16:08:08 -0700 | [diff] [blame] | 251 | INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
Mel Gorman | d0164ad | 2015-11-06 16:28:21 -0800 | [diff] [blame] | 252 | INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 253 | |
| 254 | return dev; |
| 255 | } |
| 256 | |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 257 | /* |
| 258 | * Find a device specified by @devid or @uuid in the list of @fs_devices, or |
| 259 | * return NULL. |
| 260 | * |
| 261 | * If devid and uuid are both specified, the match must be exact, otherwise |
| 262 | * only devid is used. |
| 263 | */ |
| 264 | static struct btrfs_device *find_device(struct btrfs_fs_devices *fs_devices, |
| 265 | u64 devid, const u8 *uuid) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 266 | { |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 267 | struct list_head *head = &fs_devices->devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 268 | struct btrfs_device *dev; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 269 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 270 | list_for_each_entry(dev, head, dev_list) { |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 271 | if (dev->devid == devid && |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 272 | (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 273 | return dev; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 274 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 275 | } |
| 276 | return NULL; |
| 277 | } |
| 278 | |
Chris Mason | a1b32a5 | 2008-09-05 16:09:51 -0400 | [diff] [blame] | 279 | static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 280 | { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 281 | struct btrfs_fs_devices *fs_devices; |
| 282 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 283 | list_for_each_entry(fs_devices, &fs_uuids, list) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 284 | if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0) |
| 285 | return fs_devices; |
| 286 | } |
| 287 | return NULL; |
| 288 | } |
| 289 | |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 290 | static int |
| 291 | btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder, |
| 292 | int flush, struct block_device **bdev, |
| 293 | struct buffer_head **bh) |
| 294 | { |
| 295 | int ret; |
| 296 | |
| 297 | *bdev = blkdev_get_by_path(device_path, flags, holder); |
| 298 | |
| 299 | if (IS_ERR(*bdev)) { |
| 300 | ret = PTR_ERR(*bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 301 | goto error; |
| 302 | } |
| 303 | |
| 304 | if (flush) |
| 305 | filemap_write_and_wait((*bdev)->bd_inode->i_mapping); |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 306 | ret = set_blocksize(*bdev, BTRFS_BDEV_BLOCKSIZE); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 307 | if (ret) { |
| 308 | blkdev_put(*bdev, flags); |
| 309 | goto error; |
| 310 | } |
| 311 | invalidate_bdev(*bdev); |
| 312 | *bh = btrfs_read_dev_super(*bdev); |
Anand Jain | 92fc03f | 2015-08-14 18:32:51 +0800 | [diff] [blame] | 313 | if (IS_ERR(*bh)) { |
| 314 | ret = PTR_ERR(*bh); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 315 | blkdev_put(*bdev, flags); |
| 316 | goto error; |
| 317 | } |
| 318 | |
| 319 | return 0; |
| 320 | |
| 321 | error: |
| 322 | *bdev = NULL; |
| 323 | *bh = NULL; |
| 324 | return ret; |
| 325 | } |
| 326 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 327 | static void requeue_list(struct btrfs_pending_bios *pending_bios, |
| 328 | struct bio *head, struct bio *tail) |
| 329 | { |
| 330 | |
| 331 | struct bio *old_head; |
| 332 | |
| 333 | old_head = pending_bios->head; |
| 334 | pending_bios->head = head; |
| 335 | if (pending_bios->tail) |
| 336 | tail->bi_next = old_head; |
| 337 | else |
| 338 | pending_bios->tail = tail; |
| 339 | } |
| 340 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 341 | /* |
| 342 | * we try to collect pending bios for a device so we don't get a large |
| 343 | * number of procs sending bios down to the same device. This greatly |
| 344 | * improves the schedulers ability to collect and merge the bios. |
| 345 | * |
| 346 | * But, it also turns into a long list of bios to process and that is sure |
| 347 | * to eventually make the worker thread block. The solution here is to |
| 348 | * make some progress and then put this work struct back at the end of |
| 349 | * the list if the block device is congested. This way, multiple devices |
| 350 | * can make progress from a single worker thread. |
| 351 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 352 | static noinline void run_scheduled_bios(struct btrfs_device *device) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 353 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 354 | struct btrfs_fs_info *fs_info = device->fs_info; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 355 | struct bio *pending; |
| 356 | struct backing_dev_info *bdi; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 357 | struct btrfs_pending_bios *pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 358 | struct bio *tail; |
| 359 | struct bio *cur; |
| 360 | int again = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 361 | unsigned long num_run; |
Chris Mason | d644d8a | 2009-06-09 15:59:22 -0400 | [diff] [blame] | 362 | unsigned long batch_run = 0; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 363 | unsigned long limit; |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 364 | unsigned long last_waited = 0; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 365 | int force_reg = 0; |
Miao Xie | 0e58885 | 2011-08-05 09:32:37 +0000 | [diff] [blame] | 366 | int sync_pending = 0; |
Chris Mason | 211588a | 2011-04-19 20:12:40 -0400 | [diff] [blame] | 367 | struct blk_plug plug; |
| 368 | |
| 369 | /* |
| 370 | * this function runs all the bios we've collected for |
| 371 | * a particular device. We don't want to wander off to |
| 372 | * another device without first sending all of these down. |
| 373 | * So, setup a plug here and finish it off before we return |
| 374 | */ |
| 375 | blk_start_plug(&plug); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 376 | |
Jan Kara | efa7c9f | 2017-02-02 15:56:53 +0100 | [diff] [blame] | 377 | bdi = device->bdev->bd_bdi; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 378 | limit = btrfs_async_submit_limit(fs_info); |
| 379 | limit = limit * 2 / 3; |
| 380 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 381 | loop: |
| 382 | spin_lock(&device->io_lock); |
| 383 | |
Chris Mason | a683705 | 2009-02-04 09:19:41 -0500 | [diff] [blame] | 384 | loop_lock: |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 385 | num_run = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 386 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 387 | /* take all the bios off the list at once and process them |
| 388 | * later on (without the lock held). But, remember the |
| 389 | * tail and other pointers so the bios can be properly reinserted |
| 390 | * into the list if we hit congestion |
| 391 | */ |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 392 | if (!force_reg && device->pending_sync_bios.head) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 393 | pending_bios = &device->pending_sync_bios; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 394 | force_reg = 1; |
| 395 | } else { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 396 | pending_bios = &device->pending_bios; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 397 | force_reg = 0; |
| 398 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 399 | |
| 400 | pending = pending_bios->head; |
| 401 | tail = pending_bios->tail; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 402 | WARN_ON(pending && !tail); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 403 | |
| 404 | /* |
| 405 | * if pending was null this time around, no bios need processing |
| 406 | * at all and we can stop. Otherwise it'll loop back up again |
| 407 | * and do an additional check so no bios are missed. |
| 408 | * |
| 409 | * device->running_pending is used to synchronize with the |
| 410 | * schedule_bio code. |
| 411 | */ |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 412 | if (device->pending_sync_bios.head == NULL && |
| 413 | device->pending_bios.head == NULL) { |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 414 | again = 0; |
| 415 | device->running_pending = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 416 | } else { |
| 417 | again = 1; |
| 418 | device->running_pending = 1; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 419 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 420 | |
| 421 | pending_bios->head = NULL; |
| 422 | pending_bios->tail = NULL; |
| 423 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 424 | spin_unlock(&device->io_lock); |
| 425 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 426 | while (pending) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 427 | |
| 428 | rmb(); |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 429 | /* we want to work on both lists, but do more bios on the |
| 430 | * sync list than the regular list |
| 431 | */ |
| 432 | if ((num_run > 32 && |
| 433 | pending_bios != &device->pending_sync_bios && |
| 434 | device->pending_sync_bios.head) || |
| 435 | (num_run > 64 && pending_bios == &device->pending_sync_bios && |
| 436 | device->pending_bios.head)) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 437 | spin_lock(&device->io_lock); |
| 438 | requeue_list(pending_bios, pending, tail); |
| 439 | goto loop_lock; |
| 440 | } |
| 441 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 442 | cur = pending; |
| 443 | pending = pending->bi_next; |
| 444 | cur->bi_next = NULL; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 445 | |
David Sterba | ee86395 | 2015-02-16 19:41:40 +0100 | [diff] [blame] | 446 | /* |
| 447 | * atomic_dec_return implies a barrier for waitqueue_active |
| 448 | */ |
Josef Bacik | 66657b3 | 2012-08-01 15:36:24 -0400 | [diff] [blame] | 449 | if (atomic_dec_return(&fs_info->nr_async_bios) < limit && |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 450 | waitqueue_active(&fs_info->async_submit_wait)) |
| 451 | wake_up(&fs_info->async_submit_wait); |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 452 | |
Jens Axboe | dac5621 | 2015-04-17 16:23:59 -0600 | [diff] [blame] | 453 | BUG_ON(atomic_read(&cur->__bi_cnt) == 0); |
Chris Mason | d644d8a | 2009-06-09 15:59:22 -0400 | [diff] [blame] | 454 | |
Chris Mason | 2ab1ba6 | 2011-08-04 14:28:36 -0400 | [diff] [blame] | 455 | /* |
| 456 | * if we're doing the sync list, record that our |
| 457 | * plug has some sync requests on it |
| 458 | * |
| 459 | * If we're doing the regular list and there are |
| 460 | * sync requests sitting around, unplug before |
| 461 | * we add more |
| 462 | */ |
| 463 | if (pending_bios == &device->pending_sync_bios) { |
| 464 | sync_pending = 1; |
| 465 | } else if (sync_pending) { |
| 466 | blk_finish_plug(&plug); |
| 467 | blk_start_plug(&plug); |
| 468 | sync_pending = 0; |
| 469 | } |
| 470 | |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 471 | btrfsic_submit_bio(cur); |
Chris Mason | 5ff7ba3 | 2010-03-15 10:21:30 -0400 | [diff] [blame] | 472 | num_run++; |
| 473 | batch_run++; |
David Sterba | 853d8ec | 2015-01-08 15:15:19 +0100 | [diff] [blame] | 474 | |
| 475 | cond_resched(); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 476 | |
| 477 | /* |
| 478 | * we made progress, there is more work to do and the bdi |
| 479 | * is now congested. Back off and let other work structs |
| 480 | * run instead |
| 481 | */ |
Chris Mason | 57fd5a5 | 2009-08-07 09:59:15 -0400 | [diff] [blame] | 482 | if (pending && bdi_write_congested(bdi) && batch_run > 8 && |
Chris Mason | 5f2cc08 | 2008-11-07 18:22:45 -0500 | [diff] [blame] | 483 | fs_info->fs_devices->open_devices > 1) { |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 484 | struct io_context *ioc; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 485 | |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 486 | ioc = current->io_context; |
| 487 | |
| 488 | /* |
| 489 | * the main goal here is that we don't want to |
| 490 | * block if we're going to be able to submit |
| 491 | * more requests without blocking. |
| 492 | * |
| 493 | * This code does two great things, it pokes into |
| 494 | * the elevator code from a filesystem _and_ |
| 495 | * it makes assumptions about how batching works. |
| 496 | */ |
| 497 | if (ioc && ioc->nr_batch_requests > 0 && |
| 498 | time_before(jiffies, ioc->last_waited + HZ/50UL) && |
| 499 | (last_waited == 0 || |
| 500 | ioc->last_waited == last_waited)) { |
| 501 | /* |
| 502 | * we want to go through our batch of |
| 503 | * requests and stop. So, we copy out |
| 504 | * the ioc->last_waited time and test |
| 505 | * against it before looping |
| 506 | */ |
| 507 | last_waited = ioc->last_waited; |
David Sterba | 853d8ec | 2015-01-08 15:15:19 +0100 | [diff] [blame] | 508 | cond_resched(); |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 509 | continue; |
| 510 | } |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 511 | spin_lock(&device->io_lock); |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 512 | requeue_list(pending_bios, pending, tail); |
Chris Mason | a683705 | 2009-02-04 09:19:41 -0500 | [diff] [blame] | 513 | device->running_pending = 1; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 514 | |
| 515 | spin_unlock(&device->io_lock); |
Qu Wenruo | a8c93d4 | 2014-02-28 10:46:08 +0800 | [diff] [blame] | 516 | btrfs_queue_work(fs_info->submit_workers, |
| 517 | &device->work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 518 | goto done; |
| 519 | } |
Chris Mason | d85c8a6f | 2011-12-15 15:38:41 -0500 | [diff] [blame] | 520 | /* unplug every 64 requests just for good measure */ |
| 521 | if (batch_run % 64 == 0) { |
| 522 | blk_finish_plug(&plug); |
| 523 | blk_start_plug(&plug); |
| 524 | sync_pending = 0; |
| 525 | } |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 526 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 527 | |
Chris Mason | 5168408 | 2010-03-10 15:33:32 -0500 | [diff] [blame] | 528 | cond_resched(); |
| 529 | if (again) |
| 530 | goto loop; |
| 531 | |
| 532 | spin_lock(&device->io_lock); |
| 533 | if (device->pending_bios.head || device->pending_sync_bios.head) |
| 534 | goto loop_lock; |
| 535 | spin_unlock(&device->io_lock); |
| 536 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 537 | done: |
Chris Mason | 211588a | 2011-04-19 20:12:40 -0400 | [diff] [blame] | 538 | blk_finish_plug(&plug); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 539 | } |
| 540 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 541 | static void pending_bios_fn(struct btrfs_work *work) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 542 | { |
| 543 | struct btrfs_device *device; |
| 544 | |
| 545 | device = container_of(work, struct btrfs_device, work); |
| 546 | run_scheduled_bios(device); |
| 547 | } |
| 548 | |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 549 | |
| 550 | void btrfs_free_stale_device(struct btrfs_device *cur_dev) |
| 551 | { |
| 552 | struct btrfs_fs_devices *fs_devs; |
| 553 | struct btrfs_device *dev; |
| 554 | |
| 555 | if (!cur_dev->name) |
| 556 | return; |
| 557 | |
| 558 | list_for_each_entry(fs_devs, &fs_uuids, list) { |
| 559 | int del = 1; |
| 560 | |
| 561 | if (fs_devs->opened) |
| 562 | continue; |
| 563 | if (fs_devs->seeding) |
| 564 | continue; |
| 565 | |
| 566 | list_for_each_entry(dev, &fs_devs->devices, dev_list) { |
| 567 | |
| 568 | if (dev == cur_dev) |
| 569 | continue; |
| 570 | if (!dev->name) |
| 571 | continue; |
| 572 | |
| 573 | /* |
| 574 | * Todo: This won't be enough. What if the same device |
| 575 | * comes back (with new uuid and) with its mapper path? |
| 576 | * But for now, this does help as mostly an admin will |
| 577 | * either use mapper or non mapper path throughout. |
| 578 | */ |
| 579 | rcu_read_lock(); |
| 580 | del = strcmp(rcu_str_deref(dev->name), |
| 581 | rcu_str_deref(cur_dev->name)); |
| 582 | rcu_read_unlock(); |
| 583 | if (!del) |
| 584 | break; |
| 585 | } |
| 586 | |
| 587 | if (!del) { |
| 588 | /* delete the stale device */ |
| 589 | if (fs_devs->num_devices == 1) { |
| 590 | btrfs_sysfs_remove_fsid(fs_devs); |
| 591 | list_del(&fs_devs->list); |
| 592 | free_fs_devices(fs_devs); |
| 593 | } else { |
| 594 | fs_devs->num_devices--; |
| 595 | list_del(&dev->dev_list); |
| 596 | rcu_string_free(dev->name); |
| 597 | kfree(dev); |
| 598 | } |
| 599 | break; |
| 600 | } |
| 601 | } |
| 602 | } |
| 603 | |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 604 | /* |
| 605 | * Add new device to list of registered devices |
| 606 | * |
| 607 | * Returns: |
| 608 | * 1 - first time device is seen |
| 609 | * 0 - device already known |
| 610 | * < 0 - error |
| 611 | */ |
Chris Mason | a1b32a5 | 2008-09-05 16:09:51 -0400 | [diff] [blame] | 612 | static noinline int device_list_add(const char *path, |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 613 | struct btrfs_super_block *disk_super, |
| 614 | u64 devid, struct btrfs_fs_devices **fs_devices_ret) |
| 615 | { |
| 616 | struct btrfs_device *device; |
| 617 | struct btrfs_fs_devices *fs_devices; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 618 | struct rcu_string *name; |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 619 | int ret = 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 620 | u64 found_transid = btrfs_super_generation(disk_super); |
| 621 | |
| 622 | fs_devices = find_fsid(disk_super->fsid); |
| 623 | if (!fs_devices) { |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 624 | fs_devices = alloc_fs_devices(disk_super->fsid); |
| 625 | if (IS_ERR(fs_devices)) |
| 626 | return PTR_ERR(fs_devices); |
| 627 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 628 | list_add(&fs_devices->list, &fs_uuids); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 629 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 630 | device = NULL; |
| 631 | } else { |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 632 | device = find_device(fs_devices, devid, |
| 633 | disk_super->dev_item.uuid); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 634 | } |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 635 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 636 | if (!device) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 637 | if (fs_devices->opened) |
| 638 | return -EBUSY; |
| 639 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 640 | device = btrfs_alloc_device(NULL, &devid, |
| 641 | disk_super->dev_item.uuid); |
| 642 | if (IS_ERR(device)) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 643 | /* we can safely leave the fs_devices entry around */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 644 | return PTR_ERR(device); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 645 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 646 | |
| 647 | name = rcu_string_strdup(path, GFP_NOFS); |
| 648 | if (!name) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 649 | kfree(device); |
| 650 | return -ENOMEM; |
| 651 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 652 | rcu_assign_pointer(device->name, name); |
Arne Jansen | 90519d6 | 2011-05-23 14:30:00 +0200 | [diff] [blame] | 653 | |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 654 | mutex_lock(&fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 655 | list_add_rcu(&device->dev_list, &fs_devices->devices); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 656 | fs_devices->num_devices++; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 657 | mutex_unlock(&fs_devices->device_list_mutex); |
| 658 | |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 659 | ret = 1; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 660 | device->fs_devices = fs_devices; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 661 | } else if (!device->name || strcmp(device->name->str, path)) { |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 662 | /* |
| 663 | * When FS is already mounted. |
| 664 | * 1. If you are here and if the device->name is NULL that |
| 665 | * means this device was missing at time of FS mount. |
| 666 | * 2. If you are here and if the device->name is different |
| 667 | * from 'path' that means either |
| 668 | * a. The same device disappeared and reappeared with |
| 669 | * different name. or |
| 670 | * b. The missing-disk-which-was-replaced, has |
| 671 | * reappeared now. |
| 672 | * |
| 673 | * We must allow 1 and 2a above. But 2b would be a spurious |
| 674 | * and unintentional. |
| 675 | * |
| 676 | * Further in case of 1 and 2a above, the disk at 'path' |
| 677 | * would have missed some transaction when it was away and |
| 678 | * in case of 2a the stale bdev has to be updated as well. |
| 679 | * 2b must not be allowed at all time. |
| 680 | */ |
| 681 | |
| 682 | /* |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 683 | * For now, we do allow update to btrfs_fs_device through the |
| 684 | * btrfs dev scan cli after FS has been mounted. We're still |
| 685 | * tracking a problem where systems fail mount by subvolume id |
| 686 | * when we reject replacement on a mounted FS. |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 687 | */ |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 688 | if (!fs_devices->opened && found_transid < device->generation) { |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 689 | /* |
| 690 | * That is if the FS is _not_ mounted and if you |
| 691 | * are here, that means there is more than one |
| 692 | * disk with same uuid and devid.We keep the one |
| 693 | * with larger generation number or the last-in if |
| 694 | * generation are equal. |
| 695 | */ |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 696 | return -EEXIST; |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 697 | } |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 698 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 699 | name = rcu_string_strdup(path, GFP_NOFS); |
TARUISI Hiroaki | 3a0524d | 2010-02-09 06:36:45 +0000 | [diff] [blame] | 700 | if (!name) |
| 701 | return -ENOMEM; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 702 | rcu_string_free(device->name); |
| 703 | rcu_assign_pointer(device->name, name); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 704 | if (device->missing) { |
| 705 | fs_devices->missing_devices--; |
| 706 | device->missing = 0; |
| 707 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 708 | } |
| 709 | |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 710 | /* |
| 711 | * Unmount does not free the btrfs_device struct but would zero |
| 712 | * generation along with most of the other members. So just update |
| 713 | * it back. We need it to pick the disk with largest generation |
| 714 | * (as above). |
| 715 | */ |
| 716 | if (!fs_devices->opened) |
| 717 | device->generation = found_transid; |
| 718 | |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 719 | /* |
| 720 | * if there is new btrfs on an already registered device, |
| 721 | * then remove the stale device entry. |
| 722 | */ |
Anand Jain | 02feae3 | 2016-02-13 10:01:40 +0800 | [diff] [blame] | 723 | if (ret > 0) |
| 724 | btrfs_free_stale_device(device); |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 725 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 726 | *fs_devices_ret = fs_devices; |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 727 | |
| 728 | return ret; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 729 | } |
| 730 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 731 | static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig) |
| 732 | { |
| 733 | struct btrfs_fs_devices *fs_devices; |
| 734 | struct btrfs_device *device; |
| 735 | struct btrfs_device *orig_dev; |
| 736 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 737 | fs_devices = alloc_fs_devices(orig->fsid); |
| 738 | if (IS_ERR(fs_devices)) |
| 739 | return fs_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 740 | |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 741 | mutex_lock(&orig->device_list_mutex); |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 742 | fs_devices->total_devices = orig->total_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 743 | |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 744 | /* 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] | 745 | list_for_each_entry(orig_dev, &orig->devices, dev_list) { |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 746 | struct rcu_string *name; |
| 747 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 748 | device = btrfs_alloc_device(NULL, &orig_dev->devid, |
| 749 | orig_dev->uuid); |
| 750 | if (IS_ERR(device)) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 751 | goto error; |
| 752 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 753 | /* |
| 754 | * This is ok to do without rcu read locked because we hold the |
| 755 | * uuid mutex so nothing we touch in here is going to disappear. |
| 756 | */ |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 757 | if (orig_dev->name) { |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 758 | name = rcu_string_strdup(orig_dev->name->str, |
| 759 | GFP_KERNEL); |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 760 | if (!name) { |
| 761 | kfree(device); |
| 762 | goto error; |
| 763 | } |
| 764 | rcu_assign_pointer(device->name, name); |
Julia Lawall | fd2696f | 2009-09-29 13:51:04 -0400 | [diff] [blame] | 765 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 766 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 767 | list_add(&device->dev_list, &fs_devices->devices); |
| 768 | device->fs_devices = fs_devices; |
| 769 | fs_devices->num_devices++; |
| 770 | } |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 771 | mutex_unlock(&orig->device_list_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 772 | return fs_devices; |
| 773 | error: |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 774 | mutex_unlock(&orig->device_list_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 775 | free_fs_devices(fs_devices); |
| 776 | return ERR_PTR(-ENOMEM); |
| 777 | } |
| 778 | |
Eric Sandeen | 9eaed21 | 2014-08-01 18:12:35 -0500 | [diff] [blame] | 779 | 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] | 780 | { |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 781 | struct btrfs_device *device, *next; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 782 | struct btrfs_device *latest_dev = NULL; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 783 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 784 | mutex_lock(&uuid_mutex); |
| 785 | again: |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 786 | /* This is the initialized path, it is safe to release the devices. */ |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 787 | list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) { |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 788 | if (device->in_fs_metadata) { |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 789 | if (!device->is_tgtdev_for_dev_replace && |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 790 | (!latest_dev || |
| 791 | device->generation > latest_dev->generation)) { |
| 792 | latest_dev = device; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 793 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 794 | continue; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 795 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 796 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 797 | if (device->devid == BTRFS_DEV_REPLACE_DEVID) { |
| 798 | /* |
| 799 | * In the first step, keep the device which has |
| 800 | * the correct fsid and the devid that is used |
| 801 | * for the dev_replace procedure. |
| 802 | * In the second step, the dev_replace state is |
| 803 | * read from the device tree and it is known |
| 804 | * whether the procedure is really active or |
| 805 | * not, which means whether this device is |
| 806 | * used or whether it should be removed. |
| 807 | */ |
| 808 | if (step == 0 || device->is_tgtdev_for_dev_replace) { |
| 809 | continue; |
| 810 | } |
| 811 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 812 | if (device->bdev) { |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 813 | blkdev_put(device->bdev, device->mode); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 814 | device->bdev = NULL; |
| 815 | fs_devices->open_devices--; |
| 816 | } |
| 817 | if (device->writeable) { |
| 818 | list_del_init(&device->dev_alloc_list); |
| 819 | device->writeable = 0; |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 820 | if (!device->is_tgtdev_for_dev_replace) |
| 821 | fs_devices->rw_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 822 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 823 | list_del_init(&device->dev_list); |
| 824 | fs_devices->num_devices--; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 825 | rcu_string_free(device->name); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 826 | kfree(device); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 827 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 828 | |
| 829 | if (fs_devices->seed) { |
| 830 | fs_devices = fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 831 | goto again; |
| 832 | } |
| 833 | |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 834 | fs_devices->latest_bdev = latest_dev->bdev; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 835 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 836 | mutex_unlock(&uuid_mutex); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 837 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 838 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 839 | static void __free_device(struct work_struct *work) |
| 840 | { |
| 841 | struct btrfs_device *device; |
| 842 | |
| 843 | device = container_of(work, struct btrfs_device, rcu_work); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 844 | rcu_string_free(device->name); |
David Sterba | e0ae999 | 2017-06-06 17:06:06 +0200 | [diff] [blame] | 845 | bio_put(device->flush_bio); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 846 | kfree(device); |
| 847 | } |
| 848 | |
| 849 | static void free_device(struct rcu_head *head) |
| 850 | { |
| 851 | struct btrfs_device *device; |
| 852 | |
| 853 | device = container_of(head, struct btrfs_device, rcu); |
| 854 | |
| 855 | INIT_WORK(&device->rcu_work, __free_device); |
| 856 | schedule_work(&device->rcu_work); |
| 857 | } |
| 858 | |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 859 | static void btrfs_close_bdev(struct btrfs_device *device) |
| 860 | { |
| 861 | if (device->bdev && device->writeable) { |
| 862 | sync_blockdev(device->bdev); |
| 863 | invalidate_bdev(device->bdev); |
| 864 | } |
| 865 | |
| 866 | if (device->bdev) |
| 867 | blkdev_put(device->bdev, device->mode); |
| 868 | } |
| 869 | |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 870 | static void btrfs_prepare_close_one_device(struct btrfs_device *device) |
Anand Jain | f448341 | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 871 | { |
| 872 | struct btrfs_fs_devices *fs_devices = device->fs_devices; |
| 873 | struct btrfs_device *new_device; |
| 874 | struct rcu_string *name; |
| 875 | |
| 876 | if (device->bdev) |
| 877 | fs_devices->open_devices--; |
| 878 | |
| 879 | if (device->writeable && |
| 880 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
| 881 | list_del_init(&device->dev_alloc_list); |
| 882 | fs_devices->rw_devices--; |
| 883 | } |
| 884 | |
| 885 | if (device->missing) |
| 886 | fs_devices->missing_devices--; |
| 887 | |
| 888 | new_device = btrfs_alloc_device(NULL, &device->devid, |
| 889 | device->uuid); |
| 890 | BUG_ON(IS_ERR(new_device)); /* -ENOMEM */ |
| 891 | |
| 892 | /* Safe because we are under uuid_mutex */ |
| 893 | if (device->name) { |
| 894 | name = rcu_string_strdup(device->name->str, GFP_NOFS); |
| 895 | BUG_ON(!name); /* -ENOMEM */ |
| 896 | rcu_assign_pointer(new_device->name, name); |
| 897 | } |
| 898 | |
| 899 | list_replace_rcu(&device->dev_list, &new_device->dev_list); |
| 900 | new_device->fs_devices = device->fs_devices; |
Anand Jain | f448341 | 2016-06-14 18:55:25 +0800 | [diff] [blame] | 901 | } |
| 902 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 903 | static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 904 | { |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 905 | struct btrfs_device *device, *tmp; |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 906 | struct list_head pending_put; |
| 907 | |
| 908 | INIT_LIST_HEAD(&pending_put); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 909 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 910 | if (--fs_devices->opened > 0) |
| 911 | return 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 912 | |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 913 | mutex_lock(&fs_devices->device_list_mutex); |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 914 | list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) { |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 915 | btrfs_prepare_close_one_device(device); |
| 916 | list_add(&device->dev_list, &pending_put); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 917 | } |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 918 | mutex_unlock(&fs_devices->device_list_mutex); |
| 919 | |
Anand Jain | 0ccd052 | 2016-09-22 12:56:13 +0800 | [diff] [blame] | 920 | /* |
| 921 | * btrfs_show_devname() is using the device_list_mutex, |
| 922 | * sometimes call to blkdev_put() leads vfs calling |
| 923 | * into this func. So do put outside of device_list_mutex, |
| 924 | * as of now. |
| 925 | */ |
| 926 | while (!list_empty(&pending_put)) { |
| 927 | device = list_first_entry(&pending_put, |
| 928 | struct btrfs_device, dev_list); |
| 929 | list_del(&device->dev_list); |
| 930 | btrfs_close_bdev(device); |
| 931 | call_rcu(&device->rcu, free_device); |
| 932 | } |
| 933 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 934 | WARN_ON(fs_devices->open_devices); |
| 935 | WARN_ON(fs_devices->rw_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 936 | fs_devices->opened = 0; |
| 937 | fs_devices->seeding = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 938 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 939 | return 0; |
| 940 | } |
| 941 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 942 | int btrfs_close_devices(struct btrfs_fs_devices *fs_devices) |
| 943 | { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 944 | struct btrfs_fs_devices *seed_devices = NULL; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 945 | int ret; |
| 946 | |
| 947 | mutex_lock(&uuid_mutex); |
| 948 | ret = __btrfs_close_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 949 | if (!fs_devices->opened) { |
| 950 | seed_devices = fs_devices->seed; |
| 951 | fs_devices->seed = NULL; |
| 952 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 953 | mutex_unlock(&uuid_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 954 | |
| 955 | while (seed_devices) { |
| 956 | fs_devices = seed_devices; |
| 957 | seed_devices = fs_devices->seed; |
| 958 | __btrfs_close_devices(fs_devices); |
| 959 | free_fs_devices(fs_devices); |
| 960 | } |
Eric Sandeen | bc17862 | 2013-03-09 15:18:39 +0000 | [diff] [blame] | 961 | /* |
| 962 | * Wait for rcu kworkers under __btrfs_close_devices |
| 963 | * to finish all blkdev_puts so device is really |
| 964 | * free when umount is done. |
| 965 | */ |
| 966 | rcu_barrier(); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 967 | return ret; |
| 968 | } |
| 969 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 970 | static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices, |
| 971 | fmode_t flags, void *holder) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 972 | { |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 973 | struct request_queue *q; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 974 | struct block_device *bdev; |
| 975 | struct list_head *head = &fs_devices->devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 976 | struct btrfs_device *device; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 977 | struct btrfs_device *latest_dev = NULL; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 978 | struct buffer_head *bh; |
| 979 | struct btrfs_super_block *disk_super; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 980 | u64 devid; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 981 | int seeding = 1; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 982 | int ret = 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 983 | |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 984 | flags |= FMODE_EXCL; |
| 985 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 986 | list_for_each_entry(device, head, dev_list) { |
Chris Mason | c1c4d91 | 2008-05-08 15:05:58 -0400 | [diff] [blame] | 987 | if (device->bdev) |
| 988 | continue; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 989 | if (!device->name) |
| 990 | continue; |
| 991 | |
Eric Sandeen | f63e0cc | 2013-04-04 20:45:08 +0000 | [diff] [blame] | 992 | /* Just open everything we can; ignore failures here */ |
| 993 | if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1, |
| 994 | &bdev, &bh)) |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 995 | continue; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 996 | |
| 997 | disk_super = (struct btrfs_super_block *)bh->b_data; |
Xiao Guangrong | a343832 | 2010-01-06 11:48:18 +0000 | [diff] [blame] | 998 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 999 | if (devid != device->devid) |
| 1000 | goto error_brelse; |
| 1001 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1002 | if (memcmp(device->uuid, disk_super->dev_item.uuid, |
| 1003 | BTRFS_UUID_SIZE)) |
| 1004 | goto error_brelse; |
| 1005 | |
| 1006 | device->generation = btrfs_super_generation(disk_super); |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 1007 | if (!latest_dev || |
| 1008 | device->generation > latest_dev->generation) |
| 1009 | latest_dev = device; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1010 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1011 | if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) { |
| 1012 | device->writeable = 0; |
| 1013 | } else { |
| 1014 | device->writeable = !bdev_read_only(bdev); |
| 1015 | seeding = 0; |
| 1016 | } |
| 1017 | |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 1018 | q = bdev_get_queue(bdev); |
Miao Xie | 90180da | 2014-09-03 21:35:30 +0800 | [diff] [blame] | 1019 | if (blk_queue_discard(q)) |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 1020 | device->can_discard = 1; |
Anand Jain | e884f4f | 2017-04-04 18:40:19 +0800 | [diff] [blame] | 1021 | if (!blk_queue_nonrot(q)) |
| 1022 | fs_devices->rotating = 1; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 1023 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1024 | device->bdev = bdev; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1025 | device->in_fs_metadata = 0; |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1026 | device->mode = flags; |
| 1027 | |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1028 | fs_devices->open_devices++; |
Ilya Dryomov | 55e50e4 | 2013-09-01 18:56:44 +0300 | [diff] [blame] | 1029 | if (device->writeable && |
| 1030 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1031 | fs_devices->rw_devices++; |
| 1032 | list_add(&device->dev_alloc_list, |
| 1033 | &fs_devices->alloc_list); |
| 1034 | } |
Xiao Guangrong | 4f6c932 | 2011-04-20 10:06:40 +0000 | [diff] [blame] | 1035 | brelse(bh); |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1036 | continue; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1037 | |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1038 | error_brelse: |
| 1039 | brelse(bh); |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1040 | blkdev_put(bdev, flags); |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1041 | continue; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1042 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1043 | if (fs_devices->open_devices == 0) { |
Ilya Dryomov | 20bcd64 | 2011-10-20 00:06:20 +0300 | [diff] [blame] | 1044 | ret = -EINVAL; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1045 | goto out; |
| 1046 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1047 | fs_devices->seeding = seeding; |
| 1048 | fs_devices->opened = 1; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 1049 | fs_devices->latest_bdev = latest_dev->bdev; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1050 | fs_devices->total_rw_bytes = 0; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 1051 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1052 | return ret; |
| 1053 | } |
| 1054 | |
| 1055 | int btrfs_open_devices(struct btrfs_fs_devices *fs_devices, |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 1056 | fmode_t flags, void *holder) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1057 | { |
| 1058 | int ret; |
| 1059 | |
| 1060 | mutex_lock(&uuid_mutex); |
| 1061 | if (fs_devices->opened) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1062 | fs_devices->opened++; |
| 1063 | ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1064 | } else { |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1065 | ret = __btrfs_open_devices(fs_devices, flags, holder); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1066 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1067 | mutex_unlock(&uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1068 | return ret; |
| 1069 | } |
| 1070 | |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1071 | void btrfs_release_disk_super(struct page *page) |
| 1072 | { |
| 1073 | kunmap(page); |
| 1074 | put_page(page); |
| 1075 | } |
| 1076 | |
| 1077 | int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr, |
| 1078 | struct page **page, struct btrfs_super_block **disk_super) |
| 1079 | { |
| 1080 | void *p; |
| 1081 | pgoff_t index; |
| 1082 | |
| 1083 | /* make sure our super fits in the device */ |
| 1084 | if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode)) |
| 1085 | return 1; |
| 1086 | |
| 1087 | /* make sure our super fits in the page */ |
| 1088 | if (sizeof(**disk_super) > PAGE_SIZE) |
| 1089 | return 1; |
| 1090 | |
| 1091 | /* make sure our super doesn't straddle pages on disk */ |
| 1092 | index = bytenr >> PAGE_SHIFT; |
| 1093 | if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index) |
| 1094 | return 1; |
| 1095 | |
| 1096 | /* pull in the page with our super */ |
| 1097 | *page = read_cache_page_gfp(bdev->bd_inode->i_mapping, |
| 1098 | index, GFP_KERNEL); |
| 1099 | |
| 1100 | if (IS_ERR_OR_NULL(*page)) |
| 1101 | return 1; |
| 1102 | |
| 1103 | p = kmap(*page); |
| 1104 | |
| 1105 | /* align our pointer to the offset of the super block */ |
| 1106 | *disk_super = p + (bytenr & ~PAGE_MASK); |
| 1107 | |
| 1108 | if (btrfs_super_bytenr(*disk_super) != bytenr || |
| 1109 | btrfs_super_magic(*disk_super) != BTRFS_MAGIC) { |
| 1110 | btrfs_release_disk_super(*page); |
| 1111 | return 1; |
| 1112 | } |
| 1113 | |
| 1114 | if ((*disk_super)->label[0] && |
| 1115 | (*disk_super)->label[BTRFS_LABEL_SIZE - 1]) |
| 1116 | (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0'; |
| 1117 | |
| 1118 | return 0; |
| 1119 | } |
| 1120 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1121 | /* |
| 1122 | * Look for a btrfs signature on a device. This may be called out of the mount path |
| 1123 | * and we are not allowed to call set_blocksize during the scan. The superblock |
| 1124 | * is read via pagecache |
| 1125 | */ |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 1126 | 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] | 1127 | struct btrfs_fs_devices **fs_devices_ret) |
| 1128 | { |
| 1129 | struct btrfs_super_block *disk_super; |
| 1130 | struct block_device *bdev; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1131 | struct page *page; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1132 | int ret = -EINVAL; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1133 | u64 devid; |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 1134 | u64 transid; |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1135 | u64 total_devices; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1136 | u64 bytenr; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1137 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1138 | /* |
| 1139 | * we would like to check all the supers, but that would make |
| 1140 | * a btrfs mount succeed after a mkfs from a different FS. |
| 1141 | * So, we need to add a special mount option to scan for |
| 1142 | * later supers, using BTRFS_SUPER_MIRROR_MAX instead |
| 1143 | */ |
| 1144 | bytenr = btrfs_sb_offset(0); |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1145 | flags |= FMODE_EXCL; |
Al Viro | 10f6327 | 2011-11-17 15:05:22 -0500 | [diff] [blame] | 1146 | mutex_lock(&uuid_mutex); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1147 | |
| 1148 | bdev = blkdev_get_by_path(path, flags, holder); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1149 | if (IS_ERR(bdev)) { |
| 1150 | ret = PTR_ERR(bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1151 | goto error; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1152 | } |
| 1153 | |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1154 | if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super)) |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1155 | goto error_bdev_put; |
| 1156 | |
Xiao Guangrong | a343832 | 2010-01-06 11:48:18 +0000 | [diff] [blame] | 1157 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 1158 | transid = btrfs_super_generation(disk_super); |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1159 | total_devices = btrfs_super_num_devices(disk_super); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1160 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1161 | ret = device_list_add(path, disk_super, devid, fs_devices_ret); |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 1162 | if (ret > 0) { |
| 1163 | if (disk_super->label[0]) { |
Jeff Mahoney | 62e8557 | 2016-09-20 10:05:01 -0400 | [diff] [blame] | 1164 | pr_info("BTRFS: device label %s ", disk_super->label); |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 1165 | } else { |
Jeff Mahoney | 62e8557 | 2016-09-20 10:05:01 -0400 | [diff] [blame] | 1166 | pr_info("BTRFS: device fsid %pU ", disk_super->fsid); |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 1167 | } |
| 1168 | |
Jeff Mahoney | 62e8557 | 2016-09-20 10:05:01 -0400 | [diff] [blame] | 1169 | pr_cont("devid %llu transid %llu %s\n", devid, transid, path); |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 1170 | ret = 0; |
| 1171 | } |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1172 | if (!ret && fs_devices_ret) |
| 1173 | (*fs_devices_ret)->total_devices = total_devices; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1174 | |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1175 | btrfs_release_disk_super(page); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1176 | |
| 1177 | error_bdev_put: |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1178 | blkdev_put(bdev, flags); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1179 | error: |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1180 | mutex_unlock(&uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1181 | return ret; |
| 1182 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1183 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1184 | /* helper to account the used device space in the range */ |
| 1185 | int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start, |
| 1186 | u64 end, u64 *length) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1187 | { |
| 1188 | struct btrfs_key key; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 1189 | struct btrfs_root *root = device->fs_info->dev_root; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1190 | struct btrfs_dev_extent *dev_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1191 | struct btrfs_path *path; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1192 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1193 | int ret; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1194 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1195 | struct extent_buffer *l; |
| 1196 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1197 | *length = 0; |
| 1198 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1199 | if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1200 | return 0; |
| 1201 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1202 | path = btrfs_alloc_path(); |
| 1203 | if (!path) |
| 1204 | return -ENOMEM; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1205 | path->reada = READA_FORWARD; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1206 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1207 | key.objectid = device->devid; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1208 | key.offset = start; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1209 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1210 | |
| 1211 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1212 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1213 | goto out; |
Yan Zheng | 1fcbac5 | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 1214 | if (ret > 0) { |
| 1215 | ret = btrfs_previous_item(root, path, key.objectid, key.type); |
| 1216 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1217 | goto out; |
Yan Zheng | 1fcbac5 | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 1218 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1219 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1220 | while (1) { |
| 1221 | l = path->nodes[0]; |
| 1222 | slot = path->slots[0]; |
| 1223 | if (slot >= btrfs_header_nritems(l)) { |
| 1224 | ret = btrfs_next_leaf(root, path); |
| 1225 | if (ret == 0) |
| 1226 | continue; |
| 1227 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1228 | goto out; |
| 1229 | |
| 1230 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1231 | } |
| 1232 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1233 | |
| 1234 | if (key.objectid < device->devid) |
| 1235 | goto next; |
| 1236 | |
| 1237 | if (key.objectid > device->devid) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1238 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1239 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1240 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1241 | goto next; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1242 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1243 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1244 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1245 | dev_extent); |
| 1246 | if (key.offset <= start && extent_end > end) { |
| 1247 | *length = end - start + 1; |
| 1248 | break; |
| 1249 | } else if (key.offset <= start && extent_end > start) |
| 1250 | *length += extent_end - start; |
| 1251 | else if (key.offset > start && extent_end <= end) |
| 1252 | *length += extent_end - key.offset; |
| 1253 | else if (key.offset > start && key.offset <= end) { |
| 1254 | *length += end - key.offset + 1; |
| 1255 | break; |
| 1256 | } else if (key.offset > end) |
| 1257 | break; |
| 1258 | |
| 1259 | next: |
| 1260 | path->slots[0]++; |
| 1261 | } |
| 1262 | ret = 0; |
| 1263 | out: |
| 1264 | btrfs_free_path(path); |
| 1265 | return ret; |
| 1266 | } |
| 1267 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1268 | static int contains_pending_extent(struct btrfs_transaction *transaction, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1269 | struct btrfs_device *device, |
| 1270 | u64 *start, u64 len) |
| 1271 | { |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 1272 | struct btrfs_fs_info *fs_info = device->fs_info; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1273 | struct extent_map *em; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1274 | struct list_head *search_list = &fs_info->pinned_chunks; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1275 | int ret = 0; |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1276 | u64 physical_start = *start; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1277 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1278 | if (transaction) |
| 1279 | search_list = &transaction->pending_chunks; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 1280 | again: |
| 1281 | list_for_each_entry(em, search_list, list) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1282 | struct map_lookup *map; |
| 1283 | int i; |
| 1284 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 1285 | map = em->map_lookup; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1286 | for (i = 0; i < map->num_stripes; i++) { |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1287 | u64 end; |
| 1288 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1289 | if (map->stripes[i].dev != device) |
| 1290 | continue; |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1291 | if (map->stripes[i].physical >= physical_start + len || |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1292 | map->stripes[i].physical + em->orig_block_len <= |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1293 | physical_start) |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1294 | continue; |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1295 | /* |
| 1296 | * Make sure that while processing the pinned list we do |
| 1297 | * not override our *start with a lower value, because |
| 1298 | * we can have pinned chunks that fall within this |
| 1299 | * device hole and that have lower physical addresses |
| 1300 | * than the pending chunks we processed before. If we |
| 1301 | * do not take this special care we can end up getting |
| 1302 | * 2 pending chunks that start at the same physical |
| 1303 | * device offsets because the end offset of a pinned |
| 1304 | * chunk can be equal to the start offset of some |
| 1305 | * pending chunk. |
| 1306 | */ |
| 1307 | end = map->stripes[i].physical + em->orig_block_len; |
| 1308 | if (end > *start) { |
| 1309 | *start = end; |
| 1310 | ret = 1; |
| 1311 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1312 | } |
| 1313 | } |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1314 | if (search_list != &fs_info->pinned_chunks) { |
| 1315 | search_list = &fs_info->pinned_chunks; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 1316 | goto again; |
| 1317 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1318 | |
| 1319 | return ret; |
| 1320 | } |
| 1321 | |
| 1322 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1323 | /* |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1324 | * find_free_dev_extent_start - find free space in the specified device |
| 1325 | * @device: the device which we search the free space in |
| 1326 | * @num_bytes: the size of the free space that we need |
| 1327 | * @search_start: the position from which to begin the search |
| 1328 | * @start: store the start of the free space. |
| 1329 | * @len: the size of the free space. that we find, or the size |
| 1330 | * 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] | 1331 | * |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1332 | * this uses a pretty simple search, the expectation is that it is |
| 1333 | * called very infrequently and that a given device has a small number |
| 1334 | * of extents |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1335 | * |
| 1336 | * @start is used to store the start of the free space if we find. But if we |
| 1337 | * don't find suitable free space, it will be used to store the start position |
| 1338 | * of the max free space. |
| 1339 | * |
| 1340 | * @len is used to store the size of the free space that we find. |
| 1341 | * But if we don't find suitable free space, it is used to store the size of |
| 1342 | * the max free space. |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1343 | */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1344 | int find_free_dev_extent_start(struct btrfs_transaction *transaction, |
| 1345 | struct btrfs_device *device, u64 num_bytes, |
| 1346 | u64 search_start, u64 *start, u64 *len) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1347 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1348 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1349 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1350 | struct btrfs_key key; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1351 | struct btrfs_dev_extent *dev_extent; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1352 | struct btrfs_path *path; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1353 | u64 hole_size; |
| 1354 | u64 max_hole_start; |
| 1355 | u64 max_hole_size; |
| 1356 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1357 | u64 search_end = device->total_bytes; |
| 1358 | int ret; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1359 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1360 | struct extent_buffer *l; |
Filipe Manana | 8cdc7c5 | 2016-01-06 22:42:35 +0000 | [diff] [blame] | 1361 | |
| 1362 | /* |
| 1363 | * We don't want to overwrite the superblock on the drive nor any area |
| 1364 | * used by the boot loader (grub for example), so we make sure to start |
| 1365 | * at an offset of at least 1MB. |
| 1366 | */ |
David Sterba | 0d0c71b | 2017-06-15 01:30:06 +0200 | [diff] [blame] | 1367 | search_start = max_t(u64, search_start, SZ_1M); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1368 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1369 | path = btrfs_alloc_path(); |
| 1370 | if (!path) |
| 1371 | return -ENOMEM; |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1372 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1373 | max_hole_start = search_start; |
| 1374 | max_hole_size = 0; |
| 1375 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1376 | again: |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1377 | if (search_start >= search_end || device->is_tgtdev_for_dev_replace) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1378 | ret = -ENOSPC; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1379 | goto out; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1380 | } |
| 1381 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1382 | path->reada = READA_FORWARD; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1383 | path->search_commit_root = 1; |
| 1384 | path->skip_locking = 1; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1385 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1386 | key.objectid = device->devid; |
| 1387 | key.offset = search_start; |
| 1388 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1389 | |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 1390 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1391 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1392 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1393 | if (ret > 0) { |
| 1394 | ret = btrfs_previous_item(root, path, key.objectid, key.type); |
| 1395 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1396 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1397 | } |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1398 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1399 | while (1) { |
| 1400 | l = path->nodes[0]; |
| 1401 | slot = path->slots[0]; |
| 1402 | if (slot >= btrfs_header_nritems(l)) { |
| 1403 | ret = btrfs_next_leaf(root, path); |
| 1404 | if (ret == 0) |
| 1405 | continue; |
| 1406 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1407 | goto out; |
| 1408 | |
| 1409 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1410 | } |
| 1411 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1412 | |
| 1413 | if (key.objectid < device->devid) |
| 1414 | goto next; |
| 1415 | |
| 1416 | if (key.objectid > device->devid) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1417 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1418 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1419 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1420 | goto next; |
| 1421 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1422 | if (key.offset > search_start) { |
| 1423 | hole_size = key.offset - search_start; |
| 1424 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1425 | /* |
| 1426 | * Have to check before we set max_hole_start, otherwise |
| 1427 | * we could end up sending back this offset anyway. |
| 1428 | */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1429 | if (contains_pending_extent(transaction, device, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1430 | &search_start, |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1431 | hole_size)) { |
| 1432 | if (key.offset >= search_start) { |
| 1433 | hole_size = key.offset - search_start; |
| 1434 | } else { |
| 1435 | WARN_ON_ONCE(1); |
| 1436 | hole_size = 0; |
| 1437 | } |
| 1438 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1439 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1440 | if (hole_size > max_hole_size) { |
| 1441 | max_hole_start = search_start; |
| 1442 | max_hole_size = hole_size; |
| 1443 | } |
| 1444 | |
| 1445 | /* |
| 1446 | * If this free space is greater than which we need, |
| 1447 | * it must be the max free space that we have found |
| 1448 | * until now, so max_hole_start must point to the start |
| 1449 | * of this free space and the length of this free space |
| 1450 | * is stored in max_hole_size. Thus, we return |
| 1451 | * max_hole_start and max_hole_size and go back to the |
| 1452 | * caller. |
| 1453 | */ |
| 1454 | if (hole_size >= num_bytes) { |
| 1455 | ret = 0; |
| 1456 | goto out; |
| 1457 | } |
| 1458 | } |
| 1459 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1460 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1461 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1462 | dev_extent); |
| 1463 | if (extent_end > search_start) |
| 1464 | search_start = extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1465 | next: |
| 1466 | path->slots[0]++; |
| 1467 | cond_resched(); |
| 1468 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1469 | |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1470 | /* |
| 1471 | * At this point, search_start should be the end of |
| 1472 | * allocated dev extents, and when shrinking the device, |
| 1473 | * search_end may be smaller than search_start. |
| 1474 | */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1475 | if (search_end > search_start) { |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1476 | hole_size = search_end - search_start; |
| 1477 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1478 | if (contains_pending_extent(transaction, device, &search_start, |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1479 | hole_size)) { |
| 1480 | btrfs_release_path(path); |
| 1481 | goto again; |
| 1482 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1483 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1484 | if (hole_size > max_hole_size) { |
| 1485 | max_hole_start = search_start; |
| 1486 | max_hole_size = hole_size; |
| 1487 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1488 | } |
| 1489 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1490 | /* See above. */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1491 | if (max_hole_size < num_bytes) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1492 | ret = -ENOSPC; |
| 1493 | else |
| 1494 | ret = 0; |
| 1495 | |
| 1496 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1497 | btrfs_free_path(path); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1498 | *start = max_hole_start; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 1499 | if (len) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1500 | *len = max_hole_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1501 | return ret; |
| 1502 | } |
| 1503 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1504 | int find_free_dev_extent(struct btrfs_trans_handle *trans, |
| 1505 | struct btrfs_device *device, u64 num_bytes, |
| 1506 | u64 *start, u64 *len) |
| 1507 | { |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1508 | /* FIXME use last free of some kind */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1509 | return find_free_dev_extent_start(trans->transaction, device, |
Filipe Manana | 8cdc7c5 | 2016-01-06 22:42:35 +0000 | [diff] [blame] | 1510 | num_bytes, 0, start, len); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1511 | } |
| 1512 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1513 | static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1514 | struct btrfs_device *device, |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1515 | u64 start, u64 *dev_extent_len) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1516 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1517 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1518 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1519 | int ret; |
| 1520 | struct btrfs_path *path; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1521 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1522 | struct btrfs_key found_key; |
| 1523 | struct extent_buffer *leaf = NULL; |
| 1524 | struct btrfs_dev_extent *extent = NULL; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1525 | |
| 1526 | path = btrfs_alloc_path(); |
| 1527 | if (!path) |
| 1528 | return -ENOMEM; |
| 1529 | |
| 1530 | key.objectid = device->devid; |
| 1531 | key.offset = start; |
| 1532 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1533 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1534 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1535 | if (ret > 0) { |
| 1536 | ret = btrfs_previous_item(root, path, key.objectid, |
| 1537 | BTRFS_DEV_EXTENT_KEY); |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1538 | if (ret) |
| 1539 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1540 | leaf = path->nodes[0]; |
| 1541 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 1542 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1543 | struct btrfs_dev_extent); |
| 1544 | BUG_ON(found_key.offset > start || found_key.offset + |
| 1545 | btrfs_dev_extent_length(leaf, extent) < start); |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1546 | key = found_key; |
| 1547 | btrfs_release_path(path); |
| 1548 | goto again; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1549 | } else if (ret == 0) { |
| 1550 | leaf = path->nodes[0]; |
| 1551 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1552 | struct btrfs_dev_extent); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1553 | } else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1554 | btrfs_handle_fs_error(fs_info, ret, "Slot search failed"); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1555 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1556 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1557 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1558 | *dev_extent_len = btrfs_dev_extent_length(leaf, extent); |
| 1559 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1560 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1561 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1562 | btrfs_handle_fs_error(fs_info, ret, |
| 1563 | "Failed to remove dev extent item"); |
Zhao Lei | 13212b5 | 2015-02-12 14:18:17 +0800 | [diff] [blame] | 1564 | } else { |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 1565 | set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1566 | } |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1567 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1568 | btrfs_free_path(path); |
| 1569 | return ret; |
| 1570 | } |
| 1571 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1572 | static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans, |
| 1573 | struct btrfs_device *device, |
Nikolay Borisov | 0ca00af | 2017-08-18 17:58:22 +0300 | [diff] [blame^] | 1574 | u64 chunk_tree, u64 chunk_offset, u64 start, |
| 1575 | u64 num_bytes) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1576 | { |
| 1577 | int ret; |
| 1578 | struct btrfs_path *path; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1579 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 1580 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1581 | struct btrfs_dev_extent *extent; |
| 1582 | struct extent_buffer *leaf; |
| 1583 | struct btrfs_key key; |
| 1584 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1585 | WARN_ON(!device->in_fs_metadata); |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1586 | WARN_ON(device->is_tgtdev_for_dev_replace); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1587 | path = btrfs_alloc_path(); |
| 1588 | if (!path) |
| 1589 | return -ENOMEM; |
| 1590 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1591 | key.objectid = device->devid; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1592 | key.offset = start; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1593 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 1594 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1595 | sizeof(*extent)); |
Mark Fasheh | 2cdcecb | 2011-09-08 17:14:32 -0700 | [diff] [blame] | 1596 | if (ret) |
| 1597 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1598 | |
| 1599 | leaf = path->nodes[0]; |
| 1600 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1601 | struct btrfs_dev_extent); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1602 | btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree); |
Nikolay Borisov | 0ca00af | 2017-08-18 17:58:22 +0300 | [diff] [blame^] | 1603 | btrfs_set_dev_extent_chunk_objectid(leaf, extent, |
| 1604 | BTRFS_FIRST_CHUNK_TREE_OBJECTID); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1605 | btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset); |
| 1606 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1607 | btrfs_set_dev_extent_length(leaf, extent, num_bytes); |
| 1608 | btrfs_mark_buffer_dirty(leaf); |
Mark Fasheh | 2cdcecb | 2011-09-08 17:14:32 -0700 | [diff] [blame] | 1609 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1610 | btrfs_free_path(path); |
| 1611 | return ret; |
| 1612 | } |
| 1613 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1614 | static u64 find_next_chunk(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1615 | { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1616 | struct extent_map_tree *em_tree; |
| 1617 | struct extent_map *em; |
| 1618 | struct rb_node *n; |
| 1619 | u64 ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1620 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1621 | em_tree = &fs_info->mapping_tree.map_tree; |
| 1622 | read_lock(&em_tree->lock); |
| 1623 | n = rb_last(&em_tree->map); |
| 1624 | if (n) { |
| 1625 | em = rb_entry(n, struct extent_map, rb_node); |
| 1626 | ret = em->start + em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1627 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1628 | read_unlock(&em_tree->lock); |
| 1629 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1630 | return ret; |
| 1631 | } |
| 1632 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1633 | static noinline int find_next_devid(struct btrfs_fs_info *fs_info, |
| 1634 | u64 *devid_ret) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1635 | { |
| 1636 | int ret; |
| 1637 | struct btrfs_key key; |
| 1638 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1639 | struct btrfs_path *path; |
| 1640 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1641 | path = btrfs_alloc_path(); |
| 1642 | if (!path) |
| 1643 | return -ENOMEM; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1644 | |
| 1645 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1646 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1647 | key.offset = (u64)-1; |
| 1648 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1649 | 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] | 1650 | if (ret < 0) |
| 1651 | goto error; |
| 1652 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1653 | BUG_ON(ret == 0); /* Corruption */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1654 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1655 | ret = btrfs_previous_item(fs_info->chunk_root, path, |
| 1656 | BTRFS_DEV_ITEMS_OBJECTID, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1657 | BTRFS_DEV_ITEM_KEY); |
| 1658 | if (ret) { |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1659 | *devid_ret = 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1660 | } else { |
| 1661 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 1662 | path->slots[0]); |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1663 | *devid_ret = found_key.offset + 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1664 | } |
| 1665 | ret = 0; |
| 1666 | error: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1667 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1668 | return ret; |
| 1669 | } |
| 1670 | |
| 1671 | /* |
| 1672 | * the device information is stored in the chunk root |
| 1673 | * the btrfs_device struct should be fully filled in |
| 1674 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1675 | static int btrfs_add_device(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1676 | struct btrfs_fs_info *fs_info, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1677 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1678 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1679 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1680 | int ret; |
| 1681 | struct btrfs_path *path; |
| 1682 | struct btrfs_dev_item *dev_item; |
| 1683 | struct extent_buffer *leaf; |
| 1684 | struct btrfs_key key; |
| 1685 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1686 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1687 | path = btrfs_alloc_path(); |
| 1688 | if (!path) |
| 1689 | return -ENOMEM; |
| 1690 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1691 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1692 | key.type = BTRFS_DEV_ITEM_KEY; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1693 | key.offset = device->devid; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1694 | |
| 1695 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1696 | sizeof(*dev_item)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1697 | if (ret) |
| 1698 | goto out; |
| 1699 | |
| 1700 | leaf = path->nodes[0]; |
| 1701 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 1702 | |
| 1703 | btrfs_set_device_id(leaf, dev_item, device->devid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1704 | btrfs_set_device_generation(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1705 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 1706 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 1707 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 1708 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 1709 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 1710 | btrfs_device_get_disk_total_bytes(device)); |
| 1711 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 1712 | btrfs_device_get_bytes_used(device)); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1713 | btrfs_set_device_group(leaf, dev_item, 0); |
| 1714 | btrfs_set_device_seek_speed(leaf, dev_item, 0); |
| 1715 | btrfs_set_device_bandwidth(leaf, dev_item, 0); |
Chris Mason | c3027eb | 2008-12-08 16:40:21 -0500 | [diff] [blame] | 1716 | btrfs_set_device_start_offset(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1717 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 1718 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1719 | write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 1720 | ptr = btrfs_device_fsid(dev_item); |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 1721 | write_extent_buffer(leaf, fs_info->fsid, ptr, BTRFS_FSID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1722 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1723 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1724 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1725 | out: |
| 1726 | btrfs_free_path(path); |
| 1727 | return ret; |
| 1728 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1729 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1730 | /* |
| 1731 | * Function to update ctime/mtime for a given device path. |
| 1732 | * Mainly used for ctime/mtime based probe like libblkid. |
| 1733 | */ |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 1734 | static void update_dev_time(const char *path_name) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1735 | { |
| 1736 | struct file *filp; |
| 1737 | |
| 1738 | filp = filp_open(path_name, O_RDWR, 0); |
Al Viro | 98af592 | 2014-12-14 02:59:17 -0500 | [diff] [blame] | 1739 | if (IS_ERR(filp)) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1740 | return; |
| 1741 | file_update_time(filp); |
| 1742 | filp_close(filp, NULL); |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1743 | } |
| 1744 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1745 | static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info, |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1746 | struct btrfs_device *device) |
| 1747 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 1748 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1749 | int ret; |
| 1750 | struct btrfs_path *path; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1751 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1752 | struct btrfs_trans_handle *trans; |
| 1753 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1754 | path = btrfs_alloc_path(); |
| 1755 | if (!path) |
| 1756 | return -ENOMEM; |
| 1757 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 1758 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 1759 | if (IS_ERR(trans)) { |
| 1760 | btrfs_free_path(path); |
| 1761 | return PTR_ERR(trans); |
| 1762 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1763 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1764 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1765 | key.offset = device->devid; |
| 1766 | |
| 1767 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1768 | if (ret < 0) |
| 1769 | goto out; |
| 1770 | |
| 1771 | if (ret > 0) { |
| 1772 | ret = -ENOENT; |
| 1773 | goto out; |
| 1774 | } |
| 1775 | |
| 1776 | ret = btrfs_del_item(trans, root, path); |
| 1777 | if (ret) |
| 1778 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1779 | out: |
| 1780 | btrfs_free_path(path); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 1781 | btrfs_commit_transaction(trans); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1782 | return ret; |
| 1783 | } |
| 1784 | |
David Sterba | 3cc31a0 | 2016-02-15 16:00:26 +0100 | [diff] [blame] | 1785 | /* |
| 1786 | * Verify that @num_devices satisfies the RAID profile constraints in the whole |
| 1787 | * filesystem. It's up to the caller to adjust that number regarding eg. device |
| 1788 | * replace. |
| 1789 | */ |
| 1790 | static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info, |
| 1791 | u64 num_devices) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1792 | { |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1793 | u64 all_avail; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1794 | unsigned seq; |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1795 | int i; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1796 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1797 | do { |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1798 | seq = read_seqbegin(&fs_info->profiles_lock); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1799 | |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1800 | all_avail = fs_info->avail_data_alloc_bits | |
| 1801 | fs_info->avail_system_alloc_bits | |
| 1802 | fs_info->avail_metadata_alloc_bits; |
| 1803 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1804 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1805 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 1806 | if (!(all_avail & btrfs_raid_group[i])) |
| 1807 | continue; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1808 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1809 | if (num_devices < btrfs_raid_array[i].devs_min) { |
| 1810 | int ret = btrfs_raid_mindev_error[i]; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1811 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame] | 1812 | if (ret) |
| 1813 | return ret; |
| 1814 | } |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1815 | } |
| 1816 | |
| 1817 | return 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1818 | } |
| 1819 | |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 1820 | struct btrfs_device *btrfs_find_next_active_device(struct btrfs_fs_devices *fs_devs, |
| 1821 | struct btrfs_device *device) |
| 1822 | { |
| 1823 | struct btrfs_device *next_device; |
| 1824 | |
| 1825 | list_for_each_entry(next_device, &fs_devs->devices, dev_list) { |
| 1826 | if (next_device != device && |
| 1827 | !next_device->missing && next_device->bdev) |
| 1828 | return next_device; |
| 1829 | } |
| 1830 | |
| 1831 | return NULL; |
| 1832 | } |
| 1833 | |
| 1834 | /* |
| 1835 | * Helper function to check if the given device is part of s_bdev / latest_bdev |
| 1836 | * and replace it with the provided or the next active device, in the context |
| 1837 | * where this function called, there should be always be another device (or |
| 1838 | * this_dev) which is active. |
| 1839 | */ |
| 1840 | void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info, |
| 1841 | struct btrfs_device *device, struct btrfs_device *this_dev) |
| 1842 | { |
| 1843 | struct btrfs_device *next_device; |
| 1844 | |
| 1845 | if (this_dev) |
| 1846 | next_device = this_dev; |
| 1847 | else |
| 1848 | next_device = btrfs_find_next_active_device(fs_info->fs_devices, |
| 1849 | device); |
| 1850 | ASSERT(next_device); |
| 1851 | |
| 1852 | if (fs_info->sb->s_bdev && |
| 1853 | (fs_info->sb->s_bdev == device->bdev)) |
| 1854 | fs_info->sb->s_bdev = next_device->bdev; |
| 1855 | |
| 1856 | if (fs_info->fs_devices->latest_bdev == device->bdev) |
| 1857 | fs_info->fs_devices->latest_bdev = next_device->bdev; |
| 1858 | } |
| 1859 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 1860 | int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path, |
| 1861 | u64 devid) |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1862 | { |
| 1863 | struct btrfs_device *device; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1864 | struct btrfs_fs_devices *cur_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1865 | u64 num_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1866 | int ret = 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1867 | |
| 1868 | mutex_lock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1869 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1870 | num_devices = fs_info->fs_devices->num_devices; |
| 1871 | btrfs_dev_replace_lock(&fs_info->dev_replace, 0); |
| 1872 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) { |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1873 | WARN_ON(num_devices < 1); |
| 1874 | num_devices--; |
| 1875 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1876 | btrfs_dev_replace_unlock(&fs_info->dev_replace, 0); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1877 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1878 | ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1879 | if (ret) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1880 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1881 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1882 | ret = btrfs_find_device_by_devspec(fs_info, devid, device_path, |
| 1883 | &device); |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1884 | if (ret) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1885 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1886 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1887 | if (device->is_tgtdev_for_dev_replace) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1888 | ret = BTRFS_ERROR_DEV_TGT_REPLACE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1889 | goto out; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1890 | } |
| 1891 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1892 | if (device->writeable && fs_info->fs_devices->rw_devices == 1) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1893 | ret = BTRFS_ERROR_DEV_ONLY_WRITABLE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1894 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1895 | } |
| 1896 | |
| 1897 | if (device->writeable) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 1898 | mutex_lock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1899 | list_del_init(&device->dev_alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 1900 | device->fs_devices->rw_devices--; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 1901 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1902 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1903 | |
Carey Underwood | d790155 | 2013-03-04 16:37:06 -0600 | [diff] [blame] | 1904 | mutex_unlock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1905 | ret = btrfs_shrink_device(device, 0); |
Carey Underwood | d790155 | 2013-03-04 16:37:06 -0600 | [diff] [blame] | 1906 | mutex_lock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1907 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1908 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1909 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1910 | /* |
| 1911 | * TODO: the superblock still includes this device in its num_devices |
| 1912 | * counter although write_all_supers() is not locked out. This |
| 1913 | * could give a filesystem state which requires a degraded mount. |
| 1914 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1915 | ret = btrfs_rm_dev_item(fs_info, device); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1916 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1917 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1918 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1919 | device->in_fs_metadata = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1920 | btrfs_scrub_cancel_dev(fs_info, device); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1921 | |
| 1922 | /* |
| 1923 | * the device list mutex makes sure that we don't change |
| 1924 | * the device list while someone else is writing out all |
Filipe David Borba Manana | d730680 | 2013-08-09 15:41:36 +0100 | [diff] [blame] | 1925 | * the device supers. Whoever is writing all supers, should |
| 1926 | * lock the device list mutex before getting the number of |
| 1927 | * devices in the super block (super_copy). Conversely, |
| 1928 | * whoever updates the number of devices in the super block |
| 1929 | * (super_copy) should hold the device list mutex. |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1930 | */ |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1931 | |
| 1932 | cur_devices = device->fs_devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1933 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1934 | list_del_rcu(&device->dev_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1935 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1936 | device->fs_devices->num_devices--; |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1937 | device->fs_devices->total_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1938 | |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 1939 | if (device->missing) |
Miao Xie | 3a7d55c | 2014-07-16 18:38:01 +0800 | [diff] [blame] | 1940 | device->fs_devices->missing_devices--; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 1941 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1942 | btrfs_assign_next_active_device(fs_info, device, NULL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1943 | |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 1944 | if (device->bdev) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1945 | device->fs_devices->open_devices--; |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 1946 | /* remove sysfs entry */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1947 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, device); |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 1948 | } |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 1949 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1950 | num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1; |
| 1951 | btrfs_set_super_num_devices(fs_info->super_copy, num_devices); |
| 1952 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1953 | |
Jeff Mahoney | cea67ab | 2016-09-20 08:50:21 -0400 | [diff] [blame] | 1954 | /* |
| 1955 | * at this point, the device is zero sized and detached from |
| 1956 | * the devices list. All that's left is to zero out the old |
| 1957 | * supers and free the device. |
| 1958 | */ |
| 1959 | if (device->writeable) |
| 1960 | btrfs_scratch_superblocks(device->bdev, device->name->str); |
| 1961 | |
| 1962 | btrfs_close_bdev(device); |
| 1963 | call_rcu(&device->rcu, free_device); |
| 1964 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1965 | if (cur_devices->open_devices == 0) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1966 | struct btrfs_fs_devices *fs_devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1967 | fs_devices = fs_info->fs_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1968 | while (fs_devices) { |
Rickard Strandqvist | 8321cf2 | 2014-05-22 22:43:43 +0200 | [diff] [blame] | 1969 | if (fs_devices->seed == cur_devices) { |
| 1970 | fs_devices->seed = cur_devices->seed; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1971 | break; |
Rickard Strandqvist | 8321cf2 | 2014-05-22 22:43:43 +0200 | [diff] [blame] | 1972 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1973 | fs_devices = fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1974 | } |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1975 | cur_devices->seed = NULL; |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1976 | __btrfs_close_devices(cur_devices); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1977 | free_fs_devices(cur_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1978 | } |
| 1979 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1980 | out: |
| 1981 | mutex_unlock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1982 | return ret; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1983 | |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1984 | error_undo: |
| 1985 | if (device->writeable) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 1986 | mutex_lock(&fs_info->chunk_mutex); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1987 | list_add(&device->dev_alloc_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1988 | &fs_info->fs_devices->alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 1989 | device->fs_devices->rw_devices++; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 1990 | mutex_unlock(&fs_info->chunk_mutex); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1991 | } |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1992 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1993 | } |
| 1994 | |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 1995 | void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info, |
| 1996 | struct btrfs_device *srcdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1997 | { |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 1998 | struct btrfs_fs_devices *fs_devices; |
| 1999 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2000 | WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex)); |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 2001 | |
Anand Jain | 25e8e91 | 2014-08-20 10:56:56 +0800 | [diff] [blame] | 2002 | /* |
| 2003 | * in case of fs with no seed, srcdev->fs_devices will point |
| 2004 | * to fs_devices of fs_info. However when the dev being replaced is |
| 2005 | * a seed dev it will point to the seed's local fs_devices. In short |
| 2006 | * srcdev will have its correct fs_devices in both the cases. |
| 2007 | */ |
| 2008 | fs_devices = srcdev->fs_devices; |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2009 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2010 | list_del_rcu(&srcdev->dev_list); |
| 2011 | list_del_rcu(&srcdev->dev_alloc_list); |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2012 | fs_devices->num_devices--; |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2013 | if (srcdev->missing) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2014 | fs_devices->missing_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2015 | |
Anand Jain | 48b3b9d | 2016-04-12 21:36:16 +0800 | [diff] [blame] | 2016 | if (srcdev->writeable) |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2017 | fs_devices->rw_devices--; |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 2018 | |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 2019 | if (srcdev->bdev) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 2020 | fs_devices->open_devices--; |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 2021 | } |
| 2022 | |
| 2023 | void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info, |
| 2024 | struct btrfs_device *srcdev) |
| 2025 | { |
| 2026 | struct btrfs_fs_devices *fs_devices = srcdev->fs_devices; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2027 | |
Anand Jain | 48b3b9d | 2016-04-12 21:36:16 +0800 | [diff] [blame] | 2028 | if (srcdev->writeable) { |
| 2029 | /* zero out the old super if it is writable */ |
| 2030 | btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str); |
| 2031 | } |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 2032 | |
| 2033 | btrfs_close_bdev(srcdev); |
| 2034 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2035 | call_rcu(&srcdev->rcu, free_device); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2036 | |
| 2037 | /* |
| 2038 | * unless fs_devices is seed fs, num_devices shouldn't go |
| 2039 | * zero |
| 2040 | */ |
| 2041 | BUG_ON(!fs_devices->num_devices && !fs_devices->seeding); |
| 2042 | |
| 2043 | /* if this is no devs we rather delete the fs_devices */ |
| 2044 | if (!fs_devices->num_devices) { |
| 2045 | struct btrfs_fs_devices *tmp_fs_devices; |
| 2046 | |
| 2047 | tmp_fs_devices = fs_info->fs_devices; |
| 2048 | while (tmp_fs_devices) { |
| 2049 | if (tmp_fs_devices->seed == fs_devices) { |
| 2050 | tmp_fs_devices->seed = fs_devices->seed; |
| 2051 | break; |
| 2052 | } |
| 2053 | tmp_fs_devices = tmp_fs_devices->seed; |
| 2054 | } |
| 2055 | fs_devices->seed = NULL; |
Anand Jain | 8bef840 | 2014-08-13 14:24:23 +0800 | [diff] [blame] | 2056 | __btrfs_close_devices(fs_devices); |
| 2057 | free_fs_devices(fs_devices); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2058 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2059 | } |
| 2060 | |
| 2061 | void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info, |
| 2062 | struct btrfs_device *tgtdev) |
| 2063 | { |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 2064 | mutex_lock(&uuid_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2065 | WARN_ON(!tgtdev); |
| 2066 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2067 | |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 2068 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2069 | |
Anand Jain | 779bf3f | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2070 | if (tgtdev->bdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2071 | fs_info->fs_devices->open_devices--; |
Anand Jain | 779bf3f | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2072 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2073 | fs_info->fs_devices->num_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2074 | |
Anand Jain | 88acff6 | 2016-05-03 17:44:43 +0800 | [diff] [blame] | 2075 | btrfs_assign_next_active_device(fs_info, tgtdev, NULL); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2076 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2077 | list_del_rcu(&tgtdev->dev_list); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2078 | |
| 2079 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 2080 | mutex_unlock(&uuid_mutex); |
Anand Jain | 779bf3f | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2081 | |
| 2082 | /* |
| 2083 | * The update_dev_time() with in btrfs_scratch_superblocks() |
| 2084 | * may lead to a call to btrfs_show_devname() which will try |
| 2085 | * to hold device_list_mutex. And here this device |
| 2086 | * is already out of device list, so we don't have to hold |
| 2087 | * the device_list_mutex lock. |
| 2088 | */ |
| 2089 | btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str); |
Anand Jain | 1423881 | 2016-07-22 06:04:53 +0800 | [diff] [blame] | 2090 | |
| 2091 | btrfs_close_bdev(tgtdev); |
Anand Jain | 779bf3f | 2016-04-18 16:51:23 +0800 | [diff] [blame] | 2092 | call_rcu(&tgtdev->rcu, free_device); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2093 | } |
| 2094 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2095 | 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] | 2096 | const char *device_path, |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 2097 | struct btrfs_device **device) |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2098 | { |
| 2099 | int ret = 0; |
| 2100 | struct btrfs_super_block *disk_super; |
| 2101 | u64 devid; |
| 2102 | u8 *dev_uuid; |
| 2103 | struct block_device *bdev; |
| 2104 | struct buffer_head *bh; |
| 2105 | |
| 2106 | *device = NULL; |
| 2107 | ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2108 | fs_info->bdev_holder, 0, &bdev, &bh); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2109 | if (ret) |
| 2110 | return ret; |
| 2111 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 2112 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 2113 | dev_uuid = disk_super->dev_item.uuid; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2114 | *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2115 | brelse(bh); |
| 2116 | if (!*device) |
| 2117 | ret = -ENOENT; |
| 2118 | blkdev_put(bdev, FMODE_READ); |
| 2119 | return ret; |
| 2120 | } |
| 2121 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2122 | 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] | 2123 | const char *device_path, |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2124 | struct btrfs_device **device) |
| 2125 | { |
| 2126 | *device = NULL; |
| 2127 | if (strcmp(device_path, "missing") == 0) { |
| 2128 | struct list_head *devices; |
| 2129 | struct btrfs_device *tmp; |
| 2130 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2131 | devices = &fs_info->fs_devices->devices; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2132 | /* |
| 2133 | * It is safe to read the devices since the volume_mutex |
| 2134 | * is held by the caller. |
| 2135 | */ |
| 2136 | list_for_each_entry(tmp, devices, dev_list) { |
| 2137 | if (tmp->in_fs_metadata && !tmp->bdev) { |
| 2138 | *device = tmp; |
| 2139 | break; |
| 2140 | } |
| 2141 | } |
| 2142 | |
Anand Jain | d74a625 | 2015-08-14 18:32:56 +0800 | [diff] [blame] | 2143 | if (!*device) |
| 2144 | return BTRFS_ERROR_DEV_MISSING_NOT_FOUND; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2145 | |
| 2146 | return 0; |
| 2147 | } else { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2148 | return btrfs_find_device_by_path(fs_info, device_path, device); |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2149 | } |
| 2150 | } |
| 2151 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2152 | /* |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2153 | * Lookup a device given by device id, or the path if the id is 0. |
| 2154 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2155 | 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] | 2156 | const char *devpath, |
| 2157 | struct btrfs_device **device) |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2158 | { |
| 2159 | int ret; |
| 2160 | |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2161 | if (devid) { |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2162 | ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2163 | *device = btrfs_find_device(fs_info, devid, NULL, NULL); |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2164 | if (!*device) |
| 2165 | ret = -ENOENT; |
| 2166 | } else { |
David Sterba | 5c5c0df | 2016-02-15 16:39:55 +0100 | [diff] [blame] | 2167 | if (!devpath || !devpath[0]) |
Anand Jain | b3d1b15 | 2016-02-13 10:01:37 +0800 | [diff] [blame] | 2168 | return -EINVAL; |
| 2169 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2170 | ret = btrfs_find_device_missing_or_by_path(fs_info, devpath, |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2171 | device); |
| 2172 | } |
| 2173 | return ret; |
| 2174 | } |
| 2175 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2176 | /* |
| 2177 | * does all the dirty work required for changing file system's UUID. |
| 2178 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2179 | static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2180 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2181 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2182 | struct btrfs_fs_devices *old_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2183 | struct btrfs_fs_devices *seed_devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2184 | struct btrfs_super_block *disk_super = fs_info->super_copy; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2185 | struct btrfs_device *device; |
| 2186 | u64 super_flags; |
| 2187 | |
| 2188 | BUG_ON(!mutex_is_locked(&uuid_mutex)); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2189 | if (!fs_devices->seeding) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2190 | return -EINVAL; |
| 2191 | |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 2192 | seed_devices = alloc_fs_devices(NULL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 2193 | if (IS_ERR(seed_devices)) |
| 2194 | return PTR_ERR(seed_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2195 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2196 | old_devices = clone_fs_devices(fs_devices); |
| 2197 | if (IS_ERR(old_devices)) { |
| 2198 | kfree(seed_devices); |
| 2199 | return PTR_ERR(old_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2200 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2201 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2202 | list_add(&old_devices->list, &fs_uuids); |
| 2203 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2204 | memcpy(seed_devices, fs_devices, sizeof(*seed_devices)); |
| 2205 | seed_devices->opened = 1; |
| 2206 | INIT_LIST_HEAD(&seed_devices->devices); |
| 2207 | INIT_LIST_HEAD(&seed_devices->alloc_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2208 | mutex_init(&seed_devices->device_list_mutex); |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 2209 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2210 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2211 | list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices, |
| 2212 | synchronize_rcu); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2213 | list_for_each_entry(device, &seed_devices->devices, dev_list) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2214 | device->fs_devices = seed_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2215 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2216 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2217 | list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2218 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2219 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2220 | fs_devices->seeding = 0; |
| 2221 | fs_devices->num_devices = 0; |
| 2222 | fs_devices->open_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2223 | fs_devices->missing_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2224 | fs_devices->rotating = 0; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2225 | fs_devices->seed = seed_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2226 | |
| 2227 | generate_random_uuid(fs_devices->fsid); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2228 | memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2229 | memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2230 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 2231 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2232 | super_flags = btrfs_super_flags(disk_super) & |
| 2233 | ~BTRFS_SUPER_FLAG_SEEDING; |
| 2234 | btrfs_set_super_flags(disk_super, super_flags); |
| 2235 | |
| 2236 | return 0; |
| 2237 | } |
| 2238 | |
| 2239 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2240 | * Store the expected generation for seed devices in device items. |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2241 | */ |
| 2242 | static int btrfs_finish_sprout(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2243 | struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2244 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2245 | struct btrfs_root *root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2246 | struct btrfs_path *path; |
| 2247 | struct extent_buffer *leaf; |
| 2248 | struct btrfs_dev_item *dev_item; |
| 2249 | struct btrfs_device *device; |
| 2250 | struct btrfs_key key; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 2251 | u8 fs_uuid[BTRFS_FSID_SIZE]; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2252 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 2253 | u64 devid; |
| 2254 | int ret; |
| 2255 | |
| 2256 | path = btrfs_alloc_path(); |
| 2257 | if (!path) |
| 2258 | return -ENOMEM; |
| 2259 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2260 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2261 | key.offset = 0; |
| 2262 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2263 | |
| 2264 | while (1) { |
| 2265 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2266 | if (ret < 0) |
| 2267 | goto error; |
| 2268 | |
| 2269 | leaf = path->nodes[0]; |
| 2270 | next_slot: |
| 2271 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 2272 | ret = btrfs_next_leaf(root, path); |
| 2273 | if (ret > 0) |
| 2274 | break; |
| 2275 | if (ret < 0) |
| 2276 | goto error; |
| 2277 | leaf = path->nodes[0]; |
| 2278 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2279 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2280 | continue; |
| 2281 | } |
| 2282 | |
| 2283 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 2284 | if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID || |
| 2285 | key.type != BTRFS_DEV_ITEM_KEY) |
| 2286 | break; |
| 2287 | |
| 2288 | dev_item = btrfs_item_ptr(leaf, path->slots[0], |
| 2289 | struct btrfs_dev_item); |
| 2290 | devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 2291 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2292 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 2293 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 2294 | BTRFS_FSID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2295 | device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2296 | BUG_ON(!device); /* Logic error */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2297 | |
| 2298 | if (device->fs_devices->seeding) { |
| 2299 | btrfs_set_device_generation(leaf, dev_item, |
| 2300 | device->generation); |
| 2301 | btrfs_mark_buffer_dirty(leaf); |
| 2302 | } |
| 2303 | |
| 2304 | path->slots[0]++; |
| 2305 | goto next_slot; |
| 2306 | } |
| 2307 | ret = 0; |
| 2308 | error: |
| 2309 | btrfs_free_path(path); |
| 2310 | return ret; |
| 2311 | } |
| 2312 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 2313 | 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] | 2314 | { |
Jeff Mahoney | 5112feb | 2016-06-21 20:16:08 -0400 | [diff] [blame] | 2315 | struct btrfs_root *root = fs_info->dev_root; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2316 | struct request_queue *q; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2317 | struct btrfs_trans_handle *trans; |
| 2318 | struct btrfs_device *device; |
| 2319 | struct block_device *bdev; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2320 | struct list_head *devices; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2321 | struct super_block *sb = fs_info->sb; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2322 | struct rcu_string *name; |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2323 | u64 tmp; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2324 | int seeding_dev = 0; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2325 | int ret = 0; |
| 2326 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2327 | if ((sb->s_flags & MS_RDONLY) && !fs_info->fs_devices->seeding) |
Liu Bo | f8c5d0b | 2012-05-10 18:10:38 +0800 | [diff] [blame] | 2328 | return -EROFS; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2329 | |
Li Zefan | a5d1633 | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 2330 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2331 | fs_info->bdev_holder); |
Josef Bacik | 7f59203 | 2010-01-27 02:09:00 +0000 | [diff] [blame] | 2332 | if (IS_ERR(bdev)) |
| 2333 | return PTR_ERR(bdev); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2334 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2335 | if (fs_info->fs_devices->seeding) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2336 | seeding_dev = 1; |
| 2337 | down_write(&sb->s_umount); |
| 2338 | mutex_lock(&uuid_mutex); |
| 2339 | } |
| 2340 | |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 2341 | filemap_write_and_wait(bdev->bd_inode->i_mapping); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2342 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2343 | devices = &fs_info->fs_devices->devices; |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2344 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2345 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 2346 | list_for_each_entry(device, devices, dev_list) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2347 | if (device->bdev == bdev) { |
| 2348 | ret = -EEXIST; |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2349 | mutex_unlock( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2350 | &fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2351 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2352 | } |
| 2353 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2354 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2355 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2356 | device = btrfs_alloc_device(fs_info, NULL, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2357 | if (IS_ERR(device)) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2358 | /* we can safely leave the fs_devices entry around */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2359 | ret = PTR_ERR(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2360 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2361 | } |
| 2362 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 2363 | name = rcu_string_strdup(device_path, GFP_KERNEL); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2364 | if (!name) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2365 | kfree(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2366 | ret = -ENOMEM; |
| 2367 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2368 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2369 | rcu_assign_pointer(device->name, name); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2370 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2371 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2372 | if (IS_ERR(trans)) { |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2373 | rcu_string_free(device->name); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2374 | kfree(device); |
| 2375 | ret = PTR_ERR(trans); |
| 2376 | goto error; |
| 2377 | } |
| 2378 | |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2379 | q = bdev_get_queue(bdev); |
| 2380 | if (blk_queue_discard(q)) |
| 2381 | device->can_discard = 1; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2382 | device->writeable = 1; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2383 | device->generation = trans->transid; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2384 | device->io_width = fs_info->sectorsize; |
| 2385 | device->io_align = fs_info->sectorsize; |
| 2386 | device->sector_size = fs_info->sectorsize; |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2387 | device->total_bytes = round_down(i_size_read(bdev->bd_inode), |
| 2388 | fs_info->sectorsize); |
Yan Zheng | 2cc3c55 | 2009-06-04 09:23:50 -0400 | [diff] [blame] | 2389 | device->disk_total_bytes = device->total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2390 | device->commit_total_bytes = device->total_bytes; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2391 | device->fs_info = fs_info; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2392 | device->bdev = bdev; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 2393 | device->in_fs_metadata = 1; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2394 | device->is_tgtdev_for_dev_replace = 0; |
Ilya Dryomov | fb01aa8 | 2011-02-15 18:12:57 +0000 | [diff] [blame] | 2395 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2396 | device->dev_stats_valid = 1; |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 2397 | set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE); |
Zheng Yan | 325cd4b | 2008-09-05 16:43:54 -0400 | [diff] [blame] | 2398 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2399 | if (seeding_dev) { |
| 2400 | sb->s_flags &= ~MS_RDONLY; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2401 | ret = btrfs_prepare_sprout(fs_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2402 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2403 | } |
| 2404 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2405 | device->fs_devices = fs_info->fs_devices; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2406 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2407 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2408 | mutex_lock(&fs_info->chunk_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2409 | list_add_rcu(&device->dev_list, &fs_info->fs_devices->devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2410 | list_add(&device->dev_alloc_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2411 | &fs_info->fs_devices->alloc_list); |
| 2412 | fs_info->fs_devices->num_devices++; |
| 2413 | fs_info->fs_devices->open_devices++; |
| 2414 | fs_info->fs_devices->rw_devices++; |
| 2415 | fs_info->fs_devices->total_devices++; |
| 2416 | fs_info->fs_devices->total_rw_bytes += device->total_bytes; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2417 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 2418 | atomic64_add(device->total_bytes, &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 2419 | |
Anand Jain | e884f4f | 2017-04-04 18:40:19 +0800 | [diff] [blame] | 2420 | if (!blk_queue_nonrot(q)) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2421 | fs_info->fs_devices->rotating = 1; |
Chris Mason | c289811 | 2009-06-10 09:51:32 -0400 | [diff] [blame] | 2422 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2423 | tmp = btrfs_super_total_bytes(fs_info->super_copy); |
| 2424 | btrfs_set_super_total_bytes(fs_info->super_copy, |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2425 | round_down(tmp + device->total_bytes, fs_info->sectorsize)); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2426 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2427 | tmp = btrfs_super_num_devices(fs_info->super_copy); |
| 2428 | btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2429 | |
| 2430 | /* add sysfs device entry */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2431 | btrfs_sysfs_add_device_link(fs_info->fs_devices, device); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2432 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2433 | /* |
| 2434 | * we've got more storage, clear any full flags on the space |
| 2435 | * infos |
| 2436 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2437 | btrfs_clear_space_info_full(fs_info); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2438 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2439 | mutex_unlock(&fs_info->chunk_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2440 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2441 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2442 | if (seeding_dev) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2443 | mutex_lock(&fs_info->chunk_mutex); |
David Sterba | e4a4dce | 2017-02-10 19:49:01 +0100 | [diff] [blame] | 2444 | ret = init_first_rw_device(trans, fs_info); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2445 | mutex_unlock(&fs_info->chunk_mutex); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2446 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2447 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2448 | goto error_trans; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2449 | } |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2450 | } |
| 2451 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2452 | ret = btrfs_add_device(trans, fs_info, device); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2453 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2454 | btrfs_abort_transaction(trans, ret); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2455 | goto error_trans; |
| 2456 | } |
| 2457 | |
| 2458 | if (seeding_dev) { |
| 2459 | char fsid_buf[BTRFS_UUID_UNPARSED_SIZE]; |
| 2460 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2461 | ret = btrfs_finish_sprout(trans, fs_info); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2462 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2463 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2464 | goto error_trans; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2465 | } |
Anand Jain | b2373f2 | 2014-06-03 11:36:03 +0800 | [diff] [blame] | 2466 | |
| 2467 | /* Sprouting would change fsid of the mounted root, |
| 2468 | * so rename the fsid on the sysfs |
| 2469 | */ |
| 2470 | snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2471 | fs_info->fsid); |
| 2472 | if (kobject_rename(&fs_info->fs_devices->fsid_kobj, fsid_buf)) |
| 2473 | btrfs_warn(fs_info, |
| 2474 | "sysfs: failed to create fsid for sprout"); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2475 | } |
| 2476 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2477 | ret = btrfs_commit_transaction(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2478 | |
| 2479 | if (seeding_dev) { |
| 2480 | mutex_unlock(&uuid_mutex); |
| 2481 | up_write(&sb->s_umount); |
| 2482 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2483 | if (ret) /* transaction commit */ |
| 2484 | return ret; |
| 2485 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2486 | ret = btrfs_relocate_sys_chunks(fs_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2487 | if (ret < 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2488 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2489 | "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] | 2490 | trans = btrfs_attach_transaction(root); |
| 2491 | if (IS_ERR(trans)) { |
| 2492 | if (PTR_ERR(trans) == -ENOENT) |
| 2493 | return 0; |
| 2494 | return PTR_ERR(trans); |
| 2495 | } |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2496 | ret = btrfs_commit_transaction(trans); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2497 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2498 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 2499 | /* Update ctime/mtime for libblkid */ |
| 2500 | update_dev_time(device_path); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2501 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2502 | |
| 2503 | error_trans: |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2504 | btrfs_end_transaction(trans); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2505 | rcu_string_free(device->name); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2506 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, device); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2507 | kfree(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2508 | error: |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 2509 | blkdev_put(bdev, FMODE_EXCL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2510 | if (seeding_dev) { |
| 2511 | mutex_unlock(&uuid_mutex); |
| 2512 | up_write(&sb->s_umount); |
| 2513 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2514 | return ret; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2515 | } |
| 2516 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2517 | int btrfs_init_dev_replace_tgtdev(struct btrfs_fs_info *fs_info, |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 2518 | const char *device_path, |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2519 | struct btrfs_device *srcdev, |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2520 | struct btrfs_device **device_out) |
| 2521 | { |
| 2522 | struct request_queue *q; |
| 2523 | struct btrfs_device *device; |
| 2524 | struct block_device *bdev; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2525 | struct list_head *devices; |
| 2526 | struct rcu_string *name; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2527 | u64 devid = BTRFS_DEV_REPLACE_DEVID; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2528 | int ret = 0; |
| 2529 | |
| 2530 | *device_out = NULL; |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2531 | if (fs_info->fs_devices->seeding) { |
| 2532 | btrfs_err(fs_info, "the filesystem is a seed filesystem!"); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2533 | return -EINVAL; |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2534 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2535 | |
| 2536 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
| 2537 | fs_info->bdev_holder); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2538 | if (IS_ERR(bdev)) { |
| 2539 | btrfs_err(fs_info, "target device %s is invalid!", device_path); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2540 | return PTR_ERR(bdev); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2541 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2542 | |
| 2543 | filemap_write_and_wait(bdev->bd_inode->i_mapping); |
| 2544 | |
| 2545 | devices = &fs_info->fs_devices->devices; |
| 2546 | list_for_each_entry(device, devices, dev_list) { |
| 2547 | if (device->bdev == bdev) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2548 | btrfs_err(fs_info, |
| 2549 | "target device is in the filesystem!"); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2550 | ret = -EEXIST; |
| 2551 | goto error; |
| 2552 | } |
| 2553 | } |
| 2554 | |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2555 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2556 | if (i_size_read(bdev->bd_inode) < |
| 2557 | btrfs_device_get_total_bytes(srcdev)) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2558 | btrfs_err(fs_info, |
| 2559 | "target device is smaller than source device!"); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2560 | ret = -EINVAL; |
| 2561 | goto error; |
| 2562 | } |
| 2563 | |
| 2564 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2565 | device = btrfs_alloc_device(NULL, &devid, NULL); |
| 2566 | if (IS_ERR(device)) { |
| 2567 | ret = PTR_ERR(device); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2568 | goto error; |
| 2569 | } |
| 2570 | |
David Sterba | 6165572 | 2017-06-15 17:16:43 +0200 | [diff] [blame] | 2571 | name = rcu_string_strdup(device_path, GFP_KERNEL); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2572 | if (!name) { |
| 2573 | kfree(device); |
| 2574 | ret = -ENOMEM; |
| 2575 | goto error; |
| 2576 | } |
| 2577 | rcu_assign_pointer(device->name, name); |
| 2578 | |
| 2579 | q = bdev_get_queue(bdev); |
| 2580 | if (blk_queue_discard(q)) |
| 2581 | device->can_discard = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2582 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2583 | device->writeable = 1; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2584 | device->generation = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2585 | device->io_width = fs_info->sectorsize; |
| 2586 | device->io_align = fs_info->sectorsize; |
| 2587 | device->sector_size = fs_info->sectorsize; |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2588 | device->total_bytes = btrfs_device_get_total_bytes(srcdev); |
| 2589 | device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev); |
| 2590 | device->bytes_used = btrfs_device_get_bytes_used(srcdev); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2591 | ASSERT(list_empty(&srcdev->resized_list)); |
| 2592 | device->commit_total_bytes = srcdev->commit_total_bytes; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 2593 | device->commit_bytes_used = device->bytes_used; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2594 | device->fs_info = fs_info; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2595 | device->bdev = bdev; |
| 2596 | device->in_fs_metadata = 1; |
| 2597 | device->is_tgtdev_for_dev_replace = 1; |
| 2598 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2599 | device->dev_stats_valid = 1; |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 2600 | set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2601 | device->fs_devices = fs_info->fs_devices; |
| 2602 | list_add(&device->dev_list, &fs_info->fs_devices->devices); |
| 2603 | fs_info->fs_devices->num_devices++; |
| 2604 | fs_info->fs_devices->open_devices++; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2605 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2606 | |
| 2607 | *device_out = device; |
| 2608 | return ret; |
| 2609 | |
| 2610 | error: |
| 2611 | blkdev_put(bdev, FMODE_EXCL); |
| 2612 | return ret; |
| 2613 | } |
| 2614 | |
| 2615 | void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info, |
| 2616 | struct btrfs_device *tgtdev) |
| 2617 | { |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2618 | u32 sectorsize = fs_info->sectorsize; |
| 2619 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2620 | WARN_ON(fs_info->fs_devices->rw_devices == 0); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2621 | tgtdev->io_width = sectorsize; |
| 2622 | tgtdev->io_align = sectorsize; |
| 2623 | tgtdev->sector_size = sectorsize; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2624 | tgtdev->fs_info = fs_info; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2625 | tgtdev->in_fs_metadata = 1; |
| 2626 | } |
| 2627 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2628 | static noinline int btrfs_update_device(struct btrfs_trans_handle *trans, |
| 2629 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2630 | { |
| 2631 | int ret; |
| 2632 | struct btrfs_path *path; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2633 | struct btrfs_root *root = device->fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2634 | struct btrfs_dev_item *dev_item; |
| 2635 | struct extent_buffer *leaf; |
| 2636 | struct btrfs_key key; |
| 2637 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2638 | path = btrfs_alloc_path(); |
| 2639 | if (!path) |
| 2640 | return -ENOMEM; |
| 2641 | |
| 2642 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2643 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2644 | key.offset = device->devid; |
| 2645 | |
| 2646 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2647 | if (ret < 0) |
| 2648 | goto out; |
| 2649 | |
| 2650 | if (ret > 0) { |
| 2651 | ret = -ENOENT; |
| 2652 | goto out; |
| 2653 | } |
| 2654 | |
| 2655 | leaf = path->nodes[0]; |
| 2656 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 2657 | |
| 2658 | btrfs_set_device_id(leaf, dev_item, device->devid); |
| 2659 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 2660 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 2661 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 2662 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2663 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 2664 | btrfs_device_get_disk_total_bytes(device)); |
| 2665 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 2666 | btrfs_device_get_bytes_used(device)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2667 | btrfs_mark_buffer_dirty(leaf); |
| 2668 | |
| 2669 | out: |
| 2670 | btrfs_free_path(path); |
| 2671 | return ret; |
| 2672 | } |
| 2673 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2674 | int btrfs_grow_device(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2675 | struct btrfs_device *device, u64 new_size) |
| 2676 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2677 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 2678 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2679 | struct btrfs_fs_devices *fs_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2680 | u64 old_total; |
| 2681 | u64 diff; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2682 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2683 | if (!device->writeable) |
| 2684 | return -EACCES; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2685 | |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2686 | new_size = round_down(new_size, fs_info->sectorsize); |
| 2687 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2688 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2689 | old_total = btrfs_super_total_bytes(super_copy); |
Nikolay Borisov | 0e4324a | 2017-07-21 11:28:24 +0300 | [diff] [blame] | 2690 | diff = round_down(new_size - device->total_bytes, fs_info->sectorsize); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2691 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2692 | if (new_size <= device->total_bytes || |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2693 | device->is_tgtdev_for_dev_replace) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2694 | mutex_unlock(&fs_info->chunk_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2695 | return -EINVAL; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2696 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2697 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2698 | fs_devices = fs_info->fs_devices; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2699 | |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 2700 | btrfs_set_super_total_bytes(super_copy, |
| 2701 | round_down(old_total + diff, fs_info->sectorsize)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2702 | device->fs_devices->total_rw_bytes += diff; |
| 2703 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2704 | btrfs_device_set_total_bytes(device, new_size); |
| 2705 | btrfs_device_set_disk_total_bytes(device, new_size); |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 2706 | btrfs_clear_space_info_full(device->fs_info); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2707 | if (list_empty(&device->resized_list)) |
| 2708 | list_add_tail(&device->resized_list, |
| 2709 | &fs_devices->resized_devices); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2710 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 2711 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2712 | return btrfs_update_device(trans, device); |
| 2713 | } |
| 2714 | |
| 2715 | static int btrfs_free_chunk(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2716 | struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2717 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2718 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2719 | int ret; |
| 2720 | struct btrfs_path *path; |
| 2721 | struct btrfs_key key; |
| 2722 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2723 | path = btrfs_alloc_path(); |
| 2724 | if (!path) |
| 2725 | return -ENOMEM; |
| 2726 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2727 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2728 | key.offset = chunk_offset; |
| 2729 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 2730 | |
| 2731 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2732 | if (ret < 0) |
| 2733 | goto out; |
| 2734 | else if (ret > 0) { /* Logic error or corruption */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2735 | btrfs_handle_fs_error(fs_info, -ENOENT, |
| 2736 | "Failed lookup while freeing chunk."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2737 | ret = -ENOENT; |
| 2738 | goto out; |
| 2739 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2740 | |
| 2741 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2742 | if (ret < 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2743 | btrfs_handle_fs_error(fs_info, ret, |
| 2744 | "Failed to delete chunk item."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2745 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2746 | btrfs_free_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 2747 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2748 | } |
| 2749 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2750 | 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] | 2751 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2752 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2753 | struct btrfs_disk_key *disk_key; |
| 2754 | struct btrfs_chunk *chunk; |
| 2755 | u8 *ptr; |
| 2756 | int ret = 0; |
| 2757 | u32 num_stripes; |
| 2758 | u32 array_size; |
| 2759 | u32 len = 0; |
| 2760 | u32 cur; |
| 2761 | struct btrfs_key key; |
| 2762 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2763 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2764 | array_size = btrfs_super_sys_array_size(super_copy); |
| 2765 | |
| 2766 | ptr = super_copy->sys_chunk_array; |
| 2767 | cur = 0; |
| 2768 | |
| 2769 | while (cur < array_size) { |
| 2770 | disk_key = (struct btrfs_disk_key *)ptr; |
| 2771 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 2772 | |
| 2773 | len = sizeof(*disk_key); |
| 2774 | |
| 2775 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 2776 | chunk = (struct btrfs_chunk *)(ptr + len); |
| 2777 | num_stripes = btrfs_stack_chunk_num_stripes(chunk); |
| 2778 | len += btrfs_chunk_item_size(num_stripes); |
| 2779 | } else { |
| 2780 | ret = -EIO; |
| 2781 | break; |
| 2782 | } |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2783 | if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID && |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2784 | key.offset == chunk_offset) { |
| 2785 | memmove(ptr, ptr + len, array_size - (cur + len)); |
| 2786 | array_size -= len; |
| 2787 | btrfs_set_super_sys_array_size(super_copy, array_size); |
| 2788 | } else { |
| 2789 | ptr += len; |
| 2790 | cur += len; |
| 2791 | } |
| 2792 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2793 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2794 | return ret; |
| 2795 | } |
| 2796 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2797 | static struct extent_map *get_chunk_map(struct btrfs_fs_info *fs_info, |
| 2798 | u64 logical, u64 length) |
| 2799 | { |
| 2800 | struct extent_map_tree *em_tree; |
| 2801 | struct extent_map *em; |
| 2802 | |
| 2803 | em_tree = &fs_info->mapping_tree.map_tree; |
| 2804 | read_lock(&em_tree->lock); |
| 2805 | em = lookup_extent_mapping(em_tree, logical, length); |
| 2806 | read_unlock(&em_tree->lock); |
| 2807 | |
| 2808 | if (!em) { |
| 2809 | btrfs_crit(fs_info, "unable to find logical %llu length %llu", |
| 2810 | logical, length); |
| 2811 | return ERR_PTR(-EINVAL); |
| 2812 | } |
| 2813 | |
| 2814 | if (em->start > logical || em->start + em->len < logical) { |
| 2815 | btrfs_crit(fs_info, |
| 2816 | "found a bad mapping, wanted %llu-%llu, found %llu-%llu", |
| 2817 | logical, length, em->start, em->start + em->len); |
| 2818 | free_extent_map(em); |
| 2819 | return ERR_PTR(-EINVAL); |
| 2820 | } |
| 2821 | |
| 2822 | /* callers are responsible for dropping em's ref. */ |
| 2823 | return em; |
| 2824 | } |
| 2825 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2826 | int btrfs_remove_chunk(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2827 | struct btrfs_fs_info *fs_info, u64 chunk_offset) |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2828 | { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2829 | struct extent_map *em; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2830 | struct map_lookup *map; |
| 2831 | u64 dev_extent_len = 0; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2832 | int i, ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2833 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2834 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2835 | em = get_chunk_map(fs_info, chunk_offset, 1); |
| 2836 | if (IS_ERR(em)) { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2837 | /* |
| 2838 | * 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] | 2839 | * user having built with ASSERT enabled, so if ASSERT doesn't |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2840 | * do anything we still error out. |
| 2841 | */ |
| 2842 | ASSERT(0); |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 2843 | return PTR_ERR(em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2844 | } |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 2845 | map = em->map_lookup; |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2846 | mutex_lock(&fs_info->chunk_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2847 | check_system_chunk(trans, fs_info, map->type); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2848 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2849 | |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2850 | /* |
| 2851 | * Take the device list mutex to prevent races with the final phase of |
| 2852 | * a device replace operation that replaces the device object associated |
| 2853 | * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()). |
| 2854 | */ |
| 2855 | mutex_lock(&fs_devices->device_list_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2856 | for (i = 0; i < map->num_stripes; i++) { |
| 2857 | struct btrfs_device *device = map->stripes[i].dev; |
| 2858 | ret = btrfs_free_dev_extent(trans, device, |
| 2859 | map->stripes[i].physical, |
| 2860 | &dev_extent_len); |
| 2861 | if (ret) { |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2862 | mutex_unlock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2863 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2864 | goto out; |
| 2865 | } |
| 2866 | |
| 2867 | if (device->bytes_used > 0) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2868 | mutex_lock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2869 | btrfs_device_set_bytes_used(device, |
| 2870 | device->bytes_used - dev_extent_len); |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 2871 | atomic64_add(dev_extent_len, &fs_info->free_chunk_space); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2872 | btrfs_clear_space_info_full(fs_info); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 2873 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2874 | } |
| 2875 | |
| 2876 | if (map->stripes[i].dev) { |
| 2877 | ret = btrfs_update_device(trans, map->stripes[i].dev); |
| 2878 | if (ret) { |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2879 | mutex_unlock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2880 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2881 | goto out; |
| 2882 | } |
| 2883 | } |
| 2884 | } |
Filipe Manana | 57ba4cb | 2016-05-20 04:34:23 +0100 | [diff] [blame] | 2885 | mutex_unlock(&fs_devices->device_list_mutex); |
| 2886 | |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2887 | ret = btrfs_free_chunk(trans, fs_info, chunk_offset); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2888 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2889 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2890 | goto out; |
| 2891 | } |
| 2892 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2893 | trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2894 | |
| 2895 | if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Nikolay Borisov | 408fbf1 | 2017-07-27 14:37:29 +0300 | [diff] [blame] | 2896 | ret = btrfs_del_sys_chunk(fs_info, chunk_offset); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2897 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2898 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2899 | goto out; |
| 2900 | } |
| 2901 | } |
| 2902 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2903 | ret = btrfs_remove_block_group(trans, fs_info, chunk_offset, em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2904 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2905 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2906 | goto out; |
| 2907 | } |
| 2908 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2909 | out: |
| 2910 | /* once for us */ |
| 2911 | free_extent_map(em); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2912 | return ret; |
| 2913 | } |
| 2914 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2915 | 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] | 2916 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2917 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 2918 | struct btrfs_trans_handle *trans; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2919 | int ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2920 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2921 | /* |
| 2922 | * Prevent races with automatic removal of unused block groups. |
| 2923 | * After we relocate and before we remove the chunk with offset |
| 2924 | * chunk_offset, automatic removal of the block group can kick in, |
| 2925 | * resulting in a failure when calling btrfs_remove_chunk() below. |
| 2926 | * |
| 2927 | * Make sure to acquire this mutex before doing a tree search (dev |
| 2928 | * or chunk trees) to find chunks. Otherwise the cleaner kthread might |
| 2929 | * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after |
| 2930 | * we release the path used to search the chunk/dev tree and before |
| 2931 | * the current task acquires this mutex and calls us. |
| 2932 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2933 | ASSERT(mutex_is_locked(&fs_info->delete_unused_bgs_mutex)); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2934 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2935 | ret = btrfs_can_relocate(fs_info, chunk_offset); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2936 | if (ret) |
| 2937 | return -ENOSPC; |
| 2938 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2939 | /* step one, relocate all the extents inside this chunk */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2940 | btrfs_scrub_pause(fs_info); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2941 | ret = btrfs_relocate_block_group(fs_info, chunk_offset); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2942 | btrfs_scrub_continue(fs_info); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2943 | if (ret) |
| 2944 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2945 | |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 2946 | trans = btrfs_start_trans_remove_block_group(root->fs_info, |
| 2947 | chunk_offset); |
| 2948 | if (IS_ERR(trans)) { |
| 2949 | ret = PTR_ERR(trans); |
| 2950 | btrfs_handle_fs_error(root->fs_info, ret, NULL); |
| 2951 | return ret; |
| 2952 | } |
Naohiro Aota | 5d8eb6f | 2016-09-02 16:46:32 +0900 | [diff] [blame] | 2953 | |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 2954 | /* |
| 2955 | * step two, delete the device extents and the |
| 2956 | * chunk tree entries |
| 2957 | */ |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2958 | ret = btrfs_remove_chunk(trans, fs_info, chunk_offset); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2959 | btrfs_end_transaction(trans); |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 2960 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2961 | } |
| 2962 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2963 | static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2964 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2965 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2966 | struct btrfs_path *path; |
| 2967 | struct extent_buffer *leaf; |
| 2968 | struct btrfs_chunk *chunk; |
| 2969 | struct btrfs_key key; |
| 2970 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2971 | u64 chunk_type; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2972 | bool retried = false; |
| 2973 | int failed = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2974 | int ret; |
| 2975 | |
| 2976 | path = btrfs_alloc_path(); |
| 2977 | if (!path) |
| 2978 | return -ENOMEM; |
| 2979 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2980 | again: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2981 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 2982 | key.offset = (u64)-1; |
| 2983 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 2984 | |
| 2985 | while (1) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2986 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2987 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2988 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2989 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2990 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2991 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2992 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2993 | |
| 2994 | ret = btrfs_previous_item(chunk_root, path, key.objectid, |
| 2995 | key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2996 | if (ret) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2997 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2998 | if (ret < 0) |
| 2999 | goto error; |
| 3000 | if (ret > 0) |
| 3001 | break; |
| 3002 | |
| 3003 | leaf = path->nodes[0]; |
| 3004 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 3005 | |
| 3006 | chunk = btrfs_item_ptr(leaf, path->slots[0], |
| 3007 | struct btrfs_chunk); |
| 3008 | chunk_type = btrfs_chunk_type(leaf, chunk); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3009 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3010 | |
| 3011 | if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3012 | ret = btrfs_relocate_chunk(fs_info, found_key.offset); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3013 | if (ret == -ENOSPC) |
| 3014 | failed++; |
HIMANGI SARAOGI | 1458665 | 2014-07-09 03:51:41 +0530 | [diff] [blame] | 3015 | else |
| 3016 | BUG_ON(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3017 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3018 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3019 | |
| 3020 | if (found_key.offset == 0) |
| 3021 | break; |
| 3022 | key.offset = found_key.offset - 1; |
| 3023 | } |
| 3024 | ret = 0; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3025 | if (failed && !retried) { |
| 3026 | failed = 0; |
| 3027 | retried = true; |
| 3028 | goto again; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 3029 | } else if (WARN_ON(failed && retried)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3030 | ret = -ENOSPC; |
| 3031 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3032 | error: |
| 3033 | btrfs_free_path(path); |
| 3034 | return ret; |
| 3035 | } |
| 3036 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3037 | static int insert_balance_item(struct btrfs_fs_info *fs_info, |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3038 | struct btrfs_balance_control *bctl) |
| 3039 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3040 | struct btrfs_root *root = fs_info->tree_root; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3041 | struct btrfs_trans_handle *trans; |
| 3042 | struct btrfs_balance_item *item; |
| 3043 | struct btrfs_disk_balance_args disk_bargs; |
| 3044 | struct btrfs_path *path; |
| 3045 | struct extent_buffer *leaf; |
| 3046 | struct btrfs_key key; |
| 3047 | int ret, err; |
| 3048 | |
| 3049 | path = btrfs_alloc_path(); |
| 3050 | if (!path) |
| 3051 | return -ENOMEM; |
| 3052 | |
| 3053 | trans = btrfs_start_transaction(root, 0); |
| 3054 | if (IS_ERR(trans)) { |
| 3055 | btrfs_free_path(path); |
| 3056 | return PTR_ERR(trans); |
| 3057 | } |
| 3058 | |
| 3059 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3060 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3061 | key.offset = 0; |
| 3062 | |
| 3063 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 3064 | sizeof(*item)); |
| 3065 | if (ret) |
| 3066 | goto out; |
| 3067 | |
| 3068 | leaf = path->nodes[0]; |
| 3069 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 3070 | |
David Sterba | b159fa2 | 2016-11-08 18:09:03 +0100 | [diff] [blame] | 3071 | memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item)); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3072 | |
| 3073 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data); |
| 3074 | btrfs_set_balance_data(leaf, item, &disk_bargs); |
| 3075 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta); |
| 3076 | btrfs_set_balance_meta(leaf, item, &disk_bargs); |
| 3077 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys); |
| 3078 | btrfs_set_balance_sys(leaf, item, &disk_bargs); |
| 3079 | |
| 3080 | btrfs_set_balance_flags(leaf, item, bctl->flags); |
| 3081 | |
| 3082 | btrfs_mark_buffer_dirty(leaf); |
| 3083 | out: |
| 3084 | btrfs_free_path(path); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3085 | err = btrfs_commit_transaction(trans); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3086 | if (err && !ret) |
| 3087 | ret = err; |
| 3088 | return ret; |
| 3089 | } |
| 3090 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3091 | static int del_balance_item(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3092 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3093 | struct btrfs_root *root = fs_info->tree_root; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3094 | struct btrfs_trans_handle *trans; |
| 3095 | struct btrfs_path *path; |
| 3096 | struct btrfs_key key; |
| 3097 | int ret, err; |
| 3098 | |
| 3099 | path = btrfs_alloc_path(); |
| 3100 | if (!path) |
| 3101 | return -ENOMEM; |
| 3102 | |
| 3103 | trans = btrfs_start_transaction(root, 0); |
| 3104 | if (IS_ERR(trans)) { |
| 3105 | btrfs_free_path(path); |
| 3106 | return PTR_ERR(trans); |
| 3107 | } |
| 3108 | |
| 3109 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3110 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3111 | key.offset = 0; |
| 3112 | |
| 3113 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 3114 | if (ret < 0) |
| 3115 | goto out; |
| 3116 | if (ret > 0) { |
| 3117 | ret = -ENOENT; |
| 3118 | goto out; |
| 3119 | } |
| 3120 | |
| 3121 | ret = btrfs_del_item(trans, root, path); |
| 3122 | out: |
| 3123 | btrfs_free_path(path); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3124 | err = btrfs_commit_transaction(trans); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3125 | if (err && !ret) |
| 3126 | ret = err; |
| 3127 | return ret; |
| 3128 | } |
| 3129 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3130 | /* |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3131 | * This is a heuristic used to reduce the number of chunks balanced on |
| 3132 | * resume after balance was interrupted. |
| 3133 | */ |
| 3134 | static void update_balance_args(struct btrfs_balance_control *bctl) |
| 3135 | { |
| 3136 | /* |
| 3137 | * Turn on soft mode for chunk types that were being converted. |
| 3138 | */ |
| 3139 | if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3140 | bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3141 | if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3142 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3143 | if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3144 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3145 | |
| 3146 | /* |
| 3147 | * Turn on usage filter if is not already used. The idea is |
| 3148 | * that chunks that we have already balanced should be |
| 3149 | * reasonably full. Don't do it for chunks that are being |
| 3150 | * converted - that will keep us from relocating unconverted |
| 3151 | * (albeit full) chunks. |
| 3152 | */ |
| 3153 | if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3154 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3155 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3156 | bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3157 | bctl->data.usage = 90; |
| 3158 | } |
| 3159 | if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3160 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3161 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3162 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3163 | bctl->sys.usage = 90; |
| 3164 | } |
| 3165 | if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3166 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3167 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3168 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3169 | bctl->meta.usage = 90; |
| 3170 | } |
| 3171 | } |
| 3172 | |
| 3173 | /* |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3174 | * Should be called with both balance and volume mutexes held to |
| 3175 | * serialize other volume operations (add_dev/rm_dev/resize) with |
| 3176 | * restriper. Same goes for unset_balance_control. |
| 3177 | */ |
| 3178 | static void set_balance_control(struct btrfs_balance_control *bctl) |
| 3179 | { |
| 3180 | struct btrfs_fs_info *fs_info = bctl->fs_info; |
| 3181 | |
| 3182 | BUG_ON(fs_info->balance_ctl); |
| 3183 | |
| 3184 | spin_lock(&fs_info->balance_lock); |
| 3185 | fs_info->balance_ctl = bctl; |
| 3186 | spin_unlock(&fs_info->balance_lock); |
| 3187 | } |
| 3188 | |
| 3189 | static void unset_balance_control(struct btrfs_fs_info *fs_info) |
| 3190 | { |
| 3191 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 3192 | |
| 3193 | BUG_ON(!fs_info->balance_ctl); |
| 3194 | |
| 3195 | spin_lock(&fs_info->balance_lock); |
| 3196 | fs_info->balance_ctl = NULL; |
| 3197 | spin_unlock(&fs_info->balance_lock); |
| 3198 | |
| 3199 | kfree(bctl); |
| 3200 | } |
| 3201 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3202 | /* |
| 3203 | * Balance filters. Return 1 if chunk should be filtered out |
| 3204 | * (should not be balanced). |
| 3205 | */ |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3206 | static int chunk_profiles_filter(u64 chunk_type, |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3207 | struct btrfs_balance_args *bargs) |
| 3208 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3209 | chunk_type = chunk_to_extended(chunk_type) & |
| 3210 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3211 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3212 | if (bargs->profiles & chunk_type) |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3213 | return 0; |
| 3214 | |
| 3215 | return 1; |
| 3216 | } |
| 3217 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3218 | 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] | 3219 | struct btrfs_balance_args *bargs) |
| 3220 | { |
| 3221 | struct btrfs_block_group_cache *cache; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3222 | u64 chunk_used; |
| 3223 | u64 user_thresh_min; |
| 3224 | u64 user_thresh_max; |
| 3225 | int ret = 1; |
| 3226 | |
| 3227 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3228 | chunk_used = btrfs_block_group_used(&cache->item); |
| 3229 | |
| 3230 | if (bargs->usage_min == 0) |
| 3231 | user_thresh_min = 0; |
| 3232 | else |
| 3233 | user_thresh_min = div_factor_fine(cache->key.offset, |
| 3234 | bargs->usage_min); |
| 3235 | |
| 3236 | if (bargs->usage_max == 0) |
| 3237 | user_thresh_max = 1; |
| 3238 | else if (bargs->usage_max > 100) |
| 3239 | user_thresh_max = cache->key.offset; |
| 3240 | else |
| 3241 | user_thresh_max = div_factor_fine(cache->key.offset, |
| 3242 | bargs->usage_max); |
| 3243 | |
| 3244 | if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max) |
| 3245 | ret = 0; |
| 3246 | |
| 3247 | btrfs_put_block_group(cache); |
| 3248 | return ret; |
| 3249 | } |
| 3250 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3251 | static int chunk_usage_filter(struct btrfs_fs_info *fs_info, |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3252 | u64 chunk_offset, struct btrfs_balance_args *bargs) |
| 3253 | { |
| 3254 | struct btrfs_block_group_cache *cache; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3255 | u64 chunk_used, user_thresh; |
| 3256 | int ret = 1; |
| 3257 | |
| 3258 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3259 | chunk_used = btrfs_block_group_used(&cache->item); |
| 3260 | |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3261 | if (bargs->usage_min == 0) |
Ilya Dryomov | 3e39cea | 2013-02-12 16:28:59 +0000 | [diff] [blame] | 3262 | user_thresh = 1; |
Ilya Dryomov | a105bb8 | 2013-01-21 15:15:56 +0200 | [diff] [blame] | 3263 | else if (bargs->usage > 100) |
| 3264 | user_thresh = cache->key.offset; |
| 3265 | else |
| 3266 | user_thresh = div_factor_fine(cache->key.offset, |
| 3267 | bargs->usage); |
| 3268 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3269 | if (chunk_used < user_thresh) |
| 3270 | ret = 0; |
| 3271 | |
| 3272 | btrfs_put_block_group(cache); |
| 3273 | return ret; |
| 3274 | } |
| 3275 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3276 | static int chunk_devid_filter(struct extent_buffer *leaf, |
| 3277 | struct btrfs_chunk *chunk, |
| 3278 | struct btrfs_balance_args *bargs) |
| 3279 | { |
| 3280 | struct btrfs_stripe *stripe; |
| 3281 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3282 | int i; |
| 3283 | |
| 3284 | for (i = 0; i < num_stripes; i++) { |
| 3285 | stripe = btrfs_stripe_nr(chunk, i); |
| 3286 | if (btrfs_stripe_devid(leaf, stripe) == bargs->devid) |
| 3287 | return 0; |
| 3288 | } |
| 3289 | |
| 3290 | return 1; |
| 3291 | } |
| 3292 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3293 | /* [pstart, pend) */ |
| 3294 | static int chunk_drange_filter(struct extent_buffer *leaf, |
| 3295 | struct btrfs_chunk *chunk, |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3296 | struct btrfs_balance_args *bargs) |
| 3297 | { |
| 3298 | struct btrfs_stripe *stripe; |
| 3299 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3300 | u64 stripe_offset; |
| 3301 | u64 stripe_length; |
| 3302 | int factor; |
| 3303 | int i; |
| 3304 | |
| 3305 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID)) |
| 3306 | return 0; |
| 3307 | |
| 3308 | if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3309 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 3310 | factor = num_stripes / 2; |
| 3311 | } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) { |
| 3312 | factor = num_stripes - 1; |
| 3313 | } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) { |
| 3314 | factor = num_stripes - 2; |
| 3315 | } else { |
| 3316 | factor = num_stripes; |
| 3317 | } |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3318 | |
| 3319 | for (i = 0; i < num_stripes; i++) { |
| 3320 | stripe = btrfs_stripe_nr(chunk, i); |
| 3321 | if (btrfs_stripe_devid(leaf, stripe) != bargs->devid) |
| 3322 | continue; |
| 3323 | |
| 3324 | stripe_offset = btrfs_stripe_offset(leaf, stripe); |
| 3325 | stripe_length = btrfs_chunk_length(leaf, chunk); |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 3326 | stripe_length = div_u64(stripe_length, factor); |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3327 | |
| 3328 | if (stripe_offset < bargs->pend && |
| 3329 | stripe_offset + stripe_length > bargs->pstart) |
| 3330 | return 0; |
| 3331 | } |
| 3332 | |
| 3333 | return 1; |
| 3334 | } |
| 3335 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3336 | /* [vstart, vend) */ |
| 3337 | static int chunk_vrange_filter(struct extent_buffer *leaf, |
| 3338 | struct btrfs_chunk *chunk, |
| 3339 | u64 chunk_offset, |
| 3340 | struct btrfs_balance_args *bargs) |
| 3341 | { |
| 3342 | if (chunk_offset < bargs->vend && |
| 3343 | chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart) |
| 3344 | /* at least part of the chunk is inside this vrange */ |
| 3345 | return 0; |
| 3346 | |
| 3347 | return 1; |
| 3348 | } |
| 3349 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3350 | static int chunk_stripes_range_filter(struct extent_buffer *leaf, |
| 3351 | struct btrfs_chunk *chunk, |
| 3352 | struct btrfs_balance_args *bargs) |
| 3353 | { |
| 3354 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3355 | |
| 3356 | if (bargs->stripes_min <= num_stripes |
| 3357 | && num_stripes <= bargs->stripes_max) |
| 3358 | return 0; |
| 3359 | |
| 3360 | return 1; |
| 3361 | } |
| 3362 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3363 | static int chunk_soft_convert_filter(u64 chunk_type, |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3364 | struct btrfs_balance_args *bargs) |
| 3365 | { |
| 3366 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT)) |
| 3367 | return 0; |
| 3368 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3369 | chunk_type = chunk_to_extended(chunk_type) & |
| 3370 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3371 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3372 | if (bargs->target == chunk_type) |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3373 | return 1; |
| 3374 | |
| 3375 | return 0; |
| 3376 | } |
| 3377 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3378 | static int should_balance_chunk(struct btrfs_fs_info *fs_info, |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3379 | struct extent_buffer *leaf, |
| 3380 | struct btrfs_chunk *chunk, u64 chunk_offset) |
| 3381 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3382 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3383 | struct btrfs_balance_args *bargs = NULL; |
| 3384 | u64 chunk_type = btrfs_chunk_type(leaf, chunk); |
| 3385 | |
| 3386 | /* type filter */ |
| 3387 | if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) & |
| 3388 | (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) { |
| 3389 | return 0; |
| 3390 | } |
| 3391 | |
| 3392 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3393 | bargs = &bctl->data; |
| 3394 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3395 | bargs = &bctl->sys; |
| 3396 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3397 | bargs = &bctl->meta; |
| 3398 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3399 | /* profiles filter */ |
| 3400 | if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) && |
| 3401 | chunk_profiles_filter(chunk_type, bargs)) { |
| 3402 | return 0; |
| 3403 | } |
| 3404 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3405 | /* usage filter */ |
| 3406 | if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3407 | chunk_usage_filter(fs_info, chunk_offset, bargs)) { |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3408 | return 0; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3409 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3410 | chunk_usage_range_filter(fs_info, chunk_offset, bargs)) { |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3411 | return 0; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3412 | } |
| 3413 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3414 | /* devid filter */ |
| 3415 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) && |
| 3416 | chunk_devid_filter(leaf, chunk, bargs)) { |
| 3417 | return 0; |
| 3418 | } |
| 3419 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3420 | /* drange filter, makes sense only with devid filter */ |
| 3421 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) && |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 3422 | chunk_drange_filter(leaf, chunk, bargs)) { |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3423 | return 0; |
| 3424 | } |
| 3425 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3426 | /* vrange filter */ |
| 3427 | if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) && |
| 3428 | chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) { |
| 3429 | return 0; |
| 3430 | } |
| 3431 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3432 | /* stripes filter */ |
| 3433 | if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) && |
| 3434 | chunk_stripes_range_filter(leaf, chunk, bargs)) { |
| 3435 | return 0; |
| 3436 | } |
| 3437 | |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3438 | /* soft profile changing mode */ |
| 3439 | if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) && |
| 3440 | chunk_soft_convert_filter(chunk_type, bargs)) { |
| 3441 | return 0; |
| 3442 | } |
| 3443 | |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3444 | /* |
| 3445 | * limited by count, must be the last filter |
| 3446 | */ |
| 3447 | if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) { |
| 3448 | if (bargs->limit == 0) |
| 3449 | return 0; |
| 3450 | else |
| 3451 | bargs->limit--; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3452 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) { |
| 3453 | /* |
| 3454 | * Same logic as the 'limit' filter; the minimum cannot be |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 3455 | * determined here because we do not have the global information |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3456 | * about the count of all chunks that satisfy the filters. |
| 3457 | */ |
| 3458 | if (bargs->limit_max == 0) |
| 3459 | return 0; |
| 3460 | else |
| 3461 | bargs->limit_max--; |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3462 | } |
| 3463 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3464 | return 1; |
| 3465 | } |
| 3466 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3467 | static int __btrfs_balance(struct btrfs_fs_info *fs_info) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3468 | { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3469 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3470 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
| 3471 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 3472 | struct list_head *devices; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3473 | struct btrfs_device *device; |
| 3474 | u64 old_size; |
| 3475 | u64 size_to_free; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3476 | u64 chunk_type; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3477 | struct btrfs_chunk *chunk; |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3478 | struct btrfs_path *path = NULL; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3479 | struct btrfs_key key; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3480 | struct btrfs_key found_key; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3481 | struct btrfs_trans_handle *trans; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3482 | struct extent_buffer *leaf; |
| 3483 | int slot; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3484 | int ret; |
| 3485 | int enospc_errors = 0; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3486 | bool counting = true; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3487 | /* 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] | 3488 | u64 limit_data = bctl->data.limit; |
| 3489 | u64 limit_meta = bctl->meta.limit; |
| 3490 | u64 limit_sys = bctl->sys.limit; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3491 | u32 count_data = 0; |
| 3492 | u32 count_meta = 0; |
| 3493 | u32 count_sys = 0; |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3494 | int chunk_reserved = 0; |
Liu Bo | cf25ce5 | 2015-12-14 18:29:32 -0800 | [diff] [blame] | 3495 | u64 bytes_used = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3496 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3497 | /* step one make some room on all the devices */ |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3498 | devices = &fs_info->fs_devices->devices; |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 3499 | list_for_each_entry(device, devices, dev_list) { |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 3500 | old_size = btrfs_device_get_total_bytes(device); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3501 | size_to_free = div_factor(old_size, 1); |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3502 | size_to_free = min_t(u64, size_to_free, SZ_1M); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3503 | if (!device->writeable || |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 3504 | btrfs_device_get_total_bytes(device) - |
| 3505 | btrfs_device_get_bytes_used(device) > size_to_free || |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 3506 | device->is_tgtdev_for_dev_replace) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3507 | continue; |
| 3508 | |
| 3509 | ret = btrfs_shrink_device(device, old_size - size_to_free); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3510 | if (ret == -ENOSPC) |
| 3511 | break; |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3512 | if (ret) { |
| 3513 | /* btrfs_shrink_device never returns ret > 0 */ |
| 3514 | WARN_ON(ret > 0); |
| 3515 | goto error; |
| 3516 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3517 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3518 | trans = btrfs_start_transaction(dev_root, 0); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3519 | if (IS_ERR(trans)) { |
| 3520 | ret = PTR_ERR(trans); |
| 3521 | btrfs_info_in_rcu(fs_info, |
| 3522 | "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu", |
| 3523 | rcu_str_deref(device->name), ret, |
| 3524 | old_size, old_size - size_to_free); |
| 3525 | goto error; |
| 3526 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3527 | |
| 3528 | ret = btrfs_grow_device(trans, device, old_size); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3529 | if (ret) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3530 | btrfs_end_transaction(trans); |
Liu Bo | 5a488b9 | 2016-07-12 11:24:21 -0700 | [diff] [blame] | 3531 | /* btrfs_grow_device never returns ret > 0 */ |
| 3532 | WARN_ON(ret > 0); |
| 3533 | btrfs_info_in_rcu(fs_info, |
| 3534 | "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu", |
| 3535 | rcu_str_deref(device->name), ret, |
| 3536 | old_size, old_size - size_to_free); |
| 3537 | goto error; |
| 3538 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3539 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3540 | btrfs_end_transaction(trans); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3541 | } |
| 3542 | |
| 3543 | /* step two, relocate all the chunks */ |
| 3544 | path = btrfs_alloc_path(); |
Mark Fasheh | 17e9f79 | 2011-07-12 11:10:23 -0700 | [diff] [blame] | 3545 | if (!path) { |
| 3546 | ret = -ENOMEM; |
| 3547 | goto error; |
| 3548 | } |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3549 | |
| 3550 | /* zero out stat counters */ |
| 3551 | spin_lock(&fs_info->balance_lock); |
| 3552 | memset(&bctl->stat, 0, sizeof(bctl->stat)); |
| 3553 | spin_unlock(&fs_info->balance_lock); |
| 3554 | again: |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3555 | if (!counting) { |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3556 | /* |
| 3557 | * The single value limit and min/max limits use the same bytes |
| 3558 | * in the |
| 3559 | */ |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3560 | bctl->data.limit = limit_data; |
| 3561 | bctl->meta.limit = limit_meta; |
| 3562 | bctl->sys.limit = limit_sys; |
| 3563 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3564 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 3565 | key.offset = (u64)-1; |
| 3566 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 3567 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3568 | while (1) { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3569 | if ((!counting && atomic_read(&fs_info->balance_pause_req)) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3570 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3571 | ret = -ECANCELED; |
| 3572 | goto error; |
| 3573 | } |
| 3574 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3575 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3576 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3577 | if (ret < 0) { |
| 3578 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3579 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3580 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3581 | |
| 3582 | /* |
| 3583 | * this shouldn't happen, it means the last relocate |
| 3584 | * failed |
| 3585 | */ |
| 3586 | if (ret == 0) |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3587 | BUG(); /* FIXME break ? */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3588 | |
| 3589 | ret = btrfs_previous_item(chunk_root, path, 0, |
| 3590 | BTRFS_CHUNK_ITEM_KEY); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3591 | if (ret) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3592 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3593 | ret = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3594 | break; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3595 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3596 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3597 | leaf = path->nodes[0]; |
| 3598 | slot = path->slots[0]; |
| 3599 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 3600 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3601 | if (found_key.objectid != key.objectid) { |
| 3602 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3603 | break; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3604 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3605 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3606 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3607 | chunk_type = btrfs_chunk_type(leaf, chunk); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3608 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3609 | if (!counting) { |
| 3610 | spin_lock(&fs_info->balance_lock); |
| 3611 | bctl->stat.considered++; |
| 3612 | spin_unlock(&fs_info->balance_lock); |
| 3613 | } |
| 3614 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3615 | ret = should_balance_chunk(fs_info, leaf, chunk, |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3616 | found_key.offset); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3617 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3618 | btrfs_release_path(path); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3619 | if (!ret) { |
| 3620 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3621 | goto loop; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3622 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3623 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3624 | if (counting) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3625 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3626 | spin_lock(&fs_info->balance_lock); |
| 3627 | bctl->stat.expected++; |
| 3628 | spin_unlock(&fs_info->balance_lock); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3629 | |
| 3630 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3631 | count_data++; |
| 3632 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3633 | count_sys++; |
| 3634 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3635 | count_meta++; |
| 3636 | |
| 3637 | goto loop; |
| 3638 | } |
| 3639 | |
| 3640 | /* |
| 3641 | * Apply limit_min filter, no need to check if the LIMITS |
| 3642 | * filter is used, limit_min is 0 by default |
| 3643 | */ |
| 3644 | if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) && |
| 3645 | count_data < bctl->data.limit_min) |
| 3646 | || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) && |
| 3647 | count_meta < bctl->meta.limit_min) |
| 3648 | || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) && |
| 3649 | count_sys < bctl->sys.limit_min)) { |
| 3650 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3651 | goto loop; |
| 3652 | } |
| 3653 | |
Liu Bo | cf25ce5 | 2015-12-14 18:29:32 -0800 | [diff] [blame] | 3654 | ASSERT(fs_info->data_sinfo); |
| 3655 | spin_lock(&fs_info->data_sinfo->lock); |
| 3656 | bytes_used = fs_info->data_sinfo->bytes_used; |
| 3657 | spin_unlock(&fs_info->data_sinfo->lock); |
| 3658 | |
| 3659 | if ((chunk_type & BTRFS_BLOCK_GROUP_DATA) && |
| 3660 | !chunk_reserved && !bytes_used) { |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3661 | trans = btrfs_start_transaction(chunk_root, 0); |
| 3662 | if (IS_ERR(trans)) { |
| 3663 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
| 3664 | ret = PTR_ERR(trans); |
| 3665 | goto error; |
| 3666 | } |
| 3667 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3668 | ret = btrfs_force_chunk_alloc(trans, fs_info, |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3669 | BTRFS_BLOCK_GROUP_DATA); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3670 | btrfs_end_transaction(trans); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3671 | if (ret < 0) { |
| 3672 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
| 3673 | goto error; |
| 3674 | } |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3675 | chunk_reserved = 1; |
| 3676 | } |
| 3677 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3678 | ret = btrfs_relocate_chunk(fs_info, found_key.offset); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3679 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 508794e | 2011-07-02 21:24:41 +0000 | [diff] [blame] | 3680 | if (ret && ret != -ENOSPC) |
| 3681 | goto error; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3682 | if (ret == -ENOSPC) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3683 | enospc_errors++; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3684 | } else { |
| 3685 | spin_lock(&fs_info->balance_lock); |
| 3686 | bctl->stat.completed++; |
| 3687 | spin_unlock(&fs_info->balance_lock); |
| 3688 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3689 | loop: |
Ilya Dryomov | 795a332 | 2013-08-27 13:50:44 +0300 | [diff] [blame] | 3690 | if (found_key.offset == 0) |
| 3691 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3692 | key.offset = found_key.offset - 1; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3693 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3694 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3695 | if (counting) { |
| 3696 | btrfs_release_path(path); |
| 3697 | counting = false; |
| 3698 | goto again; |
| 3699 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3700 | error: |
| 3701 | btrfs_free_path(path); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3702 | if (enospc_errors) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3703 | btrfs_info(fs_info, "%d enospc errors during balance", |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3704 | enospc_errors); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3705 | if (!ret) |
| 3706 | ret = -ENOSPC; |
| 3707 | } |
| 3708 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3709 | return ret; |
| 3710 | } |
| 3711 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3712 | /** |
| 3713 | * alloc_profile_is_valid - see if a given profile is valid and reduced |
| 3714 | * @flags: profile to validate |
| 3715 | * @extended: if true @flags is treated as an extended profile |
| 3716 | */ |
| 3717 | static int alloc_profile_is_valid(u64 flags, int extended) |
| 3718 | { |
| 3719 | u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK : |
| 3720 | BTRFS_BLOCK_GROUP_PROFILE_MASK); |
| 3721 | |
| 3722 | flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK; |
| 3723 | |
| 3724 | /* 1) check that all other bits are zeroed */ |
| 3725 | if (flags & ~mask) |
| 3726 | return 0; |
| 3727 | |
| 3728 | /* 2) see if profile is reduced */ |
| 3729 | if (flags == 0) |
| 3730 | return !extended; /* "0" is valid for usual profiles */ |
| 3731 | |
| 3732 | /* true if exactly one bit set */ |
| 3733 | return (flags & (flags - 1)) == 0; |
| 3734 | } |
| 3735 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3736 | static inline int balance_need_close(struct btrfs_fs_info *fs_info) |
| 3737 | { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3738 | /* cancel requested || normal exit path */ |
| 3739 | return atomic_read(&fs_info->balance_cancel_req) || |
| 3740 | (atomic_read(&fs_info->balance_pause_req) == 0 && |
| 3741 | atomic_read(&fs_info->balance_cancel_req) == 0); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3742 | } |
| 3743 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3744 | static void __cancel_balance(struct btrfs_fs_info *fs_info) |
| 3745 | { |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3746 | int ret; |
| 3747 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3748 | unset_balance_control(fs_info); |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3749 | ret = del_balance_item(fs_info); |
Liu Bo | 0f788c5 | 2013-03-04 16:25:40 +0000 | [diff] [blame] | 3750 | if (ret) |
Anand Jain | 34d9700 | 2016-03-16 16:43:06 +0800 | [diff] [blame] | 3751 | btrfs_handle_fs_error(fs_info, ret, NULL); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 3752 | |
David Sterba | 171938e | 2017-03-28 14:44:21 +0200 | [diff] [blame] | 3753 | clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3754 | } |
| 3755 | |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3756 | /* Non-zero return value signifies invalidity */ |
| 3757 | static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg, |
| 3758 | u64 allowed) |
| 3759 | { |
| 3760 | return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3761 | (!alloc_profile_is_valid(bctl_arg->target, 1) || |
| 3762 | (bctl_arg->target & ~allowed))); |
| 3763 | } |
| 3764 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3765 | /* |
| 3766 | * Should be called with both balance and volume mutexes held |
| 3767 | */ |
| 3768 | int btrfs_balance(struct btrfs_balance_control *bctl, |
| 3769 | struct btrfs_ioctl_balance_args *bargs) |
| 3770 | { |
| 3771 | struct btrfs_fs_info *fs_info = bctl->fs_info; |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 3772 | u64 meta_target, data_target; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3773 | u64 allowed; |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3774 | int mixed = 0; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3775 | int ret; |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3776 | u64 num_devices; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3777 | unsigned seq; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3778 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3779 | if (btrfs_fs_closing(fs_info) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3780 | atomic_read(&fs_info->balance_pause_req) || |
| 3781 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3782 | ret = -EINVAL; |
| 3783 | goto out; |
| 3784 | } |
| 3785 | |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3786 | allowed = btrfs_super_incompat_flags(fs_info->super_copy); |
| 3787 | if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 3788 | mixed = 1; |
| 3789 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3790 | /* |
| 3791 | * In case of mixed groups both data and meta should be picked, |
| 3792 | * and identical options should be given for both of them. |
| 3793 | */ |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3794 | allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA; |
| 3795 | if (mixed && (bctl->flags & allowed)) { |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3796 | if (!(bctl->flags & BTRFS_BALANCE_DATA) || |
| 3797 | !(bctl->flags & BTRFS_BALANCE_METADATA) || |
| 3798 | memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3799 | btrfs_err(fs_info, |
| 3800 | "with mixed groups data and metadata balance options must be the same"); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3801 | ret = -EINVAL; |
| 3802 | goto out; |
| 3803 | } |
| 3804 | } |
| 3805 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3806 | num_devices = fs_info->fs_devices->num_devices; |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 3807 | btrfs_dev_replace_lock(&fs_info->dev_replace, 0); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3808 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) { |
| 3809 | BUG_ON(num_devices < 1); |
| 3810 | num_devices--; |
| 3811 | } |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 3812 | btrfs_dev_replace_unlock(&fs_info->dev_replace, 0); |
Austin S. Hemmelgarn | 88be159 | 2016-03-23 14:22:59 -0400 | [diff] [blame] | 3813 | allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP; |
| 3814 | if (num_devices > 1) |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3815 | allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1); |
Andreas Philipp | 8250dab | 2013-05-11 11:13:03 +0000 | [diff] [blame] | 3816 | if (num_devices > 2) |
| 3817 | allowed |= BTRFS_BLOCK_GROUP_RAID5; |
| 3818 | if (num_devices > 3) |
| 3819 | allowed |= (BTRFS_BLOCK_GROUP_RAID10 | |
| 3820 | BTRFS_BLOCK_GROUP_RAID6); |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3821 | if (validate_convert_profile(&bctl->data, allowed)) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3822 | btrfs_err(fs_info, |
| 3823 | "unable to start balance with target data profile %llu", |
| 3824 | bctl->data.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3825 | ret = -EINVAL; |
| 3826 | goto out; |
| 3827 | } |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3828 | if (validate_convert_profile(&bctl->meta, allowed)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3829 | btrfs_err(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3830 | "unable to start balance with target metadata profile %llu", |
| 3831 | bctl->meta.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3832 | ret = -EINVAL; |
| 3833 | goto out; |
| 3834 | } |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3835 | if (validate_convert_profile(&bctl->sys, allowed)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3836 | btrfs_err(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3837 | "unable to start balance with target system profile %llu", |
| 3838 | bctl->sys.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3839 | ret = -EINVAL; |
| 3840 | goto out; |
| 3841 | } |
| 3842 | |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3843 | /* allow to reduce meta or sys integrity only if force set */ |
| 3844 | allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3845 | BTRFS_BLOCK_GROUP_RAID10 | |
| 3846 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3847 | BTRFS_BLOCK_GROUP_RAID6; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3848 | do { |
| 3849 | seq = read_seqbegin(&fs_info->profiles_lock); |
| 3850 | |
| 3851 | if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3852 | (fs_info->avail_system_alloc_bits & allowed) && |
| 3853 | !(bctl->sys.target & allowed)) || |
| 3854 | ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3855 | (fs_info->avail_metadata_alloc_bits & allowed) && |
| 3856 | !(bctl->meta.target & allowed))) { |
| 3857 | if (bctl->flags & BTRFS_BALANCE_FORCE) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3858 | btrfs_info(fs_info, |
| 3859 | "force reducing metadata integrity"); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3860 | } else { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3861 | btrfs_err(fs_info, |
| 3862 | "balance will reduce metadata integrity, use force if you want this"); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3863 | ret = -EINVAL; |
| 3864 | goto out; |
| 3865 | } |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3866 | } |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3867 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3868 | |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 3869 | /* if we're not converting, the target field is uninitialized */ |
| 3870 | meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ? |
| 3871 | bctl->meta.target : fs_info->avail_metadata_alloc_bits; |
| 3872 | data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ? |
| 3873 | bctl->data.target : fs_info->avail_data_alloc_bits; |
| 3874 | if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) < |
| 3875 | btrfs_get_num_tolerated_disk_barrier_failures(data_target)) { |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 3876 | btrfs_warn(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3877 | "metadata profile 0x%llx has lower redundancy than data profile 0x%llx", |
Adam Borowski | 1450612 | 2017-03-07 23:34:44 +0100 | [diff] [blame] | 3878 | meta_target, data_target); |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 3879 | } |
| 3880 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3881 | ret = insert_balance_item(fs_info, bctl); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3882 | if (ret && ret != -EEXIST) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3883 | goto out; |
| 3884 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3885 | if (!(bctl->flags & BTRFS_BALANCE_RESUME)) { |
| 3886 | BUG_ON(ret == -EEXIST); |
| 3887 | set_balance_control(bctl); |
| 3888 | } else { |
| 3889 | BUG_ON(ret != -EEXIST); |
| 3890 | spin_lock(&fs_info->balance_lock); |
| 3891 | update_balance_args(bctl); |
| 3892 | spin_unlock(&fs_info->balance_lock); |
| 3893 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3894 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3895 | atomic_inc(&fs_info->balance_running); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3896 | mutex_unlock(&fs_info->balance_mutex); |
| 3897 | |
| 3898 | ret = __btrfs_balance(fs_info); |
| 3899 | |
| 3900 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3901 | atomic_dec(&fs_info->balance_running); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3902 | |
| 3903 | if (bargs) { |
| 3904 | memset(bargs, 0, sizeof(*bargs)); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3905 | update_ioctl_balance_args(fs_info, 0, bargs); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3906 | } |
| 3907 | |
Ilya Dryomov | 3a01aa7 | 2013-03-06 01:57:55 -0700 | [diff] [blame] | 3908 | if ((ret && ret != -ECANCELED && ret != -ENOSPC) || |
| 3909 | balance_need_close(fs_info)) { |
| 3910 | __cancel_balance(fs_info); |
| 3911 | } |
| 3912 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3913 | wake_up(&fs_info->balance_wait_q); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3914 | |
| 3915 | return ret; |
| 3916 | out: |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3917 | if (bctl->flags & BTRFS_BALANCE_RESUME) |
| 3918 | __cancel_balance(fs_info); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 3919 | else { |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3920 | kfree(bctl); |
David Sterba | 171938e | 2017-03-28 14:44:21 +0200 | [diff] [blame] | 3921 | clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 3922 | } |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3923 | return ret; |
| 3924 | } |
| 3925 | |
| 3926 | static int balance_kthread(void *data) |
| 3927 | { |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3928 | struct btrfs_fs_info *fs_info = data; |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3929 | int ret = 0; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3930 | |
| 3931 | mutex_lock(&fs_info->volume_mutex); |
| 3932 | mutex_lock(&fs_info->balance_mutex); |
| 3933 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3934 | if (fs_info->balance_ctl) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3935 | btrfs_info(fs_info, "continuing balance"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3936 | ret = btrfs_balance(fs_info->balance_ctl, NULL); |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3937 | } |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3938 | |
| 3939 | mutex_unlock(&fs_info->balance_mutex); |
| 3940 | mutex_unlock(&fs_info->volume_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3941 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3942 | return ret; |
| 3943 | } |
| 3944 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3945 | int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info) |
| 3946 | { |
| 3947 | struct task_struct *tsk; |
| 3948 | |
| 3949 | spin_lock(&fs_info->balance_lock); |
| 3950 | if (!fs_info->balance_ctl) { |
| 3951 | spin_unlock(&fs_info->balance_lock); |
| 3952 | return 0; |
| 3953 | } |
| 3954 | spin_unlock(&fs_info->balance_lock); |
| 3955 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 3956 | if (btrfs_test_opt(fs_info, SKIP_BALANCE)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3957 | btrfs_info(fs_info, "force skipping balance"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3958 | return 0; |
| 3959 | } |
| 3960 | |
| 3961 | tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance"); |
Sachin Kamat | cd63397 | 2013-07-15 16:52:18 +0530 | [diff] [blame] | 3962 | return PTR_ERR_OR_ZERO(tsk); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3963 | } |
| 3964 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3965 | int btrfs_recover_balance(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3966 | { |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3967 | struct btrfs_balance_control *bctl; |
| 3968 | struct btrfs_balance_item *item; |
| 3969 | struct btrfs_disk_balance_args disk_bargs; |
| 3970 | struct btrfs_path *path; |
| 3971 | struct extent_buffer *leaf; |
| 3972 | struct btrfs_key key; |
| 3973 | int ret; |
| 3974 | |
| 3975 | path = btrfs_alloc_path(); |
| 3976 | if (!path) |
| 3977 | return -ENOMEM; |
| 3978 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3979 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3980 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3981 | key.offset = 0; |
| 3982 | |
| 3983 | ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0); |
| 3984 | if (ret < 0) |
| 3985 | goto out; |
| 3986 | if (ret > 0) { /* ret = -ENOENT; */ |
| 3987 | ret = 0; |
| 3988 | goto out; |
| 3989 | } |
| 3990 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3991 | bctl = kzalloc(sizeof(*bctl), GFP_NOFS); |
| 3992 | if (!bctl) { |
| 3993 | ret = -ENOMEM; |
| 3994 | goto out; |
| 3995 | } |
| 3996 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3997 | leaf = path->nodes[0]; |
| 3998 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 3999 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4000 | bctl->fs_info = fs_info; |
| 4001 | bctl->flags = btrfs_balance_flags(leaf, item); |
| 4002 | bctl->flags |= BTRFS_BALANCE_RESUME; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4003 | |
| 4004 | btrfs_balance_data(leaf, item, &disk_bargs); |
| 4005 | btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs); |
| 4006 | btrfs_balance_meta(leaf, item, &disk_bargs); |
| 4007 | btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs); |
| 4008 | btrfs_balance_sys(leaf, item, &disk_bargs); |
| 4009 | btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs); |
| 4010 | |
David Sterba | 171938e | 2017-03-28 14:44:21 +0200 | [diff] [blame] | 4011 | 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] | 4012 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4013 | mutex_lock(&fs_info->volume_mutex); |
| 4014 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4015 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 4016 | set_balance_control(bctl); |
| 4017 | |
| 4018 | mutex_unlock(&fs_info->balance_mutex); |
| 4019 | mutex_unlock(&fs_info->volume_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4020 | out: |
| 4021 | btrfs_free_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4022 | return ret; |
| 4023 | } |
| 4024 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4025 | int btrfs_pause_balance(struct btrfs_fs_info *fs_info) |
| 4026 | { |
| 4027 | int ret = 0; |
| 4028 | |
| 4029 | mutex_lock(&fs_info->balance_mutex); |
| 4030 | if (!fs_info->balance_ctl) { |
| 4031 | mutex_unlock(&fs_info->balance_mutex); |
| 4032 | return -ENOTCONN; |
| 4033 | } |
| 4034 | |
| 4035 | if (atomic_read(&fs_info->balance_running)) { |
| 4036 | atomic_inc(&fs_info->balance_pause_req); |
| 4037 | mutex_unlock(&fs_info->balance_mutex); |
| 4038 | |
| 4039 | wait_event(fs_info->balance_wait_q, |
| 4040 | atomic_read(&fs_info->balance_running) == 0); |
| 4041 | |
| 4042 | mutex_lock(&fs_info->balance_mutex); |
| 4043 | /* we are good with balance_ctl ripped off from under us */ |
| 4044 | BUG_ON(atomic_read(&fs_info->balance_running)); |
| 4045 | atomic_dec(&fs_info->balance_pause_req); |
| 4046 | } else { |
| 4047 | ret = -ENOTCONN; |
| 4048 | } |
| 4049 | |
| 4050 | mutex_unlock(&fs_info->balance_mutex); |
| 4051 | return ret; |
| 4052 | } |
| 4053 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4054 | int btrfs_cancel_balance(struct btrfs_fs_info *fs_info) |
| 4055 | { |
Ilya Dryomov | e649e58 | 2013-10-10 20:40:21 +0300 | [diff] [blame] | 4056 | if (fs_info->sb->s_flags & MS_RDONLY) |
| 4057 | return -EROFS; |
| 4058 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 4059 | mutex_lock(&fs_info->balance_mutex); |
| 4060 | if (!fs_info->balance_ctl) { |
| 4061 | mutex_unlock(&fs_info->balance_mutex); |
| 4062 | return -ENOTCONN; |
| 4063 | } |
| 4064 | |
| 4065 | atomic_inc(&fs_info->balance_cancel_req); |
| 4066 | /* |
| 4067 | * if we are running just wait and return, balance item is |
| 4068 | * deleted in btrfs_balance in this case |
| 4069 | */ |
| 4070 | if (atomic_read(&fs_info->balance_running)) { |
| 4071 | mutex_unlock(&fs_info->balance_mutex); |
| 4072 | wait_event(fs_info->balance_wait_q, |
| 4073 | atomic_read(&fs_info->balance_running) == 0); |
| 4074 | mutex_lock(&fs_info->balance_mutex); |
| 4075 | } else { |
| 4076 | /* __cancel_balance needs volume_mutex */ |
| 4077 | mutex_unlock(&fs_info->balance_mutex); |
| 4078 | mutex_lock(&fs_info->volume_mutex); |
| 4079 | mutex_lock(&fs_info->balance_mutex); |
| 4080 | |
| 4081 | if (fs_info->balance_ctl) |
| 4082 | __cancel_balance(fs_info); |
| 4083 | |
| 4084 | mutex_unlock(&fs_info->volume_mutex); |
| 4085 | } |
| 4086 | |
| 4087 | BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running)); |
| 4088 | atomic_dec(&fs_info->balance_cancel_req); |
| 4089 | mutex_unlock(&fs_info->balance_mutex); |
| 4090 | return 0; |
| 4091 | } |
| 4092 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4093 | static int btrfs_uuid_scan_kthread(void *data) |
| 4094 | { |
| 4095 | struct btrfs_fs_info *fs_info = data; |
| 4096 | struct btrfs_root *root = fs_info->tree_root; |
| 4097 | struct btrfs_key key; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4098 | struct btrfs_path *path = NULL; |
| 4099 | int ret = 0; |
| 4100 | struct extent_buffer *eb; |
| 4101 | int slot; |
| 4102 | struct btrfs_root_item root_item; |
| 4103 | u32 item_size; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4104 | struct btrfs_trans_handle *trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4105 | |
| 4106 | path = btrfs_alloc_path(); |
| 4107 | if (!path) { |
| 4108 | ret = -ENOMEM; |
| 4109 | goto out; |
| 4110 | } |
| 4111 | |
| 4112 | key.objectid = 0; |
| 4113 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4114 | key.offset = 0; |
| 4115 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4116 | while (1) { |
Filipe David Borba Manana | 6174d3c | 2013-10-01 16:13:42 +0100 | [diff] [blame] | 4117 | ret = btrfs_search_forward(root, &key, path, 0); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4118 | if (ret) { |
| 4119 | if (ret > 0) |
| 4120 | ret = 0; |
| 4121 | break; |
| 4122 | } |
| 4123 | |
| 4124 | if (key.type != BTRFS_ROOT_ITEM_KEY || |
| 4125 | (key.objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 4126 | key.objectid != BTRFS_FS_TREE_OBJECTID) || |
| 4127 | key.objectid > BTRFS_LAST_FREE_OBJECTID) |
| 4128 | goto skip; |
| 4129 | |
| 4130 | eb = path->nodes[0]; |
| 4131 | slot = path->slots[0]; |
| 4132 | item_size = btrfs_item_size_nr(eb, slot); |
| 4133 | if (item_size < sizeof(root_item)) |
| 4134 | goto skip; |
| 4135 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4136 | read_extent_buffer(eb, &root_item, |
| 4137 | btrfs_item_ptr_offset(eb, slot), |
| 4138 | (int)sizeof(root_item)); |
| 4139 | if (btrfs_root_refs(&root_item) == 0) |
| 4140 | goto skip; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4141 | |
| 4142 | if (!btrfs_is_empty_uuid(root_item.uuid) || |
| 4143 | !btrfs_is_empty_uuid(root_item.received_uuid)) { |
| 4144 | if (trans) |
| 4145 | goto update_tree; |
| 4146 | |
| 4147 | btrfs_release_path(path); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4148 | /* |
| 4149 | * 1 - subvol uuid item |
| 4150 | * 1 - received_subvol uuid item |
| 4151 | */ |
| 4152 | trans = btrfs_start_transaction(fs_info->uuid_root, 2); |
| 4153 | if (IS_ERR(trans)) { |
| 4154 | ret = PTR_ERR(trans); |
| 4155 | break; |
| 4156 | } |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4157 | continue; |
| 4158 | } else { |
| 4159 | goto skip; |
| 4160 | } |
| 4161 | update_tree: |
| 4162 | if (!btrfs_is_empty_uuid(root_item.uuid)) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4163 | ret = btrfs_uuid_tree_add(trans, fs_info, |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4164 | root_item.uuid, |
| 4165 | BTRFS_UUID_KEY_SUBVOL, |
| 4166 | key.objectid); |
| 4167 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4168 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4169 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4170 | break; |
| 4171 | } |
| 4172 | } |
| 4173 | |
| 4174 | if (!btrfs_is_empty_uuid(root_item.received_uuid)) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4175 | ret = btrfs_uuid_tree_add(trans, fs_info, |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4176 | root_item.received_uuid, |
| 4177 | BTRFS_UUID_KEY_RECEIVED_SUBVOL, |
| 4178 | key.objectid); |
| 4179 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4180 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4181 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4182 | break; |
| 4183 | } |
| 4184 | } |
| 4185 | |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4186 | skip: |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4187 | if (trans) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4188 | ret = btrfs_end_transaction(trans); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4189 | trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4190 | if (ret) |
| 4191 | break; |
| 4192 | } |
| 4193 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4194 | btrfs_release_path(path); |
| 4195 | if (key.offset < (u64)-1) { |
| 4196 | key.offset++; |
| 4197 | } else if (key.type < BTRFS_ROOT_ITEM_KEY) { |
| 4198 | key.offset = 0; |
| 4199 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4200 | } else if (key.objectid < (u64)-1) { |
| 4201 | key.offset = 0; |
| 4202 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4203 | key.objectid++; |
| 4204 | } else { |
| 4205 | break; |
| 4206 | } |
| 4207 | cond_resched(); |
| 4208 | } |
| 4209 | |
| 4210 | out: |
| 4211 | btrfs_free_path(path); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4212 | if (trans && !IS_ERR(trans)) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4213 | btrfs_end_transaction(trans); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4214 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4215 | btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4216 | else |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 4217 | set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4218 | up(&fs_info->uuid_tree_rescan_sem); |
| 4219 | return 0; |
| 4220 | } |
| 4221 | |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4222 | /* |
| 4223 | * Callback for btrfs_uuid_tree_iterate(). |
| 4224 | * returns: |
| 4225 | * 0 check succeeded, the entry is not outdated. |
Adam Buchbinder | bb7ab3b | 2016-03-04 11:23:12 -0800 | [diff] [blame] | 4226 | * < 0 if an error occurred. |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4227 | * > 0 if the check failed, which means the caller shall remove the entry. |
| 4228 | */ |
| 4229 | static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info, |
| 4230 | u8 *uuid, u8 type, u64 subid) |
| 4231 | { |
| 4232 | struct btrfs_key key; |
| 4233 | int ret = 0; |
| 4234 | struct btrfs_root *subvol_root; |
| 4235 | |
| 4236 | if (type != BTRFS_UUID_KEY_SUBVOL && |
| 4237 | type != BTRFS_UUID_KEY_RECEIVED_SUBVOL) |
| 4238 | goto out; |
| 4239 | |
| 4240 | key.objectid = subid; |
| 4241 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4242 | key.offset = (u64)-1; |
| 4243 | subvol_root = btrfs_read_fs_root_no_name(fs_info, &key); |
| 4244 | if (IS_ERR(subvol_root)) { |
| 4245 | ret = PTR_ERR(subvol_root); |
| 4246 | if (ret == -ENOENT) |
| 4247 | ret = 1; |
| 4248 | goto out; |
| 4249 | } |
| 4250 | |
| 4251 | switch (type) { |
| 4252 | case BTRFS_UUID_KEY_SUBVOL: |
| 4253 | if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE)) |
| 4254 | ret = 1; |
| 4255 | break; |
| 4256 | case BTRFS_UUID_KEY_RECEIVED_SUBVOL: |
| 4257 | if (memcmp(uuid, subvol_root->root_item.received_uuid, |
| 4258 | BTRFS_UUID_SIZE)) |
| 4259 | ret = 1; |
| 4260 | break; |
| 4261 | } |
| 4262 | |
| 4263 | out: |
| 4264 | return ret; |
| 4265 | } |
| 4266 | |
| 4267 | static int btrfs_uuid_rescan_kthread(void *data) |
| 4268 | { |
| 4269 | struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data; |
| 4270 | int ret; |
| 4271 | |
| 4272 | /* |
| 4273 | * 1st step is to iterate through the existing UUID tree and |
| 4274 | * to delete all entries that contain outdated data. |
| 4275 | * 2nd step is to add all missing entries to the UUID tree. |
| 4276 | */ |
| 4277 | ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry); |
| 4278 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4279 | btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4280 | up(&fs_info->uuid_tree_rescan_sem); |
| 4281 | return ret; |
| 4282 | } |
| 4283 | return btrfs_uuid_scan_kthread(data); |
| 4284 | } |
| 4285 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4286 | int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4287 | { |
| 4288 | struct btrfs_trans_handle *trans; |
| 4289 | struct btrfs_root *tree_root = fs_info->tree_root; |
| 4290 | struct btrfs_root *uuid_root; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4291 | struct task_struct *task; |
| 4292 | int ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4293 | |
| 4294 | /* |
| 4295 | * 1 - root node |
| 4296 | * 1 - root item |
| 4297 | */ |
| 4298 | trans = btrfs_start_transaction(tree_root, 2); |
| 4299 | if (IS_ERR(trans)) |
| 4300 | return PTR_ERR(trans); |
| 4301 | |
| 4302 | uuid_root = btrfs_create_tree(trans, fs_info, |
| 4303 | BTRFS_UUID_TREE_OBJECTID); |
| 4304 | if (IS_ERR(uuid_root)) { |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4305 | ret = PTR_ERR(uuid_root); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 4306 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4307 | btrfs_end_transaction(trans); |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4308 | return ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4309 | } |
| 4310 | |
| 4311 | fs_info->uuid_root = uuid_root; |
| 4312 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4313 | ret = btrfs_commit_transaction(trans); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4314 | if (ret) |
| 4315 | return ret; |
| 4316 | |
| 4317 | down(&fs_info->uuid_tree_rescan_sem); |
| 4318 | task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid"); |
| 4319 | if (IS_ERR(task)) { |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4320 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4321 | btrfs_warn(fs_info, "failed to start uuid_scan task"); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4322 | up(&fs_info->uuid_tree_rescan_sem); |
| 4323 | return PTR_ERR(task); |
| 4324 | } |
| 4325 | |
| 4326 | return 0; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4327 | } |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4328 | |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4329 | int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4330 | { |
| 4331 | struct task_struct *task; |
| 4332 | |
| 4333 | down(&fs_info->uuid_tree_rescan_sem); |
| 4334 | task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid"); |
| 4335 | if (IS_ERR(task)) { |
| 4336 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4337 | btrfs_warn(fs_info, "failed to start uuid_rescan task"); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4338 | up(&fs_info->uuid_tree_rescan_sem); |
| 4339 | return PTR_ERR(task); |
| 4340 | } |
| 4341 | |
| 4342 | return 0; |
| 4343 | } |
| 4344 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4345 | /* |
| 4346 | * shrinking a device means finding all of the device extents past |
| 4347 | * the new size, and then following the back refs to the chunks. |
| 4348 | * The chunk relocation code actually frees the device extent |
| 4349 | */ |
| 4350 | int btrfs_shrink_device(struct btrfs_device *device, u64 new_size) |
| 4351 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4352 | struct btrfs_fs_info *fs_info = device->fs_info; |
| 4353 | struct btrfs_root *root = fs_info->dev_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4354 | struct btrfs_trans_handle *trans; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4355 | struct btrfs_dev_extent *dev_extent = NULL; |
| 4356 | struct btrfs_path *path; |
| 4357 | u64 length; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4358 | u64 chunk_offset; |
| 4359 | int ret; |
| 4360 | int slot; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4361 | int failed = 0; |
| 4362 | bool retried = false; |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4363 | bool checked_pending_chunks = false; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4364 | struct extent_buffer *l; |
| 4365 | struct btrfs_key key; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4366 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4367 | u64 old_total = btrfs_super_total_bytes(super_copy); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4368 | u64 old_size = btrfs_device_get_total_bytes(device); |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4369 | u64 diff; |
| 4370 | |
| 4371 | new_size = round_down(new_size, fs_info->sectorsize); |
Nikolay Borisov | 0e4324a | 2017-07-21 11:28:24 +0300 | [diff] [blame] | 4372 | diff = round_down(old_size - new_size, fs_info->sectorsize); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4373 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 4374 | if (device->is_tgtdev_for_dev_replace) |
| 4375 | return -EINVAL; |
| 4376 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4377 | path = btrfs_alloc_path(); |
| 4378 | if (!path) |
| 4379 | return -ENOMEM; |
| 4380 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 4381 | path->reada = READA_FORWARD; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4382 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4383 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 4384 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4385 | btrfs_device_set_total_bytes(device, new_size); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4386 | if (device->writeable) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4387 | device->fs_devices->total_rw_bytes -= diff; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4388 | atomic64_sub(diff, &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4389 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4390 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4391 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4392 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4393 | key.objectid = device->devid; |
| 4394 | key.offset = (u64)-1; |
| 4395 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 4396 | |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4397 | do { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4398 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4399 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4400 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4401 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4402 | goto done; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4403 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4404 | |
| 4405 | ret = btrfs_previous_item(root, path, 0, key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4406 | if (ret) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4407 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4408 | if (ret < 0) |
| 4409 | goto done; |
| 4410 | if (ret) { |
| 4411 | ret = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4412 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4413 | break; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4414 | } |
| 4415 | |
| 4416 | l = path->nodes[0]; |
| 4417 | slot = path->slots[0]; |
| 4418 | btrfs_item_key_to_cpu(l, &key, path->slots[0]); |
| 4419 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4420 | if (key.objectid != device->devid) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4421 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4422 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4423 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4424 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4425 | |
| 4426 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
| 4427 | length = btrfs_dev_extent_length(l, dev_extent); |
| 4428 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4429 | if (key.offset + length <= new_size) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4430 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4431 | btrfs_release_path(path); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4432 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4433 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4434 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4435 | chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4436 | btrfs_release_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4437 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4438 | ret = btrfs_relocate_chunk(fs_info, chunk_offset); |
| 4439 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4440 | if (ret && ret != -ENOSPC) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4441 | goto done; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4442 | if (ret == -ENOSPC) |
| 4443 | failed++; |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4444 | } while (key.offset-- > 0); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4445 | |
| 4446 | if (failed && !retried) { |
| 4447 | failed = 0; |
| 4448 | retried = true; |
| 4449 | goto again; |
| 4450 | } else if (failed && retried) { |
| 4451 | ret = -ENOSPC; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4452 | goto done; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4453 | } |
| 4454 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4455 | /* Shrinking succeeded, else we would be at "done". */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4456 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 4457 | if (IS_ERR(trans)) { |
| 4458 | ret = PTR_ERR(trans); |
| 4459 | goto done; |
| 4460 | } |
| 4461 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4462 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4463 | |
| 4464 | /* |
| 4465 | * We checked in the above loop all device extents that were already in |
| 4466 | * the device tree. However before we have updated the device's |
| 4467 | * total_bytes to the new size, we might have had chunk allocations that |
| 4468 | * have not complete yet (new block groups attached to transaction |
| 4469 | * handles), and therefore their device extents were not yet in the |
| 4470 | * device tree and we missed them in the loop above. So if we have any |
| 4471 | * pending chunk using a device extent that overlaps the device range |
| 4472 | * that we can not use anymore, commit the current transaction and |
| 4473 | * repeat the search on the device tree - this way we guarantee we will |
| 4474 | * not have chunks using device extents that end beyond 'new_size'. |
| 4475 | */ |
| 4476 | if (!checked_pending_chunks) { |
| 4477 | u64 start = new_size; |
| 4478 | u64 len = old_size - new_size; |
| 4479 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 4480 | if (contains_pending_extent(trans->transaction, device, |
| 4481 | &start, len)) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4482 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4483 | checked_pending_chunks = true; |
| 4484 | failed = 0; |
| 4485 | retried = false; |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4486 | ret = btrfs_commit_transaction(trans); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4487 | if (ret) |
| 4488 | goto done; |
| 4489 | goto again; |
| 4490 | } |
| 4491 | } |
| 4492 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4493 | btrfs_device_set_disk_total_bytes(device, new_size); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 4494 | if (list_empty(&device->resized_list)) |
| 4495 | list_add_tail(&device->resized_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4496 | &fs_info->fs_devices->resized_devices); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4497 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4498 | WARN_ON(diff > old_total); |
Nikolay Borisov | 7dfb8be | 2017-06-16 14:39:20 +0300 | [diff] [blame] | 4499 | btrfs_set_super_total_bytes(super_copy, |
| 4500 | round_down(old_total - diff, fs_info->sectorsize)); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4501 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 4502 | |
| 4503 | /* Now btrfs_update_device() will change the on-disk size. */ |
| 4504 | ret = btrfs_update_device(trans, device); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4505 | btrfs_end_transaction(trans); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4506 | done: |
| 4507 | btrfs_free_path(path); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4508 | if (ret) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4509 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4510 | btrfs_device_set_total_bytes(device, old_size); |
| 4511 | if (device->writeable) |
| 4512 | device->fs_devices->total_rw_bytes += diff; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4513 | atomic64_add(diff, &fs_info->free_chunk_space); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4514 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4515 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4516 | return ret; |
| 4517 | } |
| 4518 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4519 | static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4520 | struct btrfs_key *key, |
| 4521 | struct btrfs_chunk *chunk, int item_size) |
| 4522 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4523 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4524 | struct btrfs_disk_key disk_key; |
| 4525 | u32 array_size; |
| 4526 | u8 *ptr; |
| 4527 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4528 | mutex_lock(&fs_info->chunk_mutex); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4529 | array_size = btrfs_super_sys_array_size(super_copy); |
Gui Hecheng | 5f43f86 | 2014-04-21 20:13:11 +0800 | [diff] [blame] | 4530 | if (array_size + item_size + sizeof(disk_key) |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4531 | > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) { |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4532 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4533 | return -EFBIG; |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4534 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4535 | |
| 4536 | ptr = super_copy->sys_chunk_array + array_size; |
| 4537 | btrfs_cpu_key_to_disk(&disk_key, key); |
| 4538 | memcpy(ptr, &disk_key, sizeof(disk_key)); |
| 4539 | ptr += sizeof(disk_key); |
| 4540 | memcpy(ptr, chunk, item_size); |
| 4541 | item_size += sizeof(disk_key); |
| 4542 | btrfs_set_super_sys_array_size(super_copy, array_size + item_size); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 4543 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4544 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4545 | return 0; |
| 4546 | } |
| 4547 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4548 | /* |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4549 | * sort the devices in descending order by max_avail, total_avail |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4550 | */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4551 | static int btrfs_cmp_device_info(const void *a, const void *b) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4552 | { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4553 | const struct btrfs_device_info *di_a = a; |
| 4554 | const struct btrfs_device_info *di_b = b; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4555 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4556 | if (di_a->max_avail > di_b->max_avail) |
| 4557 | return -1; |
| 4558 | if (di_a->max_avail < di_b->max_avail) |
| 4559 | return 1; |
| 4560 | if (di_a->total_avail > di_b->total_avail) |
| 4561 | return -1; |
| 4562 | if (di_a->total_avail < di_b->total_avail) |
| 4563 | return 1; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4564 | return 0; |
| 4565 | } |
| 4566 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4567 | static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type) |
| 4568 | { |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 4569 | if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK)) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4570 | return; |
| 4571 | |
Miao Xie | ceda086 | 2013-04-11 10:30:16 +0000 | [diff] [blame] | 4572 | btrfs_set_fs_incompat(info, RAID56); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4573 | } |
| 4574 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 4575 | #define BTRFS_MAX_DEVS(r) ((BTRFS_MAX_ITEM_SIZE(r->fs_info) \ |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4576 | - sizeof(struct btrfs_chunk)) \ |
| 4577 | / sizeof(struct btrfs_stripe) + 1) |
| 4578 | |
| 4579 | #define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \ |
| 4580 | - 2 * sizeof(struct btrfs_disk_key) \ |
| 4581 | - 2 * sizeof(struct btrfs_chunk)) \ |
| 4582 | / sizeof(struct btrfs_stripe) + 1) |
| 4583 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4584 | static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans, |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 4585 | u64 start, u64 type) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4586 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4587 | struct btrfs_fs_info *info = trans->fs_info; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4588 | struct btrfs_fs_devices *fs_devices = info->fs_devices; |
Nikolay Borisov | ebcc930 | 2017-06-27 10:02:24 +0300 | [diff] [blame] | 4589 | struct btrfs_device *device; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4590 | struct map_lookup *map = NULL; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4591 | struct extent_map_tree *em_tree; |
| 4592 | struct extent_map *em; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4593 | struct btrfs_device_info *devices_info = NULL; |
| 4594 | u64 total_avail; |
| 4595 | int num_stripes; /* total number of stripes to allocate */ |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4596 | int data_stripes; /* number of stripes that count for |
| 4597 | block group size */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4598 | int sub_stripes; /* sub_stripes info for map */ |
| 4599 | int dev_stripes; /* stripes per dev */ |
| 4600 | int devs_max; /* max devs to use */ |
| 4601 | int devs_min; /* min devs needed */ |
| 4602 | int devs_increment; /* ndevs has to be a multiple of this */ |
| 4603 | int ncopies; /* how many copies to data has */ |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4604 | int ret; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4605 | u64 max_stripe_size; |
| 4606 | u64 max_chunk_size; |
| 4607 | u64 stripe_size; |
| 4608 | u64 num_bytes; |
| 4609 | int ndevs; |
| 4610 | int i; |
| 4611 | int j; |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4612 | int index; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4613 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4614 | BUG_ON(!alloc_profile_is_valid(type, 0)); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4615 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4616 | if (list_empty(&fs_devices->alloc_list)) |
| 4617 | return -ENOSPC; |
| 4618 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4619 | index = __get_raid_index(type); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4620 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4621 | sub_stripes = btrfs_raid_array[index].sub_stripes; |
| 4622 | dev_stripes = btrfs_raid_array[index].dev_stripes; |
| 4623 | devs_max = btrfs_raid_array[index].devs_max; |
| 4624 | devs_min = btrfs_raid_array[index].devs_min; |
| 4625 | devs_increment = btrfs_raid_array[index].devs_increment; |
| 4626 | ncopies = btrfs_raid_array[index].ncopies; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4627 | |
| 4628 | if (type & BTRFS_BLOCK_GROUP_DATA) { |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4629 | max_stripe_size = SZ_1G; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4630 | max_chunk_size = 10 * max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4631 | if (!devs_max) |
| 4632 | devs_max = BTRFS_MAX_DEVS(info->chunk_root); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4633 | } else if (type & BTRFS_BLOCK_GROUP_METADATA) { |
Chris Mason | 1100373 | 2012-01-06 15:47:38 -0500 | [diff] [blame] | 4634 | /* for larger filesystems, use larger metadata chunks */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4635 | if (fs_devices->total_rw_bytes > 50ULL * SZ_1G) |
| 4636 | max_stripe_size = SZ_1G; |
Chris Mason | 1100373 | 2012-01-06 15:47:38 -0500 | [diff] [blame] | 4637 | else |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4638 | max_stripe_size = SZ_256M; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4639 | max_chunk_size = max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4640 | if (!devs_max) |
| 4641 | devs_max = BTRFS_MAX_DEVS(info->chunk_root); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4642 | } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4643 | max_stripe_size = SZ_32M; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4644 | max_chunk_size = 2 * max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4645 | if (!devs_max) |
| 4646 | devs_max = BTRFS_MAX_DEVS_SYS_CHUNK; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4647 | } else { |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 4648 | btrfs_err(info, "invalid chunk type 0x%llx requested", |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4649 | type); |
| 4650 | BUG_ON(1); |
| 4651 | } |
| 4652 | |
| 4653 | /* we don't want a chunk larger than 10% of writeable space */ |
| 4654 | max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1), |
| 4655 | max_chunk_size); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4656 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 4657 | devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info), |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4658 | GFP_NOFS); |
| 4659 | if (!devices_info) |
| 4660 | return -ENOMEM; |
| 4661 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4662 | /* |
| 4663 | * in the first pass through the devices list, we gather information |
| 4664 | * about the available holes on each device. |
| 4665 | */ |
| 4666 | ndevs = 0; |
Nikolay Borisov | ebcc930 | 2017-06-27 10:02:24 +0300 | [diff] [blame] | 4667 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4668 | u64 max_avail; |
| 4669 | u64 dev_offset; |
| 4670 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4671 | if (!device->writeable) { |
Julia Lawall | 31b1a2b | 2012-11-03 10:58:34 +0000 | [diff] [blame] | 4672 | WARN(1, KERN_ERR |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4673 | "BTRFS: read-only device in alloc_list\n"); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4674 | continue; |
| 4675 | } |
| 4676 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 4677 | if (!device->in_fs_metadata || |
| 4678 | device->is_tgtdev_for_dev_replace) |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4679 | continue; |
| 4680 | |
| 4681 | if (device->total_bytes > device->bytes_used) |
| 4682 | total_avail = device->total_bytes - device->bytes_used; |
| 4683 | else |
| 4684 | total_avail = 0; |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 4685 | |
| 4686 | /* If there is no space on this device, skip it. */ |
| 4687 | if (total_avail == 0) |
| 4688 | continue; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4689 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4690 | ret = find_free_dev_extent(trans, device, |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4691 | max_stripe_size * dev_stripes, |
| 4692 | &dev_offset, &max_avail); |
| 4693 | if (ret && ret != -ENOSPC) |
| 4694 | goto error; |
| 4695 | |
| 4696 | if (ret == 0) |
| 4697 | max_avail = max_stripe_size * dev_stripes; |
| 4698 | |
| 4699 | if (max_avail < BTRFS_STRIPE_LEN * dev_stripes) |
| 4700 | continue; |
| 4701 | |
Eric Sandeen | 063d006 | 2013-01-31 00:55:01 +0000 | [diff] [blame] | 4702 | if (ndevs == fs_devices->rw_devices) { |
| 4703 | WARN(1, "%s: found more than %llu devices\n", |
| 4704 | __func__, fs_devices->rw_devices); |
| 4705 | break; |
| 4706 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4707 | devices_info[ndevs].dev_offset = dev_offset; |
| 4708 | devices_info[ndevs].max_avail = max_avail; |
| 4709 | devices_info[ndevs].total_avail = total_avail; |
| 4710 | devices_info[ndevs].dev = device; |
| 4711 | ++ndevs; |
| 4712 | } |
| 4713 | |
| 4714 | /* |
| 4715 | * now sort the devices by hole size / available space |
| 4716 | */ |
| 4717 | sort(devices_info, ndevs, sizeof(struct btrfs_device_info), |
| 4718 | btrfs_cmp_device_info, NULL); |
| 4719 | |
| 4720 | /* round down to number of usable stripes */ |
Nikolay Borisov | e5600fd | 2017-06-27 10:02:25 +0300 | [diff] [blame] | 4721 | ndevs = round_down(ndevs, devs_increment); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4722 | |
| 4723 | if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) { |
| 4724 | ret = -ENOSPC; |
| 4725 | goto error; |
| 4726 | } |
| 4727 | |
Nikolay Borisov | f148ef4 | 2017-06-27 10:02:26 +0300 | [diff] [blame] | 4728 | ndevs = min(ndevs, devs_max); |
| 4729 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4730 | /* |
| 4731 | * the primary goal is to maximize the number of stripes, so use as many |
| 4732 | * devices as possible, even if the stripes are not maximum sized. |
| 4733 | */ |
| 4734 | stripe_size = devices_info[ndevs-1].max_avail; |
| 4735 | num_stripes = ndevs * dev_stripes; |
| 4736 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4737 | /* |
| 4738 | * this will have to be fixed for RAID1 and RAID10 over |
| 4739 | * more drives |
| 4740 | */ |
| 4741 | data_stripes = num_stripes / ncopies; |
| 4742 | |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4743 | if (type & BTRFS_BLOCK_GROUP_RAID5) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4744 | data_stripes = num_stripes - 1; |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4745 | |
| 4746 | if (type & BTRFS_BLOCK_GROUP_RAID6) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4747 | data_stripes = num_stripes - 2; |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4748 | |
| 4749 | /* |
| 4750 | * Use the number of data stripes to figure out how big this chunk |
| 4751 | * is really going to be in terms of logical address space, |
| 4752 | * and compare that answer with the max chunk size |
| 4753 | */ |
| 4754 | if (stripe_size * data_stripes > max_chunk_size) { |
| 4755 | u64 mask = (1ULL << 24) - 1; |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 4756 | |
| 4757 | stripe_size = div_u64(max_chunk_size, data_stripes); |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4758 | |
| 4759 | /* bump the answer up to a 16MB boundary */ |
| 4760 | stripe_size = (stripe_size + mask) & ~mask; |
| 4761 | |
| 4762 | /* but don't go higher than the limits we found |
| 4763 | * while searching for free extents |
| 4764 | */ |
| 4765 | if (stripe_size > devices_info[ndevs-1].max_avail) |
| 4766 | stripe_size = devices_info[ndevs-1].max_avail; |
| 4767 | } |
| 4768 | |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 4769 | stripe_size = div_u64(stripe_size, dev_stripes); |
Ilya Dryomov | 37db63a | 2012-04-13 17:05:08 +0300 | [diff] [blame] | 4770 | |
| 4771 | /* align to BTRFS_STRIPE_LEN */ |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4772 | stripe_size = round_down(stripe_size, BTRFS_STRIPE_LEN); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4773 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4774 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
| 4775 | if (!map) { |
| 4776 | ret = -ENOMEM; |
| 4777 | goto error; |
| 4778 | } |
| 4779 | map->num_stripes = num_stripes; |
Chris Mason | 9b3f68b | 2008-04-18 10:29:51 -0400 | [diff] [blame] | 4780 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4781 | for (i = 0; i < ndevs; ++i) { |
| 4782 | for (j = 0; j < dev_stripes; ++j) { |
| 4783 | int s = i * dev_stripes + j; |
| 4784 | map->stripes[s].dev = devices_info[i].dev; |
| 4785 | map->stripes[s].physical = devices_info[i].dev_offset + |
| 4786 | j * stripe_size; |
Chris Mason | a40a90a | 2008-04-18 11:55:51 -0400 | [diff] [blame] | 4787 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4788 | } |
Nikolay Borisov | 500ceed | 2017-07-14 09:55:41 +0300 | [diff] [blame] | 4789 | map->stripe_len = BTRFS_STRIPE_LEN; |
| 4790 | map->io_align = BTRFS_STRIPE_LEN; |
| 4791 | map->io_width = BTRFS_STRIPE_LEN; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4792 | map->type = type; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 4793 | map->sub_stripes = sub_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4794 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4795 | num_bytes = stripe_size * data_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4796 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4797 | trace_btrfs_chunk_alloc(info, map, start, num_bytes); |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4798 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 4799 | em = alloc_extent_map(); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4800 | if (!em) { |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 4801 | kfree(map); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4802 | ret = -ENOMEM; |
| 4803 | goto error; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4804 | } |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 4805 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 4806 | em->map_lookup = map; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4807 | em->start = start; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4808 | em->len = num_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4809 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4810 | em->block_len = em->len; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4811 | em->orig_block_len = stripe_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4812 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4813 | em_tree = &info->mapping_tree.map_tree; |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4814 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 4815 | ret = add_extent_mapping(em_tree, em, 0); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4816 | if (!ret) { |
| 4817 | list_add_tail(&em->list, &trans->transaction->pending_chunks); |
Elena Reshetova | 490b54d | 2017-03-03 10:55:12 +0200 | [diff] [blame] | 4818 | refcount_inc(&em->refs); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4819 | } |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4820 | write_unlock(&em_tree->lock); |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4821 | if (ret) { |
| 4822 | free_extent_map(em); |
Mark Fasheh | 1dd4602 | 2011-09-08 17:29:00 -0700 | [diff] [blame] | 4823 | goto error; |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4824 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4825 | |
Nikolay Borisov | 0174484 | 2017-07-27 14:22:11 +0300 | [diff] [blame] | 4826 | ret = btrfs_make_block_group(trans, info, 0, type, start, num_bytes); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4827 | if (ret) |
| 4828 | goto error_del_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4829 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4830 | for (i = 0; i < map->num_stripes; i++) { |
| 4831 | num_bytes = map->stripes[i].dev->bytes_used + stripe_size; |
| 4832 | btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes); |
| 4833 | } |
Miao Xie | 43530c4 | 2014-09-03 21:35:36 +0800 | [diff] [blame] | 4834 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4835 | atomic64_sub(stripe_size * map->num_stripes, &info->free_chunk_space); |
Miao Xie | 1c11618 | 2014-09-03 21:35:37 +0800 | [diff] [blame] | 4836 | |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4837 | free_extent_map(em); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4838 | check_raid56_incompat_flag(info, type); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4839 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4840 | kfree(devices_info); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4841 | return 0; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4842 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4843 | error_del_extent: |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4844 | write_lock(&em_tree->lock); |
| 4845 | remove_extent_mapping(em_tree, em); |
| 4846 | write_unlock(&em_tree->lock); |
| 4847 | |
| 4848 | /* One for our allocation */ |
| 4849 | free_extent_map(em); |
| 4850 | /* One for the tree reference */ |
| 4851 | free_extent_map(em); |
Filipe Manana | 495e64f | 2014-12-02 18:07:30 +0000 | [diff] [blame] | 4852 | /* One for the pending_chunks list reference */ |
| 4853 | free_extent_map(em); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4854 | error: |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4855 | kfree(devices_info); |
| 4856 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4857 | } |
| 4858 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4859 | int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4860 | struct btrfs_fs_info *fs_info, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4861 | u64 chunk_offset, u64 chunk_size) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4862 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 4863 | struct btrfs_root *extent_root = fs_info->extent_root; |
| 4864 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4865 | struct btrfs_key key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4866 | struct btrfs_device *device; |
| 4867 | struct btrfs_chunk *chunk; |
| 4868 | struct btrfs_stripe *stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4869 | struct extent_map *em; |
| 4870 | struct map_lookup *map; |
| 4871 | size_t item_size; |
| 4872 | u64 dev_offset; |
| 4873 | u64 stripe_size; |
| 4874 | int i = 0; |
Chris Mason | 140e639 | 2015-12-23 13:30:51 -0800 | [diff] [blame] | 4875 | int ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4876 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 4877 | em = get_chunk_map(fs_info, chunk_offset, chunk_size); |
| 4878 | if (IS_ERR(em)) |
| 4879 | return PTR_ERR(em); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4880 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 4881 | map = em->map_lookup; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4882 | item_size = btrfs_chunk_item_size(map->num_stripes); |
| 4883 | stripe_size = em->orig_block_len; |
| 4884 | |
| 4885 | chunk = kzalloc(item_size, GFP_NOFS); |
| 4886 | if (!chunk) { |
| 4887 | ret = -ENOMEM; |
| 4888 | goto out; |
| 4889 | } |
| 4890 | |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 4891 | /* |
| 4892 | * Take the device list mutex to prevent races with the final phase of |
| 4893 | * a device replace operation that replaces the device object associated |
| 4894 | * with the map's stripes, because the device object's id can change |
| 4895 | * at any time during that final phase of the device replace operation |
| 4896 | * (dev-replace.c:btrfs_dev_replace_finishing()). |
| 4897 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4898 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4899 | for (i = 0; i < map->num_stripes; i++) { |
| 4900 | device = map->stripes[i].dev; |
| 4901 | dev_offset = map->stripes[i].physical; |
| 4902 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4903 | ret = btrfs_update_device(trans, device); |
Mark Fasheh | 3acd395 | 2011-09-08 17:40:01 -0700 | [diff] [blame] | 4904 | if (ret) |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 4905 | break; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4906 | ret = btrfs_alloc_dev_extent(trans, device, |
| 4907 | chunk_root->root_key.objectid, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4908 | chunk_offset, dev_offset, |
| 4909 | stripe_size); |
| 4910 | if (ret) |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 4911 | break; |
| 4912 | } |
| 4913 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4914 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 4915 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4916 | } |
| 4917 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4918 | stripe = &chunk->stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4919 | for (i = 0; i < map->num_stripes; i++) { |
| 4920 | device = map->stripes[i].dev; |
| 4921 | dev_offset = map->stripes[i].physical; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4922 | |
| 4923 | btrfs_set_stack_stripe_devid(stripe, device->devid); |
| 4924 | btrfs_set_stack_stripe_offset(stripe, dev_offset); |
| 4925 | memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE); |
| 4926 | stripe++; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4927 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4928 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4929 | |
| 4930 | btrfs_set_stack_chunk_length(chunk, chunk_size); |
| 4931 | btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid); |
| 4932 | btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len); |
| 4933 | btrfs_set_stack_chunk_type(chunk, map->type); |
| 4934 | btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes); |
| 4935 | btrfs_set_stack_chunk_io_align(chunk, map->stripe_len); |
| 4936 | btrfs_set_stack_chunk_io_width(chunk, map->stripe_len); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4937 | btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4938 | btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes); |
| 4939 | |
| 4940 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 4941 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 4942 | key.offset = chunk_offset; |
| 4943 | |
| 4944 | ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 4945 | if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 4946 | /* |
| 4947 | * TODO: Cleanup of inserted chunk root in case of |
| 4948 | * failure. |
| 4949 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4950 | ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4951 | } |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4952 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4953 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4954 | kfree(chunk); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4955 | free_extent_map(em); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 4956 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4957 | } |
| 4958 | |
| 4959 | /* |
| 4960 | * Chunk allocation falls into two parts. The first part does works |
| 4961 | * that make the new allocated chunk useable, but not do any operation |
| 4962 | * that modifies the chunk tree. The second part does the works that |
| 4963 | * require modifying the chunk tree. This division is important for the |
| 4964 | * bootstrap process of adding storage to a seed btrfs. |
| 4965 | */ |
| 4966 | int btrfs_alloc_chunk(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4967 | struct btrfs_fs_info *fs_info, u64 type) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4968 | { |
| 4969 | u64 chunk_offset; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4970 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4971 | ASSERT(mutex_is_locked(&fs_info->chunk_mutex)); |
| 4972 | chunk_offset = find_next_chunk(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 4973 | return __btrfs_alloc_chunk(trans, chunk_offset, type); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4974 | } |
| 4975 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4976 | static noinline int init_first_rw_device(struct btrfs_trans_handle *trans, |
David Sterba | e4a4dce | 2017-02-10 19:49:01 +0100 | [diff] [blame] | 4977 | struct btrfs_fs_info *fs_info) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4978 | { |
| 4979 | u64 chunk_offset; |
| 4980 | u64 sys_chunk_offset; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4981 | u64 alloc_profile; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4982 | int ret; |
| 4983 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4984 | chunk_offset = find_next_chunk(fs_info); |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4985 | alloc_profile = btrfs_metadata_alloc_profile(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 4986 | ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4987 | if (ret) |
| 4988 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4989 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4990 | sys_chunk_offset = find_next_chunk(fs_info); |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4991 | alloc_profile = btrfs_system_alloc_profile(fs_info); |
David Sterba | 72b468c | 2017-02-10 19:46:27 +0100 | [diff] [blame] | 4992 | ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4993 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4994 | } |
| 4995 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 4996 | static inline int btrfs_chunk_max_errors(struct map_lookup *map) |
| 4997 | { |
| 4998 | int max_errors; |
| 4999 | |
| 5000 | if (map->type & (BTRFS_BLOCK_GROUP_RAID1 | |
| 5001 | BTRFS_BLOCK_GROUP_RAID10 | |
| 5002 | BTRFS_BLOCK_GROUP_RAID5 | |
| 5003 | BTRFS_BLOCK_GROUP_DUP)) { |
| 5004 | max_errors = 1; |
| 5005 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) { |
| 5006 | max_errors = 2; |
| 5007 | } else { |
| 5008 | max_errors = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5009 | } |
| 5010 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5011 | return max_errors; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5012 | } |
| 5013 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5014 | 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] | 5015 | { |
| 5016 | struct extent_map *em; |
| 5017 | struct map_lookup *map; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5018 | int readonly = 0; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5019 | int miss_ndevs = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5020 | int i; |
| 5021 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5022 | em = get_chunk_map(fs_info, chunk_offset, 1); |
| 5023 | if (IS_ERR(em)) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5024 | return 1; |
| 5025 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5026 | map = em->map_lookup; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5027 | for (i = 0; i < map->num_stripes; i++) { |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5028 | if (map->stripes[i].dev->missing) { |
| 5029 | miss_ndevs++; |
| 5030 | continue; |
| 5031 | } |
| 5032 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5033 | if (!map->stripes[i].dev->writeable) { |
| 5034 | readonly = 1; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5035 | goto end; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5036 | } |
| 5037 | } |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5038 | |
| 5039 | /* |
| 5040 | * If the number of missing devices is larger than max errors, |
| 5041 | * we can not write the data into that chunk successfully, so |
| 5042 | * set it readonly. |
| 5043 | */ |
| 5044 | if (miss_ndevs > btrfs_chunk_max_errors(map)) |
| 5045 | readonly = 1; |
| 5046 | end: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 5047 | free_extent_map(em); |
| 5048 | return readonly; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5049 | } |
| 5050 | |
| 5051 | void btrfs_mapping_init(struct btrfs_mapping_tree *tree) |
| 5052 | { |
David Sterba | a8067e0 | 2011-04-21 00:34:43 +0200 | [diff] [blame] | 5053 | extent_map_tree_init(&tree->map_tree); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5054 | } |
| 5055 | |
| 5056 | void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree) |
| 5057 | { |
| 5058 | struct extent_map *em; |
| 5059 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5060 | while (1) { |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5061 | write_lock(&tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5062 | em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1); |
| 5063 | if (em) |
| 5064 | remove_extent_mapping(&tree->map_tree, em); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5065 | write_unlock(&tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5066 | if (!em) |
| 5067 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5068 | /* once for us */ |
| 5069 | free_extent_map(em); |
| 5070 | /* once for the tree */ |
| 5071 | free_extent_map(em); |
| 5072 | } |
| 5073 | } |
| 5074 | |
Stefan Behrens | 5d96405 | 2012-11-05 14:59:07 +0100 | [diff] [blame] | 5075 | 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] | 5076 | { |
| 5077 | struct extent_map *em; |
| 5078 | struct map_lookup *map; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5079 | int ret; |
| 5080 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5081 | em = get_chunk_map(fs_info, logical, len); |
| 5082 | if (IS_ERR(em)) |
| 5083 | /* |
| 5084 | * We could return errors for these cases, but that could get |
| 5085 | * ugly and we'd probably do the same thing which is just not do |
| 5086 | * anything else and exit, so return 1 so the callers don't try |
| 5087 | * to use other copies. |
| 5088 | */ |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5089 | return 1; |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5090 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5091 | map = em->map_lookup; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5092 | if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1)) |
| 5093 | ret = map->num_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5094 | else if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
| 5095 | ret = map->sub_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5096 | else if (map->type & BTRFS_BLOCK_GROUP_RAID5) |
| 5097 | ret = 2; |
| 5098 | else if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
| 5099 | ret = 3; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5100 | else |
| 5101 | ret = 1; |
| 5102 | free_extent_map(em); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5103 | |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5104 | btrfs_dev_replace_lock(&fs_info->dev_replace, 0); |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5105 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) && |
| 5106 | fs_info->dev_replace.tgtdev) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5107 | ret++; |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5108 | btrfs_dev_replace_unlock(&fs_info->dev_replace, 0); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5109 | |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5110 | return ret; |
| 5111 | } |
| 5112 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5113 | unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info, |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5114 | u64 logical) |
| 5115 | { |
| 5116 | struct extent_map *em; |
| 5117 | struct map_lookup *map; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5118 | unsigned long len = fs_info->sectorsize; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5119 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5120 | em = get_chunk_map(fs_info, logical, len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5121 | |
Nikolay Borisov | 69f03f1 | 2017-07-11 16:55:51 +0300 | [diff] [blame] | 5122 | if (!WARN_ON(IS_ERR(em))) { |
| 5123 | map = em->map_lookup; |
| 5124 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 5125 | len = map->stripe_len * nr_data_stripes(map); |
| 5126 | free_extent_map(em); |
| 5127 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5128 | return len; |
| 5129 | } |
| 5130 | |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 5131 | 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] | 5132 | { |
| 5133 | struct extent_map *em; |
| 5134 | struct map_lookup *map; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5135 | int ret = 0; |
| 5136 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5137 | em = get_chunk_map(fs_info, logical, len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5138 | |
Nikolay Borisov | 69f03f1 | 2017-07-11 16:55:51 +0300 | [diff] [blame] | 5139 | if(!WARN_ON(IS_ERR(em))) { |
| 5140 | map = em->map_lookup; |
| 5141 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
| 5142 | ret = 1; |
| 5143 | free_extent_map(em); |
| 5144 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5145 | return ret; |
| 5146 | } |
| 5147 | |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5148 | static int find_live_mirror(struct btrfs_fs_info *fs_info, |
| 5149 | struct map_lookup *map, int first, int num, |
| 5150 | int optimal, int dev_replace_is_ongoing) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5151 | { |
| 5152 | int i; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5153 | int tolerance; |
| 5154 | struct btrfs_device *srcdev; |
| 5155 | |
| 5156 | if (dev_replace_is_ongoing && |
| 5157 | fs_info->dev_replace.cont_reading_from_srcdev_mode == |
| 5158 | BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID) |
| 5159 | srcdev = fs_info->dev_replace.srcdev; |
| 5160 | else |
| 5161 | srcdev = NULL; |
| 5162 | |
| 5163 | /* |
| 5164 | * try to avoid the drive that is the source drive for a |
| 5165 | * dev-replace procedure, only choose it if no other non-missing |
| 5166 | * mirror is available |
| 5167 | */ |
| 5168 | for (tolerance = 0; tolerance < 2; tolerance++) { |
| 5169 | if (map->stripes[optimal].dev->bdev && |
| 5170 | (tolerance || map->stripes[optimal].dev != srcdev)) |
| 5171 | return optimal; |
| 5172 | for (i = first; i < first + num; i++) { |
| 5173 | if (map->stripes[i].dev->bdev && |
| 5174 | (tolerance || map->stripes[i].dev != srcdev)) |
| 5175 | return i; |
| 5176 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5177 | } |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5178 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5179 | /* we couldn't find one that doesn't fail. Just return something |
| 5180 | * and the io error handling code will clean up eventually |
| 5181 | */ |
| 5182 | return optimal; |
| 5183 | } |
| 5184 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5185 | static inline int parity_smaller(u64 a, u64 b) |
| 5186 | { |
| 5187 | return a > b; |
| 5188 | } |
| 5189 | |
| 5190 | /* Bubble-sort the stripe set to put the parity/syndrome stripes last */ |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5191 | static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5192 | { |
| 5193 | struct btrfs_bio_stripe s; |
| 5194 | int i; |
| 5195 | u64 l; |
| 5196 | int again = 1; |
| 5197 | |
| 5198 | while (again) { |
| 5199 | again = 0; |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5200 | for (i = 0; i < num_stripes - 1; i++) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5201 | if (parity_smaller(bbio->raid_map[i], |
| 5202 | bbio->raid_map[i+1])) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5203 | s = bbio->stripes[i]; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5204 | l = bbio->raid_map[i]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5205 | bbio->stripes[i] = bbio->stripes[i+1]; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5206 | bbio->raid_map[i] = bbio->raid_map[i+1]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5207 | bbio->stripes[i+1] = s; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5208 | bbio->raid_map[i+1] = l; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5209 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5210 | again = 1; |
| 5211 | } |
| 5212 | } |
| 5213 | } |
| 5214 | } |
| 5215 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5216 | static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes) |
| 5217 | { |
| 5218 | struct btrfs_bio *bbio = kzalloc( |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5219 | /* the size of the btrfs_bio */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5220 | sizeof(struct btrfs_bio) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5221 | /* plus the variable array for the stripes */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5222 | sizeof(struct btrfs_bio_stripe) * (total_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5223 | /* plus the variable array for the tgt dev */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5224 | sizeof(int) * (real_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5225 | /* |
| 5226 | * plus the raid_map, which includes both the tgt dev |
| 5227 | * and the stripes |
| 5228 | */ |
| 5229 | sizeof(u64) * (total_stripes), |
Michal Hocko | 277fb5f | 2015-08-19 14:17:41 +0200 | [diff] [blame] | 5230 | GFP_NOFS|__GFP_NOFAIL); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5231 | |
| 5232 | atomic_set(&bbio->error, 0); |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5233 | refcount_set(&bbio->refs, 1); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5234 | |
| 5235 | return bbio; |
| 5236 | } |
| 5237 | |
| 5238 | void btrfs_get_bbio(struct btrfs_bio *bbio) |
| 5239 | { |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5240 | WARN_ON(!refcount_read(&bbio->refs)); |
| 5241 | refcount_inc(&bbio->refs); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5242 | } |
| 5243 | |
| 5244 | void btrfs_put_bbio(struct btrfs_bio *bbio) |
| 5245 | { |
| 5246 | if (!bbio) |
| 5247 | return; |
Elena Reshetova | 140475a | 2017-03-03 10:55:10 +0200 | [diff] [blame] | 5248 | if (refcount_dec_and_test(&bbio->refs)) |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5249 | kfree(bbio); |
| 5250 | } |
| 5251 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5252 | /* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */ |
| 5253 | /* |
| 5254 | * Please note that, discard won't be sent to target device of device |
| 5255 | * replace. |
| 5256 | */ |
| 5257 | static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info, |
| 5258 | u64 logical, u64 length, |
| 5259 | struct btrfs_bio **bbio_ret) |
| 5260 | { |
| 5261 | struct extent_map *em; |
| 5262 | struct map_lookup *map; |
| 5263 | struct btrfs_bio *bbio; |
| 5264 | u64 offset; |
| 5265 | u64 stripe_nr; |
| 5266 | u64 stripe_nr_end; |
| 5267 | u64 stripe_end_offset; |
| 5268 | u64 stripe_cnt; |
| 5269 | u64 stripe_len; |
| 5270 | u64 stripe_offset; |
| 5271 | u64 num_stripes; |
| 5272 | u32 stripe_index; |
| 5273 | u32 factor = 0; |
| 5274 | u32 sub_stripes = 0; |
| 5275 | u64 stripes_per_dev = 0; |
| 5276 | u32 remaining_stripes = 0; |
| 5277 | u32 last_stripe = 0; |
| 5278 | int ret = 0; |
| 5279 | int i; |
| 5280 | |
| 5281 | /* discard always return a bbio */ |
| 5282 | ASSERT(bbio_ret); |
| 5283 | |
| 5284 | em = get_chunk_map(fs_info, logical, length); |
| 5285 | if (IS_ERR(em)) |
| 5286 | return PTR_ERR(em); |
| 5287 | |
| 5288 | map = em->map_lookup; |
| 5289 | /* we don't discard raid56 yet */ |
| 5290 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
| 5291 | ret = -EOPNOTSUPP; |
| 5292 | goto out; |
| 5293 | } |
| 5294 | |
| 5295 | offset = logical - em->start; |
| 5296 | length = min_t(u64, em->len - offset, length); |
| 5297 | |
| 5298 | stripe_len = map->stripe_len; |
| 5299 | /* |
| 5300 | * stripe_nr counts the total number of stripes we have to stride |
| 5301 | * to get to this block |
| 5302 | */ |
| 5303 | stripe_nr = div64_u64(offset, stripe_len); |
| 5304 | |
| 5305 | /* stripe_offset is the offset of this block in its stripe */ |
| 5306 | stripe_offset = offset - stripe_nr * stripe_len; |
| 5307 | |
| 5308 | stripe_nr_end = round_up(offset + length, map->stripe_len); |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 5309 | stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5310 | stripe_cnt = stripe_nr_end - stripe_nr; |
| 5311 | stripe_end_offset = stripe_nr_end * map->stripe_len - |
| 5312 | (offset + length); |
| 5313 | /* |
| 5314 | * after this, stripe_nr is the number of stripes on this |
| 5315 | * device we have to walk to find the data, and stripe_index is |
| 5316 | * the number of our device in the stripe array |
| 5317 | */ |
| 5318 | num_stripes = 1; |
| 5319 | stripe_index = 0; |
| 5320 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 5321 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5322 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
| 5323 | sub_stripes = 1; |
| 5324 | else |
| 5325 | sub_stripes = map->sub_stripes; |
| 5326 | |
| 5327 | factor = map->num_stripes / sub_stripes; |
| 5328 | num_stripes = min_t(u64, map->num_stripes, |
| 5329 | sub_stripes * stripe_cnt); |
| 5330 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
| 5331 | stripe_index *= sub_stripes; |
| 5332 | stripes_per_dev = div_u64_rem(stripe_cnt, factor, |
| 5333 | &remaining_stripes); |
| 5334 | div_u64_rem(stripe_nr_end - 1, factor, &last_stripe); |
| 5335 | last_stripe *= sub_stripes; |
| 5336 | } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1 | |
| 5337 | BTRFS_BLOCK_GROUP_DUP)) { |
| 5338 | num_stripes = map->num_stripes; |
| 5339 | } else { |
| 5340 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5341 | &stripe_index); |
| 5342 | } |
| 5343 | |
| 5344 | bbio = alloc_btrfs_bio(num_stripes, 0); |
| 5345 | if (!bbio) { |
| 5346 | ret = -ENOMEM; |
| 5347 | goto out; |
| 5348 | } |
| 5349 | |
| 5350 | for (i = 0; i < num_stripes; i++) { |
| 5351 | bbio->stripes[i].physical = |
| 5352 | map->stripes[stripe_index].physical + |
| 5353 | stripe_offset + stripe_nr * map->stripe_len; |
| 5354 | bbio->stripes[i].dev = map->stripes[stripe_index].dev; |
| 5355 | |
| 5356 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 5357 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5358 | bbio->stripes[i].length = stripes_per_dev * |
| 5359 | map->stripe_len; |
| 5360 | |
| 5361 | if (i / sub_stripes < remaining_stripes) |
| 5362 | bbio->stripes[i].length += |
| 5363 | map->stripe_len; |
| 5364 | |
| 5365 | /* |
| 5366 | * Special for the first stripe and |
| 5367 | * the last stripe: |
| 5368 | * |
| 5369 | * |-------|...|-------| |
| 5370 | * |----------| |
| 5371 | * off end_off |
| 5372 | */ |
| 5373 | if (i < sub_stripes) |
| 5374 | bbio->stripes[i].length -= |
| 5375 | stripe_offset; |
| 5376 | |
| 5377 | if (stripe_index >= last_stripe && |
| 5378 | stripe_index <= (last_stripe + |
| 5379 | sub_stripes - 1)) |
| 5380 | bbio->stripes[i].length -= |
| 5381 | stripe_end_offset; |
| 5382 | |
| 5383 | if (i == sub_stripes - 1) |
| 5384 | stripe_offset = 0; |
| 5385 | } else { |
| 5386 | bbio->stripes[i].length = length; |
| 5387 | } |
| 5388 | |
| 5389 | stripe_index++; |
| 5390 | if (stripe_index == map->num_stripes) { |
| 5391 | stripe_index = 0; |
| 5392 | stripe_nr++; |
| 5393 | } |
| 5394 | } |
| 5395 | |
| 5396 | *bbio_ret = bbio; |
| 5397 | bbio->map_type = map->type; |
| 5398 | bbio->num_stripes = num_stripes; |
| 5399 | out: |
| 5400 | free_extent_map(em); |
| 5401 | return ret; |
| 5402 | } |
| 5403 | |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5404 | /* |
| 5405 | * In dev-replace case, for repair case (that's the only case where the mirror |
| 5406 | * is selected explicitly when calling btrfs_map_block), blocks left of the |
| 5407 | * left cursor can also be read from the target drive. |
| 5408 | * |
| 5409 | * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the |
| 5410 | * array of stripes. |
| 5411 | * For READ, it also needs to be supported using the same mirror number. |
| 5412 | * |
| 5413 | * If the requested block is not left of the left cursor, EIO is returned. This |
| 5414 | * can happen because btrfs_num_copies() returns one more in the dev-replace |
| 5415 | * case. |
| 5416 | */ |
| 5417 | static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info, |
| 5418 | u64 logical, u64 length, |
| 5419 | u64 srcdev_devid, int *mirror_num, |
| 5420 | u64 *physical) |
| 5421 | { |
| 5422 | struct btrfs_bio *bbio = NULL; |
| 5423 | int num_stripes; |
| 5424 | int index_srcdev = 0; |
| 5425 | int found = 0; |
| 5426 | u64 physical_of_found = 0; |
| 5427 | int i; |
| 5428 | int ret = 0; |
| 5429 | |
| 5430 | ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS, |
| 5431 | logical, &length, &bbio, 0, 0); |
| 5432 | if (ret) { |
| 5433 | ASSERT(bbio == NULL); |
| 5434 | return ret; |
| 5435 | } |
| 5436 | |
| 5437 | num_stripes = bbio->num_stripes; |
| 5438 | if (*mirror_num > num_stripes) { |
| 5439 | /* |
| 5440 | * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror, |
| 5441 | * that means that the requested area is not left of the left |
| 5442 | * cursor |
| 5443 | */ |
| 5444 | btrfs_put_bbio(bbio); |
| 5445 | return -EIO; |
| 5446 | } |
| 5447 | |
| 5448 | /* |
| 5449 | * process the rest of the function using the mirror_num of the source |
| 5450 | * drive. Therefore look it up first. At the end, patch the device |
| 5451 | * pointer to the one of the target drive. |
| 5452 | */ |
| 5453 | for (i = 0; i < num_stripes; i++) { |
| 5454 | if (bbio->stripes[i].dev->devid != srcdev_devid) |
| 5455 | continue; |
| 5456 | |
| 5457 | /* |
| 5458 | * In case of DUP, in order to keep it simple, only add the |
| 5459 | * mirror with the lowest physical address |
| 5460 | */ |
| 5461 | if (found && |
| 5462 | physical_of_found <= bbio->stripes[i].physical) |
| 5463 | continue; |
| 5464 | |
| 5465 | index_srcdev = i; |
| 5466 | found = 1; |
| 5467 | physical_of_found = bbio->stripes[i].physical; |
| 5468 | } |
| 5469 | |
| 5470 | btrfs_put_bbio(bbio); |
| 5471 | |
| 5472 | ASSERT(found); |
| 5473 | if (!found) |
| 5474 | return -EIO; |
| 5475 | |
| 5476 | *mirror_num = index_srcdev + 1; |
| 5477 | *physical = physical_of_found; |
| 5478 | return ret; |
| 5479 | } |
| 5480 | |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 5481 | static void handle_ops_on_dev_replace(enum btrfs_map_op op, |
| 5482 | struct btrfs_bio **bbio_ret, |
| 5483 | struct btrfs_dev_replace *dev_replace, |
| 5484 | int *num_stripes_ret, int *max_errors_ret) |
| 5485 | { |
| 5486 | struct btrfs_bio *bbio = *bbio_ret; |
| 5487 | u64 srcdev_devid = dev_replace->srcdev->devid; |
| 5488 | int tgtdev_indexes = 0; |
| 5489 | int num_stripes = *num_stripes_ret; |
| 5490 | int max_errors = *max_errors_ret; |
| 5491 | int i; |
| 5492 | |
| 5493 | if (op == BTRFS_MAP_WRITE) { |
| 5494 | int index_where_to_add; |
| 5495 | |
| 5496 | /* |
| 5497 | * duplicate the write operations while the dev replace |
| 5498 | * procedure is running. Since the copying of the old disk to |
| 5499 | * the new disk takes place at run time while the filesystem is |
| 5500 | * mounted writable, the regular write operations to the old |
| 5501 | * disk have to be duplicated to go to the new disk as well. |
| 5502 | * |
| 5503 | * Note that device->missing is handled by the caller, and that |
| 5504 | * the write to the old disk is already set up in the stripes |
| 5505 | * array. |
| 5506 | */ |
| 5507 | index_where_to_add = num_stripes; |
| 5508 | for (i = 0; i < num_stripes; i++) { |
| 5509 | if (bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5510 | /* write to new disk, too */ |
| 5511 | struct btrfs_bio_stripe *new = |
| 5512 | bbio->stripes + index_where_to_add; |
| 5513 | struct btrfs_bio_stripe *old = |
| 5514 | bbio->stripes + i; |
| 5515 | |
| 5516 | new->physical = old->physical; |
| 5517 | new->length = old->length; |
| 5518 | new->dev = dev_replace->tgtdev; |
| 5519 | bbio->tgtdev_map[i] = index_where_to_add; |
| 5520 | index_where_to_add++; |
| 5521 | max_errors++; |
| 5522 | tgtdev_indexes++; |
| 5523 | } |
| 5524 | } |
| 5525 | num_stripes = index_where_to_add; |
| 5526 | } else if (op == BTRFS_MAP_GET_READ_MIRRORS) { |
| 5527 | int index_srcdev = 0; |
| 5528 | int found = 0; |
| 5529 | u64 physical_of_found = 0; |
| 5530 | |
| 5531 | /* |
| 5532 | * During the dev-replace procedure, the target drive can also |
| 5533 | * be used to read data in case it is needed to repair a corrupt |
| 5534 | * block elsewhere. This is possible if the requested area is |
| 5535 | * left of the left cursor. In this area, the target drive is a |
| 5536 | * full copy of the source drive. |
| 5537 | */ |
| 5538 | for (i = 0; i < num_stripes; i++) { |
| 5539 | if (bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5540 | /* |
| 5541 | * In case of DUP, in order to keep it simple, |
| 5542 | * only add the mirror with the lowest physical |
| 5543 | * address |
| 5544 | */ |
| 5545 | if (found && |
| 5546 | physical_of_found <= |
| 5547 | bbio->stripes[i].physical) |
| 5548 | continue; |
| 5549 | index_srcdev = i; |
| 5550 | found = 1; |
| 5551 | physical_of_found = bbio->stripes[i].physical; |
| 5552 | } |
| 5553 | } |
| 5554 | if (found) { |
| 5555 | struct btrfs_bio_stripe *tgtdev_stripe = |
| 5556 | bbio->stripes + num_stripes; |
| 5557 | |
| 5558 | tgtdev_stripe->physical = physical_of_found; |
| 5559 | tgtdev_stripe->length = |
| 5560 | bbio->stripes[index_srcdev].length; |
| 5561 | tgtdev_stripe->dev = dev_replace->tgtdev; |
| 5562 | bbio->tgtdev_map[index_srcdev] = num_stripes; |
| 5563 | |
| 5564 | tgtdev_indexes++; |
| 5565 | num_stripes++; |
| 5566 | } |
| 5567 | } |
| 5568 | |
| 5569 | *num_stripes_ret = num_stripes; |
| 5570 | *max_errors_ret = max_errors; |
| 5571 | bbio->num_tgtdevs = tgtdev_indexes; |
| 5572 | *bbio_ret = bbio; |
| 5573 | } |
| 5574 | |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5575 | static bool need_full_stripe(enum btrfs_map_op op) |
| 5576 | { |
| 5577 | return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS); |
| 5578 | } |
| 5579 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5580 | static int __btrfs_map_block(struct btrfs_fs_info *fs_info, |
| 5581 | enum btrfs_map_op op, |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5582 | u64 logical, u64 *length, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5583 | struct btrfs_bio **bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5584 | int mirror_num, int need_raid_map) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5585 | { |
| 5586 | struct extent_map *em; |
| 5587 | struct map_lookup *map; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5588 | u64 offset; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5589 | u64 stripe_offset; |
| 5590 | u64 stripe_nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5591 | u64 stripe_len; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5592 | u32 stripe_index; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5593 | int i; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5594 | int ret = 0; |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5595 | int num_stripes; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 5596 | int max_errors = 0; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5597 | int tgtdev_indexes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5598 | struct btrfs_bio *bbio = NULL; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5599 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 5600 | int dev_replace_is_ongoing = 0; |
| 5601 | int num_alloc_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5602 | int patch_the_first_stripe_for_dev_replace = 0; |
| 5603 | u64 physical_to_patch_in_first_stripe = 0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5604 | u64 raid56_full_stripe_start = (u64)-1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5605 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5606 | if (op == BTRFS_MAP_DISCARD) |
| 5607 | return __btrfs_map_block_for_discard(fs_info, logical, |
| 5608 | *length, bbio_ret); |
| 5609 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5610 | em = get_chunk_map(fs_info, logical, *length); |
| 5611 | if (IS_ERR(em)) |
| 5612 | return PTR_ERR(em); |
Josef Bacik | 9bb9187 | 2013-04-19 23:45:33 -0400 | [diff] [blame] | 5613 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5614 | map = em->map_lookup; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5615 | offset = logical - em->start; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5616 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5617 | stripe_len = map->stripe_len; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5618 | stripe_nr = offset; |
| 5619 | /* |
| 5620 | * stripe_nr counts the total number of stripes we have to stride |
| 5621 | * to get to this block |
| 5622 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5623 | stripe_nr = div64_u64(stripe_nr, stripe_len); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5624 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5625 | stripe_offset = stripe_nr * stripe_len; |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 5626 | if (offset < stripe_offset) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 5627 | btrfs_crit(fs_info, |
| 5628 | "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] | 5629 | stripe_offset, offset, em->start, logical, |
| 5630 | stripe_len); |
| 5631 | free_extent_map(em); |
| 5632 | return -EINVAL; |
| 5633 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5634 | |
| 5635 | /* stripe_offset is the offset of this block in its stripe*/ |
| 5636 | stripe_offset = offset - stripe_offset; |
| 5637 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5638 | /* 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] | 5639 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5640 | unsigned long full_stripe_len = stripe_len * nr_data_stripes(map); |
| 5641 | raid56_full_stripe_start = offset; |
| 5642 | |
| 5643 | /* allow a write of a full stripe, but make sure we don't |
| 5644 | * allow straddling of stripes |
| 5645 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5646 | raid56_full_stripe_start = div64_u64(raid56_full_stripe_start, |
| 5647 | full_stripe_len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5648 | raid56_full_stripe_start *= full_stripe_len; |
| 5649 | } |
| 5650 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5651 | if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5652 | u64 max_len; |
| 5653 | /* For writes to RAID[56], allow a full stripeset across all disks. |
| 5654 | For other RAID types and for RAID[56] reads, just allow a single |
| 5655 | stripe (on a single disk). */ |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5656 | if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5657 | (op == BTRFS_MAP_WRITE)) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5658 | max_len = stripe_len * nr_data_stripes(map) - |
| 5659 | (offset - raid56_full_stripe_start); |
| 5660 | } else { |
| 5661 | /* we limit the length of each bio to what fits in a stripe */ |
| 5662 | max_len = stripe_len - stripe_offset; |
| 5663 | } |
| 5664 | *length = min_t(u64, em->len - offset, max_len); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5665 | } else { |
| 5666 | *length = em->len - offset; |
| 5667 | } |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5668 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5669 | /* This is for when we're called from btrfs_merge_bio_hook() and all |
| 5670 | it cares about is the length */ |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5671 | if (!bbio_ret) |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5672 | goto out; |
| 5673 | |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5674 | btrfs_dev_replace_lock(dev_replace, 0); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5675 | dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace); |
| 5676 | if (!dev_replace_is_ongoing) |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5677 | btrfs_dev_replace_unlock(dev_replace, 0); |
| 5678 | else |
| 5679 | btrfs_dev_replace_set_lock_blocking(dev_replace); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5680 | |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5681 | if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 && |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5682 | !need_full_stripe(op) && dev_replace->tgtdev != NULL) { |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5683 | ret = get_extra_mirror_from_replace(fs_info, logical, *length, |
| 5684 | dev_replace->srcdev->devid, |
| 5685 | &mirror_num, |
| 5686 | &physical_to_patch_in_first_stripe); |
| 5687 | if (ret) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5688 | goto out; |
Liu Bo | 5ab5609 | 2017-03-14 13:33:57 -0700 | [diff] [blame] | 5689 | else |
| 5690 | patch_the_first_stripe_for_dev_replace = 1; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5691 | } else if (mirror_num > map->num_stripes) { |
| 5692 | mirror_num = 0; |
| 5693 | } |
| 5694 | |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5695 | num_stripes = 1; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5696 | stripe_index = 0; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5697 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5698 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5699 | &stripe_index); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5700 | if (op != BTRFS_MAP_WRITE && op != BTRFS_MAP_GET_READ_MIRRORS) |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 5701 | mirror_num = 1; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5702 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) { |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5703 | if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5704 | num_stripes = map->num_stripes; |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5705 | else if (mirror_num) |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5706 | stripe_index = mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5707 | else { |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5708 | stripe_index = find_live_mirror(fs_info, map, 0, |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5709 | map->num_stripes, |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5710 | current->pid % map->num_stripes, |
| 5711 | dev_replace_is_ongoing); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5712 | mirror_num = stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5713 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5714 | |
Chris Mason | 611f0e0 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5715 | } else if (map->type & BTRFS_BLOCK_GROUP_DUP) { |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5716 | if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS) { |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5717 | num_stripes = map->num_stripes; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5718 | } else if (mirror_num) { |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5719 | stripe_index = mirror_num - 1; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5720 | } else { |
| 5721 | mirror_num = 1; |
| 5722 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5723 | |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5724 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5725 | u32 factor = map->num_stripes / map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5726 | |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5727 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5728 | stripe_index *= map->sub_stripes; |
| 5729 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5730 | if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5731 | num_stripes = map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5732 | else if (mirror_num) |
| 5733 | stripe_index += mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5734 | else { |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 5735 | int old_stripe_index = stripe_index; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5736 | stripe_index = find_live_mirror(fs_info, map, |
| 5737 | stripe_index, |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5738 | map->sub_stripes, stripe_index + |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5739 | current->pid % map->sub_stripes, |
| 5740 | dev_replace_is_ongoing); |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 5741 | mirror_num = stripe_index - old_stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5742 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5743 | |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5744 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5745 | if (need_raid_map && |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5746 | (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS || |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 5747 | mirror_num > 1)) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5748 | /* push stripe_nr back to the start of the full stripe */ |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 5749 | stripe_nr = div64_u64(raid56_full_stripe_start, |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5750 | stripe_len * nr_data_stripes(map)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5751 | |
| 5752 | /* RAID[56] write or recovery. Return all stripes */ |
| 5753 | num_stripes = map->num_stripes; |
| 5754 | max_errors = nr_parity_stripes(map); |
| 5755 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5756 | *length = map->stripe_len; |
| 5757 | stripe_index = 0; |
| 5758 | stripe_offset = 0; |
| 5759 | } else { |
| 5760 | /* |
| 5761 | * Mirror #0 or #1 means the original data block. |
| 5762 | * Mirror #2 is RAID5 parity block. |
| 5763 | * Mirror #3 is RAID6 Q block. |
| 5764 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5765 | stripe_nr = div_u64_rem(stripe_nr, |
| 5766 | nr_data_stripes(map), &stripe_index); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5767 | if (mirror_num > 1) |
| 5768 | stripe_index = nr_data_stripes(map) + |
| 5769 | mirror_num - 2; |
| 5770 | |
| 5771 | /* We distribute the parity blocks across stripes */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5772 | div_u64_rem(stripe_nr + stripe_index, map->num_stripes, |
| 5773 | &stripe_index); |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5774 | if ((op != BTRFS_MAP_WRITE && |
| 5775 | op != BTRFS_MAP_GET_READ_MIRRORS) && |
| 5776 | mirror_num <= 1) |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 5777 | mirror_num = 1; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5778 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5779 | } else { |
| 5780 | /* |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5781 | * after this, stripe_nr is the number of stripes on this |
| 5782 | * device we have to walk to find the data, and stripe_index is |
| 5783 | * the number of our device in the stripe array |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5784 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5785 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5786 | &stripe_index); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5787 | mirror_num = stripe_index + 1; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5788 | } |
Josef Bacik | e042d1e | 2016-04-12 12:54:40 -0400 | [diff] [blame] | 5789 | if (stripe_index >= map->num_stripes) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 5790 | btrfs_crit(fs_info, |
| 5791 | "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] | 5792 | stripe_index, map->num_stripes); |
| 5793 | ret = -EINVAL; |
| 5794 | goto out; |
| 5795 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5796 | |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5797 | num_alloc_stripes = num_stripes; |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5798 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) { |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5799 | if (op == BTRFS_MAP_WRITE) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5800 | num_alloc_stripes <<= 1; |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5801 | if (op == BTRFS_MAP_GET_READ_MIRRORS) |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5802 | num_alloc_stripes++; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5803 | tgtdev_indexes = num_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5804 | } |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5805 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5806 | bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5807 | if (!bbio) { |
| 5808 | ret = -ENOMEM; |
| 5809 | goto out; |
| 5810 | } |
Liu Bo | 6fad823 | 2017-03-14 13:33:59 -0700 | [diff] [blame] | 5811 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5812 | bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5813 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5814 | /* build raid_map */ |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5815 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map && |
| 5816 | (need_full_stripe(op) || mirror_num > 1)) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5817 | u64 tmp; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5818 | unsigned rot; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5819 | |
| 5820 | bbio->raid_map = (u64 *)((void *)bbio->stripes + |
| 5821 | sizeof(struct btrfs_bio_stripe) * |
| 5822 | num_alloc_stripes + |
| 5823 | sizeof(int) * tgtdev_indexes); |
| 5824 | |
| 5825 | /* Work out the disk rotation on this stripe-set */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5826 | div_u64_rem(stripe_nr, num_stripes, &rot); |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5827 | |
| 5828 | /* Fill in the logical address of each stripe */ |
| 5829 | tmp = stripe_nr * nr_data_stripes(map); |
| 5830 | for (i = 0; i < nr_data_stripes(map); i++) |
| 5831 | bbio->raid_map[(i+rot) % num_stripes] = |
| 5832 | em->start + (tmp + i) * map->stripe_len; |
| 5833 | |
| 5834 | bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE; |
| 5835 | if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
| 5836 | bbio->raid_map[(i+rot+1) % num_stripes] = |
| 5837 | RAID6_Q_STRIPE; |
| 5838 | } |
| 5839 | |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5840 | |
Liu Bo | 0b3d4cd | 2017-03-14 13:33:56 -0700 | [diff] [blame] | 5841 | for (i = 0; i < num_stripes; i++) { |
| 5842 | bbio->stripes[i].physical = |
| 5843 | map->stripes[stripe_index].physical + |
| 5844 | stripe_offset + |
| 5845 | stripe_nr * map->stripe_len; |
| 5846 | bbio->stripes[i].dev = |
| 5847 | map->stripes[stripe_index].dev; |
| 5848 | stripe_index++; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5849 | } |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5850 | |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5851 | if (need_full_stripe(op)) |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5852 | max_errors = btrfs_chunk_max_errors(map); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5853 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5854 | if (bbio->raid_map) |
| 5855 | sort_parity_stripes(bbio, num_stripes); |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5856 | |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 5857 | if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL && |
Liu Bo | 2b19a1f | 2017-03-14 13:34:00 -0700 | [diff] [blame] | 5858 | need_full_stripe(op)) { |
Liu Bo | 73c0f22 | 2017-03-14 13:33:58 -0700 | [diff] [blame] | 5859 | handle_ops_on_dev_replace(op, &bbio, dev_replace, &num_stripes, |
| 5860 | &max_errors); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5861 | } |
| 5862 | |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5863 | *bbio_ret = bbio; |
Zhao Lei | 10f1190 | 2015-01-20 15:11:43 +0800 | [diff] [blame] | 5864 | bbio->map_type = map->type; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5865 | bbio->num_stripes = num_stripes; |
| 5866 | bbio->max_errors = max_errors; |
| 5867 | bbio->mirror_num = mirror_num; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5868 | |
| 5869 | /* |
| 5870 | * this is the case that REQ_READ && dev_replace_is_ongoing && |
| 5871 | * mirror_num == num_stripes + 1 && dev_replace target drive is |
| 5872 | * available as a mirror |
| 5873 | */ |
| 5874 | if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) { |
| 5875 | WARN_ON(num_stripes > 1); |
| 5876 | bbio->stripes[0].dev = dev_replace->tgtdev; |
| 5877 | bbio->stripes[0].physical = physical_to_patch_in_first_stripe; |
| 5878 | bbio->mirror_num = map->num_stripes + 1; |
| 5879 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5880 | out: |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5881 | if (dev_replace_is_ongoing) { |
| 5882 | btrfs_dev_replace_clear_lock_blocking(dev_replace); |
| 5883 | btrfs_dev_replace_unlock(dev_replace, 0); |
| 5884 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5885 | free_extent_map(em); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5886 | return ret; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5887 | } |
| 5888 | |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5889 | 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] | 5890 | u64 logical, u64 *length, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5891 | struct btrfs_bio **bbio_ret, int mirror_num) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5892 | { |
Mike Christie | b3d3fa5 | 2016-06-05 14:31:53 -0500 | [diff] [blame] | 5893 | return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5894 | mirror_num, 0); |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5895 | } |
| 5896 | |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 5897 | /* For Scrub/replace */ |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 5898 | 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] | 5899 | u64 logical, u64 *length, |
David Sterba | 825ad4c | 2017-03-28 14:45:22 +0200 | [diff] [blame] | 5900 | struct btrfs_bio **bbio_ret) |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 5901 | { |
David Sterba | 825ad4c | 2017-03-28 14:45:22 +0200 | [diff] [blame] | 5902 | 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] | 5903 | } |
| 5904 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 5905 | int btrfs_rmap_block(struct btrfs_fs_info *fs_info, |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5906 | u64 chunk_start, u64 physical, u64 devid, |
| 5907 | u64 **logical, int *naddrs, int *stripe_len) |
| 5908 | { |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5909 | struct extent_map *em; |
| 5910 | struct map_lookup *map; |
| 5911 | u64 *buf; |
| 5912 | u64 bytenr; |
| 5913 | u64 length; |
| 5914 | u64 stripe_nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5915 | u64 rmap_len; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5916 | int i, j, nr = 0; |
| 5917 | |
Liu Bo | 592d92e | 2017-03-14 13:33:55 -0700 | [diff] [blame] | 5918 | em = get_chunk_map(fs_info, chunk_start, 1); |
| 5919 | if (IS_ERR(em)) |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 5920 | return -EIO; |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 5921 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5922 | map = em->map_lookup; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5923 | length = em->len; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5924 | rmap_len = map->stripe_len; |
| 5925 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5926 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5927 | length = div_u64(length, map->num_stripes / map->sub_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5928 | else if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5929 | length = div_u64(length, map->num_stripes); |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5930 | else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5931 | length = div_u64(length, nr_data_stripes(map)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5932 | rmap_len = map->stripe_len * nr_data_stripes(map); |
| 5933 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5934 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 5935 | buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5936 | BUG_ON(!buf); /* -ENOMEM */ |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5937 | |
| 5938 | for (i = 0; i < map->num_stripes; i++) { |
| 5939 | if (devid && map->stripes[i].dev->devid != devid) |
| 5940 | continue; |
| 5941 | if (map->stripes[i].physical > physical || |
| 5942 | map->stripes[i].physical + length <= physical) |
| 5943 | continue; |
| 5944 | |
| 5945 | stripe_nr = physical - map->stripes[i].physical; |
Liu Bo | 42c61ab | 2017-04-03 13:45:24 -0700 | [diff] [blame] | 5946 | stripe_nr = div64_u64(stripe_nr, map->stripe_len); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5947 | |
| 5948 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
| 5949 | stripe_nr = stripe_nr * map->num_stripes + i; |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5950 | stripe_nr = div_u64(stripe_nr, map->sub_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5951 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
| 5952 | stripe_nr = stripe_nr * map->num_stripes + i; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5953 | } /* else if RAID[56], multiply by nr_data_stripes(). |
| 5954 | * Alternatively, just use rmap_len below instead of |
| 5955 | * map->stripe_len */ |
| 5956 | |
| 5957 | bytenr = chunk_start + stripe_nr * rmap_len; |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 5958 | WARN_ON(nr >= map->num_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5959 | for (j = 0; j < nr; j++) { |
| 5960 | if (buf[j] == bytenr) |
| 5961 | break; |
| 5962 | } |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 5963 | if (j == nr) { |
| 5964 | WARN_ON(nr >= map->num_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5965 | buf[nr++] = bytenr; |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 5966 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5967 | } |
| 5968 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5969 | *logical = buf; |
| 5970 | *naddrs = nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5971 | *stripe_len = rmap_len; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5972 | |
| 5973 | free_extent_map(em); |
| 5974 | return 0; |
| 5975 | } |
| 5976 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5977 | 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] | 5978 | { |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 5979 | bio->bi_private = bbio->private; |
| 5980 | bio->bi_end_io = bbio->end_io; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5981 | bio_endio(bio); |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 5982 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5983 | btrfs_put_bbio(bbio); |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 5984 | } |
| 5985 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5986 | static void btrfs_end_bio(struct bio *bio) |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5987 | { |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 5988 | struct btrfs_bio *bbio = bio->bi_private; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 5989 | int is_orig_bio = 0; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5990 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 5991 | if (bio->bi_status) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5992 | atomic_inc(&bbio->error); |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 5993 | if (bio->bi_status == BLK_STS_IOERR || |
| 5994 | bio->bi_status == BLK_STS_TARGET) { |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 5995 | unsigned int stripe_index = |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 5996 | btrfs_io_bio(bio)->stripe_index; |
Zhao Lei | 65f5333 | 2015-06-08 20:05:50 +0800 | [diff] [blame] | 5997 | struct btrfs_device *dev; |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 5998 | |
| 5999 | BUG_ON(stripe_index >= bbio->num_stripes); |
| 6000 | dev = bbio->stripes[stripe_index].dev; |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6001 | if (dev->bdev) { |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6002 | if (bio_op(bio) == REQ_OP_WRITE) |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6003 | btrfs_dev_stat_inc(dev, |
| 6004 | BTRFS_DEV_STAT_WRITE_ERRS); |
| 6005 | else |
| 6006 | btrfs_dev_stat_inc(dev, |
| 6007 | BTRFS_DEV_STAT_READ_ERRS); |
Christoph Hellwig | 70fd761 | 2016-11-01 07:40:10 -0600 | [diff] [blame] | 6008 | if (bio->bi_opf & REQ_PREFLUSH) |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 6009 | btrfs_dev_stat_inc(dev, |
| 6010 | BTRFS_DEV_STAT_FLUSH_ERRS); |
| 6011 | btrfs_dev_stat_print_on_error(dev); |
| 6012 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6013 | } |
| 6014 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6015 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6016 | if (bio == bbio->orig_bio) |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6017 | is_orig_bio = 1; |
| 6018 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6019 | btrfs_bio_counter_dec(bbio->fs_info); |
| 6020 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6021 | if (atomic_dec_and_test(&bbio->stripes_pending)) { |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6022 | if (!is_orig_bio) { |
| 6023 | bio_put(bio); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6024 | bio = bbio->orig_bio; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6025 | } |
Muthu Kumar | c7b22bb | 2014-01-08 14:19:52 -0700 | [diff] [blame] | 6026 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6027 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6028 | /* only send an error to the higher layers if it is |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6029 | * beyond the tolerance of the btrfs bio |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 6030 | */ |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6031 | if (atomic_read(&bbio->error) > bbio->max_errors) { |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6032 | bio->bi_status = BLK_STS_IOERR; |
Chris Mason | 5dbc8fc | 2011-12-09 11:07:37 -0500 | [diff] [blame] | 6033 | } else { |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 6034 | /* |
| 6035 | * this bio is actually up to date, we didn't |
| 6036 | * go over the max number of errors |
| 6037 | */ |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6038 | bio->bi_status = 0; |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 6039 | } |
Miao Xie | c55f139 | 2014-06-19 10:42:54 +0800 | [diff] [blame] | 6040 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6041 | btrfs_end_bbio(bbio, bio); |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 6042 | } else if (!is_orig_bio) { |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6043 | bio_put(bio); |
| 6044 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6045 | } |
| 6046 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6047 | /* |
| 6048 | * see run_scheduled_bios for a description of why bios are collected for |
| 6049 | * async submit. |
| 6050 | * |
| 6051 | * This will add one bio to the pending list for a device and make sure |
| 6052 | * the work struct is scheduled. |
| 6053 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6054 | static noinline void btrfs_schedule_bio(struct btrfs_device *device, |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6055 | struct bio *bio) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6056 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6057 | struct btrfs_fs_info *fs_info = device->fs_info; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6058 | int should_queue = 1; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6059 | struct btrfs_pending_bios *pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6060 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6061 | if (device->missing || !device->bdev) { |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6062 | bio_io_error(bio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6063 | return; |
| 6064 | } |
| 6065 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6066 | /* don't bother with additional async steps for reads, right now */ |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6067 | if (bio_op(bio) == REQ_OP_READ) { |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 6068 | bio_get(bio); |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6069 | btrfsic_submit_bio(bio); |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 6070 | bio_put(bio); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6071 | return; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6072 | } |
| 6073 | |
| 6074 | /* |
Chris Mason | 0986fe9e | 2008-08-15 15:34:15 -0400 | [diff] [blame] | 6075 | * nr_async_bios allows us to reliably return congestion to the |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6076 | * higher layers. Otherwise, the async bio makes it appear we have |
| 6077 | * made progress against dirty pages when we've really just put it |
| 6078 | * on a queue for later |
| 6079 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6080 | atomic_inc(&fs_info->nr_async_bios); |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 6081 | WARN_ON(bio->bi_next); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6082 | bio->bi_next = NULL; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6083 | |
| 6084 | spin_lock(&device->io_lock); |
Christoph Hellwig | 67f055c | 2016-11-01 07:40:06 -0600 | [diff] [blame] | 6085 | if (op_is_sync(bio->bi_opf)) |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6086 | pending_bios = &device->pending_sync_bios; |
| 6087 | else |
| 6088 | pending_bios = &device->pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6089 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6090 | if (pending_bios->tail) |
| 6091 | pending_bios->tail->bi_next = bio; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6092 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 6093 | pending_bios->tail = bio; |
| 6094 | if (!pending_bios->head) |
| 6095 | pending_bios->head = bio; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6096 | if (device->running_pending) |
| 6097 | should_queue = 0; |
| 6098 | |
| 6099 | spin_unlock(&device->io_lock); |
| 6100 | |
| 6101 | if (should_queue) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6102 | btrfs_queue_work(fs_info->submit_workers, &device->work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6103 | } |
| 6104 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6105 | static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio, |
| 6106 | u64 physical, int dev_nr, int async) |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6107 | { |
| 6108 | struct btrfs_device *dev = bbio->stripes[dev_nr].dev; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6109 | struct btrfs_fs_info *fs_info = bbio->fs_info; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6110 | |
| 6111 | bio->bi_private = bbio; |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6112 | btrfs_io_bio(bio)->stripe_index = dev_nr; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6113 | bio->bi_end_io = btrfs_end_bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6114 | bio->bi_iter.bi_sector = physical >> 9; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6115 | #ifdef DEBUG |
| 6116 | { |
| 6117 | struct rcu_string *name; |
| 6118 | |
| 6119 | rcu_read_lock(); |
| 6120 | name = rcu_dereference(dev->name); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6121 | btrfs_debug(fs_info, |
| 6122 | "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u", |
| 6123 | bio_op(bio), bio->bi_opf, |
| 6124 | (u64)bio->bi_iter.bi_sector, |
| 6125 | (u_long)dev->bdev->bd_dev, name->str, dev->devid, |
| 6126 | bio->bi_iter.bi_size); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6127 | rcu_read_unlock(); |
| 6128 | } |
| 6129 | #endif |
| 6130 | bio->bi_bdev = dev->bdev; |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6131 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6132 | btrfs_bio_counter_inc_noblocked(fs_info); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6133 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6134 | if (async) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6135 | btrfs_schedule_bio(dev, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6136 | else |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 6137 | btrfsic_submit_bio(bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6138 | } |
| 6139 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6140 | static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical) |
| 6141 | { |
| 6142 | atomic_inc(&bbio->error); |
| 6143 | if (atomic_dec_and_test(&bbio->stripes_pending)) { |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6144 | /* Should be the original bio. */ |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6145 | WARN_ON(bio != bbio->orig_bio); |
| 6146 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6147 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6148 | bio->bi_iter.bi_sector = logical >> 9; |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 6149 | bio->bi_status = BLK_STS_IOERR; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6150 | btrfs_end_bbio(bbio, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6151 | } |
| 6152 | } |
| 6153 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6154 | int btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio, |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6155 | int mirror_num, int async_submit) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6156 | { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6157 | struct btrfs_device *dev; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6158 | struct bio *first_bio = bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6159 | u64 logical = (u64)bio->bi_iter.bi_sector << 9; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6160 | u64 length = 0; |
| 6161 | u64 map_length; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6162 | int ret; |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6163 | int dev_nr; |
| 6164 | int total_devs; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6165 | struct btrfs_bio *bbio = NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6166 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6167 | length = bio->bi_iter.bi_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6168 | map_length = length; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6169 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6170 | btrfs_bio_counter_inc_blocked(fs_info); |
| 6171 | ret = __btrfs_map_block(fs_info, bio_op(bio), logical, |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6172 | &map_length, &bbio, mirror_num, 1); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6173 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6174 | btrfs_bio_counter_dec(fs_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6175 | return ret; |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6176 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6177 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6178 | total_devs = bbio->num_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6179 | bbio->orig_bio = first_bio; |
| 6180 | bbio->private = first_bio->bi_private; |
| 6181 | bbio->end_io = first_bio->bi_end_io; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6182 | bbio->fs_info = fs_info; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6183 | atomic_set(&bbio->stripes_pending, bbio->num_stripes); |
| 6184 | |
Zhao Lei | ad1ba2a | 2015-12-15 18:18:09 +0800 | [diff] [blame] | 6185 | if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6186 | ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6187 | /* In this case, map_length has been set to the length of |
| 6188 | a single stripe; not the whole write */ |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6189 | if (bio_op(bio) == REQ_OP_WRITE) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6190 | ret = raid56_parity_write(fs_info, bio, bbio, |
| 6191 | map_length); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6192 | } else { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6193 | ret = raid56_parity_recover(fs_info, bio, bbio, |
| 6194 | map_length, mirror_num, 1); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6195 | } |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 6196 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6197 | btrfs_bio_counter_dec(fs_info); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6198 | return ret; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6199 | } |
| 6200 | |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6201 | if (map_length < length) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6202 | btrfs_crit(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6203 | "mapping failed logical %llu bio len %llu len %llu", |
| 6204 | logical, length, map_length); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6205 | BUG(); |
| 6206 | } |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6207 | |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6208 | for (dev_nr = 0; dev_nr < total_devs; dev_nr++) { |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6209 | dev = bbio->stripes[dev_nr].dev; |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 6210 | if (!dev || !dev->bdev || |
Liu Bo | a967efb | 2017-04-10 12:36:26 -0700 | [diff] [blame] | 6211 | (bio_op(first_bio) == REQ_OP_WRITE && !dev->writeable)) { |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6212 | bbio_error(bbio, first_bio, logical); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6213 | continue; |
| 6214 | } |
| 6215 | |
David Sterba | 3aa8e07 | 2017-06-02 17:38:30 +0200 | [diff] [blame] | 6216 | if (dev_nr < total_devs - 1) |
David Sterba | 8b6c1d5 | 2017-06-02 17:48:13 +0200 | [diff] [blame] | 6217 | bio = btrfs_bio_clone(first_bio); |
David Sterba | 3aa8e07 | 2017-06-02 17:38:30 +0200 | [diff] [blame] | 6218 | else |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6219 | bio = first_bio; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 6220 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6221 | submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical, |
| 6222 | dev_nr, async_submit); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6223 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6224 | btrfs_bio_counter_dec(fs_info); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6225 | return 0; |
| 6226 | } |
| 6227 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6228 | 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] | 6229 | u8 *uuid, u8 *fsid) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6230 | { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6231 | struct btrfs_device *device; |
| 6232 | struct btrfs_fs_devices *cur_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6233 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6234 | cur_devices = fs_info->fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6235 | while (cur_devices) { |
| 6236 | if (!fsid || |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6237 | !memcmp(cur_devices->fsid, fsid, BTRFS_FSID_SIZE)) { |
David Sterba | 35c7010 | 2017-06-15 19:51:51 +0200 | [diff] [blame] | 6238 | device = find_device(cur_devices, devid, uuid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6239 | if (device) |
| 6240 | return device; |
| 6241 | } |
| 6242 | cur_devices = cur_devices->seed; |
| 6243 | } |
| 6244 | return NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6245 | } |
| 6246 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6247 | 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] | 6248 | u64 devid, u8 *dev_uuid) |
| 6249 | { |
| 6250 | struct btrfs_device *device; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6251 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6252 | device = btrfs_alloc_device(NULL, &devid, dev_uuid); |
| 6253 | if (IS_ERR(device)) |
yanhai zhu | 7cbd8a8 | 2008-11-12 14:38:54 -0500 | [diff] [blame] | 6254 | return NULL; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6255 | |
| 6256 | list_add(&device->dev_list, &fs_devices->devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6257 | device->fs_devices = fs_devices; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6258 | fs_devices->num_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6259 | |
| 6260 | device->missing = 1; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6261 | fs_devices->missing_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6262 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6263 | return device; |
| 6264 | } |
| 6265 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6266 | /** |
| 6267 | * btrfs_alloc_device - allocate struct btrfs_device |
| 6268 | * @fs_info: used only for generating a new devid, can be NULL if |
| 6269 | * devid is provided (i.e. @devid != NULL). |
| 6270 | * @devid: a pointer to devid for this device. If NULL a new devid |
| 6271 | * is generated. |
| 6272 | * @uuid: a pointer to UUID for this device. If NULL a new UUID |
| 6273 | * is generated. |
| 6274 | * |
| 6275 | * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR() |
| 6276 | * on error. Returned struct is not linked onto any lists and can be |
| 6277 | * destroyed with kfree() right away. |
| 6278 | */ |
| 6279 | struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info, |
| 6280 | const u64 *devid, |
| 6281 | const u8 *uuid) |
| 6282 | { |
| 6283 | struct btrfs_device *dev; |
| 6284 | u64 tmp; |
| 6285 | |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6286 | if (WARN_ON(!devid && !fs_info)) |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6287 | return ERR_PTR(-EINVAL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6288 | |
| 6289 | dev = __alloc_device(); |
| 6290 | if (IS_ERR(dev)) |
| 6291 | return dev; |
| 6292 | |
| 6293 | if (devid) |
| 6294 | tmp = *devid; |
| 6295 | else { |
| 6296 | int ret; |
| 6297 | |
| 6298 | ret = find_next_devid(fs_info, &tmp); |
| 6299 | if (ret) { |
| 6300 | kfree(dev); |
| 6301 | return ERR_PTR(ret); |
| 6302 | } |
| 6303 | } |
| 6304 | dev->devid = tmp; |
| 6305 | |
| 6306 | if (uuid) |
| 6307 | memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE); |
| 6308 | else |
| 6309 | generate_random_uuid(dev->uuid); |
| 6310 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 6311 | btrfs_init_work(&dev->work, btrfs_submit_helper, |
| 6312 | pending_bios_fn, NULL, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6313 | |
| 6314 | return dev; |
| 6315 | } |
| 6316 | |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6317 | /* Return -EIO if any error, otherwise return 0. */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6318 | static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6319 | struct extent_buffer *leaf, |
| 6320 | struct btrfs_chunk *chunk, u64 logical) |
| 6321 | { |
| 6322 | u64 length; |
| 6323 | u64 stripe_len; |
| 6324 | u16 num_stripes; |
| 6325 | u16 sub_stripes; |
| 6326 | u64 type; |
| 6327 | |
| 6328 | length = btrfs_chunk_length(leaf, chunk); |
| 6329 | stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
| 6330 | num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 6331 | sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); |
| 6332 | type = btrfs_chunk_type(leaf, chunk); |
| 6333 | |
| 6334 | if (!num_stripes) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6335 | btrfs_err(fs_info, "invalid chunk num_stripes: %u", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6336 | num_stripes); |
| 6337 | return -EIO; |
| 6338 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6339 | if (!IS_ALIGNED(logical, fs_info->sectorsize)) { |
| 6340 | btrfs_err(fs_info, "invalid chunk logical %llu", logical); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6341 | return -EIO; |
| 6342 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6343 | if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) { |
| 6344 | btrfs_err(fs_info, "invalid chunk sectorsize %u", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6345 | btrfs_chunk_sector_size(leaf, chunk)); |
| 6346 | return -EIO; |
| 6347 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6348 | if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) { |
| 6349 | btrfs_err(fs_info, "invalid chunk length %llu", length); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6350 | return -EIO; |
| 6351 | } |
| 6352 | if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6353 | btrfs_err(fs_info, "invalid chunk stripe length: %llu", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6354 | stripe_len); |
| 6355 | return -EIO; |
| 6356 | } |
| 6357 | if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) & |
| 6358 | type) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6359 | btrfs_err(fs_info, "unrecognized chunk type: %llu", |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6360 | ~(BTRFS_BLOCK_GROUP_TYPE_MASK | |
| 6361 | BTRFS_BLOCK_GROUP_PROFILE_MASK) & |
| 6362 | btrfs_chunk_type(leaf, chunk)); |
| 6363 | return -EIO; |
| 6364 | } |
| 6365 | if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) || |
| 6366 | (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) || |
| 6367 | (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) || |
| 6368 | (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) || |
| 6369 | (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) || |
| 6370 | ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 && |
| 6371 | num_stripes != 1)) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6372 | btrfs_err(fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6373 | "invalid num_stripes:sub_stripes %u:%u for profile %llu", |
| 6374 | num_stripes, sub_stripes, |
| 6375 | type & BTRFS_BLOCK_GROUP_PROFILE_MASK); |
| 6376 | return -EIO; |
| 6377 | } |
| 6378 | |
| 6379 | return 0; |
| 6380 | } |
| 6381 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6382 | 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] | 6383 | struct extent_buffer *leaf, |
| 6384 | struct btrfs_chunk *chunk) |
| 6385 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6386 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6387 | struct map_lookup *map; |
| 6388 | struct extent_map *em; |
| 6389 | u64 logical; |
| 6390 | u64 length; |
| 6391 | u64 devid; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6392 | u8 uuid[BTRFS_UUID_SIZE]; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6393 | int num_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6394 | int ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6395 | int i; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6396 | |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 6397 | logical = key->offset; |
| 6398 | length = btrfs_chunk_length(leaf, chunk); |
Qu Wenruo | f04b772 | 2015-12-15 09:14:37 +0800 | [diff] [blame] | 6399 | num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6400 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6401 | ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical); |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6402 | if (ret) |
| 6403 | return ret; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6404 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6405 | read_lock(&map_tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6406 | em = lookup_extent_mapping(&map_tree->map_tree, logical, 1); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6407 | read_unlock(&map_tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6408 | |
| 6409 | /* already mapped? */ |
| 6410 | if (em && em->start <= logical && em->start + em->len > logical) { |
| 6411 | free_extent_map(em); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6412 | return 0; |
| 6413 | } else if (em) { |
| 6414 | free_extent_map(em); |
| 6415 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6416 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 6417 | em = alloc_extent_map(); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6418 | if (!em) |
| 6419 | return -ENOMEM; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6420 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6421 | if (!map) { |
| 6422 | free_extent_map(em); |
| 6423 | return -ENOMEM; |
| 6424 | } |
| 6425 | |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 6426 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 6427 | em->map_lookup = map; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6428 | em->start = logical; |
| 6429 | em->len = length; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 6430 | em->orig_start = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6431 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6432 | em->block_len = em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6433 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6434 | map->num_stripes = num_stripes; |
| 6435 | map->io_width = btrfs_chunk_io_width(leaf, chunk); |
| 6436 | map->io_align = btrfs_chunk_io_align(leaf, chunk); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6437 | map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
| 6438 | map->type = btrfs_chunk_type(leaf, chunk); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6439 | map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6440 | for (i = 0; i < num_stripes; i++) { |
| 6441 | map->stripes[i].physical = |
| 6442 | btrfs_stripe_offset_nr(leaf, chunk, i); |
| 6443 | devid = btrfs_stripe_devid_nr(leaf, chunk, i); |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6444 | read_extent_buffer(leaf, uuid, (unsigned long) |
| 6445 | btrfs_stripe_dev_uuid_nr(chunk, i), |
| 6446 | BTRFS_UUID_SIZE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6447 | map->stripes[i].dev = btrfs_find_device(fs_info, devid, |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6448 | uuid, NULL); |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 6449 | if (!map->stripes[i].dev && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6450 | !btrfs_test_opt(fs_info, DEGRADED)) { |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6451 | free_extent_map(em); |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6452 | btrfs_report_missing_device(fs_info, devid, uuid); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6453 | return -EIO; |
| 6454 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6455 | if (!map->stripes[i].dev) { |
| 6456 | map->stripes[i].dev = |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6457 | add_missing_dev(fs_info->fs_devices, devid, |
| 6458 | uuid); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6459 | if (!map->stripes[i].dev) { |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6460 | free_extent_map(em); |
| 6461 | return -EIO; |
| 6462 | } |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6463 | btrfs_report_missing_device(fs_info, devid, uuid); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6464 | } |
| 6465 | map->stripes[i].dev->in_fs_metadata = 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6466 | } |
| 6467 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6468 | write_lock(&map_tree->map_tree.lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 6469 | ret = add_extent_mapping(&map_tree->map_tree, em, 0); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6470 | write_unlock(&map_tree->map_tree.lock); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6471 | BUG_ON(ret); /* Tree corruption */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6472 | free_extent_map(em); |
| 6473 | |
| 6474 | return 0; |
| 6475 | } |
| 6476 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6477 | static void fill_device_from_item(struct extent_buffer *leaf, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6478 | struct btrfs_dev_item *dev_item, |
| 6479 | struct btrfs_device *device) |
| 6480 | { |
| 6481 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6482 | |
| 6483 | device->devid = btrfs_device_id(leaf, dev_item); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 6484 | device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item); |
| 6485 | device->total_bytes = device->disk_total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 6486 | device->commit_total_bytes = device->disk_total_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6487 | device->bytes_used = btrfs_device_bytes_used(leaf, dev_item); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 6488 | device->commit_bytes_used = device->bytes_used; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6489 | device->type = btrfs_device_type(leaf, dev_item); |
| 6490 | device->io_align = btrfs_device_io_align(leaf, dev_item); |
| 6491 | device->io_width = btrfs_device_io_width(leaf, dev_item); |
| 6492 | device->sector_size = btrfs_device_sector_size(leaf, dev_item); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 6493 | WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID); |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 6494 | device->is_tgtdev_for_dev_replace = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6495 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 6496 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 6497 | read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6498 | } |
| 6499 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6500 | 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] | 6501 | u8 *fsid) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6502 | { |
| 6503 | struct btrfs_fs_devices *fs_devices; |
| 6504 | int ret; |
| 6505 | |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6506 | BUG_ON(!mutex_is_locked(&uuid_mutex)); |
David Sterba | 2dfeca9 | 2017-06-14 02:48:07 +0200 | [diff] [blame] | 6507 | ASSERT(fsid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6508 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6509 | fs_devices = fs_info->fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6510 | while (fs_devices) { |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6511 | if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE)) |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6512 | return fs_devices; |
| 6513 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6514 | fs_devices = fs_devices->seed; |
| 6515 | } |
| 6516 | |
| 6517 | fs_devices = find_fsid(fsid); |
| 6518 | if (!fs_devices) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6519 | if (!btrfs_test_opt(fs_info, DEGRADED)) |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6520 | return ERR_PTR(-ENOENT); |
| 6521 | |
| 6522 | fs_devices = alloc_fs_devices(fsid); |
| 6523 | if (IS_ERR(fs_devices)) |
| 6524 | return fs_devices; |
| 6525 | |
| 6526 | fs_devices->seeding = 1; |
| 6527 | fs_devices->opened = 1; |
| 6528 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6529 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6530 | |
| 6531 | fs_devices = clone_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6532 | if (IS_ERR(fs_devices)) |
| 6533 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6534 | |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 6535 | ret = __btrfs_open_devices(fs_devices, FMODE_READ, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6536 | fs_info->bdev_holder); |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 6537 | if (ret) { |
| 6538 | free_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6539 | fs_devices = ERR_PTR(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6540 | goto out; |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 6541 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6542 | |
| 6543 | if (!fs_devices->seeding) { |
| 6544 | __btrfs_close_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6545 | free_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6546 | fs_devices = ERR_PTR(-EINVAL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6547 | goto out; |
| 6548 | } |
| 6549 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6550 | fs_devices->seed = fs_info->fs_devices->seed; |
| 6551 | fs_info->fs_devices->seed = fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6552 | out: |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6553 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6554 | } |
| 6555 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6556 | static int read_one_dev(struct btrfs_fs_info *fs_info, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6557 | struct extent_buffer *leaf, |
| 6558 | struct btrfs_dev_item *dev_item) |
| 6559 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6560 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6561 | struct btrfs_device *device; |
| 6562 | u64 devid; |
| 6563 | int ret; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6564 | u8 fs_uuid[BTRFS_FSID_SIZE]; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6565 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 6566 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6567 | devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 6568 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6569 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 6570 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6571 | BTRFS_FSID_SIZE); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6572 | |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 6573 | if (memcmp(fs_uuid, fs_info->fsid, BTRFS_FSID_SIZE)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6574 | fs_devices = open_seed_devices(fs_info, fs_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6575 | if (IS_ERR(fs_devices)) |
| 6576 | return PTR_ERR(fs_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6577 | } |
| 6578 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6579 | device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6580 | if (!device) { |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6581 | if (!btrfs_test_opt(fs_info, DEGRADED)) { |
| 6582 | btrfs_report_missing_device(fs_info, devid, dev_uuid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6583 | return -EIO; |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6584 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6585 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6586 | device = add_missing_dev(fs_devices, devid, dev_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6587 | if (!device) |
| 6588 | return -ENOMEM; |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6589 | btrfs_report_missing_device(fs_info, devid, dev_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6590 | } else { |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6591 | if (!device->bdev) { |
| 6592 | btrfs_report_missing_device(fs_info, devid, dev_uuid); |
| 6593 | if (!btrfs_test_opt(fs_info, DEGRADED)) |
| 6594 | return -EIO; |
| 6595 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6596 | |
| 6597 | if(!device->bdev && !device->missing) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6598 | /* |
| 6599 | * this happens when a device that was properly setup |
| 6600 | * in the device info lists suddenly goes bad. |
| 6601 | * device->bdev is NULL, and so we have to set |
| 6602 | * device->missing to one here |
| 6603 | */ |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6604 | device->fs_devices->missing_devices++; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6605 | device->missing = 1; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6606 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6607 | |
| 6608 | /* Move the device to its own fs_devices */ |
| 6609 | if (device->fs_devices != fs_devices) { |
| 6610 | ASSERT(device->missing); |
| 6611 | |
| 6612 | list_move(&device->dev_list, &fs_devices->devices); |
| 6613 | device->fs_devices->num_devices--; |
| 6614 | fs_devices->num_devices++; |
| 6615 | |
| 6616 | device->fs_devices->missing_devices--; |
| 6617 | fs_devices->missing_devices++; |
| 6618 | |
| 6619 | device->fs_devices = fs_devices; |
| 6620 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6621 | } |
| 6622 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6623 | if (device->fs_devices != fs_info->fs_devices) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6624 | BUG_ON(device->writeable); |
| 6625 | if (device->generation != |
| 6626 | btrfs_device_generation(leaf, dev_item)) |
| 6627 | return -EINVAL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 6628 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6629 | |
| 6630 | fill_device_from_item(leaf, dev_item, device); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6631 | device->in_fs_metadata = 1; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 6632 | if (device->writeable && !device->is_tgtdev_for_dev_replace) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6633 | device->fs_devices->total_rw_bytes += device->total_bytes; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 6634 | atomic64_add(device->total_bytes - device->bytes_used, |
| 6635 | &fs_info->free_chunk_space); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 6636 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6637 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6638 | return ret; |
| 6639 | } |
| 6640 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 6641 | int btrfs_read_sys_array(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6642 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 6643 | struct btrfs_root *root = fs_info->tree_root; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6644 | struct btrfs_super_block *super_copy = fs_info->super_copy; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6645 | struct extent_buffer *sb; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6646 | struct btrfs_disk_key *disk_key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6647 | struct btrfs_chunk *chunk; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6648 | u8 *array_ptr; |
| 6649 | unsigned long sb_array_offset; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6650 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6651 | u32 num_stripes; |
| 6652 | u32 array_size; |
| 6653 | u32 len = 0; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6654 | u32 cur_offset; |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6655 | u64 type; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6656 | struct btrfs_key key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6657 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6658 | ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize); |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 6659 | /* |
| 6660 | * This will create extent buffer of nodesize, superblock size is |
| 6661 | * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will |
| 6662 | * overallocate but we can keep it as-is, only the first page is used. |
| 6663 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6664 | sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 6665 | if (IS_ERR(sb)) |
| 6666 | return PTR_ERR(sb); |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 6667 | set_extent_buffer_uptodate(sb); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 6668 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0); |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 6669 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6670 | * 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] | 6671 | * set_extent_buffer_uptodate() call does not properly mark all it's |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 6672 | * pages up-to-date when the page is larger: extent does not cover the |
| 6673 | * whole page and consequently check_page_uptodate does not find all |
| 6674 | * the page's extents up-to-date (the hole beyond sb), |
| 6675 | * write_extent_buffer then triggers a WARN_ON. |
| 6676 | * |
| 6677 | * Regular short extents go through mark_extent_buffer_dirty/writeback cycle, |
| 6678 | * but sb spans only this function. Add an explicit SetPageUptodate call |
| 6679 | * to silence the warning eg. on PowerPC 64. |
| 6680 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 6681 | if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE) |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 6682 | SetPageUptodate(sb->pages[0]); |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 6683 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6684 | write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6685 | array_size = btrfs_super_sys_array_size(super_copy); |
| 6686 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6687 | array_ptr = super_copy->sys_chunk_array; |
| 6688 | sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array); |
| 6689 | cur_offset = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6690 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6691 | while (cur_offset < array_size) { |
| 6692 | disk_key = (struct btrfs_disk_key *)array_ptr; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6693 | len = sizeof(*disk_key); |
| 6694 | if (cur_offset + len > array_size) |
| 6695 | goto out_short_read; |
| 6696 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6697 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 6698 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6699 | array_ptr += len; |
| 6700 | sb_array_offset += len; |
| 6701 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6702 | |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6703 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6704 | chunk = (struct btrfs_chunk *)sb_array_offset; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6705 | /* |
| 6706 | * At least one btrfs_chunk with one stripe must be |
| 6707 | * present, exact stripe count check comes afterwards |
| 6708 | */ |
| 6709 | len = btrfs_chunk_item_size(1); |
| 6710 | if (cur_offset + len > array_size) |
| 6711 | goto out_short_read; |
| 6712 | |
| 6713 | num_stripes = btrfs_chunk_num_stripes(sb, chunk); |
David Sterba | f5cdedd | 2015-11-30 17:27:06 +0100 | [diff] [blame] | 6714 | if (!num_stripes) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6715 | btrfs_err(fs_info, |
| 6716 | "invalid number of stripes %u in sys_array at offset %u", |
David Sterba | f5cdedd | 2015-11-30 17:27:06 +0100 | [diff] [blame] | 6717 | num_stripes, cur_offset); |
| 6718 | ret = -EIO; |
| 6719 | break; |
| 6720 | } |
| 6721 | |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6722 | type = btrfs_chunk_type(sb, chunk); |
| 6723 | if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6724 | btrfs_err(fs_info, |
Liu Bo | e06cd3d | 2016-06-03 12:05:15 -0700 | [diff] [blame] | 6725 | "invalid chunk type %llu in sys_array at offset %u", |
| 6726 | type, cur_offset); |
| 6727 | ret = -EIO; |
| 6728 | break; |
| 6729 | } |
| 6730 | |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6731 | len = btrfs_chunk_item_size(num_stripes); |
| 6732 | if (cur_offset + len > array_size) |
| 6733 | goto out_short_read; |
| 6734 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6735 | ret = read_one_chunk(fs_info, &key, sb, chunk); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6736 | if (ret) |
| 6737 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6738 | } else { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6739 | btrfs_err(fs_info, |
| 6740 | "unexpected item type %u in sys_array at offset %u", |
| 6741 | (u32)key.type, cur_offset); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6742 | ret = -EIO; |
| 6743 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6744 | } |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6745 | array_ptr += len; |
| 6746 | sb_array_offset += len; |
| 6747 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6748 | } |
Liu Bo | d865177 | 2016-06-03 17:41:42 -0700 | [diff] [blame] | 6749 | clear_extent_buffer_uptodate(sb); |
Liu Bo | 1c8b5b6 | 2016-05-13 17:06:59 -0700 | [diff] [blame] | 6750 | free_extent_buffer_stale(sb); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6751 | return ret; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6752 | |
| 6753 | out_short_read: |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 6754 | 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] | 6755 | len, cur_offset); |
Liu Bo | d865177 | 2016-06-03 17:41:42 -0700 | [diff] [blame] | 6756 | clear_extent_buffer_uptodate(sb); |
Liu Bo | 1c8b5b6 | 2016-05-13 17:06:59 -0700 | [diff] [blame] | 6757 | free_extent_buffer_stale(sb); |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6758 | return -EIO; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6759 | } |
| 6760 | |
Qu Wenruo | c550245 | 2017-03-09 09:34:42 +0800 | [diff] [blame] | 6761 | void btrfs_report_missing_device(struct btrfs_fs_info *fs_info, u64 devid, |
| 6762 | u8 *uuid) |
| 6763 | { |
| 6764 | btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing", devid, uuid); |
| 6765 | } |
| 6766 | |
Qu Wenruo | 21634a1 | 2017-03-09 09:34:36 +0800 | [diff] [blame] | 6767 | /* |
| 6768 | * Check if all chunks in the fs are OK for read-write degraded mount |
| 6769 | * |
| 6770 | * Return true if all chunks meet the minimal RW mount requirements. |
| 6771 | * Return false if any chunk doesn't meet the minimal RW mount requirements. |
| 6772 | */ |
| 6773 | bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info) |
| 6774 | { |
| 6775 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
| 6776 | struct extent_map *em; |
| 6777 | u64 next_start = 0; |
| 6778 | bool ret = true; |
| 6779 | |
| 6780 | read_lock(&map_tree->map_tree.lock); |
| 6781 | em = lookup_extent_mapping(&map_tree->map_tree, 0, (u64)-1); |
| 6782 | read_unlock(&map_tree->map_tree.lock); |
| 6783 | /* No chunk at all? Return false anyway */ |
| 6784 | if (!em) { |
| 6785 | ret = false; |
| 6786 | goto out; |
| 6787 | } |
| 6788 | while (em) { |
| 6789 | struct map_lookup *map; |
| 6790 | int missing = 0; |
| 6791 | int max_tolerated; |
| 6792 | int i; |
| 6793 | |
| 6794 | map = em->map_lookup; |
| 6795 | max_tolerated = |
| 6796 | btrfs_get_num_tolerated_disk_barrier_failures( |
| 6797 | map->type); |
| 6798 | for (i = 0; i < map->num_stripes; i++) { |
| 6799 | struct btrfs_device *dev = map->stripes[i].dev; |
| 6800 | |
| 6801 | if (!dev || !dev->bdev || dev->missing || |
| 6802 | dev->last_flush_error) |
| 6803 | missing++; |
| 6804 | } |
| 6805 | if (missing > max_tolerated) { |
| 6806 | btrfs_warn(fs_info, |
| 6807 | "chunk %llu missing %d devices, max tolerance is %d for writeable mount", |
| 6808 | em->start, missing, max_tolerated); |
| 6809 | free_extent_map(em); |
| 6810 | ret = false; |
| 6811 | goto out; |
| 6812 | } |
| 6813 | next_start = extent_map_end(em); |
| 6814 | free_extent_map(em); |
| 6815 | |
| 6816 | read_lock(&map_tree->map_tree.lock); |
| 6817 | em = lookup_extent_mapping(&map_tree->map_tree, next_start, |
| 6818 | (u64)(-1) - next_start); |
| 6819 | read_unlock(&map_tree->map_tree.lock); |
| 6820 | } |
| 6821 | out: |
| 6822 | return ret; |
| 6823 | } |
| 6824 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 6825 | int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6826 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 6827 | struct btrfs_root *root = fs_info->chunk_root; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6828 | struct btrfs_path *path; |
| 6829 | struct extent_buffer *leaf; |
| 6830 | struct btrfs_key key; |
| 6831 | struct btrfs_key found_key; |
| 6832 | int ret; |
| 6833 | int slot; |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 6834 | u64 total_dev = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6835 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6836 | path = btrfs_alloc_path(); |
| 6837 | if (!path) |
| 6838 | return -ENOMEM; |
| 6839 | |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6840 | mutex_lock(&uuid_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 6841 | mutex_lock(&fs_info->chunk_mutex); |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6842 | |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6843 | /* |
| 6844 | * Read all device items, and then all the chunk items. All |
| 6845 | * device items are found before any chunk item (their object id |
| 6846 | * is smaller than the lowest possible object id for a chunk |
| 6847 | * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID). |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6848 | */ |
| 6849 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 6850 | key.offset = 0; |
| 6851 | key.type = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6852 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Zhao Lei | ab59381 | 2010-03-25 12:34:49 +0000 | [diff] [blame] | 6853 | if (ret < 0) |
| 6854 | goto error; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6855 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6856 | leaf = path->nodes[0]; |
| 6857 | slot = path->slots[0]; |
| 6858 | if (slot >= btrfs_header_nritems(leaf)) { |
| 6859 | ret = btrfs_next_leaf(root, path); |
| 6860 | if (ret == 0) |
| 6861 | continue; |
| 6862 | if (ret < 0) |
| 6863 | goto error; |
| 6864 | break; |
| 6865 | } |
| 6866 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6867 | if (found_key.type == BTRFS_DEV_ITEM_KEY) { |
| 6868 | struct btrfs_dev_item *dev_item; |
| 6869 | dev_item = btrfs_item_ptr(leaf, slot, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6870 | struct btrfs_dev_item); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6871 | ret = read_one_dev(fs_info, leaf, dev_item); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6872 | if (ret) |
| 6873 | goto error; |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 6874 | total_dev++; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6875 | } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 6876 | struct btrfs_chunk *chunk; |
| 6877 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6878 | ret = read_one_chunk(fs_info, &found_key, leaf, chunk); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6879 | if (ret) |
| 6880 | goto error; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6881 | } |
| 6882 | path->slots[0]++; |
| 6883 | } |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 6884 | |
| 6885 | /* |
| 6886 | * After loading chunk tree, we've got all device information, |
| 6887 | * do another round of validation checks. |
| 6888 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6889 | if (total_dev != fs_info->fs_devices->total_devices) { |
| 6890 | btrfs_err(fs_info, |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 6891 | "super_num_devices %llu mismatch with num_devices %llu found here", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6892 | btrfs_super_num_devices(fs_info->super_copy), |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 6893 | total_dev); |
| 6894 | ret = -EINVAL; |
| 6895 | goto error; |
| 6896 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6897 | if (btrfs_super_total_bytes(fs_info->super_copy) < |
| 6898 | fs_info->fs_devices->total_rw_bytes) { |
| 6899 | btrfs_err(fs_info, |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 6900 | "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6901 | btrfs_super_total_bytes(fs_info->super_copy), |
| 6902 | fs_info->fs_devices->total_rw_bytes); |
Liu Bo | 99e3ecf | 2016-06-03 12:05:14 -0700 | [diff] [blame] | 6903 | ret = -EINVAL; |
| 6904 | goto error; |
| 6905 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6906 | ret = 0; |
| 6907 | error: |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 6908 | mutex_unlock(&fs_info->chunk_mutex); |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6909 | mutex_unlock(&uuid_mutex); |
| 6910 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6911 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6912 | return ret; |
| 6913 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6914 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 6915 | void btrfs_init_devices_late(struct btrfs_fs_info *fs_info) |
| 6916 | { |
| 6917 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 6918 | struct btrfs_device *device; |
| 6919 | |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 6920 | while (fs_devices) { |
| 6921 | mutex_lock(&fs_devices->device_list_mutex); |
| 6922 | list_for_each_entry(device, &fs_devices->devices, dev_list) |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 6923 | device->fs_info = fs_info; |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 6924 | mutex_unlock(&fs_devices->device_list_mutex); |
| 6925 | |
| 6926 | fs_devices = fs_devices->seed; |
| 6927 | } |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 6928 | } |
| 6929 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6930 | static void __btrfs_reset_dev_stats(struct btrfs_device *dev) |
| 6931 | { |
| 6932 | int i; |
| 6933 | |
| 6934 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 6935 | btrfs_dev_stat_reset(dev, i); |
| 6936 | } |
| 6937 | |
| 6938 | int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info) |
| 6939 | { |
| 6940 | struct btrfs_key key; |
| 6941 | struct btrfs_key found_key; |
| 6942 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 6943 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 6944 | struct extent_buffer *eb; |
| 6945 | int slot; |
| 6946 | int ret = 0; |
| 6947 | struct btrfs_device *device; |
| 6948 | struct btrfs_path *path = NULL; |
| 6949 | int i; |
| 6950 | |
| 6951 | path = btrfs_alloc_path(); |
| 6952 | if (!path) { |
| 6953 | ret = -ENOMEM; |
| 6954 | goto out; |
| 6955 | } |
| 6956 | |
| 6957 | mutex_lock(&fs_devices->device_list_mutex); |
| 6958 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
| 6959 | int item_size; |
| 6960 | struct btrfs_dev_stats_item *ptr; |
| 6961 | |
David Sterba | 242e295 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 6962 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 6963 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6964 | key.offset = device->devid; |
| 6965 | ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0); |
| 6966 | if (ret) { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6967 | __btrfs_reset_dev_stats(device); |
| 6968 | device->dev_stats_valid = 1; |
| 6969 | btrfs_release_path(path); |
| 6970 | continue; |
| 6971 | } |
| 6972 | slot = path->slots[0]; |
| 6973 | eb = path->nodes[0]; |
| 6974 | btrfs_item_key_to_cpu(eb, &found_key, slot); |
| 6975 | item_size = btrfs_item_size_nr(eb, slot); |
| 6976 | |
| 6977 | ptr = btrfs_item_ptr(eb, slot, |
| 6978 | struct btrfs_dev_stats_item); |
| 6979 | |
| 6980 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 6981 | if (item_size >= (1 + i) * sizeof(__le64)) |
| 6982 | btrfs_dev_stat_set(device, i, |
| 6983 | btrfs_dev_stats_value(eb, ptr, i)); |
| 6984 | else |
| 6985 | btrfs_dev_stat_reset(device, i); |
| 6986 | } |
| 6987 | |
| 6988 | device->dev_stats_valid = 1; |
| 6989 | btrfs_dev_stat_print_on_load(device); |
| 6990 | btrfs_release_path(path); |
| 6991 | } |
| 6992 | mutex_unlock(&fs_devices->device_list_mutex); |
| 6993 | |
| 6994 | out: |
| 6995 | btrfs_free_path(path); |
| 6996 | return ret < 0 ? ret : 0; |
| 6997 | } |
| 6998 | |
| 6999 | static int update_dev_stat_item(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7000 | struct btrfs_fs_info *fs_info, |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7001 | struct btrfs_device *device) |
| 7002 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7003 | struct btrfs_root *dev_root = fs_info->dev_root; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7004 | struct btrfs_path *path; |
| 7005 | struct btrfs_key key; |
| 7006 | struct extent_buffer *eb; |
| 7007 | struct btrfs_dev_stats_item *ptr; |
| 7008 | int ret; |
| 7009 | int i; |
| 7010 | |
David Sterba | 242e295 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 7011 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 7012 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7013 | key.offset = device->devid; |
| 7014 | |
| 7015 | path = btrfs_alloc_path(); |
David Sterba | fa25299 | 2017-02-15 09:35:01 +0100 | [diff] [blame] | 7016 | if (!path) |
| 7017 | return -ENOMEM; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7018 | ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1); |
| 7019 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7020 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7021 | "error %d while searching for dev_stats item for device %s", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7022 | ret, rcu_str_deref(device->name)); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7023 | goto out; |
| 7024 | } |
| 7025 | |
| 7026 | if (ret == 0 && |
| 7027 | btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) { |
| 7028 | /* need to delete old one and insert a new one */ |
| 7029 | ret = btrfs_del_item(trans, dev_root, path); |
| 7030 | if (ret != 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7031 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7032 | "delete too small dev_stats item for device %s failed %d", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 7033 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7034 | goto out; |
| 7035 | } |
| 7036 | ret = 1; |
| 7037 | } |
| 7038 | |
| 7039 | if (ret == 1) { |
| 7040 | /* need to insert a new item */ |
| 7041 | btrfs_release_path(path); |
| 7042 | ret = btrfs_insert_empty_item(trans, dev_root, path, |
| 7043 | &key, sizeof(*ptr)); |
| 7044 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7045 | btrfs_warn_in_rcu(fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7046 | "insert dev_stats item for device %s failed %d", |
| 7047 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7048 | goto out; |
| 7049 | } |
| 7050 | } |
| 7051 | |
| 7052 | eb = path->nodes[0]; |
| 7053 | ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item); |
| 7054 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7055 | btrfs_set_dev_stats_value(eb, ptr, i, |
| 7056 | btrfs_dev_stat_read(device, i)); |
| 7057 | btrfs_mark_buffer_dirty(eb); |
| 7058 | |
| 7059 | out: |
| 7060 | btrfs_free_path(path); |
| 7061 | return ret; |
| 7062 | } |
| 7063 | |
| 7064 | /* |
| 7065 | * called from commit_transaction. Writes all changed device stats to disk. |
| 7066 | */ |
| 7067 | int btrfs_run_dev_stats(struct btrfs_trans_handle *trans, |
| 7068 | struct btrfs_fs_info *fs_info) |
| 7069 | { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7070 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7071 | struct btrfs_device *device; |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7072 | int stats_cnt; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7073 | int ret = 0; |
| 7074 | |
| 7075 | mutex_lock(&fs_devices->device_list_mutex); |
| 7076 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7077 | if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device)) |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7078 | continue; |
| 7079 | |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7080 | stats_cnt = atomic_read(&device->dev_stats_ccnt); |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 7081 | ret = update_dev_stat_item(trans, fs_info, device); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7082 | if (!ret) |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 7083 | atomic_sub(stats_cnt, &device->dev_stats_ccnt); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7084 | } |
| 7085 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7086 | |
| 7087 | return ret; |
| 7088 | } |
| 7089 | |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7090 | void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index) |
| 7091 | { |
| 7092 | btrfs_dev_stat_inc(dev, index); |
| 7093 | btrfs_dev_stat_print_on_error(dev); |
| 7094 | } |
| 7095 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 7096 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev) |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7097 | { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7098 | if (!dev->dev_stats_valid) |
| 7099 | return; |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7100 | btrfs_err_rl_in_rcu(dev->fs_info, |
David Sterba | b14af3b | 2015-10-08 10:43:10 +0200 | [diff] [blame] | 7101 | "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] | 7102 | rcu_str_deref(dev->name), |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7103 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 7104 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 7105 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7106 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 7107 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 7108 | } |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7109 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7110 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev) |
| 7111 | { |
Stefan Behrens | a98cdb8 | 2012-07-17 09:02:11 -0600 | [diff] [blame] | 7112 | int i; |
| 7113 | |
| 7114 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7115 | if (btrfs_dev_stat_read(dev, i) != 0) |
| 7116 | break; |
| 7117 | if (i == BTRFS_DEV_STAT_VALUES_MAX) |
| 7118 | return; /* all values == 0, suppress message */ |
| 7119 | |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 7120 | btrfs_info_in_rcu(dev->fs_info, |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 7121 | "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] | 7122 | rcu_str_deref(dev->name), |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7123 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 7124 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 7125 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
| 7126 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 7127 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
| 7128 | } |
| 7129 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7130 | int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info, |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 7131 | struct btrfs_ioctl_get_dev_stats *stats) |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7132 | { |
| 7133 | struct btrfs_device *dev; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7134 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7135 | int i; |
| 7136 | |
| 7137 | mutex_lock(&fs_devices->device_list_mutex); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7138 | dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7139 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7140 | |
| 7141 | if (!dev) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7142 | btrfs_warn(fs_info, "get dev_stats failed, device not found"); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7143 | return -ENODEV; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7144 | } else if (!dev->dev_stats_valid) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7145 | btrfs_warn(fs_info, "get dev_stats failed, not yet valid"); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 7146 | return -ENODEV; |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 7147 | } else if (stats->flags & BTRFS_DEV_STATS_RESET) { |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 7148 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 7149 | if (stats->nr_items > i) |
| 7150 | stats->values[i] = |
| 7151 | btrfs_dev_stat_read_and_reset(dev, i); |
| 7152 | else |
| 7153 | btrfs_dev_stat_reset(dev, i); |
| 7154 | } |
| 7155 | } else { |
| 7156 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 7157 | if (stats->nr_items > i) |
| 7158 | stats->values[i] = btrfs_dev_stat_read(dev, i); |
| 7159 | } |
| 7160 | if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX) |
| 7161 | stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX; |
| 7162 | return 0; |
| 7163 | } |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7164 | |
David Sterba | da353f6 | 2017-02-14 17:55:53 +0100 | [diff] [blame] | 7165 | void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path) |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7166 | { |
| 7167 | struct buffer_head *bh; |
| 7168 | struct btrfs_super_block *disk_super; |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7169 | int copy_num; |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7170 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7171 | if (!bdev) |
| 7172 | return; |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7173 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7174 | for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX; |
| 7175 | copy_num++) { |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7176 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 7177 | if (btrfs_read_dev_one_super(bdev, copy_num, &bh)) |
| 7178 | continue; |
| 7179 | |
| 7180 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 7181 | |
| 7182 | memset(&disk_super->magic, 0, sizeof(disk_super->magic)); |
| 7183 | set_buffer_dirty(bh); |
| 7184 | sync_dirty_buffer(bh); |
| 7185 | brelse(bh); |
| 7186 | } |
| 7187 | |
| 7188 | /* Notify udev that device has changed */ |
| 7189 | btrfs_kobject_uevent(bdev, KOBJ_CHANGE); |
| 7190 | |
| 7191 | /* Update ctime/mtime for device path for libblkid */ |
| 7192 | update_dev_time(device_path); |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 7193 | } |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7194 | |
| 7195 | /* |
| 7196 | * Update the size of all devices, which is used for writing out the |
| 7197 | * super blocks. |
| 7198 | */ |
| 7199 | void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info) |
| 7200 | { |
| 7201 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7202 | struct btrfs_device *curr, *next; |
| 7203 | |
| 7204 | if (list_empty(&fs_devices->resized_devices)) |
| 7205 | return; |
| 7206 | |
| 7207 | mutex_lock(&fs_devices->device_list_mutex); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7208 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7209 | list_for_each_entry_safe(curr, next, &fs_devices->resized_devices, |
| 7210 | resized_list) { |
| 7211 | list_del_init(&curr->resized_list); |
| 7212 | curr->commit_total_bytes = curr->disk_total_bytes; |
| 7213 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7214 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 7215 | mutex_unlock(&fs_devices->device_list_mutex); |
| 7216 | } |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7217 | |
| 7218 | /* Must be invoked during the transaction commit */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7219 | 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] | 7220 | struct btrfs_transaction *transaction) |
| 7221 | { |
| 7222 | struct extent_map *em; |
| 7223 | struct map_lookup *map; |
| 7224 | struct btrfs_device *dev; |
| 7225 | int i; |
| 7226 | |
| 7227 | if (list_empty(&transaction->pending_chunks)) |
| 7228 | return; |
| 7229 | |
| 7230 | /* In order to kick the device replace finish process */ |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7231 | mutex_lock(&fs_info->chunk_mutex); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7232 | list_for_each_entry(em, &transaction->pending_chunks, list) { |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 7233 | map = em->map_lookup; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7234 | |
| 7235 | for (i = 0; i < map->num_stripes; i++) { |
| 7236 | dev = map->stripes[i].dev; |
| 7237 | dev->commit_bytes_used = dev->bytes_used; |
| 7238 | } |
| 7239 | } |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 7240 | mutex_unlock(&fs_info->chunk_mutex); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 7241 | } |
Anand Jain | 5a13f43 | 2015-03-10 06:38:31 +0800 | [diff] [blame] | 7242 | |
| 7243 | void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info) |
| 7244 | { |
| 7245 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7246 | while (fs_devices) { |
| 7247 | fs_devices->fs_info = fs_info; |
| 7248 | fs_devices = fs_devices->seed; |
| 7249 | } |
| 7250 | } |
| 7251 | |
| 7252 | void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info) |
| 7253 | { |
| 7254 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 7255 | while (fs_devices) { |
| 7256 | fs_devices->fs_info = NULL; |
| 7257 | fs_devices = fs_devices->seed; |
| 7258 | } |
| 7259 | } |