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 | |
| 111 | const u64 const btrfs_raid_group[BTRFS_NR_RAID_TYPES] = { |
| 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 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 121 | static int init_first_rw_device(struct btrfs_trans_handle *trans, |
| 122 | struct btrfs_root *root, |
| 123 | struct btrfs_device *device); |
| 124 | static int btrfs_relocate_sys_chunks(struct btrfs_root *root); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 125 | static void __btrfs_reset_dev_stats(struct btrfs_device *dev); |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 126 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 127 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 128 | |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 129 | DEFINE_MUTEX(uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 130 | static LIST_HEAD(fs_uuids); |
Anand Jain | c73eccf | 2015-03-10 06:38:30 +0800 | [diff] [blame] | 131 | struct list_head *btrfs_get_fs_uuids(void) |
| 132 | { |
| 133 | return &fs_uuids; |
| 134 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 135 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 136 | static struct btrfs_fs_devices *__alloc_fs_devices(void) |
| 137 | { |
| 138 | struct btrfs_fs_devices *fs_devs; |
| 139 | |
| 140 | fs_devs = kzalloc(sizeof(*fs_devs), GFP_NOFS); |
| 141 | if (!fs_devs) |
| 142 | return ERR_PTR(-ENOMEM); |
| 143 | |
| 144 | mutex_init(&fs_devs->device_list_mutex); |
| 145 | |
| 146 | INIT_LIST_HEAD(&fs_devs->devices); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 147 | INIT_LIST_HEAD(&fs_devs->resized_devices); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 148 | INIT_LIST_HEAD(&fs_devs->alloc_list); |
| 149 | INIT_LIST_HEAD(&fs_devs->list); |
| 150 | |
| 151 | return fs_devs; |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | * alloc_fs_devices - allocate struct btrfs_fs_devices |
| 156 | * @fsid: a pointer to UUID for this FS. If NULL a new UUID is |
| 157 | * generated. |
| 158 | * |
| 159 | * Return: a pointer to a new &struct btrfs_fs_devices on success; |
| 160 | * ERR_PTR() on error. Returned struct is not linked onto any lists and |
| 161 | * can be destroyed with kfree() right away. |
| 162 | */ |
| 163 | static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid) |
| 164 | { |
| 165 | struct btrfs_fs_devices *fs_devs; |
| 166 | |
| 167 | fs_devs = __alloc_fs_devices(); |
| 168 | if (IS_ERR(fs_devs)) |
| 169 | return fs_devs; |
| 170 | |
| 171 | if (fsid) |
| 172 | memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE); |
| 173 | else |
| 174 | generate_random_uuid(fs_devs->fsid); |
| 175 | |
| 176 | return fs_devs; |
| 177 | } |
| 178 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 179 | static void free_fs_devices(struct btrfs_fs_devices *fs_devices) |
| 180 | { |
| 181 | struct btrfs_device *device; |
| 182 | WARN_ON(fs_devices->opened); |
| 183 | while (!list_empty(&fs_devices->devices)) { |
| 184 | device = list_entry(fs_devices->devices.next, |
| 185 | struct btrfs_device, dev_list); |
| 186 | list_del(&device->dev_list); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 187 | rcu_string_free(device->name); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 188 | kfree(device); |
| 189 | } |
| 190 | kfree(fs_devices); |
| 191 | } |
| 192 | |
Lukas Czerner | b8b8ff5 | 2012-12-06 19:25:48 +0000 | [diff] [blame] | 193 | static void btrfs_kobject_uevent(struct block_device *bdev, |
| 194 | enum kobject_action action) |
| 195 | { |
| 196 | int ret; |
| 197 | |
| 198 | ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action); |
| 199 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 200 | pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n", |
Lukas Czerner | b8b8ff5 | 2012-12-06 19:25:48 +0000 | [diff] [blame] | 201 | action, |
| 202 | kobject_name(&disk_to_dev(bdev->bd_disk)->kobj), |
| 203 | &disk_to_dev(bdev->bd_disk)->kobj); |
| 204 | } |
| 205 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 206 | void btrfs_cleanup_fs_uuids(void) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 207 | { |
| 208 | struct btrfs_fs_devices *fs_devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 209 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 210 | while (!list_empty(&fs_uuids)) { |
| 211 | fs_devices = list_entry(fs_uuids.next, |
| 212 | struct btrfs_fs_devices, list); |
| 213 | list_del(&fs_devices->list); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 214 | free_fs_devices(fs_devices); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 215 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 216 | } |
| 217 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 218 | static struct btrfs_device *__alloc_device(void) |
| 219 | { |
| 220 | struct btrfs_device *dev; |
| 221 | |
| 222 | dev = kzalloc(sizeof(*dev), GFP_NOFS); |
| 223 | if (!dev) |
| 224 | return ERR_PTR(-ENOMEM); |
| 225 | |
| 226 | INIT_LIST_HEAD(&dev->dev_list); |
| 227 | INIT_LIST_HEAD(&dev->dev_alloc_list); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 228 | INIT_LIST_HEAD(&dev->resized_list); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 229 | |
| 230 | spin_lock_init(&dev->io_lock); |
| 231 | |
| 232 | spin_lock_init(&dev->reada_lock); |
| 233 | atomic_set(&dev->reada_in_flight, 0); |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 234 | atomic_set(&dev->dev_stats_ccnt, 0); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 235 | INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_WAIT); |
| 236 | INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_WAIT); |
| 237 | |
| 238 | return dev; |
| 239 | } |
| 240 | |
Chris Mason | a1b32a5 | 2008-09-05 16:09:51 -0400 | [diff] [blame] | 241 | static noinline struct btrfs_device *__find_device(struct list_head *head, |
| 242 | u64 devid, u8 *uuid) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 243 | { |
| 244 | struct btrfs_device *dev; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 245 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 246 | list_for_each_entry(dev, head, dev_list) { |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 247 | if (dev->devid == devid && |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 248 | (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 249 | return dev; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 250 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 251 | } |
| 252 | return NULL; |
| 253 | } |
| 254 | |
Chris Mason | a1b32a5 | 2008-09-05 16:09:51 -0400 | [diff] [blame] | 255 | static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 256 | { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 257 | struct btrfs_fs_devices *fs_devices; |
| 258 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 259 | list_for_each_entry(fs_devices, &fs_uuids, list) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 260 | if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0) |
| 261 | return fs_devices; |
| 262 | } |
| 263 | return NULL; |
| 264 | } |
| 265 | |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 266 | static int |
| 267 | btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder, |
| 268 | int flush, struct block_device **bdev, |
| 269 | struct buffer_head **bh) |
| 270 | { |
| 271 | int ret; |
| 272 | |
| 273 | *bdev = blkdev_get_by_path(device_path, flags, holder); |
| 274 | |
| 275 | if (IS_ERR(*bdev)) { |
| 276 | ret = PTR_ERR(*bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 277 | goto error; |
| 278 | } |
| 279 | |
| 280 | if (flush) |
| 281 | filemap_write_and_wait((*bdev)->bd_inode->i_mapping); |
| 282 | ret = set_blocksize(*bdev, 4096); |
| 283 | if (ret) { |
| 284 | blkdev_put(*bdev, flags); |
| 285 | goto error; |
| 286 | } |
| 287 | invalidate_bdev(*bdev); |
| 288 | *bh = btrfs_read_dev_super(*bdev); |
Anand Jain | 92fc03f | 2015-08-14 18:32:51 +0800 | [diff] [blame] | 289 | if (IS_ERR(*bh)) { |
| 290 | ret = PTR_ERR(*bh); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 291 | blkdev_put(*bdev, flags); |
| 292 | goto error; |
| 293 | } |
| 294 | |
| 295 | return 0; |
| 296 | |
| 297 | error: |
| 298 | *bdev = NULL; |
| 299 | *bh = NULL; |
| 300 | return ret; |
| 301 | } |
| 302 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 303 | static void requeue_list(struct btrfs_pending_bios *pending_bios, |
| 304 | struct bio *head, struct bio *tail) |
| 305 | { |
| 306 | |
| 307 | struct bio *old_head; |
| 308 | |
| 309 | old_head = pending_bios->head; |
| 310 | pending_bios->head = head; |
| 311 | if (pending_bios->tail) |
| 312 | tail->bi_next = old_head; |
| 313 | else |
| 314 | pending_bios->tail = tail; |
| 315 | } |
| 316 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 317 | /* |
| 318 | * we try to collect pending bios for a device so we don't get a large |
| 319 | * number of procs sending bios down to the same device. This greatly |
| 320 | * improves the schedulers ability to collect and merge the bios. |
| 321 | * |
| 322 | * But, it also turns into a long list of bios to process and that is sure |
| 323 | * to eventually make the worker thread block. The solution here is to |
| 324 | * make some progress and then put this work struct back at the end of |
| 325 | * the list if the block device is congested. This way, multiple devices |
| 326 | * can make progress from a single worker thread. |
| 327 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 328 | static noinline void run_scheduled_bios(struct btrfs_device *device) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 329 | { |
| 330 | struct bio *pending; |
| 331 | struct backing_dev_info *bdi; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 332 | struct btrfs_fs_info *fs_info; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 333 | struct btrfs_pending_bios *pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 334 | struct bio *tail; |
| 335 | struct bio *cur; |
| 336 | int again = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 337 | unsigned long num_run; |
Chris Mason | d644d8a | 2009-06-09 15:59:22 -0400 | [diff] [blame] | 338 | unsigned long batch_run = 0; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 339 | unsigned long limit; |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 340 | unsigned long last_waited = 0; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 341 | int force_reg = 0; |
Miao Xie | 0e58885 | 2011-08-05 09:32:37 +0000 | [diff] [blame] | 342 | int sync_pending = 0; |
Chris Mason | 211588a | 2011-04-19 20:12:40 -0400 | [diff] [blame] | 343 | struct blk_plug plug; |
| 344 | |
| 345 | /* |
| 346 | * this function runs all the bios we've collected for |
| 347 | * a particular device. We don't want to wander off to |
| 348 | * another device without first sending all of these down. |
| 349 | * So, setup a plug here and finish it off before we return |
| 350 | */ |
| 351 | blk_start_plug(&plug); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 352 | |
Chris Mason | bedf762 | 2009-04-03 10:32:58 -0400 | [diff] [blame] | 353 | bdi = blk_get_backing_dev_info(device->bdev); |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 354 | fs_info = device->dev_root->fs_info; |
| 355 | limit = btrfs_async_submit_limit(fs_info); |
| 356 | limit = limit * 2 / 3; |
| 357 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 358 | loop: |
| 359 | spin_lock(&device->io_lock); |
| 360 | |
Chris Mason | a683705 | 2009-02-04 09:19:41 -0500 | [diff] [blame] | 361 | loop_lock: |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 362 | num_run = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 363 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 364 | /* take all the bios off the list at once and process them |
| 365 | * later on (without the lock held). But, remember the |
| 366 | * tail and other pointers so the bios can be properly reinserted |
| 367 | * into the list if we hit congestion |
| 368 | */ |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 369 | if (!force_reg && device->pending_sync_bios.head) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 370 | pending_bios = &device->pending_sync_bios; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 371 | force_reg = 1; |
| 372 | } else { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 373 | pending_bios = &device->pending_bios; |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 374 | force_reg = 0; |
| 375 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 376 | |
| 377 | pending = pending_bios->head; |
| 378 | tail = pending_bios->tail; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 379 | WARN_ON(pending && !tail); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 380 | |
| 381 | /* |
| 382 | * if pending was null this time around, no bios need processing |
| 383 | * at all and we can stop. Otherwise it'll loop back up again |
| 384 | * and do an additional check so no bios are missed. |
| 385 | * |
| 386 | * device->running_pending is used to synchronize with the |
| 387 | * schedule_bio code. |
| 388 | */ |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 389 | if (device->pending_sync_bios.head == NULL && |
| 390 | device->pending_bios.head == NULL) { |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 391 | again = 0; |
| 392 | device->running_pending = 0; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 393 | } else { |
| 394 | again = 1; |
| 395 | device->running_pending = 1; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 396 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 397 | |
| 398 | pending_bios->head = NULL; |
| 399 | pending_bios->tail = NULL; |
| 400 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 401 | spin_unlock(&device->io_lock); |
| 402 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 403 | while (pending) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 404 | |
| 405 | rmb(); |
Chris Mason | d84275c | 2009-06-09 15:39:08 -0400 | [diff] [blame] | 406 | /* we want to work on both lists, but do more bios on the |
| 407 | * sync list than the regular list |
| 408 | */ |
| 409 | if ((num_run > 32 && |
| 410 | pending_bios != &device->pending_sync_bios && |
| 411 | device->pending_sync_bios.head) || |
| 412 | (num_run > 64 && pending_bios == &device->pending_sync_bios && |
| 413 | device->pending_bios.head)) { |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 414 | spin_lock(&device->io_lock); |
| 415 | requeue_list(pending_bios, pending, tail); |
| 416 | goto loop_lock; |
| 417 | } |
| 418 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 419 | cur = pending; |
| 420 | pending = pending->bi_next; |
| 421 | cur->bi_next = NULL; |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 422 | |
David Sterba | ee86395 | 2015-02-16 19:41:40 +0100 | [diff] [blame] | 423 | /* |
| 424 | * atomic_dec_return implies a barrier for waitqueue_active |
| 425 | */ |
Josef Bacik | 66657b3 | 2012-08-01 15:36:24 -0400 | [diff] [blame] | 426 | if (atomic_dec_return(&fs_info->nr_async_bios) < limit && |
Chris Mason | b64a285 | 2008-08-20 13:39:41 -0400 | [diff] [blame] | 427 | waitqueue_active(&fs_info->async_submit_wait)) |
| 428 | wake_up(&fs_info->async_submit_wait); |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 429 | |
Jens Axboe | dac5621 | 2015-04-17 16:23:59 -0600 | [diff] [blame] | 430 | BUG_ON(atomic_read(&cur->__bi_cnt) == 0); |
Chris Mason | d644d8a | 2009-06-09 15:59:22 -0400 | [diff] [blame] | 431 | |
Chris Mason | 2ab1ba6 | 2011-08-04 14:28:36 -0400 | [diff] [blame] | 432 | /* |
| 433 | * if we're doing the sync list, record that our |
| 434 | * plug has some sync requests on it |
| 435 | * |
| 436 | * If we're doing the regular list and there are |
| 437 | * sync requests sitting around, unplug before |
| 438 | * we add more |
| 439 | */ |
| 440 | if (pending_bios == &device->pending_sync_bios) { |
| 441 | sync_pending = 1; |
| 442 | } else if (sync_pending) { |
| 443 | blk_finish_plug(&plug); |
| 444 | blk_start_plug(&plug); |
| 445 | sync_pending = 0; |
| 446 | } |
| 447 | |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 448 | btrfsic_submit_bio(cur->bi_rw, cur); |
Chris Mason | 5ff7ba3 | 2010-03-15 10:21:30 -0400 | [diff] [blame] | 449 | num_run++; |
| 450 | batch_run++; |
David Sterba | 853d8ec | 2015-01-08 15:15:19 +0100 | [diff] [blame] | 451 | |
| 452 | cond_resched(); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 453 | |
| 454 | /* |
| 455 | * we made progress, there is more work to do and the bdi |
| 456 | * is now congested. Back off and let other work structs |
| 457 | * run instead |
| 458 | */ |
Chris Mason | 57fd5a5 | 2009-08-07 09:59:15 -0400 | [diff] [blame] | 459 | if (pending && bdi_write_congested(bdi) && batch_run > 8 && |
Chris Mason | 5f2cc08 | 2008-11-07 18:22:45 -0500 | [diff] [blame] | 460 | fs_info->fs_devices->open_devices > 1) { |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 461 | struct io_context *ioc; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 462 | |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 463 | ioc = current->io_context; |
| 464 | |
| 465 | /* |
| 466 | * the main goal here is that we don't want to |
| 467 | * block if we're going to be able to submit |
| 468 | * more requests without blocking. |
| 469 | * |
| 470 | * This code does two great things, it pokes into |
| 471 | * the elevator code from a filesystem _and_ |
| 472 | * it makes assumptions about how batching works. |
| 473 | */ |
| 474 | if (ioc && ioc->nr_batch_requests > 0 && |
| 475 | time_before(jiffies, ioc->last_waited + HZ/50UL) && |
| 476 | (last_waited == 0 || |
| 477 | ioc->last_waited == last_waited)) { |
| 478 | /* |
| 479 | * we want to go through our batch of |
| 480 | * requests and stop. So, we copy out |
| 481 | * the ioc->last_waited time and test |
| 482 | * against it before looping |
| 483 | */ |
| 484 | last_waited = ioc->last_waited; |
David Sterba | 853d8ec | 2015-01-08 15:15:19 +0100 | [diff] [blame] | 485 | cond_resched(); |
Chris Mason | b765ead | 2009-04-03 10:27:10 -0400 | [diff] [blame] | 486 | continue; |
| 487 | } |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 488 | spin_lock(&device->io_lock); |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 489 | requeue_list(pending_bios, pending, tail); |
Chris Mason | a683705 | 2009-02-04 09:19:41 -0500 | [diff] [blame] | 490 | device->running_pending = 1; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 491 | |
| 492 | spin_unlock(&device->io_lock); |
Qu Wenruo | a8c93d4e | 2014-02-28 10:46:08 +0800 | [diff] [blame] | 493 | btrfs_queue_work(fs_info->submit_workers, |
| 494 | &device->work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 495 | goto done; |
| 496 | } |
Chris Mason | d85c8a6f | 2011-12-15 15:38:41 -0500 | [diff] [blame] | 497 | /* unplug every 64 requests just for good measure */ |
| 498 | if (batch_run % 64 == 0) { |
| 499 | blk_finish_plug(&plug); |
| 500 | blk_start_plug(&plug); |
| 501 | sync_pending = 0; |
| 502 | } |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 503 | } |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 504 | |
Chris Mason | 5168408 | 2010-03-10 15:33:32 -0500 | [diff] [blame] | 505 | cond_resched(); |
| 506 | if (again) |
| 507 | goto loop; |
| 508 | |
| 509 | spin_lock(&device->io_lock); |
| 510 | if (device->pending_bios.head || device->pending_sync_bios.head) |
| 511 | goto loop_lock; |
| 512 | spin_unlock(&device->io_lock); |
| 513 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 514 | done: |
Chris Mason | 211588a | 2011-04-19 20:12:40 -0400 | [diff] [blame] | 515 | blk_finish_plug(&plug); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 516 | } |
| 517 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 518 | static void pending_bios_fn(struct btrfs_work *work) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 519 | { |
| 520 | struct btrfs_device *device; |
| 521 | |
| 522 | device = container_of(work, struct btrfs_device, work); |
| 523 | run_scheduled_bios(device); |
| 524 | } |
| 525 | |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 526 | |
| 527 | void btrfs_free_stale_device(struct btrfs_device *cur_dev) |
| 528 | { |
| 529 | struct btrfs_fs_devices *fs_devs; |
| 530 | struct btrfs_device *dev; |
| 531 | |
| 532 | if (!cur_dev->name) |
| 533 | return; |
| 534 | |
| 535 | list_for_each_entry(fs_devs, &fs_uuids, list) { |
| 536 | int del = 1; |
| 537 | |
| 538 | if (fs_devs->opened) |
| 539 | continue; |
| 540 | if (fs_devs->seeding) |
| 541 | continue; |
| 542 | |
| 543 | list_for_each_entry(dev, &fs_devs->devices, dev_list) { |
| 544 | |
| 545 | if (dev == cur_dev) |
| 546 | continue; |
| 547 | if (!dev->name) |
| 548 | continue; |
| 549 | |
| 550 | /* |
| 551 | * Todo: This won't be enough. What if the same device |
| 552 | * comes back (with new uuid and) with its mapper path? |
| 553 | * But for now, this does help as mostly an admin will |
| 554 | * either use mapper or non mapper path throughout. |
| 555 | */ |
| 556 | rcu_read_lock(); |
| 557 | del = strcmp(rcu_str_deref(dev->name), |
| 558 | rcu_str_deref(cur_dev->name)); |
| 559 | rcu_read_unlock(); |
| 560 | if (!del) |
| 561 | break; |
| 562 | } |
| 563 | |
| 564 | if (!del) { |
| 565 | /* delete the stale device */ |
| 566 | if (fs_devs->num_devices == 1) { |
| 567 | btrfs_sysfs_remove_fsid(fs_devs); |
| 568 | list_del(&fs_devs->list); |
| 569 | free_fs_devices(fs_devs); |
| 570 | } else { |
| 571 | fs_devs->num_devices--; |
| 572 | list_del(&dev->dev_list); |
| 573 | rcu_string_free(dev->name); |
| 574 | kfree(dev); |
| 575 | } |
| 576 | break; |
| 577 | } |
| 578 | } |
| 579 | } |
| 580 | |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 581 | /* |
| 582 | * Add new device to list of registered devices |
| 583 | * |
| 584 | * Returns: |
| 585 | * 1 - first time device is seen |
| 586 | * 0 - device already known |
| 587 | * < 0 - error |
| 588 | */ |
Chris Mason | a1b32a5 | 2008-09-05 16:09:51 -0400 | [diff] [blame] | 589 | static noinline int device_list_add(const char *path, |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 590 | struct btrfs_super_block *disk_super, |
| 591 | u64 devid, struct btrfs_fs_devices **fs_devices_ret) |
| 592 | { |
| 593 | struct btrfs_device *device; |
| 594 | struct btrfs_fs_devices *fs_devices; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 595 | struct rcu_string *name; |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 596 | int ret = 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 597 | u64 found_transid = btrfs_super_generation(disk_super); |
| 598 | |
| 599 | fs_devices = find_fsid(disk_super->fsid); |
| 600 | if (!fs_devices) { |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 601 | fs_devices = alloc_fs_devices(disk_super->fsid); |
| 602 | if (IS_ERR(fs_devices)) |
| 603 | return PTR_ERR(fs_devices); |
| 604 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 605 | list_add(&fs_devices->list, &fs_uuids); |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 606 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 607 | device = NULL; |
| 608 | } else { |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 609 | device = __find_device(&fs_devices->devices, devid, |
| 610 | disk_super->dev_item.uuid); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 611 | } |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 612 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 613 | if (!device) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 614 | if (fs_devices->opened) |
| 615 | return -EBUSY; |
| 616 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 617 | device = btrfs_alloc_device(NULL, &devid, |
| 618 | disk_super->dev_item.uuid); |
| 619 | if (IS_ERR(device)) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 620 | /* we can safely leave the fs_devices entry around */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 621 | return PTR_ERR(device); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 622 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 623 | |
| 624 | name = rcu_string_strdup(path, GFP_NOFS); |
| 625 | if (!name) { |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 626 | kfree(device); |
| 627 | return -ENOMEM; |
| 628 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 629 | rcu_assign_pointer(device->name, name); |
Arne Jansen | 90519d6 | 2011-05-23 14:30:00 +0200 | [diff] [blame] | 630 | |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 631 | mutex_lock(&fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 632 | list_add_rcu(&device->dev_list, &fs_devices->devices); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 633 | fs_devices->num_devices++; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 634 | mutex_unlock(&fs_devices->device_list_mutex); |
| 635 | |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 636 | ret = 1; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 637 | device->fs_devices = fs_devices; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 638 | } else if (!device->name || strcmp(device->name->str, path)) { |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 639 | /* |
| 640 | * When FS is already mounted. |
| 641 | * 1. If you are here and if the device->name is NULL that |
| 642 | * means this device was missing at time of FS mount. |
| 643 | * 2. If you are here and if the device->name is different |
| 644 | * from 'path' that means either |
| 645 | * a. The same device disappeared and reappeared with |
| 646 | * different name. or |
| 647 | * b. The missing-disk-which-was-replaced, has |
| 648 | * reappeared now. |
| 649 | * |
| 650 | * We must allow 1 and 2a above. But 2b would be a spurious |
| 651 | * and unintentional. |
| 652 | * |
| 653 | * Further in case of 1 and 2a above, the disk at 'path' |
| 654 | * would have missed some transaction when it was away and |
| 655 | * in case of 2a the stale bdev has to be updated as well. |
| 656 | * 2b must not be allowed at all time. |
| 657 | */ |
| 658 | |
| 659 | /* |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 660 | * For now, we do allow update to btrfs_fs_device through the |
| 661 | * btrfs dev scan cli after FS has been mounted. We're still |
| 662 | * tracking a problem where systems fail mount by subvolume id |
| 663 | * when we reject replacement on a mounted FS. |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 664 | */ |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 665 | if (!fs_devices->opened && found_transid < device->generation) { |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 666 | /* |
| 667 | * That is if the FS is _not_ mounted and if you |
| 668 | * are here, that means there is more than one |
| 669 | * disk with same uuid and devid.We keep the one |
| 670 | * with larger generation number or the last-in if |
| 671 | * generation are equal. |
| 672 | */ |
Chris Mason | 0f23ae7 | 2014-09-18 07:49:05 -0700 | [diff] [blame] | 673 | return -EEXIST; |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 674 | } |
Anand Jain | b96de00 | 2014-07-03 18:22:05 +0800 | [diff] [blame] | 675 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 676 | name = rcu_string_strdup(path, GFP_NOFS); |
TARUISI Hiroaki | 3a0524d | 2010-02-09 06:36:45 +0000 | [diff] [blame] | 677 | if (!name) |
| 678 | return -ENOMEM; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 679 | rcu_string_free(device->name); |
| 680 | rcu_assign_pointer(device->name, name); |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 681 | if (device->missing) { |
| 682 | fs_devices->missing_devices--; |
| 683 | device->missing = 0; |
| 684 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 685 | } |
| 686 | |
Anand Jain | 77bdae4 | 2014-07-03 18:22:06 +0800 | [diff] [blame] | 687 | /* |
| 688 | * Unmount does not free the btrfs_device struct but would zero |
| 689 | * generation along with most of the other members. So just update |
| 690 | * it back. We need it to pick the disk with largest generation |
| 691 | * (as above). |
| 692 | */ |
| 693 | if (!fs_devices->opened) |
| 694 | device->generation = found_transid; |
| 695 | |
Anand Jain | 4fde46f | 2015-06-17 21:10:48 +0800 | [diff] [blame] | 696 | /* |
| 697 | * if there is new btrfs on an already registered device, |
| 698 | * then remove the stale device entry. |
| 699 | */ |
| 700 | btrfs_free_stale_device(device); |
| 701 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 702 | *fs_devices_ret = fs_devices; |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 703 | |
| 704 | return ret; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 705 | } |
| 706 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 707 | static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig) |
| 708 | { |
| 709 | struct btrfs_fs_devices *fs_devices; |
| 710 | struct btrfs_device *device; |
| 711 | struct btrfs_device *orig_dev; |
| 712 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 713 | fs_devices = alloc_fs_devices(orig->fsid); |
| 714 | if (IS_ERR(fs_devices)) |
| 715 | return fs_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 716 | |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 717 | mutex_lock(&orig->device_list_mutex); |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 718 | fs_devices->total_devices = orig->total_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 719 | |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 720 | /* 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] | 721 | list_for_each_entry(orig_dev, &orig->devices, dev_list) { |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 722 | struct rcu_string *name; |
| 723 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 724 | device = btrfs_alloc_device(NULL, &orig_dev->devid, |
| 725 | orig_dev->uuid); |
| 726 | if (IS_ERR(device)) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 727 | goto error; |
| 728 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 729 | /* |
| 730 | * This is ok to do without rcu read locked because we hold the |
| 731 | * uuid mutex so nothing we touch in here is going to disappear. |
| 732 | */ |
Anand Jain | e755f78 | 2014-06-30 17:12:47 +0800 | [diff] [blame] | 733 | if (orig_dev->name) { |
| 734 | name = rcu_string_strdup(orig_dev->name->str, GFP_NOFS); |
| 735 | if (!name) { |
| 736 | kfree(device); |
| 737 | goto error; |
| 738 | } |
| 739 | rcu_assign_pointer(device->name, name); |
Julia Lawall | fd2696f | 2009-09-29 13:51:04 -0400 | [diff] [blame] | 740 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 741 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 742 | list_add(&device->dev_list, &fs_devices->devices); |
| 743 | device->fs_devices = fs_devices; |
| 744 | fs_devices->num_devices++; |
| 745 | } |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 746 | mutex_unlock(&orig->device_list_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 747 | return fs_devices; |
| 748 | error: |
Miao Xie | adbbb86 | 2014-09-03 21:35:42 +0800 | [diff] [blame] | 749 | mutex_unlock(&orig->device_list_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 750 | free_fs_devices(fs_devices); |
| 751 | return ERR_PTR(-ENOMEM); |
| 752 | } |
| 753 | |
Eric Sandeen | 9eaed21 | 2014-08-01 18:12:35 -0500 | [diff] [blame] | 754 | 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] | 755 | { |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 756 | struct btrfs_device *device, *next; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 757 | struct btrfs_device *latest_dev = NULL; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 758 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 759 | mutex_lock(&uuid_mutex); |
| 760 | again: |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 761 | /* This is the initialized path, it is safe to release the devices. */ |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 762 | list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) { |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 763 | if (device->in_fs_metadata) { |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 764 | if (!device->is_tgtdev_for_dev_replace && |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 765 | (!latest_dev || |
| 766 | device->generation > latest_dev->generation)) { |
| 767 | latest_dev = device; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 768 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 769 | continue; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 770 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 771 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 772 | if (device->devid == BTRFS_DEV_REPLACE_DEVID) { |
| 773 | /* |
| 774 | * In the first step, keep the device which has |
| 775 | * the correct fsid and the devid that is used |
| 776 | * for the dev_replace procedure. |
| 777 | * In the second step, the dev_replace state is |
| 778 | * read from the device tree and it is known |
| 779 | * whether the procedure is really active or |
| 780 | * not, which means whether this device is |
| 781 | * used or whether it should be removed. |
| 782 | */ |
| 783 | if (step == 0 || device->is_tgtdev_for_dev_replace) { |
| 784 | continue; |
| 785 | } |
| 786 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 787 | if (device->bdev) { |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 788 | blkdev_put(device->bdev, device->mode); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 789 | device->bdev = NULL; |
| 790 | fs_devices->open_devices--; |
| 791 | } |
| 792 | if (device->writeable) { |
| 793 | list_del_init(&device->dev_alloc_list); |
| 794 | device->writeable = 0; |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 795 | if (!device->is_tgtdev_for_dev_replace) |
| 796 | fs_devices->rw_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 797 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 798 | list_del_init(&device->dev_list); |
| 799 | fs_devices->num_devices--; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 800 | rcu_string_free(device->name); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 801 | kfree(device); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 802 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 803 | |
| 804 | if (fs_devices->seed) { |
| 805 | fs_devices = fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 806 | goto again; |
| 807 | } |
| 808 | |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 809 | fs_devices->latest_bdev = latest_dev->bdev; |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 810 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 811 | mutex_unlock(&uuid_mutex); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 812 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 813 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 814 | static void __free_device(struct work_struct *work) |
| 815 | { |
| 816 | struct btrfs_device *device; |
| 817 | |
| 818 | device = container_of(work, struct btrfs_device, rcu_work); |
| 819 | |
| 820 | if (device->bdev) |
| 821 | blkdev_put(device->bdev, device->mode); |
| 822 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 823 | rcu_string_free(device->name); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 824 | kfree(device); |
| 825 | } |
| 826 | |
| 827 | static void free_device(struct rcu_head *head) |
| 828 | { |
| 829 | struct btrfs_device *device; |
| 830 | |
| 831 | device = container_of(head, struct btrfs_device, rcu); |
| 832 | |
| 833 | INIT_WORK(&device->rcu_work, __free_device); |
| 834 | schedule_work(&device->rcu_work); |
| 835 | } |
| 836 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 837 | static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 838 | { |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 839 | struct btrfs_device *device, *tmp; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 840 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 841 | if (--fs_devices->opened > 0) |
| 842 | return 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 843 | |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 844 | mutex_lock(&fs_devices->device_list_mutex); |
Sasha Levin | 2037a09 | 2015-05-12 19:31:37 -0400 | [diff] [blame] | 845 | list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) { |
Anand Jain | f190aa4 | 2015-08-14 18:33:05 +0800 | [diff] [blame] | 846 | btrfs_close_one_device(device); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 847 | } |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 848 | mutex_unlock(&fs_devices->device_list_mutex); |
| 849 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 850 | WARN_ON(fs_devices->open_devices); |
| 851 | WARN_ON(fs_devices->rw_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 852 | fs_devices->opened = 0; |
| 853 | fs_devices->seeding = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 854 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 855 | return 0; |
| 856 | } |
| 857 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 858 | int btrfs_close_devices(struct btrfs_fs_devices *fs_devices) |
| 859 | { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 860 | struct btrfs_fs_devices *seed_devices = NULL; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 861 | int ret; |
| 862 | |
| 863 | mutex_lock(&uuid_mutex); |
| 864 | ret = __btrfs_close_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 865 | if (!fs_devices->opened) { |
| 866 | seed_devices = fs_devices->seed; |
| 867 | fs_devices->seed = NULL; |
| 868 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 869 | mutex_unlock(&uuid_mutex); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 870 | |
| 871 | while (seed_devices) { |
| 872 | fs_devices = seed_devices; |
| 873 | seed_devices = fs_devices->seed; |
| 874 | __btrfs_close_devices(fs_devices); |
| 875 | free_fs_devices(fs_devices); |
| 876 | } |
Eric Sandeen | bc17862 | 2013-03-09 15:18:39 +0000 | [diff] [blame] | 877 | /* |
| 878 | * Wait for rcu kworkers under __btrfs_close_devices |
| 879 | * to finish all blkdev_puts so device is really |
| 880 | * free when umount is done. |
| 881 | */ |
| 882 | rcu_barrier(); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 883 | return ret; |
| 884 | } |
| 885 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 886 | static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices, |
| 887 | fmode_t flags, void *holder) |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 888 | { |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 889 | struct request_queue *q; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 890 | struct block_device *bdev; |
| 891 | struct list_head *head = &fs_devices->devices; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 892 | struct btrfs_device *device; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 893 | struct btrfs_device *latest_dev = NULL; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 894 | struct buffer_head *bh; |
| 895 | struct btrfs_super_block *disk_super; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 896 | u64 devid; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 897 | int seeding = 1; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 898 | int ret = 0; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 899 | |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 900 | flags |= FMODE_EXCL; |
| 901 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 902 | list_for_each_entry(device, head, dev_list) { |
Chris Mason | c1c4d91 | 2008-05-08 15:05:58 -0400 | [diff] [blame] | 903 | if (device->bdev) |
| 904 | continue; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 905 | if (!device->name) |
| 906 | continue; |
| 907 | |
Eric Sandeen | f63e0cc | 2013-04-04 20:45:08 +0000 | [diff] [blame] | 908 | /* Just open everything we can; ignore failures here */ |
| 909 | if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1, |
| 910 | &bdev, &bh)) |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 911 | continue; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 912 | |
| 913 | disk_super = (struct btrfs_super_block *)bh->b_data; |
Xiao Guangrong | a343832 | 2010-01-06 11:48:18 +0000 | [diff] [blame] | 914 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 915 | if (devid != device->devid) |
| 916 | goto error_brelse; |
| 917 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 918 | if (memcmp(device->uuid, disk_super->dev_item.uuid, |
| 919 | BTRFS_UUID_SIZE)) |
| 920 | goto error_brelse; |
| 921 | |
| 922 | device->generation = btrfs_super_generation(disk_super); |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 923 | if (!latest_dev || |
| 924 | device->generation > latest_dev->generation) |
| 925 | latest_dev = device; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 926 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 927 | if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) { |
| 928 | device->writeable = 0; |
| 929 | } else { |
| 930 | device->writeable = !bdev_read_only(bdev); |
| 931 | seeding = 0; |
| 932 | } |
| 933 | |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 934 | q = bdev_get_queue(bdev); |
Miao Xie | 90180da | 2014-09-03 21:35:30 +0800 | [diff] [blame] | 935 | if (blk_queue_discard(q)) |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 936 | device->can_discard = 1; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 937 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 938 | device->bdev = bdev; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 939 | device->in_fs_metadata = 0; |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 940 | device->mode = flags; |
| 941 | |
Chris Mason | c289811 | 2009-06-10 09:51:32 -0400 | [diff] [blame] | 942 | if (!blk_queue_nonrot(bdev_get_queue(bdev))) |
| 943 | fs_devices->rotating = 1; |
| 944 | |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 945 | fs_devices->open_devices++; |
Ilya Dryomov | 55e50e4 | 2013-09-01 18:56:44 +0300 | [diff] [blame] | 946 | if (device->writeable && |
| 947 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 948 | fs_devices->rw_devices++; |
| 949 | list_add(&device->dev_alloc_list, |
| 950 | &fs_devices->alloc_list); |
| 951 | } |
Xiao Guangrong | 4f6c932 | 2011-04-20 10:06:40 +0000 | [diff] [blame] | 952 | brelse(bh); |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 953 | continue; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 954 | |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 955 | error_brelse: |
| 956 | brelse(bh); |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 957 | blkdev_put(bdev, flags); |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 958 | continue; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 959 | } |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 960 | if (fs_devices->open_devices == 0) { |
Ilya Dryomov | 20bcd64 | 2011-10-20 00:06:20 +0300 | [diff] [blame] | 961 | ret = -EINVAL; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 962 | goto out; |
| 963 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 964 | fs_devices->seeding = seeding; |
| 965 | fs_devices->opened = 1; |
Miao Xie | 443f24f | 2014-07-24 11:37:15 +0800 | [diff] [blame] | 966 | fs_devices->latest_bdev = latest_dev->bdev; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 967 | fs_devices->total_rw_bytes = 0; |
Chris Mason | a0af469 | 2008-05-13 16:03:06 -0400 | [diff] [blame] | 968 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 969 | return ret; |
| 970 | } |
| 971 | |
| 972 | int btrfs_open_devices(struct btrfs_fs_devices *fs_devices, |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 973 | fmode_t flags, void *holder) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 974 | { |
| 975 | int ret; |
| 976 | |
| 977 | mutex_lock(&uuid_mutex); |
| 978 | if (fs_devices->opened) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 979 | fs_devices->opened++; |
| 980 | ret = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 981 | } else { |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 982 | ret = __btrfs_open_devices(fs_devices, flags, holder); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 983 | } |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 984 | mutex_unlock(&uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 985 | return ret; |
| 986 | } |
| 987 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 988 | /* |
| 989 | * Look for a btrfs signature on a device. This may be called out of the mount path |
| 990 | * and we are not allowed to call set_blocksize during the scan. The superblock |
| 991 | * is read via pagecache |
| 992 | */ |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 993 | 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] | 994 | struct btrfs_fs_devices **fs_devices_ret) |
| 995 | { |
| 996 | struct btrfs_super_block *disk_super; |
| 997 | struct block_device *bdev; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 998 | struct page *page; |
| 999 | void *p; |
| 1000 | int ret = -EINVAL; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1001 | u64 devid; |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 1002 | u64 transid; |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1003 | u64 total_devices; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1004 | u64 bytenr; |
| 1005 | pgoff_t index; |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1006 | |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1007 | /* |
| 1008 | * we would like to check all the supers, but that would make |
| 1009 | * a btrfs mount succeed after a mkfs from a different FS. |
| 1010 | * So, we need to add a special mount option to scan for |
| 1011 | * later supers, using BTRFS_SUPER_MIRROR_MAX instead |
| 1012 | */ |
| 1013 | bytenr = btrfs_sb_offset(0); |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1014 | flags |= FMODE_EXCL; |
Al Viro | 10f6327 | 2011-11-17 15:05:22 -0500 | [diff] [blame] | 1015 | mutex_lock(&uuid_mutex); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1016 | |
| 1017 | bdev = blkdev_get_by_path(path, flags, holder); |
| 1018 | |
| 1019 | if (IS_ERR(bdev)) { |
| 1020 | ret = PTR_ERR(bdev); |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1021 | goto error; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1022 | } |
| 1023 | |
| 1024 | /* make sure our super fits in the device */ |
| 1025 | if (bytenr + PAGE_CACHE_SIZE >= i_size_read(bdev->bd_inode)) |
| 1026 | goto error_bdev_put; |
| 1027 | |
| 1028 | /* make sure our super fits in the page */ |
| 1029 | if (sizeof(*disk_super) > PAGE_CACHE_SIZE) |
| 1030 | goto error_bdev_put; |
| 1031 | |
| 1032 | /* make sure our super doesn't straddle pages on disk */ |
| 1033 | index = bytenr >> PAGE_CACHE_SHIFT; |
| 1034 | if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_CACHE_SHIFT != index) |
| 1035 | goto error_bdev_put; |
| 1036 | |
| 1037 | /* pull in the page with our super */ |
| 1038 | page = read_cache_page_gfp(bdev->bd_inode->i_mapping, |
| 1039 | index, GFP_NOFS); |
| 1040 | |
| 1041 | if (IS_ERR_OR_NULL(page)) |
| 1042 | goto error_bdev_put; |
| 1043 | |
| 1044 | p = kmap(page); |
| 1045 | |
| 1046 | /* align our pointer to the offset of the super block */ |
| 1047 | disk_super = p + (bytenr & ~PAGE_CACHE_MASK); |
| 1048 | |
| 1049 | if (btrfs_super_bytenr(disk_super) != bytenr || |
Qu Wenruo | 3cae210 | 2013-07-16 11:19:18 +0800 | [diff] [blame] | 1050 | btrfs_super_magic(disk_super) != BTRFS_MAGIC) |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1051 | goto error_unmap; |
| 1052 | |
Xiao Guangrong | a343832 | 2010-01-06 11:48:18 +0000 | [diff] [blame] | 1053 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 1054 | transid = btrfs_super_generation(disk_super); |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1055 | total_devices = btrfs_super_num_devices(disk_super); |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1056 | |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1057 | ret = device_list_add(path, disk_super, devid, fs_devices_ret); |
David Sterba | 60999ca | 2014-03-26 18:26:36 +0100 | [diff] [blame] | 1058 | if (ret > 0) { |
| 1059 | if (disk_super->label[0]) { |
| 1060 | if (disk_super->label[BTRFS_LABEL_SIZE - 1]) |
| 1061 | disk_super->label[BTRFS_LABEL_SIZE - 1] = '\0'; |
| 1062 | printk(KERN_INFO "BTRFS: device label %s ", disk_super->label); |
| 1063 | } else { |
| 1064 | printk(KERN_INFO "BTRFS: device fsid %pU ", disk_super->fsid); |
| 1065 | } |
| 1066 | |
| 1067 | printk(KERN_CONT "devid %llu transid %llu %s\n", devid, transid, path); |
| 1068 | ret = 0; |
| 1069 | } |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1070 | if (!ret && fs_devices_ret) |
| 1071 | (*fs_devices_ret)->total_devices = total_devices; |
David Sterba | 6f60cbd | 2013-02-15 11:31:02 -0700 | [diff] [blame] | 1072 | |
| 1073 | error_unmap: |
| 1074 | kunmap(page); |
| 1075 | page_cache_release(page); |
| 1076 | |
| 1077 | error_bdev_put: |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1078 | blkdev_put(bdev, flags); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1079 | error: |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1080 | mutex_unlock(&uuid_mutex); |
Chris Mason | 8a4b83c | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1081 | return ret; |
| 1082 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1083 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1084 | /* helper to account the used device space in the range */ |
| 1085 | int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start, |
| 1086 | u64 end, u64 *length) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1087 | { |
| 1088 | struct btrfs_key key; |
| 1089 | struct btrfs_root *root = device->dev_root; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1090 | struct btrfs_dev_extent *dev_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1091 | struct btrfs_path *path; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1092 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1093 | int ret; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1094 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1095 | struct extent_buffer *l; |
| 1096 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1097 | *length = 0; |
| 1098 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1099 | if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1100 | return 0; |
| 1101 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1102 | path = btrfs_alloc_path(); |
| 1103 | if (!path) |
| 1104 | return -ENOMEM; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1105 | path->reada = 2; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1106 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1107 | key.objectid = device->devid; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1108 | key.offset = start; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1109 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1110 | |
| 1111 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1112 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1113 | goto out; |
Yan Zheng | 1fcbac5 | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 1114 | if (ret > 0) { |
| 1115 | ret = btrfs_previous_item(root, path, key.objectid, key.type); |
| 1116 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1117 | goto out; |
Yan Zheng | 1fcbac5 | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 1118 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1119 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1120 | while (1) { |
| 1121 | l = path->nodes[0]; |
| 1122 | slot = path->slots[0]; |
| 1123 | if (slot >= btrfs_header_nritems(l)) { |
| 1124 | ret = btrfs_next_leaf(root, path); |
| 1125 | if (ret == 0) |
| 1126 | continue; |
| 1127 | if (ret < 0) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1128 | goto out; |
| 1129 | |
| 1130 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1131 | } |
| 1132 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1133 | |
| 1134 | if (key.objectid < device->devid) |
| 1135 | goto next; |
| 1136 | |
| 1137 | if (key.objectid > device->devid) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1138 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1139 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1140 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1141 | goto next; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1142 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1143 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 1144 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1145 | dev_extent); |
| 1146 | if (key.offset <= start && extent_end > end) { |
| 1147 | *length = end - start + 1; |
| 1148 | break; |
| 1149 | } else if (key.offset <= start && extent_end > start) |
| 1150 | *length += extent_end - start; |
| 1151 | else if (key.offset > start && extent_end <= end) |
| 1152 | *length += extent_end - key.offset; |
| 1153 | else if (key.offset > start && key.offset <= end) { |
| 1154 | *length += end - key.offset + 1; |
| 1155 | break; |
| 1156 | } else if (key.offset > end) |
| 1157 | break; |
| 1158 | |
| 1159 | next: |
| 1160 | path->slots[0]++; |
| 1161 | } |
| 1162 | ret = 0; |
| 1163 | out: |
| 1164 | btrfs_free_path(path); |
| 1165 | return ret; |
| 1166 | } |
| 1167 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1168 | static int contains_pending_extent(struct btrfs_transaction *transaction, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1169 | struct btrfs_device *device, |
| 1170 | u64 *start, u64 len) |
| 1171 | { |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1172 | struct btrfs_fs_info *fs_info = device->dev_root->fs_info; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1173 | struct extent_map *em; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1174 | struct list_head *search_list = &fs_info->pinned_chunks; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1175 | int ret = 0; |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1176 | u64 physical_start = *start; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1177 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1178 | if (transaction) |
| 1179 | search_list = &transaction->pending_chunks; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 1180 | again: |
| 1181 | list_for_each_entry(em, search_list, list) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1182 | struct map_lookup *map; |
| 1183 | int i; |
| 1184 | |
| 1185 | map = (struct map_lookup *)em->bdev; |
| 1186 | for (i = 0; i < map->num_stripes; i++) { |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1187 | u64 end; |
| 1188 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1189 | if (map->stripes[i].dev != device) |
| 1190 | continue; |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1191 | if (map->stripes[i].physical >= physical_start + len || |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1192 | map->stripes[i].physical + em->orig_block_len <= |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1193 | physical_start) |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1194 | continue; |
Filipe Manana | c152b63 | 2015-05-14 10:46:03 +0100 | [diff] [blame] | 1195 | /* |
| 1196 | * Make sure that while processing the pinned list we do |
| 1197 | * not override our *start with a lower value, because |
| 1198 | * we can have pinned chunks that fall within this |
| 1199 | * device hole and that have lower physical addresses |
| 1200 | * than the pending chunks we processed before. If we |
| 1201 | * do not take this special care we can end up getting |
| 1202 | * 2 pending chunks that start at the same physical |
| 1203 | * device offsets because the end offset of a pinned |
| 1204 | * chunk can be equal to the start offset of some |
| 1205 | * pending chunk. |
| 1206 | */ |
| 1207 | end = map->stripes[i].physical + em->orig_block_len; |
| 1208 | if (end > *start) { |
| 1209 | *start = end; |
| 1210 | ret = 1; |
| 1211 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1212 | } |
| 1213 | } |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1214 | if (search_list != &fs_info->pinned_chunks) { |
| 1215 | search_list = &fs_info->pinned_chunks; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 1216 | goto again; |
| 1217 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1218 | |
| 1219 | return ret; |
| 1220 | } |
| 1221 | |
| 1222 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1223 | /* |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1224 | * find_free_dev_extent_start - find free space in the specified device |
| 1225 | * @device: the device which we search the free space in |
| 1226 | * @num_bytes: the size of the free space that we need |
| 1227 | * @search_start: the position from which to begin the search |
| 1228 | * @start: store the start of the free space. |
| 1229 | * @len: the size of the free space. that we find, or the size |
| 1230 | * 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] | 1231 | * |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1232 | * this uses a pretty simple search, the expectation is that it is |
| 1233 | * called very infrequently and that a given device has a small number |
| 1234 | * of extents |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1235 | * |
| 1236 | * @start is used to store the start of the free space if we find. But if we |
| 1237 | * don't find suitable free space, it will be used to store the start position |
| 1238 | * of the max free space. |
| 1239 | * |
| 1240 | * @len is used to store the size of the free space that we find. |
| 1241 | * But if we don't find suitable free space, it is used to store the size of |
| 1242 | * the max free space. |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1243 | */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1244 | int find_free_dev_extent_start(struct btrfs_transaction *transaction, |
| 1245 | struct btrfs_device *device, u64 num_bytes, |
| 1246 | u64 search_start, u64 *start, u64 *len) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1247 | { |
| 1248 | struct btrfs_key key; |
| 1249 | struct btrfs_root *root = device->dev_root; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1250 | struct btrfs_dev_extent *dev_extent; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1251 | struct btrfs_path *path; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1252 | u64 hole_size; |
| 1253 | u64 max_hole_start; |
| 1254 | u64 max_hole_size; |
| 1255 | u64 extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1256 | u64 search_end = device->total_bytes; |
| 1257 | int ret; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1258 | int slot; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1259 | struct extent_buffer *l; |
| 1260 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1261 | path = btrfs_alloc_path(); |
| 1262 | if (!path) |
| 1263 | return -ENOMEM; |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1264 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1265 | max_hole_start = search_start; |
| 1266 | max_hole_size = 0; |
| 1267 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1268 | again: |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1269 | if (search_start >= search_end || device->is_tgtdev_for_dev_replace) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1270 | ret = -ENOSPC; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1271 | goto out; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1272 | } |
| 1273 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1274 | path->reada = 2; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1275 | path->search_commit_root = 1; |
| 1276 | path->skip_locking = 1; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1277 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1278 | key.objectid = device->devid; |
| 1279 | key.offset = search_start; |
| 1280 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1281 | |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 1282 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1283 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1284 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1285 | if (ret > 0) { |
| 1286 | ret = btrfs_previous_item(root, path, key.objectid, key.type); |
| 1287 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1288 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1289 | } |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1290 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1291 | while (1) { |
| 1292 | l = path->nodes[0]; |
| 1293 | slot = path->slots[0]; |
| 1294 | if (slot >= btrfs_header_nritems(l)) { |
| 1295 | ret = btrfs_next_leaf(root, path); |
| 1296 | if (ret == 0) |
| 1297 | continue; |
| 1298 | if (ret < 0) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1299 | goto out; |
| 1300 | |
| 1301 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1302 | } |
| 1303 | btrfs_item_key_to_cpu(l, &key, slot); |
| 1304 | |
| 1305 | if (key.objectid < device->devid) |
| 1306 | goto next; |
| 1307 | |
| 1308 | if (key.objectid > device->devid) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1309 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1310 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1311 | if (key.type != BTRFS_DEV_EXTENT_KEY) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1312 | goto next; |
| 1313 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1314 | if (key.offset > search_start) { |
| 1315 | hole_size = key.offset - search_start; |
| 1316 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1317 | /* |
| 1318 | * Have to check before we set max_hole_start, otherwise |
| 1319 | * we could end up sending back this offset anyway. |
| 1320 | */ |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1321 | if (contains_pending_extent(transaction, device, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1322 | &search_start, |
Forrest Liu | 1b98450 | 2015-02-09 17:30:47 +0800 | [diff] [blame] | 1323 | hole_size)) { |
| 1324 | if (key.offset >= search_start) { |
| 1325 | hole_size = key.offset - search_start; |
| 1326 | } else { |
| 1327 | WARN_ON_ONCE(1); |
| 1328 | hole_size = 0; |
| 1329 | } |
| 1330 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1331 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1332 | if (hole_size > max_hole_size) { |
| 1333 | max_hole_start = search_start; |
| 1334 | max_hole_size = hole_size; |
| 1335 | } |
| 1336 | |
| 1337 | /* |
| 1338 | * If this free space is greater than which we need, |
| 1339 | * it must be the max free space that we have found |
| 1340 | * until now, so max_hole_start must point to the start |
| 1341 | * of this free space and the length of this free space |
| 1342 | * is stored in max_hole_size. Thus, we return |
| 1343 | * max_hole_start and max_hole_size and go back to the |
| 1344 | * caller. |
| 1345 | */ |
| 1346 | if (hole_size >= num_bytes) { |
| 1347 | ret = 0; |
| 1348 | goto out; |
| 1349 | } |
| 1350 | } |
| 1351 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1352 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1353 | extent_end = key.offset + btrfs_dev_extent_length(l, |
| 1354 | dev_extent); |
| 1355 | if (extent_end > search_start) |
| 1356 | search_start = extent_end; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1357 | next: |
| 1358 | path->slots[0]++; |
| 1359 | cond_resched(); |
| 1360 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1361 | |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1362 | /* |
| 1363 | * At this point, search_start should be the end of |
| 1364 | * allocated dev extents, and when shrinking the device, |
| 1365 | * search_end may be smaller than search_start. |
| 1366 | */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1367 | if (search_end > search_start) { |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 1368 | hole_size = search_end - search_start; |
| 1369 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1370 | if (contains_pending_extent(transaction, device, &search_start, |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1371 | hole_size)) { |
| 1372 | btrfs_release_path(path); |
| 1373 | goto again; |
| 1374 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1375 | |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1376 | if (hole_size > max_hole_size) { |
| 1377 | max_hole_start = search_start; |
| 1378 | max_hole_size = hole_size; |
| 1379 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1380 | } |
| 1381 | |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1382 | /* See above. */ |
Zhao Lei | f2ab761 | 2015-02-16 18:52:17 +0800 | [diff] [blame] | 1383 | if (max_hole_size < num_bytes) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1384 | ret = -ENOSPC; |
| 1385 | else |
| 1386 | ret = 0; |
| 1387 | |
| 1388 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1389 | btrfs_free_path(path); |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1390 | *start = max_hole_start; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 1391 | if (len) |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 1392 | *len = max_hole_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1393 | return ret; |
| 1394 | } |
| 1395 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 1396 | int find_free_dev_extent(struct btrfs_trans_handle *trans, |
| 1397 | struct btrfs_device *device, u64 num_bytes, |
| 1398 | u64 *start, u64 *len) |
| 1399 | { |
| 1400 | struct btrfs_root *root = device->dev_root; |
| 1401 | u64 search_start; |
| 1402 | |
| 1403 | /* FIXME use last free of some kind */ |
| 1404 | |
| 1405 | /* |
| 1406 | * we don't want to overwrite the superblock on the drive, |
| 1407 | * so we make sure to start at an offset of at least 1MB |
| 1408 | */ |
| 1409 | search_start = max(root->fs_info->alloc_start, 1024ull * 1024); |
| 1410 | return find_free_dev_extent_start(trans->transaction, device, |
| 1411 | num_bytes, search_start, start, len); |
| 1412 | } |
| 1413 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1414 | static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1415 | struct btrfs_device *device, |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1416 | u64 start, u64 *dev_extent_len) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1417 | { |
| 1418 | int ret; |
| 1419 | struct btrfs_path *path; |
| 1420 | struct btrfs_root *root = device->dev_root; |
| 1421 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1422 | struct btrfs_key found_key; |
| 1423 | struct extent_buffer *leaf = NULL; |
| 1424 | struct btrfs_dev_extent *extent = NULL; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1425 | |
| 1426 | path = btrfs_alloc_path(); |
| 1427 | if (!path) |
| 1428 | return -ENOMEM; |
| 1429 | |
| 1430 | key.objectid = device->devid; |
| 1431 | key.offset = start; |
| 1432 | key.type = BTRFS_DEV_EXTENT_KEY; |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1433 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1434 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1435 | if (ret > 0) { |
| 1436 | ret = btrfs_previous_item(root, path, key.objectid, |
| 1437 | BTRFS_DEV_EXTENT_KEY); |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1438 | if (ret) |
| 1439 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1440 | leaf = path->nodes[0]; |
| 1441 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 1442 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1443 | struct btrfs_dev_extent); |
| 1444 | BUG_ON(found_key.offset > start || found_key.offset + |
| 1445 | btrfs_dev_extent_length(leaf, extent) < start); |
Miao Xie | 924cd8f | 2011-11-10 20:45:04 -0500 | [diff] [blame] | 1446 | key = found_key; |
| 1447 | btrfs_release_path(path); |
| 1448 | goto again; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1449 | } else if (ret == 0) { |
| 1450 | leaf = path->nodes[0]; |
| 1451 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1452 | struct btrfs_dev_extent); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1453 | } else { |
Anand Jain | a4553fe | 2015-09-25 14:43:01 +0800 | [diff] [blame] | 1454 | btrfs_std_error(root->fs_info, ret, "Slot search failed"); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1455 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1456 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1457 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 1458 | *dev_extent_len = btrfs_dev_extent_length(leaf, extent); |
| 1459 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1460 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1461 | if (ret) { |
Anand Jain | a4553fe | 2015-09-25 14:43:01 +0800 | [diff] [blame] | 1462 | btrfs_std_error(root->fs_info, ret, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1463 | "Failed to remove dev extent item"); |
Zhao Lei | 13212b5 | 2015-02-12 14:18:17 +0800 | [diff] [blame] | 1464 | } else { |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 1465 | set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1466 | } |
Tsutomu Itoh | b0b802d | 2011-05-19 07:03:42 +0000 | [diff] [blame] | 1467 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1468 | btrfs_free_path(path); |
| 1469 | return ret; |
| 1470 | } |
| 1471 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1472 | static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans, |
| 1473 | struct btrfs_device *device, |
| 1474 | u64 chunk_tree, u64 chunk_objectid, |
| 1475 | u64 chunk_offset, u64 start, u64 num_bytes) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1476 | { |
| 1477 | int ret; |
| 1478 | struct btrfs_path *path; |
| 1479 | struct btrfs_root *root = device->dev_root; |
| 1480 | struct btrfs_dev_extent *extent; |
| 1481 | struct extent_buffer *leaf; |
| 1482 | struct btrfs_key key; |
| 1483 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1484 | WARN_ON(!device->in_fs_metadata); |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1485 | WARN_ON(device->is_tgtdev_for_dev_replace); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1486 | path = btrfs_alloc_path(); |
| 1487 | if (!path) |
| 1488 | return -ENOMEM; |
| 1489 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1490 | key.objectid = device->devid; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1491 | key.offset = start; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1492 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 1493 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1494 | sizeof(*extent)); |
Mark Fasheh | 2cdcecb | 2011-09-08 17:14:32 -0700 | [diff] [blame] | 1495 | if (ret) |
| 1496 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1497 | |
| 1498 | leaf = path->nodes[0]; |
| 1499 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 1500 | struct btrfs_dev_extent); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1501 | btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree); |
| 1502 | btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid); |
| 1503 | btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset); |
| 1504 | |
| 1505 | write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid, |
Geert Uytterhoeven | 231e88f | 2013-08-20 13:20:13 +0200 | [diff] [blame] | 1506 | btrfs_dev_extent_chunk_tree_uuid(extent), BTRFS_UUID_SIZE); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1507 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1508 | btrfs_set_dev_extent_length(leaf, extent, num_bytes); |
| 1509 | btrfs_mark_buffer_dirty(leaf); |
Mark Fasheh | 2cdcecb | 2011-09-08 17:14:32 -0700 | [diff] [blame] | 1510 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1511 | btrfs_free_path(path); |
| 1512 | return ret; |
| 1513 | } |
| 1514 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1515 | static u64 find_next_chunk(struct btrfs_fs_info *fs_info) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1516 | { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1517 | struct extent_map_tree *em_tree; |
| 1518 | struct extent_map *em; |
| 1519 | struct rb_node *n; |
| 1520 | u64 ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1521 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1522 | em_tree = &fs_info->mapping_tree.map_tree; |
| 1523 | read_lock(&em_tree->lock); |
| 1524 | n = rb_last(&em_tree->map); |
| 1525 | if (n) { |
| 1526 | em = rb_entry(n, struct extent_map, rb_node); |
| 1527 | ret = em->start + em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1528 | } |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 1529 | read_unlock(&em_tree->lock); |
| 1530 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1531 | return ret; |
| 1532 | } |
| 1533 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1534 | static noinline int find_next_devid(struct btrfs_fs_info *fs_info, |
| 1535 | u64 *devid_ret) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1536 | { |
| 1537 | int ret; |
| 1538 | struct btrfs_key key; |
| 1539 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1540 | struct btrfs_path *path; |
| 1541 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1542 | path = btrfs_alloc_path(); |
| 1543 | if (!path) |
| 1544 | return -ENOMEM; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1545 | |
| 1546 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1547 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1548 | key.offset = (u64)-1; |
| 1549 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1550 | 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] | 1551 | if (ret < 0) |
| 1552 | goto error; |
| 1553 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1554 | BUG_ON(ret == 0); /* Corruption */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1555 | |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1556 | ret = btrfs_previous_item(fs_info->chunk_root, path, |
| 1557 | BTRFS_DEV_ITEMS_OBJECTID, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1558 | BTRFS_DEV_ITEM_KEY); |
| 1559 | if (ret) { |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1560 | *devid_ret = 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1561 | } else { |
| 1562 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 1563 | path->slots[0]); |
Ilya Dryomov | 53f1065 | 2013-08-12 14:33:01 +0300 | [diff] [blame] | 1564 | *devid_ret = found_key.offset + 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1565 | } |
| 1566 | ret = 0; |
| 1567 | error: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1568 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1569 | return ret; |
| 1570 | } |
| 1571 | |
| 1572 | /* |
| 1573 | * the device information is stored in the chunk root |
| 1574 | * the btrfs_device struct should be fully filled in |
| 1575 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1576 | static int btrfs_add_device(struct btrfs_trans_handle *trans, |
| 1577 | struct btrfs_root *root, |
| 1578 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1579 | { |
| 1580 | int ret; |
| 1581 | struct btrfs_path *path; |
| 1582 | struct btrfs_dev_item *dev_item; |
| 1583 | struct extent_buffer *leaf; |
| 1584 | struct btrfs_key key; |
| 1585 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1586 | |
| 1587 | root = root->fs_info->chunk_root; |
| 1588 | |
| 1589 | path = btrfs_alloc_path(); |
| 1590 | if (!path) |
| 1591 | return -ENOMEM; |
| 1592 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1593 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1594 | key.type = BTRFS_DEV_ITEM_KEY; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1595 | key.offset = device->devid; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1596 | |
| 1597 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1598 | sizeof(*dev_item)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1599 | if (ret) |
| 1600 | goto out; |
| 1601 | |
| 1602 | leaf = path->nodes[0]; |
| 1603 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 1604 | |
| 1605 | btrfs_set_device_id(leaf, dev_item, device->devid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1606 | btrfs_set_device_generation(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1607 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 1608 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 1609 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 1610 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 1611 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 1612 | btrfs_device_get_disk_total_bytes(device)); |
| 1613 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 1614 | btrfs_device_get_bytes_used(device)); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1615 | btrfs_set_device_group(leaf, dev_item, 0); |
| 1616 | btrfs_set_device_seek_speed(leaf, dev_item, 0); |
| 1617 | btrfs_set_device_bandwidth(leaf, dev_item, 0); |
Chris Mason | c3027eb | 2008-12-08 16:40:21 -0500 | [diff] [blame] | 1618 | btrfs_set_device_start_offset(leaf, dev_item, 0); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1619 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 1620 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 1621 | write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 1622 | ptr = btrfs_device_fsid(dev_item); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1623 | write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1624 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1625 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1626 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1627 | out: |
| 1628 | btrfs_free_path(path); |
| 1629 | return ret; |
| 1630 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1631 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1632 | /* |
| 1633 | * Function to update ctime/mtime for a given device path. |
| 1634 | * Mainly used for ctime/mtime based probe like libblkid. |
| 1635 | */ |
| 1636 | static void update_dev_time(char *path_name) |
| 1637 | { |
| 1638 | struct file *filp; |
| 1639 | |
| 1640 | filp = filp_open(path_name, O_RDWR, 0); |
Al Viro | 98af592 | 2014-12-14 02:59:17 -0500 | [diff] [blame] | 1641 | if (IS_ERR(filp)) |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1642 | return; |
| 1643 | file_update_time(filp); |
| 1644 | filp_close(filp, NULL); |
| 1645 | return; |
| 1646 | } |
| 1647 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1648 | static int btrfs_rm_dev_item(struct btrfs_root *root, |
| 1649 | struct btrfs_device *device) |
| 1650 | { |
| 1651 | int ret; |
| 1652 | struct btrfs_path *path; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1653 | struct btrfs_key key; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1654 | struct btrfs_trans_handle *trans; |
| 1655 | |
| 1656 | root = root->fs_info->chunk_root; |
| 1657 | |
| 1658 | path = btrfs_alloc_path(); |
| 1659 | if (!path) |
| 1660 | return -ENOMEM; |
| 1661 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 1662 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 1663 | if (IS_ERR(trans)) { |
| 1664 | btrfs_free_path(path); |
| 1665 | return PTR_ERR(trans); |
| 1666 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1667 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 1668 | key.type = BTRFS_DEV_ITEM_KEY; |
| 1669 | key.offset = device->devid; |
| 1670 | |
| 1671 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1672 | if (ret < 0) |
| 1673 | goto out; |
| 1674 | |
| 1675 | if (ret > 0) { |
| 1676 | ret = -ENOENT; |
| 1677 | goto out; |
| 1678 | } |
| 1679 | |
| 1680 | ret = btrfs_del_item(trans, root, path); |
| 1681 | if (ret) |
| 1682 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1683 | out: |
| 1684 | btrfs_free_path(path); |
| 1685 | btrfs_commit_transaction(trans, root); |
| 1686 | return ret; |
| 1687 | } |
| 1688 | |
| 1689 | int btrfs_rm_device(struct btrfs_root *root, char *device_path) |
| 1690 | { |
| 1691 | struct btrfs_device *device; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1692 | struct btrfs_device *next_device; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1693 | struct block_device *bdev; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1694 | struct buffer_head *bh = NULL; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1695 | struct btrfs_super_block *disk_super; |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1696 | struct btrfs_fs_devices *cur_devices; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1697 | u64 all_avail; |
| 1698 | u64 devid; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1699 | u64 num_devices; |
| 1700 | u8 *dev_uuid; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1701 | unsigned seq; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1702 | int ret = 0; |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1703 | bool clear_super = false; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1704 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1705 | mutex_lock(&uuid_mutex); |
| 1706 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 1707 | do { |
| 1708 | seq = read_seqbegin(&root->fs_info->profiles_lock); |
| 1709 | |
| 1710 | all_avail = root->fs_info->avail_data_alloc_bits | |
| 1711 | root->fs_info->avail_system_alloc_bits | |
| 1712 | root->fs_info->avail_metadata_alloc_bits; |
| 1713 | } while (read_seqretry(&root->fs_info->profiles_lock, seq)); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1714 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 1715 | num_devices = root->fs_info->fs_devices->num_devices; |
| 1716 | btrfs_dev_replace_lock(&root->fs_info->dev_replace); |
| 1717 | if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) { |
| 1718 | WARN_ON(num_devices < 1); |
| 1719 | num_devices--; |
| 1720 | } |
| 1721 | btrfs_dev_replace_unlock(&root->fs_info->dev_replace); |
| 1722 | |
| 1723 | if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) && num_devices <= 4) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1724 | ret = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1725 | goto out; |
| 1726 | } |
| 1727 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 1728 | if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) && num_devices <= 2) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1729 | ret = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1730 | goto out; |
| 1731 | } |
| 1732 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1733 | if ((all_avail & BTRFS_BLOCK_GROUP_RAID5) && |
| 1734 | root->fs_info->fs_devices->rw_devices <= 2) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1735 | ret = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1736 | goto out; |
| 1737 | } |
| 1738 | if ((all_avail & BTRFS_BLOCK_GROUP_RAID6) && |
| 1739 | root->fs_info->fs_devices->rw_devices <= 3) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1740 | ret = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1741 | goto out; |
| 1742 | } |
| 1743 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1744 | if (strcmp(device_path, "missing") == 0) { |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1745 | struct list_head *devices; |
| 1746 | struct btrfs_device *tmp; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1747 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1748 | device = NULL; |
| 1749 | devices = &root->fs_info->fs_devices->devices; |
Xiao Guangrong | 4622470 | 2011-04-20 10:08:47 +0000 | [diff] [blame] | 1750 | /* |
| 1751 | * It is safe to read the devices since the volume_mutex |
| 1752 | * is held. |
| 1753 | */ |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 1754 | list_for_each_entry(tmp, devices, dev_list) { |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1755 | if (tmp->in_fs_metadata && |
| 1756 | !tmp->is_tgtdev_for_dev_replace && |
| 1757 | !tmp->bdev) { |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1758 | device = tmp; |
| 1759 | break; |
| 1760 | } |
| 1761 | } |
| 1762 | bdev = NULL; |
| 1763 | bh = NULL; |
| 1764 | disk_super = NULL; |
| 1765 | if (!device) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1766 | ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1767 | goto out; |
| 1768 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1769 | } else { |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1770 | ret = btrfs_get_bdev_and_sb(device_path, |
Lukas Czerner | cc975eb | 2012-12-07 10:09:19 +0000 | [diff] [blame] | 1771 | FMODE_WRITE | FMODE_EXCL, |
Stefan Behrens | beaf8ab | 2012-11-12 14:03:45 +0100 | [diff] [blame] | 1772 | root->fs_info->bdev_holder, 0, |
| 1773 | &bdev, &bh); |
| 1774 | if (ret) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1775 | goto out; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1776 | disk_super = (struct btrfs_super_block *)bh->b_data; |
Xiao Guangrong | a343832 | 2010-01-06 11:48:18 +0000 | [diff] [blame] | 1777 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1778 | dev_uuid = disk_super->dev_item.uuid; |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 1779 | device = btrfs_find_device(root->fs_info, devid, dev_uuid, |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1780 | disk_super->fsid); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1781 | if (!device) { |
| 1782 | ret = -ENOENT; |
| 1783 | goto error_brelse; |
| 1784 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1785 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1786 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1787 | if (device->is_tgtdev_for_dev_replace) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1788 | ret = BTRFS_ERROR_DEV_TGT_REPLACE; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1789 | goto error_brelse; |
| 1790 | } |
| 1791 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1792 | if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) { |
Anand Jain | 183860f | 2013-05-17 10:52:45 +0000 | [diff] [blame] | 1793 | ret = BTRFS_ERROR_DEV_ONLY_WRITABLE; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1794 | goto error_brelse; |
| 1795 | } |
| 1796 | |
| 1797 | if (device->writeable) { |
Xiao Guangrong | 0c1daee | 2011-04-20 10:08:16 +0000 | [diff] [blame] | 1798 | lock_chunks(root); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1799 | list_del_init(&device->dev_alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 1800 | device->fs_devices->rw_devices--; |
Xiao Guangrong | 0c1daee | 2011-04-20 10:08:16 +0000 | [diff] [blame] | 1801 | unlock_chunks(root); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1802 | clear_super = true; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1803 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1804 | |
Carey Underwood | d790155 | 2013-03-04 16:37:06 -0600 | [diff] [blame] | 1805 | mutex_unlock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1806 | ret = btrfs_shrink_device(device, 0); |
Carey Underwood | d790155 | 2013-03-04 16:37:06 -0600 | [diff] [blame] | 1807 | mutex_lock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1808 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1809 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1810 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 1811 | /* |
| 1812 | * TODO: the superblock still includes this device in its num_devices |
| 1813 | * counter although write_all_supers() is not locked out. This |
| 1814 | * could give a filesystem state which requires a degraded mount. |
| 1815 | */ |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1816 | ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device); |
| 1817 | if (ret) |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1818 | goto error_undo; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1819 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1820 | device->in_fs_metadata = 0; |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 1821 | btrfs_scrub_cancel_dev(root->fs_info, device); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1822 | |
| 1823 | /* |
| 1824 | * the device list mutex makes sure that we don't change |
| 1825 | * the device list while someone else is writing out all |
Filipe David Borba Manana | d730680 | 2013-08-09 15:41:36 +0100 | [diff] [blame] | 1826 | * the device supers. Whoever is writing all supers, should |
| 1827 | * lock the device list mutex before getting the number of |
| 1828 | * devices in the super block (super_copy). Conversely, |
| 1829 | * whoever updates the number of devices in the super block |
| 1830 | * (super_copy) should hold the device list mutex. |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1831 | */ |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1832 | |
| 1833 | cur_devices = device->fs_devices; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1834 | mutex_lock(&root->fs_info->fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1835 | list_del_rcu(&device->dev_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 1836 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1837 | device->fs_devices->num_devices--; |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 1838 | device->fs_devices->total_devices--; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1839 | |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 1840 | if (device->missing) |
Miao Xie | 3a7d55c | 2014-07-16 18:38:01 +0800 | [diff] [blame] | 1841 | device->fs_devices->missing_devices--; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 1842 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1843 | next_device = list_entry(root->fs_info->fs_devices->devices.next, |
| 1844 | struct btrfs_device, dev_list); |
| 1845 | if (device->bdev == root->fs_info->sb->s_bdev) |
| 1846 | root->fs_info->sb->s_bdev = next_device->bdev; |
| 1847 | if (device->bdev == root->fs_info->fs_devices->latest_bdev) |
| 1848 | root->fs_info->fs_devices->latest_bdev = next_device->bdev; |
| 1849 | |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 1850 | if (device->bdev) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1851 | device->fs_devices->open_devices--; |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 1852 | /* remove sysfs entry */ |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 1853 | btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device); |
Eric Sandeen | 0bfaa9c | 2014-07-07 12:34:49 -0500 | [diff] [blame] | 1854 | } |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 1855 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1856 | call_rcu(&device->rcu, free_device); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1857 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 1858 | num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1; |
| 1859 | 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] | 1860 | mutex_unlock(&root->fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1861 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1862 | if (cur_devices->open_devices == 0) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1863 | struct btrfs_fs_devices *fs_devices; |
| 1864 | fs_devices = root->fs_info->fs_devices; |
| 1865 | while (fs_devices) { |
Rickard Strandqvist | 8321cf2 | 2014-05-22 22:43:43 +0200 | [diff] [blame] | 1866 | if (fs_devices->seed == cur_devices) { |
| 1867 | fs_devices->seed = cur_devices->seed; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1868 | break; |
Rickard Strandqvist | 8321cf2 | 2014-05-22 22:43:43 +0200 | [diff] [blame] | 1869 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 1870 | fs_devices = fs_devices->seed; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1871 | } |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1872 | cur_devices->seed = NULL; |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1873 | __btrfs_close_devices(cur_devices); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1874 | free_fs_devices(cur_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1875 | } |
| 1876 | |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 1877 | root->fs_info->num_tolerated_disk_barrier_failures = |
| 1878 | btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info); |
| 1879 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 1880 | /* |
| 1881 | * at this point, the device is zero sized. We want to |
| 1882 | * remove it from the devices list and zero out the old super |
| 1883 | */ |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 1884 | if (clear_super && disk_super) { |
Anand Jain | 4d90d28 | 2014-04-06 12:59:07 +0800 | [diff] [blame] | 1885 | u64 bytenr; |
| 1886 | int i; |
| 1887 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1888 | /* make sure this device isn't detected as part of |
| 1889 | * the FS anymore |
| 1890 | */ |
| 1891 | memset(&disk_super->magic, 0, sizeof(disk_super->magic)); |
| 1892 | set_buffer_dirty(bh); |
| 1893 | sync_dirty_buffer(bh); |
Anand Jain | 4d90d28 | 2014-04-06 12:59:07 +0800 | [diff] [blame] | 1894 | |
| 1895 | /* clear the mirror copies of super block on the disk |
| 1896 | * being removed, 0th copy is been taken care above and |
| 1897 | * the below would take of the rest |
| 1898 | */ |
| 1899 | for (i = 1; i < BTRFS_SUPER_MIRROR_MAX; i++) { |
| 1900 | bytenr = btrfs_sb_offset(i); |
| 1901 | if (bytenr + BTRFS_SUPER_INFO_SIZE >= |
| 1902 | i_size_read(bdev->bd_inode)) |
| 1903 | break; |
| 1904 | |
| 1905 | brelse(bh); |
| 1906 | bh = __bread(bdev, bytenr / 4096, |
| 1907 | BTRFS_SUPER_INFO_SIZE); |
| 1908 | if (!bh) |
| 1909 | continue; |
| 1910 | |
| 1911 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 1912 | |
| 1913 | if (btrfs_super_bytenr(disk_super) != bytenr || |
| 1914 | btrfs_super_magic(disk_super) != BTRFS_MAGIC) { |
| 1915 | continue; |
| 1916 | } |
| 1917 | memset(&disk_super->magic, 0, |
| 1918 | sizeof(disk_super->magic)); |
| 1919 | set_buffer_dirty(bh); |
| 1920 | sync_dirty_buffer(bh); |
| 1921 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1922 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1923 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1924 | ret = 0; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1925 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1926 | if (bdev) { |
| 1927 | /* Notify udev that device has changed */ |
Eric Sandeen | 3c91160 | 2013-01-31 00:55:02 +0000 | [diff] [blame] | 1928 | btrfs_kobject_uevent(bdev, KOBJ_CHANGE); |
Lukas Czerner | b8b8ff5 | 2012-12-06 19:25:48 +0000 | [diff] [blame] | 1929 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 1930 | /* Update ctime/mtime for device path for libblkid */ |
| 1931 | update_dev_time(device_path); |
| 1932 | } |
| 1933 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1934 | error_brelse: |
| 1935 | brelse(bh); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1936 | if (bdev) |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 1937 | blkdev_put(bdev, FMODE_READ | FMODE_EXCL); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1938 | out: |
| 1939 | mutex_unlock(&uuid_mutex); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1940 | return ret; |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1941 | error_undo: |
| 1942 | if (device->writeable) { |
Xiao Guangrong | 0c1daee | 2011-04-20 10:08:16 +0000 | [diff] [blame] | 1943 | lock_chunks(root); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1944 | list_add(&device->dev_alloc_list, |
| 1945 | &root->fs_info->fs_devices->alloc_list); |
Miao Xie | c3929c3 | 2014-09-03 21:35:47 +0800 | [diff] [blame] | 1946 | device->fs_devices->rw_devices++; |
Xiao Guangrong | 0c1daee | 2011-04-20 10:08:16 +0000 | [diff] [blame] | 1947 | unlock_chunks(root); |
Ilya Dryomov | 9b3517e | 2011-02-15 18:14:25 +0000 | [diff] [blame] | 1948 | } |
| 1949 | goto error_brelse; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 1950 | } |
| 1951 | |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 1952 | void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info, |
| 1953 | struct btrfs_device *srcdev) |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1954 | { |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 1955 | struct btrfs_fs_devices *fs_devices; |
| 1956 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1957 | WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex)); |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 1958 | |
Anand Jain | 25e8e91 | 2014-08-20 10:56:56 +0800 | [diff] [blame] | 1959 | /* |
| 1960 | * in case of fs with no seed, srcdev->fs_devices will point |
| 1961 | * to fs_devices of fs_info. However when the dev being replaced is |
| 1962 | * a seed dev it will point to the seed's local fs_devices. In short |
| 1963 | * srcdev will have its correct fs_devices in both the cases. |
| 1964 | */ |
| 1965 | fs_devices = srcdev->fs_devices; |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 1966 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1967 | list_del_rcu(&srcdev->dev_list); |
| 1968 | list_del_rcu(&srcdev->dev_alloc_list); |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 1969 | fs_devices->num_devices--; |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 1970 | if (srcdev->missing) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 1971 | fs_devices->missing_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1972 | |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 1973 | if (srcdev->writeable) { |
| 1974 | fs_devices->rw_devices--; |
| 1975 | /* zero out the old super if it is writable */ |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 1976 | btrfs_scratch_superblocks(srcdev->bdev, |
| 1977 | rcu_str_deref(srcdev->name)); |
Ilya Dryomov | 1357272 | 2013-10-02 20:41:01 +0300 | [diff] [blame] | 1978 | } |
| 1979 | |
Miao Xie | 82372bc | 2014-09-03 21:35:44 +0800 | [diff] [blame] | 1980 | if (srcdev->bdev) |
Anand Jain | d51908c | 2014-08-13 14:24:19 +0800 | [diff] [blame] | 1981 | fs_devices->open_devices--; |
Qu Wenruo | 084b6e7c | 2014-10-30 16:52:31 +0800 | [diff] [blame] | 1982 | } |
| 1983 | |
| 1984 | void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info, |
| 1985 | struct btrfs_device *srcdev) |
| 1986 | { |
| 1987 | struct btrfs_fs_devices *fs_devices = srcdev->fs_devices; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1988 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 1989 | call_rcu(&srcdev->rcu, free_device); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 1990 | |
| 1991 | /* |
| 1992 | * unless fs_devices is seed fs, num_devices shouldn't go |
| 1993 | * zero |
| 1994 | */ |
| 1995 | BUG_ON(!fs_devices->num_devices && !fs_devices->seeding); |
| 1996 | |
| 1997 | /* if this is no devs we rather delete the fs_devices */ |
| 1998 | if (!fs_devices->num_devices) { |
| 1999 | struct btrfs_fs_devices *tmp_fs_devices; |
| 2000 | |
| 2001 | tmp_fs_devices = fs_info->fs_devices; |
| 2002 | while (tmp_fs_devices) { |
| 2003 | if (tmp_fs_devices->seed == fs_devices) { |
| 2004 | tmp_fs_devices->seed = fs_devices->seed; |
| 2005 | break; |
| 2006 | } |
| 2007 | tmp_fs_devices = tmp_fs_devices->seed; |
| 2008 | } |
| 2009 | fs_devices->seed = NULL; |
Anand Jain | 8bef840 | 2014-08-13 14:24:23 +0800 | [diff] [blame] | 2010 | __btrfs_close_devices(fs_devices); |
| 2011 | free_fs_devices(fs_devices); |
Anand Jain | 94d5f0c | 2014-08-13 14:24:22 +0800 | [diff] [blame] | 2012 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2013 | } |
| 2014 | |
| 2015 | void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info, |
| 2016 | struct btrfs_device *tgtdev) |
| 2017 | { |
| 2018 | struct btrfs_device *next_device; |
| 2019 | |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 2020 | mutex_lock(&uuid_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2021 | WARN_ON(!tgtdev); |
| 2022 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2023 | |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 2024 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev); |
Anand Jain | d2ff1b2 | 2015-03-10 06:38:42 +0800 | [diff] [blame] | 2025 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2026 | if (tgtdev->bdev) { |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 2027 | btrfs_scratch_superblocks(tgtdev->bdev, |
| 2028 | rcu_str_deref(tgtdev->name)); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2029 | fs_info->fs_devices->open_devices--; |
| 2030 | } |
| 2031 | fs_info->fs_devices->num_devices--; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2032 | |
| 2033 | next_device = list_entry(fs_info->fs_devices->devices.next, |
| 2034 | struct btrfs_device, dev_list); |
| 2035 | if (tgtdev->bdev == fs_info->sb->s_bdev) |
| 2036 | fs_info->sb->s_bdev = next_device->bdev; |
| 2037 | if (tgtdev->bdev == fs_info->fs_devices->latest_bdev) |
| 2038 | fs_info->fs_devices->latest_bdev = next_device->bdev; |
| 2039 | list_del_rcu(&tgtdev->dev_list); |
| 2040 | |
| 2041 | call_rcu(&tgtdev->rcu, free_device); |
| 2042 | |
| 2043 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Miao Xie | 67a2c45 | 2014-09-03 21:35:43 +0800 | [diff] [blame] | 2044 | mutex_unlock(&uuid_mutex); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2045 | } |
| 2046 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 2047 | static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path, |
| 2048 | struct btrfs_device **device) |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2049 | { |
| 2050 | int ret = 0; |
| 2051 | struct btrfs_super_block *disk_super; |
| 2052 | u64 devid; |
| 2053 | u8 *dev_uuid; |
| 2054 | struct block_device *bdev; |
| 2055 | struct buffer_head *bh; |
| 2056 | |
| 2057 | *device = NULL; |
| 2058 | ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ, |
| 2059 | root->fs_info->bdev_holder, 0, &bdev, &bh); |
| 2060 | if (ret) |
| 2061 | return ret; |
| 2062 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 2063 | devid = btrfs_stack_device_id(&disk_super->dev_item); |
| 2064 | dev_uuid = disk_super->dev_item.uuid; |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 2065 | *device = btrfs_find_device(root->fs_info, devid, dev_uuid, |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2066 | disk_super->fsid); |
| 2067 | brelse(bh); |
| 2068 | if (!*device) |
| 2069 | ret = -ENOENT; |
| 2070 | blkdev_put(bdev, FMODE_READ); |
| 2071 | return ret; |
| 2072 | } |
| 2073 | |
| 2074 | int btrfs_find_device_missing_or_by_path(struct btrfs_root *root, |
| 2075 | char *device_path, |
| 2076 | struct btrfs_device **device) |
| 2077 | { |
| 2078 | *device = NULL; |
| 2079 | if (strcmp(device_path, "missing") == 0) { |
| 2080 | struct list_head *devices; |
| 2081 | struct btrfs_device *tmp; |
| 2082 | |
| 2083 | devices = &root->fs_info->fs_devices->devices; |
| 2084 | /* |
| 2085 | * It is safe to read the devices since the volume_mutex |
| 2086 | * is held by the caller. |
| 2087 | */ |
| 2088 | list_for_each_entry(tmp, devices, dev_list) { |
| 2089 | if (tmp->in_fs_metadata && !tmp->bdev) { |
| 2090 | *device = tmp; |
| 2091 | break; |
| 2092 | } |
| 2093 | } |
| 2094 | |
Anand Jain | d74a625 | 2015-08-14 18:32:56 +0800 | [diff] [blame] | 2095 | if (!*device) |
| 2096 | return BTRFS_ERROR_DEV_MISSING_NOT_FOUND; |
Stefan Behrens | 7ba15b7 | 2012-11-05 14:42:30 +0100 | [diff] [blame] | 2097 | |
| 2098 | return 0; |
| 2099 | } else { |
| 2100 | return btrfs_find_device_by_path(root, device_path, device); |
| 2101 | } |
| 2102 | } |
| 2103 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2104 | /* |
| 2105 | * does all the dirty work required for changing file system's UUID. |
| 2106 | */ |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 2107 | static int btrfs_prepare_sprout(struct btrfs_root *root) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2108 | { |
| 2109 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
| 2110 | struct btrfs_fs_devices *old_devices; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2111 | struct btrfs_fs_devices *seed_devices; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 2112 | struct btrfs_super_block *disk_super = root->fs_info->super_copy; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2113 | struct btrfs_device *device; |
| 2114 | u64 super_flags; |
| 2115 | |
| 2116 | BUG_ON(!mutex_is_locked(&uuid_mutex)); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2117 | if (!fs_devices->seeding) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2118 | return -EINVAL; |
| 2119 | |
Ilya Dryomov | 2208a37 | 2013-08-12 14:33:03 +0300 | [diff] [blame] | 2120 | seed_devices = __alloc_fs_devices(); |
| 2121 | if (IS_ERR(seed_devices)) |
| 2122 | return PTR_ERR(seed_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2123 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2124 | old_devices = clone_fs_devices(fs_devices); |
| 2125 | if (IS_ERR(old_devices)) { |
| 2126 | kfree(seed_devices); |
| 2127 | return PTR_ERR(old_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2128 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2129 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2130 | list_add(&old_devices->list, &fs_uuids); |
| 2131 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2132 | memcpy(seed_devices, fs_devices, sizeof(*seed_devices)); |
| 2133 | seed_devices->opened = 1; |
| 2134 | INIT_LIST_HEAD(&seed_devices->devices); |
| 2135 | INIT_LIST_HEAD(&seed_devices->alloc_list); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2136 | mutex_init(&seed_devices->device_list_mutex); |
Xiao Guangrong | c9513ed | 2011-04-20 10:07:30 +0000 | [diff] [blame] | 2137 | |
| 2138 | mutex_lock(&root->fs_info->fs_devices->device_list_mutex); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2139 | list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices, |
| 2140 | synchronize_rcu); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2141 | list_for_each_entry(device, &seed_devices->devices, dev_list) |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2142 | device->fs_devices = seed_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2143 | |
| 2144 | lock_chunks(root); |
| 2145 | list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list); |
| 2146 | unlock_chunks(root); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2147 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2148 | fs_devices->seeding = 0; |
| 2149 | fs_devices->num_devices = 0; |
| 2150 | fs_devices->open_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2151 | fs_devices->missing_devices = 0; |
Miao Xie | 69611ac | 2014-07-03 18:22:12 +0800 | [diff] [blame] | 2152 | fs_devices->rotating = 0; |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 2153 | fs_devices->seed = seed_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2154 | |
| 2155 | generate_random_uuid(fs_devices->fsid); |
| 2156 | memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
| 2157 | memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE); |
Filipe David Borba Manana | f717175 | 2013-08-12 20:56:58 +0100 | [diff] [blame] | 2158 | mutex_unlock(&root->fs_info->fs_devices->device_list_mutex); |
| 2159 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2160 | super_flags = btrfs_super_flags(disk_super) & |
| 2161 | ~BTRFS_SUPER_FLAG_SEEDING; |
| 2162 | btrfs_set_super_flags(disk_super, super_flags); |
| 2163 | |
| 2164 | return 0; |
| 2165 | } |
| 2166 | |
| 2167 | /* |
| 2168 | * strore the expected generation for seed devices in device items. |
| 2169 | */ |
| 2170 | static int btrfs_finish_sprout(struct btrfs_trans_handle *trans, |
| 2171 | struct btrfs_root *root) |
| 2172 | { |
| 2173 | struct btrfs_path *path; |
| 2174 | struct extent_buffer *leaf; |
| 2175 | struct btrfs_dev_item *dev_item; |
| 2176 | struct btrfs_device *device; |
| 2177 | struct btrfs_key key; |
| 2178 | u8 fs_uuid[BTRFS_UUID_SIZE]; |
| 2179 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 2180 | u64 devid; |
| 2181 | int ret; |
| 2182 | |
| 2183 | path = btrfs_alloc_path(); |
| 2184 | if (!path) |
| 2185 | return -ENOMEM; |
| 2186 | |
| 2187 | root = root->fs_info->chunk_root; |
| 2188 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2189 | key.offset = 0; |
| 2190 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2191 | |
| 2192 | while (1) { |
| 2193 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2194 | if (ret < 0) |
| 2195 | goto error; |
| 2196 | |
| 2197 | leaf = path->nodes[0]; |
| 2198 | next_slot: |
| 2199 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 2200 | ret = btrfs_next_leaf(root, path); |
| 2201 | if (ret > 0) |
| 2202 | break; |
| 2203 | if (ret < 0) |
| 2204 | goto error; |
| 2205 | leaf = path->nodes[0]; |
| 2206 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2207 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2208 | continue; |
| 2209 | } |
| 2210 | |
| 2211 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 2212 | if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID || |
| 2213 | key.type != BTRFS_DEV_ITEM_KEY) |
| 2214 | break; |
| 2215 | |
| 2216 | dev_item = btrfs_item_ptr(leaf, path->slots[0], |
| 2217 | struct btrfs_dev_item); |
| 2218 | devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 2219 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2220 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 2221 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2222 | BTRFS_UUID_SIZE); |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 2223 | device = btrfs_find_device(root->fs_info, devid, dev_uuid, |
| 2224 | fs_uuid); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2225 | BUG_ON(!device); /* Logic error */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2226 | |
| 2227 | if (device->fs_devices->seeding) { |
| 2228 | btrfs_set_device_generation(leaf, dev_item, |
| 2229 | device->generation); |
| 2230 | btrfs_mark_buffer_dirty(leaf); |
| 2231 | } |
| 2232 | |
| 2233 | path->slots[0]++; |
| 2234 | goto next_slot; |
| 2235 | } |
| 2236 | ret = 0; |
| 2237 | error: |
| 2238 | btrfs_free_path(path); |
| 2239 | return ret; |
| 2240 | } |
| 2241 | |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2242 | int btrfs_init_new_device(struct btrfs_root *root, char *device_path) |
| 2243 | { |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2244 | struct request_queue *q; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2245 | struct btrfs_trans_handle *trans; |
| 2246 | struct btrfs_device *device; |
| 2247 | struct block_device *bdev; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2248 | struct list_head *devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2249 | struct super_block *sb = root->fs_info->sb; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2250 | struct rcu_string *name; |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2251 | u64 tmp; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2252 | int seeding_dev = 0; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2253 | int ret = 0; |
| 2254 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2255 | if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding) |
Liu Bo | f8c5d0b | 2012-05-10 18:10:38 +0800 | [diff] [blame] | 2256 | return -EROFS; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2257 | |
Li Zefan | a5d16333 | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 2258 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 2259 | root->fs_info->bdev_holder); |
Josef Bacik | 7f59203 | 2010-01-27 02:09:00 +0000 | [diff] [blame] | 2260 | if (IS_ERR(bdev)) |
| 2261 | return PTR_ERR(bdev); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2262 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2263 | if (root->fs_info->fs_devices->seeding) { |
| 2264 | seeding_dev = 1; |
| 2265 | down_write(&sb->s_umount); |
| 2266 | mutex_lock(&uuid_mutex); |
| 2267 | } |
| 2268 | |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 2269 | filemap_write_and_wait(bdev->bd_inode->i_mapping); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2270 | |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2271 | devices = &root->fs_info->fs_devices->devices; |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2272 | |
| 2273 | mutex_lock(&root->fs_info->fs_devices->device_list_mutex); |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 2274 | list_for_each_entry(device, devices, dev_list) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2275 | if (device->bdev == bdev) { |
| 2276 | ret = -EEXIST; |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2277 | mutex_unlock( |
| 2278 | &root->fs_info->fs_devices->device_list_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2279 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2280 | } |
| 2281 | } |
Liu Bo | d25628b | 2012-11-14 14:35:30 +0000 | [diff] [blame] | 2282 | mutex_unlock(&root->fs_info->fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2283 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2284 | device = btrfs_alloc_device(root->fs_info, NULL, NULL); |
| 2285 | if (IS_ERR(device)) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2286 | /* we can safely leave the fs_devices entry around */ |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2287 | ret = PTR_ERR(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2288 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2289 | } |
| 2290 | |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2291 | name = rcu_string_strdup(device_path, GFP_NOFS); |
| 2292 | if (!name) { |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2293 | kfree(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2294 | ret = -ENOMEM; |
| 2295 | goto error; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2296 | } |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2297 | rcu_assign_pointer(device->name, name); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2298 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2299 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2300 | if (IS_ERR(trans)) { |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2301 | rcu_string_free(device->name); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 2302 | kfree(device); |
| 2303 | ret = PTR_ERR(trans); |
| 2304 | goto error; |
| 2305 | } |
| 2306 | |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2307 | q = bdev_get_queue(bdev); |
| 2308 | if (blk_queue_discard(q)) |
| 2309 | device->can_discard = 1; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2310 | device->writeable = 1; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2311 | device->generation = trans->transid; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2312 | device->io_width = root->sectorsize; |
| 2313 | device->io_align = root->sectorsize; |
| 2314 | device->sector_size = root->sectorsize; |
| 2315 | device->total_bytes = i_size_read(bdev->bd_inode); |
Yan Zheng | 2cc3c55 | 2009-06-04 09:23:50 -0400 | [diff] [blame] | 2316 | device->disk_total_bytes = device->total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2317 | device->commit_total_bytes = device->total_bytes; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2318 | device->dev_root = root->fs_info->dev_root; |
| 2319 | device->bdev = bdev; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 2320 | device->in_fs_metadata = 1; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2321 | device->is_tgtdev_for_dev_replace = 0; |
Ilya Dryomov | fb01aa8 | 2011-02-15 18:12:57 +0000 | [diff] [blame] | 2322 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2323 | device->dev_stats_valid = 1; |
Zheng Yan | 325cd4b | 2008-09-05 16:43:54 -0400 | [diff] [blame] | 2324 | set_blocksize(device->bdev, 4096); |
| 2325 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2326 | if (seeding_dev) { |
| 2327 | sb->s_flags &= ~MS_RDONLY; |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 2328 | ret = btrfs_prepare_sprout(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2329 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2330 | } |
| 2331 | |
| 2332 | device->fs_devices = root->fs_info->fs_devices; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2333 | |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2334 | mutex_lock(&root->fs_info->fs_devices->device_list_mutex); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2335 | lock_chunks(root); |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 2336 | list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2337 | list_add(&device->dev_alloc_list, |
| 2338 | &root->fs_info->fs_devices->alloc_list); |
| 2339 | root->fs_info->fs_devices->num_devices++; |
| 2340 | root->fs_info->fs_devices->open_devices++; |
| 2341 | root->fs_info->fs_devices->rw_devices++; |
Josef Bacik | 02db084 | 2012-06-21 16:03:58 -0400 | [diff] [blame] | 2342 | root->fs_info->fs_devices->total_devices++; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2343 | root->fs_info->fs_devices->total_rw_bytes += device->total_bytes; |
| 2344 | |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 2345 | spin_lock(&root->fs_info->free_chunk_lock); |
| 2346 | root->fs_info->free_chunk_space += device->total_bytes; |
| 2347 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 2348 | |
Chris Mason | c289811 | 2009-06-10 09:51:32 -0400 | [diff] [blame] | 2349 | if (!blk_queue_nonrot(bdev_get_queue(bdev))) |
| 2350 | root->fs_info->fs_devices->rotating = 1; |
| 2351 | |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2352 | tmp = btrfs_super_total_bytes(root->fs_info->super_copy); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 2353 | btrfs_set_super_total_bytes(root->fs_info->super_copy, |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2354 | tmp + device->total_bytes); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2355 | |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2356 | tmp = btrfs_super_num_devices(root->fs_info->super_copy); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 2357 | btrfs_set_super_num_devices(root->fs_info->super_copy, |
Anand Jain | 3c1dbdf | 2014-08-20 10:54:17 +0800 | [diff] [blame] | 2358 | tmp + 1); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2359 | |
| 2360 | /* add sysfs device entry */ |
Anand Jain | e3bd697 | 2015-08-14 18:32:48 +0800 | [diff] [blame] | 2361 | btrfs_sysfs_add_device_link(root->fs_info->fs_devices, device); |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 2362 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2363 | /* |
| 2364 | * we've got more storage, clear any full flags on the space |
| 2365 | * infos |
| 2366 | */ |
| 2367 | btrfs_clear_space_info_full(root->fs_info); |
| 2368 | |
| 2369 | unlock_chunks(root); |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 2370 | mutex_unlock(&root->fs_info->fs_devices->device_list_mutex); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2371 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2372 | if (seeding_dev) { |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2373 | lock_chunks(root); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2374 | ret = init_first_rw_device(trans, root, device); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2375 | unlock_chunks(root); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2376 | if (ret) { |
| 2377 | btrfs_abort_transaction(trans, root, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2378 | goto error_trans; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2379 | } |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2380 | } |
| 2381 | |
| 2382 | ret = btrfs_add_device(trans, root, device); |
| 2383 | if (ret) { |
| 2384 | btrfs_abort_transaction(trans, root, ret); |
| 2385 | goto error_trans; |
| 2386 | } |
| 2387 | |
| 2388 | if (seeding_dev) { |
| 2389 | char fsid_buf[BTRFS_UUID_UNPARSED_SIZE]; |
| 2390 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2391 | ret = btrfs_finish_sprout(trans, root); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2392 | if (ret) { |
| 2393 | btrfs_abort_transaction(trans, root, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2394 | goto error_trans; |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 2395 | } |
Anand Jain | b2373f2 | 2014-06-03 11:36:03 +0800 | [diff] [blame] | 2396 | |
| 2397 | /* Sprouting would change fsid of the mounted root, |
| 2398 | * so rename the fsid on the sysfs |
| 2399 | */ |
| 2400 | snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU", |
| 2401 | root->fs_info->fsid); |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 2402 | if (kobject_rename(&root->fs_info->fs_devices->fsid_kobj, |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 2403 | fsid_buf)) |
David Sterba | f14d104 | 2015-10-08 11:37:06 +0200 | [diff] [blame] | 2404 | btrfs_warn(root->fs_info, |
| 2405 | "sysfs: failed to create fsid for sprout"); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2406 | } |
| 2407 | |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 2408 | root->fs_info->num_tolerated_disk_barrier_failures = |
| 2409 | btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2410 | ret = btrfs_commit_transaction(trans, root); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2411 | |
| 2412 | if (seeding_dev) { |
| 2413 | mutex_unlock(&uuid_mutex); |
| 2414 | up_write(&sb->s_umount); |
| 2415 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2416 | if (ret) /* transaction commit */ |
| 2417 | return ret; |
| 2418 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2419 | ret = btrfs_relocate_sys_chunks(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2420 | if (ret < 0) |
Anand Jain | a4553fe | 2015-09-25 14:43:01 +0800 | [diff] [blame] | 2421 | btrfs_std_error(root->fs_info, ret, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2422 | "Failed to relocate sys chunks after " |
| 2423 | "device initialization. This can be fixed " |
| 2424 | "using the \"btrfs balance\" command."); |
Miao Xie | 671415b | 2012-10-16 11:26:46 +0000 | [diff] [blame] | 2425 | trans = btrfs_attach_transaction(root); |
| 2426 | if (IS_ERR(trans)) { |
| 2427 | if (PTR_ERR(trans) == -ENOENT) |
| 2428 | return 0; |
| 2429 | return PTR_ERR(trans); |
| 2430 | } |
| 2431 | ret = btrfs_commit_transaction(trans, root); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2432 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2433 | |
Qu Wenruo | 5a1972b | 2014-04-16 17:02:32 +0800 | [diff] [blame] | 2434 | /* Update ctime/mtime for libblkid */ |
| 2435 | update_dev_time(device_path); |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2436 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2437 | |
| 2438 | error_trans: |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2439 | btrfs_end_transaction(trans, root); |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 2440 | rcu_string_free(device->name); |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 2441 | btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2442 | kfree(device); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2443 | error: |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 2444 | blkdev_put(bdev, FMODE_EXCL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2445 | if (seeding_dev) { |
| 2446 | mutex_unlock(&uuid_mutex); |
| 2447 | up_write(&sb->s_umount); |
| 2448 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 2449 | return ret; |
Chris Mason | 788f20e | 2008-04-28 15:29:42 -0400 | [diff] [blame] | 2450 | } |
| 2451 | |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2452 | 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] | 2453 | struct btrfs_device *srcdev, |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2454 | struct btrfs_device **device_out) |
| 2455 | { |
| 2456 | struct request_queue *q; |
| 2457 | struct btrfs_device *device; |
| 2458 | struct block_device *bdev; |
| 2459 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 2460 | struct list_head *devices; |
| 2461 | struct rcu_string *name; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2462 | u64 devid = BTRFS_DEV_REPLACE_DEVID; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2463 | int ret = 0; |
| 2464 | |
| 2465 | *device_out = NULL; |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2466 | if (fs_info->fs_devices->seeding) { |
| 2467 | btrfs_err(fs_info, "the filesystem is a seed filesystem!"); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2468 | return -EINVAL; |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2469 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2470 | |
| 2471 | bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL, |
| 2472 | fs_info->bdev_holder); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2473 | if (IS_ERR(bdev)) { |
| 2474 | btrfs_err(fs_info, "target device %s is invalid!", device_path); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2475 | return PTR_ERR(bdev); |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2476 | } |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2477 | |
| 2478 | filemap_write_and_wait(bdev->bd_inode->i_mapping); |
| 2479 | |
| 2480 | devices = &fs_info->fs_devices->devices; |
| 2481 | list_for_each_entry(device, devices, dev_list) { |
| 2482 | if (device->bdev == bdev) { |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2483 | btrfs_err(fs_info, "target device is in the filesystem!"); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2484 | ret = -EEXIST; |
| 2485 | goto error; |
| 2486 | } |
| 2487 | } |
| 2488 | |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2489 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2490 | if (i_size_read(bdev->bd_inode) < |
| 2491 | btrfs_device_get_total_bytes(srcdev)) { |
Miao Xie | 1c43366 | 2014-09-03 21:35:32 +0800 | [diff] [blame] | 2492 | btrfs_err(fs_info, "target device is smaller than source device!"); |
| 2493 | ret = -EINVAL; |
| 2494 | goto error; |
| 2495 | } |
| 2496 | |
| 2497 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 2498 | device = btrfs_alloc_device(NULL, &devid, NULL); |
| 2499 | if (IS_ERR(device)) { |
| 2500 | ret = PTR_ERR(device); |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2501 | goto error; |
| 2502 | } |
| 2503 | |
| 2504 | name = rcu_string_strdup(device_path, GFP_NOFS); |
| 2505 | if (!name) { |
| 2506 | kfree(device); |
| 2507 | ret = -ENOMEM; |
| 2508 | goto error; |
| 2509 | } |
| 2510 | rcu_assign_pointer(device->name, name); |
| 2511 | |
| 2512 | q = bdev_get_queue(bdev); |
| 2513 | if (blk_queue_discard(q)) |
| 2514 | device->can_discard = 1; |
| 2515 | mutex_lock(&root->fs_info->fs_devices->device_list_mutex); |
| 2516 | device->writeable = 1; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2517 | device->generation = 0; |
| 2518 | device->io_width = root->sectorsize; |
| 2519 | device->io_align = root->sectorsize; |
| 2520 | device->sector_size = root->sectorsize; |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2521 | device->total_bytes = btrfs_device_get_total_bytes(srcdev); |
| 2522 | device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev); |
| 2523 | device->bytes_used = btrfs_device_get_bytes_used(srcdev); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2524 | ASSERT(list_empty(&srcdev->resized_list)); |
| 2525 | device->commit_total_bytes = srcdev->commit_total_bytes; |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 2526 | device->commit_bytes_used = device->bytes_used; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2527 | device->dev_root = fs_info->dev_root; |
| 2528 | device->bdev = bdev; |
| 2529 | device->in_fs_metadata = 1; |
| 2530 | device->is_tgtdev_for_dev_replace = 1; |
| 2531 | device->mode = FMODE_EXCL; |
Stefan Behrens | 27087f3 | 2013-10-11 15:20:42 +0200 | [diff] [blame] | 2532 | device->dev_stats_valid = 1; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2533 | set_blocksize(device->bdev, 4096); |
| 2534 | device->fs_devices = fs_info->fs_devices; |
| 2535 | list_add(&device->dev_list, &fs_info->fs_devices->devices); |
| 2536 | fs_info->fs_devices->num_devices++; |
| 2537 | fs_info->fs_devices->open_devices++; |
Stefan Behrens | e93c89c | 2012-11-05 17:33:06 +0100 | [diff] [blame] | 2538 | mutex_unlock(&root->fs_info->fs_devices->device_list_mutex); |
| 2539 | |
| 2540 | *device_out = device; |
| 2541 | return ret; |
| 2542 | |
| 2543 | error: |
| 2544 | blkdev_put(bdev, FMODE_EXCL); |
| 2545 | return ret; |
| 2546 | } |
| 2547 | |
| 2548 | void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info, |
| 2549 | struct btrfs_device *tgtdev) |
| 2550 | { |
| 2551 | WARN_ON(fs_info->fs_devices->rw_devices == 0); |
| 2552 | tgtdev->io_width = fs_info->dev_root->sectorsize; |
| 2553 | tgtdev->io_align = fs_info->dev_root->sectorsize; |
| 2554 | tgtdev->sector_size = fs_info->dev_root->sectorsize; |
| 2555 | tgtdev->dev_root = fs_info->dev_root; |
| 2556 | tgtdev->in_fs_metadata = 1; |
| 2557 | } |
| 2558 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2559 | static noinline int btrfs_update_device(struct btrfs_trans_handle *trans, |
| 2560 | struct btrfs_device *device) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2561 | { |
| 2562 | int ret; |
| 2563 | struct btrfs_path *path; |
| 2564 | struct btrfs_root *root; |
| 2565 | struct btrfs_dev_item *dev_item; |
| 2566 | struct extent_buffer *leaf; |
| 2567 | struct btrfs_key key; |
| 2568 | |
| 2569 | root = device->dev_root->fs_info->chunk_root; |
| 2570 | |
| 2571 | path = btrfs_alloc_path(); |
| 2572 | if (!path) |
| 2573 | return -ENOMEM; |
| 2574 | |
| 2575 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 2576 | key.type = BTRFS_DEV_ITEM_KEY; |
| 2577 | key.offset = device->devid; |
| 2578 | |
| 2579 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
| 2580 | if (ret < 0) |
| 2581 | goto out; |
| 2582 | |
| 2583 | if (ret > 0) { |
| 2584 | ret = -ENOENT; |
| 2585 | goto out; |
| 2586 | } |
| 2587 | |
| 2588 | leaf = path->nodes[0]; |
| 2589 | dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item); |
| 2590 | |
| 2591 | btrfs_set_device_id(leaf, dev_item, device->devid); |
| 2592 | btrfs_set_device_type(leaf, dev_item, device->type); |
| 2593 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
| 2594 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
| 2595 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2596 | btrfs_set_device_total_bytes(leaf, dev_item, |
| 2597 | btrfs_device_get_disk_total_bytes(device)); |
| 2598 | btrfs_set_device_bytes_used(leaf, dev_item, |
| 2599 | btrfs_device_get_bytes_used(device)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2600 | btrfs_mark_buffer_dirty(leaf); |
| 2601 | |
| 2602 | out: |
| 2603 | btrfs_free_path(path); |
| 2604 | return ret; |
| 2605 | } |
| 2606 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2607 | int btrfs_grow_device(struct btrfs_trans_handle *trans, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2608 | struct btrfs_device *device, u64 new_size) |
| 2609 | { |
| 2610 | struct btrfs_super_block *super_copy = |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 2611 | device->dev_root->fs_info->super_copy; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2612 | struct btrfs_fs_devices *fs_devices; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2613 | u64 old_total; |
| 2614 | u64 diff; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2615 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2616 | if (!device->writeable) |
| 2617 | return -EACCES; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2618 | |
| 2619 | lock_chunks(device->dev_root); |
| 2620 | old_total = btrfs_super_total_bytes(super_copy); |
| 2621 | diff = new_size - device->total_bytes; |
| 2622 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 2623 | if (new_size <= device->total_bytes || |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2624 | device->is_tgtdev_for_dev_replace) { |
| 2625 | unlock_chunks(device->dev_root); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2626 | return -EINVAL; |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2627 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2628 | |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2629 | fs_devices = device->dev_root->fs_info->fs_devices; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2630 | |
| 2631 | btrfs_set_super_total_bytes(super_copy, old_total + diff); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2632 | device->fs_devices->total_rw_bytes += diff; |
| 2633 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 2634 | btrfs_device_set_total_bytes(device, new_size); |
| 2635 | btrfs_device_set_disk_total_bytes(device, new_size); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 2636 | btrfs_clear_space_info_full(device->dev_root->fs_info); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 2637 | if (list_empty(&device->resized_list)) |
| 2638 | list_add_tail(&device->resized_list, |
| 2639 | &fs_devices->resized_devices); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2640 | unlock_chunks(device->dev_root); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 2641 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2642 | return btrfs_update_device(trans, device); |
| 2643 | } |
| 2644 | |
| 2645 | static int btrfs_free_chunk(struct btrfs_trans_handle *trans, |
Zhao Lei | a688a04 | 2015-02-09 20:31:44 +0800 | [diff] [blame] | 2646 | struct btrfs_root *root, u64 chunk_objectid, |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2647 | u64 chunk_offset) |
| 2648 | { |
| 2649 | int ret; |
| 2650 | struct btrfs_path *path; |
| 2651 | struct btrfs_key key; |
| 2652 | |
| 2653 | root = root->fs_info->chunk_root; |
| 2654 | path = btrfs_alloc_path(); |
| 2655 | if (!path) |
| 2656 | return -ENOMEM; |
| 2657 | |
| 2658 | key.objectid = chunk_objectid; |
| 2659 | key.offset = chunk_offset; |
| 2660 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 2661 | |
| 2662 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2663 | if (ret < 0) |
| 2664 | goto out; |
| 2665 | else if (ret > 0) { /* Logic error or corruption */ |
Anand Jain | a4553fe | 2015-09-25 14:43:01 +0800 | [diff] [blame] | 2666 | btrfs_std_error(root->fs_info, -ENOENT, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2667 | "Failed lookup while freeing chunk."); |
| 2668 | ret = -ENOENT; |
| 2669 | goto out; |
| 2670 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2671 | |
| 2672 | ret = btrfs_del_item(trans, root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2673 | if (ret < 0) |
Anand Jain | a4553fe | 2015-09-25 14:43:01 +0800 | [diff] [blame] | 2674 | btrfs_std_error(root->fs_info, ret, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2675 | "Failed to delete chunk item."); |
| 2676 | out: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2677 | btrfs_free_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 2678 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2679 | } |
| 2680 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 2681 | 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] | 2682 | chunk_offset) |
| 2683 | { |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 2684 | struct btrfs_super_block *super_copy = root->fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2685 | struct btrfs_disk_key *disk_key; |
| 2686 | struct btrfs_chunk *chunk; |
| 2687 | u8 *ptr; |
| 2688 | int ret = 0; |
| 2689 | u32 num_stripes; |
| 2690 | u32 array_size; |
| 2691 | u32 len = 0; |
| 2692 | u32 cur; |
| 2693 | struct btrfs_key key; |
| 2694 | |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2695 | lock_chunks(root); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2696 | array_size = btrfs_super_sys_array_size(super_copy); |
| 2697 | |
| 2698 | ptr = super_copy->sys_chunk_array; |
| 2699 | cur = 0; |
| 2700 | |
| 2701 | while (cur < array_size) { |
| 2702 | disk_key = (struct btrfs_disk_key *)ptr; |
| 2703 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 2704 | |
| 2705 | len = sizeof(*disk_key); |
| 2706 | |
| 2707 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 2708 | chunk = (struct btrfs_chunk *)(ptr + len); |
| 2709 | num_stripes = btrfs_stack_chunk_num_stripes(chunk); |
| 2710 | len += btrfs_chunk_item_size(num_stripes); |
| 2711 | } else { |
| 2712 | ret = -EIO; |
| 2713 | break; |
| 2714 | } |
| 2715 | if (key.objectid == chunk_objectid && |
| 2716 | key.offset == chunk_offset) { |
| 2717 | memmove(ptr, ptr + len, array_size - (cur + len)); |
| 2718 | array_size -= len; |
| 2719 | btrfs_set_super_sys_array_size(super_copy, array_size); |
| 2720 | } else { |
| 2721 | ptr += len; |
| 2722 | cur += len; |
| 2723 | } |
| 2724 | } |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 2725 | unlock_chunks(root); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2726 | return ret; |
| 2727 | } |
| 2728 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2729 | int btrfs_remove_chunk(struct btrfs_trans_handle *trans, |
| 2730 | struct btrfs_root *root, u64 chunk_offset) |
| 2731 | { |
| 2732 | struct extent_map_tree *em_tree; |
| 2733 | struct extent_map *em; |
| 2734 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
| 2735 | struct map_lookup *map; |
| 2736 | u64 dev_extent_len = 0; |
| 2737 | u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2738 | int i, ret = 0; |
| 2739 | |
| 2740 | /* Just in case */ |
| 2741 | root = root->fs_info->chunk_root; |
| 2742 | em_tree = &root->fs_info->mapping_tree.map_tree; |
| 2743 | |
| 2744 | read_lock(&em_tree->lock); |
| 2745 | em = lookup_extent_mapping(em_tree, chunk_offset, 1); |
| 2746 | read_unlock(&em_tree->lock); |
| 2747 | |
| 2748 | if (!em || em->start > chunk_offset || |
| 2749 | em->start + em->len < chunk_offset) { |
| 2750 | /* |
| 2751 | * This is a logic error, but we don't want to just rely on the |
| 2752 | * user having built with ASSERT enabled, so if ASSERT doens't |
| 2753 | * do anything we still error out. |
| 2754 | */ |
| 2755 | ASSERT(0); |
| 2756 | if (em) |
| 2757 | free_extent_map(em); |
| 2758 | return -EINVAL; |
| 2759 | } |
| 2760 | map = (struct map_lookup *)em->bdev; |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 2761 | lock_chunks(root->fs_info->chunk_root); |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 2762 | check_system_chunk(trans, extent_root, map->type); |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 2763 | unlock_chunks(root->fs_info->chunk_root); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2764 | |
| 2765 | for (i = 0; i < map->num_stripes; i++) { |
| 2766 | struct btrfs_device *device = map->stripes[i].dev; |
| 2767 | ret = btrfs_free_dev_extent(trans, device, |
| 2768 | map->stripes[i].physical, |
| 2769 | &dev_extent_len); |
| 2770 | if (ret) { |
| 2771 | btrfs_abort_transaction(trans, root, ret); |
| 2772 | goto out; |
| 2773 | } |
| 2774 | |
| 2775 | if (device->bytes_used > 0) { |
| 2776 | lock_chunks(root); |
| 2777 | btrfs_device_set_bytes_used(device, |
| 2778 | device->bytes_used - dev_extent_len); |
| 2779 | spin_lock(&root->fs_info->free_chunk_lock); |
| 2780 | root->fs_info->free_chunk_space += dev_extent_len; |
| 2781 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 2782 | btrfs_clear_space_info_full(root->fs_info); |
| 2783 | unlock_chunks(root); |
| 2784 | } |
| 2785 | |
| 2786 | if (map->stripes[i].dev) { |
| 2787 | ret = btrfs_update_device(trans, map->stripes[i].dev); |
| 2788 | if (ret) { |
| 2789 | btrfs_abort_transaction(trans, root, ret); |
| 2790 | goto out; |
| 2791 | } |
| 2792 | } |
| 2793 | } |
Zhao Lei | a688a04 | 2015-02-09 20:31:44 +0800 | [diff] [blame] | 2794 | ret = btrfs_free_chunk(trans, root, chunk_objectid, chunk_offset); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2795 | if (ret) { |
| 2796 | btrfs_abort_transaction(trans, root, ret); |
| 2797 | goto out; |
| 2798 | } |
| 2799 | |
| 2800 | trace_btrfs_chunk_free(root, map, chunk_offset, em->len); |
| 2801 | |
| 2802 | if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 2803 | ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset); |
| 2804 | if (ret) { |
| 2805 | btrfs_abort_transaction(trans, root, ret); |
| 2806 | goto out; |
| 2807 | } |
| 2808 | } |
| 2809 | |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 2810 | ret = btrfs_remove_block_group(trans, extent_root, chunk_offset, em); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2811 | if (ret) { |
| 2812 | btrfs_abort_transaction(trans, extent_root, ret); |
| 2813 | goto out; |
| 2814 | } |
| 2815 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2816 | out: |
| 2817 | /* once for us */ |
| 2818 | free_extent_map(em); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2819 | return ret; |
| 2820 | } |
| 2821 | |
Zhaolei | dc2ee4e | 2015-08-05 18:00:04 +0800 | [diff] [blame] | 2822 | static int btrfs_relocate_chunk(struct btrfs_root *root, u64 chunk_offset) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2823 | { |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2824 | struct btrfs_root *extent_root; |
| 2825 | struct btrfs_trans_handle *trans; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2826 | int ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2827 | |
| 2828 | root = root->fs_info->chunk_root; |
| 2829 | extent_root = root->fs_info->extent_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2830 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2831 | /* |
| 2832 | * Prevent races with automatic removal of unused block groups. |
| 2833 | * After we relocate and before we remove the chunk with offset |
| 2834 | * chunk_offset, automatic removal of the block group can kick in, |
| 2835 | * resulting in a failure when calling btrfs_remove_chunk() below. |
| 2836 | * |
| 2837 | * Make sure to acquire this mutex before doing a tree search (dev |
| 2838 | * or chunk trees) to find chunks. Otherwise the cleaner kthread might |
| 2839 | * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after |
| 2840 | * we release the path used to search the chunk/dev tree and before |
| 2841 | * the current task acquires this mutex and calls us. |
| 2842 | */ |
| 2843 | ASSERT(mutex_is_locked(&root->fs_info->delete_unused_bgs_mutex)); |
| 2844 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2845 | ret = btrfs_can_relocate(extent_root, chunk_offset); |
| 2846 | if (ret) |
| 2847 | return -ENOSPC; |
| 2848 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2849 | /* step one, relocate all the extents inside this chunk */ |
Zhaolei | 55e3a60 | 2015-08-05 16:43:30 +0800 | [diff] [blame] | 2850 | btrfs_scrub_pause(root); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 2851 | ret = btrfs_relocate_block_group(extent_root, chunk_offset); |
Zhaolei | 55e3a60 | 2015-08-05 16:43:30 +0800 | [diff] [blame] | 2852 | btrfs_scrub_continue(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2853 | if (ret) |
| 2854 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2855 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2856 | trans = btrfs_start_transaction(root, 0); |
Liu Bo | 0f788c5 | 2013-03-04 16:25:40 +0000 | [diff] [blame] | 2857 | if (IS_ERR(trans)) { |
| 2858 | ret = PTR_ERR(trans); |
Anand Jain | a4553fe | 2015-09-25 14:43:01 +0800 | [diff] [blame] | 2859 | btrfs_std_error(root->fs_info, ret, NULL); |
Liu Bo | 0f788c5 | 2013-03-04 16:25:40 +0000 | [diff] [blame] | 2860 | return ret; |
| 2861 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2862 | |
| 2863 | /* |
| 2864 | * step two, delete the device extents and the |
| 2865 | * chunk tree entries |
| 2866 | */ |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2867 | ret = btrfs_remove_chunk(trans, root, chunk_offset); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2868 | btrfs_end_transaction(trans, root); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2869 | return ret; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 2870 | } |
| 2871 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2872 | static int btrfs_relocate_sys_chunks(struct btrfs_root *root) |
| 2873 | { |
| 2874 | struct btrfs_root *chunk_root = root->fs_info->chunk_root; |
| 2875 | struct btrfs_path *path; |
| 2876 | struct extent_buffer *leaf; |
| 2877 | struct btrfs_chunk *chunk; |
| 2878 | struct btrfs_key key; |
| 2879 | struct btrfs_key found_key; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2880 | u64 chunk_type; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2881 | bool retried = false; |
| 2882 | int failed = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2883 | int ret; |
| 2884 | |
| 2885 | path = btrfs_alloc_path(); |
| 2886 | if (!path) |
| 2887 | return -ENOMEM; |
| 2888 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2889 | again: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2890 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 2891 | key.offset = (u64)-1; |
| 2892 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 2893 | |
| 2894 | while (1) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2895 | mutex_lock(&root->fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2896 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2897 | if (ret < 0) { |
| 2898 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2899 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2900 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2901 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2902 | |
| 2903 | ret = btrfs_previous_item(chunk_root, path, key.objectid, |
| 2904 | key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2905 | if (ret) |
| 2906 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2907 | if (ret < 0) |
| 2908 | goto error; |
| 2909 | if (ret > 0) |
| 2910 | break; |
| 2911 | |
| 2912 | leaf = path->nodes[0]; |
| 2913 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 2914 | |
| 2915 | chunk = btrfs_item_ptr(leaf, path->slots[0], |
| 2916 | struct btrfs_chunk); |
| 2917 | chunk_type = btrfs_chunk_type(leaf, chunk); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2918 | btrfs_release_path(path); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2919 | |
| 2920 | if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Zhao Lei | a688a04 | 2015-02-09 20:31:44 +0800 | [diff] [blame] | 2921 | ret = btrfs_relocate_chunk(chunk_root, |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2922 | found_key.offset); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2923 | if (ret == -ENOSPC) |
| 2924 | failed++; |
HIMANGI SARAOGI | 1458665 | 2014-07-09 03:51:41 +0530 | [diff] [blame] | 2925 | else |
| 2926 | BUG_ON(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2927 | } |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2928 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2929 | |
| 2930 | if (found_key.offset == 0) |
| 2931 | break; |
| 2932 | key.offset = found_key.offset - 1; |
| 2933 | } |
| 2934 | ret = 0; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2935 | if (failed && !retried) { |
| 2936 | failed = 0; |
| 2937 | retried = true; |
| 2938 | goto again; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 2939 | } else if (WARN_ON(failed && retried)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2940 | ret = -ENOSPC; |
| 2941 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2942 | error: |
| 2943 | btrfs_free_path(path); |
| 2944 | return ret; |
| 2945 | } |
| 2946 | |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 2947 | static int insert_balance_item(struct btrfs_root *root, |
| 2948 | struct btrfs_balance_control *bctl) |
| 2949 | { |
| 2950 | struct btrfs_trans_handle *trans; |
| 2951 | struct btrfs_balance_item *item; |
| 2952 | struct btrfs_disk_balance_args disk_bargs; |
| 2953 | struct btrfs_path *path; |
| 2954 | struct extent_buffer *leaf; |
| 2955 | struct btrfs_key key; |
| 2956 | int ret, err; |
| 2957 | |
| 2958 | path = btrfs_alloc_path(); |
| 2959 | if (!path) |
| 2960 | return -ENOMEM; |
| 2961 | |
| 2962 | trans = btrfs_start_transaction(root, 0); |
| 2963 | if (IS_ERR(trans)) { |
| 2964 | btrfs_free_path(path); |
| 2965 | return PTR_ERR(trans); |
| 2966 | } |
| 2967 | |
| 2968 | key.objectid = BTRFS_BALANCE_OBJECTID; |
| 2969 | key.type = BTRFS_BALANCE_ITEM_KEY; |
| 2970 | key.offset = 0; |
| 2971 | |
| 2972 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 2973 | sizeof(*item)); |
| 2974 | if (ret) |
| 2975 | goto out; |
| 2976 | |
| 2977 | leaf = path->nodes[0]; |
| 2978 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 2979 | |
| 2980 | memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item)); |
| 2981 | |
| 2982 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data); |
| 2983 | btrfs_set_balance_data(leaf, item, &disk_bargs); |
| 2984 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta); |
| 2985 | btrfs_set_balance_meta(leaf, item, &disk_bargs); |
| 2986 | btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys); |
| 2987 | btrfs_set_balance_sys(leaf, item, &disk_bargs); |
| 2988 | |
| 2989 | btrfs_set_balance_flags(leaf, item, bctl->flags); |
| 2990 | |
| 2991 | btrfs_mark_buffer_dirty(leaf); |
| 2992 | out: |
| 2993 | btrfs_free_path(path); |
| 2994 | err = btrfs_commit_transaction(trans, root); |
| 2995 | if (err && !ret) |
| 2996 | ret = err; |
| 2997 | return ret; |
| 2998 | } |
| 2999 | |
| 3000 | static int del_balance_item(struct btrfs_root *root) |
| 3001 | { |
| 3002 | struct btrfs_trans_handle *trans; |
| 3003 | struct btrfs_path *path; |
| 3004 | struct btrfs_key key; |
| 3005 | int ret, err; |
| 3006 | |
| 3007 | path = btrfs_alloc_path(); |
| 3008 | if (!path) |
| 3009 | return -ENOMEM; |
| 3010 | |
| 3011 | trans = btrfs_start_transaction(root, 0); |
| 3012 | if (IS_ERR(trans)) { |
| 3013 | btrfs_free_path(path); |
| 3014 | return PTR_ERR(trans); |
| 3015 | } |
| 3016 | |
| 3017 | key.objectid = BTRFS_BALANCE_OBJECTID; |
| 3018 | key.type = BTRFS_BALANCE_ITEM_KEY; |
| 3019 | key.offset = 0; |
| 3020 | |
| 3021 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 3022 | if (ret < 0) |
| 3023 | goto out; |
| 3024 | if (ret > 0) { |
| 3025 | ret = -ENOENT; |
| 3026 | goto out; |
| 3027 | } |
| 3028 | |
| 3029 | ret = btrfs_del_item(trans, root, path); |
| 3030 | out: |
| 3031 | btrfs_free_path(path); |
| 3032 | err = btrfs_commit_transaction(trans, root); |
| 3033 | if (err && !ret) |
| 3034 | ret = err; |
| 3035 | return ret; |
| 3036 | } |
| 3037 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3038 | /* |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3039 | * This is a heuristic used to reduce the number of chunks balanced on |
| 3040 | * resume after balance was interrupted. |
| 3041 | */ |
| 3042 | static void update_balance_args(struct btrfs_balance_control *bctl) |
| 3043 | { |
| 3044 | /* |
| 3045 | * Turn on soft mode for chunk types that were being converted. |
| 3046 | */ |
| 3047 | if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3048 | bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3049 | if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3050 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3051 | if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) |
| 3052 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT; |
| 3053 | |
| 3054 | /* |
| 3055 | * Turn on usage filter if is not already used. The idea is |
| 3056 | * that chunks that we have already balanced should be |
| 3057 | * reasonably full. Don't do it for chunks that are being |
| 3058 | * converted - that will keep us from relocating unconverted |
| 3059 | * (albeit full) chunks. |
| 3060 | */ |
| 3061 | if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame^] | 3062 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3063 | !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3064 | bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3065 | bctl->data.usage = 90; |
| 3066 | } |
| 3067 | if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame^] | 3068 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3069 | !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3070 | bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3071 | bctl->sys.usage = 90; |
| 3072 | } |
| 3073 | if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) && |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame^] | 3074 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3075 | !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) { |
| 3076 | bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE; |
| 3077 | bctl->meta.usage = 90; |
| 3078 | } |
| 3079 | } |
| 3080 | |
| 3081 | /* |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3082 | * Should be called with both balance and volume mutexes held to |
| 3083 | * serialize other volume operations (add_dev/rm_dev/resize) with |
| 3084 | * restriper. Same goes for unset_balance_control. |
| 3085 | */ |
| 3086 | static void set_balance_control(struct btrfs_balance_control *bctl) |
| 3087 | { |
| 3088 | struct btrfs_fs_info *fs_info = bctl->fs_info; |
| 3089 | |
| 3090 | BUG_ON(fs_info->balance_ctl); |
| 3091 | |
| 3092 | spin_lock(&fs_info->balance_lock); |
| 3093 | fs_info->balance_ctl = bctl; |
| 3094 | spin_unlock(&fs_info->balance_lock); |
| 3095 | } |
| 3096 | |
| 3097 | static void unset_balance_control(struct btrfs_fs_info *fs_info) |
| 3098 | { |
| 3099 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 3100 | |
| 3101 | BUG_ON(!fs_info->balance_ctl); |
| 3102 | |
| 3103 | spin_lock(&fs_info->balance_lock); |
| 3104 | fs_info->balance_ctl = NULL; |
| 3105 | spin_unlock(&fs_info->balance_lock); |
| 3106 | |
| 3107 | kfree(bctl); |
| 3108 | } |
| 3109 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3110 | /* |
| 3111 | * Balance filters. Return 1 if chunk should be filtered out |
| 3112 | * (should not be balanced). |
| 3113 | */ |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3114 | static int chunk_profiles_filter(u64 chunk_type, |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3115 | struct btrfs_balance_args *bargs) |
| 3116 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3117 | chunk_type = chunk_to_extended(chunk_type) & |
| 3118 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3119 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3120 | if (bargs->profiles & chunk_type) |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3121 | return 0; |
| 3122 | |
| 3123 | return 1; |
| 3124 | } |
| 3125 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3126 | static int chunk_usage_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset, |
| 3127 | struct btrfs_balance_args *bargs) |
| 3128 | { |
| 3129 | struct btrfs_block_group_cache *cache; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame^] | 3130 | u64 chunk_used; |
| 3131 | u64 user_thresh_min; |
| 3132 | u64 user_thresh_max; |
| 3133 | int ret = 1; |
| 3134 | |
| 3135 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3136 | chunk_used = btrfs_block_group_used(&cache->item); |
| 3137 | |
| 3138 | if (bargs->usage_min == 0) |
| 3139 | user_thresh_min = 0; |
| 3140 | else |
| 3141 | user_thresh_min = div_factor_fine(cache->key.offset, |
| 3142 | bargs->usage_min); |
| 3143 | |
| 3144 | if (bargs->usage_max == 0) |
| 3145 | user_thresh_max = 1; |
| 3146 | else if (bargs->usage_max > 100) |
| 3147 | user_thresh_max = cache->key.offset; |
| 3148 | else |
| 3149 | user_thresh_max = div_factor_fine(cache->key.offset, |
| 3150 | bargs->usage_max); |
| 3151 | |
| 3152 | if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max) |
| 3153 | ret = 0; |
| 3154 | |
| 3155 | btrfs_put_block_group(cache); |
| 3156 | return ret; |
| 3157 | } |
| 3158 | |
| 3159 | static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, |
| 3160 | u64 chunk_offset, struct btrfs_balance_args *bargs) |
| 3161 | { |
| 3162 | struct btrfs_block_group_cache *cache; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3163 | u64 chunk_used, user_thresh; |
| 3164 | int ret = 1; |
| 3165 | |
| 3166 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 3167 | chunk_used = btrfs_block_group_used(&cache->item); |
| 3168 | |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame^] | 3169 | if (bargs->usage_min == 0) |
Ilya Dryomov | 3e39cea | 2013-02-12 16:28:59 +0000 | [diff] [blame] | 3170 | user_thresh = 1; |
Ilya Dryomov | a105bb8 | 2013-01-21 15:15:56 +0200 | [diff] [blame] | 3171 | else if (bargs->usage > 100) |
| 3172 | user_thresh = cache->key.offset; |
| 3173 | else |
| 3174 | user_thresh = div_factor_fine(cache->key.offset, |
| 3175 | bargs->usage); |
| 3176 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3177 | if (chunk_used < user_thresh) |
| 3178 | ret = 0; |
| 3179 | |
| 3180 | btrfs_put_block_group(cache); |
| 3181 | return ret; |
| 3182 | } |
| 3183 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3184 | static int chunk_devid_filter(struct extent_buffer *leaf, |
| 3185 | struct btrfs_chunk *chunk, |
| 3186 | struct btrfs_balance_args *bargs) |
| 3187 | { |
| 3188 | struct btrfs_stripe *stripe; |
| 3189 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3190 | int i; |
| 3191 | |
| 3192 | for (i = 0; i < num_stripes; i++) { |
| 3193 | stripe = btrfs_stripe_nr(chunk, i); |
| 3194 | if (btrfs_stripe_devid(leaf, stripe) == bargs->devid) |
| 3195 | return 0; |
| 3196 | } |
| 3197 | |
| 3198 | return 1; |
| 3199 | } |
| 3200 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3201 | /* [pstart, pend) */ |
| 3202 | static int chunk_drange_filter(struct extent_buffer *leaf, |
| 3203 | struct btrfs_chunk *chunk, |
| 3204 | u64 chunk_offset, |
| 3205 | struct btrfs_balance_args *bargs) |
| 3206 | { |
| 3207 | struct btrfs_stripe *stripe; |
| 3208 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3209 | u64 stripe_offset; |
| 3210 | u64 stripe_length; |
| 3211 | int factor; |
| 3212 | int i; |
| 3213 | |
| 3214 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID)) |
| 3215 | return 0; |
| 3216 | |
| 3217 | if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3218 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 3219 | factor = num_stripes / 2; |
| 3220 | } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) { |
| 3221 | factor = num_stripes - 1; |
| 3222 | } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) { |
| 3223 | factor = num_stripes - 2; |
| 3224 | } else { |
| 3225 | factor = num_stripes; |
| 3226 | } |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3227 | |
| 3228 | for (i = 0; i < num_stripes; i++) { |
| 3229 | stripe = btrfs_stripe_nr(chunk, i); |
| 3230 | if (btrfs_stripe_devid(leaf, stripe) != bargs->devid) |
| 3231 | continue; |
| 3232 | |
| 3233 | stripe_offset = btrfs_stripe_offset(leaf, stripe); |
| 3234 | stripe_length = btrfs_chunk_length(leaf, chunk); |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 3235 | stripe_length = div_u64(stripe_length, factor); |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3236 | |
| 3237 | if (stripe_offset < bargs->pend && |
| 3238 | stripe_offset + stripe_length > bargs->pstart) |
| 3239 | return 0; |
| 3240 | } |
| 3241 | |
| 3242 | return 1; |
| 3243 | } |
| 3244 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3245 | /* [vstart, vend) */ |
| 3246 | static int chunk_vrange_filter(struct extent_buffer *leaf, |
| 3247 | struct btrfs_chunk *chunk, |
| 3248 | u64 chunk_offset, |
| 3249 | struct btrfs_balance_args *bargs) |
| 3250 | { |
| 3251 | if (chunk_offset < bargs->vend && |
| 3252 | chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart) |
| 3253 | /* at least part of the chunk is inside this vrange */ |
| 3254 | return 0; |
| 3255 | |
| 3256 | return 1; |
| 3257 | } |
| 3258 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3259 | static int chunk_stripes_range_filter(struct extent_buffer *leaf, |
| 3260 | struct btrfs_chunk *chunk, |
| 3261 | struct btrfs_balance_args *bargs) |
| 3262 | { |
| 3263 | int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 3264 | |
| 3265 | if (bargs->stripes_min <= num_stripes |
| 3266 | && num_stripes <= bargs->stripes_max) |
| 3267 | return 0; |
| 3268 | |
| 3269 | return 1; |
| 3270 | } |
| 3271 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3272 | static int chunk_soft_convert_filter(u64 chunk_type, |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3273 | struct btrfs_balance_args *bargs) |
| 3274 | { |
| 3275 | if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT)) |
| 3276 | return 0; |
| 3277 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3278 | chunk_type = chunk_to_extended(chunk_type) & |
| 3279 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3280 | |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3281 | if (bargs->target == chunk_type) |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3282 | return 1; |
| 3283 | |
| 3284 | return 0; |
| 3285 | } |
| 3286 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3287 | static int should_balance_chunk(struct btrfs_root *root, |
| 3288 | struct extent_buffer *leaf, |
| 3289 | struct btrfs_chunk *chunk, u64 chunk_offset) |
| 3290 | { |
| 3291 | struct btrfs_balance_control *bctl = root->fs_info->balance_ctl; |
| 3292 | struct btrfs_balance_args *bargs = NULL; |
| 3293 | u64 chunk_type = btrfs_chunk_type(leaf, chunk); |
| 3294 | |
| 3295 | /* type filter */ |
| 3296 | if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) & |
| 3297 | (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) { |
| 3298 | return 0; |
| 3299 | } |
| 3300 | |
| 3301 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3302 | bargs = &bctl->data; |
| 3303 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3304 | bargs = &bctl->sys; |
| 3305 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3306 | bargs = &bctl->meta; |
| 3307 | |
Ilya Dryomov | ed25e9b | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3308 | /* profiles filter */ |
| 3309 | if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) && |
| 3310 | chunk_profiles_filter(chunk_type, bargs)) { |
| 3311 | return 0; |
| 3312 | } |
| 3313 | |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3314 | /* usage filter */ |
| 3315 | if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) && |
| 3316 | chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) { |
| 3317 | return 0; |
David Sterba | bc30946 | 2015-10-20 18:22:13 +0200 | [diff] [blame^] | 3318 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) && |
| 3319 | chunk_usage_range_filter(bctl->fs_info, chunk_offset, bargs)) { |
| 3320 | return 0; |
Ilya Dryomov | 5ce5b3c | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3321 | } |
| 3322 | |
Ilya Dryomov | 409d404 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3323 | /* devid filter */ |
| 3324 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) && |
| 3325 | chunk_devid_filter(leaf, chunk, bargs)) { |
| 3326 | return 0; |
| 3327 | } |
| 3328 | |
Ilya Dryomov | 94e60d5 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3329 | /* drange filter, makes sense only with devid filter */ |
| 3330 | if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) && |
| 3331 | chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) { |
| 3332 | return 0; |
| 3333 | } |
| 3334 | |
Ilya Dryomov | ea67176 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3335 | /* vrange filter */ |
| 3336 | if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) && |
| 3337 | chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) { |
| 3338 | return 0; |
| 3339 | } |
| 3340 | |
GabrÃel Arthúr Pétursson | dee32d0 | 2015-09-28 22:32:41 +0000 | [diff] [blame] | 3341 | /* stripes filter */ |
| 3342 | if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) && |
| 3343 | chunk_stripes_range_filter(leaf, chunk, bargs)) { |
| 3344 | return 0; |
| 3345 | } |
| 3346 | |
Ilya Dryomov | cfa4c96 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3347 | /* soft profile changing mode */ |
| 3348 | if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) && |
| 3349 | chunk_soft_convert_filter(chunk_type, bargs)) { |
| 3350 | return 0; |
| 3351 | } |
| 3352 | |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3353 | /* |
| 3354 | * limited by count, must be the last filter |
| 3355 | */ |
| 3356 | if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) { |
| 3357 | if (bargs->limit == 0) |
| 3358 | return 0; |
| 3359 | else |
| 3360 | bargs->limit--; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3361 | } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) { |
| 3362 | /* |
| 3363 | * Same logic as the 'limit' filter; the minimum cannot be |
| 3364 | * determined here because we do not have the global informatoin |
| 3365 | * about the count of all chunks that satisfy the filters. |
| 3366 | */ |
| 3367 | if (bargs->limit_max == 0) |
| 3368 | return 0; |
| 3369 | else |
| 3370 | bargs->limit_max--; |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3371 | } |
| 3372 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3373 | return 1; |
| 3374 | } |
| 3375 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3376 | static int __btrfs_balance(struct btrfs_fs_info *fs_info) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3377 | { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3378 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3379 | struct btrfs_root *chunk_root = fs_info->chunk_root; |
| 3380 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 3381 | struct list_head *devices; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3382 | struct btrfs_device *device; |
| 3383 | u64 old_size; |
| 3384 | u64 size_to_free; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3385 | u64 chunk_type; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3386 | struct btrfs_chunk *chunk; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3387 | struct btrfs_path *path; |
| 3388 | struct btrfs_key key; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3389 | struct btrfs_key found_key; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3390 | struct btrfs_trans_handle *trans; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3391 | struct extent_buffer *leaf; |
| 3392 | int slot; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3393 | int ret; |
| 3394 | int enospc_errors = 0; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3395 | bool counting = true; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3396 | /* 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] | 3397 | u64 limit_data = bctl->data.limit; |
| 3398 | u64 limit_meta = bctl->meta.limit; |
| 3399 | u64 limit_sys = bctl->sys.limit; |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3400 | u32 count_data = 0; |
| 3401 | u32 count_meta = 0; |
| 3402 | u32 count_sys = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3403 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3404 | /* step one make some room on all the devices */ |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3405 | devices = &fs_info->fs_devices->devices; |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 3406 | list_for_each_entry(device, devices, dev_list) { |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 3407 | old_size = btrfs_device_get_total_bytes(device); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3408 | size_to_free = div_factor(old_size, 1); |
| 3409 | size_to_free = min(size_to_free, (u64)1 * 1024 * 1024); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3410 | if (!device->writeable || |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 3411 | btrfs_device_get_total_bytes(device) - |
| 3412 | btrfs_device_get_bytes_used(device) > size_to_free || |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 3413 | device->is_tgtdev_for_dev_replace) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3414 | continue; |
| 3415 | |
| 3416 | ret = btrfs_shrink_device(device, old_size - size_to_free); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3417 | if (ret == -ENOSPC) |
| 3418 | break; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3419 | BUG_ON(ret); |
| 3420 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3421 | trans = btrfs_start_transaction(dev_root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 3422 | BUG_ON(IS_ERR(trans)); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3423 | |
| 3424 | ret = btrfs_grow_device(trans, device, old_size); |
| 3425 | BUG_ON(ret); |
| 3426 | |
| 3427 | btrfs_end_transaction(trans, dev_root); |
| 3428 | } |
| 3429 | |
| 3430 | /* step two, relocate all the chunks */ |
| 3431 | path = btrfs_alloc_path(); |
Mark Fasheh | 17e9f79 | 2011-07-12 11:10:23 -0700 | [diff] [blame] | 3432 | if (!path) { |
| 3433 | ret = -ENOMEM; |
| 3434 | goto error; |
| 3435 | } |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3436 | |
| 3437 | /* zero out stat counters */ |
| 3438 | spin_lock(&fs_info->balance_lock); |
| 3439 | memset(&bctl->stat, 0, sizeof(bctl->stat)); |
| 3440 | spin_unlock(&fs_info->balance_lock); |
| 3441 | again: |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3442 | if (!counting) { |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3443 | /* |
| 3444 | * The single value limit and min/max limits use the same bytes |
| 3445 | * in the |
| 3446 | */ |
David Sterba | 7d824b6 | 2014-05-07 17:37:51 +0200 | [diff] [blame] | 3447 | bctl->data.limit = limit_data; |
| 3448 | bctl->meta.limit = limit_meta; |
| 3449 | bctl->sys.limit = limit_sys; |
| 3450 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3451 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 3452 | key.offset = (u64)-1; |
| 3453 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 3454 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3455 | while (1) { |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3456 | if ((!counting && atomic_read(&fs_info->balance_pause_req)) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3457 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3458 | ret = -ECANCELED; |
| 3459 | goto error; |
| 3460 | } |
| 3461 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3462 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3463 | ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3464 | if (ret < 0) { |
| 3465 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3466 | goto error; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3467 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3468 | |
| 3469 | /* |
| 3470 | * this shouldn't happen, it means the last relocate |
| 3471 | * failed |
| 3472 | */ |
| 3473 | if (ret == 0) |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3474 | BUG(); /* FIXME break ? */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3475 | |
| 3476 | ret = btrfs_previous_item(chunk_root, path, 0, |
| 3477 | BTRFS_CHUNK_ITEM_KEY); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3478 | if (ret) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3479 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3480 | ret = 0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3481 | break; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3482 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3483 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3484 | leaf = path->nodes[0]; |
| 3485 | slot = path->slots[0]; |
| 3486 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 3487 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3488 | if (found_key.objectid != key.objectid) { |
| 3489 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3490 | break; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3491 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 3492 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3493 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3494 | chunk_type = btrfs_chunk_type(leaf, chunk); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3495 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3496 | if (!counting) { |
| 3497 | spin_lock(&fs_info->balance_lock); |
| 3498 | bctl->stat.considered++; |
| 3499 | spin_unlock(&fs_info->balance_lock); |
| 3500 | } |
| 3501 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3502 | ret = should_balance_chunk(chunk_root, leaf, chunk, |
| 3503 | found_key.offset); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3504 | btrfs_release_path(path); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3505 | if (!ret) { |
| 3506 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3507 | goto loop; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3508 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3509 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3510 | if (counting) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3511 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3512 | spin_lock(&fs_info->balance_lock); |
| 3513 | bctl->stat.expected++; |
| 3514 | spin_unlock(&fs_info->balance_lock); |
David Sterba | 12907fc | 2015-10-10 17:16:50 +0200 | [diff] [blame] | 3515 | |
| 3516 | if (chunk_type & BTRFS_BLOCK_GROUP_DATA) |
| 3517 | count_data++; |
| 3518 | else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3519 | count_sys++; |
| 3520 | else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA) |
| 3521 | count_meta++; |
| 3522 | |
| 3523 | goto loop; |
| 3524 | } |
| 3525 | |
| 3526 | /* |
| 3527 | * Apply limit_min filter, no need to check if the LIMITS |
| 3528 | * filter is used, limit_min is 0 by default |
| 3529 | */ |
| 3530 | if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) && |
| 3531 | count_data < bctl->data.limit_min) |
| 3532 | || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) && |
| 3533 | count_meta < bctl->meta.limit_min) |
| 3534 | || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) && |
| 3535 | count_sys < bctl->sys.limit_min)) { |
| 3536 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3537 | goto loop; |
| 3538 | } |
| 3539 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3540 | ret = btrfs_relocate_chunk(chunk_root, |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3541 | found_key.offset); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 3542 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 508794e | 2011-07-02 21:24:41 +0000 | [diff] [blame] | 3543 | if (ret && ret != -ENOSPC) |
| 3544 | goto error; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3545 | if (ret == -ENOSPC) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3546 | enospc_errors++; |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3547 | } else { |
| 3548 | spin_lock(&fs_info->balance_lock); |
| 3549 | bctl->stat.completed++; |
| 3550 | spin_unlock(&fs_info->balance_lock); |
| 3551 | } |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3552 | loop: |
Ilya Dryomov | 795a332 | 2013-08-27 13:50:44 +0300 | [diff] [blame] | 3553 | if (found_key.offset == 0) |
| 3554 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 3555 | key.offset = found_key.offset - 1; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3556 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3557 | |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3558 | if (counting) { |
| 3559 | btrfs_release_path(path); |
| 3560 | counting = false; |
| 3561 | goto again; |
| 3562 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3563 | error: |
| 3564 | btrfs_free_path(path); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3565 | if (enospc_errors) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3566 | btrfs_info(fs_info, "%d enospc errors during balance", |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3567 | enospc_errors); |
| 3568 | if (!ret) |
| 3569 | ret = -ENOSPC; |
| 3570 | } |
| 3571 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3572 | return ret; |
| 3573 | } |
| 3574 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3575 | /** |
| 3576 | * alloc_profile_is_valid - see if a given profile is valid and reduced |
| 3577 | * @flags: profile to validate |
| 3578 | * @extended: if true @flags is treated as an extended profile |
| 3579 | */ |
| 3580 | static int alloc_profile_is_valid(u64 flags, int extended) |
| 3581 | { |
| 3582 | u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK : |
| 3583 | BTRFS_BLOCK_GROUP_PROFILE_MASK); |
| 3584 | |
| 3585 | flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK; |
| 3586 | |
| 3587 | /* 1) check that all other bits are zeroed */ |
| 3588 | if (flags & ~mask) |
| 3589 | return 0; |
| 3590 | |
| 3591 | /* 2) see if profile is reduced */ |
| 3592 | if (flags == 0) |
| 3593 | return !extended; /* "0" is valid for usual profiles */ |
| 3594 | |
| 3595 | /* true if exactly one bit set */ |
| 3596 | return (flags & (flags - 1)) == 0; |
| 3597 | } |
| 3598 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3599 | static inline int balance_need_close(struct btrfs_fs_info *fs_info) |
| 3600 | { |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3601 | /* cancel requested || normal exit path */ |
| 3602 | return atomic_read(&fs_info->balance_cancel_req) || |
| 3603 | (atomic_read(&fs_info->balance_pause_req) == 0 && |
| 3604 | atomic_read(&fs_info->balance_cancel_req) == 0); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3605 | } |
| 3606 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3607 | static void __cancel_balance(struct btrfs_fs_info *fs_info) |
| 3608 | { |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3609 | int ret; |
| 3610 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3611 | unset_balance_control(fs_info); |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3612 | ret = del_balance_item(fs_info->tree_root); |
Liu Bo | 0f788c5 | 2013-03-04 16:25:40 +0000 | [diff] [blame] | 3613 | if (ret) |
Anand Jain | a4553fe | 2015-09-25 14:43:01 +0800 | [diff] [blame] | 3614 | btrfs_std_error(fs_info, ret, NULL); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 3615 | |
| 3616 | atomic_set(&fs_info->mutually_exclusive_operation_running, 0); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3617 | } |
| 3618 | |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3619 | /* Non-zero return value signifies invalidity */ |
| 3620 | static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg, |
| 3621 | u64 allowed) |
| 3622 | { |
| 3623 | return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3624 | (!alloc_profile_is_valid(bctl_arg->target, 1) || |
| 3625 | (bctl_arg->target & ~allowed))); |
| 3626 | } |
| 3627 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3628 | /* |
| 3629 | * Should be called with both balance and volume mutexes held |
| 3630 | */ |
| 3631 | int btrfs_balance(struct btrfs_balance_control *bctl, |
| 3632 | struct btrfs_ioctl_balance_args *bargs) |
| 3633 | { |
| 3634 | struct btrfs_fs_info *fs_info = bctl->fs_info; |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3635 | u64 allowed; |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3636 | int mixed = 0; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3637 | int ret; |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3638 | u64 num_devices; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3639 | unsigned seq; |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3640 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3641 | if (btrfs_fs_closing(fs_info) || |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3642 | atomic_read(&fs_info->balance_pause_req) || |
| 3643 | atomic_read(&fs_info->balance_cancel_req)) { |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3644 | ret = -EINVAL; |
| 3645 | goto out; |
| 3646 | } |
| 3647 | |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3648 | allowed = btrfs_super_incompat_flags(fs_info->super_copy); |
| 3649 | if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 3650 | mixed = 1; |
| 3651 | |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3652 | /* |
| 3653 | * In case of mixed groups both data and meta should be picked, |
| 3654 | * and identical options should be given for both of them. |
| 3655 | */ |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3656 | allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA; |
| 3657 | if (mixed && (bctl->flags & allowed)) { |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3658 | if (!(bctl->flags & BTRFS_BALANCE_DATA) || |
| 3659 | !(bctl->flags & BTRFS_BALANCE_METADATA) || |
| 3660 | memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3661 | btrfs_err(fs_info, "with mixed groups data and " |
| 3662 | "metadata balance options must be the same"); |
Ilya Dryomov | f43ffb6 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3663 | ret = -EINVAL; |
| 3664 | goto out; |
| 3665 | } |
| 3666 | } |
| 3667 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3668 | num_devices = fs_info->fs_devices->num_devices; |
| 3669 | btrfs_dev_replace_lock(&fs_info->dev_replace); |
| 3670 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) { |
| 3671 | BUG_ON(num_devices < 1); |
| 3672 | num_devices--; |
| 3673 | } |
| 3674 | btrfs_dev_replace_unlock(&fs_info->dev_replace); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3675 | allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE; |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3676 | if (num_devices == 1) |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3677 | allowed |= BTRFS_BLOCK_GROUP_DUP; |
Andreas Philipp | 8250dab | 2013-05-11 11:13:03 +0000 | [diff] [blame] | 3678 | else if (num_devices > 1) |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3679 | allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1); |
Andreas Philipp | 8250dab | 2013-05-11 11:13:03 +0000 | [diff] [blame] | 3680 | if (num_devices > 2) |
| 3681 | allowed |= BTRFS_BLOCK_GROUP_RAID5; |
| 3682 | if (num_devices > 3) |
| 3683 | allowed |= (BTRFS_BLOCK_GROUP_RAID10 | |
| 3684 | BTRFS_BLOCK_GROUP_RAID6); |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3685 | if (validate_convert_profile(&bctl->data, allowed)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3686 | btrfs_err(fs_info, "unable to start balance with target " |
| 3687 | "data profile %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 3688 | bctl->data.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3689 | ret = -EINVAL; |
| 3690 | goto out; |
| 3691 | } |
Alexandru Moise | bdcd3c9 | 2015-09-22 20:02:25 +0000 | [diff] [blame] | 3692 | if (validate_convert_profile(&bctl->meta, allowed)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3693 | btrfs_err(fs_info, |
| 3694 | "unable to start balance with target metadata profile %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 3695 | bctl->meta.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->sys, 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 system profile %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 3702 | bctl->sys.target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3703 | ret = -EINVAL; |
| 3704 | goto out; |
| 3705 | } |
| 3706 | |
Ilya Dryomov | e4837f8 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3707 | /* allow dup'ed data chunks only in mixed mode */ |
| 3708 | if (!mixed && (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
Ilya Dryomov | 6728b19 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3709 | (bctl->data.target & BTRFS_BLOCK_GROUP_DUP)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3710 | btrfs_err(fs_info, "dup for data is not allowed"); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3711 | ret = -EINVAL; |
| 3712 | goto out; |
| 3713 | } |
| 3714 | |
| 3715 | /* allow to reduce meta or sys integrity only if force set */ |
| 3716 | allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3717 | BTRFS_BLOCK_GROUP_RAID10 | |
| 3718 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3719 | BTRFS_BLOCK_GROUP_RAID6; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3720 | do { |
| 3721 | seq = read_seqbegin(&fs_info->profiles_lock); |
| 3722 | |
| 3723 | if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3724 | (fs_info->avail_system_alloc_bits & allowed) && |
| 3725 | !(bctl->sys.target & allowed)) || |
| 3726 | ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) && |
| 3727 | (fs_info->avail_metadata_alloc_bits & allowed) && |
| 3728 | !(bctl->meta.target & allowed))) { |
| 3729 | if (bctl->flags & BTRFS_BALANCE_FORCE) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3730 | btrfs_info(fs_info, "force reducing metadata integrity"); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3731 | } else { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3732 | btrfs_err(fs_info, "balance will reduce metadata " |
| 3733 | "integrity, use force if you want this"); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3734 | ret = -EINVAL; |
| 3735 | goto out; |
| 3736 | } |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3737 | } |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3738 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3739 | |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3740 | if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
Zhao Lei | 943c6e9 | 2015-08-19 15:54:15 +0800 | [diff] [blame] | 3741 | fs_info->num_tolerated_disk_barrier_failures = min( |
| 3742 | btrfs_calc_num_tolerated_disk_barrier_failures(fs_info), |
| 3743 | btrfs_get_num_tolerated_disk_barrier_failures( |
| 3744 | bctl->sys.target)); |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3745 | } |
| 3746 | |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3747 | ret = insert_balance_item(fs_info->tree_root, bctl); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3748 | if (ret && ret != -EEXIST) |
Ilya Dryomov | 0940ebf | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3749 | goto out; |
| 3750 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3751 | if (!(bctl->flags & BTRFS_BALANCE_RESUME)) { |
| 3752 | BUG_ON(ret == -EEXIST); |
| 3753 | set_balance_control(bctl); |
| 3754 | } else { |
| 3755 | BUG_ON(ret != -EEXIST); |
| 3756 | spin_lock(&fs_info->balance_lock); |
| 3757 | update_balance_args(bctl); |
| 3758 | spin_unlock(&fs_info->balance_lock); |
| 3759 | } |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3760 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3761 | atomic_inc(&fs_info->balance_running); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3762 | mutex_unlock(&fs_info->balance_mutex); |
| 3763 | |
| 3764 | ret = __btrfs_balance(fs_info); |
| 3765 | |
| 3766 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3767 | atomic_dec(&fs_info->balance_running); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3768 | |
Ilya Dryomov | bf023ec | 2013-02-12 16:27:46 +0000 | [diff] [blame] | 3769 | if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3770 | fs_info->num_tolerated_disk_barrier_failures = |
| 3771 | btrfs_calc_num_tolerated_disk_barrier_failures(fs_info); |
| 3772 | } |
| 3773 | |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3774 | if (bargs) { |
| 3775 | memset(bargs, 0, sizeof(*bargs)); |
Ilya Dryomov | 19a39dc | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3776 | update_ioctl_balance_args(fs_info, 0, bargs); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3777 | } |
| 3778 | |
Ilya Dryomov | 3a01aa7 | 2013-03-06 01:57:55 -0700 | [diff] [blame] | 3779 | if ((ret && ret != -ECANCELED && ret != -ENOSPC) || |
| 3780 | balance_need_close(fs_info)) { |
| 3781 | __cancel_balance(fs_info); |
| 3782 | } |
| 3783 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3784 | wake_up(&fs_info->balance_wait_q); |
Ilya Dryomov | c9e9f97 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3785 | |
| 3786 | return ret; |
| 3787 | out: |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3788 | if (bctl->flags & BTRFS_BALANCE_RESUME) |
| 3789 | __cancel_balance(fs_info); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 3790 | else { |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3791 | kfree(bctl); |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 3792 | atomic_set(&fs_info->mutually_exclusive_operation_running, 0); |
| 3793 | } |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3794 | return ret; |
| 3795 | } |
| 3796 | |
| 3797 | static int balance_kthread(void *data) |
| 3798 | { |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3799 | struct btrfs_fs_info *fs_info = data; |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3800 | int ret = 0; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3801 | |
| 3802 | mutex_lock(&fs_info->volume_mutex); |
| 3803 | mutex_lock(&fs_info->balance_mutex); |
| 3804 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3805 | if (fs_info->balance_ctl) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3806 | btrfs_info(fs_info, "continuing balance"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3807 | ret = btrfs_balance(fs_info->balance_ctl, NULL); |
Ilya Dryomov | 9555c6c | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3808 | } |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3809 | |
| 3810 | mutex_unlock(&fs_info->balance_mutex); |
| 3811 | mutex_unlock(&fs_info->volume_mutex); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3812 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3813 | return ret; |
| 3814 | } |
| 3815 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3816 | int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info) |
| 3817 | { |
| 3818 | struct task_struct *tsk; |
| 3819 | |
| 3820 | spin_lock(&fs_info->balance_lock); |
| 3821 | if (!fs_info->balance_ctl) { |
| 3822 | spin_unlock(&fs_info->balance_lock); |
| 3823 | return 0; |
| 3824 | } |
| 3825 | spin_unlock(&fs_info->balance_lock); |
| 3826 | |
| 3827 | if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 3828 | btrfs_info(fs_info, "force skipping balance"); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3829 | return 0; |
| 3830 | } |
| 3831 | |
| 3832 | tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance"); |
Sachin Kamat | cd63397 | 2013-07-15 16:52:18 +0530 | [diff] [blame] | 3833 | return PTR_ERR_OR_ZERO(tsk); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3834 | } |
| 3835 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3836 | int btrfs_recover_balance(struct btrfs_fs_info *fs_info) |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3837 | { |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3838 | struct btrfs_balance_control *bctl; |
| 3839 | struct btrfs_balance_item *item; |
| 3840 | struct btrfs_disk_balance_args disk_bargs; |
| 3841 | struct btrfs_path *path; |
| 3842 | struct extent_buffer *leaf; |
| 3843 | struct btrfs_key key; |
| 3844 | int ret; |
| 3845 | |
| 3846 | path = btrfs_alloc_path(); |
| 3847 | if (!path) |
| 3848 | return -ENOMEM; |
| 3849 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3850 | key.objectid = BTRFS_BALANCE_OBJECTID; |
| 3851 | key.type = BTRFS_BALANCE_ITEM_KEY; |
| 3852 | key.offset = 0; |
| 3853 | |
| 3854 | ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0); |
| 3855 | if (ret < 0) |
| 3856 | goto out; |
| 3857 | if (ret > 0) { /* ret = -ENOENT; */ |
| 3858 | ret = 0; |
| 3859 | goto out; |
| 3860 | } |
| 3861 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3862 | bctl = kzalloc(sizeof(*bctl), GFP_NOFS); |
| 3863 | if (!bctl) { |
| 3864 | ret = -ENOMEM; |
| 3865 | goto out; |
| 3866 | } |
| 3867 | |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3868 | leaf = path->nodes[0]; |
| 3869 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item); |
| 3870 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3871 | bctl->fs_info = fs_info; |
| 3872 | bctl->flags = btrfs_balance_flags(leaf, item); |
| 3873 | bctl->flags |= BTRFS_BALANCE_RESUME; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3874 | |
| 3875 | btrfs_balance_data(leaf, item, &disk_bargs); |
| 3876 | btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs); |
| 3877 | btrfs_balance_meta(leaf, item, &disk_bargs); |
| 3878 | btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs); |
| 3879 | btrfs_balance_sys(leaf, item, &disk_bargs); |
| 3880 | btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs); |
| 3881 | |
Ilya Dryomov | ed0fb78 | 2013-01-20 15:57:57 +0200 | [diff] [blame] | 3882 | WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)); |
| 3883 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3884 | mutex_lock(&fs_info->volume_mutex); |
| 3885 | mutex_lock(&fs_info->balance_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3886 | |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3887 | set_balance_control(bctl); |
| 3888 | |
| 3889 | mutex_unlock(&fs_info->balance_mutex); |
| 3890 | mutex_unlock(&fs_info->volume_mutex); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3891 | out: |
| 3892 | btrfs_free_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3893 | return ret; |
| 3894 | } |
| 3895 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3896 | int btrfs_pause_balance(struct btrfs_fs_info *fs_info) |
| 3897 | { |
| 3898 | int ret = 0; |
| 3899 | |
| 3900 | mutex_lock(&fs_info->balance_mutex); |
| 3901 | if (!fs_info->balance_ctl) { |
| 3902 | mutex_unlock(&fs_info->balance_mutex); |
| 3903 | return -ENOTCONN; |
| 3904 | } |
| 3905 | |
| 3906 | if (atomic_read(&fs_info->balance_running)) { |
| 3907 | atomic_inc(&fs_info->balance_pause_req); |
| 3908 | mutex_unlock(&fs_info->balance_mutex); |
| 3909 | |
| 3910 | wait_event(fs_info->balance_wait_q, |
| 3911 | atomic_read(&fs_info->balance_running) == 0); |
| 3912 | |
| 3913 | mutex_lock(&fs_info->balance_mutex); |
| 3914 | /* we are good with balance_ctl ripped off from under us */ |
| 3915 | BUG_ON(atomic_read(&fs_info->balance_running)); |
| 3916 | atomic_dec(&fs_info->balance_pause_req); |
| 3917 | } else { |
| 3918 | ret = -ENOTCONN; |
| 3919 | } |
| 3920 | |
| 3921 | mutex_unlock(&fs_info->balance_mutex); |
| 3922 | return ret; |
| 3923 | } |
| 3924 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3925 | int btrfs_cancel_balance(struct btrfs_fs_info *fs_info) |
| 3926 | { |
Ilya Dryomov | e649e58 | 2013-10-10 20:40:21 +0300 | [diff] [blame] | 3927 | if (fs_info->sb->s_flags & MS_RDONLY) |
| 3928 | return -EROFS; |
| 3929 | |
Ilya Dryomov | a7e99c6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3930 | mutex_lock(&fs_info->balance_mutex); |
| 3931 | if (!fs_info->balance_ctl) { |
| 3932 | mutex_unlock(&fs_info->balance_mutex); |
| 3933 | return -ENOTCONN; |
| 3934 | } |
| 3935 | |
| 3936 | atomic_inc(&fs_info->balance_cancel_req); |
| 3937 | /* |
| 3938 | * if we are running just wait and return, balance item is |
| 3939 | * deleted in btrfs_balance in this case |
| 3940 | */ |
| 3941 | if (atomic_read(&fs_info->balance_running)) { |
| 3942 | mutex_unlock(&fs_info->balance_mutex); |
| 3943 | wait_event(fs_info->balance_wait_q, |
| 3944 | atomic_read(&fs_info->balance_running) == 0); |
| 3945 | mutex_lock(&fs_info->balance_mutex); |
| 3946 | } else { |
| 3947 | /* __cancel_balance needs volume_mutex */ |
| 3948 | mutex_unlock(&fs_info->balance_mutex); |
| 3949 | mutex_lock(&fs_info->volume_mutex); |
| 3950 | mutex_lock(&fs_info->balance_mutex); |
| 3951 | |
| 3952 | if (fs_info->balance_ctl) |
| 3953 | __cancel_balance(fs_info); |
| 3954 | |
| 3955 | mutex_unlock(&fs_info->volume_mutex); |
| 3956 | } |
| 3957 | |
| 3958 | BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running)); |
| 3959 | atomic_dec(&fs_info->balance_cancel_req); |
| 3960 | mutex_unlock(&fs_info->balance_mutex); |
| 3961 | return 0; |
| 3962 | } |
| 3963 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 3964 | static int btrfs_uuid_scan_kthread(void *data) |
| 3965 | { |
| 3966 | struct btrfs_fs_info *fs_info = data; |
| 3967 | struct btrfs_root *root = fs_info->tree_root; |
| 3968 | struct btrfs_key key; |
| 3969 | struct btrfs_key max_key; |
| 3970 | struct btrfs_path *path = NULL; |
| 3971 | int ret = 0; |
| 3972 | struct extent_buffer *eb; |
| 3973 | int slot; |
| 3974 | struct btrfs_root_item root_item; |
| 3975 | u32 item_size; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 3976 | struct btrfs_trans_handle *trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 3977 | |
| 3978 | path = btrfs_alloc_path(); |
| 3979 | if (!path) { |
| 3980 | ret = -ENOMEM; |
| 3981 | goto out; |
| 3982 | } |
| 3983 | |
| 3984 | key.objectid = 0; |
| 3985 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 3986 | key.offset = 0; |
| 3987 | |
| 3988 | max_key.objectid = (u64)-1; |
| 3989 | max_key.type = BTRFS_ROOT_ITEM_KEY; |
| 3990 | max_key.offset = (u64)-1; |
| 3991 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 3992 | while (1) { |
Filipe David Borba Manana | 6174d3c | 2013-10-01 16:13:42 +0100 | [diff] [blame] | 3993 | ret = btrfs_search_forward(root, &key, path, 0); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 3994 | if (ret) { |
| 3995 | if (ret > 0) |
| 3996 | ret = 0; |
| 3997 | break; |
| 3998 | } |
| 3999 | |
| 4000 | if (key.type != BTRFS_ROOT_ITEM_KEY || |
| 4001 | (key.objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 4002 | key.objectid != BTRFS_FS_TREE_OBJECTID) || |
| 4003 | key.objectid > BTRFS_LAST_FREE_OBJECTID) |
| 4004 | goto skip; |
| 4005 | |
| 4006 | eb = path->nodes[0]; |
| 4007 | slot = path->slots[0]; |
| 4008 | item_size = btrfs_item_size_nr(eb, slot); |
| 4009 | if (item_size < sizeof(root_item)) |
| 4010 | goto skip; |
| 4011 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4012 | read_extent_buffer(eb, &root_item, |
| 4013 | btrfs_item_ptr_offset(eb, slot), |
| 4014 | (int)sizeof(root_item)); |
| 4015 | if (btrfs_root_refs(&root_item) == 0) |
| 4016 | goto skip; |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4017 | |
| 4018 | if (!btrfs_is_empty_uuid(root_item.uuid) || |
| 4019 | !btrfs_is_empty_uuid(root_item.received_uuid)) { |
| 4020 | if (trans) |
| 4021 | goto update_tree; |
| 4022 | |
| 4023 | btrfs_release_path(path); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4024 | /* |
| 4025 | * 1 - subvol uuid item |
| 4026 | * 1 - received_subvol uuid item |
| 4027 | */ |
| 4028 | trans = btrfs_start_transaction(fs_info->uuid_root, 2); |
| 4029 | if (IS_ERR(trans)) { |
| 4030 | ret = PTR_ERR(trans); |
| 4031 | break; |
| 4032 | } |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4033 | continue; |
| 4034 | } else { |
| 4035 | goto skip; |
| 4036 | } |
| 4037 | update_tree: |
| 4038 | if (!btrfs_is_empty_uuid(root_item.uuid)) { |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4039 | ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root, |
| 4040 | root_item.uuid, |
| 4041 | BTRFS_UUID_KEY_SUBVOL, |
| 4042 | key.objectid); |
| 4043 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4044 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4045 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4046 | break; |
| 4047 | } |
| 4048 | } |
| 4049 | |
| 4050 | if (!btrfs_is_empty_uuid(root_item.received_uuid)) { |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4051 | ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root, |
| 4052 | root_item.received_uuid, |
| 4053 | BTRFS_UUID_KEY_RECEIVED_SUBVOL, |
| 4054 | key.objectid); |
| 4055 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4056 | btrfs_warn(fs_info, "uuid_tree_add failed %d", |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4057 | ret); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4058 | break; |
| 4059 | } |
| 4060 | } |
| 4061 | |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4062 | skip: |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4063 | if (trans) { |
| 4064 | ret = btrfs_end_transaction(trans, fs_info->uuid_root); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4065 | trans = NULL; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4066 | if (ret) |
| 4067 | break; |
| 4068 | } |
| 4069 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4070 | btrfs_release_path(path); |
| 4071 | if (key.offset < (u64)-1) { |
| 4072 | key.offset++; |
| 4073 | } else if (key.type < BTRFS_ROOT_ITEM_KEY) { |
| 4074 | key.offset = 0; |
| 4075 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4076 | } else if (key.objectid < (u64)-1) { |
| 4077 | key.offset = 0; |
| 4078 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4079 | key.objectid++; |
| 4080 | } else { |
| 4081 | break; |
| 4082 | } |
| 4083 | cond_resched(); |
| 4084 | } |
| 4085 | |
| 4086 | out: |
| 4087 | btrfs_free_path(path); |
Filipe David Borba Manana | f45388f | 2013-08-28 10:28:34 +0100 | [diff] [blame] | 4088 | if (trans && !IS_ERR(trans)) |
| 4089 | btrfs_end_transaction(trans, fs_info->uuid_root); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4090 | if (ret) |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4091 | btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4092 | else |
| 4093 | fs_info->update_uuid_tree_gen = 1; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4094 | up(&fs_info->uuid_tree_rescan_sem); |
| 4095 | return 0; |
| 4096 | } |
| 4097 | |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4098 | /* |
| 4099 | * Callback for btrfs_uuid_tree_iterate(). |
| 4100 | * returns: |
| 4101 | * 0 check succeeded, the entry is not outdated. |
| 4102 | * < 0 if an error occured. |
| 4103 | * > 0 if the check failed, which means the caller shall remove the entry. |
| 4104 | */ |
| 4105 | static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info, |
| 4106 | u8 *uuid, u8 type, u64 subid) |
| 4107 | { |
| 4108 | struct btrfs_key key; |
| 4109 | int ret = 0; |
| 4110 | struct btrfs_root *subvol_root; |
| 4111 | |
| 4112 | if (type != BTRFS_UUID_KEY_SUBVOL && |
| 4113 | type != BTRFS_UUID_KEY_RECEIVED_SUBVOL) |
| 4114 | goto out; |
| 4115 | |
| 4116 | key.objectid = subid; |
| 4117 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 4118 | key.offset = (u64)-1; |
| 4119 | subvol_root = btrfs_read_fs_root_no_name(fs_info, &key); |
| 4120 | if (IS_ERR(subvol_root)) { |
| 4121 | ret = PTR_ERR(subvol_root); |
| 4122 | if (ret == -ENOENT) |
| 4123 | ret = 1; |
| 4124 | goto out; |
| 4125 | } |
| 4126 | |
| 4127 | switch (type) { |
| 4128 | case BTRFS_UUID_KEY_SUBVOL: |
| 4129 | if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE)) |
| 4130 | ret = 1; |
| 4131 | break; |
| 4132 | case BTRFS_UUID_KEY_RECEIVED_SUBVOL: |
| 4133 | if (memcmp(uuid, subvol_root->root_item.received_uuid, |
| 4134 | BTRFS_UUID_SIZE)) |
| 4135 | ret = 1; |
| 4136 | break; |
| 4137 | } |
| 4138 | |
| 4139 | out: |
| 4140 | return ret; |
| 4141 | } |
| 4142 | |
| 4143 | static int btrfs_uuid_rescan_kthread(void *data) |
| 4144 | { |
| 4145 | struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data; |
| 4146 | int ret; |
| 4147 | |
| 4148 | /* |
| 4149 | * 1st step is to iterate through the existing UUID tree and |
| 4150 | * to delete all entries that contain outdated data. |
| 4151 | * 2nd step is to add all missing entries to the UUID tree. |
| 4152 | */ |
| 4153 | ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry); |
| 4154 | if (ret < 0) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4155 | btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4156 | up(&fs_info->uuid_tree_rescan_sem); |
| 4157 | return ret; |
| 4158 | } |
| 4159 | return btrfs_uuid_scan_kthread(data); |
| 4160 | } |
| 4161 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4162 | int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4163 | { |
| 4164 | struct btrfs_trans_handle *trans; |
| 4165 | struct btrfs_root *tree_root = fs_info->tree_root; |
| 4166 | struct btrfs_root *uuid_root; |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4167 | struct task_struct *task; |
| 4168 | int ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4169 | |
| 4170 | /* |
| 4171 | * 1 - root node |
| 4172 | * 1 - root item |
| 4173 | */ |
| 4174 | trans = btrfs_start_transaction(tree_root, 2); |
| 4175 | if (IS_ERR(trans)) |
| 4176 | return PTR_ERR(trans); |
| 4177 | |
| 4178 | uuid_root = btrfs_create_tree(trans, fs_info, |
| 4179 | BTRFS_UUID_TREE_OBJECTID); |
| 4180 | if (IS_ERR(uuid_root)) { |
David Sterba | 6d13f54 | 2015-04-24 19:12:01 +0200 | [diff] [blame] | 4181 | ret = PTR_ERR(uuid_root); |
| 4182 | btrfs_abort_transaction(trans, tree_root, ret); |
| 4183 | return ret; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4184 | } |
| 4185 | |
| 4186 | fs_info->uuid_root = uuid_root; |
| 4187 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4188 | ret = btrfs_commit_transaction(trans, tree_root); |
| 4189 | if (ret) |
| 4190 | return ret; |
| 4191 | |
| 4192 | down(&fs_info->uuid_tree_rescan_sem); |
| 4193 | task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid"); |
| 4194 | if (IS_ERR(task)) { |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4195 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4196 | btrfs_warn(fs_info, "failed to start uuid_scan task"); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4197 | up(&fs_info->uuid_tree_rescan_sem); |
| 4198 | return PTR_ERR(task); |
| 4199 | } |
| 4200 | |
| 4201 | return 0; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4202 | } |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 4203 | |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4204 | int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info) |
| 4205 | { |
| 4206 | struct task_struct *task; |
| 4207 | |
| 4208 | down(&fs_info->uuid_tree_rescan_sem); |
| 4209 | task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid"); |
| 4210 | if (IS_ERR(task)) { |
| 4211 | /* fs_info->update_uuid_tree_gen remains 0 in all error case */ |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4212 | btrfs_warn(fs_info, "failed to start uuid_rescan task"); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 4213 | up(&fs_info->uuid_tree_rescan_sem); |
| 4214 | return PTR_ERR(task); |
| 4215 | } |
| 4216 | |
| 4217 | return 0; |
| 4218 | } |
| 4219 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4220 | /* |
| 4221 | * shrinking a device means finding all of the device extents past |
| 4222 | * the new size, and then following the back refs to the chunks. |
| 4223 | * The chunk relocation code actually frees the device extent |
| 4224 | */ |
| 4225 | int btrfs_shrink_device(struct btrfs_device *device, u64 new_size) |
| 4226 | { |
| 4227 | struct btrfs_trans_handle *trans; |
| 4228 | struct btrfs_root *root = device->dev_root; |
| 4229 | struct btrfs_dev_extent *dev_extent = NULL; |
| 4230 | struct btrfs_path *path; |
| 4231 | u64 length; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4232 | u64 chunk_offset; |
| 4233 | int ret; |
| 4234 | int slot; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4235 | int failed = 0; |
| 4236 | bool retried = false; |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4237 | bool checked_pending_chunks = false; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4238 | struct extent_buffer *l; |
| 4239 | struct btrfs_key key; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 4240 | struct btrfs_super_block *super_copy = root->fs_info->super_copy; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4241 | u64 old_total = btrfs_super_total_bytes(super_copy); |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4242 | u64 old_size = btrfs_device_get_total_bytes(device); |
| 4243 | u64 diff = old_size - new_size; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4244 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 4245 | if (device->is_tgtdev_for_dev_replace) |
| 4246 | return -EINVAL; |
| 4247 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4248 | path = btrfs_alloc_path(); |
| 4249 | if (!path) |
| 4250 | return -ENOMEM; |
| 4251 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4252 | path->reada = 2; |
| 4253 | |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 4254 | lock_chunks(root); |
| 4255 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4256 | btrfs_device_set_total_bytes(device, new_size); |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4257 | if (device->writeable) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4258 | device->fs_devices->total_rw_bytes -= diff; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4259 | spin_lock(&root->fs_info->free_chunk_lock); |
| 4260 | root->fs_info->free_chunk_space -= diff; |
| 4261 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 4262 | } |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 4263 | unlock_chunks(root); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4264 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4265 | again: |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4266 | key.objectid = device->devid; |
| 4267 | key.offset = (u64)-1; |
| 4268 | key.type = BTRFS_DEV_EXTENT_KEY; |
| 4269 | |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4270 | do { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4271 | mutex_lock(&root->fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4272 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4273 | if (ret < 0) { |
| 4274 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4275 | goto done; |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4276 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4277 | |
| 4278 | ret = btrfs_previous_item(root, path, 0, key.type); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4279 | if (ret) |
| 4280 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4281 | if (ret < 0) |
| 4282 | goto done; |
| 4283 | if (ret) { |
| 4284 | ret = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4285 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4286 | break; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4287 | } |
| 4288 | |
| 4289 | l = path->nodes[0]; |
| 4290 | slot = path->slots[0]; |
| 4291 | btrfs_item_key_to_cpu(l, &key, path->slots[0]); |
| 4292 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4293 | if (key.objectid != device->devid) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4294 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4295 | btrfs_release_path(path); |
Yan Zheng | bf1fb51 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4296 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4297 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4298 | |
| 4299 | dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent); |
| 4300 | length = btrfs_dev_extent_length(l, dev_extent); |
| 4301 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4302 | if (key.offset + length <= new_size) { |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4303 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4304 | btrfs_release_path(path); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4305 | break; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4306 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4307 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4308 | chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4309 | btrfs_release_path(path); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4310 | |
Zhaolei | dc2ee4e | 2015-08-05 18:00:04 +0800 | [diff] [blame] | 4311 | ret = btrfs_relocate_chunk(root, chunk_offset); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 4312 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4313 | if (ret && ret != -ENOSPC) |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4314 | goto done; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4315 | if (ret == -ENOSPC) |
| 4316 | failed++; |
Ilya Dryomov | 213e64d | 2012-03-27 17:09:18 +0300 | [diff] [blame] | 4317 | } while (key.offset-- > 0); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4318 | |
| 4319 | if (failed && !retried) { |
| 4320 | failed = 0; |
| 4321 | retried = true; |
| 4322 | goto again; |
| 4323 | } else if (failed && retried) { |
| 4324 | ret = -ENOSPC; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 4325 | goto done; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4326 | } |
| 4327 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4328 | /* Shrinking succeeded, else we would be at "done". */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4329 | trans = btrfs_start_transaction(root, 0); |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 4330 | if (IS_ERR(trans)) { |
| 4331 | ret = PTR_ERR(trans); |
| 4332 | goto done; |
| 4333 | } |
| 4334 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4335 | lock_chunks(root); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4336 | |
| 4337 | /* |
| 4338 | * We checked in the above loop all device extents that were already in |
| 4339 | * the device tree. However before we have updated the device's |
| 4340 | * total_bytes to the new size, we might have had chunk allocations that |
| 4341 | * have not complete yet (new block groups attached to transaction |
| 4342 | * handles), and therefore their device extents were not yet in the |
| 4343 | * device tree and we missed them in the loop above. So if we have any |
| 4344 | * pending chunk using a device extent that overlaps the device range |
| 4345 | * that we can not use anymore, commit the current transaction and |
| 4346 | * repeat the search on the device tree - this way we guarantee we will |
| 4347 | * not have chunks using device extents that end beyond 'new_size'. |
| 4348 | */ |
| 4349 | if (!checked_pending_chunks) { |
| 4350 | u64 start = new_size; |
| 4351 | u64 len = old_size - new_size; |
| 4352 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 4353 | if (contains_pending_extent(trans->transaction, device, |
| 4354 | &start, len)) { |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4355 | unlock_chunks(root); |
| 4356 | checked_pending_chunks = true; |
| 4357 | failed = 0; |
| 4358 | retried = false; |
| 4359 | ret = btrfs_commit_transaction(trans, root); |
| 4360 | if (ret) |
| 4361 | goto done; |
| 4362 | goto again; |
| 4363 | } |
| 4364 | } |
| 4365 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4366 | btrfs_device_set_disk_total_bytes(device, new_size); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 4367 | if (list_empty(&device->resized_list)) |
| 4368 | list_add_tail(&device->resized_list, |
| 4369 | &root->fs_info->fs_devices->resized_devices); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4370 | |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4371 | WARN_ON(diff > old_total); |
| 4372 | btrfs_set_super_total_bytes(super_copy, old_total - diff); |
| 4373 | unlock_chunks(root); |
Miao Xie | 2196d6e | 2014-09-03 21:35:41 +0800 | [diff] [blame] | 4374 | |
| 4375 | /* Now btrfs_update_device() will change the on-disk size. */ |
| 4376 | ret = btrfs_update_device(trans, device); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 4377 | btrfs_end_transaction(trans, root); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4378 | done: |
| 4379 | btrfs_free_path(path); |
Filipe Manana | 53e489b | 2015-06-02 14:43:21 +0100 | [diff] [blame] | 4380 | if (ret) { |
| 4381 | lock_chunks(root); |
| 4382 | btrfs_device_set_total_bytes(device, old_size); |
| 4383 | if (device->writeable) |
| 4384 | device->fs_devices->total_rw_bytes += diff; |
| 4385 | spin_lock(&root->fs_info->free_chunk_lock); |
| 4386 | root->fs_info->free_chunk_space += diff; |
| 4387 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 4388 | unlock_chunks(root); |
| 4389 | } |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 4390 | return ret; |
| 4391 | } |
| 4392 | |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 4393 | static int btrfs_add_system_chunk(struct btrfs_root *root, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4394 | struct btrfs_key *key, |
| 4395 | struct btrfs_chunk *chunk, int item_size) |
| 4396 | { |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 4397 | struct btrfs_super_block *super_copy = root->fs_info->super_copy; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4398 | struct btrfs_disk_key disk_key; |
| 4399 | u32 array_size; |
| 4400 | u8 *ptr; |
| 4401 | |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4402 | lock_chunks(root); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4403 | array_size = btrfs_super_sys_array_size(super_copy); |
Gui Hecheng | 5f43f86 | 2014-04-21 20:13:11 +0800 | [diff] [blame] | 4404 | if (array_size + item_size + sizeof(disk_key) |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4405 | > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) { |
| 4406 | unlock_chunks(root); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4407 | return -EFBIG; |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4408 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4409 | |
| 4410 | ptr = super_copy->sys_chunk_array + array_size; |
| 4411 | btrfs_cpu_key_to_disk(&disk_key, key); |
| 4412 | memcpy(ptr, &disk_key, sizeof(disk_key)); |
| 4413 | ptr += sizeof(disk_key); |
| 4414 | memcpy(ptr, chunk, item_size); |
| 4415 | item_size += sizeof(disk_key); |
| 4416 | btrfs_set_super_sys_array_size(super_copy, array_size + item_size); |
Miao Xie | fe48a5c | 2014-09-03 21:35:39 +0800 | [diff] [blame] | 4417 | unlock_chunks(root); |
| 4418 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4419 | return 0; |
| 4420 | } |
| 4421 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4422 | /* |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4423 | * sort the devices in descending order by max_avail, total_avail |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4424 | */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4425 | static int btrfs_cmp_device_info(const void *a, const void *b) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4426 | { |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4427 | const struct btrfs_device_info *di_a = a; |
| 4428 | const struct btrfs_device_info *di_b = b; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4429 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4430 | if (di_a->max_avail > di_b->max_avail) |
| 4431 | return -1; |
| 4432 | if (di_a->max_avail < di_b->max_avail) |
| 4433 | return 1; |
| 4434 | if (di_a->total_avail > di_b->total_avail) |
| 4435 | return -1; |
| 4436 | if (di_a->total_avail < di_b->total_avail) |
| 4437 | return 1; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4438 | return 0; |
| 4439 | } |
| 4440 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4441 | static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target) |
| 4442 | { |
| 4443 | /* TODO allow them to set a preferred stripe size */ |
| 4444 | return 64 * 1024; |
| 4445 | } |
| 4446 | |
| 4447 | static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type) |
| 4448 | { |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 4449 | if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK)) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4450 | return; |
| 4451 | |
Miao Xie | ceda086 | 2013-04-11 10:30:16 +0000 | [diff] [blame] | 4452 | btrfs_set_fs_incompat(info, RAID56); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4453 | } |
| 4454 | |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4455 | #define BTRFS_MAX_DEVS(r) ((BTRFS_LEAF_DATA_SIZE(r) \ |
| 4456 | - sizeof(struct btrfs_item) \ |
| 4457 | - sizeof(struct btrfs_chunk)) \ |
| 4458 | / sizeof(struct btrfs_stripe) + 1) |
| 4459 | |
| 4460 | #define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \ |
| 4461 | - 2 * sizeof(struct btrfs_disk_key) \ |
| 4462 | - 2 * sizeof(struct btrfs_chunk)) \ |
| 4463 | / sizeof(struct btrfs_stripe) + 1) |
| 4464 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4465 | static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4466 | struct btrfs_root *extent_root, u64 start, |
| 4467 | u64 type) |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4468 | { |
| 4469 | struct btrfs_fs_info *info = extent_root->fs_info; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4470 | struct btrfs_fs_devices *fs_devices = info->fs_devices; |
| 4471 | struct list_head *cur; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4472 | struct map_lookup *map = NULL; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4473 | struct extent_map_tree *em_tree; |
| 4474 | struct extent_map *em; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4475 | struct btrfs_device_info *devices_info = NULL; |
| 4476 | u64 total_avail; |
| 4477 | int num_stripes; /* total number of stripes to allocate */ |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4478 | int data_stripes; /* number of stripes that count for |
| 4479 | block group size */ |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4480 | int sub_stripes; /* sub_stripes info for map */ |
| 4481 | int dev_stripes; /* stripes per dev */ |
| 4482 | int devs_max; /* max devs to use */ |
| 4483 | int devs_min; /* min devs needed */ |
| 4484 | int devs_increment; /* ndevs has to be a multiple of this */ |
| 4485 | int ncopies; /* how many copies to data has */ |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4486 | int ret; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4487 | u64 max_stripe_size; |
| 4488 | u64 max_chunk_size; |
| 4489 | u64 stripe_size; |
| 4490 | u64 num_bytes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4491 | u64 raid_stripe_len = BTRFS_STRIPE_LEN; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4492 | int ndevs; |
| 4493 | int i; |
| 4494 | int j; |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4495 | int index; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4496 | |
Ilya Dryomov | 0c460c0 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4497 | BUG_ON(!alloc_profile_is_valid(type, 0)); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4498 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4499 | if (list_empty(&fs_devices->alloc_list)) |
| 4500 | return -ENOSPC; |
| 4501 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4502 | index = __get_raid_index(type); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4503 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 4504 | sub_stripes = btrfs_raid_array[index].sub_stripes; |
| 4505 | dev_stripes = btrfs_raid_array[index].dev_stripes; |
| 4506 | devs_max = btrfs_raid_array[index].devs_max; |
| 4507 | devs_min = btrfs_raid_array[index].devs_min; |
| 4508 | devs_increment = btrfs_raid_array[index].devs_increment; |
| 4509 | ncopies = btrfs_raid_array[index].ncopies; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4510 | |
| 4511 | if (type & BTRFS_BLOCK_GROUP_DATA) { |
| 4512 | max_stripe_size = 1024 * 1024 * 1024; |
| 4513 | max_chunk_size = 10 * max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4514 | if (!devs_max) |
| 4515 | devs_max = BTRFS_MAX_DEVS(info->chunk_root); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4516 | } else if (type & BTRFS_BLOCK_GROUP_METADATA) { |
Chris Mason | 1100373 | 2012-01-06 15:47:38 -0500 | [diff] [blame] | 4517 | /* for larger filesystems, use larger metadata chunks */ |
| 4518 | if (fs_devices->total_rw_bytes > 50ULL * 1024 * 1024 * 1024) |
| 4519 | max_stripe_size = 1024 * 1024 * 1024; |
| 4520 | else |
| 4521 | max_stripe_size = 256 * 1024 * 1024; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4522 | max_chunk_size = max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4523 | if (!devs_max) |
| 4524 | devs_max = BTRFS_MAX_DEVS(info->chunk_root); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4525 | } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) { |
Chris Mason | 96bdc7d | 2012-01-16 08:13:11 -0500 | [diff] [blame] | 4526 | max_stripe_size = 32 * 1024 * 1024; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4527 | max_chunk_size = 2 * max_stripe_size; |
Gui Hecheng | 23f8f9b | 2014-04-21 20:13:12 +0800 | [diff] [blame] | 4528 | if (!devs_max) |
| 4529 | devs_max = BTRFS_MAX_DEVS_SYS_CHUNK; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4530 | } else { |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 4531 | btrfs_err(info, "invalid chunk type 0x%llx requested", |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4532 | type); |
| 4533 | BUG_ON(1); |
| 4534 | } |
| 4535 | |
| 4536 | /* we don't want a chunk larger than 10% of writeable space */ |
| 4537 | max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1), |
| 4538 | max_chunk_size); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4539 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 4540 | devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info), |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4541 | GFP_NOFS); |
| 4542 | if (!devices_info) |
| 4543 | return -ENOMEM; |
| 4544 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4545 | cur = fs_devices->alloc_list.next; |
| 4546 | |
| 4547 | /* |
| 4548 | * in the first pass through the devices list, we gather information |
| 4549 | * about the available holes on each device. |
| 4550 | */ |
| 4551 | ndevs = 0; |
| 4552 | while (cur != &fs_devices->alloc_list) { |
| 4553 | struct btrfs_device *device; |
| 4554 | u64 max_avail; |
| 4555 | u64 dev_offset; |
| 4556 | |
| 4557 | device = list_entry(cur, struct btrfs_device, dev_alloc_list); |
| 4558 | |
| 4559 | cur = cur->next; |
| 4560 | |
| 4561 | if (!device->writeable) { |
Julia Lawall | 31b1a2b | 2012-11-03 10:58:34 +0000 | [diff] [blame] | 4562 | WARN(1, KERN_ERR |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 4563 | "BTRFS: read-only device in alloc_list\n"); |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4564 | continue; |
| 4565 | } |
| 4566 | |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 4567 | if (!device->in_fs_metadata || |
| 4568 | device->is_tgtdev_for_dev_replace) |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4569 | continue; |
| 4570 | |
| 4571 | if (device->total_bytes > device->bytes_used) |
| 4572 | total_avail = device->total_bytes - device->bytes_used; |
| 4573 | else |
| 4574 | total_avail = 0; |
liubo | 38c01b9 | 2011-08-02 02:39:03 +0000 | [diff] [blame] | 4575 | |
| 4576 | /* If there is no space on this device, skip it. */ |
| 4577 | if (total_avail == 0) |
| 4578 | continue; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4579 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4580 | ret = find_free_dev_extent(trans, device, |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4581 | max_stripe_size * dev_stripes, |
| 4582 | &dev_offset, &max_avail); |
| 4583 | if (ret && ret != -ENOSPC) |
| 4584 | goto error; |
| 4585 | |
| 4586 | if (ret == 0) |
| 4587 | max_avail = max_stripe_size * dev_stripes; |
| 4588 | |
| 4589 | if (max_avail < BTRFS_STRIPE_LEN * dev_stripes) |
| 4590 | continue; |
| 4591 | |
Eric Sandeen | 063d006 | 2013-01-31 00:55:01 +0000 | [diff] [blame] | 4592 | if (ndevs == fs_devices->rw_devices) { |
| 4593 | WARN(1, "%s: found more than %llu devices\n", |
| 4594 | __func__, fs_devices->rw_devices); |
| 4595 | break; |
| 4596 | } |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4597 | devices_info[ndevs].dev_offset = dev_offset; |
| 4598 | devices_info[ndevs].max_avail = max_avail; |
| 4599 | devices_info[ndevs].total_avail = total_avail; |
| 4600 | devices_info[ndevs].dev = device; |
| 4601 | ++ndevs; |
| 4602 | } |
| 4603 | |
| 4604 | /* |
| 4605 | * now sort the devices by hole size / available space |
| 4606 | */ |
| 4607 | sort(devices_info, ndevs, sizeof(struct btrfs_device_info), |
| 4608 | btrfs_cmp_device_info, NULL); |
| 4609 | |
| 4610 | /* round down to number of usable stripes */ |
| 4611 | ndevs -= ndevs % devs_increment; |
| 4612 | |
| 4613 | if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) { |
| 4614 | ret = -ENOSPC; |
| 4615 | goto error; |
| 4616 | } |
| 4617 | |
| 4618 | if (devs_max && ndevs > devs_max) |
| 4619 | ndevs = devs_max; |
| 4620 | /* |
| 4621 | * the primary goal is to maximize the number of stripes, so use as many |
| 4622 | * devices as possible, even if the stripes are not maximum sized. |
| 4623 | */ |
| 4624 | stripe_size = devices_info[ndevs-1].max_avail; |
| 4625 | num_stripes = ndevs * dev_stripes; |
| 4626 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4627 | /* |
| 4628 | * this will have to be fixed for RAID1 and RAID10 over |
| 4629 | * more drives |
| 4630 | */ |
| 4631 | data_stripes = num_stripes / ncopies; |
| 4632 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4633 | if (type & BTRFS_BLOCK_GROUP_RAID5) { |
| 4634 | raid_stripe_len = find_raid56_stripe_len(ndevs - 1, |
| 4635 | btrfs_super_stripesize(info->super_copy)); |
| 4636 | data_stripes = num_stripes - 1; |
| 4637 | } |
| 4638 | if (type & BTRFS_BLOCK_GROUP_RAID6) { |
| 4639 | raid_stripe_len = find_raid56_stripe_len(ndevs - 2, |
| 4640 | btrfs_super_stripesize(info->super_copy)); |
| 4641 | data_stripes = num_stripes - 2; |
| 4642 | } |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4643 | |
| 4644 | /* |
| 4645 | * Use the number of data stripes to figure out how big this chunk |
| 4646 | * is really going to be in terms of logical address space, |
| 4647 | * and compare that answer with the max chunk size |
| 4648 | */ |
| 4649 | if (stripe_size * data_stripes > max_chunk_size) { |
| 4650 | u64 mask = (1ULL << 24) - 1; |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 4651 | |
| 4652 | stripe_size = div_u64(max_chunk_size, data_stripes); |
Chris Mason | 86db257 | 2013-02-20 16:23:40 -0500 | [diff] [blame] | 4653 | |
| 4654 | /* bump the answer up to a 16MB boundary */ |
| 4655 | stripe_size = (stripe_size + mask) & ~mask; |
| 4656 | |
| 4657 | /* but don't go higher than the limits we found |
| 4658 | * while searching for free extents |
| 4659 | */ |
| 4660 | if (stripe_size > devices_info[ndevs-1].max_avail) |
| 4661 | stripe_size = devices_info[ndevs-1].max_avail; |
| 4662 | } |
| 4663 | |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 4664 | stripe_size = div_u64(stripe_size, dev_stripes); |
Ilya Dryomov | 37db63a | 2012-04-13 17:05:08 +0300 | [diff] [blame] | 4665 | |
| 4666 | /* align to BTRFS_STRIPE_LEN */ |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 4667 | stripe_size = div_u64(stripe_size, raid_stripe_len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4668 | stripe_size *= raid_stripe_len; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4669 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4670 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
| 4671 | if (!map) { |
| 4672 | ret = -ENOMEM; |
| 4673 | goto error; |
| 4674 | } |
| 4675 | map->num_stripes = num_stripes; |
Chris Mason | 9b3f68b | 2008-04-18 10:29:51 -0400 | [diff] [blame] | 4676 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4677 | for (i = 0; i < ndevs; ++i) { |
| 4678 | for (j = 0; j < dev_stripes; ++j) { |
| 4679 | int s = i * dev_stripes + j; |
| 4680 | map->stripes[s].dev = devices_info[i].dev; |
| 4681 | map->stripes[s].physical = devices_info[i].dev_offset + |
| 4682 | j * stripe_size; |
Chris Mason | a40a90a | 2008-04-18 11:55:51 -0400 | [diff] [blame] | 4683 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4684 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4685 | map->sector_size = extent_root->sectorsize; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4686 | map->stripe_len = raid_stripe_len; |
| 4687 | map->io_align = raid_stripe_len; |
| 4688 | map->io_width = raid_stripe_len; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4689 | map->type = type; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 4690 | map->sub_stripes = sub_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4691 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4692 | num_bytes = stripe_size * data_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4693 | |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4694 | trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes); |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4695 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 4696 | em = alloc_extent_map(); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4697 | if (!em) { |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 4698 | kfree(map); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4699 | ret = -ENOMEM; |
| 4700 | goto error; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4701 | } |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 4702 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4703 | em->bdev = (struct block_device *)map; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4704 | em->start = start; |
Arne Jansen | 73c5de0 | 2011-04-12 12:07:57 +0200 | [diff] [blame] | 4705 | em->len = num_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4706 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4707 | em->block_len = em->len; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4708 | em->orig_block_len = stripe_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4709 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4710 | em_tree = &extent_root->fs_info->mapping_tree.map_tree; |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4711 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 4712 | ret = add_extent_mapping(em_tree, em, 0); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4713 | if (!ret) { |
| 4714 | list_add_tail(&em->list, &trans->transaction->pending_chunks); |
| 4715 | atomic_inc(&em->refs); |
| 4716 | } |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4717 | write_unlock(&em_tree->lock); |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4718 | if (ret) { |
| 4719 | free_extent_map(em); |
Mark Fasheh | 1dd4602 | 2011-09-08 17:29:00 -0700 | [diff] [blame] | 4720 | goto error; |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4721 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4722 | |
Josef Bacik | 0448748 | 2013-01-29 15:03:37 -0500 | [diff] [blame] | 4723 | ret = btrfs_make_block_group(trans, extent_root, 0, type, |
| 4724 | BTRFS_FIRST_CHUNK_TREE_OBJECTID, |
| 4725 | start, num_bytes); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4726 | if (ret) |
| 4727 | goto error_del_extent; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4728 | |
Miao Xie | 7cc8e58 | 2014-09-03 21:35:38 +0800 | [diff] [blame] | 4729 | for (i = 0; i < map->num_stripes; i++) { |
| 4730 | num_bytes = map->stripes[i].dev->bytes_used + stripe_size; |
| 4731 | btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes); |
| 4732 | } |
Miao Xie | 43530c4 | 2014-09-03 21:35:36 +0800 | [diff] [blame] | 4733 | |
Miao Xie | 1c11618 | 2014-09-03 21:35:37 +0800 | [diff] [blame] | 4734 | spin_lock(&extent_root->fs_info->free_chunk_lock); |
| 4735 | extent_root->fs_info->free_chunk_space -= (stripe_size * |
| 4736 | map->num_stripes); |
| 4737 | spin_unlock(&extent_root->fs_info->free_chunk_lock); |
| 4738 | |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4739 | free_extent_map(em); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4740 | check_raid56_incompat_flag(extent_root->fs_info, type); |
| 4741 | |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4742 | kfree(devices_info); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4743 | return 0; |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4744 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4745 | error_del_extent: |
Josef Bacik | 0f5d42b | 2013-01-31 10:23:04 -0500 | [diff] [blame] | 4746 | write_lock(&em_tree->lock); |
| 4747 | remove_extent_mapping(em_tree, em); |
| 4748 | write_unlock(&em_tree->lock); |
| 4749 | |
| 4750 | /* One for our allocation */ |
| 4751 | free_extent_map(em); |
| 4752 | /* One for the tree reference */ |
| 4753 | free_extent_map(em); |
Filipe Manana | 495e64f | 2014-12-02 18:07:30 +0000 | [diff] [blame] | 4754 | /* One for the pending_chunks list reference */ |
| 4755 | free_extent_map(em); |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4756 | error: |
Miao Xie | b2117a3 | 2011-01-05 10:07:28 +0000 | [diff] [blame] | 4757 | kfree(devices_info); |
| 4758 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4759 | } |
| 4760 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4761 | int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans, |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4762 | struct btrfs_root *extent_root, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4763 | u64 chunk_offset, u64 chunk_size) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4764 | { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4765 | struct btrfs_key key; |
| 4766 | struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root; |
| 4767 | struct btrfs_device *device; |
| 4768 | struct btrfs_chunk *chunk; |
| 4769 | struct btrfs_stripe *stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4770 | struct extent_map_tree *em_tree; |
| 4771 | struct extent_map *em; |
| 4772 | struct map_lookup *map; |
| 4773 | size_t item_size; |
| 4774 | u64 dev_offset; |
| 4775 | u64 stripe_size; |
| 4776 | int i = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4777 | int ret; |
| 4778 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4779 | em_tree = &extent_root->fs_info->mapping_tree.map_tree; |
| 4780 | read_lock(&em_tree->lock); |
| 4781 | em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size); |
| 4782 | read_unlock(&em_tree->lock); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4783 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4784 | if (!em) { |
| 4785 | btrfs_crit(extent_root->fs_info, "unable to find logical " |
| 4786 | "%Lu len %Lu", chunk_offset, chunk_size); |
| 4787 | return -EINVAL; |
| 4788 | } |
| 4789 | |
| 4790 | if (em->start != chunk_offset || em->len != chunk_size) { |
| 4791 | btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted" |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 4792 | " %Lu-%Lu, found %Lu-%Lu", chunk_offset, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4793 | chunk_size, em->start, em->len); |
| 4794 | free_extent_map(em); |
| 4795 | return -EINVAL; |
| 4796 | } |
| 4797 | |
| 4798 | map = (struct map_lookup *)em->bdev; |
| 4799 | item_size = btrfs_chunk_item_size(map->num_stripes); |
| 4800 | stripe_size = em->orig_block_len; |
| 4801 | |
| 4802 | chunk = kzalloc(item_size, GFP_NOFS); |
| 4803 | if (!chunk) { |
| 4804 | ret = -ENOMEM; |
| 4805 | goto out; |
| 4806 | } |
| 4807 | |
| 4808 | for (i = 0; i < map->num_stripes; i++) { |
| 4809 | device = map->stripes[i].dev; |
| 4810 | dev_offset = map->stripes[i].physical; |
| 4811 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4812 | ret = btrfs_update_device(trans, device); |
Mark Fasheh | 3acd395 | 2011-09-08 17:40:01 -0700 | [diff] [blame] | 4813 | if (ret) |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4814 | goto out; |
| 4815 | ret = btrfs_alloc_dev_extent(trans, device, |
| 4816 | chunk_root->root_key.objectid, |
| 4817 | BTRFS_FIRST_CHUNK_TREE_OBJECTID, |
| 4818 | chunk_offset, dev_offset, |
| 4819 | stripe_size); |
| 4820 | if (ret) |
| 4821 | goto out; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4822 | } |
| 4823 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4824 | stripe = &chunk->stripe; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4825 | for (i = 0; i < map->num_stripes; i++) { |
| 4826 | device = map->stripes[i].dev; |
| 4827 | dev_offset = map->stripes[i].physical; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4828 | |
| 4829 | btrfs_set_stack_stripe_devid(stripe, device->devid); |
| 4830 | btrfs_set_stack_stripe_offset(stripe, dev_offset); |
| 4831 | memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE); |
| 4832 | stripe++; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4833 | } |
| 4834 | |
| 4835 | btrfs_set_stack_chunk_length(chunk, chunk_size); |
| 4836 | btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid); |
| 4837 | btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len); |
| 4838 | btrfs_set_stack_chunk_type(chunk, map->type); |
| 4839 | btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes); |
| 4840 | btrfs_set_stack_chunk_io_align(chunk, map->stripe_len); |
| 4841 | btrfs_set_stack_chunk_io_width(chunk, map->stripe_len); |
| 4842 | btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize); |
| 4843 | btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes); |
| 4844 | |
| 4845 | key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID; |
| 4846 | key.type = BTRFS_CHUNK_ITEM_KEY; |
| 4847 | key.offset = chunk_offset; |
| 4848 | |
| 4849 | ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 4850 | if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 4851 | /* |
| 4852 | * TODO: Cleanup of inserted chunk root in case of |
| 4853 | * failure. |
| 4854 | */ |
Li Zefan | 125ccb0 | 2011-12-08 15:07:24 +0800 | [diff] [blame] | 4855 | ret = btrfs_add_system_chunk(chunk_root, &key, chunk, |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4856 | item_size); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4857 | } |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4858 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4859 | out: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4860 | kfree(chunk); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4861 | free_extent_map(em); |
Mark Fasheh | 4ed1d16 | 2011-08-10 12:32:10 -0700 | [diff] [blame] | 4862 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4863 | } |
| 4864 | |
| 4865 | /* |
| 4866 | * Chunk allocation falls into two parts. The first part does works |
| 4867 | * that make the new allocated chunk useable, but not do any operation |
| 4868 | * that modifies the chunk tree. The second part does the works that |
| 4869 | * require modifying the chunk tree. This division is important for the |
| 4870 | * bootstrap process of adding storage to a seed btrfs. |
| 4871 | */ |
| 4872 | int btrfs_alloc_chunk(struct btrfs_trans_handle *trans, |
| 4873 | struct btrfs_root *extent_root, u64 type) |
| 4874 | { |
| 4875 | u64 chunk_offset; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4876 | |
Filipe Manana | a962959 | 2015-05-18 19:11:40 +0100 | [diff] [blame] | 4877 | ASSERT(mutex_is_locked(&extent_root->fs_info->chunk_mutex)); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4878 | chunk_offset = find_next_chunk(extent_root->fs_info); |
| 4879 | return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4880 | } |
| 4881 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4882 | static noinline int init_first_rw_device(struct btrfs_trans_handle *trans, |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4883 | struct btrfs_root *root, |
| 4884 | struct btrfs_device *device) |
| 4885 | { |
| 4886 | u64 chunk_offset; |
| 4887 | u64 sys_chunk_offset; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4888 | u64 alloc_profile; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4889 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 4890 | struct btrfs_root *extent_root = fs_info->extent_root; |
| 4891 | int ret; |
| 4892 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4893 | chunk_offset = find_next_chunk(fs_info); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4894 | alloc_profile = btrfs_get_alloc_profile(extent_root, 0); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4895 | ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset, |
| 4896 | alloc_profile); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4897 | if (ret) |
| 4898 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4899 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4900 | sys_chunk_offset = find_next_chunk(root->fs_info); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4901 | alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 4902 | ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset, |
| 4903 | alloc_profile); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4904 | return ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4905 | } |
| 4906 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 4907 | static inline int btrfs_chunk_max_errors(struct map_lookup *map) |
| 4908 | { |
| 4909 | int max_errors; |
| 4910 | |
| 4911 | if (map->type & (BTRFS_BLOCK_GROUP_RAID1 | |
| 4912 | BTRFS_BLOCK_GROUP_RAID10 | |
| 4913 | BTRFS_BLOCK_GROUP_RAID5 | |
| 4914 | BTRFS_BLOCK_GROUP_DUP)) { |
| 4915 | max_errors = 1; |
| 4916 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) { |
| 4917 | max_errors = 2; |
| 4918 | } else { |
| 4919 | max_errors = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4920 | } |
| 4921 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 4922 | return max_errors; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4923 | } |
| 4924 | |
| 4925 | int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset) |
| 4926 | { |
| 4927 | struct extent_map *em; |
| 4928 | struct map_lookup *map; |
| 4929 | struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree; |
| 4930 | int readonly = 0; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 4931 | int miss_ndevs = 0; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4932 | int i; |
| 4933 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4934 | read_lock(&map_tree->map_tree.lock); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4935 | em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4936 | read_unlock(&map_tree->map_tree.lock); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4937 | if (!em) |
| 4938 | return 1; |
| 4939 | |
| 4940 | map = (struct map_lookup *)em->bdev; |
| 4941 | for (i = 0; i < map->num_stripes; i++) { |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 4942 | if (map->stripes[i].dev->missing) { |
| 4943 | miss_ndevs++; |
| 4944 | continue; |
| 4945 | } |
| 4946 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4947 | if (!map->stripes[i].dev->writeable) { |
| 4948 | readonly = 1; |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 4949 | goto end; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4950 | } |
| 4951 | } |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 4952 | |
| 4953 | /* |
| 4954 | * If the number of missing devices is larger than max errors, |
| 4955 | * we can not write the data into that chunk successfully, so |
| 4956 | * set it readonly. |
| 4957 | */ |
| 4958 | if (miss_ndevs > btrfs_chunk_max_errors(map)) |
| 4959 | readonly = 1; |
| 4960 | end: |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4961 | free_extent_map(em); |
| 4962 | return readonly; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4963 | } |
| 4964 | |
| 4965 | void btrfs_mapping_init(struct btrfs_mapping_tree *tree) |
| 4966 | { |
David Sterba | a8067e0 | 2011-04-21 00:34:43 +0200 | [diff] [blame] | 4967 | extent_map_tree_init(&tree->map_tree); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4968 | } |
| 4969 | |
| 4970 | void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree) |
| 4971 | { |
| 4972 | struct extent_map *em; |
| 4973 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4974 | while (1) { |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4975 | write_lock(&tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4976 | em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1); |
| 4977 | if (em) |
| 4978 | remove_extent_mapping(&tree->map_tree, em); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4979 | write_unlock(&tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4980 | if (!em) |
| 4981 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4982 | /* once for us */ |
| 4983 | free_extent_map(em); |
| 4984 | /* once for the tree */ |
| 4985 | free_extent_map(em); |
| 4986 | } |
| 4987 | } |
| 4988 | |
Stefan Behrens | 5d96405 | 2012-11-05 14:59:07 +0100 | [diff] [blame] | 4989 | 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] | 4990 | { |
Stefan Behrens | 5d96405 | 2012-11-05 14:59:07 +0100 | [diff] [blame] | 4991 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 4992 | struct extent_map *em; |
| 4993 | struct map_lookup *map; |
| 4994 | struct extent_map_tree *em_tree = &map_tree->map_tree; |
| 4995 | int ret; |
| 4996 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4997 | read_lock(&em_tree->lock); |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 4998 | em = lookup_extent_mapping(em_tree, logical, len); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4999 | read_unlock(&em_tree->lock); |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5000 | |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5001 | /* |
| 5002 | * We could return errors for these cases, but that could get ugly and |
| 5003 | * we'd probably do the same thing which is just not do anything else |
| 5004 | * and exit, so return 1 so the callers don't try to use other copies. |
| 5005 | */ |
| 5006 | if (!em) { |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 5007 | btrfs_crit(fs_info, "No mapping for %Lu-%Lu", logical, |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5008 | logical+len); |
| 5009 | return 1; |
| 5010 | } |
| 5011 | |
| 5012 | if (em->start > logical || em->start + em->len < logical) { |
David Sterba | ccf39f9 | 2013-07-11 15:41:11 +0200 | [diff] [blame] | 5013 | btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got " |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 5014 | "%Lu-%Lu", logical, logical+len, em->start, |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5015 | em->start + em->len); |
Liu Bo | 7d3d174 | 2013-09-29 10:33:16 +0800 | [diff] [blame] | 5016 | free_extent_map(em); |
Josef Bacik | fb7669b | 2013-04-23 10:53:18 -0400 | [diff] [blame] | 5017 | return 1; |
| 5018 | } |
| 5019 | |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5020 | map = (struct map_lookup *)em->bdev; |
| 5021 | if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1)) |
| 5022 | ret = map->num_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5023 | else if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
| 5024 | ret = map->sub_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5025 | else if (map->type & BTRFS_BLOCK_GROUP_RAID5) |
| 5026 | ret = 2; |
| 5027 | else if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
| 5028 | ret = 3; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5029 | else |
| 5030 | ret = 1; |
| 5031 | free_extent_map(em); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5032 | |
| 5033 | btrfs_dev_replace_lock(&fs_info->dev_replace); |
| 5034 | if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) |
| 5035 | ret++; |
| 5036 | btrfs_dev_replace_unlock(&fs_info->dev_replace); |
| 5037 | |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5038 | return ret; |
| 5039 | } |
| 5040 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5041 | unsigned long btrfs_full_stripe_len(struct btrfs_root *root, |
| 5042 | struct btrfs_mapping_tree *map_tree, |
| 5043 | u64 logical) |
| 5044 | { |
| 5045 | struct extent_map *em; |
| 5046 | struct map_lookup *map; |
| 5047 | struct extent_map_tree *em_tree = &map_tree->map_tree; |
| 5048 | unsigned long len = root->sectorsize; |
| 5049 | |
| 5050 | read_lock(&em_tree->lock); |
| 5051 | em = lookup_extent_mapping(em_tree, logical, len); |
| 5052 | read_unlock(&em_tree->lock); |
| 5053 | BUG_ON(!em); |
| 5054 | |
| 5055 | BUG_ON(em->start > logical || em->start + em->len < logical); |
| 5056 | map = (struct map_lookup *)em->bdev; |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5057 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5058 | len = map->stripe_len * nr_data_stripes(map); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5059 | free_extent_map(em); |
| 5060 | return len; |
| 5061 | } |
| 5062 | |
| 5063 | int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree, |
| 5064 | u64 logical, u64 len, int mirror_num) |
| 5065 | { |
| 5066 | struct extent_map *em; |
| 5067 | struct map_lookup *map; |
| 5068 | struct extent_map_tree *em_tree = &map_tree->map_tree; |
| 5069 | int ret = 0; |
| 5070 | |
| 5071 | read_lock(&em_tree->lock); |
| 5072 | em = lookup_extent_mapping(em_tree, logical, len); |
| 5073 | read_unlock(&em_tree->lock); |
| 5074 | BUG_ON(!em); |
| 5075 | |
| 5076 | BUG_ON(em->start > logical || em->start + em->len < logical); |
| 5077 | map = (struct map_lookup *)em->bdev; |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5078 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5079 | ret = 1; |
| 5080 | free_extent_map(em); |
| 5081 | return ret; |
| 5082 | } |
| 5083 | |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5084 | static int find_live_mirror(struct btrfs_fs_info *fs_info, |
| 5085 | struct map_lookup *map, int first, int num, |
| 5086 | int optimal, int dev_replace_is_ongoing) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5087 | { |
| 5088 | int i; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5089 | int tolerance; |
| 5090 | struct btrfs_device *srcdev; |
| 5091 | |
| 5092 | if (dev_replace_is_ongoing && |
| 5093 | fs_info->dev_replace.cont_reading_from_srcdev_mode == |
| 5094 | BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID) |
| 5095 | srcdev = fs_info->dev_replace.srcdev; |
| 5096 | else |
| 5097 | srcdev = NULL; |
| 5098 | |
| 5099 | /* |
| 5100 | * try to avoid the drive that is the source drive for a |
| 5101 | * dev-replace procedure, only choose it if no other non-missing |
| 5102 | * mirror is available |
| 5103 | */ |
| 5104 | for (tolerance = 0; tolerance < 2; tolerance++) { |
| 5105 | if (map->stripes[optimal].dev->bdev && |
| 5106 | (tolerance || map->stripes[optimal].dev != srcdev)) |
| 5107 | return optimal; |
| 5108 | for (i = first; i < first + num; i++) { |
| 5109 | if (map->stripes[i].dev->bdev && |
| 5110 | (tolerance || map->stripes[i].dev != srcdev)) |
| 5111 | return i; |
| 5112 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5113 | } |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5114 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5115 | /* we couldn't find one that doesn't fail. Just return something |
| 5116 | * and the io error handling code will clean up eventually |
| 5117 | */ |
| 5118 | return optimal; |
| 5119 | } |
| 5120 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5121 | static inline int parity_smaller(u64 a, u64 b) |
| 5122 | { |
| 5123 | return a > b; |
| 5124 | } |
| 5125 | |
| 5126 | /* Bubble-sort the stripe set to put the parity/syndrome stripes last */ |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5127 | static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5128 | { |
| 5129 | struct btrfs_bio_stripe s; |
| 5130 | int i; |
| 5131 | u64 l; |
| 5132 | int again = 1; |
| 5133 | |
| 5134 | while (again) { |
| 5135 | again = 0; |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5136 | for (i = 0; i < num_stripes - 1; i++) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5137 | if (parity_smaller(bbio->raid_map[i], |
| 5138 | bbio->raid_map[i+1])) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5139 | s = bbio->stripes[i]; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5140 | l = bbio->raid_map[i]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5141 | bbio->stripes[i] = bbio->stripes[i+1]; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5142 | bbio->raid_map[i] = bbio->raid_map[i+1]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5143 | bbio->stripes[i+1] = s; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5144 | bbio->raid_map[i+1] = l; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5145 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5146 | again = 1; |
| 5147 | } |
| 5148 | } |
| 5149 | } |
| 5150 | } |
| 5151 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5152 | static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes) |
| 5153 | { |
| 5154 | struct btrfs_bio *bbio = kzalloc( |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5155 | /* the size of the btrfs_bio */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5156 | sizeof(struct btrfs_bio) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5157 | /* plus the variable array for the stripes */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5158 | sizeof(struct btrfs_bio_stripe) * (total_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5159 | /* plus the variable array for the tgt dev */ |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5160 | sizeof(int) * (real_stripes) + |
Chris Mason | e57cf21 | 2015-02-19 17:51:39 -0800 | [diff] [blame] | 5161 | /* |
| 5162 | * plus the raid_map, which includes both the tgt dev |
| 5163 | * and the stripes |
| 5164 | */ |
| 5165 | sizeof(u64) * (total_stripes), |
Michal Hocko | 277fb5f | 2015-08-19 14:17:41 +0200 | [diff] [blame] | 5166 | GFP_NOFS|__GFP_NOFAIL); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5167 | |
| 5168 | atomic_set(&bbio->error, 0); |
| 5169 | atomic_set(&bbio->refs, 1); |
| 5170 | |
| 5171 | return bbio; |
| 5172 | } |
| 5173 | |
| 5174 | void btrfs_get_bbio(struct btrfs_bio *bbio) |
| 5175 | { |
| 5176 | WARN_ON(!atomic_read(&bbio->refs)); |
| 5177 | atomic_inc(&bbio->refs); |
| 5178 | } |
| 5179 | |
| 5180 | void btrfs_put_bbio(struct btrfs_bio *bbio) |
| 5181 | { |
| 5182 | if (!bbio) |
| 5183 | return; |
| 5184 | if (atomic_dec_and_test(&bbio->refs)) |
| 5185 | kfree(bbio); |
| 5186 | } |
| 5187 | |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 5188 | 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] | 5189 | u64 logical, u64 *length, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5190 | struct btrfs_bio **bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5191 | int mirror_num, int need_raid_map) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5192 | { |
| 5193 | struct extent_map *em; |
| 5194 | struct map_lookup *map; |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 5195 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5196 | struct extent_map_tree *em_tree = &map_tree->map_tree; |
| 5197 | u64 offset; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5198 | u64 stripe_offset; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5199 | u64 stripe_end_offset; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5200 | u64 stripe_nr; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5201 | u64 stripe_nr_orig; |
| 5202 | u64 stripe_nr_end; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5203 | u64 stripe_len; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5204 | u32 stripe_index; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5205 | int i; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5206 | int ret = 0; |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5207 | int num_stripes; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 5208 | int max_errors = 0; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5209 | int tgtdev_indexes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5210 | struct btrfs_bio *bbio = NULL; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5211 | struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace; |
| 5212 | int dev_replace_is_ongoing = 0; |
| 5213 | int num_alloc_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5214 | int patch_the_first_stripe_for_dev_replace = 0; |
| 5215 | u64 physical_to_patch_in_first_stripe = 0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5216 | u64 raid56_full_stripe_start = (u64)-1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5217 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5218 | read_lock(&em_tree->lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5219 | em = lookup_extent_mapping(em_tree, logical, *length); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5220 | read_unlock(&em_tree->lock); |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5221 | |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5222 | if (!em) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 5223 | btrfs_crit(fs_info, "unable to find logical %llu len %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 5224 | logical, *length); |
Josef Bacik | 9bb9187 | 2013-04-19 23:45:33 -0400 | [diff] [blame] | 5225 | return -EINVAL; |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5226 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5227 | |
Josef Bacik | 9bb9187 | 2013-04-19 23:45:33 -0400 | [diff] [blame] | 5228 | if (em->start > logical || em->start + em->len < logical) { |
| 5229 | btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, " |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 5230 | "found %Lu-%Lu", logical, em->start, |
Josef Bacik | 9bb9187 | 2013-04-19 23:45:33 -0400 | [diff] [blame] | 5231 | em->start + em->len); |
Liu Bo | 7d3d174 | 2013-09-29 10:33:16 +0800 | [diff] [blame] | 5232 | free_extent_map(em); |
Josef Bacik | 9bb9187 | 2013-04-19 23:45:33 -0400 | [diff] [blame] | 5233 | return -EINVAL; |
| 5234 | } |
| 5235 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5236 | map = (struct map_lookup *)em->bdev; |
| 5237 | offset = logical - em->start; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5238 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5239 | stripe_len = map->stripe_len; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5240 | stripe_nr = offset; |
| 5241 | /* |
| 5242 | * stripe_nr counts the total number of stripes we have to stride |
| 5243 | * to get to this block |
| 5244 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5245 | stripe_nr = div64_u64(stripe_nr, stripe_len); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5246 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5247 | stripe_offset = stripe_nr * stripe_len; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5248 | BUG_ON(offset < stripe_offset); |
| 5249 | |
| 5250 | /* stripe_offset is the offset of this block in its stripe*/ |
| 5251 | stripe_offset = offset - stripe_offset; |
| 5252 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5253 | /* 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] | 5254 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5255 | unsigned long full_stripe_len = stripe_len * nr_data_stripes(map); |
| 5256 | raid56_full_stripe_start = offset; |
| 5257 | |
| 5258 | /* allow a write of a full stripe, but make sure we don't |
| 5259 | * allow straddling of stripes |
| 5260 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5261 | raid56_full_stripe_start = div64_u64(raid56_full_stripe_start, |
| 5262 | full_stripe_len); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5263 | raid56_full_stripe_start *= full_stripe_len; |
| 5264 | } |
| 5265 | |
| 5266 | if (rw & REQ_DISCARD) { |
| 5267 | /* we don't discard raid56 yet */ |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5268 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5269 | ret = -EOPNOTSUPP; |
| 5270 | goto out; |
| 5271 | } |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5272 | *length = min_t(u64, em->len - offset, *length); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5273 | } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) { |
| 5274 | u64 max_len; |
| 5275 | /* For writes to RAID[56], allow a full stripeset across all disks. |
| 5276 | For other RAID types and for RAID[56] reads, just allow a single |
| 5277 | stripe (on a single disk). */ |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5278 | if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) && |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5279 | (rw & REQ_WRITE)) { |
| 5280 | max_len = stripe_len * nr_data_stripes(map) - |
| 5281 | (offset - raid56_full_stripe_start); |
| 5282 | } else { |
| 5283 | /* we limit the length of each bio to what fits in a stripe */ |
| 5284 | max_len = stripe_len - stripe_offset; |
| 5285 | } |
| 5286 | *length = min_t(u64, em->len - offset, max_len); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5287 | } else { |
| 5288 | *length = em->len - offset; |
| 5289 | } |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5290 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5291 | /* This is for when we're called from btrfs_merge_bio_hook() and all |
| 5292 | it cares about is the length */ |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5293 | if (!bbio_ret) |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5294 | goto out; |
| 5295 | |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5296 | btrfs_dev_replace_lock(dev_replace); |
| 5297 | dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace); |
| 5298 | if (!dev_replace_is_ongoing) |
| 5299 | btrfs_dev_replace_unlock(dev_replace); |
| 5300 | |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5301 | if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 && |
| 5302 | !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) && |
| 5303 | dev_replace->tgtdev != NULL) { |
| 5304 | /* |
| 5305 | * in dev-replace case, for repair case (that's the only |
| 5306 | * case where the mirror is selected explicitly when |
| 5307 | * calling btrfs_map_block), blocks left of the left cursor |
| 5308 | * can also be read from the target drive. |
| 5309 | * For REQ_GET_READ_MIRRORS, the target drive is added as |
| 5310 | * the last one to the array of stripes. For READ, it also |
| 5311 | * needs to be supported using the same mirror number. |
| 5312 | * If the requested block is not left of the left cursor, |
| 5313 | * EIO is returned. This can happen because btrfs_num_copies() |
| 5314 | * returns one more in the dev-replace case. |
| 5315 | */ |
| 5316 | u64 tmp_length = *length; |
| 5317 | struct btrfs_bio *tmp_bbio = NULL; |
| 5318 | int tmp_num_stripes; |
| 5319 | u64 srcdev_devid = dev_replace->srcdev->devid; |
| 5320 | int index_srcdev = 0; |
| 5321 | int found = 0; |
| 5322 | u64 physical_of_found = 0; |
| 5323 | |
| 5324 | ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5325 | logical, &tmp_length, &tmp_bbio, 0, 0); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5326 | if (ret) { |
| 5327 | WARN_ON(tmp_bbio != NULL); |
| 5328 | goto out; |
| 5329 | } |
| 5330 | |
| 5331 | tmp_num_stripes = tmp_bbio->num_stripes; |
| 5332 | if (mirror_num > tmp_num_stripes) { |
| 5333 | /* |
| 5334 | * REQ_GET_READ_MIRRORS does not contain this |
| 5335 | * mirror, that means that the requested area |
| 5336 | * is not left of the left cursor |
| 5337 | */ |
| 5338 | ret = -EIO; |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5339 | btrfs_put_bbio(tmp_bbio); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5340 | goto out; |
| 5341 | } |
| 5342 | |
| 5343 | /* |
| 5344 | * process the rest of the function using the mirror_num |
| 5345 | * of the source drive. Therefore look it up first. |
| 5346 | * At the end, patch the device pointer to the one of the |
| 5347 | * target drive. |
| 5348 | */ |
| 5349 | for (i = 0; i < tmp_num_stripes; i++) { |
| 5350 | if (tmp_bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5351 | /* |
| 5352 | * In case of DUP, in order to keep it |
| 5353 | * simple, only add the mirror with the |
| 5354 | * lowest physical address |
| 5355 | */ |
| 5356 | if (found && |
| 5357 | physical_of_found <= |
| 5358 | tmp_bbio->stripes[i].physical) |
| 5359 | continue; |
| 5360 | index_srcdev = i; |
| 5361 | found = 1; |
| 5362 | physical_of_found = |
| 5363 | tmp_bbio->stripes[i].physical; |
| 5364 | } |
| 5365 | } |
| 5366 | |
| 5367 | if (found) { |
| 5368 | mirror_num = index_srcdev + 1; |
| 5369 | patch_the_first_stripe_for_dev_replace = 1; |
| 5370 | physical_to_patch_in_first_stripe = physical_of_found; |
| 5371 | } else { |
| 5372 | WARN_ON(1); |
| 5373 | ret = -EIO; |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5374 | btrfs_put_bbio(tmp_bbio); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5375 | goto out; |
| 5376 | } |
| 5377 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5378 | btrfs_put_bbio(tmp_bbio); |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5379 | } else if (mirror_num > map->num_stripes) { |
| 5380 | mirror_num = 0; |
| 5381 | } |
| 5382 | |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5383 | num_stripes = 1; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5384 | stripe_index = 0; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5385 | stripe_nr_orig = stripe_nr; |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 5386 | stripe_nr_end = ALIGN(offset + *length, map->stripe_len); |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5387 | stripe_nr_end = div_u64(stripe_nr_end, map->stripe_len); |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5388 | stripe_end_offset = stripe_nr_end * map->stripe_len - |
| 5389 | (offset + *length); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5390 | |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5391 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
| 5392 | if (rw & REQ_DISCARD) |
| 5393 | num_stripes = min_t(u64, map->num_stripes, |
| 5394 | stripe_nr_end - stripe_nr_orig); |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5395 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5396 | &stripe_index); |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 5397 | if (!(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))) |
| 5398 | mirror_num = 1; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5399 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) { |
Stefan Behrens | 29a8d9a | 2012-11-06 14:16:24 +0100 | [diff] [blame] | 5400 | if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5401 | num_stripes = map->num_stripes; |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5402 | else if (mirror_num) |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5403 | stripe_index = mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5404 | else { |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5405 | stripe_index = find_live_mirror(fs_info, map, 0, |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5406 | map->num_stripes, |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5407 | current->pid % map->num_stripes, |
| 5408 | dev_replace_is_ongoing); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5409 | mirror_num = stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5410 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5411 | |
Chris Mason | 611f0e0 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5412 | } else if (map->type & BTRFS_BLOCK_GROUP_DUP) { |
Stefan Behrens | 29a8d9a | 2012-11-06 14:16:24 +0100 | [diff] [blame] | 5413 | if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) { |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5414 | num_stripes = map->num_stripes; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5415 | } else if (mirror_num) { |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5416 | stripe_index = mirror_num - 1; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5417 | } else { |
| 5418 | mirror_num = 1; |
| 5419 | } |
Chris Mason | 2fff734 | 2008-04-29 14:12:09 -0400 | [diff] [blame] | 5420 | |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5421 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5422 | u32 factor = map->num_stripes / map->sub_stripes; |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5423 | |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5424 | stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5425 | stripe_index *= map->sub_stripes; |
| 5426 | |
Stefan Behrens | 29a8d9a | 2012-11-06 14:16:24 +0100 | [diff] [blame] | 5427 | if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5428 | num_stripes = map->sub_stripes; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5429 | else if (rw & REQ_DISCARD) |
| 5430 | num_stripes = min_t(u64, map->sub_stripes * |
| 5431 | (stripe_nr_end - stripe_nr_orig), |
| 5432 | map->num_stripes); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 5433 | else if (mirror_num) |
| 5434 | stripe_index += mirror_num - 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5435 | else { |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 5436 | int old_stripe_index = stripe_index; |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5437 | stripe_index = find_live_mirror(fs_info, map, |
| 5438 | stripe_index, |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5439 | map->sub_stripes, stripe_index + |
Stefan Behrens | 30d9861 | 2012-11-06 14:52:18 +0100 | [diff] [blame] | 5440 | current->pid % map->sub_stripes, |
| 5441 | dev_replace_is_ongoing); |
Jan Schmidt | 3e74317 | 2012-04-27 12:41:45 -0400 | [diff] [blame] | 5442 | mirror_num = stripe_index - old_stripe_index + 1; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 5443 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5444 | |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5445 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5446 | if (need_raid_map && |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 5447 | ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) || |
| 5448 | mirror_num > 1)) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5449 | /* push stripe_nr back to the start of the full stripe */ |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5450 | stripe_nr = div_u64(raid56_full_stripe_start, |
| 5451 | stripe_len * nr_data_stripes(map)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5452 | |
| 5453 | /* RAID[56] write or recovery. Return all stripes */ |
| 5454 | num_stripes = map->num_stripes; |
| 5455 | max_errors = nr_parity_stripes(map); |
| 5456 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5457 | *length = map->stripe_len; |
| 5458 | stripe_index = 0; |
| 5459 | stripe_offset = 0; |
| 5460 | } else { |
| 5461 | /* |
| 5462 | * Mirror #0 or #1 means the original data block. |
| 5463 | * Mirror #2 is RAID5 parity block. |
| 5464 | * Mirror #3 is RAID6 Q block. |
| 5465 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5466 | stripe_nr = div_u64_rem(stripe_nr, |
| 5467 | nr_data_stripes(map), &stripe_index); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5468 | if (mirror_num > 1) |
| 5469 | stripe_index = nr_data_stripes(map) + |
| 5470 | mirror_num - 2; |
| 5471 | |
| 5472 | /* We distribute the parity blocks across stripes */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5473 | div_u64_rem(stripe_nr + stripe_index, map->num_stripes, |
| 5474 | &stripe_index); |
Miao Xie | 28e1cc7 | 2014-09-12 18:44:02 +0800 | [diff] [blame] | 5475 | if (!(rw & (REQ_WRITE | REQ_DISCARD | |
| 5476 | REQ_GET_READ_MIRRORS)) && mirror_num <= 1) |
| 5477 | mirror_num = 1; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5478 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5479 | } else { |
| 5480 | /* |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5481 | * after this, stripe_nr is the number of stripes on this |
| 5482 | * device we have to walk to find the data, and stripe_index is |
| 5483 | * the number of our device in the stripe array |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5484 | */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5485 | stripe_nr = div_u64_rem(stripe_nr, map->num_stripes, |
| 5486 | &stripe_index); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5487 | mirror_num = stripe_index + 1; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5488 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5489 | BUG_ON(stripe_index >= map->num_stripes); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5490 | |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5491 | num_alloc_stripes = num_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5492 | if (dev_replace_is_ongoing) { |
| 5493 | if (rw & (REQ_WRITE | REQ_DISCARD)) |
| 5494 | num_alloc_stripes <<= 1; |
| 5495 | if (rw & REQ_GET_READ_MIRRORS) |
| 5496 | num_alloc_stripes++; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5497 | tgtdev_indexes = num_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5498 | } |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5499 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5500 | bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5501 | if (!bbio) { |
| 5502 | ret = -ENOMEM; |
| 5503 | goto out; |
| 5504 | } |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5505 | if (dev_replace_is_ongoing) |
| 5506 | bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5507 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5508 | /* build raid_map */ |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5509 | if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5510 | need_raid_map && ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) || |
| 5511 | mirror_num > 1)) { |
| 5512 | u64 tmp; |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5513 | unsigned rot; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5514 | |
| 5515 | bbio->raid_map = (u64 *)((void *)bbio->stripes + |
| 5516 | sizeof(struct btrfs_bio_stripe) * |
| 5517 | num_alloc_stripes + |
| 5518 | sizeof(int) * tgtdev_indexes); |
| 5519 | |
| 5520 | /* Work out the disk rotation on this stripe-set */ |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 5521 | div_u64_rem(stripe_nr, num_stripes, &rot); |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5522 | |
| 5523 | /* Fill in the logical address of each stripe */ |
| 5524 | tmp = stripe_nr * nr_data_stripes(map); |
| 5525 | for (i = 0; i < nr_data_stripes(map); i++) |
| 5526 | bbio->raid_map[(i+rot) % num_stripes] = |
| 5527 | em->start + (tmp + i) * map->stripe_len; |
| 5528 | |
| 5529 | bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE; |
| 5530 | if (map->type & BTRFS_BLOCK_GROUP_RAID6) |
| 5531 | bbio->raid_map[(i+rot+1) % num_stripes] = |
| 5532 | RAID6_Q_STRIPE; |
| 5533 | } |
| 5534 | |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5535 | if (rw & REQ_DISCARD) { |
David Sterba | 9d644a6 | 2015-02-20 18:42:11 +0100 | [diff] [blame] | 5536 | u32 factor = 0; |
| 5537 | u32 sub_stripes = 0; |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5538 | u64 stripes_per_dev = 0; |
| 5539 | u32 remaining_stripes = 0; |
Liu Bo | b89203f | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 5540 | u32 last_stripe = 0; |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5541 | |
| 5542 | if (map->type & |
| 5543 | (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5544 | if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
| 5545 | sub_stripes = 1; |
| 5546 | else |
| 5547 | sub_stripes = map->sub_stripes; |
| 5548 | |
| 5549 | factor = map->num_stripes / sub_stripes; |
| 5550 | stripes_per_dev = div_u64_rem(stripe_nr_end - |
| 5551 | stripe_nr_orig, |
| 5552 | factor, |
| 5553 | &remaining_stripes); |
Liu Bo | b89203f | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 5554 | div_u64_rem(stripe_nr_end - 1, factor, &last_stripe); |
| 5555 | last_stripe *= sub_stripes; |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5556 | } |
| 5557 | |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5558 | for (i = 0; i < num_stripes; i++) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5559 | bbio->stripes[i].physical = |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5560 | map->stripes[stripe_index].physical + |
| 5561 | stripe_offset + stripe_nr * map->stripe_len; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5562 | bbio->stripes[i].dev = map->stripes[stripe_index].dev; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5563 | |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5564 | if (map->type & (BTRFS_BLOCK_GROUP_RAID0 | |
| 5565 | BTRFS_BLOCK_GROUP_RAID10)) { |
| 5566 | bbio->stripes[i].length = stripes_per_dev * |
| 5567 | map->stripe_len; |
Liu Bo | b89203f | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 5568 | |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5569 | if (i / sub_stripes < remaining_stripes) |
| 5570 | bbio->stripes[i].length += |
| 5571 | map->stripe_len; |
Liu Bo | b89203f | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 5572 | |
| 5573 | /* |
| 5574 | * Special for the first stripe and |
| 5575 | * the last stripe: |
| 5576 | * |
| 5577 | * |-------|...|-------| |
| 5578 | * |----------| |
| 5579 | * off end_off |
| 5580 | */ |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5581 | if (i < sub_stripes) |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5582 | bbio->stripes[i].length -= |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5583 | stripe_offset; |
Liu Bo | b89203f | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 5584 | |
| 5585 | if (stripe_index >= last_stripe && |
| 5586 | stripe_index <= (last_stripe + |
| 5587 | sub_stripes - 1)) |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5588 | bbio->stripes[i].length -= |
| 5589 | stripe_end_offset; |
Liu Bo | b89203f | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 5590 | |
Li Zefan | ec9ef7a | 2011-12-01 14:06:42 +0800 | [diff] [blame] | 5591 | if (i == sub_stripes - 1) |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5592 | stripe_offset = 0; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5593 | } else |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5594 | bbio->stripes[i].length = *length; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5595 | |
| 5596 | stripe_index++; |
| 5597 | if (stripe_index == map->num_stripes) { |
| 5598 | /* This could only happen for RAID0/10 */ |
| 5599 | stripe_index = 0; |
| 5600 | stripe_nr++; |
| 5601 | } |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5602 | } |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5603 | } else { |
| 5604 | for (i = 0; i < num_stripes; i++) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5605 | bbio->stripes[i].physical = |
Linus Torvalds | 212a17a | 2011-03-28 15:31:05 -0700 | [diff] [blame] | 5606 | map->stripes[stripe_index].physical + |
| 5607 | stripe_offset + |
| 5608 | stripe_nr * map->stripe_len; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5609 | bbio->stripes[i].dev = |
Linus Torvalds | 212a17a | 2011-03-28 15:31:05 -0700 | [diff] [blame] | 5610 | map->stripes[stripe_index].dev; |
Li Dongyang | fce3bb9 | 2011-03-24 10:24:26 +0000 | [diff] [blame] | 5611 | stripe_index++; |
| 5612 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 5613 | } |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5614 | |
Miao Xie | d20983b | 2014-07-03 18:22:13 +0800 | [diff] [blame] | 5615 | if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) |
| 5616 | max_errors = btrfs_chunk_max_errors(map); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5617 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5618 | if (bbio->raid_map) |
| 5619 | sort_parity_stripes(bbio, num_stripes); |
Zhao Lei | cc7539e | 2015-01-20 15:11:32 +0800 | [diff] [blame] | 5620 | |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5621 | tgtdev_indexes = 0; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5622 | if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) && |
| 5623 | dev_replace->tgtdev != NULL) { |
| 5624 | int index_where_to_add; |
| 5625 | u64 srcdev_devid = dev_replace->srcdev->devid; |
| 5626 | |
| 5627 | /* |
| 5628 | * duplicate the write operations while the dev replace |
| 5629 | * procedure is running. Since the copying of the old disk |
| 5630 | * to the new disk takes place at run time while the |
| 5631 | * filesystem is mounted writable, the regular write |
| 5632 | * operations to the old disk have to be duplicated to go |
| 5633 | * to the new disk as well. |
| 5634 | * Note that device->missing is handled by the caller, and |
| 5635 | * that the write to the old disk is already set up in the |
| 5636 | * stripes array. |
| 5637 | */ |
| 5638 | index_where_to_add = num_stripes; |
| 5639 | for (i = 0; i < num_stripes; i++) { |
| 5640 | if (bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5641 | /* write to new disk, too */ |
| 5642 | struct btrfs_bio_stripe *new = |
| 5643 | bbio->stripes + index_where_to_add; |
| 5644 | struct btrfs_bio_stripe *old = |
| 5645 | bbio->stripes + i; |
| 5646 | |
| 5647 | new->physical = old->physical; |
| 5648 | new->length = old->length; |
| 5649 | new->dev = dev_replace->tgtdev; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5650 | bbio->tgtdev_map[i] = index_where_to_add; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5651 | index_where_to_add++; |
| 5652 | max_errors++; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5653 | tgtdev_indexes++; |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5654 | } |
| 5655 | } |
| 5656 | num_stripes = index_where_to_add; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5657 | } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) && |
| 5658 | dev_replace->tgtdev != NULL) { |
| 5659 | u64 srcdev_devid = dev_replace->srcdev->devid; |
| 5660 | int index_srcdev = 0; |
| 5661 | int found = 0; |
| 5662 | u64 physical_of_found = 0; |
| 5663 | |
| 5664 | /* |
| 5665 | * During the dev-replace procedure, the target drive can |
| 5666 | * also be used to read data in case it is needed to repair |
| 5667 | * a corrupt block elsewhere. This is possible if the |
| 5668 | * requested area is left of the left cursor. In this area, |
| 5669 | * the target drive is a full copy of the source drive. |
| 5670 | */ |
| 5671 | for (i = 0; i < num_stripes; i++) { |
| 5672 | if (bbio->stripes[i].dev->devid == srcdev_devid) { |
| 5673 | /* |
| 5674 | * In case of DUP, in order to keep it |
| 5675 | * simple, only add the mirror with the |
| 5676 | * lowest physical address |
| 5677 | */ |
| 5678 | if (found && |
| 5679 | physical_of_found <= |
| 5680 | bbio->stripes[i].physical) |
| 5681 | continue; |
| 5682 | index_srcdev = i; |
| 5683 | found = 1; |
| 5684 | physical_of_found = bbio->stripes[i].physical; |
| 5685 | } |
| 5686 | } |
| 5687 | if (found) { |
David Sterba | 258ece0 | 2015-02-24 19:45:15 +0100 | [diff] [blame] | 5688 | if (physical_of_found + map->stripe_len <= |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5689 | dev_replace->cursor_left) { |
| 5690 | struct btrfs_bio_stripe *tgtdev_stripe = |
| 5691 | bbio->stripes + num_stripes; |
| 5692 | |
| 5693 | tgtdev_stripe->physical = physical_of_found; |
| 5694 | tgtdev_stripe->length = |
| 5695 | bbio->stripes[index_srcdev].length; |
| 5696 | tgtdev_stripe->dev = dev_replace->tgtdev; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5697 | bbio->tgtdev_map[index_srcdev] = num_stripes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5698 | |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5699 | tgtdev_indexes++; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5700 | num_stripes++; |
| 5701 | } |
| 5702 | } |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5703 | } |
| 5704 | |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5705 | *bbio_ret = bbio; |
Zhao Lei | 10f1190 | 2015-01-20 15:11:43 +0800 | [diff] [blame] | 5706 | bbio->map_type = map->type; |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5707 | bbio->num_stripes = num_stripes; |
| 5708 | bbio->max_errors = max_errors; |
| 5709 | bbio->mirror_num = mirror_num; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 5710 | bbio->num_tgtdevs = tgtdev_indexes; |
Stefan Behrens | ad6d620 | 2012-11-06 15:06:47 +0100 | [diff] [blame] | 5711 | |
| 5712 | /* |
| 5713 | * this is the case that REQ_READ && dev_replace_is_ongoing && |
| 5714 | * mirror_num == num_stripes + 1 && dev_replace target drive is |
| 5715 | * available as a mirror |
| 5716 | */ |
| 5717 | if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) { |
| 5718 | WARN_ON(num_stripes > 1); |
| 5719 | bbio->stripes[0].dev = dev_replace->tgtdev; |
| 5720 | bbio->stripes[0].physical = physical_to_patch_in_first_stripe; |
| 5721 | bbio->mirror_num = map->num_stripes + 1; |
| 5722 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 5723 | out: |
Stefan Behrens | 472262f | 2012-11-06 14:43:46 +0100 | [diff] [blame] | 5724 | if (dev_replace_is_ongoing) |
| 5725 | btrfs_dev_replace_unlock(dev_replace); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5726 | free_extent_map(em); |
Li Zefan | de11cc1 | 2011-12-01 12:55:47 +0800 | [diff] [blame] | 5727 | return ret; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 5728 | } |
| 5729 | |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 5730 | int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw, |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5731 | u64 logical, u64 *length, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5732 | struct btrfs_bio **bbio_ret, int mirror_num) |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5733 | { |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 5734 | return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5735 | mirror_num, 0); |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 5736 | } |
| 5737 | |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 5738 | /* For Scrub/replace */ |
| 5739 | int btrfs_map_sblock(struct btrfs_fs_info *fs_info, int rw, |
| 5740 | u64 logical, u64 *length, |
| 5741 | struct btrfs_bio **bbio_ret, int mirror_num, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5742 | int need_raid_map) |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 5743 | { |
| 5744 | return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 5745 | mirror_num, need_raid_map); |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 5746 | } |
| 5747 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5748 | int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree, |
| 5749 | u64 chunk_start, u64 physical, u64 devid, |
| 5750 | u64 **logical, int *naddrs, int *stripe_len) |
| 5751 | { |
| 5752 | struct extent_map_tree *em_tree = &map_tree->map_tree; |
| 5753 | struct extent_map *em; |
| 5754 | struct map_lookup *map; |
| 5755 | u64 *buf; |
| 5756 | u64 bytenr; |
| 5757 | u64 length; |
| 5758 | u64 stripe_nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5759 | u64 rmap_len; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5760 | int i, j, nr = 0; |
| 5761 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5762 | read_lock(&em_tree->lock); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5763 | em = lookup_extent_mapping(em_tree, chunk_start, 1); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5764 | read_unlock(&em_tree->lock); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5765 | |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 5766 | if (!em) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 5767 | printk(KERN_ERR "BTRFS: couldn't find em for chunk %Lu\n", |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 5768 | chunk_start); |
| 5769 | return -EIO; |
| 5770 | } |
| 5771 | |
| 5772 | if (em->start != chunk_start) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 5773 | printk(KERN_ERR "BTRFS: bad chunk start, em=%Lu, wanted=%Lu\n", |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 5774 | em->start, chunk_start); |
| 5775 | free_extent_map(em); |
| 5776 | return -EIO; |
| 5777 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5778 | map = (struct map_lookup *)em->bdev; |
| 5779 | |
| 5780 | length = em->len; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5781 | rmap_len = map->stripe_len; |
| 5782 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5783 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5784 | length = div_u64(length, map->num_stripes / map->sub_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5785 | else if (map->type & BTRFS_BLOCK_GROUP_RAID0) |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5786 | length = div_u64(length, map->num_stripes); |
Zhao Lei | ffe2d20 | 2015-01-20 15:11:44 +0800 | [diff] [blame] | 5787 | else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) { |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5788 | length = div_u64(length, nr_data_stripes(map)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5789 | rmap_len = map->stripe_len * nr_data_stripes(map); |
| 5790 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5791 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 5792 | buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5793 | BUG_ON(!buf); /* -ENOMEM */ |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5794 | |
| 5795 | for (i = 0; i < map->num_stripes; i++) { |
| 5796 | if (devid && map->stripes[i].dev->devid != devid) |
| 5797 | continue; |
| 5798 | if (map->stripes[i].physical > physical || |
| 5799 | map->stripes[i].physical + length <= physical) |
| 5800 | continue; |
| 5801 | |
| 5802 | stripe_nr = physical - map->stripes[i].physical; |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5803 | stripe_nr = div_u64(stripe_nr, map->stripe_len); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5804 | |
| 5805 | if (map->type & BTRFS_BLOCK_GROUP_RAID10) { |
| 5806 | stripe_nr = stripe_nr * map->num_stripes + i; |
David Sterba | b8b93ad | 2015-01-16 17:26:13 +0100 | [diff] [blame] | 5807 | stripe_nr = div_u64(stripe_nr, map->sub_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5808 | } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) { |
| 5809 | stripe_nr = stripe_nr * map->num_stripes + i; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5810 | } /* else if RAID[56], multiply by nr_data_stripes(). |
| 5811 | * Alternatively, just use rmap_len below instead of |
| 5812 | * map->stripe_len */ |
| 5813 | |
| 5814 | bytenr = chunk_start + stripe_nr * rmap_len; |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 5815 | WARN_ON(nr >= map->num_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5816 | for (j = 0; j < nr; j++) { |
| 5817 | if (buf[j] == bytenr) |
| 5818 | break; |
| 5819 | } |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 5820 | if (j == nr) { |
| 5821 | WARN_ON(nr >= map->num_stripes); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5822 | buf[nr++] = bytenr; |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 5823 | } |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5824 | } |
| 5825 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5826 | *logical = buf; |
| 5827 | *naddrs = nr; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5828 | *stripe_len = rmap_len; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 5829 | |
| 5830 | free_extent_map(em); |
| 5831 | return 0; |
| 5832 | } |
| 5833 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5834 | 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] | 5835 | { |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 5836 | bio->bi_private = bbio->private; |
| 5837 | bio->bi_end_io = bbio->end_io; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5838 | bio_endio(bio); |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 5839 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 5840 | btrfs_put_bbio(bbio); |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 5841 | } |
| 5842 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5843 | static void btrfs_end_bio(struct bio *bio) |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5844 | { |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 5845 | struct btrfs_bio *bbio = bio->bi_private; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 5846 | int is_orig_bio = 0; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5847 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5848 | if (bio->bi_error) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5849 | atomic_inc(&bbio->error); |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5850 | if (bio->bi_error == -EIO || bio->bi_error == -EREMOTEIO) { |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 5851 | unsigned int stripe_index = |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 5852 | btrfs_io_bio(bio)->stripe_index; |
Zhao Lei | 65f5333 | 2015-06-08 20:05:50 +0800 | [diff] [blame] | 5853 | struct btrfs_device *dev; |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 5854 | |
| 5855 | BUG_ON(stripe_index >= bbio->num_stripes); |
| 5856 | dev = bbio->stripes[stripe_index].dev; |
Stefan Behrens | 597a60f | 2012-06-14 16:42:31 +0200 | [diff] [blame] | 5857 | if (dev->bdev) { |
| 5858 | if (bio->bi_rw & WRITE) |
| 5859 | btrfs_dev_stat_inc(dev, |
| 5860 | BTRFS_DEV_STAT_WRITE_ERRS); |
| 5861 | else |
| 5862 | btrfs_dev_stat_inc(dev, |
| 5863 | BTRFS_DEV_STAT_READ_ERRS); |
| 5864 | if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH) |
| 5865 | btrfs_dev_stat_inc(dev, |
| 5866 | BTRFS_DEV_STAT_FLUSH_ERRS); |
| 5867 | btrfs_dev_stat_print_on_error(dev); |
| 5868 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 5869 | } |
| 5870 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5871 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5872 | if (bio == bbio->orig_bio) |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 5873 | is_orig_bio = 1; |
| 5874 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 5875 | btrfs_bio_counter_dec(bbio->fs_info); |
| 5876 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5877 | if (atomic_dec_and_test(&bbio->stripes_pending)) { |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 5878 | if (!is_orig_bio) { |
| 5879 | bio_put(bio); |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5880 | bio = bbio->orig_bio; |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 5881 | } |
Muthu Kumar | c7b22bb | 2014-01-08 14:19:52 -0700 | [diff] [blame] | 5882 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 5883 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 5884 | /* only send an error to the higher layers if it is |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5885 | * beyond the tolerance of the btrfs bio |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 5886 | */ |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 5887 | if (atomic_read(&bbio->error) > bbio->max_errors) { |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5888 | bio->bi_error = -EIO; |
Chris Mason | 5dbc8fc | 2011-12-09 11:07:37 -0500 | [diff] [blame] | 5889 | } else { |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 5890 | /* |
| 5891 | * this bio is actually up to date, we didn't |
| 5892 | * go over the max number of errors |
| 5893 | */ |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5894 | bio->bi_error = 0; |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 5895 | } |
Miao Xie | c55f139 | 2014-06-19 10:42:54 +0800 | [diff] [blame] | 5896 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5897 | btrfs_end_bbio(bbio, bio); |
Chris Mason | 7d2b4da | 2008-08-05 10:13:57 -0400 | [diff] [blame] | 5898 | } else if (!is_orig_bio) { |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5899 | bio_put(bio); |
| 5900 | } |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 5901 | } |
| 5902 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5903 | /* |
| 5904 | * see run_scheduled_bios for a description of why bios are collected for |
| 5905 | * async submit. |
| 5906 | * |
| 5907 | * This will add one bio to the pending list for a device and make sure |
| 5908 | * the work struct is scheduled. |
| 5909 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 5910 | static noinline void btrfs_schedule_bio(struct btrfs_root *root, |
| 5911 | struct btrfs_device *device, |
| 5912 | int rw, struct bio *bio) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5913 | { |
| 5914 | int should_queue = 1; |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 5915 | struct btrfs_pending_bios *pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5916 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5917 | if (device->missing || !device->bdev) { |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 5918 | bio_io_error(bio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5919 | return; |
| 5920 | } |
| 5921 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5922 | /* don't bother with additional async steps for reads, right now */ |
Christoph Hellwig | 7b6d91d | 2010-08-07 18:20:39 +0200 | [diff] [blame] | 5923 | if (!(rw & REQ_WRITE)) { |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 5924 | bio_get(bio); |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 5925 | btrfsic_submit_bio(rw, bio); |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 5926 | bio_put(bio); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 5927 | return; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5928 | } |
| 5929 | |
| 5930 | /* |
Chris Mason | 0986fe9e | 2008-08-15 15:34:15 -0400 | [diff] [blame] | 5931 | * nr_async_bios allows us to reliably return congestion to the |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5932 | * higher layers. Otherwise, the async bio makes it appear we have |
| 5933 | * made progress against dirty pages when we've really just put it |
| 5934 | * on a queue for later |
| 5935 | */ |
Chris Mason | 0986fe9e | 2008-08-15 15:34:15 -0400 | [diff] [blame] | 5936 | atomic_inc(&root->fs_info->nr_async_bios); |
Chris Mason | 492bb6de | 2008-07-31 16:29:02 -0400 | [diff] [blame] | 5937 | WARN_ON(bio->bi_next); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5938 | bio->bi_next = NULL; |
| 5939 | bio->bi_rw |= rw; |
| 5940 | |
| 5941 | spin_lock(&device->io_lock); |
Christoph Hellwig | 7b6d91d | 2010-08-07 18:20:39 +0200 | [diff] [blame] | 5942 | if (bio->bi_rw & REQ_SYNC) |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 5943 | pending_bios = &device->pending_sync_bios; |
| 5944 | else |
| 5945 | pending_bios = &device->pending_bios; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5946 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 5947 | if (pending_bios->tail) |
| 5948 | pending_bios->tail->bi_next = bio; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5949 | |
Chris Mason | ffbd517 | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 5950 | pending_bios->tail = bio; |
| 5951 | if (!pending_bios->head) |
| 5952 | pending_bios->head = bio; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5953 | if (device->running_pending) |
| 5954 | should_queue = 0; |
| 5955 | |
| 5956 | spin_unlock(&device->io_lock); |
| 5957 | |
| 5958 | if (should_queue) |
Qu Wenruo | a8c93d4e | 2014-02-28 10:46:08 +0800 | [diff] [blame] | 5959 | btrfs_queue_work(root->fs_info->submit_workers, |
| 5960 | &device->work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 5961 | } |
| 5962 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 5963 | static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio, |
| 5964 | struct bio *bio, u64 physical, int dev_nr, |
| 5965 | int rw, int async) |
| 5966 | { |
| 5967 | struct btrfs_device *dev = bbio->stripes[dev_nr].dev; |
| 5968 | |
| 5969 | bio->bi_private = bbio; |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 5970 | btrfs_io_bio(bio)->stripe_index = dev_nr; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 5971 | bio->bi_end_io = btrfs_end_bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 5972 | bio->bi_iter.bi_sector = physical >> 9; |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 5973 | #ifdef DEBUG |
| 5974 | { |
| 5975 | struct rcu_string *name; |
| 5976 | |
| 5977 | rcu_read_lock(); |
| 5978 | name = rcu_dereference(dev->name); |
Masanari Iida | d142324 | 2012-10-31 15:16:32 +0000 | [diff] [blame] | 5979 | pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu " |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 5980 | "(%s id %llu), size=%u\n", rw, |
Fabian Frederick | 1b6e446 | 2014-09-24 20:23:05 +0200 | [diff] [blame] | 5981 | (u64)bio->bi_iter.bi_sector, (u_long)dev->bdev->bd_dev, |
| 5982 | name->str, dev->devid, bio->bi_iter.bi_size); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 5983 | rcu_read_unlock(); |
| 5984 | } |
| 5985 | #endif |
| 5986 | bio->bi_bdev = dev->bdev; |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 5987 | |
| 5988 | btrfs_bio_counter_inc_noblocked(root->fs_info); |
| 5989 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 5990 | if (async) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 5991 | btrfs_schedule_bio(root, dev, rw, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 5992 | else |
| 5993 | btrfsic_submit_bio(rw, bio); |
| 5994 | } |
| 5995 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 5996 | static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical) |
| 5997 | { |
| 5998 | atomic_inc(&bbio->error); |
| 5999 | if (atomic_dec_and_test(&bbio->stripes_pending)) { |
Miao Xie | 8408c71 | 2014-06-19 10:42:55 +0800 | [diff] [blame] | 6000 | /* Shoud be the original bio. */ |
| 6001 | WARN_ON(bio != bbio->orig_bio); |
| 6002 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6003 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6004 | bio->bi_iter.bi_sector = logical >> 9; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 6005 | bio->bi_error = -EIO; |
| 6006 | btrfs_end_bbio(bbio, bio); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6007 | } |
| 6008 | } |
| 6009 | |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6010 | 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] | 6011 | int mirror_num, int async_submit) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6012 | { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6013 | struct btrfs_device *dev; |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 6014 | struct bio *first_bio = bio; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6015 | u64 logical = (u64)bio->bi_iter.bi_sector << 9; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6016 | u64 length = 0; |
| 6017 | u64 map_length; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6018 | int ret; |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6019 | int dev_nr; |
| 6020 | int total_devs; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6021 | struct btrfs_bio *bbio = NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6022 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 6023 | length = bio->bi_iter.bi_size; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6024 | map_length = length; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6025 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6026 | btrfs_bio_counter_inc_blocked(root->fs_info); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6027 | ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6028 | mirror_num, 1); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6029 | if (ret) { |
| 6030 | btrfs_bio_counter_dec(root->fs_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6031 | return ret; |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6032 | } |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6033 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6034 | total_devs = bbio->num_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6035 | bbio->orig_bio = first_bio; |
| 6036 | bbio->private = first_bio->bi_private; |
| 6037 | bbio->end_io = first_bio->bi_end_io; |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6038 | bbio->fs_info = root->fs_info; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6039 | atomic_set(&bbio->stripes_pending, bbio->num_stripes); |
| 6040 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6041 | if (bbio->raid_map) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6042 | /* In this case, map_length has been set to the length of |
| 6043 | a single stripe; not the whole write */ |
| 6044 | if (rw & WRITE) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6045 | ret = raid56_parity_write(root, bio, bbio, map_length); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6046 | } else { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 6047 | ret = raid56_parity_recover(root, bio, bbio, map_length, |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 6048 | mirror_num, 1); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6049 | } |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 6050 | |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6051 | btrfs_bio_counter_dec(root->fs_info); |
| 6052 | return ret; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6053 | } |
| 6054 | |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6055 | if (map_length < length) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6056 | 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] | 6057 | logical, length, map_length); |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 6058 | BUG(); |
| 6059 | } |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6060 | |
Zhao Lei | 08da757 | 2015-02-12 15:42:16 +0800 | [diff] [blame] | 6061 | for (dev_nr = 0; dev_nr < total_devs; dev_nr++) { |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6062 | dev = bbio->stripes[dev_nr].dev; |
| 6063 | if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) { |
| 6064 | bbio_error(bbio, first_bio, logical); |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6065 | continue; |
| 6066 | } |
| 6067 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6068 | if (dev_nr < total_devs - 1) { |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 6069 | bio = btrfs_bio_clone(first_bio, GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6070 | BUG_ON(!bio); /* -ENOMEM */ |
Mike Snitzer | 326e1db | 2015-05-22 09:14:03 -0400 | [diff] [blame] | 6071 | } else |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 6072 | bio = first_bio; |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 6073 | |
Josef Bacik | de1ee92 | 2012-10-19 16:50:56 -0400 | [diff] [blame] | 6074 | submit_stripe_bio(root, bbio, bio, |
| 6075 | bbio->stripes[dev_nr].physical, dev_nr, rw, |
| 6076 | async_submit); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6077 | } |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 6078 | btrfs_bio_counter_dec(root->fs_info); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6079 | return 0; |
| 6080 | } |
| 6081 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6082 | 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] | 6083 | u8 *uuid, u8 *fsid) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6084 | { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6085 | struct btrfs_device *device; |
| 6086 | struct btrfs_fs_devices *cur_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6087 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6088 | cur_devices = fs_info->fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6089 | while (cur_devices) { |
| 6090 | if (!fsid || |
| 6091 | !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) { |
| 6092 | device = __find_device(&cur_devices->devices, |
| 6093 | devid, uuid); |
| 6094 | if (device) |
| 6095 | return device; |
| 6096 | } |
| 6097 | cur_devices = cur_devices->seed; |
| 6098 | } |
| 6099 | return NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6100 | } |
| 6101 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6102 | static struct btrfs_device *add_missing_dev(struct btrfs_root *root, |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6103 | struct btrfs_fs_devices *fs_devices, |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6104 | u64 devid, u8 *dev_uuid) |
| 6105 | { |
| 6106 | struct btrfs_device *device; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6107 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6108 | device = btrfs_alloc_device(NULL, &devid, dev_uuid); |
| 6109 | if (IS_ERR(device)) |
yanhai zhu | 7cbd8a8 | 2008-11-12 14:38:54 -0500 | [diff] [blame] | 6110 | return NULL; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6111 | |
| 6112 | list_add(&device->dev_list, &fs_devices->devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6113 | device->fs_devices = fs_devices; |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6114 | fs_devices->num_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6115 | |
| 6116 | device->missing = 1; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6117 | fs_devices->missing_devices++; |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6118 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6119 | return device; |
| 6120 | } |
| 6121 | |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6122 | /** |
| 6123 | * btrfs_alloc_device - allocate struct btrfs_device |
| 6124 | * @fs_info: used only for generating a new devid, can be NULL if |
| 6125 | * devid is provided (i.e. @devid != NULL). |
| 6126 | * @devid: a pointer to devid for this device. If NULL a new devid |
| 6127 | * is generated. |
| 6128 | * @uuid: a pointer to UUID for this device. If NULL a new UUID |
| 6129 | * is generated. |
| 6130 | * |
| 6131 | * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR() |
| 6132 | * on error. Returned struct is not linked onto any lists and can be |
| 6133 | * destroyed with kfree() right away. |
| 6134 | */ |
| 6135 | struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info, |
| 6136 | const u64 *devid, |
| 6137 | const u8 *uuid) |
| 6138 | { |
| 6139 | struct btrfs_device *dev; |
| 6140 | u64 tmp; |
| 6141 | |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6142 | if (WARN_ON(!devid && !fs_info)) |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6143 | return ERR_PTR(-EINVAL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6144 | |
| 6145 | dev = __alloc_device(); |
| 6146 | if (IS_ERR(dev)) |
| 6147 | return dev; |
| 6148 | |
| 6149 | if (devid) |
| 6150 | tmp = *devid; |
| 6151 | else { |
| 6152 | int ret; |
| 6153 | |
| 6154 | ret = find_next_devid(fs_info, &tmp); |
| 6155 | if (ret) { |
| 6156 | kfree(dev); |
| 6157 | return ERR_PTR(ret); |
| 6158 | } |
| 6159 | } |
| 6160 | dev->devid = tmp; |
| 6161 | |
| 6162 | if (uuid) |
| 6163 | memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE); |
| 6164 | else |
| 6165 | generate_random_uuid(dev->uuid); |
| 6166 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 6167 | btrfs_init_work(&dev->work, btrfs_submit_helper, |
| 6168 | pending_bios_fn, NULL, NULL); |
Ilya Dryomov | 12bd2fc | 2013-08-23 13:20:17 +0300 | [diff] [blame] | 6169 | |
| 6170 | return dev; |
| 6171 | } |
| 6172 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6173 | static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key, |
| 6174 | struct extent_buffer *leaf, |
| 6175 | struct btrfs_chunk *chunk) |
| 6176 | { |
| 6177 | struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree; |
| 6178 | struct map_lookup *map; |
| 6179 | struct extent_map *em; |
| 6180 | u64 logical; |
| 6181 | u64 length; |
| 6182 | u64 devid; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6183 | u8 uuid[BTRFS_UUID_SIZE]; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6184 | int num_stripes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6185 | int ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6186 | int i; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6187 | |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 6188 | logical = key->offset; |
| 6189 | length = btrfs_chunk_length(leaf, chunk); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6190 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6191 | read_lock(&map_tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6192 | em = lookup_extent_mapping(&map_tree->map_tree, logical, 1); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6193 | read_unlock(&map_tree->map_tree.lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6194 | |
| 6195 | /* already mapped? */ |
| 6196 | if (em && em->start <= logical && em->start + em->len > logical) { |
| 6197 | free_extent_map(em); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6198 | return 0; |
| 6199 | } else if (em) { |
| 6200 | free_extent_map(em); |
| 6201 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6202 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 6203 | em = alloc_extent_map(); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6204 | if (!em) |
| 6205 | return -ENOMEM; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6206 | num_stripes = btrfs_chunk_num_stripes(leaf, chunk); |
| 6207 | map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6208 | if (!map) { |
| 6209 | free_extent_map(em); |
| 6210 | return -ENOMEM; |
| 6211 | } |
| 6212 | |
Wang Shilong | 298a8f9 | 2014-06-19 10:42:52 +0800 | [diff] [blame] | 6213 | set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6214 | em->bdev = (struct block_device *)map; |
| 6215 | em->start = logical; |
| 6216 | em->len = length; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 6217 | em->orig_start = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6218 | em->block_start = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6219 | em->block_len = em->len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6220 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6221 | map->num_stripes = num_stripes; |
| 6222 | map->io_width = btrfs_chunk_io_width(leaf, chunk); |
| 6223 | map->io_align = btrfs_chunk_io_align(leaf, chunk); |
| 6224 | map->sector_size = btrfs_chunk_sector_size(leaf, chunk); |
| 6225 | map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk); |
| 6226 | map->type = btrfs_chunk_type(leaf, chunk); |
Chris Mason | 321aecc | 2008-04-16 10:49:51 -0400 | [diff] [blame] | 6227 | map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6228 | for (i = 0; i < num_stripes; i++) { |
| 6229 | map->stripes[i].physical = |
| 6230 | btrfs_stripe_offset_nr(leaf, chunk, i); |
| 6231 | devid = btrfs_stripe_devid_nr(leaf, chunk, i); |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6232 | read_extent_buffer(leaf, uuid, (unsigned long) |
| 6233 | btrfs_stripe_dev_uuid_nr(chunk, i), |
| 6234 | BTRFS_UUID_SIZE); |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6235 | map->stripes[i].dev = btrfs_find_device(root->fs_info, devid, |
| 6236 | uuid, NULL); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6237 | if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) { |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 6238 | free_extent_map(em); |
| 6239 | return -EIO; |
| 6240 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6241 | if (!map->stripes[i].dev) { |
| 6242 | map->stripes[i].dev = |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6243 | add_missing_dev(root, root->fs_info->fs_devices, |
| 6244 | devid, uuid); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6245 | if (!map->stripes[i].dev) { |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6246 | free_extent_map(em); |
| 6247 | return -EIO; |
| 6248 | } |
Anand Jain | 816fceb | 2015-04-27 12:46:18 +0800 | [diff] [blame] | 6249 | btrfs_warn(root->fs_info, "devid %llu uuid %pU is missing", |
| 6250 | devid, uuid); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6251 | } |
| 6252 | map->stripes[i].dev->in_fs_metadata = 1; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6253 | } |
| 6254 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6255 | write_lock(&map_tree->map_tree.lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 6256 | ret = add_extent_mapping(&map_tree->map_tree, em, 0); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6257 | write_unlock(&map_tree->map_tree.lock); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6258 | BUG_ON(ret); /* Tree corruption */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6259 | free_extent_map(em); |
| 6260 | |
| 6261 | return 0; |
| 6262 | } |
| 6263 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6264 | static void fill_device_from_item(struct extent_buffer *leaf, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6265 | struct btrfs_dev_item *dev_item, |
| 6266 | struct btrfs_device *device) |
| 6267 | { |
| 6268 | unsigned long ptr; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6269 | |
| 6270 | device->devid = btrfs_device_id(leaf, dev_item); |
Chris Ball | d6397ba | 2009-04-27 07:29:03 -0400 | [diff] [blame] | 6271 | device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item); |
| 6272 | device->total_bytes = device->disk_total_bytes; |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 6273 | device->commit_total_bytes = device->disk_total_bytes; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6274 | device->bytes_used = btrfs_device_bytes_used(leaf, dev_item); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 6275 | device->commit_bytes_used = device->bytes_used; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6276 | device->type = btrfs_device_type(leaf, dev_item); |
| 6277 | device->io_align = btrfs_device_io_align(leaf, dev_item); |
| 6278 | device->io_width = btrfs_device_io_width(leaf, dev_item); |
| 6279 | device->sector_size = btrfs_device_sector_size(leaf, dev_item); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 6280 | WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID); |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 6281 | device->is_tgtdev_for_dev_replace = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6282 | |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 6283 | ptr = btrfs_device_uuid(dev_item); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 6284 | read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6285 | } |
| 6286 | |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6287 | static struct btrfs_fs_devices *open_seed_devices(struct btrfs_root *root, |
| 6288 | u8 *fsid) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6289 | { |
| 6290 | struct btrfs_fs_devices *fs_devices; |
| 6291 | int ret; |
| 6292 | |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6293 | BUG_ON(!mutex_is_locked(&uuid_mutex)); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6294 | |
| 6295 | fs_devices = root->fs_info->fs_devices->seed; |
| 6296 | while (fs_devices) { |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6297 | if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) |
| 6298 | return fs_devices; |
| 6299 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6300 | fs_devices = fs_devices->seed; |
| 6301 | } |
| 6302 | |
| 6303 | fs_devices = find_fsid(fsid); |
| 6304 | if (!fs_devices) { |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6305 | if (!btrfs_test_opt(root, DEGRADED)) |
| 6306 | return ERR_PTR(-ENOENT); |
| 6307 | |
| 6308 | fs_devices = alloc_fs_devices(fsid); |
| 6309 | if (IS_ERR(fs_devices)) |
| 6310 | return fs_devices; |
| 6311 | |
| 6312 | fs_devices->seeding = 1; |
| 6313 | fs_devices->opened = 1; |
| 6314 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6315 | } |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6316 | |
| 6317 | fs_devices = clone_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6318 | if (IS_ERR(fs_devices)) |
| 6319 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6320 | |
Christoph Hellwig | 97288f2 | 2008-12-02 06:36:09 -0500 | [diff] [blame] | 6321 | ret = __btrfs_open_devices(fs_devices, FMODE_READ, |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 6322 | root->fs_info->bdev_holder); |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 6323 | if (ret) { |
| 6324 | free_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6325 | fs_devices = ERR_PTR(ret); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6326 | goto out; |
Julia Lawall | 48d2823 | 2012-04-14 11:24:33 +0200 | [diff] [blame] | 6327 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6328 | |
| 6329 | if (!fs_devices->seeding) { |
| 6330 | __btrfs_close_devices(fs_devices); |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6331 | free_fs_devices(fs_devices); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6332 | fs_devices = ERR_PTR(-EINVAL); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6333 | goto out; |
| 6334 | } |
| 6335 | |
| 6336 | fs_devices->seed = root->fs_info->fs_devices->seed; |
| 6337 | root->fs_info->fs_devices->seed = fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6338 | out: |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6339 | return fs_devices; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6340 | } |
| 6341 | |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6342 | static int read_one_dev(struct btrfs_root *root, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6343 | struct extent_buffer *leaf, |
| 6344 | struct btrfs_dev_item *dev_item) |
| 6345 | { |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6346 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6347 | struct btrfs_device *device; |
| 6348 | u64 devid; |
| 6349 | int ret; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6350 | u8 fs_uuid[BTRFS_UUID_SIZE]; |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6351 | u8 dev_uuid[BTRFS_UUID_SIZE]; |
| 6352 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6353 | devid = btrfs_device_id(leaf, dev_item); |
Geert Uytterhoeven | 410ba3a | 2013-08-20 13:20:11 +0200 | [diff] [blame] | 6354 | read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item), |
Chris Mason | a443755 | 2008-04-18 10:29:38 -0400 | [diff] [blame] | 6355 | BTRFS_UUID_SIZE); |
Geert Uytterhoeven | 1473b24 | 2013-08-20 13:20:12 +0200 | [diff] [blame] | 6356 | read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item), |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6357 | BTRFS_UUID_SIZE); |
| 6358 | |
| 6359 | if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) { |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6360 | fs_devices = open_seed_devices(root, fs_uuid); |
| 6361 | if (IS_ERR(fs_devices)) |
| 6362 | return PTR_ERR(fs_devices); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6363 | } |
| 6364 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6365 | device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6366 | if (!device) { |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6367 | if (!btrfs_test_opt(root, DEGRADED)) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6368 | return -EIO; |
| 6369 | |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6370 | device = add_missing_dev(root, fs_devices, devid, dev_uuid); |
| 6371 | if (!device) |
| 6372 | return -ENOMEM; |
Anand Jain | 33b97e4 | 2015-05-08 04:34:35 +0800 | [diff] [blame] | 6373 | btrfs_warn(root->fs_info, "devid %llu uuid %pU missing", |
| 6374 | devid, dev_uuid); |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6375 | } else { |
| 6376 | if (!device->bdev && !btrfs_test_opt(root, DEGRADED)) |
| 6377 | return -EIO; |
| 6378 | |
| 6379 | if(!device->bdev && !device->missing) { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6380 | /* |
| 6381 | * this happens when a device that was properly setup |
| 6382 | * in the device info lists suddenly goes bad. |
| 6383 | * device->bdev is NULL, and so we have to set |
| 6384 | * device->missing to one here |
| 6385 | */ |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6386 | device->fs_devices->missing_devices++; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 6387 | device->missing = 1; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6388 | } |
Miao Xie | 5f37583 | 2014-09-03 21:35:46 +0800 | [diff] [blame] | 6389 | |
| 6390 | /* Move the device to its own fs_devices */ |
| 6391 | if (device->fs_devices != fs_devices) { |
| 6392 | ASSERT(device->missing); |
| 6393 | |
| 6394 | list_move(&device->dev_list, &fs_devices->devices); |
| 6395 | device->fs_devices->num_devices--; |
| 6396 | fs_devices->num_devices++; |
| 6397 | |
| 6398 | device->fs_devices->missing_devices--; |
| 6399 | fs_devices->missing_devices++; |
| 6400 | |
| 6401 | device->fs_devices = fs_devices; |
| 6402 | } |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6403 | } |
| 6404 | |
| 6405 | if (device->fs_devices != root->fs_info->fs_devices) { |
| 6406 | BUG_ON(device->writeable); |
| 6407 | if (device->generation != |
| 6408 | btrfs_device_generation(leaf, dev_item)) |
| 6409 | return -EINVAL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 6410 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6411 | |
| 6412 | fill_device_from_item(leaf, dev_item, device); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 6413 | device->in_fs_metadata = 1; |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 6414 | if (device->writeable && !device->is_tgtdev_for_dev_replace) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6415 | device->fs_devices->total_rw_bytes += device->total_bytes; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 6416 | spin_lock(&root->fs_info->free_chunk_lock); |
| 6417 | root->fs_info->free_chunk_space += device->total_bytes - |
| 6418 | device->bytes_used; |
| 6419 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 6420 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6421 | ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6422 | return ret; |
| 6423 | } |
| 6424 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 6425 | int btrfs_read_sys_array(struct btrfs_root *root) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6426 | { |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 6427 | struct btrfs_super_block *super_copy = root->fs_info->super_copy; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6428 | struct extent_buffer *sb; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6429 | struct btrfs_disk_key *disk_key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6430 | struct btrfs_chunk *chunk; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6431 | u8 *array_ptr; |
| 6432 | unsigned long sb_array_offset; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6433 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6434 | u32 num_stripes; |
| 6435 | u32 array_size; |
| 6436 | u32 len = 0; |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6437 | u32 cur_offset; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6438 | struct btrfs_key key; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6439 | |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 6440 | ASSERT(BTRFS_SUPER_INFO_SIZE <= root->nodesize); |
| 6441 | /* |
| 6442 | * This will create extent buffer of nodesize, superblock size is |
| 6443 | * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will |
| 6444 | * overallocate but we can keep it as-is, only the first page is used. |
| 6445 | */ |
| 6446 | sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6447 | if (!sb) |
| 6448 | return -ENOMEM; |
| 6449 | btrfs_set_buffer_uptodate(sb); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 6450 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0); |
David Sterba | 8a33442 | 2011-10-07 18:06:13 +0200 | [diff] [blame] | 6451 | /* |
| 6452 | * The sb extent buffer is artifical and just used to read the system array. |
| 6453 | * btrfs_set_buffer_uptodate() call does not properly mark all it's |
| 6454 | * pages up-to-date when the page is larger: extent does not cover the |
| 6455 | * whole page and consequently check_page_uptodate does not find all |
| 6456 | * the page's extents up-to-date (the hole beyond sb), |
| 6457 | * write_extent_buffer then triggers a WARN_ON. |
| 6458 | * |
| 6459 | * Regular short extents go through mark_extent_buffer_dirty/writeback cycle, |
| 6460 | * but sb spans only this function. Add an explicit SetPageUptodate call |
| 6461 | * to silence the warning eg. on PowerPC 64. |
| 6462 | */ |
| 6463 | if (PAGE_CACHE_SIZE > BTRFS_SUPER_INFO_SIZE) |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 6464 | SetPageUptodate(sb->pages[0]); |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 6465 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6466 | write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6467 | array_size = btrfs_super_sys_array_size(super_copy); |
| 6468 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6469 | array_ptr = super_copy->sys_chunk_array; |
| 6470 | sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array); |
| 6471 | cur_offset = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6472 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6473 | while (cur_offset < array_size) { |
| 6474 | disk_key = (struct btrfs_disk_key *)array_ptr; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6475 | len = sizeof(*disk_key); |
| 6476 | if (cur_offset + len > array_size) |
| 6477 | goto out_short_read; |
| 6478 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6479 | btrfs_disk_key_to_cpu(&key, disk_key); |
| 6480 | |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6481 | array_ptr += len; |
| 6482 | sb_array_offset += len; |
| 6483 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6484 | |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6485 | if (key.type == BTRFS_CHUNK_ITEM_KEY) { |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6486 | chunk = (struct btrfs_chunk *)sb_array_offset; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6487 | /* |
| 6488 | * At least one btrfs_chunk with one stripe must be |
| 6489 | * present, exact stripe count check comes afterwards |
| 6490 | */ |
| 6491 | len = btrfs_chunk_item_size(1); |
| 6492 | if (cur_offset + len > array_size) |
| 6493 | goto out_short_read; |
| 6494 | |
| 6495 | num_stripes = btrfs_chunk_num_stripes(sb, chunk); |
| 6496 | len = btrfs_chunk_item_size(num_stripes); |
| 6497 | if (cur_offset + len > array_size) |
| 6498 | goto out_short_read; |
| 6499 | |
Chris Mason | 0d81ba5 | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6500 | ret = read_one_chunk(root, &key, sb, chunk); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6501 | if (ret) |
| 6502 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6503 | } else { |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6504 | ret = -EIO; |
| 6505 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6506 | } |
David Sterba | 1ffb22c | 2014-10-31 19:02:42 +0100 | [diff] [blame] | 6507 | array_ptr += len; |
| 6508 | sb_array_offset += len; |
| 6509 | cur_offset += len; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6510 | } |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6511 | free_extent_buffer(sb); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 6512 | return ret; |
David Sterba | e3540ea | 2014-11-05 15:24:51 +0100 | [diff] [blame] | 6513 | |
| 6514 | out_short_read: |
| 6515 | printk(KERN_ERR "BTRFS: sys_array too short to read %u bytes at offset %u\n", |
| 6516 | len, cur_offset); |
| 6517 | free_extent_buffer(sb); |
| 6518 | return -EIO; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6519 | } |
| 6520 | |
| 6521 | int btrfs_read_chunk_tree(struct btrfs_root *root) |
| 6522 | { |
| 6523 | struct btrfs_path *path; |
| 6524 | struct extent_buffer *leaf; |
| 6525 | struct btrfs_key key; |
| 6526 | struct btrfs_key found_key; |
| 6527 | int ret; |
| 6528 | int slot; |
| 6529 | |
| 6530 | root = root->fs_info->chunk_root; |
| 6531 | |
| 6532 | path = btrfs_alloc_path(); |
| 6533 | if (!path) |
| 6534 | return -ENOMEM; |
| 6535 | |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6536 | mutex_lock(&uuid_mutex); |
| 6537 | lock_chunks(root); |
| 6538 | |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6539 | /* |
| 6540 | * Read all device items, and then all the chunk items. All |
| 6541 | * device items are found before any chunk item (their object id |
| 6542 | * is smaller than the lowest possible object id for a chunk |
| 6543 | * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID). |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6544 | */ |
| 6545 | key.objectid = BTRFS_DEV_ITEMS_OBJECTID; |
| 6546 | key.offset = 0; |
| 6547 | key.type = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6548 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Zhao Lei | ab59381 | 2010-03-25 12:34:49 +0000 | [diff] [blame] | 6549 | if (ret < 0) |
| 6550 | goto error; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6551 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6552 | leaf = path->nodes[0]; |
| 6553 | slot = path->slots[0]; |
| 6554 | if (slot >= btrfs_header_nritems(leaf)) { |
| 6555 | ret = btrfs_next_leaf(root, path); |
| 6556 | if (ret == 0) |
| 6557 | continue; |
| 6558 | if (ret < 0) |
| 6559 | goto error; |
| 6560 | break; |
| 6561 | } |
| 6562 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6563 | if (found_key.type == BTRFS_DEV_ITEM_KEY) { |
| 6564 | struct btrfs_dev_item *dev_item; |
| 6565 | dev_item = btrfs_item_ptr(leaf, slot, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6566 | struct btrfs_dev_item); |
Filipe David Borba Manana | 395927a | 2013-07-30 12:03:04 +0100 | [diff] [blame] | 6567 | ret = read_one_dev(root, leaf, dev_item); |
| 6568 | if (ret) |
| 6569 | goto error; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6570 | } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) { |
| 6571 | struct btrfs_chunk *chunk; |
| 6572 | chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); |
| 6573 | ret = read_one_chunk(root, &found_key, leaf, chunk); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6574 | if (ret) |
| 6575 | goto error; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6576 | } |
| 6577 | path->slots[0]++; |
| 6578 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6579 | ret = 0; |
| 6580 | error: |
Li Zefan | b367e47 | 2011-12-07 11:38:24 +0800 | [diff] [blame] | 6581 | unlock_chunks(root); |
| 6582 | mutex_unlock(&uuid_mutex); |
| 6583 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 6584 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6585 | return ret; |
| 6586 | } |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6587 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 6588 | void btrfs_init_devices_late(struct btrfs_fs_info *fs_info) |
| 6589 | { |
| 6590 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 6591 | struct btrfs_device *device; |
| 6592 | |
Liu Bo | 29cc83f | 2014-05-11 23:14:59 +0800 | [diff] [blame] | 6593 | while (fs_devices) { |
| 6594 | mutex_lock(&fs_devices->device_list_mutex); |
| 6595 | list_for_each_entry(device, &fs_devices->devices, dev_list) |
| 6596 | device->dev_root = fs_info->dev_root; |
| 6597 | mutex_unlock(&fs_devices->device_list_mutex); |
| 6598 | |
| 6599 | fs_devices = fs_devices->seed; |
| 6600 | } |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 6601 | } |
| 6602 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6603 | static void __btrfs_reset_dev_stats(struct btrfs_device *dev) |
| 6604 | { |
| 6605 | int i; |
| 6606 | |
| 6607 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 6608 | btrfs_dev_stat_reset(dev, i); |
| 6609 | } |
| 6610 | |
| 6611 | int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info) |
| 6612 | { |
| 6613 | struct btrfs_key key; |
| 6614 | struct btrfs_key found_key; |
| 6615 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 6616 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 6617 | struct extent_buffer *eb; |
| 6618 | int slot; |
| 6619 | int ret = 0; |
| 6620 | struct btrfs_device *device; |
| 6621 | struct btrfs_path *path = NULL; |
| 6622 | int i; |
| 6623 | |
| 6624 | path = btrfs_alloc_path(); |
| 6625 | if (!path) { |
| 6626 | ret = -ENOMEM; |
| 6627 | goto out; |
| 6628 | } |
| 6629 | |
| 6630 | mutex_lock(&fs_devices->device_list_mutex); |
| 6631 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
| 6632 | int item_size; |
| 6633 | struct btrfs_dev_stats_item *ptr; |
| 6634 | |
| 6635 | key.objectid = 0; |
| 6636 | key.type = BTRFS_DEV_STATS_KEY; |
| 6637 | key.offset = device->devid; |
| 6638 | ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0); |
| 6639 | if (ret) { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6640 | __btrfs_reset_dev_stats(device); |
| 6641 | device->dev_stats_valid = 1; |
| 6642 | btrfs_release_path(path); |
| 6643 | continue; |
| 6644 | } |
| 6645 | slot = path->slots[0]; |
| 6646 | eb = path->nodes[0]; |
| 6647 | btrfs_item_key_to_cpu(eb, &found_key, slot); |
| 6648 | item_size = btrfs_item_size_nr(eb, slot); |
| 6649 | |
| 6650 | ptr = btrfs_item_ptr(eb, slot, |
| 6651 | struct btrfs_dev_stats_item); |
| 6652 | |
| 6653 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 6654 | if (item_size >= (1 + i) * sizeof(__le64)) |
| 6655 | btrfs_dev_stat_set(device, i, |
| 6656 | btrfs_dev_stats_value(eb, ptr, i)); |
| 6657 | else |
| 6658 | btrfs_dev_stat_reset(device, i); |
| 6659 | } |
| 6660 | |
| 6661 | device->dev_stats_valid = 1; |
| 6662 | btrfs_dev_stat_print_on_load(device); |
| 6663 | btrfs_release_path(path); |
| 6664 | } |
| 6665 | mutex_unlock(&fs_devices->device_list_mutex); |
| 6666 | |
| 6667 | out: |
| 6668 | btrfs_free_path(path); |
| 6669 | return ret < 0 ? ret : 0; |
| 6670 | } |
| 6671 | |
| 6672 | static int update_dev_stat_item(struct btrfs_trans_handle *trans, |
| 6673 | struct btrfs_root *dev_root, |
| 6674 | struct btrfs_device *device) |
| 6675 | { |
| 6676 | struct btrfs_path *path; |
| 6677 | struct btrfs_key key; |
| 6678 | struct extent_buffer *eb; |
| 6679 | struct btrfs_dev_stats_item *ptr; |
| 6680 | int ret; |
| 6681 | int i; |
| 6682 | |
| 6683 | key.objectid = 0; |
| 6684 | key.type = BTRFS_DEV_STATS_KEY; |
| 6685 | key.offset = device->devid; |
| 6686 | |
| 6687 | path = btrfs_alloc_path(); |
| 6688 | BUG_ON(!path); |
| 6689 | ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1); |
| 6690 | if (ret < 0) { |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 6691 | btrfs_warn_in_rcu(dev_root->fs_info, |
| 6692 | "error %d while searching for dev_stats item for device %s", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 6693 | ret, rcu_str_deref(device->name)); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6694 | goto out; |
| 6695 | } |
| 6696 | |
| 6697 | if (ret == 0 && |
| 6698 | btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) { |
| 6699 | /* need to delete old one and insert a new one */ |
| 6700 | ret = btrfs_del_item(trans, dev_root, path); |
| 6701 | if (ret != 0) { |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 6702 | btrfs_warn_in_rcu(dev_root->fs_info, |
| 6703 | "delete too small dev_stats item for device %s failed %d", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 6704 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6705 | goto out; |
| 6706 | } |
| 6707 | ret = 1; |
| 6708 | } |
| 6709 | |
| 6710 | if (ret == 1) { |
| 6711 | /* need to insert a new item */ |
| 6712 | btrfs_release_path(path); |
| 6713 | ret = btrfs_insert_empty_item(trans, dev_root, path, |
| 6714 | &key, sizeof(*ptr)); |
| 6715 | if (ret < 0) { |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 6716 | btrfs_warn_in_rcu(dev_root->fs_info, |
| 6717 | "insert dev_stats item for device %s failed %d", |
| 6718 | rcu_str_deref(device->name), ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6719 | goto out; |
| 6720 | } |
| 6721 | } |
| 6722 | |
| 6723 | eb = path->nodes[0]; |
| 6724 | ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item); |
| 6725 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 6726 | btrfs_set_dev_stats_value(eb, ptr, i, |
| 6727 | btrfs_dev_stat_read(device, i)); |
| 6728 | btrfs_mark_buffer_dirty(eb); |
| 6729 | |
| 6730 | out: |
| 6731 | btrfs_free_path(path); |
| 6732 | return ret; |
| 6733 | } |
| 6734 | |
| 6735 | /* |
| 6736 | * called from commit_transaction. Writes all changed device stats to disk. |
| 6737 | */ |
| 6738 | int btrfs_run_dev_stats(struct btrfs_trans_handle *trans, |
| 6739 | struct btrfs_fs_info *fs_info) |
| 6740 | { |
| 6741 | struct btrfs_root *dev_root = fs_info->dev_root; |
| 6742 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 6743 | struct btrfs_device *device; |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 6744 | int stats_cnt; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6745 | int ret = 0; |
| 6746 | |
| 6747 | mutex_lock(&fs_devices->device_list_mutex); |
| 6748 | list_for_each_entry(device, &fs_devices->devices, dev_list) { |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 6749 | if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device)) |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6750 | continue; |
| 6751 | |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 6752 | stats_cnt = atomic_read(&device->dev_stats_ccnt); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6753 | ret = update_dev_stat_item(trans, dev_root, device); |
| 6754 | if (!ret) |
Miao Xie | addc3fa | 2014-07-24 11:37:11 +0800 | [diff] [blame] | 6755 | atomic_sub(stats_cnt, &device->dev_stats_ccnt); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6756 | } |
| 6757 | mutex_unlock(&fs_devices->device_list_mutex); |
| 6758 | |
| 6759 | return ret; |
| 6760 | } |
| 6761 | |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6762 | void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index) |
| 6763 | { |
| 6764 | btrfs_dev_stat_inc(dev, index); |
| 6765 | btrfs_dev_stat_print_on_error(dev); |
| 6766 | } |
| 6767 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 6768 | static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev) |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6769 | { |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6770 | if (!dev->dev_stats_valid) |
| 6771 | return; |
David Sterba | b14af3b | 2015-10-08 10:43:10 +0200 | [diff] [blame] | 6772 | btrfs_err_rl_in_rcu(dev->dev_root->fs_info, |
| 6773 | "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] | 6774 | rcu_str_deref(dev->name), |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6775 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 6776 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 6777 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 6778 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 6779 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 6780 | } |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 6781 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6782 | static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev) |
| 6783 | { |
Stefan Behrens | a98cdb8 | 2012-07-17 09:02:11 -0600 | [diff] [blame] | 6784 | int i; |
| 6785 | |
| 6786 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 6787 | if (btrfs_dev_stat_read(dev, i) != 0) |
| 6788 | break; |
| 6789 | if (i == BTRFS_DEV_STAT_VALUES_MAX) |
| 6790 | return; /* all values == 0, suppress message */ |
| 6791 | |
David Sterba | ecaeb14 | 2015-10-08 09:01:03 +0200 | [diff] [blame] | 6792 | btrfs_info_in_rcu(dev->dev_root->fs_info, |
| 6793 | "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] | 6794 | rcu_str_deref(dev->name), |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6795 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS), |
| 6796 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS), |
| 6797 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS), |
| 6798 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS), |
| 6799 | btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS)); |
| 6800 | } |
| 6801 | |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 6802 | int btrfs_get_dev_stats(struct btrfs_root *root, |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 6803 | struct btrfs_ioctl_get_dev_stats *stats) |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 6804 | { |
| 6805 | struct btrfs_device *dev; |
| 6806 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
| 6807 | int i; |
| 6808 | |
| 6809 | mutex_lock(&fs_devices->device_list_mutex); |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 6810 | dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 6811 | mutex_unlock(&fs_devices->device_list_mutex); |
| 6812 | |
| 6813 | if (!dev) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 6814 | btrfs_warn(root->fs_info, "get dev_stats failed, device not found"); |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 6815 | return -ENODEV; |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6816 | } else if (!dev->dev_stats_valid) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 6817 | btrfs_warn(root->fs_info, "get dev_stats failed, not yet valid"); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 6818 | return -ENODEV; |
David Sterba | b27f7c0 | 2012-06-22 06:30:39 -0600 | [diff] [blame] | 6819 | } else if (stats->flags & BTRFS_DEV_STATS_RESET) { |
Stefan Behrens | c11d2c2 | 2012-05-25 16:06:09 +0200 | [diff] [blame] | 6820 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) { |
| 6821 | if (stats->nr_items > i) |
| 6822 | stats->values[i] = |
| 6823 | btrfs_dev_stat_read_and_reset(dev, i); |
| 6824 | else |
| 6825 | btrfs_dev_stat_reset(dev, i); |
| 6826 | } |
| 6827 | } else { |
| 6828 | for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) |
| 6829 | if (stats->nr_items > i) |
| 6830 | stats->values[i] = btrfs_dev_stat_read(dev, i); |
| 6831 | } |
| 6832 | if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX) |
| 6833 | stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX; |
| 6834 | return 0; |
| 6835 | } |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 6836 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 6837 | void btrfs_scratch_superblocks(struct block_device *bdev, char *device_path) |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 6838 | { |
| 6839 | struct buffer_head *bh; |
| 6840 | struct btrfs_super_block *disk_super; |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 6841 | int copy_num; |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 6842 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 6843 | if (!bdev) |
| 6844 | return; |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 6845 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 6846 | for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX; |
| 6847 | copy_num++) { |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 6848 | |
Anand Jain | 12b1c26 | 2015-08-14 18:32:59 +0800 | [diff] [blame] | 6849 | if (btrfs_read_dev_one_super(bdev, copy_num, &bh)) |
| 6850 | continue; |
| 6851 | |
| 6852 | disk_super = (struct btrfs_super_block *)bh->b_data; |
| 6853 | |
| 6854 | memset(&disk_super->magic, 0, sizeof(disk_super->magic)); |
| 6855 | set_buffer_dirty(bh); |
| 6856 | sync_dirty_buffer(bh); |
| 6857 | brelse(bh); |
| 6858 | } |
| 6859 | |
| 6860 | /* Notify udev that device has changed */ |
| 6861 | btrfs_kobject_uevent(bdev, KOBJ_CHANGE); |
| 6862 | |
| 6863 | /* Update ctime/mtime for device path for libblkid */ |
| 6864 | update_dev_time(device_path); |
Stefan Behrens | a8a6dab | 2012-11-05 15:50:14 +0100 | [diff] [blame] | 6865 | } |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 6866 | |
| 6867 | /* |
| 6868 | * Update the size of all devices, which is used for writing out the |
| 6869 | * super blocks. |
| 6870 | */ |
| 6871 | void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info) |
| 6872 | { |
| 6873 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 6874 | struct btrfs_device *curr, *next; |
| 6875 | |
| 6876 | if (list_empty(&fs_devices->resized_devices)) |
| 6877 | return; |
| 6878 | |
| 6879 | mutex_lock(&fs_devices->device_list_mutex); |
| 6880 | lock_chunks(fs_info->dev_root); |
| 6881 | list_for_each_entry_safe(curr, next, &fs_devices->resized_devices, |
| 6882 | resized_list) { |
| 6883 | list_del_init(&curr->resized_list); |
| 6884 | curr->commit_total_bytes = curr->disk_total_bytes; |
| 6885 | } |
| 6886 | unlock_chunks(fs_info->dev_root); |
| 6887 | mutex_unlock(&fs_devices->device_list_mutex); |
| 6888 | } |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 6889 | |
| 6890 | /* Must be invoked during the transaction commit */ |
| 6891 | void btrfs_update_commit_device_bytes_used(struct btrfs_root *root, |
| 6892 | struct btrfs_transaction *transaction) |
| 6893 | { |
| 6894 | struct extent_map *em; |
| 6895 | struct map_lookup *map; |
| 6896 | struct btrfs_device *dev; |
| 6897 | int i; |
| 6898 | |
| 6899 | if (list_empty(&transaction->pending_chunks)) |
| 6900 | return; |
| 6901 | |
| 6902 | /* In order to kick the device replace finish process */ |
| 6903 | lock_chunks(root); |
| 6904 | list_for_each_entry(em, &transaction->pending_chunks, list) { |
| 6905 | map = (struct map_lookup *)em->bdev; |
| 6906 | |
| 6907 | for (i = 0; i < map->num_stripes; i++) { |
| 6908 | dev = map->stripes[i].dev; |
| 6909 | dev->commit_bytes_used = dev->bytes_used; |
| 6910 | } |
| 6911 | } |
| 6912 | unlock_chunks(root); |
| 6913 | } |
Anand Jain | 5a13f43 | 2015-03-10 06:38:31 +0800 | [diff] [blame] | 6914 | |
| 6915 | void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info) |
| 6916 | { |
| 6917 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 6918 | while (fs_devices) { |
| 6919 | fs_devices->fs_info = fs_info; |
| 6920 | fs_devices = fs_devices->seed; |
| 6921 | } |
| 6922 | } |
| 6923 | |
| 6924 | void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info) |
| 6925 | { |
| 6926 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
| 6927 | while (fs_devices) { |
| 6928 | fs_devices->fs_info = NULL; |
| 6929 | fs_devices = fs_devices->seed; |
| 6930 | } |
| 6931 | } |
Anand Jain | f190aa4 | 2015-08-14 18:33:05 +0800 | [diff] [blame] | 6932 | |
| 6933 | void btrfs_close_one_device(struct btrfs_device *device) |
| 6934 | { |
| 6935 | struct btrfs_fs_devices *fs_devices = device->fs_devices; |
| 6936 | struct btrfs_device *new_device; |
| 6937 | struct rcu_string *name; |
| 6938 | |
| 6939 | if (device->bdev) |
| 6940 | fs_devices->open_devices--; |
| 6941 | |
| 6942 | if (device->writeable && |
| 6943 | device->devid != BTRFS_DEV_REPLACE_DEVID) { |
| 6944 | list_del_init(&device->dev_alloc_list); |
| 6945 | fs_devices->rw_devices--; |
| 6946 | } |
| 6947 | |
| 6948 | if (device->missing) |
| 6949 | fs_devices->missing_devices--; |
| 6950 | |
| 6951 | new_device = btrfs_alloc_device(NULL, &device->devid, |
| 6952 | device->uuid); |
| 6953 | BUG_ON(IS_ERR(new_device)); /* -ENOMEM */ |
| 6954 | |
| 6955 | /* Safe because we are under uuid_mutex */ |
| 6956 | if (device->name) { |
| 6957 | name = rcu_string_strdup(device->name->str, GFP_NOFS); |
| 6958 | BUG_ON(!name); /* -ENOMEM */ |
| 6959 | rcu_assign_pointer(new_device->name, name); |
| 6960 | } |
| 6961 | |
| 6962 | list_replace_rcu(&device->dev_list, &new_device->dev_list); |
| 6963 | new_device->fs_devices = device->fs_devices; |
| 6964 | |
| 6965 | call_rcu(&device->rcu, free_device); |
| 6966 | } |