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 | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 23 | #include <linux/random.h> |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 24 | #include <linux/iocontext.h> |
Ben Hutchings | 6f88a44 | 2010-12-29 14:55:03 +0000 | [diff] [blame] | 25 | #include <linux/capability.h> |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 26 | #include <linux/ratelimit.h> |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 27 | #include <linux/kthread.h> |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 28 | #include <linux/raid/pq.h> |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 29 | #include <linux/semaphore.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, |
| 137 | struct btrfs_root *root, |
| 138 | struct btrfs_device *device); |
| 139 | static int btrfs_relocate_sys_chunks(struct btrfs_root *root); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 140 | static void __btrfs_reset_dev_stats(struct btrfs_device *dev); |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 141 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 142 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *device); |
David Sterba | 87ad58c | 2015-11-27 18:49:39 +0100 | [diff] [blame] | 143 | static void btrfs_close_one_device(struct btrfs_device *device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 144 | |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 145 | DEFINE_MUTEX(uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 146 | static LIST_HEAD(fs_uuids); |
Anand Jain | c73eccf | 2015-03-10 06:38:30 +0800 | [diff] [blame] | 147 | struct list_head *btrfs_get_fs_uuids(void) |
| 148 | { |
| 149 | return &fs_uuids; |
| 150 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 151 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 152 | static struct btrfs_fs_devices *__alloc_fs_devices(void) |
| 153 | { |
| 154 | struct btrfs_fs_devices *fs_devs; |
| 155 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 156 | fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 157 | if (!fs_devs) |
| 158 | return ERR_PTR(-ENOMEM); |
| 159 | |
| 160 | mutex_init(&fs_devs->device_list_mutex); |
| 161 | |
| 162 | INIT_LIST_HEAD(&fs_devs->devices); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 163 | INIT_LIST_HEAD(&fs_devs->resized_devices); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 164 | INIT_LIST_HEAD(&fs_devs->alloc_list); |
| 165 | INIT_LIST_HEAD(&fs_devs->list); |
| 166 | |
| 167 | return fs_devs; |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * alloc_fs_devices - allocate struct btrfs_fs_devices |
| 172 | * @fsid: a pointer to UUID for this FS. If NULL a new UUID is |
| 173 | * generated. |
| 174 | * |
| 175 | * Return: a pointer to a new &struct btrfs_fs_devices on success; |
| 176 | * ERR_PTR() on error. Returned struct is not linked onto any lists and |
| 177 | * can be destroyed with kfree() right away. |
| 178 | */ |
| 179 | static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid) |
| 180 | { |
| 181 | struct btrfs_fs_devices *fs_devs; |
| 182 | |
| 183 | fs_devs = __alloc_fs_devices(); |
| 184 | if (IS_ERR(fs_devs)) |
| 185 | return fs_devs; |
| 186 | |
| 187 | if (fsid) |
| 188 | memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE); |
| 189 | else |
| 190 | generate_random_uuid(fs_devs->fsid); |
| 191 | |
| 192 | return fs_devs; |
| 193 | } |
| 194 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 195 | static void free_fs_devices(struct btrfs_fs_devices *fs_devices) |
| 196 | { |
| 197 | struct btrfs_device *device; |
| 198 | WARN_ON(fs_devices->opened); |
| 199 | while (!list_empty(&fs_devices->devices)) { |
| 200 | device = list_entry(fs_devices->devices.next, |
| 201 | struct btrfs_device, dev_list); |
| 202 | list_del(&device->dev_list); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 203 | rcu_string_free(device->name); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 204 | kfree(device); |
| 205 | } |
| 206 | kfree(fs_devices); |
| 207 | } |
| 208 | |
Lukas Czerner | b8b8ff5 | 2012-12-06 19:25:48 +0000 | [diff] [blame] | 209 | static void btrfs_kobject_uevent(struct block_device *bdev, |
| 210 | enum kobject_action action) |
| 211 | { |
| 212 | int ret; |
| 213 | |
| 214 | ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action); |
| 215 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 216 | pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n", |
Lukas Czerner | b8b8ff5 | 2012-12-06 19:25:48 +0000 | [diff] [blame] | 217 | action, |
| 218 | kobject_name(&disk_to_dev(bdev->bd_disk)->kobj), |
| 219 | &disk_to_dev(bdev->bd_disk)->kobj); |
| 220 | } |
| 221 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 222 | void btrfs_cleanup_fs_uuids(void) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 223 | { |
| 224 | struct btrfs_fs_devices *fs_devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 225 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 226 | while (!list_empty(&fs_uuids)) { |
| 227 | fs_devices = list_entry(fs_uuids.next, |
| 228 | struct btrfs_fs_devices, list); |
| 229 | list_del(&fs_devices->list); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 230 | free_fs_devices(fs_devices); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 231 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 232 | } |
| 233 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 234 | static struct btrfs_device *__alloc_device(void) |
| 235 | { |
| 236 | struct btrfs_device *dev; |
| 237 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 238 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 239 | if (!dev) |
| 240 | return ERR_PTR(-ENOMEM); |
| 241 | |
| 242 | INIT_LIST_HEAD(&dev->dev_list); |
| 243 | INIT_LIST_HEAD(&dev->dev_alloc_list); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 244 | INIT_LIST_HEAD(&dev->resized_list); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 245 | |
| 246 | spin_lock_init(&dev->io_lock); |
| 247 | |
| 248 | spin_lock_init(&dev->reada_lock); |
| 249 | atomic_set(&dev->reada_in_flight, 0); |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 250 | atomic_set(&dev->dev_stats_ccnt, 0); |
Sebastian Andrzej Siewior | 546bed6 | 2016-01-15 14:37:15 +0100 | [diff] [blame] | 251 | btrfs_device_data_ordered_init(dev); |
Mel Gorman | d0164ad | 2015-11-06 16:28:21 -0800 | [diff] [blame] | 252 | INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
| 253 | INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 254 | |
| 255 | return dev; |
| 256 | } |
| 257 | |
Chris Mason | a1b32a5 | 2008-09-05 16:09:51 -0400 | [diff] [blame] | 258 | static noinline struct btrfs_device *__find_device(struct list_head *head, |
| 259 | u64 devid, u8 *uuid) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 260 | { |
| 261 | struct btrfs_device *dev; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 262 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 263 | list_for_each_entry(dev, head, dev_list) { |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 264 | if (dev->devid == devid && |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 265 | (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 266 | return dev; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 267 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 268 | } |
| 269 | return NULL; |
| 270 | } |
| 271 | |
Chris Mason | a1b32a5 | 2008-09-05 16:09:51 -0400 | [diff] [blame] | 272 | static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 273 | { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 274 | struct btrfs_fs_devices *fs_devices; |
| 275 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 276 | list_for_each_entry(fs_devices, &fs_uuids, list) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 277 | if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0) |
| 278 | return fs_devices; |
| 279 | } |
| 280 | return NULL; |
| 281 | } |
| 282 | |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 283 | static int |
| 284 | btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder, |
| 285 | int flush, struct block_device **bdev, |
| 286 | struct buffer_head **bh) |
| 287 | { |
| 288 | int ret; |
| 289 | |
| 290 | *bdev = blkdev_get_by_path(device_path, flags, holder); |
| 291 | |
| 292 | if (IS_ERR(*bdev)) { |
| 293 | ret = PTR_ERR(*bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 294 | goto error; |
| 295 | } |
| 296 | |
| 297 | if (flush) |
| 298 | filemap_write_and_wait((*bdev)->bd_inode->i_mapping); |
| 299 | ret = set_blocksize(*bdev, 4096); |
| 300 | if (ret) { |
| 301 | blkdev_put(*bdev, flags); |
| 302 | goto error; |
| 303 | } |
| 304 | invalidate_bdev(*bdev); |
| 305 | *bh = btrfs_read_dev_super(*bdev); |
Anand Jain | 92fc03f | 2015-08-14 18:32:51 +0800 | [diff] [blame] | 306 | if (IS_ERR(*bh)) { |
| 307 | ret = PTR_ERR(*bh); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 308 | blkdev_put(*bdev, flags); |
| 309 | goto error; |
| 310 | } |
| 311 | |
| 312 | return 0; |
| 313 | |
| 314 | error: |
| 315 | *bdev = NULL; |
| 316 | *bh = NULL; |
| 317 | return ret; |
| 318 | } |
| 319 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 320 | static void requeue_list(struct btrfs_pending_bios *pending_bios, |
| 321 | struct bio *head, struct bio *tail) |
| 322 | { |
| 323 | |
| 324 | struct bio *old_head; |
| 325 | |
| 326 | old_head = pending_bios->head; |
| 327 | pending_bios->head = head; |
| 328 | if (pending_bios->tail) |
| 329 | tail->bi_next = old_head; |
| 330 | else |
| 331 | pending_bios->tail = tail; |
| 332 | } |
| 333 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 334 | /* |
| 335 | * we try to collect pending bios for a device so we don't get a large |
| 336 | * number of procs sending bios down to the same device. This greatly |
| 337 | * improves the schedulers ability to collect and merge the bios. |
| 338 | * |
| 339 | * But, it also turns into a long list of bios to process and that is sure |
| 340 | * to eventually make the worker thread block. The solution here is to |
| 341 | * make some progress and then put this work struct back at the end of |
| 342 | * the list if the block device is congested. This way, multiple devices |
| 343 | * can make progress from a single worker thread. |
| 344 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 345 | static noinline void run_scheduled_bios(struct btrfs_device *device) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 346 | { |
| 347 | struct bio *pending; |
| 348 | struct backing_dev_info *bdi; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 349 | struct btrfs_fs_info *fs_info; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 350 | struct btrfs_pending_bios *pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 351 | struct bio *tail; |
| 352 | struct bio *cur; |
| 353 | int again = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 354 | unsigned long num_run; |
Chris Mason | d644d8a | 2009-06-09 15:59:22 -0400 | [diff] [blame] | 355 | unsigned long batch_run = 0; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 356 | unsigned long limit; |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 357 | unsigned long last_waited = 0; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 358 | int force_reg = 0; |
Miao Xie | 0e58885 | 2011-08-05 09:32:37 +0000 | [diff] [blame] | 359 | int sync_pending = 0; |
Chris Mason | 211588a | 2011-04-19 20:12:40 -0400 | [diff] [blame] | 360 | struct blk_plug plug; |
| 361 | |
| 362 | /* |
| 363 | * this function runs all the bios we've collected for |
| 364 | * a particular device. We don't want to wander off to |
| 365 | * another device without first sending all of these down. |
| 366 | * So, setup a plug here and finish it off before we return |
| 367 | */ |
| 368 | blk_start_plug(&plug); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 369 | |
Chris Mason | bedf762 | 2009-04-03 10:32:58 -0400 | [diff] [blame] | 370 | bdi = blk_get_backing_dev_info(device->bdev); |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 371 | fs_info = device->dev_root->fs_info; |
| 372 | limit = btrfs_async_submit_limit(fs_info); |
| 373 | limit = limit * 2 / 3; |
| 374 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 375 | loop: |
| 376 | spin_lock(&device->io_lock); |
| 377 | |
Chris Mason | a683705 | 2009-02-04 09:19:41 -0500 | [diff] [blame] | 378 | loop_lock: |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 379 | num_run = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 380 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 381 | /* take all the bios off the list at once and process them |
| 382 | * later on (without the lock held). But, remember the |
| 383 | * tail and other pointers so the bios can be properly reinserted |
| 384 | * into the list if we hit congestion |
| 385 | */ |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 386 | if (!force_reg && device->pending_sync_bios.head) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 387 | pending_bios = &device->pending_sync_bios; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 388 | force_reg = 1; |
| 389 | } else { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 390 | pending_bios = &device->pending_bios; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 391 | force_reg = 0; |
| 392 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 393 | |
| 394 | pending = pending_bios->head; |
| 395 | tail = pending_bios->tail; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 396 | WARN_ON(pending && !tail); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 397 | |
| 398 | /* |
| 399 | * if pending was null this time around, no bios need processing |
| 400 | * at all and we can stop. Otherwise it'll loop back up again |
| 401 | * and do an additional check so no bios are missed. |
| 402 | * |
| 403 | * device->running_pending is used to synchronize with the |
| 404 | * schedule_bio code. |
| 405 | */ |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 406 | if (device->pending_sync_bios.head == NULL && |
| 407 | device->pending_bios.head == NULL) { |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 408 | again = 0; |
| 409 | device->running_pending = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 410 | } else { |
| 411 | again = 1; |
| 412 | device->running_pending = 1; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 413 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 414 | |
| 415 | pending_bios->head = NULL; |
| 416 | pending_bios->tail = NULL; |
| 417 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 418 | spin_unlock(&device->io_lock); |
| 419 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 420 | while (pending) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 421 | |
| 422 | rmb(); |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 423 | /* we want to work on both lists, but do more bios on the |
| 424 | * sync list than the regular list |
| 425 | */ |
| 426 | if ((num_run > 32 && |
| 427 | pending_bios != &device->pending_sync_bios && |
| 428 | device->pending_sync_bios.head) || |
| 429 | (num_run > 64 && pending_bios == &device->pending_sync_bios && |
| 430 | device->pending_bios.head)) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 431 | spin_lock(&device->io_lock); |
| 432 | requeue_list(pending_bios, pending, tail); |
| 433 | goto loop_lock; |
| 434 | } |
| 435 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 436 | cur = pending; |
| 437 | pending = pending->bi_next; |
| 438 | cur->bi_next = NULL; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 439 | |
David Sterba | ee86395 | 2015-02-16 19:41:40 +0100 | [diff] [blame] | 440 | /* |
| 441 | * atomic_dec_return implies a barrier for waitqueue_active |
| 442 | */ |
Josef Bacik | 66657b3 | 2012-08-01 15:36:24 -0400 | [diff] [blame] | 443 | if (atomic_dec_return(&fs_info->nr_async_bios) < limit && |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 444 | waitqueue_active(&fs_info->async_submit_wait)) |
| 445 | wake_up(&fs_info->async_submit_wait); |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 446 | |
Jens Axboe | dac5621 | 2015-04-17 16:23:59 -0600 | [diff] [blame] | 447 | BUG_ON(atomic_read(&cur->__bi_cnt) == 0); |
Chris Mason | d644d8a | 2009-06-09 15:59:22 -0400 | [diff] [blame] | 448 | |
Chris Mason | 2ab1ba6 | 2011-08-04 14:28:36 -0400 | [diff] [blame] | 449 | /* |
| 450 | * if we're doing the sync list, record that our |
| 451 | * plug has some sync requests on it |
| 452 | * |
| 453 | * If we're doing the regular list and there are |
| 454 | * sync requests sitting around, unplug before |
| 455 | * we add more |
| 456 | */ |
| 457 | if (pending_bios == &device->pending_sync_bios) { |
| 458 | sync_pending = 1; |
| 459 | } else if (sync_pending) { |
| 460 | blk_finish_plug(&plug); |
| 461 | blk_start_plug(&plug); |
| 462 | sync_pending = 0; |
| 463 | } |
| 464 | |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 465 | btrfsic_submit_bio(cur->bi_rw, cur); |
Chris Mason | 5ff7ba3 | 2010-03-15 10:21:30 -0400 | [diff] [blame] | 466 | num_run++; |
| 467 | batch_run++; |
David Sterba | 853d8ec | 2015-01-08 15:15:19 +0100 | [diff] [blame] | 468 | |
| 469 | cond_resched(); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 470 | |
| 471 | /* |
| 472 | * we made progress, there is more work to do and the bdi |
| 473 | * is now congested. Back off and let other work structs |
| 474 | * run instead |
| 475 | */ |
Chris Mason | 57fd5a5 | 2009-08-07 09:59:15 -0400 | [diff] [blame] | 476 | if (pending && bdi_write_congested(bdi) && batch_run > 8 && |
Chris Mason | 5f2cc08 | 2008-11-07 18:22:45 -0500 | [diff] [blame] | 477 | fs_info->fs_devices->open_devices > 1) { |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 478 | struct io_context *ioc; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 479 | |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 480 | ioc = current->io_context; |
| 481 | |
| 482 | /* |
| 483 | * the main goal here is that we don't want to |
| 484 | * block if we're going to be able to submit |
| 485 | * more requests without blocking. |
| 486 | * |
| 487 | * This code does two great things, it pokes into |
| 488 | * the elevator code from a filesystem _and_ |
| 489 | * it makes assumptions about how batching works. |
| 490 | */ |
| 491 | if (ioc && ioc->nr_batch_requests > 0 && |
| 492 | time_before(jiffies, ioc->last_waited + HZ/50UL) && |
| 493 | (last_waited == 0 || |
| 494 | ioc->last_waited == last_waited)) { |
| 495 | /* |
| 496 | * we want to go through our batch of |
| 497 | * requests and stop. So, we copy out |
| 498 | * the ioc->last_waited time and test |
| 499 | * against it before looping |
| 500 | */ |
| 501 | last_waited = ioc->last_waited; |
David Sterba | 853d8ec | 2015-01-08 15:15:19 +0100 | [diff] [blame] | 502 | cond_resched(); |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 503 | continue; |
| 504 | } |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 505 | spin_lock(&device->io_lock); |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 506 | requeue_list(pending_bios, pending, tail); |
Chris Mason | a683705 | 2009-02-04 09:19:41 -0500 | [diff] [blame] | 507 | device->running_pending = 1; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 508 | |
| 509 | spin_unlock(&device->io_lock); |
Qu Wenruo | a8c93d4e | 2014-02-28 10:46:08 +0800 | [diff] [blame] | 510 | btrfs_queue_work(fs_info->submit_workers, |
| 511 | &device->work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 512 | goto done; |
| 513 | } |
Chris Mason | d85c8a6f | 2011-12-15 15:38:41 -0500 | [diff] [blame] | 514 | /* unplug every 64 requests just for good measure */ |
| 515 | if (batch_run % 64 == 0) { |
| 516 | blk_finish_plug(&plug); |
| 517 | blk_start_plug(&plug); |
| 518 | sync_pending = 0; |
| 519 | } |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 520 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 521 | |
Chris Mason | 5168408 | 2010-03-10 15:33:32 -0500 | [diff] [blame] | 522 | cond_resched(); |
| 523 | if (again) |
| 524 | goto loop; |
| 525 | |
| 526 | spin_lock(&device->io_lock); |
| 527 | if (device->pending_bios.head || device->pending_sync_bios.head) |
| 528 | goto loop_lock; |
| 529 | spin_unlock(&device->io_lock); |
| 530 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 531 | done: |
Chris Mason | 211588a | 2011-04-19 20:12:40 -0400 | [diff] [blame] | 532 | blk_finish_plug(&plug); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 533 | } |
| 534 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 535 | static void pending_bios_fn(struct btrfs_work *work) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 536 | { |
| 537 | struct btrfs_device *device; |
| 538 | |
| 539 | device = container_of(work, struct btrfs_device, work); |
| 540 | run_scheduled_bios(device); |
| 541 | } |
| 542 | |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 543 | |
| 544 | void btrfs_free_stale_device(struct btrfs_device *cur_dev) |
| 545 | { |
| 546 | struct btrfs_fs_devices *fs_devs; |
| 547 | struct btrfs_device *dev; |
| 548 | |
| 549 | if (!cur_dev->name) |
| 550 | return; |
| 551 | |
| 552 | list_for_each_entry(fs_devs, &fs_uuids, list) { |
| 553 | int del = 1; |
| 554 | |
| 555 | if (fs_devs->opened) |
| 556 | continue; |
| 557 | if (fs_devs->seeding) |
| 558 | continue; |
| 559 | |
| 560 | list_for_each_entry(dev, &fs_devs->devices, dev_list) { |
| 561 | |
| 562 | if (dev == cur_dev) |
| 563 | continue; |
| 564 | if (!dev->name) |
| 565 | continue; |
| 566 | |
| 567 | /* |
| 568 | * Todo: This won't be enough. What if the same device |
| 569 | * comes back (with new uuid and) with its mapper path? |
| 570 | * But for now, this does help as mostly an admin will |
| 571 | * either use mapper or non mapper path throughout. |
| 572 | */ |
| 573 | rcu_read_lock(); |
| 574 | del = strcmp(rcu_str_deref(dev->name), |
| 575 | rcu_str_deref(cur_dev->name)); |
| 576 | rcu_read_unlock(); |
| 577 | if (!del) |
| 578 | break; |
| 579 | } |
| 580 | |
| 581 | if (!del) { |
| 582 | /* delete the stale device */ |
| 583 | if (fs_devs->num_devices == 1) { |
| 584 | btrfs_sysfs_remove_fsid(fs_devs); |
| 585 | list_del(&fs_devs->list); |
| 586 | free_fs_devices(fs_devs); |
| 587 | } else { |
| 588 | fs_devs->num_devices--; |
| 589 | list_del(&dev->dev_list); |
| 590 | rcu_string_free(dev->name); |
| 591 | kfree(dev); |
| 592 | } |
| 593 | break; |
| 594 | } |
| 595 | } |
| 596 | } |
| 597 | |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 598 | /* |
| 599 | * Add new device to list of registered devices |
| 600 | * |
| 601 | * Returns: |
| 602 | * 1 - first time device is seen |
| 603 | * 0 - device already known |
| 604 | * < 0 - error |
| 605 | */ |
Chris Mason | a1b32a5 | 2008-09-05 16:09:51 -0400 | [diff] [blame] | 606 | static noinline int device_list_add(const char *path, |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 607 | struct btrfs_super_block *disk_super, |
| 608 | u64 devid, struct btrfs_fs_devices **fs_devices_ret) |
| 609 | { |
| 610 | struct btrfs_device *device; |
| 611 | struct btrfs_fs_devices *fs_devices; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 612 | struct rcu_string *name; |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 613 | int ret = 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 614 | u64 found_transid = btrfs_super_generation(disk_super); |
| 615 | |
| 616 | fs_devices = find_fsid(disk_super->fsid); |
| 617 | if (!fs_devices) { |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 618 | fs_devices = alloc_fs_devices(disk_super->fsid); |
| 619 | if (IS_ERR(fs_devices)) |
| 620 | return PTR_ERR(fs_devices); |
| 621 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 622 | list_add(&fs_devices->list, &fs_uuids); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 623 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 624 | device = NULL; |
| 625 | } else { |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 626 | device = __find_device(&fs_devices->devices, devid, |
| 627 | disk_super->dev_item.uuid); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 628 | } |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 629 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 630 | if (!device) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 631 | if (fs_devices->opened) |
| 632 | return -EBUSY; |
| 633 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 634 | device = btrfs_alloc_device(NULL, &devid, |
| 635 | disk_super->dev_item.uuid); |
| 636 | if (IS_ERR(device)) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 637 | /* we can safely leave the fs_devices entry around */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 638 | return PTR_ERR(device); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 639 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 640 | |
| 641 | name = rcu_string_strdup(path, GFP_NOFS); |
| 642 | if (!name) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 643 | kfree(device); |
| 644 | return -ENOMEM; |
| 645 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 646 | rcu_assign_pointer(device->name, name); |
Arne Jansen | 90519d6 | 2011-05-23 14:30:00 +0200 | [diff] [blame] | 647 | |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 648 | mutex_lock(&fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 649 | list_add_rcu(&device->dev_list, &fs_devices->devices); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 650 | fs_devices->num_devices++; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 651 | mutex_unlock(&fs_devices->device_list_mutex); |
| 652 | |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 653 | ret = 1; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 654 | device->fs_devices = fs_devices; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 655 | } else if (!device->name || strcmp(device->name->str, path)) { |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 656 | /* |
| 657 | * When FS is already mounted. |
| 658 | * 1. If you are here and if the device->name is NULL that |
| 659 | * means this device was missing at time of FS mount. |
| 660 | * 2. If you are here and if the device->name is different |
| 661 | * from 'path' that means either |
| 662 | * a. The same device disappeared and reappeared with |
| 663 | * different name. or |
| 664 | * b. The missing-disk-which-was-replaced, has |
| 665 | * reappeared now. |
| 666 | * |
| 667 | * We must allow 1 and 2a above. But 2b would be a spurious |
| 668 | * and unintentional. |
| 669 | * |
| 670 | * Further in case of 1 and 2a above, the disk at 'path' |
| 671 | * would have missed some transaction when it was away and |
| 672 | * in case of 2a the stale bdev has to be updated as well. |
| 673 | * 2b must not be allowed at all time. |
| 674 | */ |
| 675 | |
| 676 | /* |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 677 | * For now, we do allow update to btrfs_fs_device through the |
| 678 | * btrfs dev scan cli after FS has been mounted. We're still |
| 679 | * tracking a problem where systems fail mount by subvolume id |
| 680 | * when we reject replacement on a mounted FS. |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 681 | */ |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 682 | if (!fs_devices->opened && found_transid < device->generation) { |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 683 | /* |
| 684 | * That is if the FS is _not_ mounted and if you |
| 685 | * are here, that means there is more than one |
| 686 | * disk with same uuid and devid.We keep the one |
| 687 | * with larger generation number or the last-in if |
| 688 | * generation are equal. |
| 689 | */ |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 690 | return -EEXIST; |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 691 | } |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 692 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 693 | name = rcu_string_strdup(path, GFP_NOFS); |
TARUISI Hiroaki | 3a0524d | 2010-02-09 06:36:45 +0000 | [diff] [blame] | 694 | if (!name) |
| 695 | return -ENOMEM; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 696 | rcu_string_free(device->name); |
| 697 | rcu_assign_pointer(device->name, name); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 698 | if (device->missing) { |
| 699 | fs_devices->missing_devices--; |
| 700 | device->missing = 0; |
| 701 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 702 | } |
| 703 | |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 704 | /* |
| 705 | * Unmount does not free the btrfs_device struct but would zero |
| 706 | * generation along with most of the other members. So just update |
| 707 | * it back. We need it to pick the disk with largest generation |
| 708 | * (as above). |
| 709 | */ |
| 710 | if (!fs_devices->opened) |
| 711 | device->generation = found_transid; |
| 712 | |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 713 | /* |
| 714 | * if there is new btrfs on an already registered device, |
| 715 | * then remove the stale device entry. |
| 716 | */ |
Anand Jain | 02feae3 | 2016-02-13 10:01:40 +0800 | [diff] [blame] | 717 | if (ret > 0) |
| 718 | btrfs_free_stale_device(device); |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 719 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 720 | *fs_devices_ret = fs_devices; |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 721 | |
| 722 | return ret; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 723 | } |
| 724 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 725 | static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig) |
| 726 | { |
| 727 | struct btrfs_fs_devices *fs_devices; |
| 728 | struct btrfs_device *device; |
| 729 | struct btrfs_device *orig_dev; |
| 730 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 731 | fs_devices = alloc_fs_devices(orig->fsid); |
| 732 | if (IS_ERR(fs_devices)) |
| 733 | return fs_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 734 | |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 735 | mutex_lock(&orig->device_list_mutex); |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 736 | fs_devices->total_devices = orig->total_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 737 | |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 738 | /* 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] | 739 | list_for_each_entry(orig_dev, &orig->devices, dev_list) { |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 740 | struct rcu_string *name; |
| 741 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 742 | device = btrfs_alloc_device(NULL, &orig_dev->devid, |
| 743 | orig_dev->uuid); |
| 744 | if (IS_ERR(device)) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 745 | goto error; |
| 746 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 747 | /* |
| 748 | * This is ok to do without rcu read locked because we hold the |
| 749 | * uuid mutex so nothing we touch in here is going to disappear. |
| 750 | */ |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 751 | if (orig_dev->name) { |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 752 | name = rcu_string_strdup(orig_dev->name->str, |
| 753 | GFP_KERNEL); |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 754 | if (!name) { |
| 755 | kfree(device); |
| 756 | goto error; |
| 757 | } |
| 758 | rcu_assign_pointer(device->name, name); |
Julia Lawall | fd2696f | 2009-09-29 13:51:04 -0400 | [diff] [blame] | 759 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 760 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 761 | list_add(&device->dev_list, &fs_devices->devices); |
| 762 | device->fs_devices = fs_devices; |
| 763 | fs_devices->num_devices++; |
| 764 | } |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 765 | mutex_unlock(&orig->device_list_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 766 | return fs_devices; |
| 767 | error: |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 768 | mutex_unlock(&orig->device_list_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 769 | free_fs_devices(fs_devices); |
| 770 | return ERR_PTR(-ENOMEM); |
| 771 | } |
| 772 | |
Eric Sandeen | 9eaed21 | 2014-08-01 18:12:35 -0500 | [diff] [blame] | 773 | 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] | 774 | { |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 775 | struct btrfs_device *device, *next; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 776 | struct btrfs_device *latest_dev = NULL; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 777 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 778 | mutex_lock(&uuid_mutex); |
| 779 | again: |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 780 | /* This is the initialized path, it is safe to release the devices. */ |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 781 | list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) { |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 782 | if (device->in_fs_metadata) { |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 783 | if (!device->is_tgtdev_for_dev_replace && |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 784 | (!latest_dev || |
| 785 | device->generation > latest_dev->generation)) { |
| 786 | latest_dev = device; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 787 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 788 | continue; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 789 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 790 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 791 | if (device->devid == BTRFS_DEV_REPLACE_DEVID) { |
| 792 | /* |
| 793 | * In the first step, keep the device which has |
| 794 | * the correct fsid and the devid that is used |
| 795 | * for the dev_replace procedure. |
| 796 | * In the second step, the dev_replace state is |
| 797 | * read from the device tree and it is known |
| 798 | * whether the procedure is really active or |
| 799 | * not, which means whether this device is |
| 800 | * used or whether it should be removed. |
| 801 | */ |
| 802 | if (step == 0 || device->is_tgtdev_for_dev_replace) { |
| 803 | continue; |
| 804 | } |
| 805 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 806 | if (device->bdev) { |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 807 | blkdev_put(device->bdev, device->mode); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 808 | device->bdev = NULL; |
| 809 | fs_devices->open_devices--; |
| 810 | } |
| 811 | if (device->writeable) { |
| 812 | list_del_init(&device->dev_alloc_list); |
| 813 | device->writeable = 0; |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 814 | if (!device->is_tgtdev_for_dev_replace) |
| 815 | fs_devices->rw_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 816 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 817 | list_del_init(&device->dev_list); |
| 818 | fs_devices->num_devices--; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 819 | rcu_string_free(device->name); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 820 | kfree(device); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 821 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 822 | |
| 823 | if (fs_devices->seed) { |
| 824 | fs_devices = fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 825 | goto again; |
| 826 | } |
| 827 | |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 828 | fs_devices->latest_bdev = latest_dev->bdev; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 829 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 830 | mutex_unlock(&uuid_mutex); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 831 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 832 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 833 | static void __free_device(struct work_struct *work) |
| 834 | { |
| 835 | struct btrfs_device *device; |
| 836 | |
| 837 | device = container_of(work, struct btrfs_device, rcu_work); |
| 838 | |
| 839 | if (device->bdev) |
| 840 | blkdev_put(device->bdev, device->mode); |
| 841 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 842 | rcu_string_free(device->name); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 843 | kfree(device); |
| 844 | } |
| 845 | |
| 846 | static void free_device(struct rcu_head *head) |
| 847 | { |
| 848 | struct btrfs_device *device; |
| 849 | |
| 850 | device = container_of(head, struct btrfs_device, rcu); |
| 851 | |
| 852 | INIT_WORK(&device->rcu_work, __free_device); |
| 853 | schedule_work(&device->rcu_work); |
| 854 | } |
| 855 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 856 | static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 857 | { |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 858 | struct btrfs_device *device, *tmp; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 859 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 860 | if (--fs_devices->opened > 0) |
| 861 | return 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 862 | |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 863 | mutex_lock(&fs_devices->device_list_mutex); |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 864 | list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) { |
Anand Jain | f190aa4 | 2015-08-14 18:33:05 +0800 | [diff] [blame] | 865 | btrfs_close_one_device(device); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 866 | } |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 867 | mutex_unlock(&fs_devices->device_list_mutex); |
| 868 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 869 | WARN_ON(fs_devices->open_devices); |
| 870 | WARN_ON(fs_devices->rw_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 871 | fs_devices->opened = 0; |
| 872 | fs_devices->seeding = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 873 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 874 | return 0; |
| 875 | } |
| 876 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 877 | int btrfs_close_devices(struct btrfs_fs_devices *fs_devices) |
| 878 | { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 879 | struct btrfs_fs_devices *seed_devices = NULL; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 880 | int ret; |
| 881 | |
| 882 | mutex_lock(&uuid_mutex); |
| 883 | ret = __btrfs_close_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 884 | if (!fs_devices->opened) { |
| 885 | seed_devices = fs_devices->seed; |
| 886 | fs_devices->seed = NULL; |
| 887 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 888 | mutex_unlock(&uuid_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 889 | |
| 890 | while (seed_devices) { |
| 891 | fs_devices = seed_devices; |
| 892 | seed_devices = fs_devices->seed; |
| 893 | __btrfs_close_devices(fs_devices); |
| 894 | free_fs_devices(fs_devices); |
| 895 | } |
Eric Sandeen | bc17862 | 2013-03-09 15:18:39 +0000 | [diff] [blame] | 896 | /* |
| 897 | * Wait for rcu kworkers under __btrfs_close_devices |
| 898 | * to finish all blkdev_puts so device is really |
| 899 | * free when umount is done. |
| 900 | */ |
| 901 | rcu_barrier(); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 902 | return ret; |
| 903 | } |
| 904 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 905 | static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices, |
| 906 | fmode_t flags, void *holder) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 907 | { |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 908 | struct request_queue *q; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 909 | struct block_device *bdev; |
| 910 | struct list_head *head = &fs_devices->devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 911 | struct btrfs_device *device; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 912 | struct btrfs_device *latest_dev = NULL; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 913 | struct buffer_head *bh; |
| 914 | struct btrfs_super_block *disk_super; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 915 | u64 devid; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 916 | int seeding = 1; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 917 | int ret = 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 918 | |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 919 | flags |= FMODE_EXCL; |
| 920 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 921 | list_for_each_entry(device, head, dev_list) { |
Chris Mason | c1c4d91 | 2008-05-08 15:05:58 -0400 | [diff] [blame] | 922 | if (device->bdev) |
| 923 | continue; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 924 | if (!device->name) |
| 925 | continue; |
| 926 | |
Eric Sandeen | f63e0cc | 2013-04-04 20:45:08 +0000 | [diff] [blame] | 927 | /* Just open everything we can; ignore failures here */ |
| 928 | if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1, |
| 929 | &bdev, &bh)) |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 930 | continue; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 931 | |
| 932 | disk_super = (struct btrfs_super_block *)bh->b_data; |
Xiao Guangrong | a343832 | 2010-01-06 11:48:18 +0000 | [diff] [blame] | 933 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 934 | if (devid != device->devid) |
| 935 | goto error_brelse; |
| 936 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 937 | if (memcmp(device->uuid, disk_super->dev_item.uuid, |
| 938 | BTRFS_UUID_SIZE)) |
| 939 | goto error_brelse; |
| 940 | |
| 941 | device->generation = btrfs_super_generation(disk_super); |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 942 | if (!latest_dev || |
| 943 | device->generation > latest_dev->generation) |
| 944 | latest_dev = device; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 945 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 946 | if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) { |
| 947 | device->writeable = 0; |
| 948 | } else { |
| 949 | device->writeable = !bdev_read_only(bdev); |
| 950 | seeding = 0; |
| 951 | } |
| 952 | |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 953 | q = bdev_get_queue(bdev); |
Miao Xie | 90180da | 2014-09-03 21:35:30 +0800 | [diff] [blame] | 954 | if (blk_queue_discard(q)) |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 955 | device->can_discard = 1; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 956 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 957 | device->bdev = bdev; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 958 | device->in_fs_metadata = 0; |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 959 | device->mode = flags; |
| 960 | |
Chris Mason | c289811 | 2009-06-10 09:51:32 -0400 | [diff] [blame] | 961 | if (!blk_queue_nonrot(bdev_get_queue(bdev))) |
| 962 | fs_devices->rotating = 1; |
| 963 | |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 964 | fs_devices->open_devices++; |
Ilya Dryomov | 55e50e4 | 2013-09-01 18:56:44 +0300 | [diff] [blame] | 965 | if (device->writeable && |
| 966 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 967 | fs_devices->rw_devices++; |
| 968 | list_add(&device->dev_alloc_list, |
| 969 | &fs_devices->alloc_list); |
| 970 | } |
Xiao Guangrong | 4f6c932 | 2011-04-20 10:06:40 +0000 | [diff] [blame] | 971 | brelse(bh); |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 972 | continue; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 973 | |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 974 | error_brelse: |
| 975 | brelse(bh); |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 976 | blkdev_put(bdev, flags); |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 977 | continue; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 978 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 979 | if (fs_devices->open_devices == 0) { |
Ilya Dryomov | 20bcd64 | 2011-10-20 00:06:20 +0300 | [diff] [blame] | 980 | ret = -EINVAL; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 981 | goto out; |
| 982 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 983 | fs_devices->seeding = seeding; |
| 984 | fs_devices->opened = 1; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 985 | fs_devices->latest_bdev = latest_dev->bdev; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 986 | fs_devices->total_rw_bytes = 0; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 987 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 988 | return ret; |
| 989 | } |
| 990 | |
| 991 | int btrfs_open_devices(struct btrfs_fs_devices *fs_devices, |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 992 | fmode_t flags, void *holder) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 993 | { |
| 994 | int ret; |
| 995 | |
| 996 | mutex_lock(&uuid_mutex); |
| 997 | if (fs_devices->opened) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 998 | fs_devices->opened++; |
| 999 | ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1000 | } else { |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1001 | ret = __btrfs_open_devices(fs_devices, flags, holder); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1002 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1003 | mutex_unlock(&uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1004 | return ret; |
| 1005 | } |
| 1006 | |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1007 | void btrfs_release_disk_super(struct page *page) |
| 1008 | { |
| 1009 | kunmap(page); |
| 1010 | put_page(page); |
| 1011 | } |
| 1012 | |
| 1013 | int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr, |
| 1014 | struct page **page, struct btrfs_super_block **disk_super) |
| 1015 | { |
| 1016 | void *p; |
| 1017 | pgoff_t index; |
| 1018 | |
| 1019 | /* make sure our super fits in the device */ |
| 1020 | if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode)) |
| 1021 | return 1; |
| 1022 | |
| 1023 | /* make sure our super fits in the page */ |
| 1024 | if (sizeof(**disk_super) > PAGE_SIZE) |
| 1025 | return 1; |
| 1026 | |
| 1027 | /* make sure our super doesn't straddle pages on disk */ |
| 1028 | index = bytenr >> PAGE_SHIFT; |
| 1029 | if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index) |
| 1030 | return 1; |
| 1031 | |
| 1032 | /* pull in the page with our super */ |
| 1033 | *page = read_cache_page_gfp(bdev->bd_inode->i_mapping, |
| 1034 | index, GFP_KERNEL); |
| 1035 | |
| 1036 | if (IS_ERR_OR_NULL(*page)) |
| 1037 | return 1; |
| 1038 | |
| 1039 | p = kmap(*page); |
| 1040 | |
| 1041 | /* align our pointer to the offset of the super block */ |
| 1042 | *disk_super = p + (bytenr & ~PAGE_MASK); |
| 1043 | |
| 1044 | if (btrfs_super_bytenr(*disk_super) != bytenr || |
| 1045 | btrfs_super_magic(*disk_super) != BTRFS_MAGIC) { |
| 1046 | btrfs_release_disk_super(*page); |
| 1047 | return 1; |
| 1048 | } |
| 1049 | |
| 1050 | if ((*disk_super)->label[0] && |
| 1051 | (*disk_super)->label[BTRFS_LABEL_SIZE - 1]) |
| 1052 | (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0'; |
| 1053 | |
| 1054 | return 0; |
| 1055 | } |
| 1056 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1057 | /* |
| 1058 | * Look for a btrfs signature on a device. This may be called out of the mount path |
| 1059 | * and we are not allowed to call set_blocksize during the scan. The superblock |
| 1060 | * is read via pagecache |
| 1061 | */ |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 1062 | 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] | 1063 | struct btrfs_fs_devices **fs_devices_ret) |
| 1064 | { |
| 1065 | struct btrfs_super_block *disk_super; |
| 1066 | struct block_device *bdev; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1067 | struct page *page; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1068 | int ret = -EINVAL; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1069 | u64 devid; |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 1070 | u64 transid; |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1071 | u64 total_devices; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1072 | u64 bytenr; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1073 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1074 | /* |
| 1075 | * we would like to check all the supers, but that would make |
| 1076 | * a btrfs mount succeed after a mkfs from a different FS. |
| 1077 | * So, we need to add a special mount option to scan for |
| 1078 | * later supers, using BTRFS_SUPER_MIRROR_MAX instead |
| 1079 | */ |
| 1080 | bytenr = btrfs_sb_offset(0); |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1081 | flags |= FMODE_EXCL; |
Al Viro | 10f6327 | 2011-11-17 15:05:22 -0500 | [diff] [blame] | 1082 | mutex_lock(&uuid_mutex); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1083 | |
| 1084 | bdev = blkdev_get_by_path(path, flags, holder); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1085 | if (IS_ERR(bdev)) { |
| 1086 | ret = PTR_ERR(bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1087 | goto error; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1088 | } |
| 1089 | |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1090 | if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super)) |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1091 | goto error_bdev_put; |
| 1092 | |
Xiao Guangrong | a343832 | 2010-01-06 11:48:18 +0000 | [diff] [blame] | 1093 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 1094 | transid = btrfs_super_generation(disk_super); |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1095 | total_devices = btrfs_super_num_devices(disk_super); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1096 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1097 | ret = device_list_add(path, disk_super, devid, fs_devices_ret); |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 1098 | if (ret > 0) { |
| 1099 | if (disk_super->label[0]) { |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 1100 | printk(KERN_INFO "BTRFS: device label %s ", disk_super->label); |
| 1101 | } else { |
| 1102 | printk(KERN_INFO "BTRFS: device fsid %pU ", disk_super->fsid); |
| 1103 | } |
| 1104 | |
| 1105 | printk(KERN_CONT "devid %llu transid %llu %s\n", devid, transid, path); |
| 1106 | ret = 0; |
| 1107 | } |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1108 | if (!ret && fs_devices_ret) |
| 1109 | (*fs_devices_ret)->total_devices = total_devices; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1110 | |
Anand Jain | 6cf86a00 | 2016-02-13 10:01:29 +0800 | [diff] [blame] | 1111 | btrfs_release_disk_super(page); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1112 | |
| 1113 | error_bdev_put: |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1114 | blkdev_put(bdev, flags); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1115 | error: |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1116 | mutex_unlock(&uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1117 | return ret; |
| 1118 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1119 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1120 | /* helper to account the used device space in the range */ |
| 1121 | int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start, |
| 1122 | u64 end, u64 *length) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1123 | { |
| 1124 | struct btrfs_key key; |
| 1125 | struct btrfs_root *root = device->dev_root; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1126 | struct btrfs_dev_extent *dev_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1127 | struct btrfs_path *path; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1128 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1129 | int ret; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1130 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1131 | struct extent_buffer *l; |
| 1132 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1133 | *length = 0; |
| 1134 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1135 | if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1136 | return 0; |
| 1137 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1138 | path = btrfs_alloc_path(); |
| 1139 | if (!path) |
| 1140 | return -ENOMEM; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1141 | path->reada = READA_FORWARD; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1142 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1143 | key.objectid = device->devid; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1144 | key.offset = start; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1145 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1146 | |
| 1147 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1148 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1149 | goto out; |
Yan Zheng | 1fcbac5 | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 1150 | if (ret > 0) { |
| 1151 | ret = btrfs_previous_item(root, path, key.objectid, key.type); |
| 1152 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1153 | goto out; |
Yan Zheng | 1fcbac5 | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 1154 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1155 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1156 | while (1) { |
| 1157 | l = path->nodes[0]; |
| 1158 | slot = path->slots[0]; |
| 1159 | if (slot >= btrfs_header_nritems(l)) { |
| 1160 | ret = btrfs_next_leaf(root, path); |
| 1161 | if (ret == 0) |
| 1162 | continue; |
| 1163 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1164 | goto out; |
| 1165 | |
| 1166 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1167 | } |
| 1168 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1169 | |
| 1170 | if (key.objectid < device->devid) |
| 1171 | goto next; |
| 1172 | |
| 1173 | if (key.objectid > device->devid) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1174 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1175 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1176 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1177 | goto next; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1178 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1179 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1180 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1181 | dev_extent); |
| 1182 | if (key.offset <= start && extent_end > end) { |
| 1183 | *length = end - start + 1; |
| 1184 | break; |
| 1185 | } else if (key.offset <= start && extent_end > start) |
| 1186 | *length += extent_end - start; |
| 1187 | else if (key.offset > start && extent_end <= end) |
| 1188 | *length += extent_end - key.offset; |
| 1189 | else if (key.offset > start && key.offset <= end) { |
| 1190 | *length += end - key.offset + 1; |
| 1191 | break; |
| 1192 | } else if (key.offset > end) |
| 1193 | break; |
| 1194 | |
| 1195 | next: |
| 1196 | path->slots[0]++; |
| 1197 | } |
| 1198 | ret = 0; |
| 1199 | out: |
| 1200 | btrfs_free_path(path); |
| 1201 | return ret; |
| 1202 | } |
| 1203 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1204 | static int contains_pending_extent(struct btrfs_transaction *transaction, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1205 | struct btrfs_device *device, |
| 1206 | u64 *start, u64 len) |
| 1207 | { |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1208 | struct btrfs_fs_info *fs_info = device->dev_root->fs_info; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1209 | struct extent_map *em; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1210 | struct list_head *search_list = &fs_info->pinned_chunks; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1211 | int ret = 0; |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1212 | u64 physical_start = *start; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1213 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1214 | if (transaction) |
| 1215 | search_list = &transaction->pending_chunks; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 1216 | again: |
| 1217 | list_for_each_entry(em, search_list, list) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1218 | struct map_lookup *map; |
| 1219 | int i; |
| 1220 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 1221 | map = em->map_lookup; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1222 | for (i = 0; i < map->num_stripes; i++) { |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1223 | u64 end; |
| 1224 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1225 | if (map->stripes[i].dev != device) |
| 1226 | continue; |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1227 | if (map->stripes[i].physical >= physical_start + len || |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1228 | map->stripes[i].physical + em->orig_block_len <= |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1229 | physical_start) |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1230 | continue; |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1231 | /* |
| 1232 | * Make sure that while processing the pinned list we do |
| 1233 | * not override our *start with a lower value, because |
| 1234 | * we can have pinned chunks that fall within this |
| 1235 | * device hole and that have lower physical addresses |
| 1236 | * than the pending chunks we processed before. If we |
| 1237 | * do not take this special care we can end up getting |
| 1238 | * 2 pending chunks that start at the same physical |
| 1239 | * device offsets because the end offset of a pinned |
| 1240 | * chunk can be equal to the start offset of some |
| 1241 | * pending chunk. |
| 1242 | */ |
| 1243 | end = map->stripes[i].physical + em->orig_block_len; |
| 1244 | if (end > *start) { |
| 1245 | *start = end; |
| 1246 | ret = 1; |
| 1247 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1248 | } |
| 1249 | } |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1250 | if (search_list != &fs_info->pinned_chunks) { |
| 1251 | search_list = &fs_info->pinned_chunks; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 1252 | goto again; |
| 1253 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1254 | |
| 1255 | return ret; |
| 1256 | } |
| 1257 | |
| 1258 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1259 | /* |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1260 | * find_free_dev_extent_start - find free space in the specified device |
| 1261 | * @device: the device which we search the free space in |
| 1262 | * @num_bytes: the size of the free space that we need |
| 1263 | * @search_start: the position from which to begin the search |
| 1264 | * @start: store the start of the free space. |
| 1265 | * @len: the size of the free space. that we find, or the size |
| 1266 | * 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] | 1267 | * |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1268 | * this uses a pretty simple search, the expectation is that it is |
| 1269 | * called very infrequently and that a given device has a small number |
| 1270 | * of extents |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1271 | * |
| 1272 | * @start is used to store the start of the free space if we find. But if we |
| 1273 | * don't find suitable free space, it will be used to store the start position |
| 1274 | * of the max free space. |
| 1275 | * |
| 1276 | * @len is used to store the size of the free space that we find. |
| 1277 | * But if we don't find suitable free space, it is used to store the size of |
| 1278 | * the max free space. |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1279 | */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1280 | int find_free_dev_extent_start(struct btrfs_transaction *transaction, |
| 1281 | struct btrfs_device *device, u64 num_bytes, |
| 1282 | u64 search_start, u64 *start, u64 *len) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1283 | { |
| 1284 | struct btrfs_key key; |
| 1285 | struct btrfs_root *root = device->dev_root; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1286 | struct btrfs_dev_extent *dev_extent; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1287 | struct btrfs_path *path; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1288 | u64 hole_size; |
| 1289 | u64 max_hole_start; |
| 1290 | u64 max_hole_size; |
| 1291 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1292 | u64 search_end = device->total_bytes; |
| 1293 | int ret; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1294 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1295 | struct extent_buffer *l; |
Filipe Manana | 8cdc7c5 | 2016-01-06 22:42:35 +0000 | [diff] [blame] | 1296 | u64 min_search_start; |
| 1297 | |
| 1298 | /* |
| 1299 | * We don't want to overwrite the superblock on the drive nor any area |
| 1300 | * used by the boot loader (grub for example), so we make sure to start |
| 1301 | * at an offset of at least 1MB. |
| 1302 | */ |
| 1303 | min_search_start = max(root->fs_info->alloc_start, 1024ull * 1024); |
| 1304 | search_start = max(search_start, min_search_start); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1305 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1306 | path = btrfs_alloc_path(); |
| 1307 | if (!path) |
| 1308 | return -ENOMEM; |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1309 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1310 | max_hole_start = search_start; |
| 1311 | max_hole_size = 0; |
| 1312 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1313 | again: |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1314 | if (search_start >= search_end || device->is_tgtdev_for_dev_replace) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1315 | ret = -ENOSPC; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1316 | goto out; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1317 | } |
| 1318 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1319 | path->reada = READA_FORWARD; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1320 | path->search_commit_root = 1; |
| 1321 | path->skip_locking = 1; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1322 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1323 | key.objectid = device->devid; |
| 1324 | key.offset = search_start; |
| 1325 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1326 | |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 1327 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1328 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1329 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1330 | if (ret > 0) { |
| 1331 | ret = btrfs_previous_item(root, path, key.objectid, key.type); |
| 1332 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1333 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1334 | } |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1335 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1336 | while (1) { |
| 1337 | l = path->nodes[0]; |
| 1338 | slot = path->slots[0]; |
| 1339 | if (slot >= btrfs_header_nritems(l)) { |
| 1340 | ret = btrfs_next_leaf(root, path); |
| 1341 | if (ret == 0) |
| 1342 | continue; |
| 1343 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1344 | goto out; |
| 1345 | |
| 1346 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1347 | } |
| 1348 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1349 | |
| 1350 | if (key.objectid < device->devid) |
| 1351 | goto next; |
| 1352 | |
| 1353 | if (key.objectid > device->devid) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1354 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1355 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1356 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1357 | goto next; |
| 1358 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1359 | if (key.offset > search_start) { |
| 1360 | hole_size = key.offset - search_start; |
| 1361 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1362 | /* |
| 1363 | * Have to check before we set max_hole_start, otherwise |
| 1364 | * we could end up sending back this offset anyway. |
| 1365 | */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1366 | if (contains_pending_extent(transaction, device, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1367 | &search_start, |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1368 | hole_size)) { |
| 1369 | if (key.offset >= search_start) { |
| 1370 | hole_size = key.offset - search_start; |
| 1371 | } else { |
| 1372 | WARN_ON_ONCE(1); |
| 1373 | hole_size = 0; |
| 1374 | } |
| 1375 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1376 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1377 | if (hole_size > max_hole_size) { |
| 1378 | max_hole_start = search_start; |
| 1379 | max_hole_size = hole_size; |
| 1380 | } |
| 1381 | |
| 1382 | /* |
| 1383 | * If this free space is greater than which we need, |
| 1384 | * it must be the max free space that we have found |
| 1385 | * until now, so max_hole_start must point to the start |
| 1386 | * of this free space and the length of this free space |
| 1387 | * is stored in max_hole_size. Thus, we return |
| 1388 | * max_hole_start and max_hole_size and go back to the |
| 1389 | * caller. |
| 1390 | */ |
| 1391 | if (hole_size >= num_bytes) { |
| 1392 | ret = 0; |
| 1393 | goto out; |
| 1394 | } |
| 1395 | } |
| 1396 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1397 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1398 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1399 | dev_extent); |
| 1400 | if (extent_end > search_start) |
| 1401 | search_start = extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1402 | next: |
| 1403 | path->slots[0]++; |
| 1404 | cond_resched(); |
| 1405 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1406 | |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1407 | /* |
| 1408 | * At this point, search_start should be the end of |
| 1409 | * allocated dev extents, and when shrinking the device, |
| 1410 | * search_end may be smaller than search_start. |
| 1411 | */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1412 | if (search_end > search_start) { |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1413 | hole_size = search_end - search_start; |
| 1414 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1415 | if (contains_pending_extent(transaction, device, &search_start, |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1416 | hole_size)) { |
| 1417 | btrfs_release_path(path); |
| 1418 | goto again; |
| 1419 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1420 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1421 | if (hole_size > max_hole_size) { |
| 1422 | max_hole_start = search_start; |
| 1423 | max_hole_size = hole_size; |
| 1424 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1425 | } |
| 1426 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1427 | /* See above. */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1428 | if (max_hole_size < num_bytes) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1429 | ret = -ENOSPC; |
| 1430 | else |
| 1431 | ret = 0; |
| 1432 | |
| 1433 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1434 | btrfs_free_path(path); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1435 | *start = max_hole_start; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 1436 | if (len) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1437 | *len = max_hole_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1438 | return ret; |
| 1439 | } |
| 1440 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1441 | int find_free_dev_extent(struct btrfs_trans_handle *trans, |
| 1442 | struct btrfs_device *device, u64 num_bytes, |
| 1443 | u64 *start, u64 *len) |
| 1444 | { |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1445 | /* FIXME use last free of some kind */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1446 | return find_free_dev_extent_start(trans->transaction, device, |
Filipe Manana | 8cdc7c5 | 2016-01-06 22:42:35 +0000 | [diff] [blame] | 1447 | num_bytes, 0, start, len); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1448 | } |
| 1449 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1450 | static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1451 | struct btrfs_device *device, |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1452 | u64 start, u64 *dev_extent_len) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1453 | { |
| 1454 | int ret; |
| 1455 | struct btrfs_path *path; |
| 1456 | struct btrfs_root *root = device->dev_root; |
| 1457 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1458 | struct btrfs_key found_key; |
| 1459 | struct extent_buffer *leaf = NULL; |
| 1460 | struct btrfs_dev_extent *extent = NULL; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1461 | |
| 1462 | path = btrfs_alloc_path(); |
| 1463 | if (!path) |
| 1464 | return -ENOMEM; |
| 1465 | |
| 1466 | key.objectid = device->devid; |
| 1467 | key.offset = start; |
| 1468 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1469 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1470 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1471 | if (ret > 0) { |
| 1472 | ret = btrfs_previous_item(root, path, key.objectid, |
| 1473 | BTRFS_DEV_EXTENT_KEY); |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1474 | if (ret) |
| 1475 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1476 | leaf = path->nodes[0]; |
| 1477 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 1478 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1479 | struct btrfs_dev_extent); |
| 1480 | BUG_ON(found_key.offset > start || found_key.offset + |
| 1481 | btrfs_dev_extent_length(leaf, extent) < start); |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1482 | key = found_key; |
| 1483 | btrfs_release_path(path); |
| 1484 | goto again; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1485 | } else if (ret == 0) { |
| 1486 | leaf = path->nodes[0]; |
| 1487 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1488 | struct btrfs_dev_extent); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1489 | } else { |
Anand Jain | a4553fe | 2015-09-25 14:43:01 +0800 | [diff] [blame] | 1490 | btrfs_std_error(root->fs_info, ret, "Slot search failed"); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1491 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1492 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1493 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1494 | *dev_extent_len = btrfs_dev_extent_length(leaf, extent); |
| 1495 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1496 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1497 | if (ret) { |
Anand Jain | a4553fe | 2015-09-25 14:43:01 +0800 | [diff] [blame] | 1498 | btrfs_std_error(root->fs_info, ret, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1499 | "Failed to remove dev extent item"); |
Zhao Lei | 13212b5 | 2015-02-12 14:18:17 +0800 | [diff] [blame] | 1500 | } else { |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 1501 | set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1502 | } |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1503 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1504 | btrfs_free_path(path); |
| 1505 | return ret; |
| 1506 | } |
| 1507 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1508 | static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans, |
| 1509 | struct btrfs_device *device, |
| 1510 | u64 chunk_tree, u64 chunk_objectid, |
| 1511 | u64 chunk_offset, u64 start, u64 num_bytes) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1512 | { |
| 1513 | int ret; |
| 1514 | struct btrfs_path *path; |
| 1515 | struct btrfs_root *root = device->dev_root; |
| 1516 | struct btrfs_dev_extent *extent; |
| 1517 | struct extent_buffer *leaf; |
| 1518 | struct btrfs_key key; |
| 1519 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1520 | WARN_ON(!device->in_fs_metadata); |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1521 | WARN_ON(device->is_tgtdev_for_dev_replace); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1522 | path = btrfs_alloc_path(); |
| 1523 | if (!path) |
| 1524 | return -ENOMEM; |
| 1525 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1526 | key.objectid = device->devid; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1527 | key.offset = start; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1528 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 1529 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1530 | sizeof(*extent)); |
Mark Fasheh | 2cdcecb | 2011-09-08 17:14:32 -0700 | [diff] [blame] | 1531 | if (ret) |
| 1532 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1533 | |
| 1534 | leaf = path->nodes[0]; |
| 1535 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1536 | struct btrfs_dev_extent); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1537 | btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree); |
| 1538 | btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid); |
| 1539 | btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset); |
| 1540 | |
| 1541 | write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid, |
Geert Uytterhoeven | 231e88f | 2013-08-20 13:20:13 +0200 | [diff] [blame] | 1542 | btrfs_dev_extent_chunk_tree_uuid(extent), BTRFS_UUID_SIZE); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1543 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1544 | btrfs_set_dev_extent_length(leaf, extent, num_bytes); |
| 1545 | btrfs_mark_buffer_dirty(leaf); |
Mark Fasheh | 2cdcecb | 2011-09-08 17:14:32 -0700 | [diff] [blame] | 1546 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1547 | btrfs_free_path(path); |
| 1548 | return ret; |
| 1549 | } |
| 1550 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1551 | static u64 find_next_chunk(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1552 | { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1553 | struct extent_map_tree *em_tree; |
| 1554 | struct extent_map *em; |
| 1555 | struct rb_node *n; |
| 1556 | u64 ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1557 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1558 | em_tree = &fs_info->mapping_tree.map_tree; |
| 1559 | read_lock(&em_tree->lock); |
| 1560 | n = rb_last(&em_tree->map); |
| 1561 | if (n) { |
| 1562 | em = rb_entry(n, struct extent_map, rb_node); |
| 1563 | ret = em->start + em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1564 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1565 | read_unlock(&em_tree->lock); |
| 1566 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1567 | return ret; |
| 1568 | } |
| 1569 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1570 | static noinline int find_next_devid(struct btrfs_fs_info *fs_info, |
| 1571 | u64 *devid_ret) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1572 | { |
| 1573 | int ret; |
| 1574 | struct btrfs_key key; |
| 1575 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1576 | struct btrfs_path *path; |
| 1577 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1578 | path = btrfs_alloc_path(); |
| 1579 | if (!path) |
| 1580 | return -ENOMEM; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1581 | |
| 1582 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1583 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1584 | key.offset = (u64)-1; |
| 1585 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1586 | 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] | 1587 | if (ret < 0) |
| 1588 | goto error; |
| 1589 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1590 | BUG_ON(ret == 0); /* Corruption */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1591 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1592 | ret = btrfs_previous_item(fs_info->chunk_root, path, |
| 1593 | BTRFS_DEV_ITEMS_OBJECTID, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1594 | BTRFS_DEV_ITEM_KEY); |
| 1595 | if (ret) { |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1596 | *devid_ret = 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1597 | } else { |
| 1598 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 1599 | path->slots[0]); |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1600 | *devid_ret = found_key.offset + 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1601 | } |
| 1602 | ret = 0; |
| 1603 | error: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1604 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1605 | return ret; |
| 1606 | } |
| 1607 | |
| 1608 | /* |
| 1609 | * the device information is stored in the chunk root |
| 1610 | * the btrfs_device struct should be fully filled in |
| 1611 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1612 | static int btrfs_add_device(struct btrfs_trans_handle *trans, |
| 1613 | struct btrfs_root *root, |
| 1614 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1615 | { |
| 1616 | int ret; |
| 1617 | struct btrfs_path *path; |
| 1618 | struct btrfs_dev_item *dev_item; |
| 1619 | struct extent_buffer *leaf; |
| 1620 | struct btrfs_key key; |
| 1621 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1622 | |
| 1623 | root = root->fs_info->chunk_root; |
| 1624 | |
| 1625 | path = btrfs_alloc_path(); |
| 1626 | if (!path) |
| 1627 | return -ENOMEM; |
| 1628 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1629 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1630 | key.type = BTRFS_DEV_ITEM_KEY; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1631 | key.offset = device->devid; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1632 | |
| 1633 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1634 | sizeof(*dev_item)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1635 | if (ret) |
| 1636 | goto out; |
| 1637 | |
| 1638 | leaf = path->nodes[0]; |
| 1639 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 1640 | |
| 1641 | btrfs_set_device_id(leaf, dev_item, device->devid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1642 | btrfs_set_device_generation(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1643 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 1644 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 1645 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 1646 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 1647 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 1648 | btrfs_device_get_disk_total_bytes(device)); |
| 1649 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 1650 | btrfs_device_get_bytes_used(device)); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1651 | btrfs_set_device_group(leaf, dev_item, 0); |
| 1652 | btrfs_set_device_seek_speed(leaf, dev_item, 0); |
| 1653 | btrfs_set_device_bandwidth(leaf, dev_item, 0); |
Chris Mason | c3027eb | 2008-12-08 16:40:21 -0500 | [diff] [blame] | 1654 | btrfs_set_device_start_offset(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1655 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 1656 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1657 | write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 1658 | ptr = btrfs_device_fsid(dev_item); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1659 | write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1660 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1661 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1662 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1663 | out: |
| 1664 | btrfs_free_path(path); |
| 1665 | return ret; |
| 1666 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1667 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1668 | /* |
| 1669 | * Function to update ctime/mtime for a given device path. |
| 1670 | * Mainly used for ctime/mtime based probe like libblkid. |
| 1671 | */ |
| 1672 | static void update_dev_time(char *path_name) |
| 1673 | { |
| 1674 | struct file *filp; |
| 1675 | |
| 1676 | filp = filp_open(path_name, O_RDWR, 0); |
Al Viro | 98af592 | 2014-12-14 02:59:17 -0500 | [diff] [blame] | 1677 | if (IS_ERR(filp)) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1678 | return; |
| 1679 | file_update_time(filp); |
| 1680 | filp_close(filp, NULL); |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1681 | } |
| 1682 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1683 | static int btrfs_rm_dev_item(struct btrfs_root *root, |
| 1684 | struct btrfs_device *device) |
| 1685 | { |
| 1686 | int ret; |
| 1687 | struct btrfs_path *path; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1688 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1689 | struct btrfs_trans_handle *trans; |
| 1690 | |
| 1691 | root = root->fs_info->chunk_root; |
| 1692 | |
| 1693 | path = btrfs_alloc_path(); |
| 1694 | if (!path) |
| 1695 | return -ENOMEM; |
| 1696 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 1697 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 1698 | if (IS_ERR(trans)) { |
| 1699 | btrfs_free_path(path); |
| 1700 | return PTR_ERR(trans); |
| 1701 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1702 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1703 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1704 | key.offset = device->devid; |
| 1705 | |
| 1706 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1707 | if (ret < 0) |
| 1708 | goto out; |
| 1709 | |
| 1710 | if (ret > 0) { |
| 1711 | ret = -ENOENT; |
| 1712 | goto out; |
| 1713 | } |
| 1714 | |
| 1715 | ret = btrfs_del_item(trans, root, path); |
| 1716 | if (ret) |
| 1717 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1718 | out: |
| 1719 | btrfs_free_path(path); |
| 1720 | btrfs_commit_transaction(trans, root); |
| 1721 | return ret; |
| 1722 | } |
| 1723 | |
David Sterba | 3cc31a0 | 2016-02-15 16:00:26 +0100 | [diff] [blame] | 1724 | /* |
| 1725 | * Verify that @num_devices satisfies the RAID profile constraints in the whole |
| 1726 | * filesystem. It's up to the caller to adjust that number regarding eg. device |
| 1727 | * replace. |
| 1728 | */ |
| 1729 | static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info, |
| 1730 | u64 num_devices) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1731 | { |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1732 | u64 all_avail; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1733 | unsigned seq; |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame^] | 1734 | int i; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1735 | |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1736 | do { |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1737 | seq = read_seqbegin(&fs_info->profiles_lock); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1738 | |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1739 | all_avail = fs_info->avail_data_alloc_bits | |
| 1740 | fs_info->avail_system_alloc_bits | |
| 1741 | fs_info->avail_metadata_alloc_bits; |
| 1742 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1743 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame^] | 1744 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 1745 | if (!(all_avail & btrfs_raid_group[i])) |
| 1746 | continue; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1747 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame^] | 1748 | if (num_devices < btrfs_raid_array[i].devs_min) { |
| 1749 | int ret = btrfs_raid_mindev_error[i]; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1750 | |
David Sterba | 418775a | 2016-02-15 16:28:14 +0100 | [diff] [blame^] | 1751 | if (ret) |
| 1752 | return ret; |
| 1753 | } |
Anand Jain | bd45ffb | 2016-02-13 10:01:34 +0800 | [diff] [blame] | 1754 | } |
| 1755 | |
| 1756 | return 0; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1757 | } |
| 1758 | |
Anand Jain | 6b526ed | 2016-02-13 10:01:39 +0800 | [diff] [blame] | 1759 | int btrfs_rm_device(struct btrfs_root *root, char *device_path, u64 devid) |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1760 | { |
| 1761 | struct btrfs_device *device; |
| 1762 | struct btrfs_device *next_device; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1763 | struct btrfs_fs_devices *cur_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1764 | u64 num_devices; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1765 | int ret = 0; |
| 1766 | bool clear_super = false; |
Anand Jain | 42b6742 | 2016-02-13 10:01:38 +0800 | [diff] [blame] | 1767 | char *dev_name = NULL; |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1768 | |
| 1769 | mutex_lock(&uuid_mutex); |
| 1770 | |
David Sterba | 3cc31a0 | 2016-02-15 16:00:26 +0100 | [diff] [blame] | 1771 | num_devices = root->fs_info->fs_devices->num_devices; |
| 1772 | btrfs_dev_replace_lock(&root->fs_info->dev_replace, 0); |
| 1773 | if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) { |
| 1774 | WARN_ON(num_devices < 1); |
| 1775 | num_devices--; |
| 1776 | } |
| 1777 | btrfs_dev_replace_unlock(&root->fs_info->dev_replace, 0); |
| 1778 | |
| 1779 | ret = btrfs_check_raid_min_devices(root->fs_info, num_devices - 1); |
Anand Jain | f1fa7f2 | 2016-02-13 10:01:33 +0800 | [diff] [blame] | 1780 | if (ret) |
| 1781 | goto out; |
| 1782 | |
Anand Jain | 6b526ed | 2016-02-13 10:01:39 +0800 | [diff] [blame] | 1783 | ret = btrfs_find_device_by_user_input(root, devid, device_path, |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1784 | &device); |
| 1785 | if (ret) |
| 1786 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1787 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1788 | if (device->is_tgtdev_for_dev_replace) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1789 | ret = BTRFS_ERROR_DEV_TGT_REPLACE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1790 | goto out; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1791 | } |
| 1792 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1793 | if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1794 | ret = BTRFS_ERROR_DEV_ONLY_WRITABLE; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1795 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1796 | } |
| 1797 | |
| 1798 | if (device->writeable) { |
Xiao Guangrong | 0c1daee | 2011-04-20 10:08:16 +0000 | [diff] [blame] | 1799 | lock_chunks(root); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1800 | list_del_init(&device->dev_alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 1801 | device->fs_devices->rw_devices--; |
Xiao Guangrong | 0c1daee | 2011-04-20 10:08:16 +0000 | [diff] [blame] | 1802 | unlock_chunks(root); |
Anand Jain | 42b6742 | 2016-02-13 10:01:38 +0800 | [diff] [blame] | 1803 | dev_name = kstrdup(device->name->str, GFP_KERNEL); |
| 1804 | if (!dev_name) { |
| 1805 | ret = -ENOMEM; |
| 1806 | goto error_undo; |
| 1807 | } |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1808 | clear_super = true; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1809 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1810 | |
Carey Underwood | d790155 | 2013-03-04 16:37:06 -0600 | [diff] [blame] | 1811 | mutex_unlock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1812 | ret = btrfs_shrink_device(device, 0); |
Carey Underwood | d790155 | 2013-03-04 16:37:06 -0600 | [diff] [blame] | 1813 | mutex_lock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1814 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1815 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1816 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1817 | /* |
| 1818 | * TODO: the superblock still includes this device in its num_devices |
| 1819 | * counter although write_all_supers() is not locked out. This |
| 1820 | * could give a filesystem state which requires a degraded mount. |
| 1821 | */ |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1822 | ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device); |
| 1823 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1824 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1825 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1826 | device->in_fs_metadata = 0; |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 1827 | btrfs_scrub_cancel_dev(root->fs_info, device); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1828 | |
| 1829 | /* |
| 1830 | * the device list mutex makes sure that we don't change |
| 1831 | * the device list while someone else is writing out all |
Filipe David Borba Manana | d730680 | 2013-08-09 15:41:36 +0100 | [diff] [blame] | 1832 | * the device supers. Whoever is writing all supers, should |
| 1833 | * lock the device list mutex before getting the number of |
| 1834 | * devices in the super block (super_copy). Conversely, |
| 1835 | * whoever updates the number of devices in the super block |
| 1836 | * (super_copy) should hold the device list mutex. |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1837 | */ |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1838 | |
| 1839 | cur_devices = device->fs_devices; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1840 | mutex_lock(&root->fs_info->fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1841 | list_del_rcu(&device->dev_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1842 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1843 | device->fs_devices->num_devices--; |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1844 | device->fs_devices->total_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1845 | |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 1846 | if (device->missing) |
Miao Xie | 3a7d55c | 2014-07-16 18:38:01 +0800 | [diff] [blame] | 1847 | device->fs_devices->missing_devices--; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 1848 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1849 | next_device = list_entry(root->fs_info->fs_devices->devices.next, |
| 1850 | struct btrfs_device, dev_list); |
| 1851 | if (device->bdev == root->fs_info->sb->s_bdev) |
| 1852 | root->fs_info->sb->s_bdev = next_device->bdev; |
| 1853 | if (device->bdev == root->fs_info->fs_devices->latest_bdev) |
| 1854 | root->fs_info->fs_devices->latest_bdev = next_device->bdev; |
| 1855 | |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 1856 | if (device->bdev) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1857 | device->fs_devices->open_devices--; |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 1858 | /* remove sysfs entry */ |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 1859 | btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device); |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 1860 | } |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 1861 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1862 | call_rcu(&device->rcu, free_device); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1863 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 1864 | num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1; |
| 1865 | btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices); |
Filipe David Borba Manana | d730680 | 2013-08-09 15:41:36 +0100 | [diff] [blame] | 1866 | mutex_unlock(&root->fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1867 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1868 | if (cur_devices->open_devices == 0) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1869 | struct btrfs_fs_devices *fs_devices; |
| 1870 | fs_devices = root->fs_info->fs_devices; |
| 1871 | while (fs_devices) { |
Rickard Strandqvist | 8321cf2 | 2014-05-22 22:43:43 +0200 | [diff] [blame] | 1872 | if (fs_devices->seed == cur_devices) { |
| 1873 | fs_devices->seed = cur_devices->seed; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1874 | break; |
Rickard Strandqvist | 8321cf2 | 2014-05-22 22:43:43 +0200 | [diff] [blame] | 1875 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1876 | fs_devices = fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1877 | } |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1878 | cur_devices->seed = NULL; |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1879 | __btrfs_close_devices(cur_devices); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1880 | free_fs_devices(cur_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1881 | } |
| 1882 | |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 1883 | root->fs_info->num_tolerated_disk_barrier_failures = |
| 1884 | btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info); |
| 1885 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1886 | /* |
| 1887 | * at this point, the device is zero sized. We want to |
| 1888 | * remove it from the devices list and zero out the old super |
| 1889 | */ |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1890 | if (clear_super) { |
Anand Jain | 42b6742 | 2016-02-13 10:01:38 +0800 | [diff] [blame] | 1891 | struct block_device *bdev; |
Anand Jain | 4d90d28 | 2014-04-06 12:59:07 +0800 | [diff] [blame] | 1892 | |
Anand Jain | 42b6742 | 2016-02-13 10:01:38 +0800 | [diff] [blame] | 1893 | bdev = blkdev_get_by_path(dev_name, FMODE_READ | FMODE_EXCL, |
| 1894 | root->fs_info->bdev_holder); |
| 1895 | if (!IS_ERR(bdev)) { |
| 1896 | btrfs_scratch_superblocks(bdev, dev_name); |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1897 | blkdev_put(bdev, FMODE_READ | FMODE_EXCL); |
Anand Jain | 4d90d28 | 2014-04-06 12:59:07 +0800 | [diff] [blame] | 1898 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1899 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1900 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1901 | out: |
Anand Jain | 42b6742 | 2016-02-13 10:01:38 +0800 | [diff] [blame] | 1902 | kfree(dev_name); |
| 1903 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1904 | mutex_unlock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1905 | return ret; |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1906 | |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1907 | error_undo: |
| 1908 | if (device->writeable) { |
Xiao Guangrong | 0c1daee | 2011-04-20 10:08:16 +0000 | [diff] [blame] | 1909 | lock_chunks(root); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1910 | list_add(&device->dev_alloc_list, |
| 1911 | &root->fs_info->fs_devices->alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 1912 | device->fs_devices->rw_devices++; |
Xiao Guangrong | 0c1daee | 2011-04-20 10:08:16 +0000 | [diff] [blame] | 1913 | unlock_chunks(root); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1914 | } |
Anand Jain | 24fc572 | 2016-02-13 10:01:36 +0800 | [diff] [blame] | 1915 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1916 | } |
| 1917 | |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 1918 | void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info, |
| 1919 | struct btrfs_device *srcdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1920 | { |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 1921 | struct btrfs_fs_devices *fs_devices; |
| 1922 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1923 | WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex)); |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 1924 | |
Anand Jain | 25e8e91 | 2014-08-20 10:56:56 +0800 | [diff] [blame] | 1925 | /* |
| 1926 | * in case of fs with no seed, srcdev->fs_devices will point |
| 1927 | * to fs_devices of fs_info. However when the dev being replaced is |
| 1928 | * a seed dev it will point to the seed's local fs_devices. In short |
| 1929 | * srcdev will have its correct fs_devices in both the cases. |
| 1930 | */ |
| 1931 | fs_devices = srcdev->fs_devices; |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 1932 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1933 | list_del_rcu(&srcdev->dev_list); |
| 1934 | list_del_rcu(&srcdev->dev_alloc_list); |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 1935 | fs_devices->num_devices--; |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 1936 | if (srcdev->missing) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 1937 | fs_devices->missing_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1938 | |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 1939 | if (srcdev->writeable) { |
| 1940 | fs_devices->rw_devices--; |
| 1941 | /* zero out the old super if it is writable */ |
David Sterba | 31388ab | 2015-11-19 11:35:17 +0100 | [diff] [blame] | 1942 | btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str); |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 1943 | } |
| 1944 | |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 1945 | if (srcdev->bdev) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 1946 | fs_devices->open_devices--; |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 1947 | } |
| 1948 | |
| 1949 | void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info, |
| 1950 | struct btrfs_device *srcdev) |
| 1951 | { |
| 1952 | struct btrfs_fs_devices *fs_devices = srcdev->fs_devices; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1953 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1954 | call_rcu(&srcdev->rcu, free_device); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 1955 | |
| 1956 | /* |
| 1957 | * unless fs_devices is seed fs, num_devices shouldn't go |
| 1958 | * zero |
| 1959 | */ |
| 1960 | BUG_ON(!fs_devices->num_devices && !fs_devices->seeding); |
| 1961 | |
| 1962 | /* if this is no devs we rather delete the fs_devices */ |
| 1963 | if (!fs_devices->num_devices) { |
| 1964 | struct btrfs_fs_devices *tmp_fs_devices; |
| 1965 | |
| 1966 | tmp_fs_devices = fs_info->fs_devices; |
| 1967 | while (tmp_fs_devices) { |
| 1968 | if (tmp_fs_devices->seed == fs_devices) { |
| 1969 | tmp_fs_devices->seed = fs_devices->seed; |
| 1970 | break; |
| 1971 | } |
| 1972 | tmp_fs_devices = tmp_fs_devices->seed; |
| 1973 | } |
| 1974 | fs_devices->seed = NULL; |
Anand Jain | 8bef840 | 2014-08-13 14:24:23 +0800 | [diff] [blame] | 1975 | __btrfs_close_devices(fs_devices); |
| 1976 | free_fs_devices(fs_devices); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 1977 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1978 | } |
| 1979 | |
| 1980 | void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info, |
| 1981 | struct btrfs_device *tgtdev) |
| 1982 | { |
| 1983 | struct btrfs_device *next_device; |
| 1984 | |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 1985 | mutex_lock(&uuid_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1986 | WARN_ON(!tgtdev); |
| 1987 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 1988 | |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 1989 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 1990 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1991 | if (tgtdev->bdev) { |
David Sterba | 31388ab | 2015-11-19 11:35:17 +0100 | [diff] [blame] | 1992 | btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1993 | fs_info->fs_devices->open_devices--; |
| 1994 | } |
| 1995 | fs_info->fs_devices->num_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1996 | |
| 1997 | next_device = list_entry(fs_info->fs_devices->devices.next, |
| 1998 | struct btrfs_device, dev_list); |
| 1999 | if (tgtdev->bdev == fs_info->sb->s_bdev) |
| 2000 | fs_info->sb->s_bdev = next_device->bdev; |
| 2001 | if (tgtdev->bdev == fs_info->fs_devices->latest_bdev) |
| 2002 | fs_info->fs_devices->latest_bdev = next_device->bdev; |
| 2003 | list_del_rcu(&tgtdev->dev_list); |
| 2004 | |
| 2005 | call_rcu(&tgtdev->rcu, free_device); |
| 2006 | |
| 2007 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 2008 | mutex_unlock(&uuid_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2009 | } |
| 2010 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 2011 | static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path, |
| 2012 | struct btrfs_device **device) |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2013 | { |
| 2014 | int ret = 0; |
| 2015 | struct btrfs_super_block *disk_super; |
| 2016 | u64 devid; |
| 2017 | u8 *dev_uuid; |
| 2018 | struct block_device *bdev; |
| 2019 | struct buffer_head *bh; |
| 2020 | |
| 2021 | *device = NULL; |
| 2022 | ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ, |
| 2023 | root->fs_info->bdev_holder, 0, &bdev, &bh); |
| 2024 | if (ret) |
| 2025 | return ret; |
| 2026 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 2027 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 2028 | dev_uuid = disk_super->dev_item.uuid; |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 2029 | *device = btrfs_find_device(root->fs_info, devid, dev_uuid, |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2030 | disk_super->fsid); |
| 2031 | brelse(bh); |
| 2032 | if (!*device) |
| 2033 | ret = -ENOENT; |
| 2034 | blkdev_put(bdev, FMODE_READ); |
| 2035 | return ret; |
| 2036 | } |
| 2037 | |
| 2038 | int btrfs_find_device_missing_or_by_path(struct btrfs_root *root, |
| 2039 | char *device_path, |
| 2040 | struct btrfs_device **device) |
| 2041 | { |
| 2042 | *device = NULL; |
| 2043 | if (strcmp(device_path, "missing") == 0) { |
| 2044 | struct list_head *devices; |
| 2045 | struct btrfs_device *tmp; |
| 2046 | |
| 2047 | devices = &root->fs_info->fs_devices->devices; |
| 2048 | /* |
| 2049 | * It is safe to read the devices since the volume_mutex |
| 2050 | * is held by the caller. |
| 2051 | */ |
| 2052 | list_for_each_entry(tmp, devices, dev_list) { |
| 2053 | if (tmp->in_fs_metadata && !tmp->bdev) { |
| 2054 | *device = tmp; |
| 2055 | break; |
| 2056 | } |
| 2057 | } |
| 2058 | |
Anand Jain | d74a625 | 2015-08-14 18:32:56 +0800 | [diff] [blame] | 2059 | if (!*device) |
| 2060 | return BTRFS_ERROR_DEV_MISSING_NOT_FOUND; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2061 | |
| 2062 | return 0; |
| 2063 | } else { |
| 2064 | return btrfs_find_device_by_path(root, device_path, device); |
| 2065 | } |
| 2066 | } |
| 2067 | |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2068 | int btrfs_find_device_by_user_input(struct btrfs_root *root, u64 srcdevid, |
| 2069 | char *srcdev_name, |
| 2070 | struct btrfs_device **device) |
| 2071 | { |
| 2072 | int ret; |
| 2073 | |
| 2074 | if (srcdevid) { |
| 2075 | ret = 0; |
| 2076 | *device = btrfs_find_device(root->fs_info, srcdevid, NULL, |
| 2077 | NULL); |
| 2078 | if (!*device) |
| 2079 | ret = -ENOENT; |
| 2080 | } else { |
Anand Jain | b3d1b15 | 2016-02-13 10:01:37 +0800 | [diff] [blame] | 2081 | if (!srcdev_name || !srcdev_name[0]) |
| 2082 | return -EINVAL; |
| 2083 | |
Anand Jain | 24e0474 | 2016-02-13 10:01:35 +0800 | [diff] [blame] | 2084 | ret = btrfs_find_device_missing_or_by_path(root, srcdev_name, |
| 2085 | device); |
| 2086 | } |
| 2087 | return ret; |
| 2088 | } |
| 2089 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2090 | /* |
| 2091 | * does all the dirty work required for changing file system's UUID. |
| 2092 | */ |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 2093 | static int btrfs_prepare_sprout(struct btrfs_root *root) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2094 | { |
| 2095 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
| 2096 | struct btrfs_fs_devices *old_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2097 | struct btrfs_fs_devices *seed_devices; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 2098 | struct btrfs_super_block *disk_super = root->fs_info->super_copy; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2099 | struct btrfs_device *device; |
| 2100 | u64 super_flags; |
| 2101 | |
| 2102 | BUG_ON(!mutex_is_locked(&uuid_mutex)); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2103 | if (!fs_devices->seeding) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2104 | return -EINVAL; |
| 2105 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 2106 | seed_devices = __alloc_fs_devices(); |
| 2107 | if (IS_ERR(seed_devices)) |
| 2108 | return PTR_ERR(seed_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2109 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2110 | old_devices = clone_fs_devices(fs_devices); |
| 2111 | if (IS_ERR(old_devices)) { |
| 2112 | kfree(seed_devices); |
| 2113 | return PTR_ERR(old_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2114 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2115 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2116 | list_add(&old_devices->list, &fs_uuids); |
| 2117 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2118 | memcpy(seed_devices, fs_devices, sizeof(*seed_devices)); |
| 2119 | seed_devices->opened = 1; |
| 2120 | INIT_LIST_HEAD(&seed_devices->devices); |
| 2121 | INIT_LIST_HEAD(&seed_devices->alloc_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2122 | mutex_init(&seed_devices->device_list_mutex); |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 2123 | |
| 2124 | mutex_lock(&root->fs_info->fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2125 | list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices, |
| 2126 | synchronize_rcu); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2127 | list_for_each_entry(device, &seed_devices->devices, dev_list) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2128 | device->fs_devices = seed_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2129 | |
| 2130 | lock_chunks(root); |
| 2131 | list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list); |
| 2132 | unlock_chunks(root); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2133 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2134 | fs_devices->seeding = 0; |
| 2135 | fs_devices->num_devices = 0; |
| 2136 | fs_devices->open_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2137 | fs_devices->missing_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2138 | fs_devices->rotating = 0; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2139 | fs_devices->seed = seed_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2140 | |
| 2141 | generate_random_uuid(fs_devices->fsid); |
| 2142 | memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
| 2143 | memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 2144 | mutex_unlock(&root->fs_info->fs_devices->device_list_mutex); |
| 2145 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2146 | super_flags = btrfs_super_flags(disk_super) & |
| 2147 | ~BTRFS_SUPER_FLAG_SEEDING; |
| 2148 | btrfs_set_super_flags(disk_super, super_flags); |
| 2149 | |
| 2150 | return 0; |
| 2151 | } |
| 2152 | |
| 2153 | /* |
| 2154 | * strore the expected generation for seed devices in device items. |
| 2155 | */ |
| 2156 | static int btrfs_finish_sprout(struct btrfs_trans_handle *trans, |
| 2157 | struct btrfs_root *root) |
| 2158 | { |
| 2159 | struct btrfs_path *path; |
| 2160 | struct extent_buffer *leaf; |
| 2161 | struct btrfs_dev_item *dev_item; |
| 2162 | struct btrfs_device *device; |
| 2163 | struct btrfs_key key; |
| 2164 | u8 fs_uuid[BTRFS_UUID_SIZE]; |
| 2165 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 2166 | u64 devid; |
| 2167 | int ret; |
| 2168 | |
| 2169 | path = btrfs_alloc_path(); |
| 2170 | if (!path) |
| 2171 | return -ENOMEM; |
| 2172 | |
| 2173 | root = root->fs_info->chunk_root; |
| 2174 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2175 | key.offset = 0; |
| 2176 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2177 | |
| 2178 | while (1) { |
| 2179 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2180 | if (ret < 0) |
| 2181 | goto error; |
| 2182 | |
| 2183 | leaf = path->nodes[0]; |
| 2184 | next_slot: |
| 2185 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 2186 | ret = btrfs_next_leaf(root, path); |
| 2187 | if (ret > 0) |
| 2188 | break; |
| 2189 | if (ret < 0) |
| 2190 | goto error; |
| 2191 | leaf = path->nodes[0]; |
| 2192 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2193 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2194 | continue; |
| 2195 | } |
| 2196 | |
| 2197 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 2198 | if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID || |
| 2199 | key.type != BTRFS_DEV_ITEM_KEY) |
| 2200 | break; |
| 2201 | |
| 2202 | dev_item = btrfs_item_ptr(leaf, path->slots[0], |
| 2203 | struct btrfs_dev_item); |
| 2204 | devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 2205 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2206 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 2207 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2208 | BTRFS_UUID_SIZE); |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 2209 | device = btrfs_find_device(root->fs_info, devid, dev_uuid, |
| 2210 | fs_uuid); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2211 | BUG_ON(!device); /* Logic error */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2212 | |
| 2213 | if (device->fs_devices->seeding) { |
| 2214 | btrfs_set_device_generation(leaf, dev_item, |
| 2215 | device->generation); |
| 2216 | btrfs_mark_buffer_dirty(leaf); |
| 2217 | } |
| 2218 | |
| 2219 | path->slots[0]++; |
| 2220 | goto next_slot; |
| 2221 | } |
| 2222 | ret = 0; |
| 2223 | error: |
| 2224 | btrfs_free_path(path); |
| 2225 | return ret; |
| 2226 | } |
| 2227 | |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2228 | int btrfs_init_new_device(struct btrfs_root *root, char *device_path) |
| 2229 | { |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2230 | struct request_queue *q; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2231 | struct btrfs_trans_handle *trans; |
| 2232 | struct btrfs_device *device; |
| 2233 | struct block_device *bdev; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2234 | struct list_head *devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2235 | struct super_block *sb = root->fs_info->sb; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2236 | struct rcu_string *name; |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2237 | u64 tmp; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2238 | int seeding_dev = 0; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2239 | int ret = 0; |
| 2240 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2241 | if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding) |
Liu Bo | f8c5d0b | 2012-05-10 18:10:38 +0800 | [diff] [blame] | 2242 | return -EROFS; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2243 | |
Li Zefan | a5d16333 | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 2244 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 2245 | root->fs_info->bdev_holder); |
Josef Bacik | 7f59203 | 2010-01-27 02:09:00 +0000 | [diff] [blame] | 2246 | if (IS_ERR(bdev)) |
| 2247 | return PTR_ERR(bdev); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2248 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2249 | if (root->fs_info->fs_devices->seeding) { |
| 2250 | seeding_dev = 1; |
| 2251 | down_write(&sb->s_umount); |
| 2252 | mutex_lock(&uuid_mutex); |
| 2253 | } |
| 2254 | |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 2255 | filemap_write_and_wait(bdev->bd_inode->i_mapping); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2256 | |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2257 | devices = &root->fs_info->fs_devices->devices; |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2258 | |
| 2259 | mutex_lock(&root->fs_info->fs_devices->device_list_mutex); |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 2260 | list_for_each_entry(device, devices, dev_list) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2261 | if (device->bdev == bdev) { |
| 2262 | ret = -EEXIST; |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2263 | mutex_unlock( |
| 2264 | &root->fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2265 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2266 | } |
| 2267 | } |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2268 | mutex_unlock(&root->fs_info->fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2269 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2270 | device = btrfs_alloc_device(root->fs_info, NULL, NULL); |
| 2271 | if (IS_ERR(device)) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2272 | /* we can safely leave the fs_devices entry around */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2273 | ret = PTR_ERR(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2274 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2275 | } |
| 2276 | |
David Sterba | 78f2c9e | 2016-02-11 14:25:38 +0100 | [diff] [blame] | 2277 | name = rcu_string_strdup(device_path, GFP_KERNEL); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2278 | if (!name) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2279 | kfree(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2280 | ret = -ENOMEM; |
| 2281 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2282 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2283 | rcu_assign_pointer(device->name, name); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2284 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2285 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2286 | if (IS_ERR(trans)) { |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2287 | rcu_string_free(device->name); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2288 | kfree(device); |
| 2289 | ret = PTR_ERR(trans); |
| 2290 | goto error; |
| 2291 | } |
| 2292 | |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2293 | q = bdev_get_queue(bdev); |
| 2294 | if (blk_queue_discard(q)) |
| 2295 | device->can_discard = 1; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2296 | device->writeable = 1; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2297 | device->generation = trans->transid; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2298 | device->io_width = root->sectorsize; |
| 2299 | device->io_align = root->sectorsize; |
| 2300 | device->sector_size = root->sectorsize; |
| 2301 | device->total_bytes = i_size_read(bdev->bd_inode); |
Yan Zheng | 2cc3c55 | 2009-06-04 09:23:50 -0400 | [diff] [blame] | 2302 | device->disk_total_bytes = device->total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2303 | device->commit_total_bytes = device->total_bytes; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2304 | device->dev_root = root->fs_info->dev_root; |
| 2305 | device->bdev = bdev; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 2306 | device->in_fs_metadata = 1; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2307 | device->is_tgtdev_for_dev_replace = 0; |
Ilya Dryomov | fb01aa8 | 2011-02-15 18:12:57 +0000 | [diff] [blame] | 2308 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2309 | device->dev_stats_valid = 1; |
Zheng Yan | 325cd4b | 2008-09-05 16:43:54 -0400 | [diff] [blame] | 2310 | set_blocksize(device->bdev, 4096); |
| 2311 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2312 | if (seeding_dev) { |
| 2313 | sb->s_flags &= ~MS_RDONLY; |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 2314 | ret = btrfs_prepare_sprout(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2315 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2316 | } |
| 2317 | |
| 2318 | device->fs_devices = root->fs_info->fs_devices; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2319 | |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2320 | mutex_lock(&root->fs_info->fs_devices->device_list_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2321 | lock_chunks(root); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2322 | list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2323 | list_add(&device->dev_alloc_list, |
| 2324 | &root->fs_info->fs_devices->alloc_list); |
| 2325 | root->fs_info->fs_devices->num_devices++; |
| 2326 | root->fs_info->fs_devices->open_devices++; |
| 2327 | root->fs_info->fs_devices->rw_devices++; |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 2328 | root->fs_info->fs_devices->total_devices++; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2329 | root->fs_info->fs_devices->total_rw_bytes += device->total_bytes; |
| 2330 | |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 2331 | spin_lock(&root->fs_info->free_chunk_lock); |
| 2332 | root->fs_info->free_chunk_space += device->total_bytes; |
| 2333 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 2334 | |
Chris Mason | c289811 | 2009-06-10 09:51:32 -0400 | [diff] [blame] | 2335 | if (!blk_queue_nonrot(bdev_get_queue(bdev))) |
| 2336 | root->fs_info->fs_devices->rotating = 1; |
| 2337 | |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2338 | tmp = btrfs_super_total_bytes(root->fs_info->super_copy); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 2339 | btrfs_set_super_total_bytes(root->fs_info->super_copy, |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2340 | tmp + device->total_bytes); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2341 | |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2342 | tmp = btrfs_super_num_devices(root->fs_info->super_copy); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 2343 | btrfs_set_super_num_devices(root->fs_info->super_copy, |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2344 | tmp + 1); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2345 | |
| 2346 | /* add sysfs device entry */ |
Anand Jain | e3bd697 | 2015-08-14 18:32:48 +0800 | [diff] [blame] | 2347 | btrfs_sysfs_add_device_link(root->fs_info->fs_devices, device); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2348 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2349 | /* |
| 2350 | * we've got more storage, clear any full flags on the space |
| 2351 | * infos |
| 2352 | */ |
| 2353 | btrfs_clear_space_info_full(root->fs_info); |
| 2354 | |
| 2355 | unlock_chunks(root); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2356 | mutex_unlock(&root->fs_info->fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2357 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2358 | if (seeding_dev) { |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2359 | lock_chunks(root); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2360 | ret = init_first_rw_device(trans, root, device); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2361 | unlock_chunks(root); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2362 | if (ret) { |
| 2363 | btrfs_abort_transaction(trans, root, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2364 | goto error_trans; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2365 | } |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2366 | } |
| 2367 | |
| 2368 | ret = btrfs_add_device(trans, root, device); |
| 2369 | if (ret) { |
| 2370 | btrfs_abort_transaction(trans, root, ret); |
| 2371 | goto error_trans; |
| 2372 | } |
| 2373 | |
| 2374 | if (seeding_dev) { |
| 2375 | char fsid_buf[BTRFS_UUID_UNPARSED_SIZE]; |
| 2376 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2377 | ret = btrfs_finish_sprout(trans, root); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2378 | if (ret) { |
| 2379 | btrfs_abort_transaction(trans, root, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2380 | goto error_trans; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2381 | } |
Anand Jain | b2373f2 | 2014-06-03 11:36:03 +0800 | [diff] [blame] | 2382 | |
| 2383 | /* Sprouting would change fsid of the mounted root, |
| 2384 | * so rename the fsid on the sysfs |
| 2385 | */ |
| 2386 | snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU", |
| 2387 | root->fs_info->fsid); |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 2388 | if (kobject_rename(&root->fs_info->fs_devices->fsid_kobj, |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 2389 | fsid_buf)) |
David Sterba | f14d104 | 2015-10-08 11:37:06 +0200 | [diff] [blame] | 2390 | btrfs_warn(root->fs_info, |
| 2391 | "sysfs: failed to create fsid for sprout"); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2392 | } |
| 2393 | |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 2394 | root->fs_info->num_tolerated_disk_barrier_failures = |
| 2395 | btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2396 | ret = btrfs_commit_transaction(trans, root); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2397 | |
| 2398 | if (seeding_dev) { |
| 2399 | mutex_unlock(&uuid_mutex); |
| 2400 | up_write(&sb->s_umount); |
| 2401 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2402 | if (ret) /* transaction commit */ |
| 2403 | return ret; |
| 2404 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2405 | ret = btrfs_relocate_sys_chunks(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2406 | if (ret < 0) |
Anand Jain | a4553fe | 2015-09-25 14:43:01 +0800 | [diff] [blame] | 2407 | btrfs_std_error(root->fs_info, ret, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2408 | "Failed to relocate sys chunks after " |
| 2409 | "device initialization. This can be fixed " |
| 2410 | "using the \"btrfs balance\" command."); |
Miao Xie | 671415b | 2012-10-16 11:26:46 +0000 | [diff] [blame] | 2411 | trans = btrfs_attach_transaction(root); |
| 2412 | if (IS_ERR(trans)) { |
| 2413 | if (PTR_ERR(trans) == -ENOENT) |
| 2414 | return 0; |
| 2415 | return PTR_ERR(trans); |
| 2416 | } |
| 2417 | ret = btrfs_commit_transaction(trans, root); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2418 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2419 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 2420 | /* Update ctime/mtime for libblkid */ |
| 2421 | update_dev_time(device_path); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2422 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2423 | |
| 2424 | error_trans: |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2425 | btrfs_end_transaction(trans, root); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2426 | rcu_string_free(device->name); |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 2427 | btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2428 | kfree(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2429 | error: |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 2430 | blkdev_put(bdev, FMODE_EXCL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2431 | if (seeding_dev) { |
| 2432 | mutex_unlock(&uuid_mutex); |
| 2433 | up_write(&sb->s_umount); |
| 2434 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2435 | return ret; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2436 | } |
| 2437 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2438 | int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path, |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2439 | struct btrfs_device *srcdev, |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2440 | struct btrfs_device **device_out) |
| 2441 | { |
| 2442 | struct request_queue *q; |
| 2443 | struct btrfs_device *device; |
| 2444 | struct block_device *bdev; |
| 2445 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 2446 | struct list_head *devices; |
| 2447 | struct rcu_string *name; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2448 | u64 devid = BTRFS_DEV_REPLACE_DEVID; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2449 | int ret = 0; |
| 2450 | |
| 2451 | *device_out = NULL; |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2452 | if (fs_info->fs_devices->seeding) { |
| 2453 | btrfs_err(fs_info, "the filesystem is a seed filesystem!"); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2454 | return -EINVAL; |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2455 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2456 | |
| 2457 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
| 2458 | fs_info->bdev_holder); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2459 | if (IS_ERR(bdev)) { |
| 2460 | btrfs_err(fs_info, "target device %s is invalid!", device_path); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2461 | return PTR_ERR(bdev); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2462 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2463 | |
| 2464 | filemap_write_and_wait(bdev->bd_inode->i_mapping); |
| 2465 | |
| 2466 | devices = &fs_info->fs_devices->devices; |
| 2467 | list_for_each_entry(device, devices, dev_list) { |
| 2468 | if (device->bdev == bdev) { |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2469 | btrfs_err(fs_info, "target device is in the filesystem!"); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2470 | ret = -EEXIST; |
| 2471 | goto error; |
| 2472 | } |
| 2473 | } |
| 2474 | |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2475 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2476 | if (i_size_read(bdev->bd_inode) < |
| 2477 | btrfs_device_get_total_bytes(srcdev)) { |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2478 | btrfs_err(fs_info, "target device is smaller than source device!"); |
| 2479 | ret = -EINVAL; |
| 2480 | goto error; |
| 2481 | } |
| 2482 | |
| 2483 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2484 | device = btrfs_alloc_device(NULL, &devid, NULL); |
| 2485 | if (IS_ERR(device)) { |
| 2486 | ret = PTR_ERR(device); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2487 | goto error; |
| 2488 | } |
| 2489 | |
| 2490 | name = rcu_string_strdup(device_path, GFP_NOFS); |
| 2491 | if (!name) { |
| 2492 | kfree(device); |
| 2493 | ret = -ENOMEM; |
| 2494 | goto error; |
| 2495 | } |
| 2496 | rcu_assign_pointer(device->name, name); |
| 2497 | |
| 2498 | q = bdev_get_queue(bdev); |
| 2499 | if (blk_queue_discard(q)) |
| 2500 | device->can_discard = 1; |
| 2501 | mutex_lock(&root->fs_info->fs_devices->device_list_mutex); |
| 2502 | device->writeable = 1; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2503 | device->generation = 0; |
| 2504 | device->io_width = root->sectorsize; |
| 2505 | device->io_align = root->sectorsize; |
| 2506 | device->sector_size = root->sectorsize; |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2507 | device->total_bytes = btrfs_device_get_total_bytes(srcdev); |
| 2508 | device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev); |
| 2509 | device->bytes_used = btrfs_device_get_bytes_used(srcdev); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2510 | ASSERT(list_empty(&srcdev->resized_list)); |
| 2511 | device->commit_total_bytes = srcdev->commit_total_bytes; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 2512 | device->commit_bytes_used = device->bytes_used; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2513 | device->dev_root = fs_info->dev_root; |
| 2514 | device->bdev = bdev; |
| 2515 | device->in_fs_metadata = 1; |
| 2516 | device->is_tgtdev_for_dev_replace = 1; |
| 2517 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2518 | device->dev_stats_valid = 1; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2519 | set_blocksize(device->bdev, 4096); |
| 2520 | device->fs_devices = fs_info->fs_devices; |
| 2521 | list_add(&device->dev_list, &fs_info->fs_devices->devices); |
| 2522 | fs_info->fs_devices->num_devices++; |
| 2523 | fs_info->fs_devices->open_devices++; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2524 | mutex_unlock(&root->fs_info->fs_devices->device_list_mutex); |
| 2525 | |
| 2526 | *device_out = device; |
| 2527 | return ret; |
| 2528 | |
| 2529 | error: |
| 2530 | blkdev_put(bdev, FMODE_EXCL); |
| 2531 | return ret; |
| 2532 | } |
| 2533 | |
| 2534 | void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info, |
| 2535 | struct btrfs_device *tgtdev) |
| 2536 | { |
| 2537 | WARN_ON(fs_info->fs_devices->rw_devices == 0); |
| 2538 | tgtdev->io_width = fs_info->dev_root->sectorsize; |
| 2539 | tgtdev->io_align = fs_info->dev_root->sectorsize; |
| 2540 | tgtdev->sector_size = fs_info->dev_root->sectorsize; |
| 2541 | tgtdev->dev_root = fs_info->dev_root; |
| 2542 | tgtdev->in_fs_metadata = 1; |
| 2543 | } |
| 2544 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2545 | static noinline int btrfs_update_device(struct btrfs_trans_handle *trans, |
| 2546 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2547 | { |
| 2548 | int ret; |
| 2549 | struct btrfs_path *path; |
| 2550 | struct btrfs_root *root; |
| 2551 | struct btrfs_dev_item *dev_item; |
| 2552 | struct extent_buffer *leaf; |
| 2553 | struct btrfs_key key; |
| 2554 | |
| 2555 | root = device->dev_root->fs_info->chunk_root; |
| 2556 | |
| 2557 | path = btrfs_alloc_path(); |
| 2558 | if (!path) |
| 2559 | return -ENOMEM; |
| 2560 | |
| 2561 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2562 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2563 | key.offset = device->devid; |
| 2564 | |
| 2565 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2566 | if (ret < 0) |
| 2567 | goto out; |
| 2568 | |
| 2569 | if (ret > 0) { |
| 2570 | ret = -ENOENT; |
| 2571 | goto out; |
| 2572 | } |
| 2573 | |
| 2574 | leaf = path->nodes[0]; |
| 2575 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 2576 | |
| 2577 | btrfs_set_device_id(leaf, dev_item, device->devid); |
| 2578 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 2579 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 2580 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 2581 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2582 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 2583 | btrfs_device_get_disk_total_bytes(device)); |
| 2584 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 2585 | btrfs_device_get_bytes_used(device)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2586 | btrfs_mark_buffer_dirty(leaf); |
| 2587 | |
| 2588 | out: |
| 2589 | btrfs_free_path(path); |
| 2590 | return ret; |
| 2591 | } |
| 2592 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2593 | int btrfs_grow_device(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2594 | struct btrfs_device *device, u64 new_size) |
| 2595 | { |
| 2596 | struct btrfs_super_block *super_copy = |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 2597 | device->dev_root->fs_info->super_copy; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2598 | struct btrfs_fs_devices *fs_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2599 | u64 old_total; |
| 2600 | u64 diff; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2601 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2602 | if (!device->writeable) |
| 2603 | return -EACCES; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2604 | |
| 2605 | lock_chunks(device->dev_root); |
| 2606 | old_total = btrfs_super_total_bytes(super_copy); |
| 2607 | diff = new_size - device->total_bytes; |
| 2608 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2609 | if (new_size <= device->total_bytes || |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2610 | device->is_tgtdev_for_dev_replace) { |
| 2611 | unlock_chunks(device->dev_root); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2612 | return -EINVAL; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2613 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2614 | |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2615 | fs_devices = device->dev_root->fs_info->fs_devices; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2616 | |
| 2617 | btrfs_set_super_total_bytes(super_copy, old_total + diff); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2618 | device->fs_devices->total_rw_bytes += diff; |
| 2619 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2620 | btrfs_device_set_total_bytes(device, new_size); |
| 2621 | btrfs_device_set_disk_total_bytes(device, new_size); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 2622 | btrfs_clear_space_info_full(device->dev_root->fs_info); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2623 | if (list_empty(&device->resized_list)) |
| 2624 | list_add_tail(&device->resized_list, |
| 2625 | &fs_devices->resized_devices); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2626 | unlock_chunks(device->dev_root); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 2627 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2628 | return btrfs_update_device(trans, device); |
| 2629 | } |
| 2630 | |
| 2631 | static int btrfs_free_chunk(struct btrfs_trans_handle *trans, |
Zhao Lei | a688a04 | 2015-02-09 20:31:44 +0800 | [diff] [blame] | 2632 | struct btrfs_root *root, u64 chunk_objectid, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2633 | u64 chunk_offset) |
| 2634 | { |
| 2635 | int ret; |
| 2636 | struct btrfs_path *path; |
| 2637 | struct btrfs_key key; |
| 2638 | |
| 2639 | root = root->fs_info->chunk_root; |
| 2640 | path = btrfs_alloc_path(); |
| 2641 | if (!path) |
| 2642 | return -ENOMEM; |
| 2643 | |
| 2644 | key.objectid = chunk_objectid; |
| 2645 | key.offset = chunk_offset; |
| 2646 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 2647 | |
| 2648 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2649 | if (ret < 0) |
| 2650 | goto out; |
| 2651 | else if (ret > 0) { /* Logic error or corruption */ |
Anand Jain | a4553fe | 2015-09-25 14:43:01 +0800 | [diff] [blame] | 2652 | btrfs_std_error(root->fs_info, -ENOENT, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2653 | "Failed lookup while freeing chunk."); |
| 2654 | ret = -ENOENT; |
| 2655 | goto out; |
| 2656 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2657 | |
| 2658 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2659 | if (ret < 0) |
Anand Jain | a4553fe | 2015-09-25 14:43:01 +0800 | [diff] [blame] | 2660 | btrfs_std_error(root->fs_info, ret, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2661 | "Failed to delete chunk item."); |
| 2662 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2663 | btrfs_free_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 2664 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2665 | } |
| 2666 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 2667 | static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64 |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2668 | chunk_offset) |
| 2669 | { |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 2670 | struct btrfs_super_block *super_copy = root->fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2671 | struct btrfs_disk_key *disk_key; |
| 2672 | struct btrfs_chunk *chunk; |
| 2673 | u8 *ptr; |
| 2674 | int ret = 0; |
| 2675 | u32 num_stripes; |
| 2676 | u32 array_size; |
| 2677 | u32 len = 0; |
| 2678 | u32 cur; |
| 2679 | struct btrfs_key key; |
| 2680 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2681 | lock_chunks(root); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2682 | array_size = btrfs_super_sys_array_size(super_copy); |
| 2683 | |
| 2684 | ptr = super_copy->sys_chunk_array; |
| 2685 | cur = 0; |
| 2686 | |
| 2687 | while (cur < array_size) { |
| 2688 | disk_key = (struct btrfs_disk_key *)ptr; |
| 2689 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 2690 | |
| 2691 | len = sizeof(*disk_key); |
| 2692 | |
| 2693 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 2694 | chunk = (struct btrfs_chunk *)(ptr + len); |
| 2695 | num_stripes = btrfs_stack_chunk_num_stripes(chunk); |
| 2696 | len += btrfs_chunk_item_size(num_stripes); |
| 2697 | } else { |
| 2698 | ret = -EIO; |
| 2699 | break; |
| 2700 | } |
| 2701 | if (key.objectid == chunk_objectid && |
| 2702 | key.offset == chunk_offset) { |
| 2703 | memmove(ptr, ptr + len, array_size - (cur + len)); |
| 2704 | array_size -= len; |
| 2705 | btrfs_set_super_sys_array_size(super_copy, array_size); |
| 2706 | } else { |
| 2707 | ptr += len; |
| 2708 | cur += len; |
| 2709 | } |
| 2710 | } |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2711 | unlock_chunks(root); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2712 | return ret; |
| 2713 | } |
| 2714 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2715 | int btrfs_remove_chunk(struct btrfs_trans_handle *trans, |
| 2716 | struct btrfs_root *root, u64 chunk_offset) |
| 2717 | { |
| 2718 | struct extent_map_tree *em_tree; |
| 2719 | struct extent_map *em; |
| 2720 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
| 2721 | struct map_lookup *map; |
| 2722 | u64 dev_extent_len = 0; |
| 2723 | u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2724 | int i, ret = 0; |
| 2725 | |
| 2726 | /* Just in case */ |
| 2727 | root = root->fs_info->chunk_root; |
| 2728 | em_tree = &root->fs_info->mapping_tree.map_tree; |
| 2729 | |
| 2730 | read_lock(&em_tree->lock); |
| 2731 | em = lookup_extent_mapping(em_tree, chunk_offset, 1); |
| 2732 | read_unlock(&em_tree->lock); |
| 2733 | |
| 2734 | if (!em || em->start > chunk_offset || |
| 2735 | em->start + em->len < chunk_offset) { |
| 2736 | /* |
| 2737 | * 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] | 2738 | * user having built with ASSERT enabled, so if ASSERT doesn't |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2739 | * do anything we still error out. |
| 2740 | */ |
| 2741 | ASSERT(0); |
| 2742 | if (em) |
| 2743 | free_extent_map(em); |
| 2744 | return -EINVAL; |
| 2745 | } |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 2746 | map = em->map_lookup; |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 2747 | lock_chunks(root->fs_info->chunk_root); |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 2748 | check_system_chunk(trans, extent_root, map->type); |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 2749 | unlock_chunks(root->fs_info->chunk_root); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2750 | |
| 2751 | for (i = 0; i < map->num_stripes; i++) { |
| 2752 | struct btrfs_device *device = map->stripes[i].dev; |
| 2753 | ret = btrfs_free_dev_extent(trans, device, |
| 2754 | map->stripes[i].physical, |
| 2755 | &dev_extent_len); |
| 2756 | if (ret) { |
| 2757 | btrfs_abort_transaction(trans, root, ret); |
| 2758 | goto out; |
| 2759 | } |
| 2760 | |
| 2761 | if (device->bytes_used > 0) { |
| 2762 | lock_chunks(root); |
| 2763 | btrfs_device_set_bytes_used(device, |
| 2764 | device->bytes_used - dev_extent_len); |
| 2765 | spin_lock(&root->fs_info->free_chunk_lock); |
| 2766 | root->fs_info->free_chunk_space += dev_extent_len; |
| 2767 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 2768 | btrfs_clear_space_info_full(root->fs_info); |
| 2769 | unlock_chunks(root); |
| 2770 | } |
| 2771 | |
| 2772 | if (map->stripes[i].dev) { |
| 2773 | ret = btrfs_update_device(trans, map->stripes[i].dev); |
| 2774 | if (ret) { |
| 2775 | btrfs_abort_transaction(trans, root, ret); |
| 2776 | goto out; |
| 2777 | } |
| 2778 | } |
| 2779 | } |
Zhao Lei | a688a04 | 2015-02-09 20:31:44 +0800 | [diff] [blame] | 2780 | ret = btrfs_free_chunk(trans, root, chunk_objectid, chunk_offset); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2781 | if (ret) { |
| 2782 | btrfs_abort_transaction(trans, root, ret); |
| 2783 | goto out; |
| 2784 | } |
| 2785 | |
| 2786 | trace_btrfs_chunk_free(root, map, chunk_offset, em->len); |
| 2787 | |
| 2788 | if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 2789 | ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset); |
| 2790 | if (ret) { |
| 2791 | btrfs_abort_transaction(trans, root, ret); |
| 2792 | goto out; |
| 2793 | } |
| 2794 | } |
| 2795 | |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 2796 | ret = btrfs_remove_block_group(trans, extent_root, chunk_offset, em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2797 | if (ret) { |
| 2798 | btrfs_abort_transaction(trans, extent_root, ret); |
| 2799 | goto out; |
| 2800 | } |
| 2801 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2802 | out: |
| 2803 | /* once for us */ |
| 2804 | free_extent_map(em); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2805 | return ret; |
| 2806 | } |
| 2807 | |
Zhaolei | dc2ee4e | 2015-08-05 18:00:04 +0800 | [diff] [blame] | 2808 | static int btrfs_relocate_chunk(struct btrfs_root *root, u64 chunk_offset) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2809 | { |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2810 | struct btrfs_root *extent_root; |
| 2811 | struct btrfs_trans_handle *trans; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2812 | int ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2813 | |
| 2814 | root = root->fs_info->chunk_root; |
| 2815 | extent_root = root->fs_info->extent_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2816 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2817 | /* |
| 2818 | * Prevent races with automatic removal of unused block groups. |
| 2819 | * After we relocate and before we remove the chunk with offset |
| 2820 | * chunk_offset, automatic removal of the block group can kick in, |
| 2821 | * resulting in a failure when calling btrfs_remove_chunk() below. |
| 2822 | * |
| 2823 | * Make sure to acquire this mutex before doing a tree search (dev |
| 2824 | * or chunk trees) to find chunks. Otherwise the cleaner kthread might |
| 2825 | * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after |
| 2826 | * we release the path used to search the chunk/dev tree and before |
| 2827 | * the current task acquires this mutex and calls us. |
| 2828 | */ |
| 2829 | ASSERT(mutex_is_locked(&root->fs_info->delete_unused_bgs_mutex)); |
| 2830 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2831 | ret = btrfs_can_relocate(extent_root, chunk_offset); |
| 2832 | if (ret) |
| 2833 | return -ENOSPC; |
| 2834 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2835 | /* step one, relocate all the extents inside this chunk */ |
Zhaolei | 55e3a60 | 2015-08-05 16:43:30 +0800 | [diff] [blame] | 2836 | btrfs_scrub_pause(root); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 2837 | ret = btrfs_relocate_block_group(extent_root, chunk_offset); |
Zhaolei | 55e3a60 | 2015-08-05 16:43:30 +0800 | [diff] [blame] | 2838 | btrfs_scrub_continue(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2839 | if (ret) |
| 2840 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2841 | |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 2842 | trans = btrfs_start_trans_remove_block_group(root->fs_info, |
| 2843 | chunk_offset); |
Liu Bo | 0f788c5 | 2013-03-04 16:25:40 +0000 | [diff] [blame] | 2844 | if (IS_ERR(trans)) { |
| 2845 | ret = PTR_ERR(trans); |
Anand Jain | a4553fe | 2015-09-25 14:43:01 +0800 | [diff] [blame] | 2846 | btrfs_std_error(root->fs_info, ret, NULL); |
Liu Bo | 0f788c5 | 2013-03-04 16:25:40 +0000 | [diff] [blame] | 2847 | return ret; |
| 2848 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2849 | |
| 2850 | /* |
| 2851 | * step two, delete the device extents and the |
| 2852 | * chunk tree entries |
| 2853 | */ |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2854 | ret = btrfs_remove_chunk(trans, root, chunk_offset); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2855 | btrfs_end_transaction(trans, root); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2856 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2857 | } |
| 2858 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2859 | static int btrfs_relocate_sys_chunks(struct btrfs_root *root) |
| 2860 | { |
| 2861 | struct btrfs_root *chunk_root = root->fs_info->chunk_root; |
| 2862 | struct btrfs_path *path; |
| 2863 | struct extent_buffer *leaf; |
| 2864 | struct btrfs_chunk *chunk; |
| 2865 | struct btrfs_key key; |
| 2866 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2867 | u64 chunk_type; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2868 | bool retried = false; |
| 2869 | int failed = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2870 | int ret; |
| 2871 | |
| 2872 | path = btrfs_alloc_path(); |
| 2873 | if (!path) |
| 2874 | return -ENOMEM; |
| 2875 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2876 | again: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2877 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 2878 | key.offset = (u64)-1; |
| 2879 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 2880 | |
| 2881 | while (1) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2882 | mutex_lock(&root->fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2883 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2884 | if (ret < 0) { |
| 2885 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2886 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2887 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2888 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2889 | |
| 2890 | ret = btrfs_previous_item(chunk_root, path, key.objectid, |
| 2891 | key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2892 | if (ret) |
| 2893 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2894 | if (ret < 0) |
| 2895 | goto error; |
| 2896 | if (ret > 0) |
| 2897 | break; |
| 2898 | |
| 2899 | leaf = path->nodes[0]; |
| 2900 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 2901 | |
| 2902 | chunk = btrfs_item_ptr(leaf, path->slots[0], |
| 2903 | struct btrfs_chunk); |
| 2904 | chunk_type = btrfs_chunk_type(leaf, chunk); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2905 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2906 | |
| 2907 | if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Zhao Lei | a688a04 | 2015-02-09 20:31:44 +0800 | [diff] [blame] | 2908 | ret = btrfs_relocate_chunk(chunk_root, |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2909 | found_key.offset); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2910 | if (ret == -ENOSPC) |
| 2911 | failed++; |
HIMANGI SARAOGI | 1458665 | 2014-07-09 03:51:41 +0530 | [diff] [blame] | 2912 | else |
| 2913 | BUG_ON(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2914 | } |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2915 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2916 | |
| 2917 | if (found_key.offset == 0) |
| 2918 | break; |
| 2919 | key.offset = found_key.offset - 1; |
| 2920 | } |
| 2921 | ret = 0; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2922 | if (failed && !retried) { |
| 2923 | failed = 0; |
| 2924 | retried = true; |
| 2925 | goto again; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 2926 | } else if (WARN_ON(failed && retried)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2927 | ret = -ENOSPC; |
| 2928 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2929 | error: |
| 2930 | btrfs_free_path(path); |
| 2931 | return ret; |
| 2932 | } |
| 2933 | |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 2934 | static int insert_balance_item(struct btrfs_root *root, |
| 2935 | struct btrfs_balance_control *bctl) |
| 2936 | { |
| 2937 | struct btrfs_trans_handle *trans; |
| 2938 | struct btrfs_balance_item *item; |
| 2939 | struct btrfs_disk_balance_args disk_bargs; |
| 2940 | struct btrfs_path *path; |
| 2941 | struct extent_buffer *leaf; |
| 2942 | struct btrfs_key key; |
| 2943 | int ret, err; |
| 2944 | |
| 2945 | path = btrfs_alloc_path(); |
| 2946 | if (!path) |
| 2947 | return -ENOMEM; |
| 2948 | |
| 2949 | trans = btrfs_start_transaction(root, 0); |
| 2950 | if (IS_ERR(trans)) { |
| 2951 | btrfs_free_path(path); |
| 2952 | return PTR_ERR(trans); |
| 2953 | } |
| 2954 | |
| 2955 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 2956 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 2957 | key.offset = 0; |
| 2958 | |
| 2959 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 2960 | sizeof(*item)); |
| 2961 | if (ret) |
| 2962 | goto out; |
| 2963 | |
| 2964 | leaf = path->nodes[0]; |
| 2965 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 2966 | |
| 2967 | memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item)); |
| 2968 | |
| 2969 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data); |
| 2970 | btrfs_set_balance_data(leaf, item, &disk_bargs); |
| 2971 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta); |
| 2972 | btrfs_set_balance_meta(leaf, item, &disk_bargs); |
| 2973 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys); |
| 2974 | btrfs_set_balance_sys(leaf, item, &disk_bargs); |
| 2975 | |
| 2976 | btrfs_set_balance_flags(leaf, item, bctl->flags); |
| 2977 | |
| 2978 | btrfs_mark_buffer_dirty(leaf); |
| 2979 | out: |
| 2980 | btrfs_free_path(path); |
| 2981 | err = btrfs_commit_transaction(trans, root); |
| 2982 | if (err && !ret) |
| 2983 | ret = err; |
| 2984 | return ret; |
| 2985 | } |
| 2986 | |
| 2987 | static int del_balance_item(struct btrfs_root *root) |
| 2988 | { |
| 2989 | struct btrfs_trans_handle *trans; |
| 2990 | struct btrfs_path *path; |
| 2991 | struct btrfs_key key; |
| 2992 | int ret, err; |
| 2993 | |
| 2994 | path = btrfs_alloc_path(); |
| 2995 | if (!path) |
| 2996 | return -ENOMEM; |
| 2997 | |
| 2998 | trans = btrfs_start_transaction(root, 0); |
| 2999 | if (IS_ERR(trans)) { |
| 3000 | btrfs_free_path(path); |
| 3001 | return PTR_ERR(trans); |
| 3002 | } |
| 3003 | |
| 3004 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3005 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3006 | key.offset = 0; |
| 3007 | |
| 3008 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 3009 | if (ret < 0) |
| 3010 | goto out; |
| 3011 | if (ret > 0) { |
| 3012 | ret = -ENOENT; |
| 3013 | goto out; |
| 3014 | } |
| 3015 | |
| 3016 | ret = btrfs_del_item(trans, root, path); |
| 3017 | out: |
| 3018 | btrfs_free_path(path); |
| 3019 | err = btrfs_commit_transaction(trans, root); |
| 3020 | if (err && !ret) |
| 3021 | ret = err; |
| 3022 | return ret; |
| 3023 | } |
| 3024 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3025 | /* |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3026 | * This is a heuristic used to reduce the number of chunks balanced on |
| 3027 | * resume after balance was interrupted. |
| 3028 | */ |
| 3029 | static void update_balance_args(struct btrfs_balance_control *bctl) |
| 3030 | { |
| 3031 | /* |
| 3032 | * Turn on soft mode for chunk types that were being converted. |
| 3033 | */ |
| 3034 | if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3035 | bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3036 | if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3037 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3038 | if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3039 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3040 | |
| 3041 | /* |
| 3042 | * Turn on usage filter if is not already used. The idea is |
| 3043 | * that chunks that we have already balanced should be |
| 3044 | * reasonably full. Don't do it for chunks that are being |
| 3045 | * converted - that will keep us from relocating unconverted |
| 3046 | * (albeit full) chunks. |
| 3047 | */ |
| 3048 | if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3049 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3050 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3051 | bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3052 | bctl->data.usage = 90; |
| 3053 | } |
| 3054 | if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3055 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3056 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3057 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3058 | bctl->sys.usage = 90; |
| 3059 | } |
| 3060 | if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3061 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3062 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3063 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3064 | bctl->meta.usage = 90; |
| 3065 | } |
| 3066 | } |
| 3067 | |
| 3068 | /* |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3069 | * Should be called with both balance and volume mutexes held to |
| 3070 | * serialize other volume operations (add_dev/rm_dev/resize) with |
| 3071 | * restriper. Same goes for unset_balance_control. |
| 3072 | */ |
| 3073 | static void set_balance_control(struct btrfs_balance_control *bctl) |
| 3074 | { |
| 3075 | struct btrfs_fs_info *fs_info = bctl->fs_info; |
| 3076 | |
| 3077 | BUG_ON(fs_info->balance_ctl); |
| 3078 | |
| 3079 | spin_lock(&fs_info->balance_lock); |
| 3080 | fs_info->balance_ctl = bctl; |
| 3081 | spin_unlock(&fs_info->balance_lock); |
| 3082 | } |
| 3083 | |
| 3084 | static void unset_balance_control(struct btrfs_fs_info *fs_info) |
| 3085 | { |
| 3086 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 3087 | |
| 3088 | BUG_ON(!fs_info->balance_ctl); |
| 3089 | |
| 3090 | spin_lock(&fs_info->balance_lock); |
| 3091 | fs_info->balance_ctl = NULL; |
| 3092 | spin_unlock(&fs_info->balance_lock); |
| 3093 | |
| 3094 | kfree(bctl); |
| 3095 | } |
| 3096 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3097 | /* |
| 3098 | * Balance filters. Return 1 if chunk should be filtered out |
| 3099 | * (should not be balanced). |
| 3100 | */ |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3101 | static int chunk_profiles_filter(u64 chunk_type, |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3102 | struct btrfs_balance_args *bargs) |
| 3103 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3104 | chunk_type = chunk_to_extended(chunk_type) & |
| 3105 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3106 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3107 | if (bargs->profiles & chunk_type) |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3108 | return 0; |
| 3109 | |
| 3110 | return 1; |
| 3111 | } |
| 3112 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3113 | 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] | 3114 | struct btrfs_balance_args *bargs) |
| 3115 | { |
| 3116 | struct btrfs_block_group_cache *cache; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3117 | u64 chunk_used; |
| 3118 | u64 user_thresh_min; |
| 3119 | u64 user_thresh_max; |
| 3120 | int ret = 1; |
| 3121 | |
| 3122 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3123 | chunk_used = btrfs_block_group_used(&cache->item); |
| 3124 | |
| 3125 | if (bargs->usage_min == 0) |
| 3126 | user_thresh_min = 0; |
| 3127 | else |
| 3128 | user_thresh_min = div_factor_fine(cache->key.offset, |
| 3129 | bargs->usage_min); |
| 3130 | |
| 3131 | if (bargs->usage_max == 0) |
| 3132 | user_thresh_max = 1; |
| 3133 | else if (bargs->usage_max > 100) |
| 3134 | user_thresh_max = cache->key.offset; |
| 3135 | else |
| 3136 | user_thresh_max = div_factor_fine(cache->key.offset, |
| 3137 | bargs->usage_max); |
| 3138 | |
| 3139 | if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max) |
| 3140 | ret = 0; |
| 3141 | |
| 3142 | btrfs_put_block_group(cache); |
| 3143 | return ret; |
| 3144 | } |
| 3145 | |
Holger Hoffstätte | dba72cb | 2015-11-17 12:29:32 +0100 | [diff] [blame] | 3146 | static int chunk_usage_filter(struct btrfs_fs_info *fs_info, |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3147 | u64 chunk_offset, struct btrfs_balance_args *bargs) |
| 3148 | { |
| 3149 | struct btrfs_block_group_cache *cache; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3150 | u64 chunk_used, user_thresh; |
| 3151 | int ret = 1; |
| 3152 | |
| 3153 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3154 | chunk_used = btrfs_block_group_used(&cache->item); |
| 3155 | |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3156 | if (bargs->usage_min == 0) |
Ilya Dryomov | 3e39cea | 2013-02-12 16:28:59 +0000 | [diff] [blame] | 3157 | user_thresh = 1; |
Ilya Dryomov | a105bb8 | 2013-01-21 15:15:56 +0200 | [diff] [blame] | 3158 | else if (bargs->usage > 100) |
| 3159 | user_thresh = cache->key.offset; |
| 3160 | else |
| 3161 | user_thresh = div_factor_fine(cache->key.offset, |
| 3162 | bargs->usage); |
| 3163 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3164 | if (chunk_used < user_thresh) |
| 3165 | ret = 0; |
| 3166 | |
| 3167 | btrfs_put_block_group(cache); |
| 3168 | return ret; |
| 3169 | } |
| 3170 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3171 | static int chunk_devid_filter(struct extent_buffer *leaf, |
| 3172 | struct btrfs_chunk *chunk, |
| 3173 | struct btrfs_balance_args *bargs) |
| 3174 | { |
| 3175 | struct btrfs_stripe *stripe; |
| 3176 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3177 | int i; |
| 3178 | |
| 3179 | for (i = 0; i < num_stripes; i++) { |
| 3180 | stripe = btrfs_stripe_nr(chunk, i); |
| 3181 | if (btrfs_stripe_devid(leaf, stripe) == bargs->devid) |
| 3182 | return 0; |
| 3183 | } |
| 3184 | |
| 3185 | return 1; |
| 3186 | } |
| 3187 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3188 | /* [pstart, pend) */ |
| 3189 | static int chunk_drange_filter(struct extent_buffer *leaf, |
| 3190 | struct btrfs_chunk *chunk, |
| 3191 | u64 chunk_offset, |
| 3192 | struct btrfs_balance_args *bargs) |
| 3193 | { |
| 3194 | struct btrfs_stripe *stripe; |
| 3195 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3196 | u64 stripe_offset; |
| 3197 | u64 stripe_length; |
| 3198 | int factor; |
| 3199 | int i; |
| 3200 | |
| 3201 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID)) |
| 3202 | return 0; |
| 3203 | |
| 3204 | if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3205 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 3206 | factor = num_stripes / 2; |
| 3207 | } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) { |
| 3208 | factor = num_stripes - 1; |
| 3209 | } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) { |
| 3210 | factor = num_stripes - 2; |
| 3211 | } else { |
| 3212 | factor = num_stripes; |
| 3213 | } |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3214 | |
| 3215 | for (i = 0; i < num_stripes; i++) { |
| 3216 | stripe = btrfs_stripe_nr(chunk, i); |
| 3217 | if (btrfs_stripe_devid(leaf, stripe) != bargs->devid) |
| 3218 | continue; |
| 3219 | |
| 3220 | stripe_offset = btrfs_stripe_offset(leaf, stripe); |
| 3221 | stripe_length = btrfs_chunk_length(leaf, chunk); |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 3222 | stripe_length = div_u64(stripe_length, factor); |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3223 | |
| 3224 | if (stripe_offset < bargs->pend && |
| 3225 | stripe_offset + stripe_length > bargs->pstart) |
| 3226 | return 0; |
| 3227 | } |
| 3228 | |
| 3229 | return 1; |
| 3230 | } |
| 3231 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3232 | /* [vstart, vend) */ |
| 3233 | static int chunk_vrange_filter(struct extent_buffer *leaf, |
| 3234 | struct btrfs_chunk *chunk, |
| 3235 | u64 chunk_offset, |
| 3236 | struct btrfs_balance_args *bargs) |
| 3237 | { |
| 3238 | if (chunk_offset < bargs->vend && |
| 3239 | chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart) |
| 3240 | /* at least part of the chunk is inside this vrange */ |
| 3241 | return 0; |
| 3242 | |
| 3243 | return 1; |
| 3244 | } |
| 3245 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3246 | static int chunk_stripes_range_filter(struct extent_buffer *leaf, |
| 3247 | struct btrfs_chunk *chunk, |
| 3248 | struct btrfs_balance_args *bargs) |
| 3249 | { |
| 3250 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3251 | |
| 3252 | if (bargs->stripes_min <= num_stripes |
| 3253 | && num_stripes <= bargs->stripes_max) |
| 3254 | return 0; |
| 3255 | |
| 3256 | return 1; |
| 3257 | } |
| 3258 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3259 | static int chunk_soft_convert_filter(u64 chunk_type, |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3260 | struct btrfs_balance_args *bargs) |
| 3261 | { |
| 3262 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT)) |
| 3263 | return 0; |
| 3264 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3265 | chunk_type = chunk_to_extended(chunk_type) & |
| 3266 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3267 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3268 | if (bargs->target == chunk_type) |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3269 | return 1; |
| 3270 | |
| 3271 | return 0; |
| 3272 | } |
| 3273 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3274 | static int should_balance_chunk(struct btrfs_root *root, |
| 3275 | struct extent_buffer *leaf, |
| 3276 | struct btrfs_chunk *chunk, u64 chunk_offset) |
| 3277 | { |
| 3278 | struct btrfs_balance_control *bctl = root->fs_info->balance_ctl; |
| 3279 | struct btrfs_balance_args *bargs = NULL; |
| 3280 | u64 chunk_type = btrfs_chunk_type(leaf, chunk); |
| 3281 | |
| 3282 | /* type filter */ |
| 3283 | if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) & |
| 3284 | (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) { |
| 3285 | return 0; |
| 3286 | } |
| 3287 | |
| 3288 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3289 | bargs = &bctl->data; |
| 3290 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3291 | bargs = &bctl->sys; |
| 3292 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3293 | bargs = &bctl->meta; |
| 3294 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3295 | /* profiles filter */ |
| 3296 | if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) && |
| 3297 | chunk_profiles_filter(chunk_type, bargs)) { |
| 3298 | return 0; |
| 3299 | } |
| 3300 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3301 | /* usage filter */ |
| 3302 | if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) && |
| 3303 | chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) { |
| 3304 | return 0; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame] | 3305 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
| 3306 | chunk_usage_range_filter(bctl->fs_info, chunk_offset, bargs)) { |
| 3307 | return 0; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3308 | } |
| 3309 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3310 | /* devid filter */ |
| 3311 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) && |
| 3312 | chunk_devid_filter(leaf, chunk, bargs)) { |
| 3313 | return 0; |
| 3314 | } |
| 3315 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3316 | /* drange filter, makes sense only with devid filter */ |
| 3317 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) && |
| 3318 | chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) { |
| 3319 | return 0; |
| 3320 | } |
| 3321 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3322 | /* vrange filter */ |
| 3323 | if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) && |
| 3324 | chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) { |
| 3325 | return 0; |
| 3326 | } |
| 3327 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3328 | /* stripes filter */ |
| 3329 | if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) && |
| 3330 | chunk_stripes_range_filter(leaf, chunk, bargs)) { |
| 3331 | return 0; |
| 3332 | } |
| 3333 | |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3334 | /* soft profile changing mode */ |
| 3335 | if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) && |
| 3336 | chunk_soft_convert_filter(chunk_type, bargs)) { |
| 3337 | return 0; |
| 3338 | } |
| 3339 | |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3340 | /* |
| 3341 | * limited by count, must be the last filter |
| 3342 | */ |
| 3343 | if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) { |
| 3344 | if (bargs->limit == 0) |
| 3345 | return 0; |
| 3346 | else |
| 3347 | bargs->limit--; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3348 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) { |
| 3349 | /* |
| 3350 | * Same logic as the 'limit' filter; the minimum cannot be |
| 3351 | * determined here because we do not have the global informatoin |
| 3352 | * about the count of all chunks that satisfy the filters. |
| 3353 | */ |
| 3354 | if (bargs->limit_max == 0) |
| 3355 | return 0; |
| 3356 | else |
| 3357 | bargs->limit_max--; |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3358 | } |
| 3359 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3360 | return 1; |
| 3361 | } |
| 3362 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3363 | static int __btrfs_balance(struct btrfs_fs_info *fs_info) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3364 | { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3365 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3366 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
| 3367 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 3368 | struct list_head *devices; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3369 | struct btrfs_device *device; |
| 3370 | u64 old_size; |
| 3371 | u64 size_to_free; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3372 | u64 chunk_type; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3373 | struct btrfs_chunk *chunk; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3374 | struct btrfs_path *path; |
| 3375 | struct btrfs_key key; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3376 | struct btrfs_key found_key; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3377 | struct btrfs_trans_handle *trans; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3378 | struct extent_buffer *leaf; |
| 3379 | int slot; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3380 | int ret; |
| 3381 | int enospc_errors = 0; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3382 | bool counting = true; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3383 | /* 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] | 3384 | u64 limit_data = bctl->data.limit; |
| 3385 | u64 limit_meta = bctl->meta.limit; |
| 3386 | u64 limit_sys = bctl->sys.limit; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3387 | u32 count_data = 0; |
| 3388 | u32 count_meta = 0; |
| 3389 | u32 count_sys = 0; |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3390 | int chunk_reserved = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3391 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3392 | /* step one make some room on all the devices */ |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3393 | devices = &fs_info->fs_devices->devices; |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 3394 | list_for_each_entry(device, devices, dev_list) { |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 3395 | old_size = btrfs_device_get_total_bytes(device); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3396 | size_to_free = div_factor(old_size, 1); |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3397 | size_to_free = min_t(u64, size_to_free, SZ_1M); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3398 | if (!device->writeable || |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 3399 | btrfs_device_get_total_bytes(device) - |
| 3400 | btrfs_device_get_bytes_used(device) > size_to_free || |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 3401 | device->is_tgtdev_for_dev_replace) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3402 | continue; |
| 3403 | |
| 3404 | ret = btrfs_shrink_device(device, old_size - size_to_free); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3405 | if (ret == -ENOSPC) |
| 3406 | break; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3407 | BUG_ON(ret); |
| 3408 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3409 | trans = btrfs_start_transaction(dev_root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 3410 | BUG_ON(IS_ERR(trans)); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3411 | |
| 3412 | ret = btrfs_grow_device(trans, device, old_size); |
| 3413 | BUG_ON(ret); |
| 3414 | |
| 3415 | btrfs_end_transaction(trans, dev_root); |
| 3416 | } |
| 3417 | |
| 3418 | /* step two, relocate all the chunks */ |
| 3419 | path = btrfs_alloc_path(); |
Mark Fasheh | 17e9f79 | 2011-07-12 11:10:23 -0700 | [diff] [blame] | 3420 | if (!path) { |
| 3421 | ret = -ENOMEM; |
| 3422 | goto error; |
| 3423 | } |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3424 | |
| 3425 | /* zero out stat counters */ |
| 3426 | spin_lock(&fs_info->balance_lock); |
| 3427 | memset(&bctl->stat, 0, sizeof(bctl->stat)); |
| 3428 | spin_unlock(&fs_info->balance_lock); |
| 3429 | again: |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3430 | if (!counting) { |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3431 | /* |
| 3432 | * The single value limit and min/max limits use the same bytes |
| 3433 | * in the |
| 3434 | */ |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3435 | bctl->data.limit = limit_data; |
| 3436 | bctl->meta.limit = limit_meta; |
| 3437 | bctl->sys.limit = limit_sys; |
| 3438 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3439 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 3440 | key.offset = (u64)-1; |
| 3441 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 3442 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3443 | while (1) { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3444 | if ((!counting && atomic_read(&fs_info->balance_pause_req)) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3445 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3446 | ret = -ECANCELED; |
| 3447 | goto error; |
| 3448 | } |
| 3449 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3450 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3451 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3452 | if (ret < 0) { |
| 3453 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3454 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3455 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3456 | |
| 3457 | /* |
| 3458 | * this shouldn't happen, it means the last relocate |
| 3459 | * failed |
| 3460 | */ |
| 3461 | if (ret == 0) |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3462 | BUG(); /* FIXME break ? */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3463 | |
| 3464 | ret = btrfs_previous_item(chunk_root, path, 0, |
| 3465 | BTRFS_CHUNK_ITEM_KEY); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3466 | if (ret) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3467 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3468 | ret = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3469 | break; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3470 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3471 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3472 | leaf = path->nodes[0]; |
| 3473 | slot = path->slots[0]; |
| 3474 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 3475 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3476 | if (found_key.objectid != key.objectid) { |
| 3477 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3478 | break; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3479 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3480 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3481 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3482 | chunk_type = btrfs_chunk_type(leaf, chunk); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3483 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3484 | if (!counting) { |
| 3485 | spin_lock(&fs_info->balance_lock); |
| 3486 | bctl->stat.considered++; |
| 3487 | spin_unlock(&fs_info->balance_lock); |
| 3488 | } |
| 3489 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3490 | ret = should_balance_chunk(chunk_root, leaf, chunk, |
| 3491 | found_key.offset); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3492 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3493 | btrfs_release_path(path); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3494 | if (!ret) { |
| 3495 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3496 | goto loop; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3497 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3498 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3499 | if (counting) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3500 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3501 | spin_lock(&fs_info->balance_lock); |
| 3502 | bctl->stat.expected++; |
| 3503 | spin_unlock(&fs_info->balance_lock); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3504 | |
| 3505 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3506 | count_data++; |
| 3507 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3508 | count_sys++; |
| 3509 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3510 | count_meta++; |
| 3511 | |
| 3512 | goto loop; |
| 3513 | } |
| 3514 | |
| 3515 | /* |
| 3516 | * Apply limit_min filter, no need to check if the LIMITS |
| 3517 | * filter is used, limit_min is 0 by default |
| 3518 | */ |
| 3519 | if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) && |
| 3520 | count_data < bctl->data.limit_min) |
| 3521 | || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) && |
| 3522 | count_meta < bctl->meta.limit_min) |
| 3523 | || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) && |
| 3524 | count_sys < bctl->sys.limit_min)) { |
| 3525 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3526 | goto loop; |
| 3527 | } |
| 3528 | |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3529 | if ((chunk_type & BTRFS_BLOCK_GROUP_DATA) && !chunk_reserved) { |
| 3530 | trans = btrfs_start_transaction(chunk_root, 0); |
| 3531 | if (IS_ERR(trans)) { |
| 3532 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
| 3533 | ret = PTR_ERR(trans); |
| 3534 | goto error; |
| 3535 | } |
| 3536 | |
| 3537 | ret = btrfs_force_chunk_alloc(trans, chunk_root, |
| 3538 | BTRFS_BLOCK_GROUP_DATA); |
Filipe Manana | 8a7d656 | 2015-12-10 11:08:59 +0000 | [diff] [blame] | 3539 | btrfs_end_transaction(trans, chunk_root); |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3540 | if (ret < 0) { |
| 3541 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
| 3542 | goto error; |
| 3543 | } |
Zhao Lei | 2c9fe83 | 2015-11-09 11:51:32 +0800 | [diff] [blame] | 3544 | chunk_reserved = 1; |
| 3545 | } |
| 3546 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3547 | ret = btrfs_relocate_chunk(chunk_root, |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3548 | found_key.offset); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3549 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 508794e | 2011-07-02 21:24:41 +0000 | [diff] [blame] | 3550 | if (ret && ret != -ENOSPC) |
| 3551 | goto error; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3552 | if (ret == -ENOSPC) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3553 | enospc_errors++; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3554 | } else { |
| 3555 | spin_lock(&fs_info->balance_lock); |
| 3556 | bctl->stat.completed++; |
| 3557 | spin_unlock(&fs_info->balance_lock); |
| 3558 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3559 | loop: |
Ilya Dryomov | 795a332 | 2013-08-27 13:50:44 +0300 | [diff] [blame] | 3560 | if (found_key.offset == 0) |
| 3561 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3562 | key.offset = found_key.offset - 1; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3563 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3564 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3565 | if (counting) { |
| 3566 | btrfs_release_path(path); |
| 3567 | counting = false; |
| 3568 | goto again; |
| 3569 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3570 | error: |
| 3571 | btrfs_free_path(path); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3572 | if (enospc_errors) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3573 | btrfs_info(fs_info, "%d enospc errors during balance", |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3574 | enospc_errors); |
| 3575 | if (!ret) |
| 3576 | ret = -ENOSPC; |
| 3577 | } |
| 3578 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3579 | return ret; |
| 3580 | } |
| 3581 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3582 | /** |
| 3583 | * alloc_profile_is_valid - see if a given profile is valid and reduced |
| 3584 | * @flags: profile to validate |
| 3585 | * @extended: if true @flags is treated as an extended profile |
| 3586 | */ |
| 3587 | static int alloc_profile_is_valid(u64 flags, int extended) |
| 3588 | { |
| 3589 | u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK : |
| 3590 | BTRFS_BLOCK_GROUP_PROFILE_MASK); |
| 3591 | |
| 3592 | flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK; |
| 3593 | |
| 3594 | /* 1) check that all other bits are zeroed */ |
| 3595 | if (flags & ~mask) |
| 3596 | return 0; |
| 3597 | |
| 3598 | /* 2) see if profile is reduced */ |
| 3599 | if (flags == 0) |
| 3600 | return !extended; /* "0" is valid for usual profiles */ |
| 3601 | |
| 3602 | /* true if exactly one bit set */ |
| 3603 | return (flags & (flags - 1)) == 0; |
| 3604 | } |
| 3605 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3606 | static inline int balance_need_close(struct btrfs_fs_info *fs_info) |
| 3607 | { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3608 | /* cancel requested || normal exit path */ |
| 3609 | return atomic_read(&fs_info->balance_cancel_req) || |
| 3610 | (atomic_read(&fs_info->balance_pause_req) == 0 && |
| 3611 | atomic_read(&fs_info->balance_cancel_req) == 0); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3612 | } |
| 3613 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3614 | static void __cancel_balance(struct btrfs_fs_info *fs_info) |
| 3615 | { |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3616 | int ret; |
| 3617 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3618 | unset_balance_control(fs_info); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3619 | ret = del_balance_item(fs_info->tree_root); |
Liu Bo | 0f788c5 | 2013-03-04 16:25:40 +0000 | [diff] [blame] | 3620 | if (ret) |
Anand Jain | a4553fe | 2015-09-25 14:43:01 +0800 | [diff] [blame] | 3621 | btrfs_std_error(fs_info, ret, NULL); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 3622 | |
| 3623 | atomic_set(&fs_info->mutually_exclusive_operation_running, 0); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3624 | } |
| 3625 | |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3626 | /* Non-zero return value signifies invalidity */ |
| 3627 | static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg, |
| 3628 | u64 allowed) |
| 3629 | { |
| 3630 | return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3631 | (!alloc_profile_is_valid(bctl_arg->target, 1) || |
| 3632 | (bctl_arg->target & ~allowed))); |
| 3633 | } |
| 3634 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3635 | /* |
| 3636 | * Should be called with both balance and volume mutexes held |
| 3637 | */ |
| 3638 | int btrfs_balance(struct btrfs_balance_control *bctl, |
| 3639 | struct btrfs_ioctl_balance_args *bargs) |
| 3640 | { |
| 3641 | struct btrfs_fs_info *fs_info = bctl->fs_info; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3642 | u64 allowed; |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3643 | int mixed = 0; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3644 | int ret; |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3645 | u64 num_devices; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3646 | unsigned seq; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3647 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3648 | if (btrfs_fs_closing(fs_info) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3649 | atomic_read(&fs_info->balance_pause_req) || |
| 3650 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3651 | ret = -EINVAL; |
| 3652 | goto out; |
| 3653 | } |
| 3654 | |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3655 | allowed = btrfs_super_incompat_flags(fs_info->super_copy); |
| 3656 | if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 3657 | mixed = 1; |
| 3658 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3659 | /* |
| 3660 | * In case of mixed groups both data and meta should be picked, |
| 3661 | * and identical options should be given for both of them. |
| 3662 | */ |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3663 | allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA; |
| 3664 | if (mixed && (bctl->flags & allowed)) { |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3665 | if (!(bctl->flags & BTRFS_BALANCE_DATA) || |
| 3666 | !(bctl->flags & BTRFS_BALANCE_METADATA) || |
| 3667 | memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3668 | btrfs_err(fs_info, "with mixed groups data and " |
| 3669 | "metadata balance options must be the same"); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3670 | ret = -EINVAL; |
| 3671 | goto out; |
| 3672 | } |
| 3673 | } |
| 3674 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3675 | num_devices = fs_info->fs_devices->num_devices; |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 3676 | btrfs_dev_replace_lock(&fs_info->dev_replace, 0); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3677 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) { |
| 3678 | BUG_ON(num_devices < 1); |
| 3679 | num_devices--; |
| 3680 | } |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 3681 | btrfs_dev_replace_unlock(&fs_info->dev_replace, 0); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3682 | allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE; |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3683 | if (num_devices == 1) |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3684 | allowed |= BTRFS_BLOCK_GROUP_DUP; |
Andreas Philipp | 8250dab | 2013-05-11 11:13:03 +0000 | [diff] [blame] | 3685 | else if (num_devices > 1) |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3686 | allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1); |
Andreas Philipp | 8250dab | 2013-05-11 11:13:03 +0000 | [diff] [blame] | 3687 | if (num_devices > 2) |
| 3688 | allowed |= BTRFS_BLOCK_GROUP_RAID5; |
| 3689 | if (num_devices > 3) |
| 3690 | allowed |= (BTRFS_BLOCK_GROUP_RAID10 | |
| 3691 | BTRFS_BLOCK_GROUP_RAID6); |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3692 | if (validate_convert_profile(&bctl->data, allowed)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3693 | btrfs_err(fs_info, "unable to start balance with target " |
| 3694 | "data profile %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 3695 | bctl->data.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3696 | ret = -EINVAL; |
| 3697 | goto out; |
| 3698 | } |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3699 | if (validate_convert_profile(&bctl->meta, allowed)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3700 | btrfs_err(fs_info, |
| 3701 | "unable to start balance with target metadata profile %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 3702 | bctl->meta.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3703 | ret = -EINVAL; |
| 3704 | goto out; |
| 3705 | } |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3706 | if (validate_convert_profile(&bctl->sys, allowed)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3707 | btrfs_err(fs_info, |
| 3708 | "unable to start balance with target system profile %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 3709 | bctl->sys.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3710 | ret = -EINVAL; |
| 3711 | goto out; |
| 3712 | } |
| 3713 | |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3714 | /* allow to reduce meta or sys integrity only if force set */ |
| 3715 | allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3716 | BTRFS_BLOCK_GROUP_RAID10 | |
| 3717 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3718 | BTRFS_BLOCK_GROUP_RAID6; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3719 | do { |
| 3720 | seq = read_seqbegin(&fs_info->profiles_lock); |
| 3721 | |
| 3722 | if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3723 | (fs_info->avail_system_alloc_bits & allowed) && |
| 3724 | !(bctl->sys.target & allowed)) || |
| 3725 | ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3726 | (fs_info->avail_metadata_alloc_bits & allowed) && |
| 3727 | !(bctl->meta.target & allowed))) { |
| 3728 | if (bctl->flags & BTRFS_BALANCE_FORCE) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3729 | btrfs_info(fs_info, "force reducing metadata integrity"); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3730 | } else { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3731 | btrfs_err(fs_info, "balance will reduce metadata " |
| 3732 | "integrity, use force if you want this"); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3733 | ret = -EINVAL; |
| 3734 | goto out; |
| 3735 | } |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3736 | } |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3737 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3738 | |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 3739 | if (btrfs_get_num_tolerated_disk_barrier_failures(bctl->meta.target) < |
| 3740 | btrfs_get_num_tolerated_disk_barrier_failures(bctl->data.target)) { |
| 3741 | btrfs_warn(fs_info, |
Filipe Manana | fedc004 | 2016-01-15 10:56:15 +0000 | [diff] [blame] | 3742 | "metadata profile 0x%llx has lower redundancy than data profile 0x%llx", |
Sam Tygier | ee592d0 | 2016-01-06 08:46:12 +0000 | [diff] [blame] | 3743 | bctl->meta.target, bctl->data.target); |
| 3744 | } |
| 3745 | |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3746 | if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
Zhao Lei | 943c6e9 | 2015-08-19 15:54:15 +0800 | [diff] [blame] | 3747 | fs_info->num_tolerated_disk_barrier_failures = min( |
| 3748 | btrfs_calc_num_tolerated_disk_barrier_failures(fs_info), |
| 3749 | btrfs_get_num_tolerated_disk_barrier_failures( |
| 3750 | bctl->sys.target)); |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3751 | } |
| 3752 | |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3753 | ret = insert_balance_item(fs_info->tree_root, bctl); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3754 | if (ret && ret != -EEXIST) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3755 | goto out; |
| 3756 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3757 | if (!(bctl->flags & BTRFS_BALANCE_RESUME)) { |
| 3758 | BUG_ON(ret == -EEXIST); |
| 3759 | set_balance_control(bctl); |
| 3760 | } else { |
| 3761 | BUG_ON(ret != -EEXIST); |
| 3762 | spin_lock(&fs_info->balance_lock); |
| 3763 | update_balance_args(bctl); |
| 3764 | spin_unlock(&fs_info->balance_lock); |
| 3765 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3766 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3767 | atomic_inc(&fs_info->balance_running); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3768 | mutex_unlock(&fs_info->balance_mutex); |
| 3769 | |
| 3770 | ret = __btrfs_balance(fs_info); |
| 3771 | |
| 3772 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3773 | atomic_dec(&fs_info->balance_running); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3774 | |
Ilya Dryomov | bf023ec | 2013-02-12 16:27:46 +0000 | [diff] [blame] | 3775 | if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3776 | fs_info->num_tolerated_disk_barrier_failures = |
| 3777 | btrfs_calc_num_tolerated_disk_barrier_failures(fs_info); |
| 3778 | } |
| 3779 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3780 | if (bargs) { |
| 3781 | memset(bargs, 0, sizeof(*bargs)); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3782 | update_ioctl_balance_args(fs_info, 0, bargs); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3783 | } |
| 3784 | |
Ilya Dryomov | 3a01aa7 | 2013-03-06 01:57:55 -0700 | [diff] [blame] | 3785 | if ((ret && ret != -ECANCELED && ret != -ENOSPC) || |
| 3786 | balance_need_close(fs_info)) { |
| 3787 | __cancel_balance(fs_info); |
| 3788 | } |
| 3789 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3790 | wake_up(&fs_info->balance_wait_q); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3791 | |
| 3792 | return ret; |
| 3793 | out: |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3794 | if (bctl->flags & BTRFS_BALANCE_RESUME) |
| 3795 | __cancel_balance(fs_info); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 3796 | else { |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3797 | kfree(bctl); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 3798 | atomic_set(&fs_info->mutually_exclusive_operation_running, 0); |
| 3799 | } |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3800 | return ret; |
| 3801 | } |
| 3802 | |
| 3803 | static int balance_kthread(void *data) |
| 3804 | { |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3805 | struct btrfs_fs_info *fs_info = data; |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3806 | int ret = 0; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3807 | |
| 3808 | mutex_lock(&fs_info->volume_mutex); |
| 3809 | mutex_lock(&fs_info->balance_mutex); |
| 3810 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3811 | if (fs_info->balance_ctl) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3812 | btrfs_info(fs_info, "continuing balance"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3813 | ret = btrfs_balance(fs_info->balance_ctl, NULL); |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3814 | } |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3815 | |
| 3816 | mutex_unlock(&fs_info->balance_mutex); |
| 3817 | mutex_unlock(&fs_info->volume_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3818 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3819 | return ret; |
| 3820 | } |
| 3821 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3822 | int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info) |
| 3823 | { |
| 3824 | struct task_struct *tsk; |
| 3825 | |
| 3826 | spin_lock(&fs_info->balance_lock); |
| 3827 | if (!fs_info->balance_ctl) { |
| 3828 | spin_unlock(&fs_info->balance_lock); |
| 3829 | return 0; |
| 3830 | } |
| 3831 | spin_unlock(&fs_info->balance_lock); |
| 3832 | |
| 3833 | if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3834 | btrfs_info(fs_info, "force skipping balance"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3835 | return 0; |
| 3836 | } |
| 3837 | |
| 3838 | tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance"); |
Sachin Kamat | cd63397 | 2013-07-15 16:52:18 +0530 | [diff] [blame] | 3839 | return PTR_ERR_OR_ZERO(tsk); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3840 | } |
| 3841 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3842 | int btrfs_recover_balance(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3843 | { |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3844 | struct btrfs_balance_control *bctl; |
| 3845 | struct btrfs_balance_item *item; |
| 3846 | struct btrfs_disk_balance_args disk_bargs; |
| 3847 | struct btrfs_path *path; |
| 3848 | struct extent_buffer *leaf; |
| 3849 | struct btrfs_key key; |
| 3850 | int ret; |
| 3851 | |
| 3852 | path = btrfs_alloc_path(); |
| 3853 | if (!path) |
| 3854 | return -ENOMEM; |
| 3855 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3856 | key.objectid = BTRFS_BALANCE_OBJECTID; |
David Sterba | c479cb4 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 3857 | key.type = BTRFS_TEMPORARY_ITEM_KEY; |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3858 | key.offset = 0; |
| 3859 | |
| 3860 | ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0); |
| 3861 | if (ret < 0) |
| 3862 | goto out; |
| 3863 | if (ret > 0) { /* ret = -ENOENT; */ |
| 3864 | ret = 0; |
| 3865 | goto out; |
| 3866 | } |
| 3867 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3868 | bctl = kzalloc(sizeof(*bctl), GFP_NOFS); |
| 3869 | if (!bctl) { |
| 3870 | ret = -ENOMEM; |
| 3871 | goto out; |
| 3872 | } |
| 3873 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3874 | leaf = path->nodes[0]; |
| 3875 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 3876 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3877 | bctl->fs_info = fs_info; |
| 3878 | bctl->flags = btrfs_balance_flags(leaf, item); |
| 3879 | bctl->flags |= BTRFS_BALANCE_RESUME; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3880 | |
| 3881 | btrfs_balance_data(leaf, item, &disk_bargs); |
| 3882 | btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs); |
| 3883 | btrfs_balance_meta(leaf, item, &disk_bargs); |
| 3884 | btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs); |
| 3885 | btrfs_balance_sys(leaf, item, &disk_bargs); |
| 3886 | btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs); |
| 3887 | |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 3888 | WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)); |
| 3889 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3890 | mutex_lock(&fs_info->volume_mutex); |
| 3891 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3892 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3893 | set_balance_control(bctl); |
| 3894 | |
| 3895 | mutex_unlock(&fs_info->balance_mutex); |
| 3896 | mutex_unlock(&fs_info->volume_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3897 | out: |
| 3898 | btrfs_free_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3899 | return ret; |
| 3900 | } |
| 3901 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3902 | int btrfs_pause_balance(struct btrfs_fs_info *fs_info) |
| 3903 | { |
| 3904 | int ret = 0; |
| 3905 | |
| 3906 | mutex_lock(&fs_info->balance_mutex); |
| 3907 | if (!fs_info->balance_ctl) { |
| 3908 | mutex_unlock(&fs_info->balance_mutex); |
| 3909 | return -ENOTCONN; |
| 3910 | } |
| 3911 | |
| 3912 | if (atomic_read(&fs_info->balance_running)) { |
| 3913 | atomic_inc(&fs_info->balance_pause_req); |
| 3914 | mutex_unlock(&fs_info->balance_mutex); |
| 3915 | |
| 3916 | wait_event(fs_info->balance_wait_q, |
| 3917 | atomic_read(&fs_info->balance_running) == 0); |
| 3918 | |
| 3919 | mutex_lock(&fs_info->balance_mutex); |
| 3920 | /* we are good with balance_ctl ripped off from under us */ |
| 3921 | BUG_ON(atomic_read(&fs_info->balance_running)); |
| 3922 | atomic_dec(&fs_info->balance_pause_req); |
| 3923 | } else { |
| 3924 | ret = -ENOTCONN; |
| 3925 | } |
| 3926 | |
| 3927 | mutex_unlock(&fs_info->balance_mutex); |
| 3928 | return ret; |
| 3929 | } |
| 3930 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3931 | int btrfs_cancel_balance(struct btrfs_fs_info *fs_info) |
| 3932 | { |
Ilya Dryomov | e649e58 | 2013-10-10 20:40:21 +0300 | [diff] [blame] | 3933 | if (fs_info->sb->s_flags & MS_RDONLY) |
| 3934 | return -EROFS; |
| 3935 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3936 | mutex_lock(&fs_info->balance_mutex); |
| 3937 | if (!fs_info->balance_ctl) { |
| 3938 | mutex_unlock(&fs_info->balance_mutex); |
| 3939 | return -ENOTCONN; |
| 3940 | } |
| 3941 | |
| 3942 | atomic_inc(&fs_info->balance_cancel_req); |
| 3943 | /* |
| 3944 | * if we are running just wait and return, balance item is |
| 3945 | * deleted in btrfs_balance in this case |
| 3946 | */ |
| 3947 | if (atomic_read(&fs_info->balance_running)) { |
| 3948 | mutex_unlock(&fs_info->balance_mutex); |
| 3949 | wait_event(fs_info->balance_wait_q, |
| 3950 | atomic_read(&fs_info->balance_running) == 0); |
| 3951 | mutex_lock(&fs_info->balance_mutex); |
| 3952 | } else { |
| 3953 | /* __cancel_balance needs volume_mutex */ |
| 3954 | mutex_unlock(&fs_info->balance_mutex); |
| 3955 | mutex_lock(&fs_info->volume_mutex); |
| 3956 | mutex_lock(&fs_info->balance_mutex); |
| 3957 | |
| 3958 | if (fs_info->balance_ctl) |
| 3959 | __cancel_balance(fs_info); |
| 3960 | |
| 3961 | mutex_unlock(&fs_info->volume_mutex); |
| 3962 | } |
| 3963 | |
| 3964 | BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running)); |
| 3965 | atomic_dec(&fs_info->balance_cancel_req); |
| 3966 | mutex_unlock(&fs_info->balance_mutex); |
| 3967 | return 0; |
| 3968 | } |
| 3969 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 3970 | static int btrfs_uuid_scan_kthread(void *data) |
| 3971 | { |
| 3972 | struct btrfs_fs_info *fs_info = data; |
| 3973 | struct btrfs_root *root = fs_info->tree_root; |
| 3974 | struct btrfs_key key; |
| 3975 | struct btrfs_key max_key; |
| 3976 | struct btrfs_path *path = NULL; |
| 3977 | int ret = 0; |
| 3978 | struct extent_buffer *eb; |
| 3979 | int slot; |
| 3980 | struct btrfs_root_item root_item; |
| 3981 | u32 item_size; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 3982 | struct btrfs_trans_handle *trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 3983 | |
| 3984 | path = btrfs_alloc_path(); |
| 3985 | if (!path) { |
| 3986 | ret = -ENOMEM; |
| 3987 | goto out; |
| 3988 | } |
| 3989 | |
| 3990 | key.objectid = 0; |
| 3991 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 3992 | key.offset = 0; |
| 3993 | |
| 3994 | max_key.objectid = (u64)-1; |
| 3995 | max_key.type = BTRFS_ROOT_ITEM_KEY; |
| 3996 | max_key.offset = (u64)-1; |
| 3997 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 3998 | while (1) { |
Filipe David Borba Manana | 6174d3c | 2013-10-01 16:13:42 +0100 | [diff] [blame] | 3999 | ret = btrfs_search_forward(root, &key, path, 0); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4000 | if (ret) { |
| 4001 | if (ret > 0) |
| 4002 | ret = 0; |
| 4003 | break; |
| 4004 | } |
| 4005 | |
| 4006 | if (key.type != BTRFS_ROOT_ITEM_KEY || |
| 4007 | (key.objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 4008 | key.objectid != BTRFS_FS_TREE_OBJECTID) || |
| 4009 | key.objectid > BTRFS_LAST_FREE_OBJECTID) |
| 4010 | goto skip; |
| 4011 | |
| 4012 | eb = path->nodes[0]; |
| 4013 | slot = path->slots[0]; |
| 4014 | item_size = btrfs_item_size_nr(eb, slot); |
| 4015 | if (item_size < sizeof(root_item)) |
| 4016 | goto skip; |
| 4017 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4018 | read_extent_buffer(eb, &root_item, |
| 4019 | btrfs_item_ptr_offset(eb, slot), |
| 4020 | (int)sizeof(root_item)); |
| 4021 | if (btrfs_root_refs(&root_item) == 0) |
| 4022 | goto skip; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4023 | |
| 4024 | if (!btrfs_is_empty_uuid(root_item.uuid) || |
| 4025 | !btrfs_is_empty_uuid(root_item.received_uuid)) { |
| 4026 | if (trans) |
| 4027 | goto update_tree; |
| 4028 | |
| 4029 | btrfs_release_path(path); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4030 | /* |
| 4031 | * 1 - subvol uuid item |
| 4032 | * 1 - received_subvol uuid item |
| 4033 | */ |
| 4034 | trans = btrfs_start_transaction(fs_info->uuid_root, 2); |
| 4035 | if (IS_ERR(trans)) { |
| 4036 | ret = PTR_ERR(trans); |
| 4037 | break; |
| 4038 | } |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4039 | continue; |
| 4040 | } else { |
| 4041 | goto skip; |
| 4042 | } |
| 4043 | update_tree: |
| 4044 | if (!btrfs_is_empty_uuid(root_item.uuid)) { |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4045 | ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root, |
| 4046 | root_item.uuid, |
| 4047 | BTRFS_UUID_KEY_SUBVOL, |
| 4048 | key.objectid); |
| 4049 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4050 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4051 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4052 | break; |
| 4053 | } |
| 4054 | } |
| 4055 | |
| 4056 | if (!btrfs_is_empty_uuid(root_item.received_uuid)) { |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4057 | ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root, |
| 4058 | root_item.received_uuid, |
| 4059 | BTRFS_UUID_KEY_RECEIVED_SUBVOL, |
| 4060 | key.objectid); |
| 4061 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4062 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4063 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4064 | break; |
| 4065 | } |
| 4066 | } |
| 4067 | |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4068 | skip: |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4069 | if (trans) { |
| 4070 | ret = btrfs_end_transaction(trans, fs_info->uuid_root); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4071 | trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4072 | if (ret) |
| 4073 | break; |
| 4074 | } |
| 4075 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4076 | btrfs_release_path(path); |
| 4077 | if (key.offset < (u64)-1) { |
| 4078 | key.offset++; |
| 4079 | } else if (key.type < BTRFS_ROOT_ITEM_KEY) { |
| 4080 | key.offset = 0; |
| 4081 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4082 | } else if (key.objectid < (u64)-1) { |
| 4083 | key.offset = 0; |
| 4084 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4085 | key.objectid++; |
| 4086 | } else { |
| 4087 | break; |
| 4088 | } |
| 4089 | cond_resched(); |
| 4090 | } |
| 4091 | |
| 4092 | out: |
| 4093 | btrfs_free_path(path); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4094 | if (trans && !IS_ERR(trans)) |
| 4095 | btrfs_end_transaction(trans, fs_info->uuid_root); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4096 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4097 | btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4098 | else |
| 4099 | fs_info->update_uuid_tree_gen = 1; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4100 | up(&fs_info->uuid_tree_rescan_sem); |
| 4101 | return 0; |
| 4102 | } |
| 4103 | |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4104 | /* |
| 4105 | * Callback for btrfs_uuid_tree_iterate(). |
| 4106 | * returns: |
| 4107 | * 0 check succeeded, the entry is not outdated. |
Adam Buchbinder | bb7ab3b | 2016-03-04 11:23:12 -0800 | [diff] [blame] | 4108 | * < 0 if an error occurred. |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4109 | * > 0 if the check failed, which means the caller shall remove the entry. |
| 4110 | */ |
| 4111 | static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info, |
| 4112 | u8 *uuid, u8 type, u64 subid) |
| 4113 | { |
| 4114 | struct btrfs_key key; |
| 4115 | int ret = 0; |
| 4116 | struct btrfs_root *subvol_root; |
| 4117 | |
| 4118 | if (type != BTRFS_UUID_KEY_SUBVOL && |
| 4119 | type != BTRFS_UUID_KEY_RECEIVED_SUBVOL) |
| 4120 | goto out; |
| 4121 | |
| 4122 | key.objectid = subid; |
| 4123 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4124 | key.offset = (u64)-1; |
| 4125 | subvol_root = btrfs_read_fs_root_no_name(fs_info, &key); |
| 4126 | if (IS_ERR(subvol_root)) { |
| 4127 | ret = PTR_ERR(subvol_root); |
| 4128 | if (ret == -ENOENT) |
| 4129 | ret = 1; |
| 4130 | goto out; |
| 4131 | } |
| 4132 | |
| 4133 | switch (type) { |
| 4134 | case BTRFS_UUID_KEY_SUBVOL: |
| 4135 | if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE)) |
| 4136 | ret = 1; |
| 4137 | break; |
| 4138 | case BTRFS_UUID_KEY_RECEIVED_SUBVOL: |
| 4139 | if (memcmp(uuid, subvol_root->root_item.received_uuid, |
| 4140 | BTRFS_UUID_SIZE)) |
| 4141 | ret = 1; |
| 4142 | break; |
| 4143 | } |
| 4144 | |
| 4145 | out: |
| 4146 | return ret; |
| 4147 | } |
| 4148 | |
| 4149 | static int btrfs_uuid_rescan_kthread(void *data) |
| 4150 | { |
| 4151 | struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data; |
| 4152 | int ret; |
| 4153 | |
| 4154 | /* |
| 4155 | * 1st step is to iterate through the existing UUID tree and |
| 4156 | * to delete all entries that contain outdated data. |
| 4157 | * 2nd step is to add all missing entries to the UUID tree. |
| 4158 | */ |
| 4159 | ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry); |
| 4160 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4161 | btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4162 | up(&fs_info->uuid_tree_rescan_sem); |
| 4163 | return ret; |
| 4164 | } |
| 4165 | return btrfs_uuid_scan_kthread(data); |
| 4166 | } |
| 4167 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4168 | int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4169 | { |
| 4170 | struct btrfs_trans_handle *trans; |
| 4171 | struct btrfs_root *tree_root = fs_info->tree_root; |
| 4172 | struct btrfs_root *uuid_root; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4173 | struct task_struct *task; |
| 4174 | int ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4175 | |
| 4176 | /* |
| 4177 | * 1 - root node |
| 4178 | * 1 - root item |
| 4179 | */ |
| 4180 | trans = btrfs_start_transaction(tree_root, 2); |
| 4181 | if (IS_ERR(trans)) |
| 4182 | return PTR_ERR(trans); |
| 4183 | |
| 4184 | uuid_root = btrfs_create_tree(trans, fs_info, |
| 4185 | BTRFS_UUID_TREE_OBJECTID); |
| 4186 | if (IS_ERR(uuid_root)) { |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4187 | ret = PTR_ERR(uuid_root); |
| 4188 | btrfs_abort_transaction(trans, tree_root, ret); |
| 4189 | return ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4190 | } |
| 4191 | |
| 4192 | fs_info->uuid_root = uuid_root; |
| 4193 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4194 | ret = btrfs_commit_transaction(trans, tree_root); |
| 4195 | if (ret) |
| 4196 | return ret; |
| 4197 | |
| 4198 | down(&fs_info->uuid_tree_rescan_sem); |
| 4199 | task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid"); |
| 4200 | if (IS_ERR(task)) { |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4201 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4202 | btrfs_warn(fs_info, "failed to start uuid_scan task"); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4203 | up(&fs_info->uuid_tree_rescan_sem); |
| 4204 | return PTR_ERR(task); |
| 4205 | } |
| 4206 | |
| 4207 | return 0; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4208 | } |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4209 | |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4210 | int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4211 | { |
| 4212 | struct task_struct *task; |
| 4213 | |
| 4214 | down(&fs_info->uuid_tree_rescan_sem); |
| 4215 | task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid"); |
| 4216 | if (IS_ERR(task)) { |
| 4217 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4218 | btrfs_warn(fs_info, "failed to start uuid_rescan task"); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4219 | up(&fs_info->uuid_tree_rescan_sem); |
| 4220 | return PTR_ERR(task); |
| 4221 | } |
| 4222 | |
| 4223 | return 0; |
| 4224 | } |
| 4225 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4226 | /* |
| 4227 | * shrinking a device means finding all of the device extents past |
| 4228 | * the new size, and then following the back refs to the chunks. |
| 4229 | * The chunk relocation code actually frees the device extent |
| 4230 | */ |
| 4231 | int btrfs_shrink_device(struct btrfs_device *device, u64 new_size) |
| 4232 | { |
| 4233 | struct btrfs_trans_handle *trans; |
| 4234 | struct btrfs_root *root = device->dev_root; |
| 4235 | struct btrfs_dev_extent *dev_extent = NULL; |
| 4236 | struct btrfs_path *path; |
| 4237 | u64 length; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4238 | u64 chunk_offset; |
| 4239 | int ret; |
| 4240 | int slot; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4241 | int failed = 0; |
| 4242 | bool retried = false; |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4243 | bool checked_pending_chunks = false; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4244 | struct extent_buffer *l; |
| 4245 | struct btrfs_key key; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 4246 | struct btrfs_super_block *super_copy = root->fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4247 | u64 old_total = btrfs_super_total_bytes(super_copy); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4248 | u64 old_size = btrfs_device_get_total_bytes(device); |
| 4249 | u64 diff = old_size - new_size; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4250 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 4251 | if (device->is_tgtdev_for_dev_replace) |
| 4252 | return -EINVAL; |
| 4253 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4254 | path = btrfs_alloc_path(); |
| 4255 | if (!path) |
| 4256 | return -ENOMEM; |
| 4257 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 4258 | path->reada = READA_FORWARD; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4259 | |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 4260 | lock_chunks(root); |
| 4261 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4262 | btrfs_device_set_total_bytes(device, new_size); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4263 | if (device->writeable) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4264 | device->fs_devices->total_rw_bytes -= diff; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4265 | spin_lock(&root->fs_info->free_chunk_lock); |
| 4266 | root->fs_info->free_chunk_space -= diff; |
| 4267 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 4268 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 4269 | unlock_chunks(root); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4270 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4271 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4272 | key.objectid = device->devid; |
| 4273 | key.offset = (u64)-1; |
| 4274 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 4275 | |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4276 | do { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4277 | mutex_lock(&root->fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4278 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4279 | if (ret < 0) { |
| 4280 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4281 | goto done; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4282 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4283 | |
| 4284 | ret = btrfs_previous_item(root, path, 0, key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4285 | if (ret) |
| 4286 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4287 | if (ret < 0) |
| 4288 | goto done; |
| 4289 | if (ret) { |
| 4290 | ret = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4291 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4292 | break; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4293 | } |
| 4294 | |
| 4295 | l = path->nodes[0]; |
| 4296 | slot = path->slots[0]; |
| 4297 | btrfs_item_key_to_cpu(l, &key, path->slots[0]); |
| 4298 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4299 | if (key.objectid != device->devid) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4300 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4301 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4302 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4303 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4304 | |
| 4305 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
| 4306 | length = btrfs_dev_extent_length(l, dev_extent); |
| 4307 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4308 | if (key.offset + length <= new_size) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4309 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4310 | btrfs_release_path(path); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4311 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4312 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4313 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4314 | chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4315 | btrfs_release_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4316 | |
Zhaolei | dc2ee4e | 2015-08-05 18:00:04 +0800 | [diff] [blame] | 4317 | ret = btrfs_relocate_chunk(root, chunk_offset); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4318 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4319 | if (ret && ret != -ENOSPC) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4320 | goto done; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4321 | if (ret == -ENOSPC) |
| 4322 | failed++; |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4323 | } while (key.offset-- > 0); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4324 | |
| 4325 | if (failed && !retried) { |
| 4326 | failed = 0; |
| 4327 | retried = true; |
| 4328 | goto again; |
| 4329 | } else if (failed && retried) { |
| 4330 | ret = -ENOSPC; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4331 | goto done; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4332 | } |
| 4333 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4334 | /* Shrinking succeeded, else we would be at "done". */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4335 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 4336 | if (IS_ERR(trans)) { |
| 4337 | ret = PTR_ERR(trans); |
| 4338 | goto done; |
| 4339 | } |
| 4340 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4341 | lock_chunks(root); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4342 | |
| 4343 | /* |
| 4344 | * We checked in the above loop all device extents that were already in |
| 4345 | * the device tree. However before we have updated the device's |
| 4346 | * total_bytes to the new size, we might have had chunk allocations that |
| 4347 | * have not complete yet (new block groups attached to transaction |
| 4348 | * handles), and therefore their device extents were not yet in the |
| 4349 | * device tree and we missed them in the loop above. So if we have any |
| 4350 | * pending chunk using a device extent that overlaps the device range |
| 4351 | * that we can not use anymore, commit the current transaction and |
| 4352 | * repeat the search on the device tree - this way we guarantee we will |
| 4353 | * not have chunks using device extents that end beyond 'new_size'. |
| 4354 | */ |
| 4355 | if (!checked_pending_chunks) { |
| 4356 | u64 start = new_size; |
| 4357 | u64 len = old_size - new_size; |
| 4358 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 4359 | if (contains_pending_extent(trans->transaction, device, |
| 4360 | &start, len)) { |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4361 | unlock_chunks(root); |
| 4362 | checked_pending_chunks = true; |
| 4363 | failed = 0; |
| 4364 | retried = false; |
| 4365 | ret = btrfs_commit_transaction(trans, root); |
| 4366 | if (ret) |
| 4367 | goto done; |
| 4368 | goto again; |
| 4369 | } |
| 4370 | } |
| 4371 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4372 | btrfs_device_set_disk_total_bytes(device, new_size); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 4373 | if (list_empty(&device->resized_list)) |
| 4374 | list_add_tail(&device->resized_list, |
| 4375 | &root->fs_info->fs_devices->resized_devices); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4376 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4377 | WARN_ON(diff > old_total); |
| 4378 | btrfs_set_super_total_bytes(super_copy, old_total - diff); |
| 4379 | unlock_chunks(root); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 4380 | |
| 4381 | /* Now btrfs_update_device() will change the on-disk size. */ |
| 4382 | ret = btrfs_update_device(trans, device); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4383 | btrfs_end_transaction(trans, root); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4384 | done: |
| 4385 | btrfs_free_path(path); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4386 | if (ret) { |
| 4387 | lock_chunks(root); |
| 4388 | btrfs_device_set_total_bytes(device, old_size); |
| 4389 | if (device->writeable) |
| 4390 | device->fs_devices->total_rw_bytes += diff; |
| 4391 | spin_lock(&root->fs_info->free_chunk_lock); |
| 4392 | root->fs_info->free_chunk_space += diff; |
| 4393 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 4394 | unlock_chunks(root); |
| 4395 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4396 | return ret; |
| 4397 | } |
| 4398 | |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 4399 | static int btrfs_add_system_chunk(struct btrfs_root *root, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4400 | struct btrfs_key *key, |
| 4401 | struct btrfs_chunk *chunk, int item_size) |
| 4402 | { |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 4403 | struct btrfs_super_block *super_copy = root->fs_info->super_copy; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4404 | struct btrfs_disk_key disk_key; |
| 4405 | u32 array_size; |
| 4406 | u8 *ptr; |
| 4407 | |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4408 | lock_chunks(root); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4409 | array_size = btrfs_super_sys_array_size(super_copy); |
Gui Hecheng | 5f43f86 | 2014-04-21 20:13:11 +0800 | [diff] [blame] | 4410 | if (array_size + item_size + sizeof(disk_key) |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4411 | > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) { |
| 4412 | unlock_chunks(root); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4413 | return -EFBIG; |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4414 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4415 | |
| 4416 | ptr = super_copy->sys_chunk_array + array_size; |
| 4417 | btrfs_cpu_key_to_disk(&disk_key, key); |
| 4418 | memcpy(ptr, &disk_key, sizeof(disk_key)); |
| 4419 | ptr += sizeof(disk_key); |
| 4420 | memcpy(ptr, chunk, item_size); |
| 4421 | item_size += sizeof(disk_key); |
| 4422 | btrfs_set_super_sys_array_size(super_copy, array_size + item_size); |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4423 | unlock_chunks(root); |
| 4424 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4425 | return 0; |
| 4426 | } |
| 4427 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4428 | /* |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4429 | * sort the devices in descending order by max_avail, total_avail |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4430 | */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4431 | static int btrfs_cmp_device_info(const void *a, const void *b) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4432 | { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4433 | const struct btrfs_device_info *di_a = a; |
| 4434 | const struct btrfs_device_info *di_b = b; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4435 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4436 | if (di_a->max_avail > di_b->max_avail) |
| 4437 | return -1; |
| 4438 | if (di_a->max_avail < di_b->max_avail) |
| 4439 | return 1; |
| 4440 | if (di_a->total_avail > di_b->total_avail) |
| 4441 | return -1; |
| 4442 | if (di_a->total_avail < di_b->total_avail) |
| 4443 | return 1; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4444 | return 0; |
| 4445 | } |
| 4446 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4447 | static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target) |
| 4448 | { |
| 4449 | /* TODO allow them to set a preferred stripe size */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4450 | return SZ_64K; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4451 | } |
| 4452 | |
| 4453 | static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type) |
| 4454 | { |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 4455 | if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK)) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4456 | return; |
| 4457 | |
Miao Xie | ceda086 | 2013-04-11 10:30:16 +0000 | [diff] [blame] | 4458 | btrfs_set_fs_incompat(info, RAID56); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4459 | } |
| 4460 | |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4461 | #define BTRFS_MAX_DEVS(r) ((BTRFS_LEAF_DATA_SIZE(r) \ |
| 4462 | - sizeof(struct btrfs_item) \ |
| 4463 | - sizeof(struct btrfs_chunk)) \ |
| 4464 | / sizeof(struct btrfs_stripe) + 1) |
| 4465 | |
| 4466 | #define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \ |
| 4467 | - 2 * sizeof(struct btrfs_disk_key) \ |
| 4468 | - 2 * sizeof(struct btrfs_chunk)) \ |
| 4469 | / sizeof(struct btrfs_stripe) + 1) |
| 4470 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4471 | static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4472 | struct btrfs_root *extent_root, u64 start, |
| 4473 | u64 type) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4474 | { |
| 4475 | struct btrfs_fs_info *info = extent_root->fs_info; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4476 | struct btrfs_fs_devices *fs_devices = info->fs_devices; |
| 4477 | struct list_head *cur; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4478 | struct map_lookup *map = NULL; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4479 | struct extent_map_tree *em_tree; |
| 4480 | struct extent_map *em; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4481 | struct btrfs_device_info *devices_info = NULL; |
| 4482 | u64 total_avail; |
| 4483 | int num_stripes; /* total number of stripes to allocate */ |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4484 | int data_stripes; /* number of stripes that count for |
| 4485 | block group size */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4486 | int sub_stripes; /* sub_stripes info for map */ |
| 4487 | int dev_stripes; /* stripes per dev */ |
| 4488 | int devs_max; /* max devs to use */ |
| 4489 | int devs_min; /* min devs needed */ |
| 4490 | int devs_increment; /* ndevs has to be a multiple of this */ |
| 4491 | int ncopies; /* how many copies to data has */ |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4492 | int ret; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4493 | u64 max_stripe_size; |
| 4494 | u64 max_chunk_size; |
| 4495 | u64 stripe_size; |
| 4496 | u64 num_bytes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4497 | u64 raid_stripe_len = BTRFS_STRIPE_LEN; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4498 | int ndevs; |
| 4499 | int i; |
| 4500 | int j; |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4501 | int index; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4502 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4503 | BUG_ON(!alloc_profile_is_valid(type, 0)); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4504 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4505 | if (list_empty(&fs_devices->alloc_list)) |
| 4506 | return -ENOSPC; |
| 4507 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4508 | index = __get_raid_index(type); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4509 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4510 | sub_stripes = btrfs_raid_array[index].sub_stripes; |
| 4511 | dev_stripes = btrfs_raid_array[index].dev_stripes; |
| 4512 | devs_max = btrfs_raid_array[index].devs_max; |
| 4513 | devs_min = btrfs_raid_array[index].devs_min; |
| 4514 | devs_increment = btrfs_raid_array[index].devs_increment; |
| 4515 | ncopies = btrfs_raid_array[index].ncopies; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4516 | |
| 4517 | if (type & BTRFS_BLOCK_GROUP_DATA) { |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4518 | max_stripe_size = SZ_1G; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4519 | max_chunk_size = 10 * max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4520 | if (!devs_max) |
| 4521 | devs_max = BTRFS_MAX_DEVS(info->chunk_root); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4522 | } else if (type & BTRFS_BLOCK_GROUP_METADATA) { |
Chris Mason | 1100373 | 2012-01-06 15:47:38 -0500 | [diff] [blame] | 4523 | /* for larger filesystems, use larger metadata chunks */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4524 | if (fs_devices->total_rw_bytes > 50ULL * SZ_1G) |
| 4525 | max_stripe_size = SZ_1G; |
Chris Mason | 1100373 | 2012-01-06 15:47:38 -0500 | [diff] [blame] | 4526 | else |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4527 | max_stripe_size = SZ_256M; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4528 | max_chunk_size = max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4529 | if (!devs_max) |
| 4530 | devs_max = BTRFS_MAX_DEVS(info->chunk_root); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4531 | } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4532 | max_stripe_size = SZ_32M; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4533 | max_chunk_size = 2 * max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4534 | if (!devs_max) |
| 4535 | devs_max = BTRFS_MAX_DEVS_SYS_CHUNK; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4536 | } else { |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 4537 | btrfs_err(info, "invalid chunk type 0x%llx requested", |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4538 | type); |
| 4539 | BUG_ON(1); |
| 4540 | } |
| 4541 | |
| 4542 | /* we don't want a chunk larger than 10% of writeable space */ |
| 4543 | max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1), |
| 4544 | max_chunk_size); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4545 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 4546 | devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info), |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4547 | GFP_NOFS); |
| 4548 | if (!devices_info) |
| 4549 | return -ENOMEM; |
| 4550 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4551 | cur = fs_devices->alloc_list.next; |
| 4552 | |
| 4553 | /* |
| 4554 | * in the first pass through the devices list, we gather information |
| 4555 | * about the available holes on each device. |
| 4556 | */ |
| 4557 | ndevs = 0; |
| 4558 | while (cur != &fs_devices->alloc_list) { |
| 4559 | struct btrfs_device *device; |
| 4560 | u64 max_avail; |
| 4561 | u64 dev_offset; |
| 4562 | |
| 4563 | device = list_entry(cur, struct btrfs_device, dev_alloc_list); |
| 4564 | |
| 4565 | cur = cur->next; |
| 4566 | |
| 4567 | if (!device->writeable) { |
Julia Lawall | 31b1a2b | 2012-11-03 10:58:34 +0000 | [diff] [blame] | 4568 | WARN(1, KERN_ERR |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4569 | "BTRFS: read-only device in alloc_list\n"); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4570 | continue; |
| 4571 | } |
| 4572 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 4573 | if (!device->in_fs_metadata || |
| 4574 | device->is_tgtdev_for_dev_replace) |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4575 | continue; |
| 4576 | |
| 4577 | if (device->total_bytes > device->bytes_used) |
| 4578 | total_avail = device->total_bytes - device->bytes_used; |
| 4579 | else |
| 4580 | total_avail = 0; |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 4581 | |
| 4582 | /* If there is no space on this device, skip it. */ |
| 4583 | if (total_avail == 0) |
| 4584 | continue; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4585 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4586 | ret = find_free_dev_extent(trans, device, |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4587 | max_stripe_size * dev_stripes, |
| 4588 | &dev_offset, &max_avail); |
| 4589 | if (ret && ret != -ENOSPC) |
| 4590 | goto error; |
| 4591 | |
| 4592 | if (ret == 0) |
| 4593 | max_avail = max_stripe_size * dev_stripes; |
| 4594 | |
| 4595 | if (max_avail < BTRFS_STRIPE_LEN * dev_stripes) |
| 4596 | continue; |
| 4597 | |
Eric Sandeen | 063d006 | 2013-01-31 00:55:01 +0000 | [diff] [blame] | 4598 | if (ndevs == fs_devices->rw_devices) { |
| 4599 | WARN(1, "%s: found more than %llu devices\n", |
| 4600 | __func__, fs_devices->rw_devices); |
| 4601 | break; |
| 4602 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4603 | devices_info[ndevs].dev_offset = dev_offset; |
| 4604 | devices_info[ndevs].max_avail = max_avail; |
| 4605 | devices_info[ndevs].total_avail = total_avail; |
| 4606 | devices_info[ndevs].dev = device; |
| 4607 | ++ndevs; |
| 4608 | } |
| 4609 | |
| 4610 | /* |
| 4611 | * now sort the devices by hole size / available space |
| 4612 | */ |
| 4613 | sort(devices_info, ndevs, sizeof(struct btrfs_device_info), |
| 4614 | btrfs_cmp_device_info, NULL); |
| 4615 | |
| 4616 | /* round down to number of usable stripes */ |
| 4617 | ndevs -= ndevs % devs_increment; |
| 4618 | |
| 4619 | if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) { |
| 4620 | ret = -ENOSPC; |
| 4621 | goto error; |
| 4622 | } |
| 4623 | |
| 4624 | if (devs_max && ndevs > devs_max) |
| 4625 | ndevs = devs_max; |
| 4626 | /* |
| 4627 | * the primary goal is to maximize the number of stripes, so use as many |
| 4628 | * devices as possible, even if the stripes are not maximum sized. |
| 4629 | */ |
| 4630 | stripe_size = devices_info[ndevs-1].max_avail; |
| 4631 | num_stripes = ndevs * dev_stripes; |
| 4632 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4633 | /* |
| 4634 | * this will have to be fixed for RAID1 and RAID10 over |
| 4635 | * more drives |
| 4636 | */ |
| 4637 | data_stripes = num_stripes / ncopies; |
| 4638 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4639 | if (type & BTRFS_BLOCK_GROUP_RAID5) { |
| 4640 | raid_stripe_len = find_raid56_stripe_len(ndevs - 1, |
| 4641 | btrfs_super_stripesize(info->super_copy)); |
| 4642 | data_stripes = num_stripes - 1; |
| 4643 | } |
| 4644 | if (type & BTRFS_BLOCK_GROUP_RAID6) { |
| 4645 | raid_stripe_len = find_raid56_stripe_len(ndevs - 2, |
| 4646 | btrfs_super_stripesize(info->super_copy)); |
| 4647 | data_stripes = num_stripes - 2; |
| 4648 | } |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4649 | |
| 4650 | /* |
| 4651 | * Use the number of data stripes to figure out how big this chunk |
| 4652 | * is really going to be in terms of logical address space, |
| 4653 | * and compare that answer with the max chunk size |
| 4654 | */ |
| 4655 | if (stripe_size * data_stripes > max_chunk_size) { |
| 4656 | u64 mask = (1ULL << 24) - 1; |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 4657 | |
| 4658 | stripe_size = div_u64(max_chunk_size, data_stripes); |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4659 | |
| 4660 | /* bump the answer up to a 16MB boundary */ |
| 4661 | stripe_size = (stripe_size + mask) & ~mask; |
| 4662 | |
| 4663 | /* but don't go higher than the limits we found |
| 4664 | * while searching for free extents |
| 4665 | */ |
| 4666 | if (stripe_size > devices_info[ndevs-1].max_avail) |
| 4667 | stripe_size = devices_info[ndevs-1].max_avail; |
| 4668 | } |
| 4669 | |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 4670 | stripe_size = div_u64(stripe_size, dev_stripes); |
Ilya Dryomov | 37db63a | 2012-04-13 17:05:08 +0300 | [diff] [blame] | 4671 | |
| 4672 | /* align to BTRFS_STRIPE_LEN */ |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 4673 | stripe_size = div_u64(stripe_size, raid_stripe_len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4674 | stripe_size *= raid_stripe_len; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4675 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4676 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
| 4677 | if (!map) { |
| 4678 | ret = -ENOMEM; |
| 4679 | goto error; |
| 4680 | } |
| 4681 | map->num_stripes = num_stripes; |
Chris Mason | 9b3f68b | 2008-04-18 10:29:51 -0400 | [diff] [blame] | 4682 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4683 | for (i = 0; i < ndevs; ++i) { |
| 4684 | for (j = 0; j < dev_stripes; ++j) { |
| 4685 | int s = i * dev_stripes + j; |
| 4686 | map->stripes[s].dev = devices_info[i].dev; |
| 4687 | map->stripes[s].physical = devices_info[i].dev_offset + |
| 4688 | j * stripe_size; |
Chris Mason | a40a90a | 2008-04-18 11:55:51 -0400 | [diff] [blame] | 4689 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4690 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4691 | map->sector_size = extent_root->sectorsize; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4692 | map->stripe_len = raid_stripe_len; |
| 4693 | map->io_align = raid_stripe_len; |
| 4694 | map->io_width = raid_stripe_len; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4695 | map->type = type; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 4696 | map->sub_stripes = sub_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4697 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4698 | num_bytes = stripe_size * data_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4699 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4700 | trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes); |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4701 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 4702 | em = alloc_extent_map(); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4703 | if (!em) { |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 4704 | kfree(map); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4705 | ret = -ENOMEM; |
| 4706 | goto error; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4707 | } |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 4708 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 4709 | em->map_lookup = map; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4710 | em->start = start; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4711 | em->len = num_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4712 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4713 | em->block_len = em->len; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4714 | em->orig_block_len = stripe_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4715 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4716 | em_tree = &extent_root->fs_info->mapping_tree.map_tree; |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4717 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 4718 | ret = add_extent_mapping(em_tree, em, 0); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4719 | if (!ret) { |
| 4720 | list_add_tail(&em->list, &trans->transaction->pending_chunks); |
| 4721 | atomic_inc(&em->refs); |
| 4722 | } |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4723 | write_unlock(&em_tree->lock); |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4724 | if (ret) { |
| 4725 | free_extent_map(em); |
Mark Fasheh | 1dd4602 | 2011-09-08 17:29:00 -0700 | [diff] [blame] | 4726 | goto error; |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4727 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4728 | |
Josef Bacik | 0448748 | 2013-01-29 15:03:37 -0500 | [diff] [blame] | 4729 | ret = btrfs_make_block_group(trans, extent_root, 0, type, |
| 4730 | BTRFS_FIRST_CHUNK_TREE_OBJECTID, |
| 4731 | start, num_bytes); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4732 | if (ret) |
| 4733 | goto error_del_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4734 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4735 | for (i = 0; i < map->num_stripes; i++) { |
| 4736 | num_bytes = map->stripes[i].dev->bytes_used + stripe_size; |
| 4737 | btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes); |
| 4738 | } |
Miao Xie | 43530c4 | 2014-09-03 21:35:36 +0800 | [diff] [blame] | 4739 | |
Miao Xie | 1c11618 | 2014-09-03 21:35:37 +0800 | [diff] [blame] | 4740 | spin_lock(&extent_root->fs_info->free_chunk_lock); |
| 4741 | extent_root->fs_info->free_chunk_space -= (stripe_size * |
| 4742 | map->num_stripes); |
| 4743 | spin_unlock(&extent_root->fs_info->free_chunk_lock); |
| 4744 | |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4745 | free_extent_map(em); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4746 | check_raid56_incompat_flag(extent_root->fs_info, type); |
| 4747 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4748 | kfree(devices_info); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4749 | return 0; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4750 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4751 | error_del_extent: |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4752 | write_lock(&em_tree->lock); |
| 4753 | remove_extent_mapping(em_tree, em); |
| 4754 | write_unlock(&em_tree->lock); |
| 4755 | |
| 4756 | /* One for our allocation */ |
| 4757 | free_extent_map(em); |
| 4758 | /* One for the tree reference */ |
| 4759 | free_extent_map(em); |
Filipe Manana | 495e64f | 2014-12-02 18:07:30 +0000 | [diff] [blame] | 4760 | /* One for the pending_chunks list reference */ |
| 4761 | free_extent_map(em); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4762 | error: |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4763 | kfree(devices_info); |
| 4764 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4765 | } |
| 4766 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4767 | int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans, |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4768 | struct btrfs_root *extent_root, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4769 | u64 chunk_offset, u64 chunk_size) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4770 | { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4771 | struct btrfs_key key; |
| 4772 | struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root; |
| 4773 | struct btrfs_device *device; |
| 4774 | struct btrfs_chunk *chunk; |
| 4775 | struct btrfs_stripe *stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4776 | struct extent_map_tree *em_tree; |
| 4777 | struct extent_map *em; |
| 4778 | struct map_lookup *map; |
| 4779 | size_t item_size; |
| 4780 | u64 dev_offset; |
| 4781 | u64 stripe_size; |
| 4782 | int i = 0; |
Chris Mason | 140e639 | 2015-12-23 13:30:51 -0800 | [diff] [blame] | 4783 | int ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4784 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4785 | em_tree = &extent_root->fs_info->mapping_tree.map_tree; |
| 4786 | read_lock(&em_tree->lock); |
| 4787 | em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size); |
| 4788 | read_unlock(&em_tree->lock); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4789 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4790 | if (!em) { |
| 4791 | btrfs_crit(extent_root->fs_info, "unable to find logical " |
| 4792 | "%Lu len %Lu", chunk_offset, chunk_size); |
| 4793 | return -EINVAL; |
| 4794 | } |
| 4795 | |
| 4796 | if (em->start != chunk_offset || em->len != chunk_size) { |
| 4797 | btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted" |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 4798 | " %Lu-%Lu, found %Lu-%Lu", chunk_offset, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4799 | chunk_size, em->start, em->len); |
| 4800 | free_extent_map(em); |
| 4801 | return -EINVAL; |
| 4802 | } |
| 4803 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 4804 | map = em->map_lookup; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4805 | item_size = btrfs_chunk_item_size(map->num_stripes); |
| 4806 | stripe_size = em->orig_block_len; |
| 4807 | |
| 4808 | chunk = kzalloc(item_size, GFP_NOFS); |
| 4809 | if (!chunk) { |
| 4810 | ret = -ENOMEM; |
| 4811 | goto out; |
| 4812 | } |
| 4813 | |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 4814 | /* |
| 4815 | * Take the device list mutex to prevent races with the final phase of |
| 4816 | * a device replace operation that replaces the device object associated |
| 4817 | * with the map's stripes, because the device object's id can change |
| 4818 | * at any time during that final phase of the device replace operation |
| 4819 | * (dev-replace.c:btrfs_dev_replace_finishing()). |
| 4820 | */ |
| 4821 | mutex_lock(&chunk_root->fs_info->fs_devices->device_list_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4822 | for (i = 0; i < map->num_stripes; i++) { |
| 4823 | device = map->stripes[i].dev; |
| 4824 | dev_offset = map->stripes[i].physical; |
| 4825 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4826 | ret = btrfs_update_device(trans, device); |
Mark Fasheh | 3acd395 | 2011-09-08 17:40:01 -0700 | [diff] [blame] | 4827 | if (ret) |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 4828 | break; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4829 | ret = btrfs_alloc_dev_extent(trans, device, |
| 4830 | chunk_root->root_key.objectid, |
| 4831 | BTRFS_FIRST_CHUNK_TREE_OBJECTID, |
| 4832 | chunk_offset, dev_offset, |
| 4833 | stripe_size); |
| 4834 | if (ret) |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 4835 | break; |
| 4836 | } |
| 4837 | if (ret) { |
| 4838 | mutex_unlock(&chunk_root->fs_info->fs_devices->device_list_mutex); |
| 4839 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4840 | } |
| 4841 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4842 | stripe = &chunk->stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4843 | for (i = 0; i < map->num_stripes; i++) { |
| 4844 | device = map->stripes[i].dev; |
| 4845 | dev_offset = map->stripes[i].physical; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4846 | |
| 4847 | btrfs_set_stack_stripe_devid(stripe, device->devid); |
| 4848 | btrfs_set_stack_stripe_offset(stripe, dev_offset); |
| 4849 | memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE); |
| 4850 | stripe++; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4851 | } |
Filipe Manana | 50460e3 | 2015-11-20 10:42:47 +0000 | [diff] [blame] | 4852 | mutex_unlock(&chunk_root->fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4853 | |
| 4854 | btrfs_set_stack_chunk_length(chunk, chunk_size); |
| 4855 | btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid); |
| 4856 | btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len); |
| 4857 | btrfs_set_stack_chunk_type(chunk, map->type); |
| 4858 | btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes); |
| 4859 | btrfs_set_stack_chunk_io_align(chunk, map->stripe_len); |
| 4860 | btrfs_set_stack_chunk_io_width(chunk, map->stripe_len); |
| 4861 | btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize); |
| 4862 | btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes); |
| 4863 | |
| 4864 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 4865 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 4866 | key.offset = chunk_offset; |
| 4867 | |
| 4868 | ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 4869 | if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 4870 | /* |
| 4871 | * TODO: Cleanup of inserted chunk root in case of |
| 4872 | * failure. |
| 4873 | */ |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 4874 | ret = btrfs_add_system_chunk(chunk_root, &key, chunk, |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4875 | item_size); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4876 | } |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4877 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4878 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4879 | kfree(chunk); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4880 | free_extent_map(em); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 4881 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4882 | } |
| 4883 | |
| 4884 | /* |
| 4885 | * Chunk allocation falls into two parts. The first part does works |
| 4886 | * that make the new allocated chunk useable, but not do any operation |
| 4887 | * that modifies the chunk tree. The second part does the works that |
| 4888 | * require modifying the chunk tree. This division is important for the |
| 4889 | * bootstrap process of adding storage to a seed btrfs. |
| 4890 | */ |
| 4891 | int btrfs_alloc_chunk(struct btrfs_trans_handle *trans, |
| 4892 | struct btrfs_root *extent_root, u64 type) |
| 4893 | { |
| 4894 | u64 chunk_offset; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4895 | |
Filipe Manana | a962959 | 2015-05-18 19:11:40 +0100 | [diff] [blame] | 4896 | ASSERT(mutex_is_locked(&extent_root->fs_info->chunk_mutex)); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4897 | chunk_offset = find_next_chunk(extent_root->fs_info); |
| 4898 | return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4899 | } |
| 4900 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4901 | static noinline int init_first_rw_device(struct btrfs_trans_handle *trans, |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4902 | struct btrfs_root *root, |
| 4903 | struct btrfs_device *device) |
| 4904 | { |
| 4905 | u64 chunk_offset; |
| 4906 | u64 sys_chunk_offset; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4907 | u64 alloc_profile; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4908 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 4909 | struct btrfs_root *extent_root = fs_info->extent_root; |
| 4910 | int ret; |
| 4911 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4912 | chunk_offset = find_next_chunk(fs_info); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4913 | alloc_profile = btrfs_get_alloc_profile(extent_root, 0); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4914 | ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset, |
| 4915 | alloc_profile); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4916 | if (ret) |
| 4917 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4918 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4919 | sys_chunk_offset = find_next_chunk(root->fs_info); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4920 | alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4921 | ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset, |
| 4922 | alloc_profile); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4923 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4924 | } |
| 4925 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 4926 | static inline int btrfs_chunk_max_errors(struct map_lookup *map) |
| 4927 | { |
| 4928 | int max_errors; |
| 4929 | |
| 4930 | if (map->type & (BTRFS_BLOCK_GROUP_RAID1 | |
| 4931 | BTRFS_BLOCK_GROUP_RAID10 | |
| 4932 | BTRFS_BLOCK_GROUP_RAID5 | |
| 4933 | BTRFS_BLOCK_GROUP_DUP)) { |
| 4934 | max_errors = 1; |
| 4935 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) { |
| 4936 | max_errors = 2; |
| 4937 | } else { |
| 4938 | max_errors = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4939 | } |
| 4940 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 4941 | return max_errors; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4942 | } |
| 4943 | |
| 4944 | int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset) |
| 4945 | { |
| 4946 | struct extent_map *em; |
| 4947 | struct map_lookup *map; |
| 4948 | struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree; |
| 4949 | int readonly = 0; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 4950 | int miss_ndevs = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4951 | int i; |
| 4952 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4953 | read_lock(&map_tree->map_tree.lock); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4954 | em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4955 | read_unlock(&map_tree->map_tree.lock); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4956 | if (!em) |
| 4957 | return 1; |
| 4958 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 4959 | map = em->map_lookup; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4960 | for (i = 0; i < map->num_stripes; i++) { |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 4961 | if (map->stripes[i].dev->missing) { |
| 4962 | miss_ndevs++; |
| 4963 | continue; |
| 4964 | } |
| 4965 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4966 | if (!map->stripes[i].dev->writeable) { |
| 4967 | readonly = 1; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 4968 | goto end; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4969 | } |
| 4970 | } |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 4971 | |
| 4972 | /* |
| 4973 | * If the number of missing devices is larger than max errors, |
| 4974 | * we can not write the data into that chunk successfully, so |
| 4975 | * set it readonly. |
| 4976 | */ |
| 4977 | if (miss_ndevs > btrfs_chunk_max_errors(map)) |
| 4978 | readonly = 1; |
| 4979 | end: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4980 | free_extent_map(em); |
| 4981 | return readonly; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4982 | } |
| 4983 | |
| 4984 | void btrfs_mapping_init(struct btrfs_mapping_tree *tree) |
| 4985 | { |
David Sterba | a8067e0 | 2011-04-21 00:34:43 +0200 | [diff] [blame] | 4986 | extent_map_tree_init(&tree->map_tree); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4987 | } |
| 4988 | |
| 4989 | void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree) |
| 4990 | { |
| 4991 | struct extent_map *em; |
| 4992 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4993 | while (1) { |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4994 | write_lock(&tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4995 | em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1); |
| 4996 | if (em) |
| 4997 | remove_extent_mapping(&tree->map_tree, em); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4998 | write_unlock(&tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4999 | if (!em) |
| 5000 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5001 | /* once for us */ |
| 5002 | free_extent_map(em); |
| 5003 | /* once for the tree */ |
| 5004 | free_extent_map(em); |
| 5005 | } |
| 5006 | } |
| 5007 | |
Stefan Behrens | 5d96405 | 2012-11-05 14:59:07 +0100 | [diff] [blame] | 5008 | 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] | 5009 | { |
Stefan Behrens | 5d96405 | 2012-11-05 14:59:07 +0100 | [diff] [blame] | 5010 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5011 | struct extent_map *em; |
| 5012 | struct map_lookup *map; |
| 5013 | struct extent_map_tree *em_tree = &map_tree->map_tree; |
| 5014 | int ret; |
| 5015 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5016 | read_lock(&em_tree->lock); |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5017 | em = lookup_extent_mapping(em_tree, logical, len); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5018 | read_unlock(&em_tree->lock); |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5019 | |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5020 | /* |
| 5021 | * We could return errors for these cases, but that could get ugly and |
| 5022 | * we'd probably do the same thing which is just not do anything else |
| 5023 | * and exit, so return 1 so the callers don't try to use other copies. |
| 5024 | */ |
| 5025 | if (!em) { |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 5026 | btrfs_crit(fs_info, "No mapping for %Lu-%Lu", logical, |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5027 | logical+len); |
| 5028 | return 1; |
| 5029 | } |
| 5030 | |
| 5031 | if (em->start > logical || em->start + em->len < logical) { |
David Sterba | ccf39f9 | 2013-07-11 15:41:11 +0200 | [diff] [blame] | 5032 | btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got " |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 5033 | "%Lu-%Lu", logical, logical+len, em->start, |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5034 | em->start + em->len); |
Liu Bo | 7d3d174 | 2013-09-29 10:33:16 +0800 | [diff] [blame] | 5035 | free_extent_map(em); |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5036 | return 1; |
| 5037 | } |
| 5038 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5039 | map = em->map_lookup; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5040 | if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1)) |
| 5041 | ret = map->num_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5042 | else if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
| 5043 | ret = map->sub_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5044 | else if (map->type & BTRFS_BLOCK_GROUP_RAID5) |
| 5045 | ret = 2; |
| 5046 | else if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
| 5047 | ret = 3; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5048 | else |
| 5049 | ret = 1; |
| 5050 | free_extent_map(em); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5051 | |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5052 | btrfs_dev_replace_lock(&fs_info->dev_replace, 0); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5053 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) |
| 5054 | ret++; |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5055 | btrfs_dev_replace_unlock(&fs_info->dev_replace, 0); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5056 | |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5057 | return ret; |
| 5058 | } |
| 5059 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5060 | unsigned long btrfs_full_stripe_len(struct btrfs_root *root, |
| 5061 | struct btrfs_mapping_tree *map_tree, |
| 5062 | u64 logical) |
| 5063 | { |
| 5064 | struct extent_map *em; |
| 5065 | struct map_lookup *map; |
| 5066 | struct extent_map_tree *em_tree = &map_tree->map_tree; |
| 5067 | unsigned long len = root->sectorsize; |
| 5068 | |
| 5069 | read_lock(&em_tree->lock); |
| 5070 | em = lookup_extent_mapping(em_tree, logical, len); |
| 5071 | read_unlock(&em_tree->lock); |
| 5072 | BUG_ON(!em); |
| 5073 | |
| 5074 | BUG_ON(em->start > logical || em->start + em->len < logical); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5075 | map = em->map_lookup; |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5076 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5077 | len = map->stripe_len * nr_data_stripes(map); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5078 | free_extent_map(em); |
| 5079 | return len; |
| 5080 | } |
| 5081 | |
| 5082 | int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree, |
| 5083 | u64 logical, u64 len, int mirror_num) |
| 5084 | { |
| 5085 | struct extent_map *em; |
| 5086 | struct map_lookup *map; |
| 5087 | struct extent_map_tree *em_tree = &map_tree->map_tree; |
| 5088 | int ret = 0; |
| 5089 | |
| 5090 | read_lock(&em_tree->lock); |
| 5091 | em = lookup_extent_mapping(em_tree, logical, len); |
| 5092 | read_unlock(&em_tree->lock); |
| 5093 | BUG_ON(!em); |
| 5094 | |
| 5095 | BUG_ON(em->start > logical || em->start + em->len < logical); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5096 | map = em->map_lookup; |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5097 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5098 | ret = 1; |
| 5099 | free_extent_map(em); |
| 5100 | return ret; |
| 5101 | } |
| 5102 | |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5103 | static int find_live_mirror(struct btrfs_fs_info *fs_info, |
| 5104 | struct map_lookup *map, int first, int num, |
| 5105 | int optimal, int dev_replace_is_ongoing) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5106 | { |
| 5107 | int i; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5108 | int tolerance; |
| 5109 | struct btrfs_device *srcdev; |
| 5110 | |
| 5111 | if (dev_replace_is_ongoing && |
| 5112 | fs_info->dev_replace.cont_reading_from_srcdev_mode == |
| 5113 | BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID) |
| 5114 | srcdev = fs_info->dev_replace.srcdev; |
| 5115 | else |
| 5116 | srcdev = NULL; |
| 5117 | |
| 5118 | /* |
| 5119 | * try to avoid the drive that is the source drive for a |
| 5120 | * dev-replace procedure, only choose it if no other non-missing |
| 5121 | * mirror is available |
| 5122 | */ |
| 5123 | for (tolerance = 0; tolerance < 2; tolerance++) { |
| 5124 | if (map->stripes[optimal].dev->bdev && |
| 5125 | (tolerance || map->stripes[optimal].dev != srcdev)) |
| 5126 | return optimal; |
| 5127 | for (i = first; i < first + num; i++) { |
| 5128 | if (map->stripes[i].dev->bdev && |
| 5129 | (tolerance || map->stripes[i].dev != srcdev)) |
| 5130 | return i; |
| 5131 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5132 | } |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5133 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5134 | /* we couldn't find one that doesn't fail. Just return something |
| 5135 | * and the io error handling code will clean up eventually |
| 5136 | */ |
| 5137 | return optimal; |
| 5138 | } |
| 5139 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5140 | static inline int parity_smaller(u64 a, u64 b) |
| 5141 | { |
| 5142 | return a > b; |
| 5143 | } |
| 5144 | |
| 5145 | /* Bubble-sort the stripe set to put the parity/syndrome stripes last */ |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5146 | static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5147 | { |
| 5148 | struct btrfs_bio_stripe s; |
| 5149 | int i; |
| 5150 | u64 l; |
| 5151 | int again = 1; |
| 5152 | |
| 5153 | while (again) { |
| 5154 | again = 0; |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5155 | for (i = 0; i < num_stripes - 1; i++) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5156 | if (parity_smaller(bbio->raid_map[i], |
| 5157 | bbio->raid_map[i+1])) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5158 | s = bbio->stripes[i]; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5159 | l = bbio->raid_map[i]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5160 | bbio->stripes[i] = bbio->stripes[i+1]; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5161 | bbio->raid_map[i] = bbio->raid_map[i+1]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5162 | bbio->stripes[i+1] = s; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5163 | bbio->raid_map[i+1] = l; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5164 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5165 | again = 1; |
| 5166 | } |
| 5167 | } |
| 5168 | } |
| 5169 | } |
| 5170 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5171 | static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes) |
| 5172 | { |
| 5173 | struct btrfs_bio *bbio = kzalloc( |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5174 | /* the size of the btrfs_bio */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5175 | sizeof(struct btrfs_bio) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5176 | /* plus the variable array for the stripes */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5177 | sizeof(struct btrfs_bio_stripe) * (total_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5178 | /* plus the variable array for the tgt dev */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5179 | sizeof(int) * (real_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5180 | /* |
| 5181 | * plus the raid_map, which includes both the tgt dev |
| 5182 | * and the stripes |
| 5183 | */ |
| 5184 | sizeof(u64) * (total_stripes), |
Michal Hocko | 277fb5f | 2015-08-19 14:17:41 +0200 | [diff] [blame] | 5185 | GFP_NOFS|__GFP_NOFAIL); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5186 | |
| 5187 | atomic_set(&bbio->error, 0); |
| 5188 | atomic_set(&bbio->refs, 1); |
| 5189 | |
| 5190 | return bbio; |
| 5191 | } |
| 5192 | |
| 5193 | void btrfs_get_bbio(struct btrfs_bio *bbio) |
| 5194 | { |
| 5195 | WARN_ON(!atomic_read(&bbio->refs)); |
| 5196 | atomic_inc(&bbio->refs); |
| 5197 | } |
| 5198 | |
| 5199 | void btrfs_put_bbio(struct btrfs_bio *bbio) |
| 5200 | { |
| 5201 | if (!bbio) |
| 5202 | return; |
| 5203 | if (atomic_dec_and_test(&bbio->refs)) |
| 5204 | kfree(bbio); |
| 5205 | } |
| 5206 | |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 5207 | static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw, |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5208 | u64 logical, u64 *length, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5209 | struct btrfs_bio **bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5210 | int mirror_num, int need_raid_map) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5211 | { |
| 5212 | struct extent_map *em; |
| 5213 | struct map_lookup *map; |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 5214 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5215 | struct extent_map_tree *em_tree = &map_tree->map_tree; |
| 5216 | u64 offset; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5217 | u64 stripe_offset; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5218 | u64 stripe_end_offset; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5219 | u64 stripe_nr; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5220 | u64 stripe_nr_orig; |
| 5221 | u64 stripe_nr_end; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5222 | u64 stripe_len; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5223 | u32 stripe_index; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5224 | int i; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5225 | int ret = 0; |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5226 | int num_stripes; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 5227 | int max_errors = 0; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5228 | int tgtdev_indexes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5229 | struct btrfs_bio *bbio = NULL; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5230 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 5231 | int dev_replace_is_ongoing = 0; |
| 5232 | int num_alloc_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5233 | int patch_the_first_stripe_for_dev_replace = 0; |
| 5234 | u64 physical_to_patch_in_first_stripe = 0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5235 | u64 raid56_full_stripe_start = (u64)-1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5236 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5237 | read_lock(&em_tree->lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5238 | em = lookup_extent_mapping(em_tree, logical, *length); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5239 | read_unlock(&em_tree->lock); |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5240 | |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5241 | if (!em) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 5242 | btrfs_crit(fs_info, "unable to find logical %llu len %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 5243 | logical, *length); |
Josef Bacik | 9bb9187 | 2013-04-19 23:45:33 -0400 | [diff] [blame] | 5244 | return -EINVAL; |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5245 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5246 | |
Josef Bacik | 9bb9187 | 2013-04-19 23:45:33 -0400 | [diff] [blame] | 5247 | if (em->start > logical || em->start + em->len < logical) { |
| 5248 | btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, " |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 5249 | "found %Lu-%Lu", logical, em->start, |
Josef Bacik | 9bb9187 | 2013-04-19 23:45:33 -0400 | [diff] [blame] | 5250 | em->start + em->len); |
Liu Bo | 7d3d174 | 2013-09-29 10:33:16 +0800 | [diff] [blame] | 5251 | free_extent_map(em); |
Josef Bacik | 9bb9187 | 2013-04-19 23:45:33 -0400 | [diff] [blame] | 5252 | return -EINVAL; |
| 5253 | } |
| 5254 | |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5255 | map = em->map_lookup; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5256 | offset = logical - em->start; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5257 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5258 | stripe_len = map->stripe_len; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5259 | stripe_nr = offset; |
| 5260 | /* |
| 5261 | * stripe_nr counts the total number of stripes we have to stride |
| 5262 | * to get to this block |
| 5263 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5264 | stripe_nr = div64_u64(stripe_nr, stripe_len); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5265 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5266 | stripe_offset = stripe_nr * stripe_len; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5267 | BUG_ON(offset < stripe_offset); |
| 5268 | |
| 5269 | /* stripe_offset is the offset of this block in its stripe*/ |
| 5270 | stripe_offset = offset - stripe_offset; |
| 5271 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5272 | /* 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] | 5273 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5274 | unsigned long full_stripe_len = stripe_len * nr_data_stripes(map); |
| 5275 | raid56_full_stripe_start = offset; |
| 5276 | |
| 5277 | /* allow a write of a full stripe, but make sure we don't |
| 5278 | * allow straddling of stripes |
| 5279 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5280 | raid56_full_stripe_start = div64_u64(raid56_full_stripe_start, |
| 5281 | full_stripe_len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5282 | raid56_full_stripe_start *= full_stripe_len; |
| 5283 | } |
| 5284 | |
| 5285 | if (rw & REQ_DISCARD) { |
| 5286 | /* we don't discard raid56 yet */ |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5287 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5288 | ret = -EOPNOTSUPP; |
| 5289 | goto out; |
| 5290 | } |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5291 | *length = min_t(u64, em->len - offset, *length); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5292 | } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) { |
| 5293 | u64 max_len; |
| 5294 | /* For writes to RAID[56], allow a full stripeset across all disks. |
| 5295 | For other RAID types and for RAID[56] reads, just allow a single |
| 5296 | stripe (on a single disk). */ |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5297 | if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5298 | (rw & REQ_WRITE)) { |
| 5299 | max_len = stripe_len * nr_data_stripes(map) - |
| 5300 | (offset - raid56_full_stripe_start); |
| 5301 | } else { |
| 5302 | /* we limit the length of each bio to what fits in a stripe */ |
| 5303 | max_len = stripe_len - stripe_offset; |
| 5304 | } |
| 5305 | *length = min_t(u64, em->len - offset, max_len); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5306 | } else { |
| 5307 | *length = em->len - offset; |
| 5308 | } |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5309 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5310 | /* This is for when we're called from btrfs_merge_bio_hook() and all |
| 5311 | it cares about is the length */ |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5312 | if (!bbio_ret) |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5313 | goto out; |
| 5314 | |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5315 | btrfs_dev_replace_lock(dev_replace, 0); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5316 | dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace); |
| 5317 | if (!dev_replace_is_ongoing) |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5318 | btrfs_dev_replace_unlock(dev_replace, 0); |
| 5319 | else |
| 5320 | btrfs_dev_replace_set_lock_blocking(dev_replace); |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5321 | |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5322 | if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 && |
| 5323 | !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) && |
| 5324 | dev_replace->tgtdev != NULL) { |
| 5325 | /* |
| 5326 | * in dev-replace case, for repair case (that's the only |
| 5327 | * case where the mirror is selected explicitly when |
| 5328 | * calling btrfs_map_block), blocks left of the left cursor |
| 5329 | * can also be read from the target drive. |
| 5330 | * For REQ_GET_READ_MIRRORS, the target drive is added as |
| 5331 | * the last one to the array of stripes. For READ, it also |
| 5332 | * needs to be supported using the same mirror number. |
| 5333 | * If the requested block is not left of the left cursor, |
| 5334 | * EIO is returned. This can happen because btrfs_num_copies() |
| 5335 | * returns one more in the dev-replace case. |
| 5336 | */ |
| 5337 | u64 tmp_length = *length; |
| 5338 | struct btrfs_bio *tmp_bbio = NULL; |
| 5339 | int tmp_num_stripes; |
| 5340 | u64 srcdev_devid = dev_replace->srcdev->devid; |
| 5341 | int index_srcdev = 0; |
| 5342 | int found = 0; |
| 5343 | u64 physical_of_found = 0; |
| 5344 | |
| 5345 | ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5346 | logical, &tmp_length, &tmp_bbio, 0, 0); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5347 | if (ret) { |
| 5348 | WARN_ON(tmp_bbio != NULL); |
| 5349 | goto out; |
| 5350 | } |
| 5351 | |
| 5352 | tmp_num_stripes = tmp_bbio->num_stripes; |
| 5353 | if (mirror_num > tmp_num_stripes) { |
| 5354 | /* |
| 5355 | * REQ_GET_READ_MIRRORS does not contain this |
| 5356 | * mirror, that means that the requested area |
| 5357 | * is not left of the left cursor |
| 5358 | */ |
| 5359 | ret = -EIO; |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5360 | btrfs_put_bbio(tmp_bbio); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5361 | goto out; |
| 5362 | } |
| 5363 | |
| 5364 | /* |
| 5365 | * process the rest of the function using the mirror_num |
| 5366 | * of the source drive. Therefore look it up first. |
| 5367 | * At the end, patch the device pointer to the one of the |
| 5368 | * target drive. |
| 5369 | */ |
| 5370 | for (i = 0; i < tmp_num_stripes; i++) { |
Zhao Lei | 94a97df | 2015-12-09 21:03:49 +0800 | [diff] [blame] | 5371 | if (tmp_bbio->stripes[i].dev->devid != srcdev_devid) |
| 5372 | continue; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5373 | |
Zhao Lei | 94a97df | 2015-12-09 21:03:49 +0800 | [diff] [blame] | 5374 | /* |
| 5375 | * In case of DUP, in order to keep it simple, only add |
| 5376 | * the mirror with the lowest physical address |
| 5377 | */ |
| 5378 | if (found && |
| 5379 | physical_of_found <= tmp_bbio->stripes[i].physical) |
| 5380 | continue; |
| 5381 | |
| 5382 | index_srcdev = i; |
| 5383 | found = 1; |
| 5384 | physical_of_found = tmp_bbio->stripes[i].physical; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5385 | } |
| 5386 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5387 | btrfs_put_bbio(tmp_bbio); |
Zhao Lei | 94a97df | 2015-12-09 21:03:49 +0800 | [diff] [blame] | 5388 | |
| 5389 | if (!found) { |
| 5390 | WARN_ON(1); |
| 5391 | ret = -EIO; |
| 5392 | goto out; |
| 5393 | } |
| 5394 | |
| 5395 | mirror_num = index_srcdev + 1; |
| 5396 | patch_the_first_stripe_for_dev_replace = 1; |
| 5397 | physical_to_patch_in_first_stripe = physical_of_found; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5398 | } else if (mirror_num > map->num_stripes) { |
| 5399 | mirror_num = 0; |
| 5400 | } |
| 5401 | |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5402 | num_stripes = 1; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5403 | stripe_index = 0; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5404 | stripe_nr_orig = stripe_nr; |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 5405 | stripe_nr_end = ALIGN(offset + *length, map->stripe_len); |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5406 | stripe_nr_end = div_u64(stripe_nr_end, map->stripe_len); |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5407 | stripe_end_offset = stripe_nr_end * map->stripe_len - |
| 5408 | (offset + *length); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5409 | |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5410 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
| 5411 | if (rw & REQ_DISCARD) |
| 5412 | num_stripes = min_t(u64, map->num_stripes, |
| 5413 | stripe_nr_end - stripe_nr_orig); |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5414 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5415 | &stripe_index); |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 5416 | if (!(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))) |
| 5417 | mirror_num = 1; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5418 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) { |
Stefan Behrens | 29a8d9a | 2012-11-06 14:16:24 +0100 | [diff] [blame] | 5419 | if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5420 | num_stripes = map->num_stripes; |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5421 | else if (mirror_num) |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5422 | stripe_index = mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5423 | else { |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5424 | stripe_index = find_live_mirror(fs_info, map, 0, |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5425 | map->num_stripes, |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5426 | current->pid % map->num_stripes, |
| 5427 | dev_replace_is_ongoing); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5428 | mirror_num = stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5429 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5430 | |
Chris Mason | 611f0e0 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5431 | } else if (map->type & BTRFS_BLOCK_GROUP_DUP) { |
Stefan Behrens | 29a8d9a | 2012-11-06 14:16:24 +0100 | [diff] [blame] | 5432 | if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) { |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5433 | num_stripes = map->num_stripes; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5434 | } else if (mirror_num) { |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5435 | stripe_index = mirror_num - 1; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5436 | } else { |
| 5437 | mirror_num = 1; |
| 5438 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5439 | |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5440 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5441 | u32 factor = map->num_stripes / map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5442 | |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5443 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5444 | stripe_index *= map->sub_stripes; |
| 5445 | |
Stefan Behrens | 29a8d9a | 2012-11-06 14:16:24 +0100 | [diff] [blame] | 5446 | if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5447 | num_stripes = map->sub_stripes; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5448 | else if (rw & REQ_DISCARD) |
| 5449 | num_stripes = min_t(u64, map->sub_stripes * |
| 5450 | (stripe_nr_end - stripe_nr_orig), |
| 5451 | map->num_stripes); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5452 | else if (mirror_num) |
| 5453 | stripe_index += mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5454 | else { |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 5455 | int old_stripe_index = stripe_index; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5456 | stripe_index = find_live_mirror(fs_info, map, |
| 5457 | stripe_index, |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5458 | map->sub_stripes, stripe_index + |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5459 | current->pid % map->sub_stripes, |
| 5460 | dev_replace_is_ongoing); |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 5461 | mirror_num = stripe_index - old_stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5462 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5463 | |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5464 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5465 | if (need_raid_map && |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 5466 | ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) || |
| 5467 | mirror_num > 1)) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5468 | /* push stripe_nr back to the start of the full stripe */ |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5469 | stripe_nr = div_u64(raid56_full_stripe_start, |
| 5470 | stripe_len * nr_data_stripes(map)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5471 | |
| 5472 | /* RAID[56] write or recovery. Return all stripes */ |
| 5473 | num_stripes = map->num_stripes; |
| 5474 | max_errors = nr_parity_stripes(map); |
| 5475 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5476 | *length = map->stripe_len; |
| 5477 | stripe_index = 0; |
| 5478 | stripe_offset = 0; |
| 5479 | } else { |
| 5480 | /* |
| 5481 | * Mirror #0 or #1 means the original data block. |
| 5482 | * Mirror #2 is RAID5 parity block. |
| 5483 | * Mirror #3 is RAID6 Q block. |
| 5484 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5485 | stripe_nr = div_u64_rem(stripe_nr, |
| 5486 | nr_data_stripes(map), &stripe_index); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5487 | if (mirror_num > 1) |
| 5488 | stripe_index = nr_data_stripes(map) + |
| 5489 | mirror_num - 2; |
| 5490 | |
| 5491 | /* We distribute the parity blocks across stripes */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5492 | div_u64_rem(stripe_nr + stripe_index, map->num_stripes, |
| 5493 | &stripe_index); |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 5494 | if (!(rw & (REQ_WRITE | REQ_DISCARD | |
| 5495 | REQ_GET_READ_MIRRORS)) && mirror_num <= 1) |
| 5496 | mirror_num = 1; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5497 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5498 | } else { |
| 5499 | /* |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5500 | * after this, stripe_nr is the number of stripes on this |
| 5501 | * device we have to walk to find the data, and stripe_index is |
| 5502 | * the number of our device in the stripe array |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5503 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5504 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5505 | &stripe_index); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5506 | mirror_num = stripe_index + 1; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5507 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5508 | BUG_ON(stripe_index >= map->num_stripes); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5509 | |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5510 | num_alloc_stripes = num_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5511 | if (dev_replace_is_ongoing) { |
| 5512 | if (rw & (REQ_WRITE | REQ_DISCARD)) |
| 5513 | num_alloc_stripes <<= 1; |
| 5514 | if (rw & REQ_GET_READ_MIRRORS) |
| 5515 | num_alloc_stripes++; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5516 | tgtdev_indexes = num_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5517 | } |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5518 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5519 | bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5520 | if (!bbio) { |
| 5521 | ret = -ENOMEM; |
| 5522 | goto out; |
| 5523 | } |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5524 | if (dev_replace_is_ongoing) |
| 5525 | bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5526 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5527 | /* build raid_map */ |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5528 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5529 | need_raid_map && ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) || |
| 5530 | mirror_num > 1)) { |
| 5531 | u64 tmp; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5532 | unsigned rot; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5533 | |
| 5534 | bbio->raid_map = (u64 *)((void *)bbio->stripes + |
| 5535 | sizeof(struct btrfs_bio_stripe) * |
| 5536 | num_alloc_stripes + |
| 5537 | sizeof(int) * tgtdev_indexes); |
| 5538 | |
| 5539 | /* Work out the disk rotation on this stripe-set */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5540 | div_u64_rem(stripe_nr, num_stripes, &rot); |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5541 | |
| 5542 | /* Fill in the logical address of each stripe */ |
| 5543 | tmp = stripe_nr * nr_data_stripes(map); |
| 5544 | for (i = 0; i < nr_data_stripes(map); i++) |
| 5545 | bbio->raid_map[(i+rot) % num_stripes] = |
| 5546 | em->start + (tmp + i) * map->stripe_len; |
| 5547 | |
| 5548 | bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE; |
| 5549 | if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
| 5550 | bbio->raid_map[(i+rot+1) % num_stripes] = |
| 5551 | RAID6_Q_STRIPE; |
| 5552 | } |
| 5553 | |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5554 | if (rw & REQ_DISCARD) { |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5555 | u32 factor = 0; |
| 5556 | u32 sub_stripes = 0; |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5557 | u64 stripes_per_dev = 0; |
| 5558 | u32 remaining_stripes = 0; |
Liu Bo | b89203f | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 5559 | u32 last_stripe = 0; |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5560 | |
| 5561 | if (map->type & |
| 5562 | (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5563 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
| 5564 | sub_stripes = 1; |
| 5565 | else |
| 5566 | sub_stripes = map->sub_stripes; |
| 5567 | |
| 5568 | factor = map->num_stripes / sub_stripes; |
| 5569 | stripes_per_dev = div_u64_rem(stripe_nr_end - |
| 5570 | stripe_nr_orig, |
| 5571 | factor, |
| 5572 | &remaining_stripes); |
Liu Bo | b89203f | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 5573 | div_u64_rem(stripe_nr_end - 1, factor, &last_stripe); |
| 5574 | last_stripe *= sub_stripes; |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5575 | } |
| 5576 | |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5577 | for (i = 0; i < num_stripes; i++) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5578 | bbio->stripes[i].physical = |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5579 | map->stripes[stripe_index].physical + |
| 5580 | stripe_offset + stripe_nr * map->stripe_len; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5581 | bbio->stripes[i].dev = map->stripes[stripe_index].dev; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5582 | |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5583 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 5584 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5585 | bbio->stripes[i].length = stripes_per_dev * |
| 5586 | map->stripe_len; |
Liu Bo | b89203f | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 5587 | |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5588 | if (i / sub_stripes < remaining_stripes) |
| 5589 | bbio->stripes[i].length += |
| 5590 | map->stripe_len; |
Liu Bo | b89203f | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 5591 | |
| 5592 | /* |
| 5593 | * Special for the first stripe and |
| 5594 | * the last stripe: |
| 5595 | * |
| 5596 | * |-------|...|-------| |
| 5597 | * |----------| |
| 5598 | * off end_off |
| 5599 | */ |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5600 | if (i < sub_stripes) |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5601 | bbio->stripes[i].length -= |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5602 | stripe_offset; |
Liu Bo | b89203f | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 5603 | |
| 5604 | if (stripe_index >= last_stripe && |
| 5605 | stripe_index <= (last_stripe + |
| 5606 | sub_stripes - 1)) |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5607 | bbio->stripes[i].length -= |
| 5608 | stripe_end_offset; |
Liu Bo | b89203f | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 5609 | |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5610 | if (i == sub_stripes - 1) |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5611 | stripe_offset = 0; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5612 | } else |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5613 | bbio->stripes[i].length = *length; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5614 | |
| 5615 | stripe_index++; |
| 5616 | if (stripe_index == map->num_stripes) { |
| 5617 | /* This could only happen for RAID0/10 */ |
| 5618 | stripe_index = 0; |
| 5619 | stripe_nr++; |
| 5620 | } |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5621 | } |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5622 | } else { |
| 5623 | for (i = 0; i < num_stripes; i++) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5624 | bbio->stripes[i].physical = |
Linus Torvalds | 212a17a | 2011-03-28 15:31:05 -0700 | [diff] [blame] | 5625 | map->stripes[stripe_index].physical + |
| 5626 | stripe_offset + |
| 5627 | stripe_nr * map->stripe_len; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5628 | bbio->stripes[i].dev = |
Linus Torvalds | 212a17a | 2011-03-28 15:31:05 -0700 | [diff] [blame] | 5629 | map->stripes[stripe_index].dev; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5630 | stripe_index++; |
| 5631 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5632 | } |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5633 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5634 | if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) |
| 5635 | max_errors = btrfs_chunk_max_errors(map); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5636 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5637 | if (bbio->raid_map) |
| 5638 | sort_parity_stripes(bbio, num_stripes); |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5639 | |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5640 | tgtdev_indexes = 0; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5641 | if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) && |
| 5642 | dev_replace->tgtdev != NULL) { |
| 5643 | int index_where_to_add; |
| 5644 | u64 srcdev_devid = dev_replace->srcdev->devid; |
| 5645 | |
| 5646 | /* |
| 5647 | * duplicate the write operations while the dev replace |
| 5648 | * procedure is running. Since the copying of the old disk |
| 5649 | * to the new disk takes place at run time while the |
| 5650 | * filesystem is mounted writable, the regular write |
| 5651 | * operations to the old disk have to be duplicated to go |
| 5652 | * to the new disk as well. |
| 5653 | * Note that device->missing is handled by the caller, and |
| 5654 | * that the write to the old disk is already set up in the |
| 5655 | * stripes array. |
| 5656 | */ |
| 5657 | index_where_to_add = num_stripes; |
| 5658 | for (i = 0; i < num_stripes; i++) { |
| 5659 | if (bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5660 | /* write to new disk, too */ |
| 5661 | struct btrfs_bio_stripe *new = |
| 5662 | bbio->stripes + index_where_to_add; |
| 5663 | struct btrfs_bio_stripe *old = |
| 5664 | bbio->stripes + i; |
| 5665 | |
| 5666 | new->physical = old->physical; |
| 5667 | new->length = old->length; |
| 5668 | new->dev = dev_replace->tgtdev; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5669 | bbio->tgtdev_map[i] = index_where_to_add; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5670 | index_where_to_add++; |
| 5671 | max_errors++; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5672 | tgtdev_indexes++; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5673 | } |
| 5674 | } |
| 5675 | num_stripes = index_where_to_add; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5676 | } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) && |
| 5677 | dev_replace->tgtdev != NULL) { |
| 5678 | u64 srcdev_devid = dev_replace->srcdev->devid; |
| 5679 | int index_srcdev = 0; |
| 5680 | int found = 0; |
| 5681 | u64 physical_of_found = 0; |
| 5682 | |
| 5683 | /* |
| 5684 | * During the dev-replace procedure, the target drive can |
| 5685 | * also be used to read data in case it is needed to repair |
| 5686 | * a corrupt block elsewhere. This is possible if the |
| 5687 | * requested area is left of the left cursor. In this area, |
| 5688 | * the target drive is a full copy of the source drive. |
| 5689 | */ |
| 5690 | for (i = 0; i < num_stripes; i++) { |
| 5691 | if (bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5692 | /* |
| 5693 | * In case of DUP, in order to keep it |
| 5694 | * simple, only add the mirror with the |
| 5695 | * lowest physical address |
| 5696 | */ |
| 5697 | if (found && |
| 5698 | physical_of_found <= |
| 5699 | bbio->stripes[i].physical) |
| 5700 | continue; |
| 5701 | index_srcdev = i; |
| 5702 | found = 1; |
| 5703 | physical_of_found = bbio->stripes[i].physical; |
| 5704 | } |
| 5705 | } |
| 5706 | if (found) { |
David Sterba | 258ece0 | 2015-02-24 19:45:15 +0100 | [diff] [blame] | 5707 | if (physical_of_found + map->stripe_len <= |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5708 | dev_replace->cursor_left) { |
| 5709 | struct btrfs_bio_stripe *tgtdev_stripe = |
| 5710 | bbio->stripes + num_stripes; |
| 5711 | |
| 5712 | tgtdev_stripe->physical = physical_of_found; |
| 5713 | tgtdev_stripe->length = |
| 5714 | bbio->stripes[index_srcdev].length; |
| 5715 | tgtdev_stripe->dev = dev_replace->tgtdev; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5716 | bbio->tgtdev_map[index_srcdev] = num_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5717 | |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5718 | tgtdev_indexes++; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5719 | num_stripes++; |
| 5720 | } |
| 5721 | } |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5722 | } |
| 5723 | |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5724 | *bbio_ret = bbio; |
Zhao Lei | 10f1190 | 2015-01-20 15:11:43 +0800 | [diff] [blame] | 5725 | bbio->map_type = map->type; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5726 | bbio->num_stripes = num_stripes; |
| 5727 | bbio->max_errors = max_errors; |
| 5728 | bbio->mirror_num = mirror_num; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5729 | bbio->num_tgtdevs = tgtdev_indexes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5730 | |
| 5731 | /* |
| 5732 | * this is the case that REQ_READ && dev_replace_is_ongoing && |
| 5733 | * mirror_num == num_stripes + 1 && dev_replace target drive is |
| 5734 | * available as a mirror |
| 5735 | */ |
| 5736 | if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) { |
| 5737 | WARN_ON(num_stripes > 1); |
| 5738 | bbio->stripes[0].dev = dev_replace->tgtdev; |
| 5739 | bbio->stripes[0].physical = physical_to_patch_in_first_stripe; |
| 5740 | bbio->mirror_num = map->num_stripes + 1; |
| 5741 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5742 | out: |
Liu Bo | 73beece | 2015-07-17 16:49:19 +0800 | [diff] [blame] | 5743 | if (dev_replace_is_ongoing) { |
| 5744 | btrfs_dev_replace_clear_lock_blocking(dev_replace); |
| 5745 | btrfs_dev_replace_unlock(dev_replace, 0); |
| 5746 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5747 | free_extent_map(em); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5748 | return ret; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5749 | } |
| 5750 | |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 5751 | int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw, |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5752 | u64 logical, u64 *length, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5753 | struct btrfs_bio **bbio_ret, int mirror_num) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5754 | { |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 5755 | return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5756 | mirror_num, 0); |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5757 | } |
| 5758 | |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 5759 | /* For Scrub/replace */ |
| 5760 | int btrfs_map_sblock(struct btrfs_fs_info *fs_info, int rw, |
| 5761 | u64 logical, u64 *length, |
| 5762 | struct btrfs_bio **bbio_ret, int mirror_num, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5763 | int need_raid_map) |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 5764 | { |
| 5765 | return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5766 | mirror_num, need_raid_map); |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 5767 | } |
| 5768 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5769 | int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree, |
| 5770 | u64 chunk_start, u64 physical, u64 devid, |
| 5771 | u64 **logical, int *naddrs, int *stripe_len) |
| 5772 | { |
| 5773 | struct extent_map_tree *em_tree = &map_tree->map_tree; |
| 5774 | struct extent_map *em; |
| 5775 | struct map_lookup *map; |
| 5776 | u64 *buf; |
| 5777 | u64 bytenr; |
| 5778 | u64 length; |
| 5779 | u64 stripe_nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5780 | u64 rmap_len; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5781 | int i, j, nr = 0; |
| 5782 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5783 | read_lock(&em_tree->lock); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5784 | em = lookup_extent_mapping(em_tree, chunk_start, 1); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5785 | read_unlock(&em_tree->lock); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5786 | |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 5787 | if (!em) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 5788 | printk(KERN_ERR "BTRFS: couldn't find em for chunk %Lu\n", |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 5789 | chunk_start); |
| 5790 | return -EIO; |
| 5791 | } |
| 5792 | |
| 5793 | if (em->start != chunk_start) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 5794 | printk(KERN_ERR "BTRFS: bad chunk start, em=%Lu, wanted=%Lu\n", |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 5795 | em->start, chunk_start); |
| 5796 | free_extent_map(em); |
| 5797 | return -EIO; |
| 5798 | } |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 5799 | map = em->map_lookup; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5800 | |
| 5801 | length = em->len; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5802 | rmap_len = map->stripe_len; |
| 5803 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5804 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5805 | length = div_u64(length, map->num_stripes / map->sub_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5806 | else if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5807 | length = div_u64(length, map->num_stripes); |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5808 | else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5809 | length = div_u64(length, nr_data_stripes(map)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5810 | rmap_len = map->stripe_len * nr_data_stripes(map); |
| 5811 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5812 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 5813 | buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5814 | BUG_ON(!buf); /* -ENOMEM */ |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5815 | |
| 5816 | for (i = 0; i < map->num_stripes; i++) { |
| 5817 | if (devid && map->stripes[i].dev->devid != devid) |
| 5818 | continue; |
| 5819 | if (map->stripes[i].physical > physical || |
| 5820 | map->stripes[i].physical + length <= physical) |
| 5821 | continue; |
| 5822 | |
| 5823 | stripe_nr = physical - map->stripes[i].physical; |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5824 | stripe_nr = div_u64(stripe_nr, map->stripe_len); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5825 | |
| 5826 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
| 5827 | stripe_nr = stripe_nr * map->num_stripes + i; |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5828 | stripe_nr = div_u64(stripe_nr, map->sub_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5829 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
| 5830 | stripe_nr = stripe_nr * map->num_stripes + i; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5831 | } /* else if RAID[56], multiply by nr_data_stripes(). |
| 5832 | * Alternatively, just use rmap_len below instead of |
| 5833 | * map->stripe_len */ |
| 5834 | |
| 5835 | bytenr = chunk_start + stripe_nr * rmap_len; |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 5836 | WARN_ON(nr >= map->num_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5837 | for (j = 0; j < nr; j++) { |
| 5838 | if (buf[j] == bytenr) |
| 5839 | break; |
| 5840 | } |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 5841 | if (j == nr) { |
| 5842 | WARN_ON(nr >= map->num_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5843 | buf[nr++] = bytenr; |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 5844 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5845 | } |
| 5846 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5847 | *logical = buf; |
| 5848 | *naddrs = nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5849 | *stripe_len = rmap_len; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5850 | |
| 5851 | free_extent_map(em); |
| 5852 | return 0; |
| 5853 | } |
| 5854 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5855 | 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] | 5856 | { |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 5857 | bio->bi_private = bbio->private; |
| 5858 | bio->bi_end_io = bbio->end_io; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5859 | bio_endio(bio); |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 5860 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5861 | btrfs_put_bbio(bbio); |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 5862 | } |
| 5863 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5864 | static void btrfs_end_bio(struct bio *bio) |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5865 | { |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 5866 | struct btrfs_bio *bbio = bio->bi_private; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 5867 | int is_orig_bio = 0; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5868 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5869 | if (bio->bi_error) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5870 | atomic_inc(&bbio->error); |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5871 | if (bio->bi_error == -EIO || bio->bi_error == -EREMOTEIO) { |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 5872 | unsigned int stripe_index = |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 5873 | btrfs_io_bio(bio)->stripe_index; |
Zhao Lei | 65f5333 | 2015-06-08 20:05:50 +0800 | [diff] [blame] | 5874 | struct btrfs_device *dev; |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 5875 | |
| 5876 | BUG_ON(stripe_index >= bbio->num_stripes); |
| 5877 | dev = bbio->stripes[stripe_index].dev; |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 5878 | if (dev->bdev) { |
| 5879 | if (bio->bi_rw & WRITE) |
| 5880 | btrfs_dev_stat_inc(dev, |
| 5881 | BTRFS_DEV_STAT_WRITE_ERRS); |
| 5882 | else |
| 5883 | btrfs_dev_stat_inc(dev, |
| 5884 | BTRFS_DEV_STAT_READ_ERRS); |
| 5885 | if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH) |
| 5886 | btrfs_dev_stat_inc(dev, |
| 5887 | BTRFS_DEV_STAT_FLUSH_ERRS); |
| 5888 | btrfs_dev_stat_print_on_error(dev); |
| 5889 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 5890 | } |
| 5891 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5892 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5893 | if (bio == bbio->orig_bio) |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 5894 | is_orig_bio = 1; |
| 5895 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 5896 | btrfs_bio_counter_dec(bbio->fs_info); |
| 5897 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5898 | if (atomic_dec_and_test(&bbio->stripes_pending)) { |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 5899 | if (!is_orig_bio) { |
| 5900 | bio_put(bio); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5901 | bio = bbio->orig_bio; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 5902 | } |
Muthu Kumar | c7b22bb | 2014-01-08 14:19:52 -0700 | [diff] [blame] | 5903 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 5904 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 5905 | /* only send an error to the higher layers if it is |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5906 | * beyond the tolerance of the btrfs bio |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 5907 | */ |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5908 | if (atomic_read(&bbio->error) > bbio->max_errors) { |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5909 | bio->bi_error = -EIO; |
Chris Mason | 5dbc8fc | 2011-12-09 11:07:37 -0500 | [diff] [blame] | 5910 | } else { |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 5911 | /* |
| 5912 | * this bio is actually up to date, we didn't |
| 5913 | * go over the max number of errors |
| 5914 | */ |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5915 | bio->bi_error = 0; |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 5916 | } |
Miao Xie | c55f139 | 2014-06-19 10:42:54 +0800 | [diff] [blame] | 5917 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5918 | btrfs_end_bbio(bbio, bio); |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 5919 | } else if (!is_orig_bio) { |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5920 | bio_put(bio); |
| 5921 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5922 | } |
| 5923 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5924 | /* |
| 5925 | * see run_scheduled_bios for a description of why bios are collected for |
| 5926 | * async submit. |
| 5927 | * |
| 5928 | * This will add one bio to the pending list for a device and make sure |
| 5929 | * the work struct is scheduled. |
| 5930 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 5931 | static noinline void btrfs_schedule_bio(struct btrfs_root *root, |
| 5932 | struct btrfs_device *device, |
| 5933 | int rw, struct bio *bio) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5934 | { |
| 5935 | int should_queue = 1; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 5936 | struct btrfs_pending_bios *pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5937 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5938 | if (device->missing || !device->bdev) { |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5939 | bio_io_error(bio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5940 | return; |
| 5941 | } |
| 5942 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5943 | /* don't bother with additional async steps for reads, right now */ |
Christoph Hellwig | 7b6d91d | 2010-08-07 18:20:39 +0200 | [diff] [blame] | 5944 | if (!(rw & REQ_WRITE)) { |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 5945 | bio_get(bio); |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 5946 | btrfsic_submit_bio(rw, bio); |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 5947 | bio_put(bio); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 5948 | return; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5949 | } |
| 5950 | |
| 5951 | /* |
Chris Mason | 0986fe9e | 2008-08-15 15:34:15 -0400 | [diff] [blame] | 5952 | * nr_async_bios allows us to reliably return congestion to the |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5953 | * higher layers. Otherwise, the async bio makes it appear we have |
| 5954 | * made progress against dirty pages when we've really just put it |
| 5955 | * on a queue for later |
| 5956 | */ |
Chris Mason | 0986fe9e | 2008-08-15 15:34:15 -0400 | [diff] [blame] | 5957 | atomic_inc(&root->fs_info->nr_async_bios); |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 5958 | WARN_ON(bio->bi_next); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5959 | bio->bi_next = NULL; |
| 5960 | bio->bi_rw |= rw; |
| 5961 | |
| 5962 | spin_lock(&device->io_lock); |
Christoph Hellwig | 7b6d91d | 2010-08-07 18:20:39 +0200 | [diff] [blame] | 5963 | if (bio->bi_rw & REQ_SYNC) |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 5964 | pending_bios = &device->pending_sync_bios; |
| 5965 | else |
| 5966 | pending_bios = &device->pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5967 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 5968 | if (pending_bios->tail) |
| 5969 | pending_bios->tail->bi_next = bio; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5970 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 5971 | pending_bios->tail = bio; |
| 5972 | if (!pending_bios->head) |
| 5973 | pending_bios->head = bio; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5974 | if (device->running_pending) |
| 5975 | should_queue = 0; |
| 5976 | |
| 5977 | spin_unlock(&device->io_lock); |
| 5978 | |
| 5979 | if (should_queue) |
Qu Wenruo | a8c93d4e | 2014-02-28 10:46:08 +0800 | [diff] [blame] | 5980 | btrfs_queue_work(root->fs_info->submit_workers, |
| 5981 | &device->work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5982 | } |
| 5983 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 5984 | static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio, |
| 5985 | struct bio *bio, u64 physical, int dev_nr, |
| 5986 | int rw, int async) |
| 5987 | { |
| 5988 | struct btrfs_device *dev = bbio->stripes[dev_nr].dev; |
| 5989 | |
| 5990 | bio->bi_private = bbio; |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 5991 | btrfs_io_bio(bio)->stripe_index = dev_nr; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 5992 | bio->bi_end_io = btrfs_end_bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 5993 | bio->bi_iter.bi_sector = physical >> 9; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 5994 | #ifdef DEBUG |
| 5995 | { |
| 5996 | struct rcu_string *name; |
| 5997 | |
| 5998 | rcu_read_lock(); |
| 5999 | name = rcu_dereference(dev->name); |
Masanari Iida | d142324 | 2012-10-31 15:16:32 +0000 | [diff] [blame] | 6000 | pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu " |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6001 | "(%s id %llu), size=%u\n", rw, |
Fabian Frederick | 1b6e446 | 2014-09-24 20:23:05 +0200 | [diff] [blame] | 6002 | (u64)bio->bi_iter.bi_sector, (u_long)dev->bdev->bd_dev, |
| 6003 | name->str, dev->devid, bio->bi_iter.bi_size); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6004 | rcu_read_unlock(); |
| 6005 | } |
| 6006 | #endif |
| 6007 | bio->bi_bdev = dev->bdev; |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6008 | |
| 6009 | btrfs_bio_counter_inc_noblocked(root->fs_info); |
| 6010 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6011 | if (async) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6012 | btrfs_schedule_bio(root, dev, rw, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6013 | else |
| 6014 | btrfsic_submit_bio(rw, bio); |
| 6015 | } |
| 6016 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6017 | static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical) |
| 6018 | { |
| 6019 | atomic_inc(&bbio->error); |
| 6020 | if (atomic_dec_and_test(&bbio->stripes_pending)) { |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6021 | /* Shoud be the original bio. */ |
| 6022 | WARN_ON(bio != bbio->orig_bio); |
| 6023 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6024 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6025 | bio->bi_iter.bi_sector = logical >> 9; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6026 | bio->bi_error = -EIO; |
| 6027 | btrfs_end_bbio(bbio, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6028 | } |
| 6029 | } |
| 6030 | |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6031 | int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio, |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 6032 | int mirror_num, int async_submit) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6033 | { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6034 | struct btrfs_device *dev; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6035 | struct bio *first_bio = bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6036 | u64 logical = (u64)bio->bi_iter.bi_sector << 9; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6037 | u64 length = 0; |
| 6038 | u64 map_length; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6039 | int ret; |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6040 | int dev_nr; |
| 6041 | int total_devs; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6042 | struct btrfs_bio *bbio = NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6043 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6044 | length = bio->bi_iter.bi_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6045 | map_length = length; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6046 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6047 | btrfs_bio_counter_inc_blocked(root->fs_info); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6048 | ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6049 | mirror_num, 1); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6050 | if (ret) { |
| 6051 | btrfs_bio_counter_dec(root->fs_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6052 | return ret; |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6053 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6054 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6055 | total_devs = bbio->num_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6056 | bbio->orig_bio = first_bio; |
| 6057 | bbio->private = first_bio->bi_private; |
| 6058 | bbio->end_io = first_bio->bi_end_io; |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6059 | bbio->fs_info = root->fs_info; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6060 | atomic_set(&bbio->stripes_pending, bbio->num_stripes); |
| 6061 | |
Zhao Lei | ad1ba2a | 2015-12-15 18:18:09 +0800 | [diff] [blame] | 6062 | if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
| 6063 | ((rw & WRITE) || (mirror_num > 1))) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6064 | /* In this case, map_length has been set to the length of |
| 6065 | a single stripe; not the whole write */ |
| 6066 | if (rw & WRITE) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6067 | ret = raid56_parity_write(root, bio, bbio, map_length); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6068 | } else { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6069 | ret = raid56_parity_recover(root, bio, bbio, map_length, |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 6070 | mirror_num, 1); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6071 | } |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 6072 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6073 | btrfs_bio_counter_dec(root->fs_info); |
| 6074 | return ret; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6075 | } |
| 6076 | |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6077 | if (map_length < length) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6078 | btrfs_crit(root->fs_info, "mapping failed logical %llu bio len %llu len %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6079 | logical, length, map_length); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6080 | BUG(); |
| 6081 | } |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6082 | |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6083 | for (dev_nr = 0; dev_nr < total_devs; dev_nr++) { |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6084 | dev = bbio->stripes[dev_nr].dev; |
| 6085 | if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) { |
| 6086 | bbio_error(bbio, first_bio, logical); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6087 | continue; |
| 6088 | } |
| 6089 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6090 | if (dev_nr < total_devs - 1) { |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6091 | bio = btrfs_bio_clone(first_bio, GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6092 | BUG_ON(!bio); /* -ENOMEM */ |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 6093 | } else |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6094 | bio = first_bio; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 6095 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6096 | submit_stripe_bio(root, bbio, bio, |
| 6097 | bbio->stripes[dev_nr].physical, dev_nr, rw, |
| 6098 | async_submit); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6099 | } |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6100 | btrfs_bio_counter_dec(root->fs_info); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6101 | return 0; |
| 6102 | } |
| 6103 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6104 | 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] | 6105 | u8 *uuid, u8 *fsid) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6106 | { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6107 | struct btrfs_device *device; |
| 6108 | struct btrfs_fs_devices *cur_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6109 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6110 | cur_devices = fs_info->fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6111 | while (cur_devices) { |
| 6112 | if (!fsid || |
| 6113 | !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) { |
| 6114 | device = __find_device(&cur_devices->devices, |
| 6115 | devid, uuid); |
| 6116 | if (device) |
| 6117 | return device; |
| 6118 | } |
| 6119 | cur_devices = cur_devices->seed; |
| 6120 | } |
| 6121 | return NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6122 | } |
| 6123 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6124 | static struct btrfs_device *add_missing_dev(struct btrfs_root *root, |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6125 | struct btrfs_fs_devices *fs_devices, |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6126 | u64 devid, u8 *dev_uuid) |
| 6127 | { |
| 6128 | struct btrfs_device *device; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6129 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6130 | device = btrfs_alloc_device(NULL, &devid, dev_uuid); |
| 6131 | if (IS_ERR(device)) |
yanhai zhu | 7cbd8a8 | 2008-11-12 14:38:54 -0500 | [diff] [blame] | 6132 | return NULL; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6133 | |
| 6134 | list_add(&device->dev_list, &fs_devices->devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6135 | device->fs_devices = fs_devices; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6136 | fs_devices->num_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6137 | |
| 6138 | device->missing = 1; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6139 | fs_devices->missing_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6140 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6141 | return device; |
| 6142 | } |
| 6143 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6144 | /** |
| 6145 | * btrfs_alloc_device - allocate struct btrfs_device |
| 6146 | * @fs_info: used only for generating a new devid, can be NULL if |
| 6147 | * devid is provided (i.e. @devid != NULL). |
| 6148 | * @devid: a pointer to devid for this device. If NULL a new devid |
| 6149 | * is generated. |
| 6150 | * @uuid: a pointer to UUID for this device. If NULL a new UUID |
| 6151 | * is generated. |
| 6152 | * |
| 6153 | * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR() |
| 6154 | * on error. Returned struct is not linked onto any lists and can be |
| 6155 | * destroyed with kfree() right away. |
| 6156 | */ |
| 6157 | struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info, |
| 6158 | const u64 *devid, |
| 6159 | const u8 *uuid) |
| 6160 | { |
| 6161 | struct btrfs_device *dev; |
| 6162 | u64 tmp; |
| 6163 | |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6164 | if (WARN_ON(!devid && !fs_info)) |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6165 | return ERR_PTR(-EINVAL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6166 | |
| 6167 | dev = __alloc_device(); |
| 6168 | if (IS_ERR(dev)) |
| 6169 | return dev; |
| 6170 | |
| 6171 | if (devid) |
| 6172 | tmp = *devid; |
| 6173 | else { |
| 6174 | int ret; |
| 6175 | |
| 6176 | ret = find_next_devid(fs_info, &tmp); |
| 6177 | if (ret) { |
| 6178 | kfree(dev); |
| 6179 | return ERR_PTR(ret); |
| 6180 | } |
| 6181 | } |
| 6182 | dev->devid = tmp; |
| 6183 | |
| 6184 | if (uuid) |
| 6185 | memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE); |
| 6186 | else |
| 6187 | generate_random_uuid(dev->uuid); |
| 6188 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 6189 | btrfs_init_work(&dev->work, btrfs_submit_helper, |
| 6190 | pending_bios_fn, NULL, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6191 | |
| 6192 | return dev; |
| 6193 | } |
| 6194 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6195 | static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key, |
| 6196 | struct extent_buffer *leaf, |
| 6197 | struct btrfs_chunk *chunk) |
| 6198 | { |
| 6199 | struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree; |
| 6200 | struct map_lookup *map; |
| 6201 | struct extent_map *em; |
| 6202 | u64 logical; |
| 6203 | u64 length; |
Qu Wenruo | f04b772 | 2015-12-15 09:14:37 +0800 | [diff] [blame] | 6204 | u64 stripe_len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6205 | u64 devid; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6206 | u8 uuid[BTRFS_UUID_SIZE]; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6207 | int num_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6208 | int ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6209 | int i; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6210 | |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 6211 | logical = key->offset; |
| 6212 | length = btrfs_chunk_length(leaf, chunk); |
Qu Wenruo | f04b772 | 2015-12-15 09:14:37 +0800 | [diff] [blame] | 6213 | stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
| 6214 | num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 6215 | /* Validation check */ |
| 6216 | if (!num_stripes) { |
| 6217 | btrfs_err(root->fs_info, "invalid chunk num_stripes: %u", |
| 6218 | num_stripes); |
| 6219 | return -EIO; |
| 6220 | } |
| 6221 | if (!IS_ALIGNED(logical, root->sectorsize)) { |
| 6222 | btrfs_err(root->fs_info, |
| 6223 | "invalid chunk logical %llu", logical); |
| 6224 | return -EIO; |
| 6225 | } |
| 6226 | if (!length || !IS_ALIGNED(length, root->sectorsize)) { |
| 6227 | btrfs_err(root->fs_info, |
| 6228 | "invalid chunk length %llu", length); |
| 6229 | return -EIO; |
| 6230 | } |
| 6231 | if (!is_power_of_2(stripe_len)) { |
| 6232 | btrfs_err(root->fs_info, "invalid chunk stripe length: %llu", |
| 6233 | stripe_len); |
| 6234 | return -EIO; |
| 6235 | } |
| 6236 | if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) & |
| 6237 | btrfs_chunk_type(leaf, chunk)) { |
| 6238 | btrfs_err(root->fs_info, "unrecognized chunk type: %llu", |
| 6239 | ~(BTRFS_BLOCK_GROUP_TYPE_MASK | |
| 6240 | BTRFS_BLOCK_GROUP_PROFILE_MASK) & |
| 6241 | btrfs_chunk_type(leaf, chunk)); |
| 6242 | return -EIO; |
| 6243 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6244 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6245 | read_lock(&map_tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6246 | em = lookup_extent_mapping(&map_tree->map_tree, logical, 1); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6247 | read_unlock(&map_tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6248 | |
| 6249 | /* already mapped? */ |
| 6250 | if (em && em->start <= logical && em->start + em->len > logical) { |
| 6251 | free_extent_map(em); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6252 | return 0; |
| 6253 | } else if (em) { |
| 6254 | free_extent_map(em); |
| 6255 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6256 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 6257 | em = alloc_extent_map(); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6258 | if (!em) |
| 6259 | return -ENOMEM; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6260 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6261 | if (!map) { |
| 6262 | free_extent_map(em); |
| 6263 | return -ENOMEM; |
| 6264 | } |
| 6265 | |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 6266 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 6267 | em->map_lookup = map; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6268 | em->start = logical; |
| 6269 | em->len = length; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 6270 | em->orig_start = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6271 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6272 | em->block_len = em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6273 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6274 | map->num_stripes = num_stripes; |
| 6275 | map->io_width = btrfs_chunk_io_width(leaf, chunk); |
| 6276 | map->io_align = btrfs_chunk_io_align(leaf, chunk); |
| 6277 | map->sector_size = btrfs_chunk_sector_size(leaf, chunk); |
| 6278 | map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
| 6279 | map->type = btrfs_chunk_type(leaf, chunk); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6280 | map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6281 | for (i = 0; i < num_stripes; i++) { |
| 6282 | map->stripes[i].physical = |
| 6283 | btrfs_stripe_offset_nr(leaf, chunk, i); |
| 6284 | devid = btrfs_stripe_devid_nr(leaf, chunk, i); |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6285 | read_extent_buffer(leaf, uuid, (unsigned long) |
| 6286 | btrfs_stripe_dev_uuid_nr(chunk, i), |
| 6287 | BTRFS_UUID_SIZE); |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6288 | map->stripes[i].dev = btrfs_find_device(root->fs_info, devid, |
| 6289 | uuid, NULL); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6290 | if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) { |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6291 | free_extent_map(em); |
| 6292 | return -EIO; |
| 6293 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6294 | if (!map->stripes[i].dev) { |
| 6295 | map->stripes[i].dev = |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6296 | add_missing_dev(root, root->fs_info->fs_devices, |
| 6297 | devid, uuid); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6298 | if (!map->stripes[i].dev) { |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6299 | free_extent_map(em); |
| 6300 | return -EIO; |
| 6301 | } |
Anand Jain | 816fceb | 2015-04-27 12:46:18 +0800 | [diff] [blame] | 6302 | btrfs_warn(root->fs_info, "devid %llu uuid %pU is missing", |
| 6303 | devid, uuid); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6304 | } |
| 6305 | map->stripes[i].dev->in_fs_metadata = 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6306 | } |
| 6307 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6308 | write_lock(&map_tree->map_tree.lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 6309 | ret = add_extent_mapping(&map_tree->map_tree, em, 0); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6310 | write_unlock(&map_tree->map_tree.lock); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6311 | BUG_ON(ret); /* Tree corruption */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6312 | free_extent_map(em); |
| 6313 | |
| 6314 | return 0; |
| 6315 | } |
| 6316 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6317 | static void fill_device_from_item(struct extent_buffer *leaf, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6318 | struct btrfs_dev_item *dev_item, |
| 6319 | struct btrfs_device *device) |
| 6320 | { |
| 6321 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6322 | |
| 6323 | device->devid = btrfs_device_id(leaf, dev_item); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 6324 | device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item); |
| 6325 | device->total_bytes = device->disk_total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 6326 | device->commit_total_bytes = device->disk_total_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6327 | device->bytes_used = btrfs_device_bytes_used(leaf, dev_item); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 6328 | device->commit_bytes_used = device->bytes_used; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6329 | device->type = btrfs_device_type(leaf, dev_item); |
| 6330 | device->io_align = btrfs_device_io_align(leaf, dev_item); |
| 6331 | device->io_width = btrfs_device_io_width(leaf, dev_item); |
| 6332 | device->sector_size = btrfs_device_sector_size(leaf, dev_item); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 6333 | WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID); |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 6334 | device->is_tgtdev_for_dev_replace = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6335 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 6336 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 6337 | read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6338 | } |
| 6339 | |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6340 | static struct btrfs_fs_devices *open_seed_devices(struct btrfs_root *root, |
| 6341 | u8 *fsid) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6342 | { |
| 6343 | struct btrfs_fs_devices *fs_devices; |
| 6344 | int ret; |
| 6345 | |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6346 | BUG_ON(!mutex_is_locked(&uuid_mutex)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6347 | |
| 6348 | fs_devices = root->fs_info->fs_devices->seed; |
| 6349 | while (fs_devices) { |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6350 | if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) |
| 6351 | return fs_devices; |
| 6352 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6353 | fs_devices = fs_devices->seed; |
| 6354 | } |
| 6355 | |
| 6356 | fs_devices = find_fsid(fsid); |
| 6357 | if (!fs_devices) { |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6358 | if (!btrfs_test_opt(root, DEGRADED)) |
| 6359 | return ERR_PTR(-ENOENT); |
| 6360 | |
| 6361 | fs_devices = alloc_fs_devices(fsid); |
| 6362 | if (IS_ERR(fs_devices)) |
| 6363 | return fs_devices; |
| 6364 | |
| 6365 | fs_devices->seeding = 1; |
| 6366 | fs_devices->opened = 1; |
| 6367 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6368 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6369 | |
| 6370 | fs_devices = clone_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6371 | if (IS_ERR(fs_devices)) |
| 6372 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6373 | |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 6374 | ret = __btrfs_open_devices(fs_devices, FMODE_READ, |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 6375 | root->fs_info->bdev_holder); |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 6376 | if (ret) { |
| 6377 | free_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6378 | fs_devices = ERR_PTR(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6379 | goto out; |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 6380 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6381 | |
| 6382 | if (!fs_devices->seeding) { |
| 6383 | __btrfs_close_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6384 | free_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6385 | fs_devices = ERR_PTR(-EINVAL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6386 | goto out; |
| 6387 | } |
| 6388 | |
| 6389 | fs_devices->seed = root->fs_info->fs_devices->seed; |
| 6390 | root->fs_info->fs_devices->seed = fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6391 | out: |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6392 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6393 | } |
| 6394 | |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6395 | static int read_one_dev(struct btrfs_root *root, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6396 | struct extent_buffer *leaf, |
| 6397 | struct btrfs_dev_item *dev_item) |
| 6398 | { |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6399 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6400 | struct btrfs_device *device; |
| 6401 | u64 devid; |
| 6402 | int ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6403 | u8 fs_uuid[BTRFS_UUID_SIZE]; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6404 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 6405 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6406 | devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 6407 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6408 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 6409 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6410 | BTRFS_UUID_SIZE); |
| 6411 | |
| 6412 | if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) { |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6413 | fs_devices = open_seed_devices(root, fs_uuid); |
| 6414 | if (IS_ERR(fs_devices)) |
| 6415 | return PTR_ERR(fs_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6416 | } |
| 6417 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6418 | device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6419 | if (!device) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6420 | if (!btrfs_test_opt(root, DEGRADED)) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6421 | return -EIO; |
| 6422 | |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6423 | device = add_missing_dev(root, fs_devices, devid, dev_uuid); |
| 6424 | if (!device) |
| 6425 | return -ENOMEM; |
Anand Jain | 33b97e4 | 2015-05-08 04:34:35 +0800 | [diff] [blame] | 6426 | btrfs_warn(root->fs_info, "devid %llu uuid %pU missing", |
| 6427 | devid, dev_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6428 | } else { |
| 6429 | if (!device->bdev && !btrfs_test_opt(root, DEGRADED)) |
| 6430 | return -EIO; |
| 6431 | |
| 6432 | if(!device->bdev && !device->missing) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6433 | /* |
| 6434 | * this happens when a device that was properly setup |
| 6435 | * in the device info lists suddenly goes bad. |
| 6436 | * device->bdev is NULL, and so we have to set |
| 6437 | * device->missing to one here |
| 6438 | */ |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6439 | device->fs_devices->missing_devices++; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6440 | device->missing = 1; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6441 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6442 | |
| 6443 | /* Move the device to its own fs_devices */ |
| 6444 | if (device->fs_devices != fs_devices) { |
| 6445 | ASSERT(device->missing); |
| 6446 | |
| 6447 | list_move(&device->dev_list, &fs_devices->devices); |
| 6448 | device->fs_devices->num_devices--; |
| 6449 | fs_devices->num_devices++; |
| 6450 | |
| 6451 | device->fs_devices->missing_devices--; |
| 6452 | fs_devices->missing_devices++; |
| 6453 | |
| 6454 | device->fs_devices = fs_devices; |
| 6455 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6456 | } |
| 6457 | |
| 6458 | if (device->fs_devices != root->fs_info->fs_devices) { |
| 6459 | BUG_ON(device->writeable); |
| 6460 | if (device->generation != |
| 6461 | btrfs_device_generation(leaf, dev_item)) |
| 6462 | return -EINVAL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 6463 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6464 | |
| 6465 | fill_device_from_item(leaf, dev_item, device); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6466 | device->in_fs_metadata = 1; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 6467 | if (device->writeable && !device->is_tgtdev_for_dev_replace) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6468 | device->fs_devices->total_rw_bytes += device->total_bytes; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 6469 | spin_lock(&root->fs_info->free_chunk_lock); |
| 6470 | root->fs_info->free_chunk_space += device->total_bytes - |
| 6471 | device->bytes_used; |
| 6472 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 6473 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6474 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6475 | return ret; |
| 6476 | } |
| 6477 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6478 | int btrfs_read_sys_array(struct btrfs_root *root) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6479 | { |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 6480 | struct btrfs_super_block *super_copy = root->fs_info->super_copy; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6481 | struct extent_buffer *sb; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6482 | struct btrfs_disk_key *disk_key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6483 | struct btrfs_chunk *chunk; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6484 | u8 *array_ptr; |
| 6485 | unsigned long sb_array_offset; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6486 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6487 | u32 num_stripes; |
| 6488 | u32 array_size; |
| 6489 | u32 len = 0; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6490 | u32 cur_offset; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6491 | struct btrfs_key key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6492 | |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 6493 | ASSERT(BTRFS_SUPER_INFO_SIZE <= root->nodesize); |
| 6494 | /* |
| 6495 | * This will create extent buffer of nodesize, superblock size is |
| 6496 | * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will |
| 6497 | * overallocate but we can keep it as-is, only the first page is used. |
| 6498 | */ |
| 6499 | sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6500 | if (!sb) |
| 6501 | return -ENOMEM; |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 6502 | set_extent_buffer_uptodate(sb); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 6503 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0); |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 6504 | /* |
| 6505 | * The sb extent buffer is artifical and just used to read the system array. |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 6506 | * set_extent_buffer_uptodate() call does not properly mark all it's |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 6507 | * pages up-to-date when the page is larger: extent does not cover the |
| 6508 | * whole page and consequently check_page_uptodate does not find all |
| 6509 | * the page's extents up-to-date (the hole beyond sb), |
| 6510 | * write_extent_buffer then triggers a WARN_ON. |
| 6511 | * |
| 6512 | * Regular short extents go through mark_extent_buffer_dirty/writeback cycle, |
| 6513 | * but sb spans only this function. Add an explicit SetPageUptodate call |
| 6514 | * to silence the warning eg. on PowerPC 64. |
| 6515 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 6516 | if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE) |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 6517 | SetPageUptodate(sb->pages[0]); |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 6518 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6519 | write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6520 | array_size = btrfs_super_sys_array_size(super_copy); |
| 6521 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6522 | array_ptr = super_copy->sys_chunk_array; |
| 6523 | sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array); |
| 6524 | cur_offset = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6525 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6526 | while (cur_offset < array_size) { |
| 6527 | disk_key = (struct btrfs_disk_key *)array_ptr; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6528 | len = sizeof(*disk_key); |
| 6529 | if (cur_offset + len > array_size) |
| 6530 | goto out_short_read; |
| 6531 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6532 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 6533 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6534 | array_ptr += len; |
| 6535 | sb_array_offset += len; |
| 6536 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6537 | |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6538 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6539 | chunk = (struct btrfs_chunk *)sb_array_offset; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6540 | /* |
| 6541 | * At least one btrfs_chunk with one stripe must be |
| 6542 | * present, exact stripe count check comes afterwards |
| 6543 | */ |
| 6544 | len = btrfs_chunk_item_size(1); |
| 6545 | if (cur_offset + len > array_size) |
| 6546 | goto out_short_read; |
| 6547 | |
| 6548 | num_stripes = btrfs_chunk_num_stripes(sb, chunk); |
David Sterba | f5cdedd | 2015-11-30 17:27:06 +0100 | [diff] [blame] | 6549 | if (!num_stripes) { |
| 6550 | printk(KERN_ERR |
| 6551 | "BTRFS: invalid number of stripes %u in sys_array at offset %u\n", |
| 6552 | num_stripes, cur_offset); |
| 6553 | ret = -EIO; |
| 6554 | break; |
| 6555 | } |
| 6556 | |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6557 | len = btrfs_chunk_item_size(num_stripes); |
| 6558 | if (cur_offset + len > array_size) |
| 6559 | goto out_short_read; |
| 6560 | |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6561 | ret = read_one_chunk(root, &key, sb, chunk); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6562 | if (ret) |
| 6563 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6564 | } else { |
David Sterba | 93a3d46 | 2015-11-30 17:27:09 +0100 | [diff] [blame] | 6565 | printk(KERN_ERR |
| 6566 | "BTRFS: unexpected item type %u in sys_array at offset %u\n", |
| 6567 | (u32)key.type, cur_offset); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6568 | ret = -EIO; |
| 6569 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6570 | } |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6571 | array_ptr += len; |
| 6572 | sb_array_offset += len; |
| 6573 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6574 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6575 | free_extent_buffer(sb); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6576 | return ret; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6577 | |
| 6578 | out_short_read: |
| 6579 | printk(KERN_ERR "BTRFS: sys_array too short to read %u bytes at offset %u\n", |
| 6580 | len, cur_offset); |
| 6581 | free_extent_buffer(sb); |
| 6582 | return -EIO; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6583 | } |
| 6584 | |
| 6585 | int btrfs_read_chunk_tree(struct btrfs_root *root) |
| 6586 | { |
| 6587 | struct btrfs_path *path; |
| 6588 | struct extent_buffer *leaf; |
| 6589 | struct btrfs_key key; |
| 6590 | struct btrfs_key found_key; |
| 6591 | int ret; |
| 6592 | int slot; |
| 6593 | |
| 6594 | root = root->fs_info->chunk_root; |
| 6595 | |
| 6596 | path = btrfs_alloc_path(); |
| 6597 | if (!path) |
| 6598 | return -ENOMEM; |
| 6599 | |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6600 | mutex_lock(&uuid_mutex); |
| 6601 | lock_chunks(root); |
| 6602 | |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6603 | /* |
| 6604 | * Read all device items, and then all the chunk items. All |
| 6605 | * device items are found before any chunk item (their object id |
| 6606 | * is smaller than the lowest possible object id for a chunk |
| 6607 | * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID). |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6608 | */ |
| 6609 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 6610 | key.offset = 0; |
| 6611 | key.type = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6612 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Zhao Lei | ab59381 | 2010-03-25 12:34:49 +0000 | [diff] [blame] | 6613 | if (ret < 0) |
| 6614 | goto error; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6615 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6616 | leaf = path->nodes[0]; |
| 6617 | slot = path->slots[0]; |
| 6618 | if (slot >= btrfs_header_nritems(leaf)) { |
| 6619 | ret = btrfs_next_leaf(root, path); |
| 6620 | if (ret == 0) |
| 6621 | continue; |
| 6622 | if (ret < 0) |
| 6623 | goto error; |
| 6624 | break; |
| 6625 | } |
| 6626 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6627 | if (found_key.type == BTRFS_DEV_ITEM_KEY) { |
| 6628 | struct btrfs_dev_item *dev_item; |
| 6629 | dev_item = btrfs_item_ptr(leaf, slot, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6630 | struct btrfs_dev_item); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6631 | ret = read_one_dev(root, leaf, dev_item); |
| 6632 | if (ret) |
| 6633 | goto error; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6634 | } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 6635 | struct btrfs_chunk *chunk; |
| 6636 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
| 6637 | ret = read_one_chunk(root, &found_key, leaf, chunk); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6638 | if (ret) |
| 6639 | goto error; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6640 | } |
| 6641 | path->slots[0]++; |
| 6642 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6643 | ret = 0; |
| 6644 | error: |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6645 | unlock_chunks(root); |
| 6646 | mutex_unlock(&uuid_mutex); |
| 6647 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6648 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6649 | return ret; |
| 6650 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6651 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 6652 | void btrfs_init_devices_late(struct btrfs_fs_info *fs_info) |
| 6653 | { |
| 6654 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 6655 | struct btrfs_device *device; |
| 6656 | |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 6657 | while (fs_devices) { |
| 6658 | mutex_lock(&fs_devices->device_list_mutex); |
| 6659 | list_for_each_entry(device, &fs_devices->devices, dev_list) |
| 6660 | device->dev_root = fs_info->dev_root; |
| 6661 | mutex_unlock(&fs_devices->device_list_mutex); |
| 6662 | |
| 6663 | fs_devices = fs_devices->seed; |
| 6664 | } |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 6665 | } |
| 6666 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6667 | static void __btrfs_reset_dev_stats(struct btrfs_device *dev) |
| 6668 | { |
| 6669 | int i; |
| 6670 | |
| 6671 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 6672 | btrfs_dev_stat_reset(dev, i); |
| 6673 | } |
| 6674 | |
| 6675 | int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info) |
| 6676 | { |
| 6677 | struct btrfs_key key; |
| 6678 | struct btrfs_key found_key; |
| 6679 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 6680 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 6681 | struct extent_buffer *eb; |
| 6682 | int slot; |
| 6683 | int ret = 0; |
| 6684 | struct btrfs_device *device; |
| 6685 | struct btrfs_path *path = NULL; |
| 6686 | int i; |
| 6687 | |
| 6688 | path = btrfs_alloc_path(); |
| 6689 | if (!path) { |
| 6690 | ret = -ENOMEM; |
| 6691 | goto out; |
| 6692 | } |
| 6693 | |
| 6694 | mutex_lock(&fs_devices->device_list_mutex); |
| 6695 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
| 6696 | int item_size; |
| 6697 | struct btrfs_dev_stats_item *ptr; |
| 6698 | |
David Sterba | 242e295 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 6699 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 6700 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6701 | key.offset = device->devid; |
| 6702 | ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0); |
| 6703 | if (ret) { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6704 | __btrfs_reset_dev_stats(device); |
| 6705 | device->dev_stats_valid = 1; |
| 6706 | btrfs_release_path(path); |
| 6707 | continue; |
| 6708 | } |
| 6709 | slot = path->slots[0]; |
| 6710 | eb = path->nodes[0]; |
| 6711 | btrfs_item_key_to_cpu(eb, &found_key, slot); |
| 6712 | item_size = btrfs_item_size_nr(eb, slot); |
| 6713 | |
| 6714 | ptr = btrfs_item_ptr(eb, slot, |
| 6715 | struct btrfs_dev_stats_item); |
| 6716 | |
| 6717 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 6718 | if (item_size >= (1 + i) * sizeof(__le64)) |
| 6719 | btrfs_dev_stat_set(device, i, |
| 6720 | btrfs_dev_stats_value(eb, ptr, i)); |
| 6721 | else |
| 6722 | btrfs_dev_stat_reset(device, i); |
| 6723 | } |
| 6724 | |
| 6725 | device->dev_stats_valid = 1; |
| 6726 | btrfs_dev_stat_print_on_load(device); |
| 6727 | btrfs_release_path(path); |
| 6728 | } |
| 6729 | mutex_unlock(&fs_devices->device_list_mutex); |
| 6730 | |
| 6731 | out: |
| 6732 | btrfs_free_path(path); |
| 6733 | return ret < 0 ? ret : 0; |
| 6734 | } |
| 6735 | |
| 6736 | static int update_dev_stat_item(struct btrfs_trans_handle *trans, |
| 6737 | struct btrfs_root *dev_root, |
| 6738 | struct btrfs_device *device) |
| 6739 | { |
| 6740 | struct btrfs_path *path; |
| 6741 | struct btrfs_key key; |
| 6742 | struct extent_buffer *eb; |
| 6743 | struct btrfs_dev_stats_item *ptr; |
| 6744 | int ret; |
| 6745 | int i; |
| 6746 | |
David Sterba | 242e295 | 2016-01-25 17:51:31 +0100 | [diff] [blame] | 6747 | key.objectid = BTRFS_DEV_STATS_OBJECTID; |
| 6748 | key.type = BTRFS_PERSISTENT_ITEM_KEY; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6749 | key.offset = device->devid; |
| 6750 | |
| 6751 | path = btrfs_alloc_path(); |
| 6752 | BUG_ON(!path); |
| 6753 | ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1); |
| 6754 | if (ret < 0) { |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 6755 | btrfs_warn_in_rcu(dev_root->fs_info, |
| 6756 | "error %d while searching for dev_stats item for device %s", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 6757 | ret, rcu_str_deref(device->name)); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6758 | goto out; |
| 6759 | } |
| 6760 | |
| 6761 | if (ret == 0 && |
| 6762 | btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) { |
| 6763 | /* need to delete old one and insert a new one */ |
| 6764 | ret = btrfs_del_item(trans, dev_root, path); |
| 6765 | if (ret != 0) { |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 6766 | btrfs_warn_in_rcu(dev_root->fs_info, |
| 6767 | "delete too small dev_stats item for device %s failed %d", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 6768 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6769 | goto out; |
| 6770 | } |
| 6771 | ret = 1; |
| 6772 | } |
| 6773 | |
| 6774 | if (ret == 1) { |
| 6775 | /* need to insert a new item */ |
| 6776 | btrfs_release_path(path); |
| 6777 | ret = btrfs_insert_empty_item(trans, dev_root, path, |
| 6778 | &key, sizeof(*ptr)); |
| 6779 | if (ret < 0) { |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 6780 | btrfs_warn_in_rcu(dev_root->fs_info, |
| 6781 | "insert dev_stats item for device %s failed %d", |
| 6782 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6783 | goto out; |
| 6784 | } |
| 6785 | } |
| 6786 | |
| 6787 | eb = path->nodes[0]; |
| 6788 | ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item); |
| 6789 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 6790 | btrfs_set_dev_stats_value(eb, ptr, i, |
| 6791 | btrfs_dev_stat_read(device, i)); |
| 6792 | btrfs_mark_buffer_dirty(eb); |
| 6793 | |
| 6794 | out: |
| 6795 | btrfs_free_path(path); |
| 6796 | return ret; |
| 6797 | } |
| 6798 | |
| 6799 | /* |
| 6800 | * called from commit_transaction. Writes all changed device stats to disk. |
| 6801 | */ |
| 6802 | int btrfs_run_dev_stats(struct btrfs_trans_handle *trans, |
| 6803 | struct btrfs_fs_info *fs_info) |
| 6804 | { |
| 6805 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 6806 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 6807 | struct btrfs_device *device; |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 6808 | int stats_cnt; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6809 | int ret = 0; |
| 6810 | |
| 6811 | mutex_lock(&fs_devices->device_list_mutex); |
| 6812 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 6813 | if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device)) |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6814 | continue; |
| 6815 | |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 6816 | stats_cnt = atomic_read(&device->dev_stats_ccnt); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6817 | ret = update_dev_stat_item(trans, dev_root, device); |
| 6818 | if (!ret) |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 6819 | atomic_sub(stats_cnt, &device->dev_stats_ccnt); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6820 | } |
| 6821 | mutex_unlock(&fs_devices->device_list_mutex); |
| 6822 | |
| 6823 | return ret; |
| 6824 | } |
| 6825 | |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6826 | void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index) |
| 6827 | { |
| 6828 | btrfs_dev_stat_inc(dev, index); |
| 6829 | btrfs_dev_stat_print_on_error(dev); |
| 6830 | } |
| 6831 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 6832 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev) |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6833 | { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6834 | if (!dev->dev_stats_valid) |
| 6835 | return; |
David Sterba | b14af3b | 2015-10-08 10:43:10 +0200 | [diff] [blame] | 6836 | btrfs_err_rl_in_rcu(dev->dev_root->fs_info, |
| 6837 | "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] | 6838 | rcu_str_deref(dev->name), |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6839 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 6840 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 6841 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 6842 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 6843 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6844 | } |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 6845 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6846 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev) |
| 6847 | { |
Stefan Behrens | a98cdb8 | 2012-07-17 09:02:11 -0600 | [diff] [blame] | 6848 | int i; |
| 6849 | |
| 6850 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 6851 | if (btrfs_dev_stat_read(dev, i) != 0) |
| 6852 | break; |
| 6853 | if (i == BTRFS_DEV_STAT_VALUES_MAX) |
| 6854 | return; /* all values == 0, suppress message */ |
| 6855 | |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 6856 | btrfs_info_in_rcu(dev->dev_root->fs_info, |
| 6857 | "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] | 6858 | rcu_str_deref(dev->name), |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6859 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 6860 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 6861 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
| 6862 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 6863 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
| 6864 | } |
| 6865 | |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 6866 | int btrfs_get_dev_stats(struct btrfs_root *root, |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 6867 | struct btrfs_ioctl_get_dev_stats *stats) |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 6868 | { |
| 6869 | struct btrfs_device *dev; |
| 6870 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
| 6871 | int i; |
| 6872 | |
| 6873 | mutex_lock(&fs_devices->device_list_mutex); |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6874 | dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 6875 | mutex_unlock(&fs_devices->device_list_mutex); |
| 6876 | |
| 6877 | if (!dev) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 6878 | btrfs_warn(root->fs_info, "get dev_stats failed, device not found"); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 6879 | return -ENODEV; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6880 | } else if (!dev->dev_stats_valid) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 6881 | btrfs_warn(root->fs_info, "get dev_stats failed, not yet valid"); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6882 | return -ENODEV; |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 6883 | } else if (stats->flags & BTRFS_DEV_STATS_RESET) { |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 6884 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 6885 | if (stats->nr_items > i) |
| 6886 | stats->values[i] = |
| 6887 | btrfs_dev_stat_read_and_reset(dev, i); |
| 6888 | else |
| 6889 | btrfs_dev_stat_reset(dev, i); |
| 6890 | } |
| 6891 | } else { |
| 6892 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 6893 | if (stats->nr_items > i) |
| 6894 | stats->values[i] = btrfs_dev_stat_read(dev, i); |
| 6895 | } |
| 6896 | if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX) |
| 6897 | stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX; |
| 6898 | return 0; |
| 6899 | } |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 6900 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 6901 | void btrfs_scratch_superblocks(struct block_device *bdev, char *device_path) |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 6902 | { |
| 6903 | struct buffer_head *bh; |
| 6904 | struct btrfs_super_block *disk_super; |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 6905 | int copy_num; |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 6906 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 6907 | if (!bdev) |
| 6908 | return; |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 6909 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 6910 | for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX; |
| 6911 | copy_num++) { |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 6912 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 6913 | if (btrfs_read_dev_one_super(bdev, copy_num, &bh)) |
| 6914 | continue; |
| 6915 | |
| 6916 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 6917 | |
| 6918 | memset(&disk_super->magic, 0, sizeof(disk_super->magic)); |
| 6919 | set_buffer_dirty(bh); |
| 6920 | sync_dirty_buffer(bh); |
| 6921 | brelse(bh); |
| 6922 | } |
| 6923 | |
| 6924 | /* Notify udev that device has changed */ |
| 6925 | btrfs_kobject_uevent(bdev, KOBJ_CHANGE); |
| 6926 | |
| 6927 | /* Update ctime/mtime for device path for libblkid */ |
| 6928 | update_dev_time(device_path); |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 6929 | } |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 6930 | |
| 6931 | /* |
| 6932 | * Update the size of all devices, which is used for writing out the |
| 6933 | * super blocks. |
| 6934 | */ |
| 6935 | void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info) |
| 6936 | { |
| 6937 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 6938 | struct btrfs_device *curr, *next; |
| 6939 | |
| 6940 | if (list_empty(&fs_devices->resized_devices)) |
| 6941 | return; |
| 6942 | |
| 6943 | mutex_lock(&fs_devices->device_list_mutex); |
| 6944 | lock_chunks(fs_info->dev_root); |
| 6945 | list_for_each_entry_safe(curr, next, &fs_devices->resized_devices, |
| 6946 | resized_list) { |
| 6947 | list_del_init(&curr->resized_list); |
| 6948 | curr->commit_total_bytes = curr->disk_total_bytes; |
| 6949 | } |
| 6950 | unlock_chunks(fs_info->dev_root); |
| 6951 | mutex_unlock(&fs_devices->device_list_mutex); |
| 6952 | } |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 6953 | |
| 6954 | /* Must be invoked during the transaction commit */ |
| 6955 | void btrfs_update_commit_device_bytes_used(struct btrfs_root *root, |
| 6956 | struct btrfs_transaction *transaction) |
| 6957 | { |
| 6958 | struct extent_map *em; |
| 6959 | struct map_lookup *map; |
| 6960 | struct btrfs_device *dev; |
| 6961 | int i; |
| 6962 | |
| 6963 | if (list_empty(&transaction->pending_chunks)) |
| 6964 | return; |
| 6965 | |
| 6966 | /* In order to kick the device replace finish process */ |
| 6967 | lock_chunks(root); |
| 6968 | list_for_each_entry(em, &transaction->pending_chunks, list) { |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 6969 | map = em->map_lookup; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 6970 | |
| 6971 | for (i = 0; i < map->num_stripes; i++) { |
| 6972 | dev = map->stripes[i].dev; |
| 6973 | dev->commit_bytes_used = dev->bytes_used; |
| 6974 | } |
| 6975 | } |
| 6976 | unlock_chunks(root); |
| 6977 | } |
Anand Jain | 5a13f43 | 2015-03-10 06:38:31 +0800 | [diff] [blame] | 6978 | |
| 6979 | void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info) |
| 6980 | { |
| 6981 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 6982 | while (fs_devices) { |
| 6983 | fs_devices->fs_info = fs_info; |
| 6984 | fs_devices = fs_devices->seed; |
| 6985 | } |
| 6986 | } |
| 6987 | |
| 6988 | void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info) |
| 6989 | { |
| 6990 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 6991 | while (fs_devices) { |
| 6992 | fs_devices->fs_info = NULL; |
| 6993 | fs_devices = fs_devices->seed; |
| 6994 | } |
| 6995 | } |
Anand Jain | f190aa4 | 2015-08-14 18:33:05 +0800 | [diff] [blame] | 6996 | |
David Sterba | 87ad58c | 2015-11-27 18:49:39 +0100 | [diff] [blame] | 6997 | static void btrfs_close_one_device(struct btrfs_device *device) |
Anand Jain | f190aa4 | 2015-08-14 18:33:05 +0800 | [diff] [blame] | 6998 | { |
| 6999 | struct btrfs_fs_devices *fs_devices = device->fs_devices; |
| 7000 | struct btrfs_device *new_device; |
| 7001 | struct rcu_string *name; |
| 7002 | |
| 7003 | if (device->bdev) |
| 7004 | fs_devices->open_devices--; |
| 7005 | |
| 7006 | if (device->writeable && |
| 7007 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
| 7008 | list_del_init(&device->dev_alloc_list); |
| 7009 | fs_devices->rw_devices--; |
| 7010 | } |
| 7011 | |
| 7012 | if (device->missing) |
| 7013 | fs_devices->missing_devices--; |
| 7014 | |
| 7015 | new_device = btrfs_alloc_device(NULL, &device->devid, |
| 7016 | device->uuid); |
| 7017 | BUG_ON(IS_ERR(new_device)); /* -ENOMEM */ |
| 7018 | |
| 7019 | /* Safe because we are under uuid_mutex */ |
| 7020 | if (device->name) { |
| 7021 | name = rcu_string_strdup(device->name->str, GFP_NOFS); |
| 7022 | BUG_ON(!name); /* -ENOMEM */ |
| 7023 | rcu_assign_pointer(new_device->name, name); |
| 7024 | } |
| 7025 | |
| 7026 | list_replace_rcu(&device->dev_list, &new_device->dev_list); |
| 7027 | new_device->fs_devices = device->fs_devices; |
| 7028 | |
| 7029 | call_rcu(&device->rcu, free_device); |
| 7030 | } |