blob: e4bfd81340a74df8f0f9b925398f0cb124ad1899 [file] [log] [blame]
Chris Mason0b86a832008-03-24 15:01:56 -04001/*
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 Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason8a4b83c2008-03-24 15:02:07 -040021#include <linux/buffer_head.h>
Chris Masonf2d8d742008-04-21 10:03:05 -040022#include <linux/blkdev.h>
Chris Masonb765ead2009-04-03 10:27:10 -040023#include <linux/iocontext.h>
Ben Hutchings6f88a442010-12-29 14:55:03 +000024#include <linux/capability.h>
Stefan Behrens442a4f62012-05-25 16:06:08 +020025#include <linux/ratelimit.h>
Ilya Dryomov59641012012-01-16 22:04:48 +020026#include <linux/kthread.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050027#include <linux/raid/pq.h>
Stefan Behrens803b2f52013-08-15 17:11:21 +020028#include <linux/semaphore.h>
Andy Shevchenko8da4b8c2016-05-20 17:01:00 -070029#include <linux/uuid.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050030#include <asm/div64.h>
Chris Mason0b86a832008-03-24 15:01:56 -040031#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 Woodhouse53b381b2013-01-29 18:40:14 -050037#include "raid56.h"
Chris Mason8b712842008-06-11 16:50:36 -040038#include "async-thread.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010039#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040040#include "rcu-string.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060041#include "math.h"
Stefan Behrens8dabb742012-11-06 13:15:27 +010042#include "dev-replace.h"
Anand Jain99994cd2014-06-03 11:36:00 +080043#include "sysfs.h"
Chris Mason0b86a832008-03-24 15:01:56 -040044
Zhao Leiaf902042015-09-15 21:08:06 +080045const 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 Lei8789f4f2015-09-15 21:08:07 +080051 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080052 .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 Lei8789f4f2015-09-15 21:08:07 +080060 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080061 .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 Lei8789f4f2015-09-15 21:08:07 +080069 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080070 .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 Lei8789f4f2015-09-15 21:08:07 +080078 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080079 .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 Lei8789f4f2015-09-15 21:08:07 +080087 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080088 .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 Lei8789f4f2015-09-15 21:08:07 +080096 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080097 .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 Lei8789f4f2015-09-15 21:08:07 +0800105 .tolerated_failures = 2,
Zhao Leiaf902042015-09-15 21:08:06 +0800106 .devs_increment = 1,
107 .ncopies = 3,
108 },
109};
110
Colin Ian Kingfb75d852016-01-19 00:05:28 +0000111const u64 btrfs_raid_group[BTRFS_NR_RAID_TYPES] = {
Zhao Leiaf902042015-09-15 21:08:06 +0800112 [BTRFS_RAID_RAID10] = BTRFS_BLOCK_GROUP_RAID10,
113 [BTRFS_RAID_RAID1] = BTRFS_BLOCK_GROUP_RAID1,
114 [BTRFS_RAID_DUP] = BTRFS_BLOCK_GROUP_DUP,
115 [BTRFS_RAID_RAID0] = BTRFS_BLOCK_GROUP_RAID0,
116 [BTRFS_RAID_SINGLE] = 0,
117 [BTRFS_RAID_RAID5] = BTRFS_BLOCK_GROUP_RAID5,
118 [BTRFS_RAID_RAID6] = BTRFS_BLOCK_GROUP_RAID6,
119};
120
David Sterba621292b2016-02-15 16:28:03 +0100121/*
122 * Table to convert BTRFS_RAID_* to the error code if minimum number of devices
123 * condition is not met. Zero means there's no corresponding
124 * BTRFS_ERROR_DEV_*_NOT_MET value.
125 */
126const int btrfs_raid_mindev_error[BTRFS_NR_RAID_TYPES] = {
127 [BTRFS_RAID_RAID10] = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET,
128 [BTRFS_RAID_RAID1] = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET,
129 [BTRFS_RAID_DUP] = 0,
130 [BTRFS_RAID_RAID0] = 0,
131 [BTRFS_RAID_SINGLE] = 0,
132 [BTRFS_RAID_RAID5] = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET,
133 [BTRFS_RAID_RAID6] = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET,
134};
135
Yan Zheng2b820322008-11-17 21:11:30 -0500136static int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +0100137 struct btrfs_fs_info *fs_info);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400138static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200139static void __btrfs_reset_dev_stats(struct btrfs_device *dev);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000140static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200141static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
Liu Bo5ab56092017-03-14 13:33:57 -0700142static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
143 enum btrfs_map_op op,
144 u64 logical, u64 *length,
145 struct btrfs_bio **bbio_ret,
146 int mirror_num, int need_raid_map);
Yan Zheng2b820322008-11-17 21:11:30 -0500147
David Sterba9c6b1c42017-06-16 22:30:00 +0200148/*
149 * Device locking
150 * ==============
151 *
152 * There are several mutexes that protect manipulation of devices and low-level
153 * structures like chunks but not block groups, extents or files
154 *
155 * uuid_mutex (global lock)
156 * ------------------------
157 * protects the fs_uuids list that tracks all per-fs fs_devices, resulting from
158 * the SCAN_DEV ioctl registration or from mount either implicitly (the first
159 * device) or requested by the device= mount option
160 *
161 * the mutex can be very coarse and can cover long-running operations
162 *
163 * protects: updates to fs_devices counters like missing devices, rw devices,
164 * seeding, structure cloning, openning/closing devices at mount/umount time
165 *
166 * global::fs_devs - add, remove, updates to the global list
167 *
168 * does not protect: manipulation of the fs_devices::devices list!
169 *
170 * btrfs_device::name - renames (write side), read is RCU
171 *
172 * fs_devices::device_list_mutex (per-fs, with RCU)
173 * ------------------------------------------------
174 * protects updates to fs_devices::devices, ie. adding and deleting
175 *
176 * simple list traversal with read-only actions can be done with RCU protection
177 *
178 * may be used to exclude some operations from running concurrently without any
179 * modifications to the list (see write_all_supers)
180 *
181 * volume_mutex
182 * ------------
183 * coarse lock owned by a mounted filesystem; used to exclude some operations
184 * that cannot run in parallel and affect the higher-level properties of the
185 * filesystem like: device add/deleting/resize/replace, or balance
186 *
187 * balance_mutex
188 * -------------
189 * protects balance structures (status, state) and context accessed from
190 * several places (internally, ioctl)
191 *
192 * chunk_mutex
193 * -----------
194 * protects chunks, adding or removing during allocation, trim or when a new
195 * device is added/removed
196 *
197 * cleaner_mutex
198 * -------------
199 * a big lock that is held by the cleaner thread and prevents running subvolume
200 * cleaning together with relocation or delayed iputs
201 *
202 *
203 * Lock nesting
204 * ============
205 *
206 * uuid_mutex
207 * volume_mutex
208 * device_list_mutex
209 * chunk_mutex
210 * balance_mutex
211 */
212
Miao Xie67a2c452014-09-03 21:35:43 +0800213DEFINE_MUTEX(uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400214static LIST_HEAD(fs_uuids);
Anand Jainc73eccf2015-03-10 06:38:30 +0800215struct list_head *btrfs_get_fs_uuids(void)
216{
217 return &fs_uuids;
218}
Chris Mason8a4b83c2008-03-24 15:02:07 -0400219
David Sterba2dfeca92017-06-14 02:48:07 +0200220/*
221 * alloc_fs_devices - allocate struct btrfs_fs_devices
222 * @fsid: if not NULL, copy the uuid to fs_devices::fsid
223 *
224 * Return a pointer to a new struct btrfs_fs_devices on success, or ERR_PTR().
225 * The returned struct is not linked onto any lists and can be destroyed with
226 * kfree() right away.
227 */
228static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
Ilya Dryomov2208a372013-08-12 14:33:03 +0300229{
230 struct btrfs_fs_devices *fs_devs;
231
David Sterba78f2c9e2016-02-11 14:25:38 +0100232 fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300233 if (!fs_devs)
234 return ERR_PTR(-ENOMEM);
235
236 mutex_init(&fs_devs->device_list_mutex);
237
238 INIT_LIST_HEAD(&fs_devs->devices);
Miao Xie935e5cc2014-09-03 21:35:33 +0800239 INIT_LIST_HEAD(&fs_devs->resized_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300240 INIT_LIST_HEAD(&fs_devs->alloc_list);
241 INIT_LIST_HEAD(&fs_devs->list);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300242 if (fsid)
243 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300244
245 return fs_devs;
246}
247
David Sterba48dae9c2017-10-30 18:10:25 +0100248static void free_device(struct btrfs_device *device)
249{
250 rcu_string_free(device->name);
251 bio_put(device->flush_bio);
252 kfree(device);
253}
254
Yan Zhenge4404d62008-12-12 10:03:26 -0500255static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
256{
257 struct btrfs_device *device;
258 WARN_ON(fs_devices->opened);
259 while (!list_empty(&fs_devices->devices)) {
260 device = list_entry(fs_devices->devices.next,
261 struct btrfs_device, dev_list);
262 list_del(&device->dev_list);
David Sterba55de4802017-10-30 18:55:47 +0100263 free_device(device);
Yan Zhenge4404d62008-12-12 10:03:26 -0500264 }
265 kfree(fs_devices);
266}
267
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000268static void btrfs_kobject_uevent(struct block_device *bdev,
269 enum kobject_action action)
270{
271 int ret;
272
273 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
274 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -0500275 pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n",
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000276 action,
277 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
278 &disk_to_dev(bdev->bd_disk)->kobj);
279}
280
Jeff Mahoney143bede2012-03-01 14:56:26 +0100281void btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400282{
283 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400284
Yan Zheng2b820322008-11-17 21:11:30 -0500285 while (!list_empty(&fs_uuids)) {
286 fs_devices = list_entry(fs_uuids.next,
287 struct btrfs_fs_devices, list);
288 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500289 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400290 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400291}
292
David Sterba48dae9c2017-10-30 18:10:25 +0100293/*
294 * Returns a pointer to a new btrfs_device on success; ERR_PTR() on error.
295 * Returned struct is not linked onto any lists and must be destroyed using
296 * free_device.
297 */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300298static struct btrfs_device *__alloc_device(void)
299{
300 struct btrfs_device *dev;
301
David Sterba78f2c9e2016-02-11 14:25:38 +0100302 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300303 if (!dev)
304 return ERR_PTR(-ENOMEM);
305
David Sterbae0ae9992017-06-06 17:06:06 +0200306 /*
307 * Preallocate a bio that's always going to be used for flushing device
308 * barriers and matches the device lifespan
309 */
310 dev->flush_bio = bio_alloc_bioset(GFP_KERNEL, 0, NULL);
311 if (!dev->flush_bio) {
312 kfree(dev);
313 return ERR_PTR(-ENOMEM);
314 }
David Sterbae0ae9992017-06-06 17:06:06 +0200315
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300316 INIT_LIST_HEAD(&dev->dev_list);
317 INIT_LIST_HEAD(&dev->dev_alloc_list);
Miao Xie935e5cc2014-09-03 21:35:33 +0800318 INIT_LIST_HEAD(&dev->resized_list);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300319
320 spin_lock_init(&dev->io_lock);
321
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300322 atomic_set(&dev->reada_in_flight, 0);
Miao Xieaddc3fa2014-07-24 11:37:11 +0800323 atomic_set(&dev->dev_stats_ccnt, 0);
Sebastian Andrzej Siewior546bed62016-01-15 14:37:15 +0100324 btrfs_device_data_ordered_init(dev);
Chris Mason9bcaaea2017-05-04 16:08:08 -0700325 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Mel Gormand0164ad2015-11-06 16:28:21 -0800326 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300327
328 return dev;
329}
330
David Sterba35c70102017-06-15 19:51:51 +0200331/*
332 * Find a device specified by @devid or @uuid in the list of @fs_devices, or
333 * return NULL.
334 *
335 * If devid and uuid are both specified, the match must be exact, otherwise
336 * only devid is used.
337 */
338static struct btrfs_device *find_device(struct btrfs_fs_devices *fs_devices,
339 u64 devid, const u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400340{
David Sterba35c70102017-06-15 19:51:51 +0200341 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400342 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400343
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500344 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400345 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400346 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400347 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400348 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400349 }
350 return NULL;
351}
352
Chris Masona1b32a52008-09-05 16:09:51 -0400353static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400354{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400355 struct btrfs_fs_devices *fs_devices;
356
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500357 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400358 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
359 return fs_devices;
360 }
361 return NULL;
362}
363
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100364static int
365btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
366 int flush, struct block_device **bdev,
367 struct buffer_head **bh)
368{
369 int ret;
370
371 *bdev = blkdev_get_by_path(device_path, flags, holder);
372
373 if (IS_ERR(*bdev)) {
374 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100375 goto error;
376 }
377
378 if (flush)
379 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
David Sterba9f6d2512017-06-16 01:48:05 +0200380 ret = set_blocksize(*bdev, BTRFS_BDEV_BLOCKSIZE);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100381 if (ret) {
382 blkdev_put(*bdev, flags);
383 goto error;
384 }
385 invalidate_bdev(*bdev);
386 *bh = btrfs_read_dev_super(*bdev);
Anand Jain92fc03f2015-08-14 18:32:51 +0800387 if (IS_ERR(*bh)) {
388 ret = PTR_ERR(*bh);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100389 blkdev_put(*bdev, flags);
390 goto error;
391 }
392
393 return 0;
394
395error:
396 *bdev = NULL;
397 *bh = NULL;
398 return ret;
399}
400
Chris Masonffbd5172009-04-20 15:50:09 -0400401static void requeue_list(struct btrfs_pending_bios *pending_bios,
402 struct bio *head, struct bio *tail)
403{
404
405 struct bio *old_head;
406
407 old_head = pending_bios->head;
408 pending_bios->head = head;
409 if (pending_bios->tail)
410 tail->bi_next = old_head;
411 else
412 pending_bios->tail = tail;
413}
414
Chris Mason8b712842008-06-11 16:50:36 -0400415/*
416 * we try to collect pending bios for a device so we don't get a large
417 * number of procs sending bios down to the same device. This greatly
418 * improves the schedulers ability to collect and merge the bios.
419 *
420 * But, it also turns into a long list of bios to process and that is sure
421 * to eventually make the worker thread block. The solution here is to
422 * make some progress and then put this work struct back at the end of
423 * the list if the block device is congested. This way, multiple devices
424 * can make progress from a single worker thread.
425 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100426static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400427{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400428 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -0400429 struct bio *pending;
430 struct backing_dev_info *bdi;
Chris Masonffbd5172009-04-20 15:50:09 -0400431 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400432 struct bio *tail;
433 struct bio *cur;
434 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400435 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400436 unsigned long batch_run = 0;
Chris Masonb765ead2009-04-03 10:27:10 -0400437 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400438 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000439 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400440 struct blk_plug plug;
441
442 /*
443 * this function runs all the bios we've collected for
444 * a particular device. We don't want to wander off to
445 * another device without first sending all of these down.
446 * So, setup a plug here and finish it off before we return
447 */
448 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400449
Jan Karaefa7c9f2017-02-02 15:56:53 +0100450 bdi = device->bdev->bd_bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400451
Chris Mason8b712842008-06-11 16:50:36 -0400452loop:
453 spin_lock(&device->io_lock);
454
Chris Masona6837052009-02-04 09:19:41 -0500455loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400456 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400457
Chris Mason8b712842008-06-11 16:50:36 -0400458 /* take all the bios off the list at once and process them
459 * later on (without the lock held). But, remember the
460 * tail and other pointers so the bios can be properly reinserted
461 * into the list if we hit congestion
462 */
Chris Masond84275c2009-06-09 15:39:08 -0400463 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400464 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400465 force_reg = 1;
466 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400467 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400468 force_reg = 0;
469 }
Chris Masonffbd5172009-04-20 15:50:09 -0400470
471 pending = pending_bios->head;
472 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400473 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400474
475 /*
476 * if pending was null this time around, no bios need processing
477 * at all and we can stop. Otherwise it'll loop back up again
478 * and do an additional check so no bios are missed.
479 *
480 * device->running_pending is used to synchronize with the
481 * schedule_bio code.
482 */
Chris Masonffbd5172009-04-20 15:50:09 -0400483 if (device->pending_sync_bios.head == NULL &&
484 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400485 again = 0;
486 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400487 } else {
488 again = 1;
489 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400490 }
Chris Masonffbd5172009-04-20 15:50:09 -0400491
492 pending_bios->head = NULL;
493 pending_bios->tail = NULL;
494
Chris Mason8b712842008-06-11 16:50:36 -0400495 spin_unlock(&device->io_lock);
496
Chris Masond3977122009-01-05 21:25:51 -0500497 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400498
499 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400500 /* we want to work on both lists, but do more bios on the
501 * sync list than the regular list
502 */
503 if ((num_run > 32 &&
504 pending_bios != &device->pending_sync_bios &&
505 device->pending_sync_bios.head) ||
506 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
507 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400508 spin_lock(&device->io_lock);
509 requeue_list(pending_bios, pending, tail);
510 goto loop_lock;
511 }
512
Chris Mason8b712842008-06-11 16:50:36 -0400513 cur = pending;
514 pending = pending->bi_next;
515 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400516
Jens Axboedac56212015-04-17 16:23:59 -0600517 BUG_ON(atomic_read(&cur->__bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400518
Chris Mason2ab1ba62011-08-04 14:28:36 -0400519 /*
520 * if we're doing the sync list, record that our
521 * plug has some sync requests on it
522 *
523 * If we're doing the regular list and there are
524 * sync requests sitting around, unplug before
525 * we add more
526 */
527 if (pending_bios == &device->pending_sync_bios) {
528 sync_pending = 1;
529 } else if (sync_pending) {
530 blk_finish_plug(&plug);
531 blk_start_plug(&plug);
532 sync_pending = 0;
533 }
534
Mike Christie4e49ea42016-06-05 14:31:41 -0500535 btrfsic_submit_bio(cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400536 num_run++;
537 batch_run++;
David Sterba853d8ec2015-01-08 15:15:19 +0100538
539 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400540
541 /*
542 * we made progress, there is more work to do and the bdi
543 * is now congested. Back off and let other work structs
544 * run instead
545 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400546 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500547 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400548 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400549
Chris Masonb765ead2009-04-03 10:27:10 -0400550 ioc = current->io_context;
551
552 /*
553 * the main goal here is that we don't want to
554 * block if we're going to be able to submit
555 * more requests without blocking.
556 *
557 * This code does two great things, it pokes into
558 * the elevator code from a filesystem _and_
559 * it makes assumptions about how batching works.
560 */
561 if (ioc && ioc->nr_batch_requests > 0 &&
562 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
563 (last_waited == 0 ||
564 ioc->last_waited == last_waited)) {
565 /*
566 * we want to go through our batch of
567 * requests and stop. So, we copy out
568 * the ioc->last_waited time and test
569 * against it before looping
570 */
571 last_waited = ioc->last_waited;
David Sterba853d8ec2015-01-08 15:15:19 +0100572 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400573 continue;
574 }
Chris Mason8b712842008-06-11 16:50:36 -0400575 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400576 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500577 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400578
579 spin_unlock(&device->io_lock);
Qu Wenruoa8c93d4e2014-02-28 10:46:08 +0800580 btrfs_queue_work(fs_info->submit_workers,
581 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -0400582 goto done;
583 }
584 }
Chris Masonffbd5172009-04-20 15:50:09 -0400585
Chris Mason51684082010-03-10 15:33:32 -0500586 cond_resched();
587 if (again)
588 goto loop;
589
590 spin_lock(&device->io_lock);
591 if (device->pending_bios.head || device->pending_sync_bios.head)
592 goto loop_lock;
593 spin_unlock(&device->io_lock);
594
Chris Mason8b712842008-06-11 16:50:36 -0400595done:
Chris Mason211588a2011-04-19 20:12:40 -0400596 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400597}
598
Christoph Hellwigb2950862008-12-02 09:54:17 -0500599static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400600{
601 struct btrfs_device *device;
602
603 device = container_of(work, struct btrfs_device, work);
604 run_scheduled_bios(device);
605}
606
Anand Jaind8367db2018-01-18 22:00:37 +0800607/*
608 * Search and remove all stale (devices which are not mounted) devices.
609 * When both inputs are NULL, it will search and release all stale devices.
610 * path: Optional. When provided will it release all unmounted devices
611 * matching this path only.
612 * skip_dev: Optional. Will skip this device when searching for the stale
613 * devices.
614 */
615static void btrfs_free_stale_devices(const char *path,
616 struct btrfs_device *skip_dev)
Anand Jain4fde46f2015-06-17 21:10:48 +0800617{
Anand Jain38cf6652018-01-18 22:00:34 +0800618 struct btrfs_fs_devices *fs_devs, *tmp_fs_devs;
619 struct btrfs_device *dev, *tmp_dev;
Anand Jain4fde46f2015-06-17 21:10:48 +0800620
Anand Jain38cf6652018-01-18 22:00:34 +0800621 list_for_each_entry_safe(fs_devs, tmp_fs_devs, &fs_uuids, list) {
Anand Jain4fde46f2015-06-17 21:10:48 +0800622
623 if (fs_devs->opened)
624 continue;
Anand Jain4fde46f2015-06-17 21:10:48 +0800625
Anand Jain38cf6652018-01-18 22:00:34 +0800626 list_for_each_entry_safe(dev, tmp_dev,
627 &fs_devs->devices, dev_list) {
Anand Jain522f1b42018-01-18 22:00:35 +0800628 int not_found = 0;
Anand Jain4fde46f2015-06-17 21:10:48 +0800629
Anand Jaind8367db2018-01-18 22:00:37 +0800630 if (skip_dev && skip_dev == dev)
631 continue;
632 if (path && !dev->name)
Anand Jain4fde46f2015-06-17 21:10:48 +0800633 continue;
634
Anand Jain4fde46f2015-06-17 21:10:48 +0800635 rcu_read_lock();
Anand Jaind8367db2018-01-18 22:00:37 +0800636 if (path)
Anand Jain522f1b42018-01-18 22:00:35 +0800637 not_found = strcmp(rcu_str_deref(dev->name),
Anand Jaind8367db2018-01-18 22:00:37 +0800638 path);
Anand Jain4fde46f2015-06-17 21:10:48 +0800639 rcu_read_unlock();
Anand Jain38cf6652018-01-18 22:00:34 +0800640 if (not_found)
641 continue;
Anand Jain4fde46f2015-06-17 21:10:48 +0800642
Anand Jain4fde46f2015-06-17 21:10:48 +0800643 /* delete the stale device */
644 if (fs_devs->num_devices == 1) {
645 btrfs_sysfs_remove_fsid(fs_devs);
646 list_del(&fs_devs->list);
647 free_fs_devices(fs_devs);
Nikolay Borisovfd649f12018-01-30 16:07:37 +0200648 break;
Anand Jain4fde46f2015-06-17 21:10:48 +0800649 } else {
650 fs_devs->num_devices--;
651 list_del(&dev->dev_list);
David Sterba55de4802017-10-30 18:55:47 +0100652 free_device(dev);
Anand Jain4fde46f2015-06-17 21:10:48 +0800653 }
Anand Jain4fde46f2015-06-17 21:10:48 +0800654 }
655 }
656}
657
Anand Jain0fb08bc2017-11-09 23:45:24 +0800658static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices,
659 struct btrfs_device *device, fmode_t flags,
660 void *holder)
661{
662 struct request_queue *q;
663 struct block_device *bdev;
664 struct buffer_head *bh;
665 struct btrfs_super_block *disk_super;
666 u64 devid;
667 int ret;
668
669 if (device->bdev)
670 return -EINVAL;
671 if (!device->name)
672 return -EINVAL;
673
674 ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
675 &bdev, &bh);
676 if (ret)
677 return ret;
678
679 disk_super = (struct btrfs_super_block *)bh->b_data;
680 devid = btrfs_stack_device_id(&disk_super->dev_item);
681 if (devid != device->devid)
682 goto error_brelse;
683
684 if (memcmp(device->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE))
685 goto error_brelse;
686
687 device->generation = btrfs_super_generation(disk_super);
688
689 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
Anand Jainebbede42017-12-04 12:54:52 +0800690 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800691 fs_devices->seeding = 1;
692 } else {
Anand Jainebbede42017-12-04 12:54:52 +0800693 if (bdev_read_only(bdev))
694 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
695 else
696 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800697 }
698
699 q = bdev_get_queue(bdev);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800700 if (!blk_queue_nonrot(q))
701 fs_devices->rotating = 1;
702
703 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +0800704 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800705 device->mode = flags;
706
707 fs_devices->open_devices++;
Anand Jainebbede42017-12-04 12:54:52 +0800708 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
709 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Anand Jain0fb08bc2017-11-09 23:45:24 +0800710 fs_devices->rw_devices++;
711 list_add(&device->dev_alloc_list, &fs_devices->alloc_list);
712 }
713 brelse(bh);
714
715 return 0;
716
717error_brelse:
718 brelse(bh);
719 blkdev_put(bdev, flags);
720
721 return -EINVAL;
722}
723
David Sterba60999ca2014-03-26 18:26:36 +0100724/*
725 * Add new device to list of registered devices
726 *
727 * Returns:
Anand Jaine124ece2018-01-18 22:02:35 +0800728 * device pointer which was just added or updated when successful
729 * error pointer when failed
David Sterba60999ca2014-03-26 18:26:36 +0100730 */
Anand Jaine124ece2018-01-18 22:02:35 +0800731static noinline struct btrfs_device *device_list_add(const char *path,
Anand Jain3acbcbf2018-01-18 22:02:36 +0800732 struct btrfs_super_block *disk_super)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400733{
734 struct btrfs_device *device;
735 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400736 struct rcu_string *name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400737 u64 found_transid = btrfs_super_generation(disk_super);
Anand Jain3acbcbf2018-01-18 22:02:36 +0800738 u64 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400739
740 fs_devices = find_fsid(disk_super->fsid);
741 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300742 fs_devices = alloc_fs_devices(disk_super->fsid);
743 if (IS_ERR(fs_devices))
Anand Jaine124ece2018-01-18 22:02:35 +0800744 return ERR_CAST(fs_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300745
Chris Mason8a4b83c2008-03-24 15:02:07 -0400746 list_add(&fs_devices->list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300747
Chris Mason8a4b83c2008-03-24 15:02:07 -0400748 device = NULL;
749 } else {
David Sterba35c70102017-06-15 19:51:51 +0200750 device = find_device(fs_devices, devid,
751 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400752 }
Miao Xie443f24f2014-07-24 11:37:15 +0800753
Chris Mason8a4b83c2008-03-24 15:02:07 -0400754 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500755 if (fs_devices->opened)
Anand Jaine124ece2018-01-18 22:02:35 +0800756 return ERR_PTR(-EBUSY);
Yan Zheng2b820322008-11-17 21:11:30 -0500757
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300758 device = btrfs_alloc_device(NULL, &devid,
759 disk_super->dev_item.uuid);
760 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400761 /* we can safely leave the fs_devices entry around */
Anand Jaine124ece2018-01-18 22:02:35 +0800762 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400763 }
Josef Bacik606686e2012-06-04 14:03:51 -0400764
765 name = rcu_string_strdup(path, GFP_NOFS);
766 if (!name) {
David Sterba55de4802017-10-30 18:55:47 +0100767 free_device(device);
Anand Jaine124ece2018-01-18 22:02:35 +0800768 return ERR_PTR(-ENOMEM);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400769 }
Josef Bacik606686e2012-06-04 14:03:51 -0400770 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200771
Chris Masone5e9a522009-06-10 15:17:02 -0400772 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000773 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100774 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400775 mutex_unlock(&fs_devices->device_list_mutex);
776
Yan Zheng2b820322008-11-17 21:11:30 -0500777 device->fs_devices = fs_devices;
Anand Jaind8367db2018-01-18 22:00:37 +0800778 btrfs_free_stale_devices(path, device);
Anand Jain327f18c2018-01-18 22:02:33 +0800779
780 if (disk_super->label[0])
781 pr_info("BTRFS: device label %s devid %llu transid %llu %s\n",
782 disk_super->label, devid, found_transid, path);
783 else
784 pr_info("BTRFS: device fsid %pU devid %llu transid %llu %s\n",
785 disk_super->fsid, devid, found_transid, path);
786
Josef Bacik606686e2012-06-04 14:03:51 -0400787 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800788 /*
789 * When FS is already mounted.
790 * 1. If you are here and if the device->name is NULL that
791 * means this device was missing at time of FS mount.
792 * 2. If you are here and if the device->name is different
793 * from 'path' that means either
794 * a. The same device disappeared and reappeared with
795 * different name. or
796 * b. The missing-disk-which-was-replaced, has
797 * reappeared now.
798 *
799 * We must allow 1 and 2a above. But 2b would be a spurious
800 * and unintentional.
801 *
802 * Further in case of 1 and 2a above, the disk at 'path'
803 * would have missed some transaction when it was away and
804 * in case of 2a the stale bdev has to be updated as well.
805 * 2b must not be allowed at all time.
806 */
807
808 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700809 * For now, we do allow update to btrfs_fs_device through the
810 * btrfs dev scan cli after FS has been mounted. We're still
811 * tracking a problem where systems fail mount by subvolume id
812 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800813 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700814 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800815 /*
816 * That is if the FS is _not_ mounted and if you
817 * are here, that means there is more than one
818 * disk with same uuid and devid.We keep the one
819 * with larger generation number or the last-in if
820 * generation are equal.
821 */
Anand Jaine124ece2018-01-18 22:02:35 +0800822 return ERR_PTR(-EEXIST);
Anand Jain77bdae42014-07-03 18:22:06 +0800823 }
Anand Jainb96de002014-07-03 18:22:05 +0800824
Josef Bacik606686e2012-06-04 14:03:51 -0400825 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000826 if (!name)
Anand Jaine124ece2018-01-18 22:02:35 +0800827 return ERR_PTR(-ENOMEM);
Josef Bacik606686e2012-06-04 14:03:51 -0400828 rcu_string_free(device->name);
829 rcu_assign_pointer(device->name, name);
Anand Jaine6e674b2017-12-04 12:54:54 +0800830 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -0500831 fs_devices->missing_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +0800832 clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -0500833 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400834 }
835
Anand Jain77bdae42014-07-03 18:22:06 +0800836 /*
837 * Unmount does not free the btrfs_device struct but would zero
838 * generation along with most of the other members. So just update
839 * it back. We need it to pick the disk with largest generation
840 * (as above).
841 */
842 if (!fs_devices->opened)
843 device->generation = found_transid;
844
Anand Jainf2788d22018-01-18 22:02:34 +0800845 fs_devices->total_devices = btrfs_super_num_devices(disk_super);
846
Anand Jaine124ece2018-01-18 22:02:35 +0800847 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400848}
849
Yan Zhenge4404d62008-12-12 10:03:26 -0500850static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
851{
852 struct btrfs_fs_devices *fs_devices;
853 struct btrfs_device *device;
854 struct btrfs_device *orig_dev;
855
Ilya Dryomov2208a372013-08-12 14:33:03 +0300856 fs_devices = alloc_fs_devices(orig->fsid);
857 if (IS_ERR(fs_devices))
858 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500859
Miao Xieadbbb862014-09-03 21:35:42 +0800860 mutex_lock(&orig->device_list_mutex);
Josef Bacik02db0842012-06-21 16:03:58 -0400861 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500862
Xiao Guangrong46224702011-04-20 10:08:47 +0000863 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500864 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400865 struct rcu_string *name;
866
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300867 device = btrfs_alloc_device(NULL, &orig_dev->devid,
868 orig_dev->uuid);
869 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500870 goto error;
871
Josef Bacik606686e2012-06-04 14:03:51 -0400872 /*
873 * This is ok to do without rcu read locked because we hold the
874 * uuid mutex so nothing we touch in here is going to disappear.
875 */
Anand Jaine755f782014-06-30 17:12:47 +0800876 if (orig_dev->name) {
David Sterba78f2c9e2016-02-11 14:25:38 +0100877 name = rcu_string_strdup(orig_dev->name->str,
878 GFP_KERNEL);
Anand Jaine755f782014-06-30 17:12:47 +0800879 if (!name) {
David Sterba55de4802017-10-30 18:55:47 +0100880 free_device(device);
Anand Jaine755f782014-06-30 17:12:47 +0800881 goto error;
882 }
883 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400884 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500885
Yan Zhenge4404d62008-12-12 10:03:26 -0500886 list_add(&device->dev_list, &fs_devices->devices);
887 device->fs_devices = fs_devices;
888 fs_devices->num_devices++;
889 }
Miao Xieadbbb862014-09-03 21:35:42 +0800890 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500891 return fs_devices;
892error:
Miao Xieadbbb862014-09-03 21:35:42 +0800893 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500894 free_fs_devices(fs_devices);
895 return ERR_PTR(-ENOMEM);
896}
897
Eric Sandeen9eaed212014-08-01 18:12:35 -0500898void btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400899{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500900 struct btrfs_device *device, *next;
Miao Xie443f24f2014-07-24 11:37:15 +0800901 struct btrfs_device *latest_dev = NULL;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500902
Chris Masondfe25022008-05-13 13:46:40 -0400903 mutex_lock(&uuid_mutex);
904again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000905 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500906 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Anand Jaine12c9622017-12-04 12:54:53 +0800907 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
908 &device->dev_state)) {
Anand Jain401e29c2017-12-04 12:54:55 +0800909 if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
910 &device->dev_state) &&
911 (!latest_dev ||
912 device->generation > latest_dev->generation)) {
Miao Xie443f24f2014-07-24 11:37:15 +0800913 latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500914 }
Yan Zheng2b820322008-11-17 21:11:30 -0500915 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500916 }
Yan Zheng2b820322008-11-17 21:11:30 -0500917
Stefan Behrens8dabb742012-11-06 13:15:27 +0100918 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
919 /*
920 * In the first step, keep the device which has
921 * the correct fsid and the devid that is used
922 * for the dev_replace procedure.
923 * In the second step, the dev_replace state is
924 * read from the device tree and it is known
925 * whether the procedure is really active or
926 * not, which means whether this device is
927 * used or whether it should be removed.
928 */
Anand Jain401e29c2017-12-04 12:54:55 +0800929 if (step == 0 || test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
930 &device->dev_state)) {
Stefan Behrens8dabb742012-11-06 13:15:27 +0100931 continue;
932 }
933 }
Yan Zheng2b820322008-11-17 21:11:30 -0500934 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100935 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500936 device->bdev = NULL;
937 fs_devices->open_devices--;
938 }
Anand Jainebbede42017-12-04 12:54:52 +0800939 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -0500940 list_del_init(&device->dev_alloc_list);
Anand Jainebbede42017-12-04 12:54:52 +0800941 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +0800942 if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
943 &device->dev_state))
Stefan Behrens8dabb742012-11-06 13:15:27 +0100944 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500945 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500946 list_del_init(&device->dev_list);
947 fs_devices->num_devices--;
David Sterba55de4802017-10-30 18:55:47 +0100948 free_device(device);
Chris Masondfe25022008-05-13 13:46:40 -0400949 }
Yan Zheng2b820322008-11-17 21:11:30 -0500950
951 if (fs_devices->seed) {
952 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500953 goto again;
954 }
955
Miao Xie443f24f2014-07-24 11:37:15 +0800956 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500957
Chris Masondfe25022008-05-13 13:46:40 -0400958 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400959}
Chris Masona0af4692008-05-13 16:03:06 -0400960
David Sterbaf06c5962017-06-06 17:08:23 +0200961static void free_device_rcu(struct rcu_head *head)
Xiao Guangrong1f781602011-04-20 10:09:16 +0000962{
963 struct btrfs_device *device;
964
965 device = container_of(head, struct btrfs_device, rcu);
David Sterba55de4802017-10-30 18:55:47 +0100966 free_device(device);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000967}
968
Anand Jain14238812016-07-22 06:04:53 +0800969static void btrfs_close_bdev(struct btrfs_device *device)
970{
David Sterba08ffcae2017-06-19 16:55:35 +0200971 if (!device->bdev)
972 return;
973
Anand Jainebbede42017-12-04 12:54:52 +0800974 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Anand Jain14238812016-07-22 06:04:53 +0800975 sync_blockdev(device->bdev);
976 invalidate_bdev(device->bdev);
977 }
978
David Sterba08ffcae2017-06-19 16:55:35 +0200979 blkdev_put(device->bdev, device->mode);
Anand Jain14238812016-07-22 06:04:53 +0800980}
981
Anand Jain0ccd0522016-09-22 12:56:13 +0800982static void btrfs_prepare_close_one_device(struct btrfs_device *device)
Anand Jainf448341a2016-06-14 18:55:25 +0800983{
984 struct btrfs_fs_devices *fs_devices = device->fs_devices;
985 struct btrfs_device *new_device;
986 struct rcu_string *name;
987
988 if (device->bdev)
989 fs_devices->open_devices--;
990
Anand Jainebbede42017-12-04 12:54:52 +0800991 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jainf448341a2016-06-14 18:55:25 +0800992 device->devid != BTRFS_DEV_REPLACE_DEVID) {
993 list_del_init(&device->dev_alloc_list);
994 fs_devices->rw_devices--;
995 }
996
Anand Jaine6e674b2017-12-04 12:54:54 +0800997 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
Anand Jainf448341a2016-06-14 18:55:25 +0800998 fs_devices->missing_devices--;
999
1000 new_device = btrfs_alloc_device(NULL, &device->devid,
1001 device->uuid);
1002 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
1003
1004 /* Safe because we are under uuid_mutex */
1005 if (device->name) {
1006 name = rcu_string_strdup(device->name->str, GFP_NOFS);
1007 BUG_ON(!name); /* -ENOMEM */
1008 rcu_assign_pointer(new_device->name, name);
1009 }
1010
1011 list_replace_rcu(&device->dev_list, &new_device->dev_list);
1012 new_device->fs_devices = device->fs_devices;
Anand Jainf448341a2016-06-14 18:55:25 +08001013}
1014
Yan Zheng2b820322008-11-17 21:11:30 -05001015static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001016{
Sasha Levin2037a092015-05-12 19:31:37 -04001017 struct btrfs_device *device, *tmp;
Anand Jain0ccd0522016-09-22 12:56:13 +08001018 struct list_head pending_put;
1019
1020 INIT_LIST_HEAD(&pending_put);
Yan Zhenge4404d62008-12-12 10:03:26 -05001021
Yan Zheng2b820322008-11-17 21:11:30 -05001022 if (--fs_devices->opened > 0)
1023 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001024
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001025 mutex_lock(&fs_devices->device_list_mutex);
Sasha Levin2037a092015-05-12 19:31:37 -04001026 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
Anand Jain0ccd0522016-09-22 12:56:13 +08001027 btrfs_prepare_close_one_device(device);
1028 list_add(&device->dev_list, &pending_put);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001029 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001030 mutex_unlock(&fs_devices->device_list_mutex);
1031
Anand Jain0ccd0522016-09-22 12:56:13 +08001032 /*
1033 * btrfs_show_devname() is using the device_list_mutex,
1034 * sometimes call to blkdev_put() leads vfs calling
1035 * into this func. So do put outside of device_list_mutex,
1036 * as of now.
1037 */
1038 while (!list_empty(&pending_put)) {
1039 device = list_first_entry(&pending_put,
1040 struct btrfs_device, dev_list);
1041 list_del(&device->dev_list);
1042 btrfs_close_bdev(device);
David Sterbaf06c5962017-06-06 17:08:23 +02001043 call_rcu(&device->rcu, free_device_rcu);
Anand Jain0ccd0522016-09-22 12:56:13 +08001044 }
1045
Yan Zhenge4404d62008-12-12 10:03:26 -05001046 WARN_ON(fs_devices->open_devices);
1047 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001048 fs_devices->opened = 0;
1049 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001050
Chris Mason8a4b83c2008-03-24 15:02:07 -04001051 return 0;
1052}
1053
Yan Zheng2b820322008-11-17 21:11:30 -05001054int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
1055{
Yan Zhenge4404d62008-12-12 10:03:26 -05001056 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -05001057 int ret;
1058
1059 mutex_lock(&uuid_mutex);
1060 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05001061 if (!fs_devices->opened) {
1062 seed_devices = fs_devices->seed;
1063 fs_devices->seed = NULL;
1064 }
Yan Zheng2b820322008-11-17 21:11:30 -05001065 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001066
1067 while (seed_devices) {
1068 fs_devices = seed_devices;
1069 seed_devices = fs_devices->seed;
1070 __btrfs_close_devices(fs_devices);
1071 free_fs_devices(fs_devices);
1072 }
Yan Zheng2b820322008-11-17 21:11:30 -05001073 return ret;
1074}
1075
Yan Zhenge4404d62008-12-12 10:03:26 -05001076static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
1077 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001078{
Chris Mason8a4b83c2008-03-24 15:02:07 -04001079 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001080 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +08001081 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -04001082 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001083
Tejun Heod4d77622010-11-13 11:55:18 +01001084 flags |= FMODE_EXCL;
1085
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001086 list_for_each_entry(device, head, dev_list) {
Eric Sandeenf63e0cc2013-04-04 20:45:08 +00001087 /* Just open everything we can; ignore failures here */
Anand Jain0fb08bc2017-11-09 23:45:24 +08001088 if (btrfs_open_one_device(fs_devices, device, flags, holder))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001089 continue;
Chris Masona0af4692008-05-13 16:03:06 -04001090
Anand Jain9f050db2017-11-09 23:45:25 +08001091 if (!latest_dev ||
1092 device->generation > latest_dev->generation)
1093 latest_dev = device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001094 }
Chris Masona0af4692008-05-13 16:03:06 -04001095 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +03001096 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -04001097 goto out;
1098 }
Yan Zheng2b820322008-11-17 21:11:30 -05001099 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +08001100 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -05001101 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -04001102out:
Yan Zheng2b820322008-11-17 21:11:30 -05001103 return ret;
1104}
1105
1106int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -05001107 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -05001108{
1109 int ret;
1110
1111 mutex_lock(&uuid_mutex);
1112 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001113 fs_devices->opened++;
1114 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001115 } else {
Chris Mason15916de2008-11-19 21:17:22 -05001116 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -05001117 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001118 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001119 return ret;
1120}
1121
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001122static void btrfs_release_disk_super(struct page *page)
Anand Jain6cf86a002016-02-13 10:01:29 +08001123{
1124 kunmap(page);
1125 put_page(page);
1126}
1127
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001128static int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr,
1129 struct page **page,
1130 struct btrfs_super_block **disk_super)
Anand Jain6cf86a002016-02-13 10:01:29 +08001131{
1132 void *p;
1133 pgoff_t index;
1134
1135 /* make sure our super fits in the device */
1136 if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode))
1137 return 1;
1138
1139 /* make sure our super fits in the page */
1140 if (sizeof(**disk_super) > PAGE_SIZE)
1141 return 1;
1142
1143 /* make sure our super doesn't straddle pages on disk */
1144 index = bytenr >> PAGE_SHIFT;
1145 if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index)
1146 return 1;
1147
1148 /* pull in the page with our super */
1149 *page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1150 index, GFP_KERNEL);
1151
1152 if (IS_ERR_OR_NULL(*page))
1153 return 1;
1154
1155 p = kmap(*page);
1156
1157 /* align our pointer to the offset of the super block */
1158 *disk_super = p + (bytenr & ~PAGE_MASK);
1159
1160 if (btrfs_super_bytenr(*disk_super) != bytenr ||
1161 btrfs_super_magic(*disk_super) != BTRFS_MAGIC) {
1162 btrfs_release_disk_super(*page);
1163 return 1;
1164 }
1165
1166 if ((*disk_super)->label[0] &&
1167 (*disk_super)->label[BTRFS_LABEL_SIZE - 1])
1168 (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0';
1169
1170 return 0;
1171}
1172
David Sterba6f60cbd2013-02-15 11:31:02 -07001173/*
1174 * Look for a btrfs signature on a device. This may be called out of the mount path
1175 * and we are not allowed to call set_blocksize during the scan. The superblock
1176 * is read via pagecache
1177 */
Christoph Hellwig97288f22008-12-02 06:36:09 -05001178int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001179 struct btrfs_fs_devices **fs_devices_ret)
1180{
1181 struct btrfs_super_block *disk_super;
Anand Jaine124ece2018-01-18 22:02:35 +08001182 struct btrfs_device *device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001183 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -07001184 struct page *page;
Anand Jaine124ece2018-01-18 22:02:35 +08001185 int ret = 0;
David Sterba6f60cbd2013-02-15 11:31:02 -07001186 u64 bytenr;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001187
David Sterba6f60cbd2013-02-15 11:31:02 -07001188 /*
1189 * we would like to check all the supers, but that would make
1190 * a btrfs mount succeed after a mkfs from a different FS.
1191 * So, we need to add a special mount option to scan for
1192 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1193 */
1194 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +01001195 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -05001196 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -07001197
1198 bdev = blkdev_get_by_path(path, flags, holder);
David Sterba6f60cbd2013-02-15 11:31:02 -07001199 if (IS_ERR(bdev)) {
1200 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001201 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -07001202 }
1203
Anand Jain05a5c552017-12-15 15:40:16 +08001204 if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super)) {
1205 ret = -EINVAL;
David Sterba6f60cbd2013-02-15 11:31:02 -07001206 goto error_bdev_put;
Anand Jain05a5c552017-12-15 15:40:16 +08001207 }
David Sterba6f60cbd2013-02-15 11:31:02 -07001208
Anand Jain3acbcbf2018-01-18 22:02:36 +08001209 device = device_list_add(path, disk_super);
Anand Jaine124ece2018-01-18 22:02:35 +08001210 if (IS_ERR(device))
1211 ret = PTR_ERR(device);
1212 else
1213 *fs_devices_ret = device->fs_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001214
Anand Jain6cf86a002016-02-13 10:01:29 +08001215 btrfs_release_disk_super(page);
David Sterba6f60cbd2013-02-15 11:31:02 -07001216
1217error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001218 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001219error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001220 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001221 return ret;
1222}
Chris Mason0b86a832008-03-24 15:01:56 -04001223
Miao Xie6d07bce2011-01-05 10:07:31 +00001224/* helper to account the used device space in the range */
1225int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
1226 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -04001227{
1228 struct btrfs_key key;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001229 struct btrfs_root *root = device->fs_info->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +00001230 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001231 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +00001232 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001233 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +00001234 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001235 struct extent_buffer *l;
1236
Miao Xie6d07bce2011-01-05 10:07:31 +00001237 *length = 0;
1238
Anand Jain401e29c2017-12-04 12:54:55 +08001239 if (start >= device->total_bytes ||
1240 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Miao Xie6d07bce2011-01-05 10:07:31 +00001241 return 0;
1242
Yan Zheng2b820322008-11-17 21:11:30 -05001243 path = btrfs_alloc_path();
1244 if (!path)
1245 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01001246 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04001247
Chris Mason0b86a832008-03-24 15:01:56 -04001248 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001249 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001250 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +00001251
1252 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001253 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001254 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001255 if (ret > 0) {
1256 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1257 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001258 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001259 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001260
Chris Mason0b86a832008-03-24 15:01:56 -04001261 while (1) {
1262 l = path->nodes[0];
1263 slot = path->slots[0];
1264 if (slot >= btrfs_header_nritems(l)) {
1265 ret = btrfs_next_leaf(root, path);
1266 if (ret == 0)
1267 continue;
1268 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001269 goto out;
1270
1271 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001272 }
1273 btrfs_item_key_to_cpu(l, &key, slot);
1274
1275 if (key.objectid < device->devid)
1276 goto next;
1277
1278 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +00001279 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001280
David Sterba962a2982014-06-04 18:41:45 +02001281 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001282 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001283
Chris Mason0b86a832008-03-24 15:01:56 -04001284 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +00001285 extent_end = key.offset + btrfs_dev_extent_length(l,
1286 dev_extent);
1287 if (key.offset <= start && extent_end > end) {
1288 *length = end - start + 1;
1289 break;
1290 } else if (key.offset <= start && extent_end > start)
1291 *length += extent_end - start;
1292 else if (key.offset > start && extent_end <= end)
1293 *length += extent_end - key.offset;
1294 else if (key.offset > start && key.offset <= end) {
1295 *length += end - key.offset + 1;
1296 break;
1297 } else if (key.offset > end)
1298 break;
1299
1300next:
1301 path->slots[0]++;
1302 }
1303 ret = 0;
1304out:
1305 btrfs_free_path(path);
1306 return ret;
1307}
1308
Jeff Mahoney499f3772015-06-15 09:41:17 -04001309static int contains_pending_extent(struct btrfs_transaction *transaction,
Josef Bacik6df9a952013-06-27 13:22:46 -04001310 struct btrfs_device *device,
1311 u64 *start, u64 len)
1312{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001313 struct btrfs_fs_info *fs_info = device->fs_info;
Josef Bacik6df9a952013-06-27 13:22:46 -04001314 struct extent_map *em;
Jeff Mahoney499f3772015-06-15 09:41:17 -04001315 struct list_head *search_list = &fs_info->pinned_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001316 int ret = 0;
Forrest Liu1b984502015-02-09 17:30:47 +08001317 u64 physical_start = *start;
Josef Bacik6df9a952013-06-27 13:22:46 -04001318
Jeff Mahoney499f3772015-06-15 09:41:17 -04001319 if (transaction)
1320 search_list = &transaction->pending_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001321again:
1322 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001323 struct map_lookup *map;
1324 int i;
1325
Jeff Mahoney95617d62015-06-03 10:55:48 -04001326 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04001327 for (i = 0; i < map->num_stripes; i++) {
Filipe Mananac152b632015-05-14 10:46:03 +01001328 u64 end;
1329
Josef Bacik6df9a952013-06-27 13:22:46 -04001330 if (map->stripes[i].dev != device)
1331 continue;
Forrest Liu1b984502015-02-09 17:30:47 +08001332 if (map->stripes[i].physical >= physical_start + len ||
Josef Bacik6df9a952013-06-27 13:22:46 -04001333 map->stripes[i].physical + em->orig_block_len <=
Forrest Liu1b984502015-02-09 17:30:47 +08001334 physical_start)
Josef Bacik6df9a952013-06-27 13:22:46 -04001335 continue;
Filipe Mananac152b632015-05-14 10:46:03 +01001336 /*
1337 * Make sure that while processing the pinned list we do
1338 * not override our *start with a lower value, because
1339 * we can have pinned chunks that fall within this
1340 * device hole and that have lower physical addresses
1341 * than the pending chunks we processed before. If we
1342 * do not take this special care we can end up getting
1343 * 2 pending chunks that start at the same physical
1344 * device offsets because the end offset of a pinned
1345 * chunk can be equal to the start offset of some
1346 * pending chunk.
1347 */
1348 end = map->stripes[i].physical + em->orig_block_len;
1349 if (end > *start) {
1350 *start = end;
1351 ret = 1;
1352 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001353 }
1354 }
Jeff Mahoney499f3772015-06-15 09:41:17 -04001355 if (search_list != &fs_info->pinned_chunks) {
1356 search_list = &fs_info->pinned_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001357 goto again;
1358 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001359
1360 return ret;
1361}
1362
1363
Chris Mason0b86a832008-03-24 15:01:56 -04001364/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001365 * find_free_dev_extent_start - find free space in the specified device
1366 * @device: the device which we search the free space in
1367 * @num_bytes: the size of the free space that we need
1368 * @search_start: the position from which to begin the search
1369 * @start: store the start of the free space.
1370 * @len: the size of the free space. that we find, or the size
1371 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001372 *
Chris Mason0b86a832008-03-24 15:01:56 -04001373 * this uses a pretty simple search, the expectation is that it is
1374 * called very infrequently and that a given device has a small number
1375 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001376 *
1377 * @start is used to store the start of the free space if we find. But if we
1378 * don't find suitable free space, it will be used to store the start position
1379 * of the max free space.
1380 *
1381 * @len is used to store the size of the free space that we find.
1382 * But if we don't find suitable free space, it is used to store the size of
1383 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001384 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001385int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1386 struct btrfs_device *device, u64 num_bytes,
1387 u64 search_start, u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001388{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001389 struct btrfs_fs_info *fs_info = device->fs_info;
1390 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001391 struct btrfs_key key;
Miao Xie7bfc8372011-01-05 10:07:26 +00001392 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001393 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001394 u64 hole_size;
1395 u64 max_hole_start;
1396 u64 max_hole_size;
1397 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001398 u64 search_end = device->total_bytes;
1399 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001400 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001401 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001402
1403 /*
1404 * We don't want to overwrite the superblock on the drive nor any area
1405 * used by the boot loader (grub for example), so we make sure to start
1406 * at an offset of at least 1MB.
1407 */
David Sterba0d0c71b2017-06-15 01:30:06 +02001408 search_start = max_t(u64, search_start, SZ_1M);
Chris Mason0b86a832008-03-24 15:01:56 -04001409
Josef Bacik6df9a952013-06-27 13:22:46 -04001410 path = btrfs_alloc_path();
1411 if (!path)
1412 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001413
Miao Xie7bfc8372011-01-05 10:07:26 +00001414 max_hole_start = search_start;
1415 max_hole_size = 0;
1416
Zhao Leif2ab7612015-02-16 18:52:17 +08001417again:
Anand Jain401e29c2017-12-04 12:54:55 +08001418 if (search_start >= search_end ||
1419 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001420 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001421 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001422 }
1423
David Sterbae4058b52015-11-27 16:31:35 +01001424 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001425 path->search_commit_root = 1;
1426 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001427
Chris Mason0b86a832008-03-24 15:01:56 -04001428 key.objectid = device->devid;
1429 key.offset = search_start;
1430 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001431
Li Zefan125ccb02011-12-08 15:07:24 +08001432 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001433 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001434 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001435 if (ret > 0) {
1436 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1437 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001438 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001439 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001440
Chris Mason0b86a832008-03-24 15:01:56 -04001441 while (1) {
1442 l = path->nodes[0];
1443 slot = path->slots[0];
1444 if (slot >= btrfs_header_nritems(l)) {
1445 ret = btrfs_next_leaf(root, path);
1446 if (ret == 0)
1447 continue;
1448 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001449 goto out;
1450
1451 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001452 }
1453 btrfs_item_key_to_cpu(l, &key, slot);
1454
1455 if (key.objectid < device->devid)
1456 goto next;
1457
1458 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001459 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001460
David Sterba962a2982014-06-04 18:41:45 +02001461 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001462 goto next;
1463
Miao Xie7bfc8372011-01-05 10:07:26 +00001464 if (key.offset > search_start) {
1465 hole_size = key.offset - search_start;
1466
Josef Bacik6df9a952013-06-27 13:22:46 -04001467 /*
1468 * Have to check before we set max_hole_start, otherwise
1469 * we could end up sending back this offset anyway.
1470 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001471 if (contains_pending_extent(transaction, device,
Josef Bacik6df9a952013-06-27 13:22:46 -04001472 &search_start,
Forrest Liu1b984502015-02-09 17:30:47 +08001473 hole_size)) {
1474 if (key.offset >= search_start) {
1475 hole_size = key.offset - search_start;
1476 } else {
1477 WARN_ON_ONCE(1);
1478 hole_size = 0;
1479 }
1480 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001481
Miao Xie7bfc8372011-01-05 10:07:26 +00001482 if (hole_size > max_hole_size) {
1483 max_hole_start = search_start;
1484 max_hole_size = hole_size;
1485 }
1486
1487 /*
1488 * If this free space is greater than which we need,
1489 * it must be the max free space that we have found
1490 * until now, so max_hole_start must point to the start
1491 * of this free space and the length of this free space
1492 * is stored in max_hole_size. Thus, we return
1493 * max_hole_start and max_hole_size and go back to the
1494 * caller.
1495 */
1496 if (hole_size >= num_bytes) {
1497 ret = 0;
1498 goto out;
1499 }
1500 }
1501
Chris Mason0b86a832008-03-24 15:01:56 -04001502 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001503 extent_end = key.offset + btrfs_dev_extent_length(l,
1504 dev_extent);
1505 if (extent_end > search_start)
1506 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001507next:
1508 path->slots[0]++;
1509 cond_resched();
1510 }
Chris Mason0b86a832008-03-24 15:01:56 -04001511
liubo38c01b92011-08-02 02:39:03 +00001512 /*
1513 * At this point, search_start should be the end of
1514 * allocated dev extents, and when shrinking the device,
1515 * search_end may be smaller than search_start.
1516 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001517 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001518 hole_size = search_end - search_start;
1519
Jeff Mahoney499f3772015-06-15 09:41:17 -04001520 if (contains_pending_extent(transaction, device, &search_start,
Zhao Leif2ab7612015-02-16 18:52:17 +08001521 hole_size)) {
1522 btrfs_release_path(path);
1523 goto again;
1524 }
Chris Mason0b86a832008-03-24 15:01:56 -04001525
Zhao Leif2ab7612015-02-16 18:52:17 +08001526 if (hole_size > max_hole_size) {
1527 max_hole_start = search_start;
1528 max_hole_size = hole_size;
1529 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001530 }
1531
Miao Xie7bfc8372011-01-05 10:07:26 +00001532 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001533 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001534 ret = -ENOSPC;
1535 else
1536 ret = 0;
1537
1538out:
Yan Zheng2b820322008-11-17 21:11:30 -05001539 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001540 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001541 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001542 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001543 return ret;
1544}
1545
Jeff Mahoney499f3772015-06-15 09:41:17 -04001546int find_free_dev_extent(struct btrfs_trans_handle *trans,
1547 struct btrfs_device *device, u64 num_bytes,
1548 u64 *start, u64 *len)
1549{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001550 /* FIXME use last free of some kind */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001551 return find_free_dev_extent_start(trans->transaction, device,
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001552 num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001553}
1554
Christoph Hellwigb2950862008-12-02 09:54:17 -05001555static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001556 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001557 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001558{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001559 struct btrfs_fs_info *fs_info = device->fs_info;
1560 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001561 int ret;
1562 struct btrfs_path *path;
Chris Mason8f18cf12008-04-25 16:53:30 -04001563 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001564 struct btrfs_key found_key;
1565 struct extent_buffer *leaf = NULL;
1566 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001567
1568 path = btrfs_alloc_path();
1569 if (!path)
1570 return -ENOMEM;
1571
1572 key.objectid = device->devid;
1573 key.offset = start;
1574 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001575again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001576 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001577 if (ret > 0) {
1578 ret = btrfs_previous_item(root, path, key.objectid,
1579 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001580 if (ret)
1581 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001582 leaf = path->nodes[0];
1583 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1584 extent = btrfs_item_ptr(leaf, path->slots[0],
1585 struct btrfs_dev_extent);
1586 BUG_ON(found_key.offset > start || found_key.offset +
1587 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001588 key = found_key;
1589 btrfs_release_path(path);
1590 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001591 } else if (ret == 0) {
1592 leaf = path->nodes[0];
1593 extent = btrfs_item_ptr(leaf, path->slots[0],
1594 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001595 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001596 btrfs_handle_fs_error(fs_info, ret, "Slot search failed");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001597 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001598 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001599
Miao Xie2196d6e2014-09-03 21:35:41 +08001600 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1601
Chris Mason8f18cf12008-04-25 16:53:30 -04001602 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001603 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001604 btrfs_handle_fs_error(fs_info, ret,
1605 "Failed to remove dev extent item");
Zhao Lei13212b52015-02-12 14:18:17 +08001606 } else {
Josef Bacik3204d332015-09-24 10:46:10 -04001607 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001608 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001609out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001610 btrfs_free_path(path);
1611 return ret;
1612}
1613
Eric Sandeen48a3b632013-04-25 20:41:01 +00001614static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1615 struct btrfs_device *device,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001616 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001617{
1618 int ret;
1619 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001620 struct btrfs_fs_info *fs_info = device->fs_info;
1621 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001622 struct btrfs_dev_extent *extent;
1623 struct extent_buffer *leaf;
1624 struct btrfs_key key;
1625
Anand Jaine12c9622017-12-04 12:54:53 +08001626 WARN_ON(!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state));
Anand Jain401e29c2017-12-04 12:54:55 +08001627 WARN_ON(test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state));
Chris Mason0b86a832008-03-24 15:01:56 -04001628 path = btrfs_alloc_path();
1629 if (!path)
1630 return -ENOMEM;
1631
Chris Mason0b86a832008-03-24 15:01:56 -04001632 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001633 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001634 key.type = BTRFS_DEV_EXTENT_KEY;
1635 ret = btrfs_insert_empty_item(trans, root, path, &key,
1636 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001637 if (ret)
1638 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001639
1640 leaf = path->nodes[0];
1641 extent = btrfs_item_ptr(leaf, path->slots[0],
1642 struct btrfs_dev_extent);
Nikolay Borisovb5d90712017-08-18 17:58:23 +03001643 btrfs_set_dev_extent_chunk_tree(leaf, extent,
1644 BTRFS_CHUNK_TREE_OBJECTID);
Nikolay Borisov0ca00af2017-08-18 17:58:22 +03001645 btrfs_set_dev_extent_chunk_objectid(leaf, extent,
1646 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Masone17cade2008-04-15 15:41:47 -04001647 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1648
Chris Mason0b86a832008-03-24 15:01:56 -04001649 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1650 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001651out:
Chris Mason0b86a832008-03-24 15:01:56 -04001652 btrfs_free_path(path);
1653 return ret;
1654}
1655
Josef Bacik6df9a952013-06-27 13:22:46 -04001656static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001657{
Josef Bacik6df9a952013-06-27 13:22:46 -04001658 struct extent_map_tree *em_tree;
1659 struct extent_map *em;
1660 struct rb_node *n;
1661 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001662
Josef Bacik6df9a952013-06-27 13:22:46 -04001663 em_tree = &fs_info->mapping_tree.map_tree;
1664 read_lock(&em_tree->lock);
1665 n = rb_last(&em_tree->map);
1666 if (n) {
1667 em = rb_entry(n, struct extent_map, rb_node);
1668 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001669 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001670 read_unlock(&em_tree->lock);
1671
Chris Mason0b86a832008-03-24 15:01:56 -04001672 return ret;
1673}
1674
Ilya Dryomov53f10652013-08-12 14:33:01 +03001675static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1676 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001677{
1678 int ret;
1679 struct btrfs_key key;
1680 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001681 struct btrfs_path *path;
1682
Yan Zheng2b820322008-11-17 21:11:30 -05001683 path = btrfs_alloc_path();
1684 if (!path)
1685 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001686
1687 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1688 key.type = BTRFS_DEV_ITEM_KEY;
1689 key.offset = (u64)-1;
1690
Ilya Dryomov53f10652013-08-12 14:33:01 +03001691 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001692 if (ret < 0)
1693 goto error;
1694
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001695 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001696
Ilya Dryomov53f10652013-08-12 14:33:01 +03001697 ret = btrfs_previous_item(fs_info->chunk_root, path,
1698 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001699 BTRFS_DEV_ITEM_KEY);
1700 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001701 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001702 } else {
1703 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1704 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001705 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001706 }
1707 ret = 0;
1708error:
Yan Zheng2b820322008-11-17 21:11:30 -05001709 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001710 return ret;
1711}
1712
1713/*
1714 * the device information is stored in the chunk root
1715 * the btrfs_device struct should be fully filled in
1716 */
Anand Jainc74a0b02017-11-06 16:36:15 +08001717static int btrfs_add_dev_item(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001718 struct btrfs_fs_info *fs_info,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001719 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001720{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001721 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001722 int ret;
1723 struct btrfs_path *path;
1724 struct btrfs_dev_item *dev_item;
1725 struct extent_buffer *leaf;
1726 struct btrfs_key key;
1727 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001728
Chris Mason0b86a832008-03-24 15:01:56 -04001729 path = btrfs_alloc_path();
1730 if (!path)
1731 return -ENOMEM;
1732
Chris Mason0b86a832008-03-24 15:01:56 -04001733 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1734 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001735 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001736
1737 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001738 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001739 if (ret)
1740 goto out;
1741
1742 leaf = path->nodes[0];
1743 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1744
1745 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001746 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001747 btrfs_set_device_type(leaf, dev_item, device->type);
1748 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1749 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1750 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001751 btrfs_set_device_total_bytes(leaf, dev_item,
1752 btrfs_device_get_disk_total_bytes(device));
1753 btrfs_set_device_bytes_used(leaf, dev_item,
1754 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001755 btrfs_set_device_group(leaf, dev_item, 0);
1756 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1757 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001758 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001759
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001760 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001761 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001762 ptr = btrfs_device_fsid(dev_item);
Anand Jain44880fd2017-07-29 17:50:09 +08001763 write_extent_buffer(leaf, fs_info->fsid, ptr, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001764 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001765
Yan Zheng2b820322008-11-17 21:11:30 -05001766 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001767out:
1768 btrfs_free_path(path);
1769 return ret;
1770}
Chris Mason8f18cf12008-04-25 16:53:30 -04001771
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001772/*
1773 * Function to update ctime/mtime for a given device path.
1774 * Mainly used for ctime/mtime based probe like libblkid.
1775 */
David Sterbada353f62017-02-14 17:55:53 +01001776static void update_dev_time(const char *path_name)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001777{
1778 struct file *filp;
1779
1780 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001781 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001782 return;
1783 file_update_time(filp);
1784 filp_close(filp, NULL);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001785}
1786
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001787static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info,
Chris Masona061fc82008-05-07 11:43:44 -04001788 struct btrfs_device *device)
1789{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001790 struct btrfs_root *root = fs_info->chunk_root;
Chris Masona061fc82008-05-07 11:43:44 -04001791 int ret;
1792 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001793 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001794 struct btrfs_trans_handle *trans;
1795
Chris Masona061fc82008-05-07 11:43:44 -04001796 path = btrfs_alloc_path();
1797 if (!path)
1798 return -ENOMEM;
1799
Yan, Zhenga22285a2010-05-16 10:48:46 -04001800 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001801 if (IS_ERR(trans)) {
1802 btrfs_free_path(path);
1803 return PTR_ERR(trans);
1804 }
Chris Masona061fc82008-05-07 11:43:44 -04001805 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1806 key.type = BTRFS_DEV_ITEM_KEY;
1807 key.offset = device->devid;
1808
1809 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001810 if (ret) {
1811 if (ret > 0)
1812 ret = -ENOENT;
1813 btrfs_abort_transaction(trans, ret);
1814 btrfs_end_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001815 goto out;
1816 }
1817
1818 ret = btrfs_del_item(trans, root, path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001819 if (ret) {
1820 btrfs_abort_transaction(trans, ret);
1821 btrfs_end_transaction(trans);
1822 }
1823
Chris Masona061fc82008-05-07 11:43:44 -04001824out:
1825 btrfs_free_path(path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001826 if (!ret)
1827 ret = btrfs_commit_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001828 return ret;
1829}
1830
David Sterba3cc31a02016-02-15 16:00:26 +01001831/*
1832 * Verify that @num_devices satisfies the RAID profile constraints in the whole
1833 * filesystem. It's up to the caller to adjust that number regarding eg. device
1834 * replace.
1835 */
1836static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info,
1837 u64 num_devices)
Chris Masona061fc82008-05-07 11:43:44 -04001838{
Chris Masona061fc82008-05-07 11:43:44 -04001839 u64 all_avail;
Miao Xiede98ced2013-01-29 10:13:12 +00001840 unsigned seq;
David Sterba418775a2016-02-15 16:28:14 +01001841 int i;
Chris Masona061fc82008-05-07 11:43:44 -04001842
Miao Xiede98ced2013-01-29 10:13:12 +00001843 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001844 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00001845
Anand Jainbd45ffb2016-02-13 10:01:34 +08001846 all_avail = fs_info->avail_data_alloc_bits |
1847 fs_info->avail_system_alloc_bits |
1848 fs_info->avail_metadata_alloc_bits;
1849 } while (read_seqretry(&fs_info->profiles_lock, seq));
Anand Jainf1fa7f22016-02-13 10:01:33 +08001850
David Sterba418775a2016-02-15 16:28:14 +01001851 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
1852 if (!(all_avail & btrfs_raid_group[i]))
1853 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001854
David Sterba418775a2016-02-15 16:28:14 +01001855 if (num_devices < btrfs_raid_array[i].devs_min) {
1856 int ret = btrfs_raid_mindev_error[i];
Chris Masona061fc82008-05-07 11:43:44 -04001857
David Sterba418775a2016-02-15 16:28:14 +01001858 if (ret)
1859 return ret;
1860 }
Anand Jainbd45ffb2016-02-13 10:01:34 +08001861 }
1862
1863 return 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001864}
1865
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001866static struct btrfs_device * btrfs_find_next_active_device(
1867 struct btrfs_fs_devices *fs_devs, struct btrfs_device *device)
Anand Jain88acff62016-05-03 17:44:43 +08001868{
1869 struct btrfs_device *next_device;
1870
1871 list_for_each_entry(next_device, &fs_devs->devices, dev_list) {
1872 if (next_device != device &&
Anand Jaine6e674b2017-12-04 12:54:54 +08001873 !test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state)
1874 && next_device->bdev)
Anand Jain88acff62016-05-03 17:44:43 +08001875 return next_device;
1876 }
1877
1878 return NULL;
1879}
1880
1881/*
1882 * Helper function to check if the given device is part of s_bdev / latest_bdev
1883 * and replace it with the provided or the next active device, in the context
1884 * where this function called, there should be always be another device (or
1885 * this_dev) which is active.
1886 */
1887void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info,
1888 struct btrfs_device *device, struct btrfs_device *this_dev)
1889{
1890 struct btrfs_device *next_device;
1891
1892 if (this_dev)
1893 next_device = this_dev;
1894 else
1895 next_device = btrfs_find_next_active_device(fs_info->fs_devices,
1896 device);
1897 ASSERT(next_device);
1898
1899 if (fs_info->sb->s_bdev &&
1900 (fs_info->sb->s_bdev == device->bdev))
1901 fs_info->sb->s_bdev = next_device->bdev;
1902
1903 if (fs_info->fs_devices->latest_bdev == device->bdev)
1904 fs_info->fs_devices->latest_bdev = next_device->bdev;
1905}
1906
David Sterbada353f62017-02-14 17:55:53 +01001907int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path,
1908 u64 devid)
Anand Jainf1fa7f22016-02-13 10:01:33 +08001909{
1910 struct btrfs_device *device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001911 struct btrfs_fs_devices *cur_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001912 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001913 int ret = 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001914
Anand Jain2c997382017-11-06 10:28:00 +08001915 mutex_lock(&fs_info->volume_mutex);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001916 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001917
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001918 num_devices = fs_info->fs_devices->num_devices;
1919 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
1920 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
Chris Masona061fc82008-05-07 11:43:44 -04001921 WARN_ON(num_devices < 1);
1922 num_devices--;
1923 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001924 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Chris Masona061fc82008-05-07 11:43:44 -04001925
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001926 ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001927 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001928 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001929
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001930 ret = btrfs_find_device_by_devspec(fs_info, devid, device_path,
1931 &device);
Anand Jain24fc5722016-02-13 10:01:36 +08001932 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001933 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001934
Anand Jain401e29c2017-12-04 12:54:55 +08001935 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Anand Jain183860f2013-05-17 10:52:45 +00001936 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08001937 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001938 }
1939
Anand Jainebbede42017-12-04 12:54:52 +08001940 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
1941 fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001942 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08001943 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001944 }
1945
Anand Jainebbede42017-12-04 12:54:52 +08001946 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02001947 mutex_lock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001948 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001949 device->fs_devices->rw_devices--;
David Sterba34441362016-10-04 19:34:27 +02001950 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001951 }
Chris Masona061fc82008-05-07 11:43:44 -04001952
Carey Underwoodd7901552013-03-04 16:37:06 -06001953 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001954 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001955 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001956 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001957 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001958
Stefan Behrens63a212a2012-11-05 18:29:28 +01001959 /*
1960 * TODO: the superblock still includes this device in its num_devices
1961 * counter although write_all_supers() is not locked out. This
1962 * could give a filesystem state which requires a degraded mount.
1963 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001964 ret = btrfs_rm_dev_item(fs_info, device);
Chris Masona061fc82008-05-07 11:43:44 -04001965 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001966 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001967
Anand Jaine12c9622017-12-04 12:54:53 +08001968 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001969 btrfs_scrub_cancel_dev(fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001970
1971 /*
1972 * the device list mutex makes sure that we don't change
1973 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001974 * the device supers. Whoever is writing all supers, should
1975 * lock the device list mutex before getting the number of
1976 * devices in the super block (super_copy). Conversely,
1977 * whoever updates the number of devices in the super block
1978 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001979 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001980
1981 cur_devices = device->fs_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001982 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001983 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001984
Yan Zhenge4404d62008-12-12 10:03:26 -05001985 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001986 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001987
Anand Jaine6e674b2017-12-04 12:54:54 +08001988 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
Miao Xie3a7d55c2014-07-16 18:38:01 +08001989 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001990
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001991 btrfs_assign_next_active_device(fs_info, device, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05001992
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001993 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001994 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001995 /* remove sysfs entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001996 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001997 }
Anand Jain99994cd2014-06-03 11:36:00 +08001998
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001999 num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1;
2000 btrfs_set_super_num_devices(fs_info->super_copy, num_devices);
2001 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002002
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002003 /*
2004 * at this point, the device is zero sized and detached from
2005 * the devices list. All that's left is to zero out the old
2006 * supers and free the device.
2007 */
Anand Jainebbede42017-12-04 12:54:52 +08002008 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002009 btrfs_scratch_superblocks(device->bdev, device->name->str);
2010
2011 btrfs_close_bdev(device);
David Sterbaf06c5962017-06-06 17:08:23 +02002012 call_rcu(&device->rcu, free_device_rcu);
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002013
Xiao Guangrong1f781602011-04-20 10:09:16 +00002014 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05002015 struct btrfs_fs_devices *fs_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002016 fs_devices = fs_info->fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002017 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02002018 if (fs_devices->seed == cur_devices) {
2019 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05002020 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02002021 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002022 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05002023 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00002024 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00002025 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002026 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002027 }
2028
Chris Masona061fc82008-05-07 11:43:44 -04002029out:
2030 mutex_unlock(&uuid_mutex);
Anand Jain2c997382017-11-06 10:28:00 +08002031 mutex_unlock(&fs_info->volume_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04002032 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08002033
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002034error_undo:
Anand Jainebbede42017-12-04 12:54:52 +08002035 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002036 mutex_lock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002037 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002038 &fs_info->fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08002039 device->fs_devices->rw_devices++;
David Sterba34441362016-10-04 19:34:27 +02002040 mutex_unlock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002041 }
Anand Jain24fc5722016-02-13 10:01:36 +08002042 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04002043}
2044
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002045void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
2046 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002047{
Anand Jaind51908c2014-08-13 14:24:19 +08002048 struct btrfs_fs_devices *fs_devices;
2049
Stefan Behrense93c89c2012-11-05 17:33:06 +01002050 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03002051
Anand Jain25e8e912014-08-20 10:56:56 +08002052 /*
2053 * in case of fs with no seed, srcdev->fs_devices will point
2054 * to fs_devices of fs_info. However when the dev being replaced is
2055 * a seed dev it will point to the seed's local fs_devices. In short
2056 * srcdev will have its correct fs_devices in both the cases.
2057 */
2058 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08002059
Stefan Behrense93c89c2012-11-05 17:33:06 +01002060 list_del_rcu(&srcdev->dev_list);
David Sterba619c47f2017-06-19 14:14:22 +02002061 list_del(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08002062 fs_devices->num_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +08002063 if (test_bit(BTRFS_DEV_STATE_MISSING, &srcdev->dev_state))
Anand Jaind51908c2014-08-13 14:24:19 +08002064 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002065
Anand Jainebbede42017-12-04 12:54:52 +08002066 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state))
Miao Xie82372bc2014-09-03 21:35:44 +08002067 fs_devices->rw_devices--;
Ilya Dryomov13572722013-10-02 20:41:01 +03002068
Miao Xie82372bc2014-09-03 21:35:44 +08002069 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08002070 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002071}
2072
2073void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
2074 struct btrfs_device *srcdev)
2075{
2076 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002077
Anand Jainebbede42017-12-04 12:54:52 +08002078 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) {
Anand Jain48b3b9d2016-04-12 21:36:16 +08002079 /* zero out the old super if it is writable */
2080 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
2081 }
Anand Jain14238812016-07-22 06:04:53 +08002082
2083 btrfs_close_bdev(srcdev);
David Sterbaf06c5962017-06-06 17:08:23 +02002084 call_rcu(&srcdev->rcu, free_device_rcu);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002085
Anand Jain94d5f0c2014-08-13 14:24:22 +08002086 /* if this is no devs we rather delete the fs_devices */
2087 if (!fs_devices->num_devices) {
2088 struct btrfs_fs_devices *tmp_fs_devices;
2089
Anand Jain6dd38f82017-10-17 06:53:50 +08002090 /*
2091 * On a mounted FS, num_devices can't be zero unless it's a
2092 * seed. In case of a seed device being replaced, the replace
2093 * target added to the sprout FS, so there will be no more
2094 * device left under the seed FS.
2095 */
2096 ASSERT(fs_devices->seeding);
2097
Anand Jain94d5f0c2014-08-13 14:24:22 +08002098 tmp_fs_devices = fs_info->fs_devices;
2099 while (tmp_fs_devices) {
2100 if (tmp_fs_devices->seed == fs_devices) {
2101 tmp_fs_devices->seed = fs_devices->seed;
2102 break;
2103 }
2104 tmp_fs_devices = tmp_fs_devices->seed;
2105 }
2106 fs_devices->seed = NULL;
Anand Jain8bef8402014-08-13 14:24:23 +08002107 __btrfs_close_devices(fs_devices);
2108 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002109 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002110}
2111
2112void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2113 struct btrfs_device *tgtdev)
2114{
Miao Xie67a2c452014-09-03 21:35:43 +08002115 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002116 WARN_ON(!tgtdev);
2117 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002118
Anand Jain32576042015-08-14 18:32:49 +08002119 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002120
Anand Jain779bf3fe2016-04-18 16:51:23 +08002121 if (tgtdev->bdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002122 fs_info->fs_devices->open_devices--;
Anand Jain779bf3fe2016-04-18 16:51:23 +08002123
Stefan Behrense93c89c2012-11-05 17:33:06 +01002124 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002125
Anand Jain88acff62016-05-03 17:44:43 +08002126 btrfs_assign_next_active_device(fs_info, tgtdev, NULL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002127
Stefan Behrense93c89c2012-11-05 17:33:06 +01002128 list_del_rcu(&tgtdev->dev_list);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002129
2130 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002131 mutex_unlock(&uuid_mutex);
Anand Jain779bf3fe2016-04-18 16:51:23 +08002132
2133 /*
2134 * The update_dev_time() with in btrfs_scratch_superblocks()
2135 * may lead to a call to btrfs_show_devname() which will try
2136 * to hold device_list_mutex. And here this device
2137 * is already out of device list, so we don't have to hold
2138 * the device_list_mutex lock.
2139 */
2140 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Anand Jain14238812016-07-22 06:04:53 +08002141
2142 btrfs_close_bdev(tgtdev);
David Sterbaf06c5962017-06-06 17:08:23 +02002143 call_rcu(&tgtdev->rcu, free_device_rcu);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002144}
2145
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002146static int btrfs_find_device_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002147 const char *device_path,
Eric Sandeen48a3b632013-04-25 20:41:01 +00002148 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002149{
2150 int ret = 0;
2151 struct btrfs_super_block *disk_super;
2152 u64 devid;
2153 u8 *dev_uuid;
2154 struct block_device *bdev;
2155 struct buffer_head *bh;
2156
2157 *device = NULL;
2158 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002159 fs_info->bdev_holder, 0, &bdev, &bh);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002160 if (ret)
2161 return ret;
2162 disk_super = (struct btrfs_super_block *)bh->b_data;
2163 devid = btrfs_stack_device_id(&disk_super->dev_item);
2164 dev_uuid = disk_super->dev_item.uuid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002165 *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002166 brelse(bh);
2167 if (!*device)
2168 ret = -ENOENT;
2169 blkdev_put(bdev, FMODE_READ);
2170 return ret;
2171}
2172
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002173int btrfs_find_device_missing_or_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002174 const char *device_path,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002175 struct btrfs_device **device)
2176{
2177 *device = NULL;
2178 if (strcmp(device_path, "missing") == 0) {
2179 struct list_head *devices;
2180 struct btrfs_device *tmp;
2181
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002182 devices = &fs_info->fs_devices->devices;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002183 /*
2184 * It is safe to read the devices since the volume_mutex
2185 * is held by the caller.
2186 */
2187 list_for_each_entry(tmp, devices, dev_list) {
Anand Jaine12c9622017-12-04 12:54:53 +08002188 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
2189 &tmp->dev_state) && !tmp->bdev) {
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002190 *device = tmp;
2191 break;
2192 }
2193 }
2194
Anand Jaind74a6252015-08-14 18:32:56 +08002195 if (!*device)
2196 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002197
2198 return 0;
2199 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002200 return btrfs_find_device_by_path(fs_info, device_path, device);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002201 }
2202}
2203
Yan Zheng2b820322008-11-17 21:11:30 -05002204/*
David Sterba5c5c0df2016-02-15 16:39:55 +01002205 * Lookup a device given by device id, or the path if the id is 0.
2206 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002207int btrfs_find_device_by_devspec(struct btrfs_fs_info *fs_info, u64 devid,
David Sterbada353f62017-02-14 17:55:53 +01002208 const char *devpath,
2209 struct btrfs_device **device)
Anand Jain24e04742016-02-13 10:01:35 +08002210{
2211 int ret;
2212
David Sterba5c5c0df2016-02-15 16:39:55 +01002213 if (devid) {
Anand Jain24e04742016-02-13 10:01:35 +08002214 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002215 *device = btrfs_find_device(fs_info, devid, NULL, NULL);
Anand Jain24e04742016-02-13 10:01:35 +08002216 if (!*device)
2217 ret = -ENOENT;
2218 } else {
David Sterba5c5c0df2016-02-15 16:39:55 +01002219 if (!devpath || !devpath[0])
Anand Jainb3d1b152016-02-13 10:01:37 +08002220 return -EINVAL;
2221
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002222 ret = btrfs_find_device_missing_or_by_path(fs_info, devpath,
Anand Jain24e04742016-02-13 10:01:35 +08002223 device);
2224 }
2225 return ret;
2226}
2227
Yan Zheng2b820322008-11-17 21:11:30 -05002228/*
2229 * does all the dirty work required for changing file system's UUID.
2230 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002231static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002232{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002233 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002234 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002235 struct btrfs_fs_devices *seed_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002236 struct btrfs_super_block *disk_super = fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002237 struct btrfs_device *device;
2238 u64 super_flags;
2239
2240 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05002241 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002242 return -EINVAL;
2243
David Sterba2dfeca92017-06-14 02:48:07 +02002244 seed_devices = alloc_fs_devices(NULL);
Ilya Dryomov2208a372013-08-12 14:33:03 +03002245 if (IS_ERR(seed_devices))
2246 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002247
Yan Zhenge4404d62008-12-12 10:03:26 -05002248 old_devices = clone_fs_devices(fs_devices);
2249 if (IS_ERR(old_devices)) {
2250 kfree(seed_devices);
2251 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002252 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002253
Yan Zheng2b820322008-11-17 21:11:30 -05002254 list_add(&old_devices->list, &fs_uuids);
2255
Yan Zhenge4404d62008-12-12 10:03:26 -05002256 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2257 seed_devices->opened = 1;
2258 INIT_LIST_HEAD(&seed_devices->devices);
2259 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002260 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002261
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002262 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002263 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2264 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002265 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002266 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002267
David Sterba34441362016-10-04 19:34:27 +02002268 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002269 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
David Sterba34441362016-10-04 19:34:27 +02002270 mutex_unlock(&fs_info->chunk_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002271
Yan Zheng2b820322008-11-17 21:11:30 -05002272 fs_devices->seeding = 0;
2273 fs_devices->num_devices = 0;
2274 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002275 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002276 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002277 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002278
2279 generate_random_uuid(fs_devices->fsid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002280 memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002281 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002282 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002283
Yan Zheng2b820322008-11-17 21:11:30 -05002284 super_flags = btrfs_super_flags(disk_super) &
2285 ~BTRFS_SUPER_FLAG_SEEDING;
2286 btrfs_set_super_flags(disk_super, super_flags);
2287
2288 return 0;
2289}
2290
2291/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002292 * Store the expected generation for seed devices in device items.
Yan Zheng2b820322008-11-17 21:11:30 -05002293 */
2294static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002295 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002296{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002297 struct btrfs_root *root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002298 struct btrfs_path *path;
2299 struct extent_buffer *leaf;
2300 struct btrfs_dev_item *dev_item;
2301 struct btrfs_device *device;
2302 struct btrfs_key key;
Anand Jain44880fd2017-07-29 17:50:09 +08002303 u8 fs_uuid[BTRFS_FSID_SIZE];
Yan Zheng2b820322008-11-17 21:11:30 -05002304 u8 dev_uuid[BTRFS_UUID_SIZE];
2305 u64 devid;
2306 int ret;
2307
2308 path = btrfs_alloc_path();
2309 if (!path)
2310 return -ENOMEM;
2311
Yan Zheng2b820322008-11-17 21:11:30 -05002312 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2313 key.offset = 0;
2314 key.type = BTRFS_DEV_ITEM_KEY;
2315
2316 while (1) {
2317 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2318 if (ret < 0)
2319 goto error;
2320
2321 leaf = path->nodes[0];
2322next_slot:
2323 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2324 ret = btrfs_next_leaf(root, path);
2325 if (ret > 0)
2326 break;
2327 if (ret < 0)
2328 goto error;
2329 leaf = path->nodes[0];
2330 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002331 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002332 continue;
2333 }
2334
2335 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2336 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2337 key.type != BTRFS_DEV_ITEM_KEY)
2338 break;
2339
2340 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2341 struct btrfs_dev_item);
2342 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002343 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002344 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002345 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08002346 BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002347 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002348 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002349
2350 if (device->fs_devices->seeding) {
2351 btrfs_set_device_generation(leaf, dev_item,
2352 device->generation);
2353 btrfs_mark_buffer_dirty(leaf);
2354 }
2355
2356 path->slots[0]++;
2357 goto next_slot;
2358 }
2359 ret = 0;
2360error:
2361 btrfs_free_path(path);
2362 return ret;
2363}
2364
David Sterbada353f62017-02-14 17:55:53 +01002365int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path)
Chris Mason788f20e2008-04-28 15:29:42 -04002366{
Jeff Mahoney5112feb2016-06-21 20:16:08 -04002367 struct btrfs_root *root = fs_info->dev_root;
Josef Bacikd5e20032011-08-04 14:52:27 +00002368 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002369 struct btrfs_trans_handle *trans;
2370 struct btrfs_device *device;
2371 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002372 struct list_head *devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002373 struct super_block *sb = fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002374 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002375 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002376 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002377 int ret = 0;
Anand Jain7132a262017-09-28 14:51:11 +08002378 bool unlocked = false;
Chris Mason788f20e2008-04-28 15:29:42 -04002379
David Howellsbc98a422017-07-17 08:45:34 +01002380 if (sb_rdonly(sb) && !fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002381 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002382
Li Zefana5d16332011-12-07 20:08:40 -05002383 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002384 fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002385 if (IS_ERR(bdev))
2386 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002387
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002388 if (fs_info->fs_devices->seeding) {
Yan Zheng2b820322008-11-17 21:11:30 -05002389 seeding_dev = 1;
2390 down_write(&sb->s_umount);
2391 mutex_lock(&uuid_mutex);
2392 }
2393
Chris Mason8c8bee12008-09-29 11:19:10 -04002394 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002395
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002396 devices = &fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002397
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002398 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002399 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002400 if (device->bdev == bdev) {
2401 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002402 mutex_unlock(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002403 &fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002404 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002405 }
2406 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002407 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002408
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002409 device = btrfs_alloc_device(fs_info, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002410 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002411 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002412 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002413 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002414 }
2415
David Sterba78f2c9e2016-02-11 14:25:38 +01002416 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002417 if (!name) {
Yan Zheng2b820322008-11-17 21:11:30 -05002418 ret = -ENOMEM;
David Sterba5c4cf6c2017-10-30 19:29:46 +01002419 goto error_free_device;
Chris Mason788f20e2008-04-28 15:29:42 -04002420 }
Josef Bacik606686e2012-06-04 14:03:51 -04002421 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002422
Yan, Zhenga22285a2010-05-16 10:48:46 -04002423 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002424 if (IS_ERR(trans)) {
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002425 ret = PTR_ERR(trans);
David Sterba5c4cf6c2017-10-30 19:29:46 +01002426 goto error_free_device;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002427 }
2428
Josef Bacikd5e20032011-08-04 14:52:27 +00002429 q = bdev_get_queue(bdev);
Anand Jainebbede42017-12-04 12:54:52 +08002430 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05002431 device->generation = trans->transid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002432 device->io_width = fs_info->sectorsize;
2433 device->io_align = fs_info->sectorsize;
2434 device->sector_size = fs_info->sectorsize;
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002435 device->total_bytes = round_down(i_size_read(bdev->bd_inode),
2436 fs_info->sectorsize);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002437 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002438 device->commit_total_bytes = device->total_bytes;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002439 device->fs_info = fs_info;
Chris Mason788f20e2008-04-28 15:29:42 -04002440 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +08002441 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +08002442 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002443 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002444 device->dev_stats_valid = 1;
David Sterba9f6d2512017-06-16 01:48:05 +02002445 set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE);
Zheng Yan325cd4b2008-09-05 16:43:54 -04002446
Yan Zheng2b820322008-11-17 21:11:30 -05002447 if (seeding_dev) {
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002448 sb->s_flags &= ~SB_RDONLY;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002449 ret = btrfs_prepare_sprout(fs_info);
Anand Jaind31c32f2017-09-28 14:51:10 +08002450 if (ret) {
2451 btrfs_abort_transaction(trans, ret);
2452 goto error_trans;
2453 }
Yan Zheng2b820322008-11-17 21:11:30 -05002454 }
2455
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002456 device->fs_devices = fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002457
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002458 mutex_lock(&fs_info->fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02002459 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002460 list_add_rcu(&device->dev_list, &fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002461 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002462 &fs_info->fs_devices->alloc_list);
2463 fs_info->fs_devices->num_devices++;
2464 fs_info->fs_devices->open_devices++;
2465 fs_info->fs_devices->rw_devices++;
2466 fs_info->fs_devices->total_devices++;
2467 fs_info->fs_devices->total_rw_bytes += device->total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05002468
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002469 atomic64_add(device->total_bytes, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04002470
Anand Jaine884f4f2017-04-04 18:40:19 +08002471 if (!blk_queue_nonrot(q))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002472 fs_info->fs_devices->rotating = 1;
Chris Masonc2898112009-06-10 09:51:32 -04002473
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002474 tmp = btrfs_super_total_bytes(fs_info->super_copy);
2475 btrfs_set_super_total_bytes(fs_info->super_copy,
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002476 round_down(tmp + device->total_bytes, fs_info->sectorsize));
Chris Mason788f20e2008-04-28 15:29:42 -04002477
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002478 tmp = btrfs_super_num_devices(fs_info->super_copy);
2479 btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002480
2481 /* add sysfs device entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002482 btrfs_sysfs_add_device_link(fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002483
Miao Xie2196d6e2014-09-03 21:35:41 +08002484 /*
2485 * we've got more storage, clear any full flags on the space
2486 * infos
2487 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002488 btrfs_clear_space_info_full(fs_info);
Miao Xie2196d6e2014-09-03 21:35:41 +08002489
David Sterba34441362016-10-04 19:34:27 +02002490 mutex_unlock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002491 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002492
Yan Zheng2b820322008-11-17 21:11:30 -05002493 if (seeding_dev) {
David Sterba34441362016-10-04 19:34:27 +02002494 mutex_lock(&fs_info->chunk_mutex);
David Sterbae4a4dce2017-02-10 19:49:01 +01002495 ret = init_first_rw_device(trans, fs_info);
David Sterba34441362016-10-04 19:34:27 +02002496 mutex_unlock(&fs_info->chunk_mutex);
David Sterba005d6422012-09-18 07:52:32 -06002497 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002498 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002499 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002500 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002501 }
2502
Anand Jainc74a0b02017-11-06 16:36:15 +08002503 ret = btrfs_add_dev_item(trans, fs_info, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002504 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002505 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002506 goto error_sysfs;
Miao Xie2196d6e2014-09-03 21:35:41 +08002507 }
2508
2509 if (seeding_dev) {
2510 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2511
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002512 ret = btrfs_finish_sprout(trans, fs_info);
David Sterba005d6422012-09-18 07:52:32 -06002513 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002514 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002515 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002516 }
Anand Jainb2373f22014-06-03 11:36:03 +08002517
2518 /* Sprouting would change fsid of the mounted root,
2519 * so rename the fsid on the sysfs
2520 */
2521 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002522 fs_info->fsid);
2523 if (kobject_rename(&fs_info->fs_devices->fsid_kobj, fsid_buf))
2524 btrfs_warn(fs_info,
2525 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002526 }
2527
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002528 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002529
2530 if (seeding_dev) {
2531 mutex_unlock(&uuid_mutex);
2532 up_write(&sb->s_umount);
Anand Jain7132a262017-09-28 14:51:11 +08002533 unlocked = true;
Yan Zheng2b820322008-11-17 21:11:30 -05002534
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002535 if (ret) /* transaction commit */
2536 return ret;
2537
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002538 ret = btrfs_relocate_sys_chunks(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002539 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002540 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002541 "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002542 trans = btrfs_attach_transaction(root);
2543 if (IS_ERR(trans)) {
2544 if (PTR_ERR(trans) == -ENOENT)
2545 return 0;
Anand Jain7132a262017-09-28 14:51:11 +08002546 ret = PTR_ERR(trans);
2547 trans = NULL;
2548 goto error_sysfs;
Miao Xie671415b2012-10-16 11:26:46 +00002549 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002550 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002551 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002552
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002553 /* Update ctime/mtime for libblkid */
2554 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002555 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002556
Anand Jaind31c32f2017-09-28 14:51:10 +08002557error_sysfs:
2558 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002559error_trans:
Anand Jain0af2c4b2017-09-28 14:51:09 +08002560 if (seeding_dev)
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002561 sb->s_flags |= SB_RDONLY;
Anand Jain7132a262017-09-28 14:51:11 +08002562 if (trans)
2563 btrfs_end_transaction(trans);
David Sterba5c4cf6c2017-10-30 19:29:46 +01002564error_free_device:
David Sterba55de4802017-10-30 18:55:47 +01002565 free_device(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002566error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002567 blkdev_put(bdev, FMODE_EXCL);
Anand Jain7132a262017-09-28 14:51:11 +08002568 if (seeding_dev && !unlocked) {
Yan Zheng2b820322008-11-17 21:11:30 -05002569 mutex_unlock(&uuid_mutex);
2570 up_write(&sb->s_umount);
2571 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002572 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002573}
2574
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002575int btrfs_init_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002576 const char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002577 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002578 struct btrfs_device **device_out)
2579{
Stefan Behrense93c89c2012-11-05 17:33:06 +01002580 struct btrfs_device *device;
2581 struct block_device *bdev;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002582 struct list_head *devices;
2583 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002584 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002585 int ret = 0;
2586
2587 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002588 if (fs_info->fs_devices->seeding) {
2589 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002590 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002591 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002592
2593 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2594 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002595 if (IS_ERR(bdev)) {
2596 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002597 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002598 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002599
2600 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2601
2602 devices = &fs_info->fs_devices->devices;
2603 list_for_each_entry(device, devices, dev_list) {
2604 if (device->bdev == bdev) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002605 btrfs_err(fs_info,
2606 "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002607 ret = -EEXIST;
2608 goto error;
2609 }
2610 }
2611
Miao Xie1c433662014-09-03 21:35:32 +08002612
Miao Xie7cc8e582014-09-03 21:35:38 +08002613 if (i_size_read(bdev->bd_inode) <
2614 btrfs_device_get_total_bytes(srcdev)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002615 btrfs_err(fs_info,
2616 "target device is smaller than source device!");
Miao Xie1c433662014-09-03 21:35:32 +08002617 ret = -EINVAL;
2618 goto error;
2619 }
2620
2621
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002622 device = btrfs_alloc_device(NULL, &devid, NULL);
2623 if (IS_ERR(device)) {
2624 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002625 goto error;
2626 }
2627
David Sterba61655722017-06-15 17:16:43 +02002628 name = rcu_string_strdup(device_path, GFP_KERNEL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002629 if (!name) {
David Sterba55de4802017-10-30 18:55:47 +01002630 free_device(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002631 ret = -ENOMEM;
2632 goto error;
2633 }
2634 rcu_assign_pointer(device->name, name);
2635
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002636 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jainebbede42017-12-04 12:54:52 +08002637 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002638 device->generation = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002639 device->io_width = fs_info->sectorsize;
2640 device->io_align = fs_info->sectorsize;
2641 device->sector_size = fs_info->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002642 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2643 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2644 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002645 ASSERT(list_empty(&srcdev->resized_list));
2646 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002647 device->commit_bytes_used = device->bytes_used;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002648 device->fs_info = fs_info;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002649 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +08002650 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +08002651 set_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002652 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002653 device->dev_stats_valid = 1;
David Sterba9f6d2512017-06-16 01:48:05 +02002654 set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002655 device->fs_devices = fs_info->fs_devices;
2656 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2657 fs_info->fs_devices->num_devices++;
2658 fs_info->fs_devices->open_devices++;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002659 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002660
2661 *device_out = device;
2662 return ret;
2663
2664error:
2665 blkdev_put(bdev, FMODE_EXCL);
2666 return ret;
2667}
2668
Chris Masond3977122009-01-05 21:25:51 -05002669static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2670 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002671{
2672 int ret;
2673 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002674 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002675 struct btrfs_dev_item *dev_item;
2676 struct extent_buffer *leaf;
2677 struct btrfs_key key;
2678
Chris Mason0b86a832008-03-24 15:01:56 -04002679 path = btrfs_alloc_path();
2680 if (!path)
2681 return -ENOMEM;
2682
2683 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2684 key.type = BTRFS_DEV_ITEM_KEY;
2685 key.offset = device->devid;
2686
2687 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2688 if (ret < 0)
2689 goto out;
2690
2691 if (ret > 0) {
2692 ret = -ENOENT;
2693 goto out;
2694 }
2695
2696 leaf = path->nodes[0];
2697 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2698
2699 btrfs_set_device_id(leaf, dev_item, device->devid);
2700 btrfs_set_device_type(leaf, dev_item, device->type);
2701 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2702 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2703 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002704 btrfs_set_device_total_bytes(leaf, dev_item,
2705 btrfs_device_get_disk_total_bytes(device));
2706 btrfs_set_device_bytes_used(leaf, dev_item,
2707 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002708 btrfs_mark_buffer_dirty(leaf);
2709
2710out:
2711 btrfs_free_path(path);
2712 return ret;
2713}
2714
Miao Xie2196d6e2014-09-03 21:35:41 +08002715int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002716 struct btrfs_device *device, u64 new_size)
2717{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002718 struct btrfs_fs_info *fs_info = device->fs_info;
2719 struct btrfs_super_block *super_copy = fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002720 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002721 u64 old_total;
2722 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002723
Anand Jainebbede42017-12-04 12:54:52 +08002724 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Yan Zheng2b820322008-11-17 21:11:30 -05002725 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002726
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002727 new_size = round_down(new_size, fs_info->sectorsize);
2728
David Sterba34441362016-10-04 19:34:27 +02002729 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002730 old_total = btrfs_super_total_bytes(super_copy);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03002731 diff = round_down(new_size - device->total_bytes, fs_info->sectorsize);
Miao Xie2196d6e2014-09-03 21:35:41 +08002732
Stefan Behrens63a212a2012-11-05 18:29:28 +01002733 if (new_size <= device->total_bytes ||
Anand Jain401e29c2017-12-04 12:54:55 +08002734 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002735 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002736 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002737 }
Yan Zheng2b820322008-11-17 21:11:30 -05002738
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002739 fs_devices = fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002740
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002741 btrfs_set_super_total_bytes(super_copy,
2742 round_down(old_total + diff, fs_info->sectorsize));
Yan Zheng2b820322008-11-17 21:11:30 -05002743 device->fs_devices->total_rw_bytes += diff;
2744
Miao Xie7cc8e582014-09-03 21:35:38 +08002745 btrfs_device_set_total_bytes(device, new_size);
2746 btrfs_device_set_disk_total_bytes(device, new_size);
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002747 btrfs_clear_space_info_full(device->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002748 if (list_empty(&device->resized_list))
2749 list_add_tail(&device->resized_list,
2750 &fs_devices->resized_devices);
David Sterba34441362016-10-04 19:34:27 +02002751 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason4184ea72009-03-10 12:39:20 -04002752
Chris Mason8f18cf12008-04-25 16:53:30 -04002753 return btrfs_update_device(trans, device);
2754}
2755
2756static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002757 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002758{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002759 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002760 int ret;
2761 struct btrfs_path *path;
2762 struct btrfs_key key;
2763
Chris Mason8f18cf12008-04-25 16:53:30 -04002764 path = btrfs_alloc_path();
2765 if (!path)
2766 return -ENOMEM;
2767
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002768 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Chris Mason8f18cf12008-04-25 16:53:30 -04002769 key.offset = chunk_offset;
2770 key.type = BTRFS_CHUNK_ITEM_KEY;
2771
2772 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002773 if (ret < 0)
2774 goto out;
2775 else if (ret > 0) { /* Logic error or corruption */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002776 btrfs_handle_fs_error(fs_info, -ENOENT,
2777 "Failed lookup while freeing chunk.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002778 ret = -ENOENT;
2779 goto out;
2780 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002781
2782 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002783 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002784 btrfs_handle_fs_error(fs_info, ret,
2785 "Failed to delete chunk item.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002786out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002787 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002788 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002789}
2790
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002791static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002792{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002793 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002794 struct btrfs_disk_key *disk_key;
2795 struct btrfs_chunk *chunk;
2796 u8 *ptr;
2797 int ret = 0;
2798 u32 num_stripes;
2799 u32 array_size;
2800 u32 len = 0;
2801 u32 cur;
2802 struct btrfs_key key;
2803
David Sterba34441362016-10-04 19:34:27 +02002804 mutex_lock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002805 array_size = btrfs_super_sys_array_size(super_copy);
2806
2807 ptr = super_copy->sys_chunk_array;
2808 cur = 0;
2809
2810 while (cur < array_size) {
2811 disk_key = (struct btrfs_disk_key *)ptr;
2812 btrfs_disk_key_to_cpu(&key, disk_key);
2813
2814 len = sizeof(*disk_key);
2815
2816 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2817 chunk = (struct btrfs_chunk *)(ptr + len);
2818 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2819 len += btrfs_chunk_item_size(num_stripes);
2820 } else {
2821 ret = -EIO;
2822 break;
2823 }
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002824 if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID &&
Chris Mason8f18cf12008-04-25 16:53:30 -04002825 key.offset == chunk_offset) {
2826 memmove(ptr, ptr + len, array_size - (cur + len));
2827 array_size -= len;
2828 btrfs_set_super_sys_array_size(super_copy, array_size);
2829 } else {
2830 ptr += len;
2831 cur += len;
2832 }
2833 }
David Sterba34441362016-10-04 19:34:27 +02002834 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002835 return ret;
2836}
2837
Liu Bo592d92e2017-03-14 13:33:55 -07002838static struct extent_map *get_chunk_map(struct btrfs_fs_info *fs_info,
2839 u64 logical, u64 length)
2840{
2841 struct extent_map_tree *em_tree;
2842 struct extent_map *em;
2843
2844 em_tree = &fs_info->mapping_tree.map_tree;
2845 read_lock(&em_tree->lock);
2846 em = lookup_extent_mapping(em_tree, logical, length);
2847 read_unlock(&em_tree->lock);
2848
2849 if (!em) {
2850 btrfs_crit(fs_info, "unable to find logical %llu length %llu",
2851 logical, length);
2852 return ERR_PTR(-EINVAL);
2853 }
2854
2855 if (em->start > logical || em->start + em->len < logical) {
2856 btrfs_crit(fs_info,
2857 "found a bad mapping, wanted %llu-%llu, found %llu-%llu",
2858 logical, length, em->start, em->start + em->len);
2859 free_extent_map(em);
2860 return ERR_PTR(-EINVAL);
2861 }
2862
2863 /* callers are responsible for dropping em's ref. */
2864 return em;
2865}
2866
Josef Bacik47ab2a62014-09-18 11:20:02 -04002867int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002868 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Josef Bacik47ab2a62014-09-18 11:20:02 -04002869{
Josef Bacik47ab2a62014-09-18 11:20:02 -04002870 struct extent_map *em;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002871 struct map_lookup *map;
2872 u64 dev_extent_len = 0;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002873 int i, ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002874 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002875
Liu Bo592d92e2017-03-14 13:33:55 -07002876 em = get_chunk_map(fs_info, chunk_offset, 1);
2877 if (IS_ERR(em)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -04002878 /*
2879 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002880 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04002881 * do anything we still error out.
2882 */
2883 ASSERT(0);
Liu Bo592d92e2017-03-14 13:33:55 -07002884 return PTR_ERR(em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002885 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002886 map = em->map_lookup;
David Sterba34441362016-10-04 19:34:27 +02002887 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002888 check_system_chunk(trans, fs_info, map->type);
David Sterba34441362016-10-04 19:34:27 +02002889 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002890
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002891 /*
2892 * Take the device list mutex to prevent races with the final phase of
2893 * a device replace operation that replaces the device object associated
2894 * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()).
2895 */
2896 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002897 for (i = 0; i < map->num_stripes; i++) {
2898 struct btrfs_device *device = map->stripes[i].dev;
2899 ret = btrfs_free_dev_extent(trans, device,
2900 map->stripes[i].physical,
2901 &dev_extent_len);
2902 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002903 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002904 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002905 goto out;
2906 }
2907
2908 if (device->bytes_used > 0) {
David Sterba34441362016-10-04 19:34:27 +02002909 mutex_lock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002910 btrfs_device_set_bytes_used(device,
2911 device->bytes_used - dev_extent_len);
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002912 atomic64_add(dev_extent_len, &fs_info->free_chunk_space);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002913 btrfs_clear_space_info_full(fs_info);
David Sterba34441362016-10-04 19:34:27 +02002914 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002915 }
2916
2917 if (map->stripes[i].dev) {
2918 ret = btrfs_update_device(trans, map->stripes[i].dev);
2919 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002920 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002921 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002922 goto out;
2923 }
2924 }
2925 }
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002926 mutex_unlock(&fs_devices->device_list_mutex);
2927
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002928 ret = btrfs_free_chunk(trans, fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002929 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002930 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002931 goto out;
2932 }
2933
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002934 trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002935
2936 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002937 ret = btrfs_del_sys_chunk(fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002938 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002939 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002940 goto out;
2941 }
2942 }
2943
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002944 ret = btrfs_remove_block_group(trans, fs_info, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002945 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002946 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002947 goto out;
2948 }
2949
Josef Bacik47ab2a62014-09-18 11:20:02 -04002950out:
2951 /* once for us */
2952 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002953 return ret;
2954}
2955
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002956static int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002957{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002958 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason19c4d2f2016-10-10 13:43:31 -07002959 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002960 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002961
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002962 /*
2963 * Prevent races with automatic removal of unused block groups.
2964 * After we relocate and before we remove the chunk with offset
2965 * chunk_offset, automatic removal of the block group can kick in,
2966 * resulting in a failure when calling btrfs_remove_chunk() below.
2967 *
2968 * Make sure to acquire this mutex before doing a tree search (dev
2969 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2970 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2971 * we release the path used to search the chunk/dev tree and before
2972 * the current task acquires this mutex and calls us.
2973 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002974 ASSERT(mutex_is_locked(&fs_info->delete_unused_bgs_mutex));
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002975
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002976 ret = btrfs_can_relocate(fs_info, chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002977 if (ret)
2978 return -ENOSPC;
2979
Chris Mason8f18cf12008-04-25 16:53:30 -04002980 /* step one, relocate all the extents inside this chunk */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002981 btrfs_scrub_pause(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002982 ret = btrfs_relocate_block_group(fs_info, chunk_offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002983 btrfs_scrub_continue(fs_info);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002984 if (ret)
2985 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002986
Chris Mason19c4d2f2016-10-10 13:43:31 -07002987 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2988 chunk_offset);
2989 if (IS_ERR(trans)) {
2990 ret = PTR_ERR(trans);
2991 btrfs_handle_fs_error(root->fs_info, ret, NULL);
2992 return ret;
2993 }
Naohiro Aota5d8eb6f2016-09-02 16:46:32 +09002994
Chris Mason19c4d2f2016-10-10 13:43:31 -07002995 /*
2996 * step two, delete the device extents and the
2997 * chunk tree entries
2998 */
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002999 ret = btrfs_remove_chunk(trans, fs_info, chunk_offset);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003000 btrfs_end_transaction(trans);
Chris Mason19c4d2f2016-10-10 13:43:31 -07003001 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04003002}
3003
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003004static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05003005{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003006 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05003007 struct btrfs_path *path;
3008 struct extent_buffer *leaf;
3009 struct btrfs_chunk *chunk;
3010 struct btrfs_key key;
3011 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05003012 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04003013 bool retried = false;
3014 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05003015 int ret;
3016
3017 path = btrfs_alloc_path();
3018 if (!path)
3019 return -ENOMEM;
3020
Josef Bacikba1bf482009-09-11 16:11:19 -04003021again:
Yan Zheng2b820322008-11-17 21:11:30 -05003022 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3023 key.offset = (u64)-1;
3024 key.type = BTRFS_CHUNK_ITEM_KEY;
3025
3026 while (1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003027 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003028 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003029 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003030 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003031 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003032 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003033 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05003034
3035 ret = btrfs_previous_item(chunk_root, path, key.objectid,
3036 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003037 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003038 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003039 if (ret < 0)
3040 goto error;
3041 if (ret > 0)
3042 break;
3043
3044 leaf = path->nodes[0];
3045 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3046
3047 chunk = btrfs_item_ptr(leaf, path->slots[0],
3048 struct btrfs_chunk);
3049 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02003050 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05003051
3052 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003053 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003054 if (ret == -ENOSPC)
3055 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05303056 else
3057 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05003058 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003059 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003060
3061 if (found_key.offset == 0)
3062 break;
3063 key.offset = found_key.offset - 1;
3064 }
3065 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04003066 if (failed && !retried) {
3067 failed = 0;
3068 retried = true;
3069 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303070 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04003071 ret = -ENOSPC;
3072 }
Yan Zheng2b820322008-11-17 21:11:30 -05003073error:
3074 btrfs_free_path(path);
3075 return ret;
3076}
3077
Liu Boa6f93c72017-11-15 16:28:11 -07003078/*
3079 * return 1 : allocate a data chunk successfully,
3080 * return <0: errors during allocating a data chunk,
3081 * return 0 : no need to allocate a data chunk.
3082 */
3083static int btrfs_may_alloc_data_chunk(struct btrfs_fs_info *fs_info,
3084 u64 chunk_offset)
3085{
3086 struct btrfs_block_group_cache *cache;
3087 u64 bytes_used;
3088 u64 chunk_type;
3089
3090 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3091 ASSERT(cache);
3092 chunk_type = cache->flags;
3093 btrfs_put_block_group(cache);
3094
3095 if (chunk_type & BTRFS_BLOCK_GROUP_DATA) {
3096 spin_lock(&fs_info->data_sinfo->lock);
3097 bytes_used = fs_info->data_sinfo->bytes_used;
3098 spin_unlock(&fs_info->data_sinfo->lock);
3099
3100 if (!bytes_used) {
3101 struct btrfs_trans_handle *trans;
3102 int ret;
3103
3104 trans = btrfs_join_transaction(fs_info->tree_root);
3105 if (IS_ERR(trans))
3106 return PTR_ERR(trans);
3107
3108 ret = btrfs_force_chunk_alloc(trans, fs_info,
3109 BTRFS_BLOCK_GROUP_DATA);
3110 btrfs_end_transaction(trans);
3111 if (ret < 0)
3112 return ret;
3113
3114 return 1;
3115 }
3116 }
3117 return 0;
3118}
3119
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003120static int insert_balance_item(struct btrfs_fs_info *fs_info,
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003121 struct btrfs_balance_control *bctl)
3122{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003123 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003124 struct btrfs_trans_handle *trans;
3125 struct btrfs_balance_item *item;
3126 struct btrfs_disk_balance_args disk_bargs;
3127 struct btrfs_path *path;
3128 struct extent_buffer *leaf;
3129 struct btrfs_key key;
3130 int ret, err;
3131
3132 path = btrfs_alloc_path();
3133 if (!path)
3134 return -ENOMEM;
3135
3136 trans = btrfs_start_transaction(root, 0);
3137 if (IS_ERR(trans)) {
3138 btrfs_free_path(path);
3139 return PTR_ERR(trans);
3140 }
3141
3142 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003143 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003144 key.offset = 0;
3145
3146 ret = btrfs_insert_empty_item(trans, root, path, &key,
3147 sizeof(*item));
3148 if (ret)
3149 goto out;
3150
3151 leaf = path->nodes[0];
3152 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3153
David Sterbab159fa22016-11-08 18:09:03 +01003154 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003155
3156 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
3157 btrfs_set_balance_data(leaf, item, &disk_bargs);
3158 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
3159 btrfs_set_balance_meta(leaf, item, &disk_bargs);
3160 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
3161 btrfs_set_balance_sys(leaf, item, &disk_bargs);
3162
3163 btrfs_set_balance_flags(leaf, item, bctl->flags);
3164
3165 btrfs_mark_buffer_dirty(leaf);
3166out:
3167 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003168 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003169 if (err && !ret)
3170 ret = err;
3171 return ret;
3172}
3173
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003174static int del_balance_item(struct btrfs_fs_info *fs_info)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003175{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003176 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003177 struct btrfs_trans_handle *trans;
3178 struct btrfs_path *path;
3179 struct btrfs_key key;
3180 int ret, err;
3181
3182 path = btrfs_alloc_path();
3183 if (!path)
3184 return -ENOMEM;
3185
3186 trans = btrfs_start_transaction(root, 0);
3187 if (IS_ERR(trans)) {
3188 btrfs_free_path(path);
3189 return PTR_ERR(trans);
3190 }
3191
3192 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003193 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003194 key.offset = 0;
3195
3196 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3197 if (ret < 0)
3198 goto out;
3199 if (ret > 0) {
3200 ret = -ENOENT;
3201 goto out;
3202 }
3203
3204 ret = btrfs_del_item(trans, root, path);
3205out:
3206 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003207 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003208 if (err && !ret)
3209 ret = err;
3210 return ret;
3211}
3212
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003213/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003214 * This is a heuristic used to reduce the number of chunks balanced on
3215 * resume after balance was interrupted.
3216 */
3217static void update_balance_args(struct btrfs_balance_control *bctl)
3218{
3219 /*
3220 * Turn on soft mode for chunk types that were being converted.
3221 */
3222 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3223 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3224 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3225 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3226 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3227 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3228
3229 /*
3230 * Turn on usage filter if is not already used. The idea is
3231 * that chunks that we have already balanced should be
3232 * reasonably full. Don't do it for chunks that are being
3233 * converted - that will keep us from relocating unconverted
3234 * (albeit full) chunks.
3235 */
3236 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003237 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003238 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3239 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3240 bctl->data.usage = 90;
3241 }
3242 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003243 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003244 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3245 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3246 bctl->sys.usage = 90;
3247 }
3248 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003249 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003250 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3251 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3252 bctl->meta.usage = 90;
3253 }
3254}
3255
3256/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003257 * Should be called with both balance and volume mutexes held to
3258 * serialize other volume operations (add_dev/rm_dev/resize) with
3259 * restriper. Same goes for unset_balance_control.
3260 */
3261static void set_balance_control(struct btrfs_balance_control *bctl)
3262{
3263 struct btrfs_fs_info *fs_info = bctl->fs_info;
3264
3265 BUG_ON(fs_info->balance_ctl);
3266
3267 spin_lock(&fs_info->balance_lock);
3268 fs_info->balance_ctl = bctl;
3269 spin_unlock(&fs_info->balance_lock);
3270}
3271
3272static void unset_balance_control(struct btrfs_fs_info *fs_info)
3273{
3274 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3275
3276 BUG_ON(!fs_info->balance_ctl);
3277
3278 spin_lock(&fs_info->balance_lock);
3279 fs_info->balance_ctl = NULL;
3280 spin_unlock(&fs_info->balance_lock);
3281
3282 kfree(bctl);
3283}
3284
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003285/*
3286 * Balance filters. Return 1 if chunk should be filtered out
3287 * (should not be balanced).
3288 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003289static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003290 struct btrfs_balance_args *bargs)
3291{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003292 chunk_type = chunk_to_extended(chunk_type) &
3293 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003294
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003295 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003296 return 0;
3297
3298 return 1;
3299}
3300
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003301static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003302 struct btrfs_balance_args *bargs)
3303{
3304 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003305 u64 chunk_used;
3306 u64 user_thresh_min;
3307 u64 user_thresh_max;
3308 int ret = 1;
3309
3310 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3311 chunk_used = btrfs_block_group_used(&cache->item);
3312
3313 if (bargs->usage_min == 0)
3314 user_thresh_min = 0;
3315 else
3316 user_thresh_min = div_factor_fine(cache->key.offset,
3317 bargs->usage_min);
3318
3319 if (bargs->usage_max == 0)
3320 user_thresh_max = 1;
3321 else if (bargs->usage_max > 100)
3322 user_thresh_max = cache->key.offset;
3323 else
3324 user_thresh_max = div_factor_fine(cache->key.offset,
3325 bargs->usage_max);
3326
3327 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3328 ret = 0;
3329
3330 btrfs_put_block_group(cache);
3331 return ret;
3332}
3333
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003334static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003335 u64 chunk_offset, struct btrfs_balance_args *bargs)
3336{
3337 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003338 u64 chunk_used, user_thresh;
3339 int ret = 1;
3340
3341 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3342 chunk_used = btrfs_block_group_used(&cache->item);
3343
David Sterbabc309462015-10-20 18:22:13 +02003344 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003345 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003346 else if (bargs->usage > 100)
3347 user_thresh = cache->key.offset;
3348 else
3349 user_thresh = div_factor_fine(cache->key.offset,
3350 bargs->usage);
3351
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003352 if (chunk_used < user_thresh)
3353 ret = 0;
3354
3355 btrfs_put_block_group(cache);
3356 return ret;
3357}
3358
Ilya Dryomov409d4042012-01-16 22:04:47 +02003359static int chunk_devid_filter(struct extent_buffer *leaf,
3360 struct btrfs_chunk *chunk,
3361 struct btrfs_balance_args *bargs)
3362{
3363 struct btrfs_stripe *stripe;
3364 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3365 int i;
3366
3367 for (i = 0; i < num_stripes; i++) {
3368 stripe = btrfs_stripe_nr(chunk, i);
3369 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3370 return 0;
3371 }
3372
3373 return 1;
3374}
3375
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003376/* [pstart, pend) */
3377static int chunk_drange_filter(struct extent_buffer *leaf,
3378 struct btrfs_chunk *chunk,
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003379 struct btrfs_balance_args *bargs)
3380{
3381 struct btrfs_stripe *stripe;
3382 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3383 u64 stripe_offset;
3384 u64 stripe_length;
3385 int factor;
3386 int i;
3387
3388 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3389 return 0;
3390
3391 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003392 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3393 factor = num_stripes / 2;
3394 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3395 factor = num_stripes - 1;
3396 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3397 factor = num_stripes - 2;
3398 } else {
3399 factor = num_stripes;
3400 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003401
3402 for (i = 0; i < num_stripes; i++) {
3403 stripe = btrfs_stripe_nr(chunk, i);
3404 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3405 continue;
3406
3407 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3408 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003409 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003410
3411 if (stripe_offset < bargs->pend &&
3412 stripe_offset + stripe_length > bargs->pstart)
3413 return 0;
3414 }
3415
3416 return 1;
3417}
3418
Ilya Dryomovea671762012-01-16 22:04:48 +02003419/* [vstart, vend) */
3420static int chunk_vrange_filter(struct extent_buffer *leaf,
3421 struct btrfs_chunk *chunk,
3422 u64 chunk_offset,
3423 struct btrfs_balance_args *bargs)
3424{
3425 if (chunk_offset < bargs->vend &&
3426 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3427 /* at least part of the chunk is inside this vrange */
3428 return 0;
3429
3430 return 1;
3431}
3432
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003433static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3434 struct btrfs_chunk *chunk,
3435 struct btrfs_balance_args *bargs)
3436{
3437 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3438
3439 if (bargs->stripes_min <= num_stripes
3440 && num_stripes <= bargs->stripes_max)
3441 return 0;
3442
3443 return 1;
3444}
3445
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003446static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003447 struct btrfs_balance_args *bargs)
3448{
3449 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3450 return 0;
3451
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003452 chunk_type = chunk_to_extended(chunk_type) &
3453 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003454
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003455 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003456 return 1;
3457
3458 return 0;
3459}
3460
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003461static int should_balance_chunk(struct btrfs_fs_info *fs_info,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003462 struct extent_buffer *leaf,
3463 struct btrfs_chunk *chunk, u64 chunk_offset)
3464{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003465 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003466 struct btrfs_balance_args *bargs = NULL;
3467 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3468
3469 /* type filter */
3470 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3471 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3472 return 0;
3473 }
3474
3475 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3476 bargs = &bctl->data;
3477 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3478 bargs = &bctl->sys;
3479 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3480 bargs = &bctl->meta;
3481
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003482 /* profiles filter */
3483 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3484 chunk_profiles_filter(chunk_type, bargs)) {
3485 return 0;
3486 }
3487
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003488 /* usage filter */
3489 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003490 chunk_usage_filter(fs_info, chunk_offset, bargs)) {
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003491 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003492 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003493 chunk_usage_range_filter(fs_info, chunk_offset, bargs)) {
David Sterbabc309462015-10-20 18:22:13 +02003494 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003495 }
3496
Ilya Dryomov409d4042012-01-16 22:04:47 +02003497 /* devid filter */
3498 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3499 chunk_devid_filter(leaf, chunk, bargs)) {
3500 return 0;
3501 }
3502
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003503 /* drange filter, makes sense only with devid filter */
3504 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03003505 chunk_drange_filter(leaf, chunk, bargs)) {
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003506 return 0;
3507 }
3508
Ilya Dryomovea671762012-01-16 22:04:48 +02003509 /* vrange filter */
3510 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3511 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3512 return 0;
3513 }
3514
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003515 /* stripes filter */
3516 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3517 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3518 return 0;
3519 }
3520
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003521 /* soft profile changing mode */
3522 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3523 chunk_soft_convert_filter(chunk_type, bargs)) {
3524 return 0;
3525 }
3526
David Sterba7d824b62014-05-07 17:37:51 +02003527 /*
3528 * limited by count, must be the last filter
3529 */
3530 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3531 if (bargs->limit == 0)
3532 return 0;
3533 else
3534 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003535 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3536 /*
3537 * Same logic as the 'limit' filter; the minimum cannot be
Nicholas D Steeves01327612016-05-19 21:18:45 -04003538 * determined here because we do not have the global information
David Sterba12907fc2015-10-10 17:16:50 +02003539 * about the count of all chunks that satisfy the filters.
3540 */
3541 if (bargs->limit_max == 0)
3542 return 0;
3543 else
3544 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003545 }
3546
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003547 return 1;
3548}
3549
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003550static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003551{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003552 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003553 struct btrfs_root *chunk_root = fs_info->chunk_root;
3554 struct btrfs_root *dev_root = fs_info->dev_root;
3555 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003556 struct btrfs_device *device;
3557 u64 old_size;
3558 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003559 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003560 struct btrfs_chunk *chunk;
Liu Bo5a488b92016-07-12 11:24:21 -07003561 struct btrfs_path *path = NULL;
Chris Masonec44a352008-04-28 15:29:52 -04003562 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003563 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003564 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003565 struct extent_buffer *leaf;
3566 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003567 int ret;
3568 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003569 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003570 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003571 u64 limit_data = bctl->data.limit;
3572 u64 limit_meta = bctl->meta.limit;
3573 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003574 u32 count_data = 0;
3575 u32 count_meta = 0;
3576 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003577 int chunk_reserved = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003578
Chris Masonec44a352008-04-28 15:29:52 -04003579 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003580 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003581 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003582 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003583 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003584 size_to_free = min_t(u64, size_to_free, SZ_1M);
Anand Jainebbede42017-12-04 12:54:52 +08003585 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003586 btrfs_device_get_total_bytes(device) -
3587 btrfs_device_get_bytes_used(device) > size_to_free ||
Anand Jain401e29c2017-12-04 12:54:55 +08003588 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Chris Masonec44a352008-04-28 15:29:52 -04003589 continue;
3590
3591 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003592 if (ret == -ENOSPC)
3593 break;
Liu Bo5a488b92016-07-12 11:24:21 -07003594 if (ret) {
3595 /* btrfs_shrink_device never returns ret > 0 */
3596 WARN_ON(ret > 0);
3597 goto error;
3598 }
Chris Masonec44a352008-04-28 15:29:52 -04003599
Yan, Zhenga22285a2010-05-16 10:48:46 -04003600 trans = btrfs_start_transaction(dev_root, 0);
Liu Bo5a488b92016-07-12 11:24:21 -07003601 if (IS_ERR(trans)) {
3602 ret = PTR_ERR(trans);
3603 btrfs_info_in_rcu(fs_info,
3604 "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu",
3605 rcu_str_deref(device->name), ret,
3606 old_size, old_size - size_to_free);
3607 goto error;
3608 }
Chris Masonec44a352008-04-28 15:29:52 -04003609
3610 ret = btrfs_grow_device(trans, device, old_size);
Liu Bo5a488b92016-07-12 11:24:21 -07003611 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003612 btrfs_end_transaction(trans);
Liu Bo5a488b92016-07-12 11:24:21 -07003613 /* btrfs_grow_device never returns ret > 0 */
3614 WARN_ON(ret > 0);
3615 btrfs_info_in_rcu(fs_info,
3616 "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu",
3617 rcu_str_deref(device->name), ret,
3618 old_size, old_size - size_to_free);
3619 goto error;
3620 }
Chris Masonec44a352008-04-28 15:29:52 -04003621
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003622 btrfs_end_transaction(trans);
Chris Masonec44a352008-04-28 15:29:52 -04003623 }
3624
3625 /* step two, relocate all the chunks */
3626 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003627 if (!path) {
3628 ret = -ENOMEM;
3629 goto error;
3630 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003631
3632 /* zero out stat counters */
3633 spin_lock(&fs_info->balance_lock);
3634 memset(&bctl->stat, 0, sizeof(bctl->stat));
3635 spin_unlock(&fs_info->balance_lock);
3636again:
David Sterba7d824b62014-05-07 17:37:51 +02003637 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003638 /*
3639 * The single value limit and min/max limits use the same bytes
3640 * in the
3641 */
David Sterba7d824b62014-05-07 17:37:51 +02003642 bctl->data.limit = limit_data;
3643 bctl->meta.limit = limit_meta;
3644 bctl->sys.limit = limit_sys;
3645 }
Chris Masonec44a352008-04-28 15:29:52 -04003646 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3647 key.offset = (u64)-1;
3648 key.type = BTRFS_CHUNK_ITEM_KEY;
3649
Chris Masond3977122009-01-05 21:25:51 -05003650 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003651 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003652 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003653 ret = -ECANCELED;
3654 goto error;
3655 }
3656
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003657 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003658 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003659 if (ret < 0) {
3660 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003661 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003662 }
Chris Masonec44a352008-04-28 15:29:52 -04003663
3664 /*
3665 * this shouldn't happen, it means the last relocate
3666 * failed
3667 */
3668 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003669 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003670
3671 ret = btrfs_previous_item(chunk_root, path, 0,
3672 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003673 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003674 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003675 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003676 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003677 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003678
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003679 leaf = path->nodes[0];
3680 slot = path->slots[0];
3681 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3682
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003683 if (found_key.objectid != key.objectid) {
3684 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003685 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003686 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003687
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003688 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003689 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003690
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003691 if (!counting) {
3692 spin_lock(&fs_info->balance_lock);
3693 bctl->stat.considered++;
3694 spin_unlock(&fs_info->balance_lock);
3695 }
3696
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003697 ret = should_balance_chunk(fs_info, leaf, chunk,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003698 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003699
David Sterbab3b4aa72011-04-21 01:20:15 +02003700 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003701 if (!ret) {
3702 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003703 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003704 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003705
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003706 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003707 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003708 spin_lock(&fs_info->balance_lock);
3709 bctl->stat.expected++;
3710 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003711
3712 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3713 count_data++;
3714 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3715 count_sys++;
3716 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3717 count_meta++;
3718
3719 goto loop;
3720 }
3721
3722 /*
3723 * Apply limit_min filter, no need to check if the LIMITS
3724 * filter is used, limit_min is 0 by default
3725 */
3726 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3727 count_data < bctl->data.limit_min)
3728 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3729 count_meta < bctl->meta.limit_min)
3730 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3731 count_sys < bctl->sys.limit_min)) {
3732 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003733 goto loop;
3734 }
3735
Liu Boa6f93c72017-11-15 16:28:11 -07003736 if (!chunk_reserved) {
3737 /*
3738 * We may be relocating the only data chunk we have,
3739 * which could potentially end up with losing data's
3740 * raid profile, so lets allocate an empty one in
3741 * advance.
3742 */
3743 ret = btrfs_may_alloc_data_chunk(fs_info,
3744 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003745 if (ret < 0) {
3746 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3747 goto error;
Liu Boa6f93c72017-11-15 16:28:11 -07003748 } else if (ret == 1) {
3749 chunk_reserved = 1;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003750 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003751 }
3752
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003753 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003754 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003755 if (ret && ret != -ENOSPC)
3756 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003757 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003758 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003759 } else {
3760 spin_lock(&fs_info->balance_lock);
3761 bctl->stat.completed++;
3762 spin_unlock(&fs_info->balance_lock);
3763 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003764loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003765 if (found_key.offset == 0)
3766 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003767 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003768 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003769
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003770 if (counting) {
3771 btrfs_release_path(path);
3772 counting = false;
3773 goto again;
3774 }
Chris Masonec44a352008-04-28 15:29:52 -04003775error:
3776 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003777 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003778 btrfs_info(fs_info, "%d enospc errors during balance",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003779 enospc_errors);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003780 if (!ret)
3781 ret = -ENOSPC;
3782 }
3783
Chris Masonec44a352008-04-28 15:29:52 -04003784 return ret;
3785}
3786
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003787/**
3788 * alloc_profile_is_valid - see if a given profile is valid and reduced
3789 * @flags: profile to validate
3790 * @extended: if true @flags is treated as an extended profile
3791 */
3792static int alloc_profile_is_valid(u64 flags, int extended)
3793{
3794 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3795 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3796
3797 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3798
3799 /* 1) check that all other bits are zeroed */
3800 if (flags & ~mask)
3801 return 0;
3802
3803 /* 2) see if profile is reduced */
3804 if (flags == 0)
3805 return !extended; /* "0" is valid for usual profiles */
3806
3807 /* true if exactly one bit set */
3808 return (flags & (flags - 1)) == 0;
3809}
3810
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003811static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3812{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003813 /* cancel requested || normal exit path */
3814 return atomic_read(&fs_info->balance_cancel_req) ||
3815 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3816 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003817}
3818
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003819static void __cancel_balance(struct btrfs_fs_info *fs_info)
3820{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003821 int ret;
3822
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003823 unset_balance_control(fs_info);
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003824 ret = del_balance_item(fs_info);
Liu Bo0f788c52013-03-04 16:25:40 +00003825 if (ret)
Anand Jain34d97002016-03-16 16:43:06 +08003826 btrfs_handle_fs_error(fs_info, ret, NULL);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003827
David Sterba171938e2017-03-28 14:44:21 +02003828 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003829}
3830
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003831/* Non-zero return value signifies invalidity */
3832static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3833 u64 allowed)
3834{
3835 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3836 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3837 (bctl_arg->target & ~allowed)));
3838}
3839
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003840/*
3841 * Should be called with both balance and volume mutexes held
3842 */
3843int btrfs_balance(struct btrfs_balance_control *bctl,
3844 struct btrfs_ioctl_balance_args *bargs)
3845{
3846 struct btrfs_fs_info *fs_info = bctl->fs_info;
Adam Borowski14506122017-03-07 23:34:44 +01003847 u64 meta_target, data_target;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003848 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003849 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003850 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003851 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003852 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003853
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003854 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003855 atomic_read(&fs_info->balance_pause_req) ||
3856 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003857 ret = -EINVAL;
3858 goto out;
3859 }
3860
Ilya Dryomove4837f82012-03-27 17:09:17 +03003861 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3862 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3863 mixed = 1;
3864
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003865 /*
3866 * In case of mixed groups both data and meta should be picked,
3867 * and identical options should be given for both of them.
3868 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003869 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3870 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003871 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3872 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3873 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003874 btrfs_err(fs_info,
3875 "with mixed groups data and metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003876 ret = -EINVAL;
3877 goto out;
3878 }
3879 }
3880
Stefan Behrens8dabb742012-11-06 13:15:27 +01003881 num_devices = fs_info->fs_devices->num_devices;
Liu Bo73beece2015-07-17 16:49:19 +08003882 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrens8dabb742012-11-06 13:15:27 +01003883 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3884 BUG_ON(num_devices < 1);
3885 num_devices--;
3886 }
Liu Bo73beece2015-07-17 16:49:19 +08003887 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Austin S. Hemmelgarn88be1592016-03-23 14:22:59 -04003888 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP;
3889 if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003890 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003891 if (num_devices > 2)
3892 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3893 if (num_devices > 3)
3894 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3895 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003896 if (validate_convert_profile(&bctl->data, allowed)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003897 btrfs_err(fs_info,
3898 "unable to start balance with target data profile %llu",
3899 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003900 ret = -EINVAL;
3901 goto out;
3902 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003903 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003904 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003905 "unable to start balance with target metadata profile %llu",
3906 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003907 ret = -EINVAL;
3908 goto out;
3909 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003910 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003911 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003912 "unable to start balance with target system profile %llu",
3913 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003914 ret = -EINVAL;
3915 goto out;
3916 }
3917
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003918 /* allow to reduce meta or sys integrity only if force set */
3919 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003920 BTRFS_BLOCK_GROUP_RAID10 |
3921 BTRFS_BLOCK_GROUP_RAID5 |
3922 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003923 do {
3924 seq = read_seqbegin(&fs_info->profiles_lock);
3925
3926 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3927 (fs_info->avail_system_alloc_bits & allowed) &&
3928 !(bctl->sys.target & allowed)) ||
3929 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3930 (fs_info->avail_metadata_alloc_bits & allowed) &&
3931 !(bctl->meta.target & allowed))) {
3932 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003933 btrfs_info(fs_info,
3934 "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003935 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003936 btrfs_err(fs_info,
3937 "balance will reduce metadata integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003938 ret = -EINVAL;
3939 goto out;
3940 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003941 }
Miao Xiede98ced2013-01-29 10:13:12 +00003942 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003943
Adam Borowski14506122017-03-07 23:34:44 +01003944 /* if we're not converting, the target field is uninitialized */
3945 meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3946 bctl->meta.target : fs_info->avail_metadata_alloc_bits;
3947 data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3948 bctl->data.target : fs_info->avail_data_alloc_bits;
3949 if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) <
3950 btrfs_get_num_tolerated_disk_barrier_failures(data_target)) {
Sam Tygieree592d02016-01-06 08:46:12 +00003951 btrfs_warn(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003952 "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
Adam Borowski14506122017-03-07 23:34:44 +01003953 meta_target, data_target);
Sam Tygieree592d02016-01-06 08:46:12 +00003954 }
3955
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003956 ret = insert_balance_item(fs_info, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003957 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003958 goto out;
3959
Ilya Dryomov59641012012-01-16 22:04:48 +02003960 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3961 BUG_ON(ret == -EEXIST);
3962 set_balance_control(bctl);
3963 } else {
3964 BUG_ON(ret != -EEXIST);
3965 spin_lock(&fs_info->balance_lock);
3966 update_balance_args(bctl);
3967 spin_unlock(&fs_info->balance_lock);
3968 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003969
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003970 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003971 mutex_unlock(&fs_info->balance_mutex);
3972
3973 ret = __btrfs_balance(fs_info);
3974
3975 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003976 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003977
3978 if (bargs) {
3979 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003980 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003981 }
3982
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003983 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3984 balance_need_close(fs_info)) {
3985 __cancel_balance(fs_info);
3986 }
3987
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003988 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003989
3990 return ret;
3991out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003992 if (bctl->flags & BTRFS_BALANCE_RESUME)
3993 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003994 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003995 kfree(bctl);
David Sterba171938e2017-03-28 14:44:21 +02003996 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003997 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003998 return ret;
3999}
4000
4001static int balance_kthread(void *data)
4002{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004003 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02004004 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02004005
4006 mutex_lock(&fs_info->volume_mutex);
4007 mutex_lock(&fs_info->balance_mutex);
4008
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004009 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004010 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004011 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02004012 }
Ilya Dryomov59641012012-01-16 22:04:48 +02004013
4014 mutex_unlock(&fs_info->balance_mutex);
4015 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004016
Ilya Dryomov59641012012-01-16 22:04:48 +02004017 return ret;
4018}
4019
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004020int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
4021{
4022 struct task_struct *tsk;
4023
4024 spin_lock(&fs_info->balance_lock);
4025 if (!fs_info->balance_ctl) {
4026 spin_unlock(&fs_info->balance_lock);
4027 return 0;
4028 }
4029 spin_unlock(&fs_info->balance_lock);
4030
Jeff Mahoney3cdde222016-06-09 21:38:35 -04004031 if (btrfs_test_opt(fs_info, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004032 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004033 return 0;
4034 }
4035
4036 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05304037 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004038}
4039
Ilya Dryomov68310a52012-06-22 12:24:12 -06004040int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02004041{
Ilya Dryomov59641012012-01-16 22:04:48 +02004042 struct btrfs_balance_control *bctl;
4043 struct btrfs_balance_item *item;
4044 struct btrfs_disk_balance_args disk_bargs;
4045 struct btrfs_path *path;
4046 struct extent_buffer *leaf;
4047 struct btrfs_key key;
4048 int ret;
4049
4050 path = btrfs_alloc_path();
4051 if (!path)
4052 return -ENOMEM;
4053
Ilya Dryomov68310a52012-06-22 12:24:12 -06004054 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01004055 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06004056 key.offset = 0;
4057
4058 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
4059 if (ret < 0)
4060 goto out;
4061 if (ret > 0) { /* ret = -ENOENT; */
4062 ret = 0;
4063 goto out;
4064 }
4065
Ilya Dryomov59641012012-01-16 22:04:48 +02004066 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4067 if (!bctl) {
4068 ret = -ENOMEM;
4069 goto out;
4070 }
4071
Ilya Dryomov59641012012-01-16 22:04:48 +02004072 leaf = path->nodes[0];
4073 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
4074
Ilya Dryomov68310a52012-06-22 12:24:12 -06004075 bctl->fs_info = fs_info;
4076 bctl->flags = btrfs_balance_flags(leaf, item);
4077 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02004078
4079 btrfs_balance_data(leaf, item, &disk_bargs);
4080 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
4081 btrfs_balance_meta(leaf, item, &disk_bargs);
4082 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
4083 btrfs_balance_sys(leaf, item, &disk_bargs);
4084 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
4085
David Sterba171938e2017-03-28 14:44:21 +02004086 WARN_ON(test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004087
Ilya Dryomov68310a52012-06-22 12:24:12 -06004088 mutex_lock(&fs_info->volume_mutex);
4089 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004090
Ilya Dryomov68310a52012-06-22 12:24:12 -06004091 set_balance_control(bctl);
4092
4093 mutex_unlock(&fs_info->balance_mutex);
4094 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004095out:
4096 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004097 return ret;
4098}
4099
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004100int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
4101{
4102 int ret = 0;
4103
4104 mutex_lock(&fs_info->balance_mutex);
4105 if (!fs_info->balance_ctl) {
4106 mutex_unlock(&fs_info->balance_mutex);
4107 return -ENOTCONN;
4108 }
4109
4110 if (atomic_read(&fs_info->balance_running)) {
4111 atomic_inc(&fs_info->balance_pause_req);
4112 mutex_unlock(&fs_info->balance_mutex);
4113
4114 wait_event(fs_info->balance_wait_q,
4115 atomic_read(&fs_info->balance_running) == 0);
4116
4117 mutex_lock(&fs_info->balance_mutex);
4118 /* we are good with balance_ctl ripped off from under us */
4119 BUG_ON(atomic_read(&fs_info->balance_running));
4120 atomic_dec(&fs_info->balance_pause_req);
4121 } else {
4122 ret = -ENOTCONN;
4123 }
4124
4125 mutex_unlock(&fs_info->balance_mutex);
4126 return ret;
4127}
4128
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004129int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
4130{
David Howellsbc98a422017-07-17 08:45:34 +01004131 if (sb_rdonly(fs_info->sb))
Ilya Dryomove649e582013-10-10 20:40:21 +03004132 return -EROFS;
4133
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004134 mutex_lock(&fs_info->balance_mutex);
4135 if (!fs_info->balance_ctl) {
4136 mutex_unlock(&fs_info->balance_mutex);
4137 return -ENOTCONN;
4138 }
4139
4140 atomic_inc(&fs_info->balance_cancel_req);
4141 /*
4142 * if we are running just wait and return, balance item is
4143 * deleted in btrfs_balance in this case
4144 */
4145 if (atomic_read(&fs_info->balance_running)) {
4146 mutex_unlock(&fs_info->balance_mutex);
4147 wait_event(fs_info->balance_wait_q,
4148 atomic_read(&fs_info->balance_running) == 0);
4149 mutex_lock(&fs_info->balance_mutex);
4150 } else {
4151 /* __cancel_balance needs volume_mutex */
4152 mutex_unlock(&fs_info->balance_mutex);
4153 mutex_lock(&fs_info->volume_mutex);
4154 mutex_lock(&fs_info->balance_mutex);
4155
4156 if (fs_info->balance_ctl)
4157 __cancel_balance(fs_info);
4158
4159 mutex_unlock(&fs_info->volume_mutex);
4160 }
4161
4162 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
4163 atomic_dec(&fs_info->balance_cancel_req);
4164 mutex_unlock(&fs_info->balance_mutex);
4165 return 0;
4166}
4167
Stefan Behrens803b2f52013-08-15 17:11:21 +02004168static int btrfs_uuid_scan_kthread(void *data)
4169{
4170 struct btrfs_fs_info *fs_info = data;
4171 struct btrfs_root *root = fs_info->tree_root;
4172 struct btrfs_key key;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004173 struct btrfs_path *path = NULL;
4174 int ret = 0;
4175 struct extent_buffer *eb;
4176 int slot;
4177 struct btrfs_root_item root_item;
4178 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004179 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004180
4181 path = btrfs_alloc_path();
4182 if (!path) {
4183 ret = -ENOMEM;
4184 goto out;
4185 }
4186
4187 key.objectid = 0;
4188 key.type = BTRFS_ROOT_ITEM_KEY;
4189 key.offset = 0;
4190
Stefan Behrens803b2f52013-08-15 17:11:21 +02004191 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004192 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004193 if (ret) {
4194 if (ret > 0)
4195 ret = 0;
4196 break;
4197 }
4198
4199 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4200 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4201 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4202 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4203 goto skip;
4204
4205 eb = path->nodes[0];
4206 slot = path->slots[0];
4207 item_size = btrfs_item_size_nr(eb, slot);
4208 if (item_size < sizeof(root_item))
4209 goto skip;
4210
Stefan Behrens803b2f52013-08-15 17:11:21 +02004211 read_extent_buffer(eb, &root_item,
4212 btrfs_item_ptr_offset(eb, slot),
4213 (int)sizeof(root_item));
4214 if (btrfs_root_refs(&root_item) == 0)
4215 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004216
4217 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4218 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4219 if (trans)
4220 goto update_tree;
4221
4222 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004223 /*
4224 * 1 - subvol uuid item
4225 * 1 - received_subvol uuid item
4226 */
4227 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4228 if (IS_ERR(trans)) {
4229 ret = PTR_ERR(trans);
4230 break;
4231 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004232 continue;
4233 } else {
4234 goto skip;
4235 }
4236update_tree:
4237 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004238 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004239 root_item.uuid,
4240 BTRFS_UUID_KEY_SUBVOL,
4241 key.objectid);
4242 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004243 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004244 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004245 break;
4246 }
4247 }
4248
4249 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004250 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004251 root_item.received_uuid,
4252 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4253 key.objectid);
4254 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004255 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004256 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004257 break;
4258 }
4259 }
4260
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004261skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004262 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004263 ret = btrfs_end_transaction(trans);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004264 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004265 if (ret)
4266 break;
4267 }
4268
Stefan Behrens803b2f52013-08-15 17:11:21 +02004269 btrfs_release_path(path);
4270 if (key.offset < (u64)-1) {
4271 key.offset++;
4272 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4273 key.offset = 0;
4274 key.type = BTRFS_ROOT_ITEM_KEY;
4275 } else if (key.objectid < (u64)-1) {
4276 key.offset = 0;
4277 key.type = BTRFS_ROOT_ITEM_KEY;
4278 key.objectid++;
4279 } else {
4280 break;
4281 }
4282 cond_resched();
4283 }
4284
4285out:
4286 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004287 if (trans && !IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004288 btrfs_end_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004289 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004290 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004291 else
Josef Bacikafcdd122016-09-02 15:40:02 -04004292 set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004293 up(&fs_info->uuid_tree_rescan_sem);
4294 return 0;
4295}
4296
Stefan Behrens70f80172013-08-15 17:11:23 +02004297/*
4298 * Callback for btrfs_uuid_tree_iterate().
4299 * returns:
4300 * 0 check succeeded, the entry is not outdated.
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08004301 * < 0 if an error occurred.
Stefan Behrens70f80172013-08-15 17:11:23 +02004302 * > 0 if the check failed, which means the caller shall remove the entry.
4303 */
4304static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4305 u8 *uuid, u8 type, u64 subid)
4306{
4307 struct btrfs_key key;
4308 int ret = 0;
4309 struct btrfs_root *subvol_root;
4310
4311 if (type != BTRFS_UUID_KEY_SUBVOL &&
4312 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4313 goto out;
4314
4315 key.objectid = subid;
4316 key.type = BTRFS_ROOT_ITEM_KEY;
4317 key.offset = (u64)-1;
4318 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4319 if (IS_ERR(subvol_root)) {
4320 ret = PTR_ERR(subvol_root);
4321 if (ret == -ENOENT)
4322 ret = 1;
4323 goto out;
4324 }
4325
4326 switch (type) {
4327 case BTRFS_UUID_KEY_SUBVOL:
4328 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4329 ret = 1;
4330 break;
4331 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4332 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4333 BTRFS_UUID_SIZE))
4334 ret = 1;
4335 break;
4336 }
4337
4338out:
4339 return ret;
4340}
4341
4342static int btrfs_uuid_rescan_kthread(void *data)
4343{
4344 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4345 int ret;
4346
4347 /*
4348 * 1st step is to iterate through the existing UUID tree and
4349 * to delete all entries that contain outdated data.
4350 * 2nd step is to add all missing entries to the UUID tree.
4351 */
4352 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4353 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004354 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004355 up(&fs_info->uuid_tree_rescan_sem);
4356 return ret;
4357 }
4358 return btrfs_uuid_scan_kthread(data);
4359}
4360
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004361int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4362{
4363 struct btrfs_trans_handle *trans;
4364 struct btrfs_root *tree_root = fs_info->tree_root;
4365 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004366 struct task_struct *task;
4367 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004368
4369 /*
4370 * 1 - root node
4371 * 1 - root item
4372 */
4373 trans = btrfs_start_transaction(tree_root, 2);
4374 if (IS_ERR(trans))
4375 return PTR_ERR(trans);
4376
4377 uuid_root = btrfs_create_tree(trans, fs_info,
4378 BTRFS_UUID_TREE_OBJECTID);
4379 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004380 ret = PTR_ERR(uuid_root);
Jeff Mahoney66642832016-06-10 18:19:25 -04004381 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004382 btrfs_end_transaction(trans);
David Sterba6d13f542015-04-24 19:12:01 +02004383 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004384 }
4385
4386 fs_info->uuid_root = uuid_root;
4387
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004388 ret = btrfs_commit_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004389 if (ret)
4390 return ret;
4391
4392 down(&fs_info->uuid_tree_rescan_sem);
4393 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4394 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004395 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004396 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004397 up(&fs_info->uuid_tree_rescan_sem);
4398 return PTR_ERR(task);
4399 }
4400
4401 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004402}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004403
Stefan Behrens70f80172013-08-15 17:11:23 +02004404int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4405{
4406 struct task_struct *task;
4407
4408 down(&fs_info->uuid_tree_rescan_sem);
4409 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4410 if (IS_ERR(task)) {
4411 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004412 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004413 up(&fs_info->uuid_tree_rescan_sem);
4414 return PTR_ERR(task);
4415 }
4416
4417 return 0;
4418}
4419
Chris Mason8f18cf12008-04-25 16:53:30 -04004420/*
4421 * shrinking a device means finding all of the device extents past
4422 * the new size, and then following the back refs to the chunks.
4423 * The chunk relocation code actually frees the device extent
4424 */
4425int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4426{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004427 struct btrfs_fs_info *fs_info = device->fs_info;
4428 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04004429 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04004430 struct btrfs_dev_extent *dev_extent = NULL;
4431 struct btrfs_path *path;
4432 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004433 u64 chunk_offset;
4434 int ret;
4435 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004436 int failed = 0;
4437 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004438 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004439 struct extent_buffer *l;
4440 struct btrfs_key key;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004441 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004442 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004443 u64 old_size = btrfs_device_get_total_bytes(device);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004444 u64 diff;
4445
4446 new_size = round_down(new_size, fs_info->sectorsize);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03004447 diff = round_down(old_size - new_size, fs_info->sectorsize);
Chris Mason8f18cf12008-04-25 16:53:30 -04004448
Anand Jain401e29c2017-12-04 12:54:55 +08004449 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Stefan Behrens63a212a2012-11-05 18:29:28 +01004450 return -EINVAL;
4451
Chris Mason8f18cf12008-04-25 16:53:30 -04004452 path = btrfs_alloc_path();
4453 if (!path)
4454 return -ENOMEM;
4455
David Sterbae4058b52015-11-27 16:31:35 +01004456 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04004457
David Sterba34441362016-10-04 19:34:27 +02004458 mutex_lock(&fs_info->chunk_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04004459
Miao Xie7cc8e582014-09-03 21:35:38 +08004460 btrfs_device_set_total_bytes(device, new_size);
Anand Jainebbede42017-12-04 12:54:52 +08004461 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05004462 device->fs_devices->total_rw_bytes -= diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004463 atomic64_sub(diff, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04004464 }
David Sterba34441362016-10-04 19:34:27 +02004465 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004466
Josef Bacikba1bf482009-09-11 16:11:19 -04004467again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004468 key.objectid = device->devid;
4469 key.offset = (u64)-1;
4470 key.type = BTRFS_DEV_EXTENT_KEY;
4471
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004472 do {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004473 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004474 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004475 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004476 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004477 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004478 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004479
4480 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004481 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004482 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004483 if (ret < 0)
4484 goto done;
4485 if (ret) {
4486 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004487 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004488 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004489 }
4490
4491 l = path->nodes[0];
4492 slot = path->slots[0];
4493 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4494
Josef Bacikba1bf482009-09-11 16:11:19 -04004495 if (key.objectid != device->devid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004496 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004497 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004498 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004499 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004500
4501 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4502 length = btrfs_dev_extent_length(l, dev_extent);
4503
Josef Bacikba1bf482009-09-11 16:11:19 -04004504 if (key.offset + length <= new_size) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004505 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004506 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004507 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004508 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004509
Chris Mason8f18cf12008-04-25 16:53:30 -04004510 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004511 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004512
Liu Boa6f93c72017-11-15 16:28:11 -07004513 /*
4514 * We may be relocating the only data chunk we have,
4515 * which could potentially end up with losing data's
4516 * raid profile, so lets allocate an empty one in
4517 * advance.
4518 */
4519 ret = btrfs_may_alloc_data_chunk(fs_info, chunk_offset);
4520 if (ret < 0) {
4521 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
4522 goto done;
4523 }
4524
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004525 ret = btrfs_relocate_chunk(fs_info, chunk_offset);
4526 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004527 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004528 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004529 if (ret == -ENOSPC)
4530 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004531 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004532
4533 if (failed && !retried) {
4534 failed = 0;
4535 retried = true;
4536 goto again;
4537 } else if (failed && retried) {
4538 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004539 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004540 }
4541
Chris Balld6397ba2009-04-27 07:29:03 -04004542 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004543 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004544 if (IS_ERR(trans)) {
4545 ret = PTR_ERR(trans);
4546 goto done;
4547 }
4548
David Sterba34441362016-10-04 19:34:27 +02004549 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004550
4551 /*
4552 * We checked in the above loop all device extents that were already in
4553 * the device tree. However before we have updated the device's
4554 * total_bytes to the new size, we might have had chunk allocations that
4555 * have not complete yet (new block groups attached to transaction
4556 * handles), and therefore their device extents were not yet in the
4557 * device tree and we missed them in the loop above. So if we have any
4558 * pending chunk using a device extent that overlaps the device range
4559 * that we can not use anymore, commit the current transaction and
4560 * repeat the search on the device tree - this way we guarantee we will
4561 * not have chunks using device extents that end beyond 'new_size'.
4562 */
4563 if (!checked_pending_chunks) {
4564 u64 start = new_size;
4565 u64 len = old_size - new_size;
4566
Jeff Mahoney499f3772015-06-15 09:41:17 -04004567 if (contains_pending_extent(trans->transaction, device,
4568 &start, len)) {
David Sterba34441362016-10-04 19:34:27 +02004569 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004570 checked_pending_chunks = true;
4571 failed = 0;
4572 retried = false;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004573 ret = btrfs_commit_transaction(trans);
Filipe Manana53e489b2015-06-02 14:43:21 +01004574 if (ret)
4575 goto done;
4576 goto again;
4577 }
4578 }
4579
Miao Xie7cc8e582014-09-03 21:35:38 +08004580 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004581 if (list_empty(&device->resized_list))
4582 list_add_tail(&device->resized_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004583 &fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004584
Chris Balld6397ba2009-04-27 07:29:03 -04004585 WARN_ON(diff > old_total);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004586 btrfs_set_super_total_bytes(super_copy,
4587 round_down(old_total - diff, fs_info->sectorsize));
David Sterba34441362016-10-04 19:34:27 +02004588 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08004589
4590 /* Now btrfs_update_device() will change the on-disk size. */
4591 ret = btrfs_update_device(trans, device);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004592 btrfs_end_transaction(trans);
Chris Mason8f18cf12008-04-25 16:53:30 -04004593done:
4594 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004595 if (ret) {
David Sterba34441362016-10-04 19:34:27 +02004596 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004597 btrfs_device_set_total_bytes(device, old_size);
Anand Jainebbede42017-12-04 12:54:52 +08004598 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Filipe Manana53e489b2015-06-02 14:43:21 +01004599 device->fs_devices->total_rw_bytes += diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004600 atomic64_add(diff, &fs_info->free_chunk_space);
David Sterba34441362016-10-04 19:34:27 +02004601 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004602 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004603 return ret;
4604}
4605
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004606static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04004607 struct btrfs_key *key,
4608 struct btrfs_chunk *chunk, int item_size)
4609{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004610 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004611 struct btrfs_disk_key disk_key;
4612 u32 array_size;
4613 u8 *ptr;
4614
David Sterba34441362016-10-04 19:34:27 +02004615 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004616 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004617 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004618 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
David Sterba34441362016-10-04 19:34:27 +02004619 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004620 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004621 }
Chris Mason0b86a832008-03-24 15:01:56 -04004622
4623 ptr = super_copy->sys_chunk_array + array_size;
4624 btrfs_cpu_key_to_disk(&disk_key, key);
4625 memcpy(ptr, &disk_key, sizeof(disk_key));
4626 ptr += sizeof(disk_key);
4627 memcpy(ptr, chunk, item_size);
4628 item_size += sizeof(disk_key);
4629 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
David Sterba34441362016-10-04 19:34:27 +02004630 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004631
Chris Mason0b86a832008-03-24 15:01:56 -04004632 return 0;
4633}
4634
Miao Xieb2117a32011-01-05 10:07:28 +00004635/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004636 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004637 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004638static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004639{
Arne Jansen73c5de02011-04-12 12:07:57 +02004640 const struct btrfs_device_info *di_a = a;
4641 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004642
Arne Jansen73c5de02011-04-12 12:07:57 +02004643 if (di_a->max_avail > di_b->max_avail)
4644 return -1;
4645 if (di_a->max_avail < di_b->max_avail)
4646 return 1;
4647 if (di_a->total_avail > di_b->total_avail)
4648 return -1;
4649 if (di_a->total_avail < di_b->total_avail)
4650 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004651 return 0;
4652}
4653
David Woodhouse53b381b2013-01-29 18:40:14 -05004654static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4655{
Zhao Leiffe2d202015-01-20 15:11:44 +08004656 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004657 return;
4658
Miao Xieceda0862013-04-11 10:30:16 +00004659 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004660}
4661
Qu Wenruo062d4d12018-01-30 18:20:46 +08004662#define BTRFS_MAX_DEVS(info) ((BTRFS_MAX_ITEM_SIZE(info) \
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004663 - sizeof(struct btrfs_chunk)) \
4664 / sizeof(struct btrfs_stripe) + 1)
4665
4666#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4667 - 2 * sizeof(struct btrfs_disk_key) \
4668 - 2 * sizeof(struct btrfs_chunk)) \
4669 / sizeof(struct btrfs_stripe) + 1)
4670
Miao Xieb2117a32011-01-05 10:07:28 +00004671static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
David Sterba72b468c2017-02-10 19:46:27 +01004672 u64 start, u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004673{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004674 struct btrfs_fs_info *info = trans->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004675 struct btrfs_fs_devices *fs_devices = info->fs_devices;
Nikolay Borisovebcc9302017-06-27 10:02:24 +03004676 struct btrfs_device *device;
Arne Jansen73c5de02011-04-12 12:07:57 +02004677 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004678 struct extent_map_tree *em_tree;
4679 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004680 struct btrfs_device_info *devices_info = NULL;
4681 u64 total_avail;
4682 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004683 int data_stripes; /* number of stripes that count for
4684 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004685 int sub_stripes; /* sub_stripes info for map */
4686 int dev_stripes; /* stripes per dev */
4687 int devs_max; /* max devs to use */
4688 int devs_min; /* min devs needed */
4689 int devs_increment; /* ndevs has to be a multiple of this */
4690 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004691 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004692 u64 max_stripe_size;
4693 u64 max_chunk_size;
4694 u64 stripe_size;
4695 u64 num_bytes;
4696 int ndevs;
4697 int i;
4698 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004699 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004700
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004701 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004702
Miao Xieb2117a32011-01-05 10:07:28 +00004703 if (list_empty(&fs_devices->alloc_list))
4704 return -ENOSPC;
4705
Liu Bo31e50222012-11-21 14:18:10 +00004706 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004707
Liu Bo31e50222012-11-21 14:18:10 +00004708 sub_stripes = btrfs_raid_array[index].sub_stripes;
4709 dev_stripes = btrfs_raid_array[index].dev_stripes;
4710 devs_max = btrfs_raid_array[index].devs_max;
4711 devs_min = btrfs_raid_array[index].devs_min;
4712 devs_increment = btrfs_raid_array[index].devs_increment;
4713 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004714
4715 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004716 max_stripe_size = SZ_1G;
Arne Jansen73c5de02011-04-12 12:07:57 +02004717 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004718 if (!devs_max)
Qu Wenruo062d4d12018-01-30 18:20:46 +08004719 devs_max = BTRFS_MAX_DEVS(info);
Arne Jansen73c5de02011-04-12 12:07:57 +02004720 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004721 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004722 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4723 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004724 else
Byongho Leeee221842015-12-15 01:42:10 +09004725 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004726 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004727 if (!devs_max)
Qu Wenruo062d4d12018-01-30 18:20:46 +08004728 devs_max = BTRFS_MAX_DEVS(info);
Arne Jansen73c5de02011-04-12 12:07:57 +02004729 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004730 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004731 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004732 if (!devs_max)
4733 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004734 } else {
David Sterba351fd352014-05-15 16:48:20 +02004735 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004736 type);
4737 BUG_ON(1);
4738 }
4739
4740 /* we don't want a chunk larger than 10% of writeable space */
4741 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4742 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004743
David Sterba31e818f2015-02-20 18:00:26 +01004744 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004745 GFP_NOFS);
4746 if (!devices_info)
4747 return -ENOMEM;
4748
Arne Jansen73c5de02011-04-12 12:07:57 +02004749 /*
4750 * in the first pass through the devices list, we gather information
4751 * about the available holes on each device.
4752 */
4753 ndevs = 0;
Nikolay Borisovebcc9302017-06-27 10:02:24 +03004754 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Arne Jansen73c5de02011-04-12 12:07:57 +02004755 u64 max_avail;
4756 u64 dev_offset;
4757
Anand Jainebbede42017-12-04 12:54:52 +08004758 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004759 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004760 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004761 continue;
4762 }
4763
Anand Jaine12c9622017-12-04 12:54:53 +08004764 if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
4765 &device->dev_state) ||
Anand Jain401e29c2017-12-04 12:54:55 +08004766 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Arne Jansen73c5de02011-04-12 12:07:57 +02004767 continue;
4768
4769 if (device->total_bytes > device->bytes_used)
4770 total_avail = device->total_bytes - device->bytes_used;
4771 else
4772 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004773
4774 /* If there is no space on this device, skip it. */
4775 if (total_avail == 0)
4776 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004777
Josef Bacik6df9a952013-06-27 13:22:46 -04004778 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004779 max_stripe_size * dev_stripes,
4780 &dev_offset, &max_avail);
4781 if (ret && ret != -ENOSPC)
4782 goto error;
4783
4784 if (ret == 0)
4785 max_avail = max_stripe_size * dev_stripes;
4786
4787 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4788 continue;
4789
Eric Sandeen063d0062013-01-31 00:55:01 +00004790 if (ndevs == fs_devices->rw_devices) {
4791 WARN(1, "%s: found more than %llu devices\n",
4792 __func__, fs_devices->rw_devices);
4793 break;
4794 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004795 devices_info[ndevs].dev_offset = dev_offset;
4796 devices_info[ndevs].max_avail = max_avail;
4797 devices_info[ndevs].total_avail = total_avail;
4798 devices_info[ndevs].dev = device;
4799 ++ndevs;
4800 }
4801
4802 /*
4803 * now sort the devices by hole size / available space
4804 */
4805 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4806 btrfs_cmp_device_info, NULL);
4807
4808 /* round down to number of usable stripes */
Nikolay Borisove5600fd2017-06-27 10:02:25 +03004809 ndevs = round_down(ndevs, devs_increment);
Arne Jansen73c5de02011-04-12 12:07:57 +02004810
4811 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4812 ret = -ENOSPC;
4813 goto error;
4814 }
4815
Nikolay Borisovf148ef42017-06-27 10:02:26 +03004816 ndevs = min(ndevs, devs_max);
4817
Arne Jansen73c5de02011-04-12 12:07:57 +02004818 /*
Hans van Kranenburg92e222d2018-02-05 17:45:11 +01004819 * The primary goal is to maximize the number of stripes, so use as
4820 * many devices as possible, even if the stripes are not maximum sized.
4821 *
4822 * The DUP profile stores more than one stripe per device, the
4823 * max_avail is the total size so we have to adjust.
Arne Jansen73c5de02011-04-12 12:07:57 +02004824 */
Hans van Kranenburg92e222d2018-02-05 17:45:11 +01004825 stripe_size = div_u64(devices_info[ndevs - 1].max_avail, dev_stripes);
Arne Jansen73c5de02011-04-12 12:07:57 +02004826 num_stripes = ndevs * dev_stripes;
4827
David Woodhouse53b381b2013-01-29 18:40:14 -05004828 /*
4829 * this will have to be fixed for RAID1 and RAID10 over
4830 * more drives
4831 */
4832 data_stripes = num_stripes / ncopies;
4833
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004834 if (type & BTRFS_BLOCK_GROUP_RAID5)
David Woodhouse53b381b2013-01-29 18:40:14 -05004835 data_stripes = num_stripes - 1;
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004836
4837 if (type & BTRFS_BLOCK_GROUP_RAID6)
David Woodhouse53b381b2013-01-29 18:40:14 -05004838 data_stripes = num_stripes - 2;
Chris Mason86db2572013-02-20 16:23:40 -05004839
4840 /*
4841 * Use the number of data stripes to figure out how big this chunk
4842 * is really going to be in terms of logical address space,
4843 * and compare that answer with the max chunk size
4844 */
4845 if (stripe_size * data_stripes > max_chunk_size) {
4846 u64 mask = (1ULL << 24) - 1;
David Sterbab8b93ad2015-01-16 17:26:13 +01004847
4848 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004849
4850 /* bump the answer up to a 16MB boundary */
4851 stripe_size = (stripe_size + mask) & ~mask;
4852
4853 /* but don't go higher than the limits we found
4854 * while searching for free extents
4855 */
4856 if (stripe_size > devices_info[ndevs-1].max_avail)
4857 stripe_size = devices_info[ndevs-1].max_avail;
4858 }
4859
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004860 /* align to BTRFS_STRIPE_LEN */
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004861 stripe_size = round_down(stripe_size, BTRFS_STRIPE_LEN);
Arne Jansen73c5de02011-04-12 12:07:57 +02004862
Miao Xieb2117a32011-01-05 10:07:28 +00004863 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4864 if (!map) {
4865 ret = -ENOMEM;
4866 goto error;
4867 }
4868 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004869
Arne Jansen73c5de02011-04-12 12:07:57 +02004870 for (i = 0; i < ndevs; ++i) {
4871 for (j = 0; j < dev_stripes; ++j) {
4872 int s = i * dev_stripes + j;
4873 map->stripes[s].dev = devices_info[i].dev;
4874 map->stripes[s].physical = devices_info[i].dev_offset +
4875 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004876 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004877 }
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004878 map->stripe_len = BTRFS_STRIPE_LEN;
4879 map->io_align = BTRFS_STRIPE_LEN;
4880 map->io_width = BTRFS_STRIPE_LEN;
Chris Mason593060d2008-03-25 16:50:33 -04004881 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004882 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004883
David Woodhouse53b381b2013-01-29 18:40:14 -05004884 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004885
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004886 trace_btrfs_chunk_alloc(info, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004887
David Sterba172ddd62011-04-21 00:48:27 +02004888 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004889 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004890 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004891 ret = -ENOMEM;
4892 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004893 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004894 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004895 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004896 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004897 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004898 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004899 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004900 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004901
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004902 em_tree = &info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004903 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004904 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004905 if (ret) {
Nikolay Borisov1efb72a2017-08-21 12:43:49 +03004906 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004907 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004908 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004909 }
Yan Zheng2b820322008-11-17 21:11:30 -05004910
Nikolay Borisov1efb72a2017-08-21 12:43:49 +03004911 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4912 refcount_inc(&em->refs);
4913 write_unlock(&em_tree->lock);
4914
Nikolay Borisov01744842017-07-27 14:22:11 +03004915 ret = btrfs_make_block_group(trans, info, 0, type, start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004916 if (ret)
4917 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004918
Miao Xie7cc8e582014-09-03 21:35:38 +08004919 for (i = 0; i < map->num_stripes; i++) {
4920 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4921 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4922 }
Miao Xie43530c42014-09-03 21:35:36 +08004923
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004924 atomic64_sub(stripe_size * map->num_stripes, &info->free_chunk_space);
Miao Xie1c116182014-09-03 21:35:37 +08004925
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004926 free_extent_map(em);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004927 check_raid56_incompat_flag(info, type);
David Woodhouse53b381b2013-01-29 18:40:14 -05004928
Miao Xieb2117a32011-01-05 10:07:28 +00004929 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004930 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004931
Josef Bacik6df9a952013-06-27 13:22:46 -04004932error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004933 write_lock(&em_tree->lock);
4934 remove_extent_mapping(em_tree, em);
4935 write_unlock(&em_tree->lock);
4936
4937 /* One for our allocation */
4938 free_extent_map(em);
4939 /* One for the tree reference */
4940 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004941 /* One for the pending_chunks list reference */
4942 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004943error:
Miao Xieb2117a32011-01-05 10:07:28 +00004944 kfree(devices_info);
4945 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004946}
4947
Josef Bacik6df9a952013-06-27 13:22:46 -04004948int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004949 struct btrfs_fs_info *fs_info,
Josef Bacik6df9a952013-06-27 13:22:46 -04004950 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004951{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004952 struct btrfs_root *extent_root = fs_info->extent_root;
4953 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05004954 struct btrfs_key key;
Yan Zheng2b820322008-11-17 21:11:30 -05004955 struct btrfs_device *device;
4956 struct btrfs_chunk *chunk;
4957 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004958 struct extent_map *em;
4959 struct map_lookup *map;
4960 size_t item_size;
4961 u64 dev_offset;
4962 u64 stripe_size;
4963 int i = 0;
Chris Mason140e6392015-12-23 13:30:51 -08004964 int ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004965
Liu Bo592d92e2017-03-14 13:33:55 -07004966 em = get_chunk_map(fs_info, chunk_offset, chunk_size);
4967 if (IS_ERR(em))
4968 return PTR_ERR(em);
Josef Bacik6df9a952013-06-27 13:22:46 -04004969
Jeff Mahoney95617d62015-06-03 10:55:48 -04004970 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004971 item_size = btrfs_chunk_item_size(map->num_stripes);
4972 stripe_size = em->orig_block_len;
4973
4974 chunk = kzalloc(item_size, GFP_NOFS);
4975 if (!chunk) {
4976 ret = -ENOMEM;
4977 goto out;
4978 }
4979
Filipe Manana50460e32015-11-20 10:42:47 +00004980 /*
4981 * Take the device list mutex to prevent races with the final phase of
4982 * a device replace operation that replaces the device object associated
4983 * with the map's stripes, because the device object's id can change
4984 * at any time during that final phase of the device replace operation
4985 * (dev-replace.c:btrfs_dev_replace_finishing()).
4986 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004987 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04004988 for (i = 0; i < map->num_stripes; i++) {
4989 device = map->stripes[i].dev;
4990 dev_offset = map->stripes[i].physical;
4991
Yan Zheng2b820322008-11-17 21:11:30 -05004992 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004993 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004994 break;
Nikolay Borisovb5d90712017-08-18 17:58:23 +03004995 ret = btrfs_alloc_dev_extent(trans, device, chunk_offset,
4996 dev_offset, stripe_size);
Josef Bacik6df9a952013-06-27 13:22:46 -04004997 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004998 break;
4999 }
5000 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005001 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe Manana50460e32015-11-20 10:42:47 +00005002 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05005003 }
5004
Yan Zheng2b820322008-11-17 21:11:30 -05005005 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04005006 for (i = 0; i < map->num_stripes; i++) {
5007 device = map->stripes[i].dev;
5008 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05005009
5010 btrfs_set_stack_stripe_devid(stripe, device->devid);
5011 btrfs_set_stack_stripe_offset(stripe, dev_offset);
5012 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
5013 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05005014 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005015 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05005016
5017 btrfs_set_stack_chunk_length(chunk, chunk_size);
5018 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
5019 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
5020 btrfs_set_stack_chunk_type(chunk, map->type);
5021 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
5022 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
5023 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005024 btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize);
Yan Zheng2b820322008-11-17 21:11:30 -05005025 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
5026
5027 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
5028 key.type = BTRFS_CHUNK_ITEM_KEY;
5029 key.offset = chunk_offset;
5030
5031 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07005032 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
5033 /*
5034 * TODO: Cleanup of inserted chunk root in case of
5035 * failure.
5036 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005037 ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05005038 }
liubo1abe9b82011-03-24 11:18:59 +00005039
Josef Bacik6df9a952013-06-27 13:22:46 -04005040out:
Yan Zheng2b820322008-11-17 21:11:30 -05005041 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04005042 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07005043 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005044}
5045
5046/*
5047 * Chunk allocation falls into two parts. The first part does works
5048 * that make the new allocated chunk useable, but not do any operation
5049 * that modifies the chunk tree. The second part does the works that
5050 * require modifying the chunk tree. This division is important for the
5051 * bootstrap process of adding storage to a seed btrfs.
5052 */
5053int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005054 struct btrfs_fs_info *fs_info, u64 type)
Yan Zheng2b820322008-11-17 21:11:30 -05005055{
5056 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005057
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005058 ASSERT(mutex_is_locked(&fs_info->chunk_mutex));
5059 chunk_offset = find_next_chunk(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005060 return __btrfs_alloc_chunk(trans, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05005061}
5062
Chris Masond3977122009-01-05 21:25:51 -05005063static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +01005064 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05005065{
5066 u64 chunk_offset;
5067 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005068 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05005069 int ret;
5070
Josef Bacik6df9a952013-06-27 13:22:46 -04005071 chunk_offset = find_next_chunk(fs_info);
Jeff Mahoney1b868262017-05-17 11:38:35 -04005072 alloc_profile = btrfs_metadata_alloc_profile(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005073 ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005074 if (ret)
5075 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005076
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005077 sys_chunk_offset = find_next_chunk(fs_info);
Jeff Mahoney1b868262017-05-17 11:38:35 -04005078 alloc_profile = btrfs_system_alloc_profile(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005079 ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005080 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005081}
5082
Miao Xied20983b2014-07-03 18:22:13 +08005083static inline int btrfs_chunk_max_errors(struct map_lookup *map)
5084{
5085 int max_errors;
5086
5087 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5088 BTRFS_BLOCK_GROUP_RAID10 |
5089 BTRFS_BLOCK_GROUP_RAID5 |
5090 BTRFS_BLOCK_GROUP_DUP)) {
5091 max_errors = 1;
5092 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
5093 max_errors = 2;
5094 } else {
5095 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005096 }
5097
Miao Xied20983b2014-07-03 18:22:13 +08005098 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05005099}
5100
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005101int btrfs_chunk_readonly(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Yan Zheng2b820322008-11-17 21:11:30 -05005102{
5103 struct extent_map *em;
5104 struct map_lookup *map;
Yan Zheng2b820322008-11-17 21:11:30 -05005105 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08005106 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005107 int i;
5108
Liu Bo592d92e2017-03-14 13:33:55 -07005109 em = get_chunk_map(fs_info, chunk_offset, 1);
5110 if (IS_ERR(em))
Yan Zheng2b820322008-11-17 21:11:30 -05005111 return 1;
5112
Jeff Mahoney95617d62015-06-03 10:55:48 -04005113 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05005114 for (i = 0; i < map->num_stripes; i++) {
Anand Jaine6e674b2017-12-04 12:54:54 +08005115 if (test_bit(BTRFS_DEV_STATE_MISSING,
5116 &map->stripes[i].dev->dev_state)) {
Miao Xied20983b2014-07-03 18:22:13 +08005117 miss_ndevs++;
5118 continue;
5119 }
Anand Jainebbede42017-12-04 12:54:52 +08005120 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE,
5121 &map->stripes[i].dev->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05005122 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08005123 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05005124 }
5125 }
Miao Xied20983b2014-07-03 18:22:13 +08005126
5127 /*
5128 * If the number of missing devices is larger than max errors,
5129 * we can not write the data into that chunk successfully, so
5130 * set it readonly.
5131 */
5132 if (miss_ndevs > btrfs_chunk_max_errors(map))
5133 readonly = 1;
5134end:
Yan Zheng2b820322008-11-17 21:11:30 -05005135 free_extent_map(em);
5136 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04005137}
5138
5139void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
5140{
David Sterbaa8067e02011-04-21 00:34:43 +02005141 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04005142}
5143
5144void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
5145{
5146 struct extent_map *em;
5147
Chris Masond3977122009-01-05 21:25:51 -05005148 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04005149 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005150 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
5151 if (em)
5152 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04005153 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005154 if (!em)
5155 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005156 /* once for us */
5157 free_extent_map(em);
5158 /* once for the tree */
5159 free_extent_map(em);
5160 }
5161}
5162
Stefan Behrens5d964052012-11-05 14:59:07 +01005163int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005164{
5165 struct extent_map *em;
5166 struct map_lookup *map;
Chris Masonf1885912008-04-09 16:28:12 -04005167 int ret;
5168
Liu Bo592d92e2017-03-14 13:33:55 -07005169 em = get_chunk_map(fs_info, logical, len);
5170 if (IS_ERR(em))
5171 /*
5172 * We could return errors for these cases, but that could get
5173 * ugly and we'd probably do the same thing which is just not do
5174 * anything else and exit, so return 1 so the callers don't try
5175 * to use other copies.
5176 */
Josef Bacikfb7669b2013-04-23 10:53:18 -04005177 return 1;
Josef Bacikfb7669b2013-04-23 10:53:18 -04005178
Jeff Mahoney95617d62015-06-03 10:55:48 -04005179 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005180 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5181 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005182 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5183 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005184 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5185 ret = 2;
5186 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
Liu Bo8810f752018-01-02 13:36:41 -07005187 /*
5188 * There could be two corrupted data stripes, we need
5189 * to loop retry in order to rebuild the correct data.
5190 *
5191 * Fail a stripe at a time on every retry except the
5192 * stripe under reconstruction.
5193 */
5194 ret = map->num_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04005195 else
5196 ret = 1;
5197 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005198
Liu Bo73beece2015-07-17 16:49:19 +08005199 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Liu Bo6fad8232017-03-14 13:33:59 -07005200 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) &&
5201 fs_info->dev_replace.tgtdev)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005202 ret++;
Liu Bo73beece2015-07-17 16:49:19 +08005203 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005204
Chris Masonf1885912008-04-09 16:28:12 -04005205 return ret;
5206}
5207
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005208unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005209 u64 logical)
5210{
5211 struct extent_map *em;
5212 struct map_lookup *map;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005213 unsigned long len = fs_info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05005214
Liu Bo592d92e2017-03-14 13:33:55 -07005215 em = get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005216
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005217 if (!WARN_ON(IS_ERR(em))) {
5218 map = em->map_lookup;
5219 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5220 len = map->stripe_len * nr_data_stripes(map);
5221 free_extent_map(em);
5222 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005223 return len;
5224}
5225
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03005226int btrfs_is_parity_mirror(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
David Woodhouse53b381b2013-01-29 18:40:14 -05005227{
5228 struct extent_map *em;
5229 struct map_lookup *map;
David Woodhouse53b381b2013-01-29 18:40:14 -05005230 int ret = 0;
5231
Liu Bo592d92e2017-03-14 13:33:55 -07005232 em = get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005233
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005234 if(!WARN_ON(IS_ERR(em))) {
5235 map = em->map_lookup;
5236 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5237 ret = 1;
5238 free_extent_map(em);
5239 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005240 return ret;
5241}
5242
Stefan Behrens30d98612012-11-06 14:52:18 +01005243static int find_live_mirror(struct btrfs_fs_info *fs_info,
5244 struct map_lookup *map, int first, int num,
5245 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005246{
5247 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01005248 int tolerance;
5249 struct btrfs_device *srcdev;
5250
5251 if (dev_replace_is_ongoing &&
5252 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5253 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5254 srcdev = fs_info->dev_replace.srcdev;
5255 else
5256 srcdev = NULL;
5257
5258 /*
5259 * try to avoid the drive that is the source drive for a
5260 * dev-replace procedure, only choose it if no other non-missing
5261 * mirror is available
5262 */
5263 for (tolerance = 0; tolerance < 2; tolerance++) {
5264 if (map->stripes[optimal].dev->bdev &&
5265 (tolerance || map->stripes[optimal].dev != srcdev))
5266 return optimal;
5267 for (i = first; i < first + num; i++) {
5268 if (map->stripes[i].dev->bdev &&
5269 (tolerance || map->stripes[i].dev != srcdev))
5270 return i;
5271 }
Chris Masondfe25022008-05-13 13:46:40 -04005272 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005273
Chris Masondfe25022008-05-13 13:46:40 -04005274 /* we couldn't find one that doesn't fail. Just return something
5275 * and the io error handling code will clean up eventually
5276 */
5277 return optimal;
5278}
5279
David Woodhouse53b381b2013-01-29 18:40:14 -05005280static inline int parity_smaller(u64 a, u64 b)
5281{
5282 return a > b;
5283}
5284
5285/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005286static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005287{
5288 struct btrfs_bio_stripe s;
5289 int i;
5290 u64 l;
5291 int again = 1;
5292
5293 while (again) {
5294 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005295 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005296 if (parity_smaller(bbio->raid_map[i],
5297 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005298 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005299 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005300 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005301 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005302 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005303 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005304
David Woodhouse53b381b2013-01-29 18:40:14 -05005305 again = 1;
5306 }
5307 }
5308 }
5309}
5310
Zhao Lei6e9606d2015-01-20 15:11:34 +08005311static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5312{
5313 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005314 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005315 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005316 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005317 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005318 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005319 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005320 /*
5321 * plus the raid_map, which includes both the tgt dev
5322 * and the stripes
5323 */
5324 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005325 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005326
5327 atomic_set(&bbio->error, 0);
Elena Reshetova140475a2017-03-03 10:55:10 +02005328 refcount_set(&bbio->refs, 1);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005329
5330 return bbio;
5331}
5332
5333void btrfs_get_bbio(struct btrfs_bio *bbio)
5334{
Elena Reshetova140475a2017-03-03 10:55:10 +02005335 WARN_ON(!refcount_read(&bbio->refs));
5336 refcount_inc(&bbio->refs);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005337}
5338
5339void btrfs_put_bbio(struct btrfs_bio *bbio)
5340{
5341 if (!bbio)
5342 return;
Elena Reshetova140475a2017-03-03 10:55:10 +02005343 if (refcount_dec_and_test(&bbio->refs))
Zhao Lei6e9606d2015-01-20 15:11:34 +08005344 kfree(bbio);
5345}
5346
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005347/* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */
5348/*
5349 * Please note that, discard won't be sent to target device of device
5350 * replace.
5351 */
5352static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info,
5353 u64 logical, u64 length,
5354 struct btrfs_bio **bbio_ret)
5355{
5356 struct extent_map *em;
5357 struct map_lookup *map;
5358 struct btrfs_bio *bbio;
5359 u64 offset;
5360 u64 stripe_nr;
5361 u64 stripe_nr_end;
5362 u64 stripe_end_offset;
5363 u64 stripe_cnt;
5364 u64 stripe_len;
5365 u64 stripe_offset;
5366 u64 num_stripes;
5367 u32 stripe_index;
5368 u32 factor = 0;
5369 u32 sub_stripes = 0;
5370 u64 stripes_per_dev = 0;
5371 u32 remaining_stripes = 0;
5372 u32 last_stripe = 0;
5373 int ret = 0;
5374 int i;
5375
5376 /* discard always return a bbio */
5377 ASSERT(bbio_ret);
5378
5379 em = get_chunk_map(fs_info, logical, length);
5380 if (IS_ERR(em))
5381 return PTR_ERR(em);
5382
5383 map = em->map_lookup;
5384 /* we don't discard raid56 yet */
5385 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
5386 ret = -EOPNOTSUPP;
5387 goto out;
5388 }
5389
5390 offset = logical - em->start;
5391 length = min_t(u64, em->len - offset, length);
5392
5393 stripe_len = map->stripe_len;
5394 /*
5395 * stripe_nr counts the total number of stripes we have to stride
5396 * to get to this block
5397 */
5398 stripe_nr = div64_u64(offset, stripe_len);
5399
5400 /* stripe_offset is the offset of this block in its stripe */
5401 stripe_offset = offset - stripe_nr * stripe_len;
5402
5403 stripe_nr_end = round_up(offset + length, map->stripe_len);
Liu Bo42c61ab2017-04-03 13:45:24 -07005404 stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005405 stripe_cnt = stripe_nr_end - stripe_nr;
5406 stripe_end_offset = stripe_nr_end * map->stripe_len -
5407 (offset + length);
5408 /*
5409 * after this, stripe_nr is the number of stripes on this
5410 * device we have to walk to find the data, and stripe_index is
5411 * the number of our device in the stripe array
5412 */
5413 num_stripes = 1;
5414 stripe_index = 0;
5415 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5416 BTRFS_BLOCK_GROUP_RAID10)) {
5417 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5418 sub_stripes = 1;
5419 else
5420 sub_stripes = map->sub_stripes;
5421
5422 factor = map->num_stripes / sub_stripes;
5423 num_stripes = min_t(u64, map->num_stripes,
5424 sub_stripes * stripe_cnt);
5425 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
5426 stripe_index *= sub_stripes;
5427 stripes_per_dev = div_u64_rem(stripe_cnt, factor,
5428 &remaining_stripes);
5429 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5430 last_stripe *= sub_stripes;
5431 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5432 BTRFS_BLOCK_GROUP_DUP)) {
5433 num_stripes = map->num_stripes;
5434 } else {
5435 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5436 &stripe_index);
5437 }
5438
5439 bbio = alloc_btrfs_bio(num_stripes, 0);
5440 if (!bbio) {
5441 ret = -ENOMEM;
5442 goto out;
5443 }
5444
5445 for (i = 0; i < num_stripes; i++) {
5446 bbio->stripes[i].physical =
5447 map->stripes[stripe_index].physical +
5448 stripe_offset + stripe_nr * map->stripe_len;
5449 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
5450
5451 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5452 BTRFS_BLOCK_GROUP_RAID10)) {
5453 bbio->stripes[i].length = stripes_per_dev *
5454 map->stripe_len;
5455
5456 if (i / sub_stripes < remaining_stripes)
5457 bbio->stripes[i].length +=
5458 map->stripe_len;
5459
5460 /*
5461 * Special for the first stripe and
5462 * the last stripe:
5463 *
5464 * |-------|...|-------|
5465 * |----------|
5466 * off end_off
5467 */
5468 if (i < sub_stripes)
5469 bbio->stripes[i].length -=
5470 stripe_offset;
5471
5472 if (stripe_index >= last_stripe &&
5473 stripe_index <= (last_stripe +
5474 sub_stripes - 1))
5475 bbio->stripes[i].length -=
5476 stripe_end_offset;
5477
5478 if (i == sub_stripes - 1)
5479 stripe_offset = 0;
5480 } else {
5481 bbio->stripes[i].length = length;
5482 }
5483
5484 stripe_index++;
5485 if (stripe_index == map->num_stripes) {
5486 stripe_index = 0;
5487 stripe_nr++;
5488 }
5489 }
5490
5491 *bbio_ret = bbio;
5492 bbio->map_type = map->type;
5493 bbio->num_stripes = num_stripes;
5494out:
5495 free_extent_map(em);
5496 return ret;
5497}
5498
Liu Bo5ab56092017-03-14 13:33:57 -07005499/*
5500 * In dev-replace case, for repair case (that's the only case where the mirror
5501 * is selected explicitly when calling btrfs_map_block), blocks left of the
5502 * left cursor can also be read from the target drive.
5503 *
5504 * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the
5505 * array of stripes.
5506 * For READ, it also needs to be supported using the same mirror number.
5507 *
5508 * If the requested block is not left of the left cursor, EIO is returned. This
5509 * can happen because btrfs_num_copies() returns one more in the dev-replace
5510 * case.
5511 */
5512static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info,
5513 u64 logical, u64 length,
5514 u64 srcdev_devid, int *mirror_num,
5515 u64 *physical)
5516{
5517 struct btrfs_bio *bbio = NULL;
5518 int num_stripes;
5519 int index_srcdev = 0;
5520 int found = 0;
5521 u64 physical_of_found = 0;
5522 int i;
5523 int ret = 0;
5524
5525 ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
5526 logical, &length, &bbio, 0, 0);
5527 if (ret) {
5528 ASSERT(bbio == NULL);
5529 return ret;
5530 }
5531
5532 num_stripes = bbio->num_stripes;
5533 if (*mirror_num > num_stripes) {
5534 /*
5535 * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror,
5536 * that means that the requested area is not left of the left
5537 * cursor
5538 */
5539 btrfs_put_bbio(bbio);
5540 return -EIO;
5541 }
5542
5543 /*
5544 * process the rest of the function using the mirror_num of the source
5545 * drive. Therefore look it up first. At the end, patch the device
5546 * pointer to the one of the target drive.
5547 */
5548 for (i = 0; i < num_stripes; i++) {
5549 if (bbio->stripes[i].dev->devid != srcdev_devid)
5550 continue;
5551
5552 /*
5553 * In case of DUP, in order to keep it simple, only add the
5554 * mirror with the lowest physical address
5555 */
5556 if (found &&
5557 physical_of_found <= bbio->stripes[i].physical)
5558 continue;
5559
5560 index_srcdev = i;
5561 found = 1;
5562 physical_of_found = bbio->stripes[i].physical;
5563 }
5564
5565 btrfs_put_bbio(bbio);
5566
5567 ASSERT(found);
5568 if (!found)
5569 return -EIO;
5570
5571 *mirror_num = index_srcdev + 1;
5572 *physical = physical_of_found;
5573 return ret;
5574}
5575
Liu Bo73c0f222017-03-14 13:33:58 -07005576static void handle_ops_on_dev_replace(enum btrfs_map_op op,
5577 struct btrfs_bio **bbio_ret,
5578 struct btrfs_dev_replace *dev_replace,
5579 int *num_stripes_ret, int *max_errors_ret)
5580{
5581 struct btrfs_bio *bbio = *bbio_ret;
5582 u64 srcdev_devid = dev_replace->srcdev->devid;
5583 int tgtdev_indexes = 0;
5584 int num_stripes = *num_stripes_ret;
5585 int max_errors = *max_errors_ret;
5586 int i;
5587
5588 if (op == BTRFS_MAP_WRITE) {
5589 int index_where_to_add;
5590
5591 /*
5592 * duplicate the write operations while the dev replace
5593 * procedure is running. Since the copying of the old disk to
5594 * the new disk takes place at run time while the filesystem is
5595 * mounted writable, the regular write operations to the old
5596 * disk have to be duplicated to go to the new disk as well.
5597 *
5598 * Note that device->missing is handled by the caller, and that
5599 * the write to the old disk is already set up in the stripes
5600 * array.
5601 */
5602 index_where_to_add = num_stripes;
5603 for (i = 0; i < num_stripes; i++) {
5604 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5605 /* write to new disk, too */
5606 struct btrfs_bio_stripe *new =
5607 bbio->stripes + index_where_to_add;
5608 struct btrfs_bio_stripe *old =
5609 bbio->stripes + i;
5610
5611 new->physical = old->physical;
5612 new->length = old->length;
5613 new->dev = dev_replace->tgtdev;
5614 bbio->tgtdev_map[i] = index_where_to_add;
5615 index_where_to_add++;
5616 max_errors++;
5617 tgtdev_indexes++;
5618 }
5619 }
5620 num_stripes = index_where_to_add;
5621 } else if (op == BTRFS_MAP_GET_READ_MIRRORS) {
5622 int index_srcdev = 0;
5623 int found = 0;
5624 u64 physical_of_found = 0;
5625
5626 /*
5627 * During the dev-replace procedure, the target drive can also
5628 * be used to read data in case it is needed to repair a corrupt
5629 * block elsewhere. This is possible if the requested area is
5630 * left of the left cursor. In this area, the target drive is a
5631 * full copy of the source drive.
5632 */
5633 for (i = 0; i < num_stripes; i++) {
5634 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5635 /*
5636 * In case of DUP, in order to keep it simple,
5637 * only add the mirror with the lowest physical
5638 * address
5639 */
5640 if (found &&
5641 physical_of_found <=
5642 bbio->stripes[i].physical)
5643 continue;
5644 index_srcdev = i;
5645 found = 1;
5646 physical_of_found = bbio->stripes[i].physical;
5647 }
5648 }
5649 if (found) {
5650 struct btrfs_bio_stripe *tgtdev_stripe =
5651 bbio->stripes + num_stripes;
5652
5653 tgtdev_stripe->physical = physical_of_found;
5654 tgtdev_stripe->length =
5655 bbio->stripes[index_srcdev].length;
5656 tgtdev_stripe->dev = dev_replace->tgtdev;
5657 bbio->tgtdev_map[index_srcdev] = num_stripes;
5658
5659 tgtdev_indexes++;
5660 num_stripes++;
5661 }
5662 }
5663
5664 *num_stripes_ret = num_stripes;
5665 *max_errors_ret = max_errors;
5666 bbio->num_tgtdevs = tgtdev_indexes;
5667 *bbio_ret = bbio;
5668}
5669
Liu Bo2b19a1f2017-03-14 13:34:00 -07005670static bool need_full_stripe(enum btrfs_map_op op)
5671{
5672 return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS);
5673}
5674
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005675static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
5676 enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005677 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005678 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005679 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005680{
5681 struct extent_map *em;
5682 struct map_lookup *map;
Chris Mason0b86a832008-03-24 15:01:56 -04005683 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005684 u64 stripe_offset;
5685 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005686 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005687 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005688 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005689 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005690 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005691 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005692 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005693 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005694 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5695 int dev_replace_is_ongoing = 0;
5696 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005697 int patch_the_first_stripe_for_dev_replace = 0;
5698 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005699 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005700
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005701 if (op == BTRFS_MAP_DISCARD)
5702 return __btrfs_map_block_for_discard(fs_info, logical,
5703 *length, bbio_ret);
5704
Liu Bo592d92e2017-03-14 13:33:55 -07005705 em = get_chunk_map(fs_info, logical, *length);
5706 if (IS_ERR(em))
5707 return PTR_ERR(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005708
Jeff Mahoney95617d62015-06-03 10:55:48 -04005709 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005710 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005711
David Woodhouse53b381b2013-01-29 18:40:14 -05005712 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005713 stripe_nr = offset;
5714 /*
5715 * stripe_nr counts the total number of stripes we have to stride
5716 * to get to this block
5717 */
David Sterba47c57132015-02-20 18:43:47 +01005718 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005719
David Woodhouse53b381b2013-01-29 18:40:14 -05005720 stripe_offset = stripe_nr * stripe_len;
Josef Bacike042d1e2016-04-12 12:54:40 -04005721 if (offset < stripe_offset) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005722 btrfs_crit(fs_info,
5723 "stripe math has gone wrong, stripe_offset=%llu, offset=%llu, start=%llu, logical=%llu, stripe_len=%llu",
Josef Bacike042d1e2016-04-12 12:54:40 -04005724 stripe_offset, offset, em->start, logical,
5725 stripe_len);
5726 free_extent_map(em);
5727 return -EINVAL;
5728 }
Chris Mason593060d2008-03-25 16:50:33 -04005729
5730 /* stripe_offset is the offset of this block in its stripe*/
5731 stripe_offset = offset - stripe_offset;
5732
David Woodhouse53b381b2013-01-29 18:40:14 -05005733 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005734 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005735 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5736 raid56_full_stripe_start = offset;
5737
5738 /* allow a write of a full stripe, but make sure we don't
5739 * allow straddling of stripes
5740 */
David Sterba47c57132015-02-20 18:43:47 +01005741 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5742 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005743 raid56_full_stripe_start *= full_stripe_len;
5744 }
5745
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005746 if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005747 u64 max_len;
5748 /* For writes to RAID[56], allow a full stripeset across all disks.
5749 For other RAID types and for RAID[56] reads, just allow a single
5750 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005751 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005752 (op == BTRFS_MAP_WRITE)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005753 max_len = stripe_len * nr_data_stripes(map) -
5754 (offset - raid56_full_stripe_start);
5755 } else {
5756 /* we limit the length of each bio to what fits in a stripe */
5757 max_len = stripe_len - stripe_offset;
5758 }
5759 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005760 } else {
5761 *length = em->len - offset;
5762 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005763
David Woodhouse53b381b2013-01-29 18:40:14 -05005764 /* This is for when we're called from btrfs_merge_bio_hook() and all
5765 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005766 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005767 goto out;
5768
Liu Bo73beece2015-07-17 16:49:19 +08005769 btrfs_dev_replace_lock(dev_replace, 0);
Stefan Behrens472262f2012-11-06 14:43:46 +01005770 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5771 if (!dev_replace_is_ongoing)
Liu Bo73beece2015-07-17 16:49:19 +08005772 btrfs_dev_replace_unlock(dev_replace, 0);
5773 else
5774 btrfs_dev_replace_set_lock_blocking(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005775
Stefan Behrensad6d6202012-11-06 15:06:47 +01005776 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005777 !need_full_stripe(op) && dev_replace->tgtdev != NULL) {
Liu Bo5ab56092017-03-14 13:33:57 -07005778 ret = get_extra_mirror_from_replace(fs_info, logical, *length,
5779 dev_replace->srcdev->devid,
5780 &mirror_num,
5781 &physical_to_patch_in_first_stripe);
5782 if (ret)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005783 goto out;
Liu Bo5ab56092017-03-14 13:33:57 -07005784 else
5785 patch_the_first_stripe_for_dev_replace = 1;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005786 } else if (mirror_num > map->num_stripes) {
5787 mirror_num = 0;
5788 }
5789
Chris Masonf2d8d742008-04-21 10:03:05 -04005790 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005791 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005792 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
David Sterba47c57132015-02-20 18:43:47 +01005793 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5794 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08005795 if (!need_full_stripe(op))
Miao Xie28e1cc72014-09-12 18:44:02 +08005796 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005797 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Anand Jainde483732017-10-12 16:43:00 +08005798 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04005799 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005800 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005801 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005802 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005803 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005804 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005805 current->pid % map->num_stripes,
5806 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005807 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005808 }
Chris Mason2fff7342008-04-29 14:12:09 -04005809
Chris Mason611f0e02008-04-03 16:29:03 -04005810 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Anand Jainde483732017-10-12 16:43:00 +08005811 if (need_full_stripe(op)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005812 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005813 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005814 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005815 } else {
5816 mirror_num = 1;
5817 }
Chris Mason2fff7342008-04-29 14:12:09 -04005818
Chris Mason321aecc2008-04-16 10:49:51 -04005819 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005820 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005821
David Sterba47c57132015-02-20 18:43:47 +01005822 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005823 stripe_index *= map->sub_stripes;
5824
Anand Jainde483732017-10-12 16:43:00 +08005825 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04005826 num_stripes = map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005827 else if (mirror_num)
5828 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005829 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005830 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005831 stripe_index = find_live_mirror(fs_info, map,
5832 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005833 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005834 current->pid % map->sub_stripes,
5835 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005836 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005837 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005838
Zhao Leiffe2d202015-01-20 15:11:44 +08005839 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Anand Jainde483732017-10-12 16:43:00 +08005840 if (need_raid_map && (need_full_stripe(op) || mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005841 /* push stripe_nr back to the start of the full stripe */
Liu Bo42c61ab2017-04-03 13:45:24 -07005842 stripe_nr = div64_u64(raid56_full_stripe_start,
David Sterbab8b93ad2015-01-16 17:26:13 +01005843 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005844
5845 /* RAID[56] write or recovery. Return all stripes */
5846 num_stripes = map->num_stripes;
5847 max_errors = nr_parity_stripes(map);
5848
David Woodhouse53b381b2013-01-29 18:40:14 -05005849 *length = map->stripe_len;
5850 stripe_index = 0;
5851 stripe_offset = 0;
5852 } else {
5853 /*
5854 * Mirror #0 or #1 means the original data block.
5855 * Mirror #2 is RAID5 parity block.
5856 * Mirror #3 is RAID6 Q block.
5857 */
David Sterba47c57132015-02-20 18:43:47 +01005858 stripe_nr = div_u64_rem(stripe_nr,
5859 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005860 if (mirror_num > 1)
5861 stripe_index = nr_data_stripes(map) +
5862 mirror_num - 2;
5863
5864 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005865 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5866 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08005867 if (!need_full_stripe(op) && mirror_num <= 1)
Miao Xie28e1cc72014-09-12 18:44:02 +08005868 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005869 }
Chris Mason8790d502008-04-03 16:29:03 -04005870 } else {
5871 /*
David Sterba47c57132015-02-20 18:43:47 +01005872 * after this, stripe_nr is the number of stripes on this
5873 * device we have to walk to find the data, and stripe_index is
5874 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005875 */
David Sterba47c57132015-02-20 18:43:47 +01005876 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5877 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005878 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005879 }
Josef Bacike042d1e2016-04-12 12:54:40 -04005880 if (stripe_index >= map->num_stripes) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005881 btrfs_crit(fs_info,
5882 "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u",
Josef Bacike042d1e2016-04-12 12:54:40 -04005883 stripe_index, map->num_stripes);
5884 ret = -EINVAL;
5885 goto out;
5886 }
Chris Mason593060d2008-03-25 16:50:33 -04005887
Stefan Behrens472262f2012-11-06 14:43:46 +01005888 num_alloc_stripes = num_stripes;
Liu Bo6fad8232017-03-14 13:33:59 -07005889 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005890 if (op == BTRFS_MAP_WRITE)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005891 num_alloc_stripes <<= 1;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005892 if (op == BTRFS_MAP_GET_READ_MIRRORS)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005893 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005894 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005895 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005896
Zhao Lei6e9606d2015-01-20 15:11:34 +08005897 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005898 if (!bbio) {
5899 ret = -ENOMEM;
5900 goto out;
5901 }
Liu Bo6fad8232017-03-14 13:33:59 -07005902 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL)
Miao Xie2c8cdd62014-11-14 16:06:25 +08005903 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005904
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005905 /* build raid_map */
Liu Bo2b19a1f2017-03-14 13:34:00 -07005906 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map &&
5907 (need_full_stripe(op) || mirror_num > 1)) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005908 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005909 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005910
5911 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5912 sizeof(struct btrfs_bio_stripe) *
5913 num_alloc_stripes +
5914 sizeof(int) * tgtdev_indexes);
5915
5916 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005917 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005918
5919 /* Fill in the logical address of each stripe */
5920 tmp = stripe_nr * nr_data_stripes(map);
5921 for (i = 0; i < nr_data_stripes(map); i++)
5922 bbio->raid_map[(i+rot) % num_stripes] =
5923 em->start + (tmp + i) * map->stripe_len;
5924
5925 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5926 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5927 bbio->raid_map[(i+rot+1) % num_stripes] =
5928 RAID6_Q_STRIPE;
5929 }
5930
Li Zefanec9ef7a2011-12-01 14:06:42 +08005931
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005932 for (i = 0; i < num_stripes; i++) {
5933 bbio->stripes[i].physical =
5934 map->stripes[stripe_index].physical +
5935 stripe_offset +
5936 stripe_nr * map->stripe_len;
5937 bbio->stripes[i].dev =
5938 map->stripes[stripe_index].dev;
5939 stripe_index++;
Chris Mason593060d2008-03-25 16:50:33 -04005940 }
Li Zefande11cc12011-12-01 12:55:47 +08005941
Liu Bo2b19a1f2017-03-14 13:34:00 -07005942 if (need_full_stripe(op))
Miao Xied20983b2014-07-03 18:22:13 +08005943 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005944
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005945 if (bbio->raid_map)
5946 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005947
Liu Bo73c0f222017-03-14 13:33:58 -07005948 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005949 need_full_stripe(op)) {
Liu Bo73c0f222017-03-14 13:33:58 -07005950 handle_ops_on_dev_replace(op, &bbio, dev_replace, &num_stripes,
5951 &max_errors);
Stefan Behrens472262f2012-11-06 14:43:46 +01005952 }
5953
Li Zefande11cc12011-12-01 12:55:47 +08005954 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005955 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005956 bbio->num_stripes = num_stripes;
5957 bbio->max_errors = max_errors;
5958 bbio->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005959
5960 /*
5961 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5962 * mirror_num == num_stripes + 1 && dev_replace target drive is
5963 * available as a mirror
5964 */
5965 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5966 WARN_ON(num_stripes > 1);
5967 bbio->stripes[0].dev = dev_replace->tgtdev;
5968 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5969 bbio->mirror_num = map->num_stripes + 1;
5970 }
Chris Masoncea9e442008-04-09 16:28:12 -04005971out:
Liu Bo73beece2015-07-17 16:49:19 +08005972 if (dev_replace_is_ongoing) {
5973 btrfs_dev_replace_clear_lock_blocking(dev_replace);
5974 btrfs_dev_replace_unlock(dev_replace, 0);
5975 }
Chris Mason0b86a832008-03-24 15:01:56 -04005976 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005977 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005978}
5979
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005980int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005981 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005982 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005983{
Mike Christieb3d3fa52016-06-05 14:31:53 -05005984 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005985 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005986}
5987
Miao Xieaf8e2d12014-10-23 14:42:50 +08005988/* For Scrub/replace */
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005989int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Miao Xieaf8e2d12014-10-23 14:42:50 +08005990 u64 logical, u64 *length,
David Sterba825ad4c2017-03-28 14:45:22 +02005991 struct btrfs_bio **bbio_ret)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005992{
David Sterba825ad4c2017-03-28 14:45:22 +02005993 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, 0, 1);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005994}
5995
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04005996int btrfs_rmap_block(struct btrfs_fs_info *fs_info,
Yan Zhenga512bbf2008-12-08 16:46:26 -05005997 u64 chunk_start, u64 physical, u64 devid,
5998 u64 **logical, int *naddrs, int *stripe_len)
5999{
Yan Zhenga512bbf2008-12-08 16:46:26 -05006000 struct extent_map *em;
6001 struct map_lookup *map;
6002 u64 *buf;
6003 u64 bytenr;
6004 u64 length;
6005 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05006006 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05006007 int i, j, nr = 0;
6008
Liu Bo592d92e2017-03-14 13:33:55 -07006009 em = get_chunk_map(fs_info, chunk_start, 1);
6010 if (IS_ERR(em))
Josef Bacik835d9742013-03-19 12:13:25 -04006011 return -EIO;
Josef Bacik835d9742013-03-19 12:13:25 -04006012
Jeff Mahoney95617d62015-06-03 10:55:48 -04006013 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05006014 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05006015 rmap_len = map->stripe_len;
6016
Yan Zhenga512bbf2008-12-08 16:46:26 -05006017 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01006018 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006019 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01006020 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08006021 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01006022 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05006023 rmap_len = map->stripe_len * nr_data_stripes(map);
6024 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05006025
David Sterba31e818f2015-02-20 18:00:26 +01006026 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006027 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05006028
6029 for (i = 0; i < map->num_stripes; i++) {
6030 if (devid && map->stripes[i].dev->devid != devid)
6031 continue;
6032 if (map->stripes[i].physical > physical ||
6033 map->stripes[i].physical + length <= physical)
6034 continue;
6035
6036 stripe_nr = physical - map->stripes[i].physical;
Liu Bo42c61ab2017-04-03 13:45:24 -07006037 stripe_nr = div64_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006038
6039 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
6040 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01006041 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006042 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
6043 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05006044 } /* else if RAID[56], multiply by nr_data_stripes().
6045 * Alternatively, just use rmap_len below instead of
6046 * map->stripe_len */
6047
6048 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05006049 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006050 for (j = 0; j < nr; j++) {
6051 if (buf[j] == bytenr)
6052 break;
6053 }
Chris Mason934d3752008-12-08 16:43:10 -05006054 if (j == nr) {
6055 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006056 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05006057 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05006058 }
6059
Yan Zhenga512bbf2008-12-08 16:46:26 -05006060 *logical = buf;
6061 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05006062 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05006063
6064 free_extent_map(em);
6065 return 0;
6066}
6067
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006068static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08006069{
Mike Snitzer326e1db2015-05-22 09:14:03 -04006070 bio->bi_private = bbio->private;
6071 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006072 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04006073
Zhao Lei6e9606d2015-01-20 15:11:34 +08006074 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08006075}
6076
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006077static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04006078{
Chris Mason9be33952013-05-17 18:30:14 -04006079 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006080 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04006081
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006082 if (bio->bi_status) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02006083 atomic_inc(&bbio->error);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006084 if (bio->bi_status == BLK_STS_IOERR ||
6085 bio->bi_status == BLK_STS_TARGET) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02006086 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04006087 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08006088 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02006089
6090 BUG_ON(stripe_index >= bbio->num_stripes);
6091 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02006092 if (dev->bdev) {
Mike Christie37226b22016-06-05 14:31:52 -05006093 if (bio_op(bio) == REQ_OP_WRITE)
Anand Jain1cb34c82017-10-21 01:45:33 +08006094 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006095 BTRFS_DEV_STAT_WRITE_ERRS);
6096 else
Anand Jain1cb34c82017-10-21 01:45:33 +08006097 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006098 BTRFS_DEV_STAT_READ_ERRS);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06006099 if (bio->bi_opf & REQ_PREFLUSH)
Anand Jain1cb34c82017-10-21 01:45:33 +08006100 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006101 BTRFS_DEV_STAT_FLUSH_ERRS);
Stefan Behrens597a60f2012-06-14 16:42:31 +02006102 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02006103 }
6104 }
Chris Mason8790d502008-04-03 16:29:03 -04006105
Jan Schmidta1d3c472011-08-04 17:15:33 +02006106 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04006107 is_orig_bio = 1;
6108
Miao Xiec404e0d2014-01-30 16:46:55 +08006109 btrfs_bio_counter_dec(bbio->fs_info);
6110
Jan Schmidta1d3c472011-08-04 17:15:33 +02006111 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04006112 if (!is_orig_bio) {
6113 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006114 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006115 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07006116
Chris Mason9be33952013-05-17 18:30:14 -04006117 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04006118 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05006119 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04006120 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02006121 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006122 bio->bi_status = BLK_STS_IOERR;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05006123 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04006124 /*
6125 * this bio is actually up to date, we didn't
6126 * go over the max number of errors
6127 */
Anand Jain2dbe0c72017-10-14 08:35:56 +08006128 bio->bi_status = BLK_STS_OK;
Chris Mason1259ab72008-05-12 13:39:03 -04006129 }
Miao Xiec55f1392014-06-19 10:42:54 +08006130
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006131 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04006132 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04006133 bio_put(bio);
6134 }
Chris Mason8790d502008-04-03 16:29:03 -04006135}
6136
Chris Mason8b712842008-06-11 16:50:36 -04006137/*
6138 * see run_scheduled_bios for a description of why bios are collected for
6139 * async submit.
6140 *
6141 * This will add one bio to the pending list for a device and make sure
6142 * the work struct is scheduled.
6143 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006144static noinline void btrfs_schedule_bio(struct btrfs_device *device,
Mike Christie4e49ea42016-06-05 14:31:41 -05006145 struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04006146{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006147 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -04006148 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04006149 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006150
Anand Jaine6e674b2017-12-04 12:54:54 +08006151 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state) ||
6152 !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006153 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05006154 return;
6155 }
6156
Chris Mason8b712842008-06-11 16:50:36 -04006157 /* don't bother with additional async steps for reads, right now */
Mike Christie37226b22016-06-05 14:31:52 -05006158 if (bio_op(bio) == REQ_OP_READ) {
Mike Christie4e49ea42016-06-05 14:31:41 -05006159 btrfsic_submit_bio(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01006160 return;
Chris Mason8b712842008-06-11 16:50:36 -04006161 }
6162
Chris Mason492bb6de2008-07-31 16:29:02 -04006163 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04006164 bio->bi_next = NULL;
Chris Mason8b712842008-06-11 16:50:36 -04006165
6166 spin_lock(&device->io_lock);
Christoph Hellwig67f055c2016-11-01 07:40:06 -06006167 if (op_is_sync(bio->bi_opf))
Chris Masonffbd5172009-04-20 15:50:09 -04006168 pending_bios = &device->pending_sync_bios;
6169 else
6170 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006171
Chris Masonffbd5172009-04-20 15:50:09 -04006172 if (pending_bios->tail)
6173 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006174
Chris Masonffbd5172009-04-20 15:50:09 -04006175 pending_bios->tail = bio;
6176 if (!pending_bios->head)
6177 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006178 if (device->running_pending)
6179 should_queue = 0;
6180
6181 spin_unlock(&device->io_lock);
6182
6183 if (should_queue)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006184 btrfs_queue_work(fs_info->submit_workers, &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04006185}
6186
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006187static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio,
6188 u64 physical, int dev_nr, int async)
Josef Bacikde1ee922012-10-19 16:50:56 -04006189{
6190 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006191 struct btrfs_fs_info *fs_info = bbio->fs_info;
Josef Bacikde1ee922012-10-19 16:50:56 -04006192
6193 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04006194 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04006195 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006196 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04006197#ifdef DEBUG
6198 {
6199 struct rcu_string *name;
6200
6201 rcu_read_lock();
6202 name = rcu_dereference(dev->name);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006203 btrfs_debug(fs_info,
6204 "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u",
6205 bio_op(bio), bio->bi_opf,
6206 (u64)bio->bi_iter.bi_sector,
6207 (u_long)dev->bdev->bd_dev, name->str, dev->devid,
6208 bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006209 rcu_read_unlock();
6210 }
6211#endif
Christoph Hellwig74d46992017-08-23 19:10:32 +02006212 bio_set_dev(bio, dev->bdev);
Miao Xiec404e0d2014-01-30 16:46:55 +08006213
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006214 btrfs_bio_counter_inc_noblocked(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006215
Josef Bacikde1ee922012-10-19 16:50:56 -04006216 if (async)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006217 btrfs_schedule_bio(dev, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006218 else
Mike Christie4e49ea42016-06-05 14:31:41 -05006219 btrfsic_submit_bio(bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006220}
6221
Josef Bacikde1ee922012-10-19 16:50:56 -04006222static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6223{
6224 atomic_inc(&bbio->error);
6225 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Nicholas D Steeves01327612016-05-19 21:18:45 -04006226 /* Should be the original bio. */
Miao Xie8408c712014-06-19 10:42:55 +08006227 WARN_ON(bio != bbio->orig_bio);
6228
Chris Mason9be33952013-05-17 18:30:14 -04006229 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006230 bio->bi_iter.bi_sector = logical >> 9;
Anand Jain102ed2c2017-10-14 08:34:02 +08006231 if (atomic_read(&bbio->error) > bbio->max_errors)
6232 bio->bi_status = BLK_STS_IOERR;
6233 else
6234 bio->bi_status = BLK_STS_OK;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006235 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006236 }
6237}
6238
Omar Sandoval58efbc92017-08-22 23:45:59 -07006239blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
6240 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006241{
Chris Mason0b86a832008-03-24 15:01:56 -04006242 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006243 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006244 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006245 u64 length = 0;
6246 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006247 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006248 int dev_nr;
6249 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006250 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006251
Kent Overstreet4f024f32013-10-11 15:44:27 -07006252 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006253 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006254
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006255 btrfs_bio_counter_inc_blocked(fs_info);
Liu Bobd7d63c2017-09-19 17:50:09 -06006256 ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical,
Mike Christie37226b22016-06-05 14:31:52 -05006257 &map_length, &bbio, mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006258 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006259 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006260 return errno_to_blk_status(ret);
Miao Xiec404e0d2014-01-30 16:46:55 +08006261 }
Chris Masoncea9e442008-04-09 16:28:12 -04006262
Jan Schmidta1d3c472011-08-04 17:15:33 +02006263 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006264 bbio->orig_bio = first_bio;
6265 bbio->private = first_bio->bi_private;
6266 bbio->end_io = first_bio->bi_end_io;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006267 bbio->fs_info = fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006268 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6269
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006270 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Mike Christie37226b22016-06-05 14:31:52 -05006271 ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006272 /* In this case, map_length has been set to the length of
6273 a single stripe; not the whole write */
Mike Christie37226b22016-06-05 14:31:52 -05006274 if (bio_op(bio) == REQ_OP_WRITE) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006275 ret = raid56_parity_write(fs_info, bio, bbio,
6276 map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006277 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006278 ret = raid56_parity_recover(fs_info, bio, bbio,
6279 map_length, mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006280 }
Miao Xie42452152014-11-25 16:39:28 +08006281
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006282 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006283 return errno_to_blk_status(ret);
David Woodhouse53b381b2013-01-29 18:40:14 -05006284 }
6285
Chris Masoncea9e442008-04-09 16:28:12 -04006286 if (map_length < length) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006287 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006288 "mapping failed logical %llu bio len %llu len %llu",
6289 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006290 BUG();
6291 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006292
Zhao Lei08da7572015-02-12 15:42:16 +08006293 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006294 dev = bbio->stripes[dev_nr].dev;
Mike Christie37226b22016-06-05 14:31:52 -05006295 if (!dev || !dev->bdev ||
Anand Jainebbede42017-12-04 12:54:52 +08006296 (bio_op(first_bio) == REQ_OP_WRITE &&
6297 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006298 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006299 continue;
6300 }
6301
David Sterba3aa8e072017-06-02 17:38:30 +02006302 if (dev_nr < total_devs - 1)
David Sterba8b6c1d52017-06-02 17:48:13 +02006303 bio = btrfs_bio_clone(first_bio);
David Sterba3aa8e072017-06-02 17:38:30 +02006304 else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006305 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006306
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006307 submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical,
6308 dev_nr, async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006309 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006310 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006311 return BLK_STS_OK;
Chris Mason0b86a832008-03-24 15:01:56 -04006312}
6313
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006314struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006315 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006316{
Yan Zheng2b820322008-11-17 21:11:30 -05006317 struct btrfs_device *device;
6318 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006319
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006320 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006321 while (cur_devices) {
6322 if (!fsid ||
Anand Jain44880fd2017-07-29 17:50:09 +08006323 !memcmp(cur_devices->fsid, fsid, BTRFS_FSID_SIZE)) {
David Sterba35c70102017-06-15 19:51:51 +02006324 device = find_device(cur_devices, devid, uuid);
Yan Zheng2b820322008-11-17 21:11:30 -05006325 if (device)
6326 return device;
6327 }
6328 cur_devices = cur_devices->seed;
6329 }
6330 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006331}
6332
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006333static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006334 u64 devid, u8 *dev_uuid)
6335{
6336 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006337
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006338 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6339 if (IS_ERR(device))
Anand Jainadfb69a2017-10-11 12:46:18 +08006340 return device;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006341
6342 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006343 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006344 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006345
Anand Jaine6e674b2017-12-04 12:54:54 +08006346 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -05006347 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006348
Chris Masondfe25022008-05-13 13:46:40 -04006349 return device;
6350}
6351
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006352/**
6353 * btrfs_alloc_device - allocate struct btrfs_device
6354 * @fs_info: used only for generating a new devid, can be NULL if
6355 * devid is provided (i.e. @devid != NULL).
6356 * @devid: a pointer to devid for this device. If NULL a new devid
6357 * is generated.
6358 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6359 * is generated.
6360 *
6361 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
David Sterba48dae9c2017-10-30 18:10:25 +01006362 * on error. Returned struct is not linked onto any lists and must be
6363 * destroyed with free_device.
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006364 */
6365struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6366 const u64 *devid,
6367 const u8 *uuid)
6368{
6369 struct btrfs_device *dev;
6370 u64 tmp;
6371
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306372 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006373 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006374
6375 dev = __alloc_device();
6376 if (IS_ERR(dev))
6377 return dev;
6378
6379 if (devid)
6380 tmp = *devid;
6381 else {
6382 int ret;
6383
6384 ret = find_next_devid(fs_info, &tmp);
6385 if (ret) {
David Sterba55de4802017-10-30 18:55:47 +01006386 free_device(dev);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006387 return ERR_PTR(ret);
6388 }
6389 }
6390 dev->devid = tmp;
6391
6392 if (uuid)
6393 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6394 else
6395 generate_random_uuid(dev->uuid);
6396
Liu Bo9e0af232014-08-15 23:36:53 +08006397 btrfs_init_work(&dev->work, btrfs_submit_helper,
6398 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006399
6400 return dev;
6401}
6402
Liu Boe06cd3d2016-06-03 12:05:15 -07006403/* Return -EIO if any error, otherwise return 0. */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006404static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006405 struct extent_buffer *leaf,
6406 struct btrfs_chunk *chunk, u64 logical)
6407{
6408 u64 length;
6409 u64 stripe_len;
6410 u16 num_stripes;
6411 u16 sub_stripes;
6412 u64 type;
6413
6414 length = btrfs_chunk_length(leaf, chunk);
6415 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6416 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6417 sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
6418 type = btrfs_chunk_type(leaf, chunk);
6419
6420 if (!num_stripes) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006421 btrfs_err(fs_info, "invalid chunk num_stripes: %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006422 num_stripes);
6423 return -EIO;
6424 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006425 if (!IS_ALIGNED(logical, fs_info->sectorsize)) {
6426 btrfs_err(fs_info, "invalid chunk logical %llu", logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006427 return -EIO;
6428 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006429 if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) {
6430 btrfs_err(fs_info, "invalid chunk sectorsize %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006431 btrfs_chunk_sector_size(leaf, chunk));
6432 return -EIO;
6433 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006434 if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) {
6435 btrfs_err(fs_info, "invalid chunk length %llu", length);
Liu Boe06cd3d2016-06-03 12:05:15 -07006436 return -EIO;
6437 }
6438 if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006439 btrfs_err(fs_info, "invalid chunk stripe length: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006440 stripe_len);
6441 return -EIO;
6442 }
6443 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6444 type) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006445 btrfs_err(fs_info, "unrecognized chunk type: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006446 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6447 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6448 btrfs_chunk_type(leaf, chunk));
6449 return -EIO;
6450 }
6451 if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) ||
6452 (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) ||
6453 (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) ||
6454 (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) ||
6455 (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) ||
6456 ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 &&
6457 num_stripes != 1)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006458 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006459 "invalid num_stripes:sub_stripes %u:%u for profile %llu",
6460 num_stripes, sub_stripes,
6461 type & BTRFS_BLOCK_GROUP_PROFILE_MASK);
6462 return -EIO;
6463 }
6464
6465 return 0;
6466}
6467
Anand Jain5a2b8e62017-10-09 11:07:45 +08006468static void btrfs_report_missing_device(struct btrfs_fs_info *fs_info,
Anand Jain2b902df2017-10-09 11:07:46 +08006469 u64 devid, u8 *uuid, bool error)
Anand Jain5a2b8e62017-10-09 11:07:45 +08006470{
Anand Jain2b902df2017-10-09 11:07:46 +08006471 if (error)
6472 btrfs_err_rl(fs_info, "devid %llu uuid %pU is missing",
6473 devid, uuid);
6474 else
6475 btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing",
6476 devid, uuid);
Anand Jain5a2b8e62017-10-09 11:07:45 +08006477}
6478
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006479static int read_one_chunk(struct btrfs_fs_info *fs_info, struct btrfs_key *key,
Chris Mason0b86a832008-03-24 15:01:56 -04006480 struct extent_buffer *leaf,
6481 struct btrfs_chunk *chunk)
6482{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006483 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04006484 struct map_lookup *map;
6485 struct extent_map *em;
6486 u64 logical;
6487 u64 length;
6488 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006489 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006490 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006491 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006492 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006493
Chris Masone17cade2008-04-15 15:41:47 -04006494 logical = key->offset;
6495 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006496 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
Liu Boe06cd3d2016-06-03 12:05:15 -07006497
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006498 ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006499 if (ret)
6500 return ret;
Chris Masona061fc82008-05-07 11:43:44 -04006501
Chris Mason890871b2009-09-02 16:24:52 -04006502 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006503 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006504 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006505
6506 /* already mapped? */
6507 if (em && em->start <= logical && em->start + em->len > logical) {
6508 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006509 return 0;
6510 } else if (em) {
6511 free_extent_map(em);
6512 }
Chris Mason0b86a832008-03-24 15:01:56 -04006513
David Sterba172ddd62011-04-21 00:48:27 +02006514 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006515 if (!em)
6516 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006517 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006518 if (!map) {
6519 free_extent_map(em);
6520 return -ENOMEM;
6521 }
6522
Wang Shilong298a8f92014-06-19 10:42:52 +08006523 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006524 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006525 em->start = logical;
6526 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006527 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006528 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006529 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006530
Chris Mason593060d2008-03-25 16:50:33 -04006531 map->num_stripes = num_stripes;
6532 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6533 map->io_align = btrfs_chunk_io_align(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006534 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6535 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006536 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006537 for (i = 0; i < num_stripes; i++) {
6538 map->stripes[i].physical =
6539 btrfs_stripe_offset_nr(leaf, chunk, i);
6540 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006541 read_extent_buffer(leaf, uuid, (unsigned long)
6542 btrfs_stripe_dev_uuid_nr(chunk, i),
6543 BTRFS_UUID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006544 map->stripes[i].dev = btrfs_find_device(fs_info, devid,
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006545 uuid, NULL);
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006546 if (!map->stripes[i].dev &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006547 !btrfs_test_opt(fs_info, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006548 free_extent_map(em);
Anand Jain2b902df2017-10-09 11:07:46 +08006549 btrfs_report_missing_device(fs_info, devid, uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006550 return -ENOENT;
Chris Mason593060d2008-03-25 16:50:33 -04006551 }
Chris Masondfe25022008-05-13 13:46:40 -04006552 if (!map->stripes[i].dev) {
6553 map->stripes[i].dev =
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006554 add_missing_dev(fs_info->fs_devices, devid,
6555 uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08006556 if (IS_ERR(map->stripes[i].dev)) {
Chris Masondfe25022008-05-13 13:46:40 -04006557 free_extent_map(em);
Anand Jainadfb69a2017-10-11 12:46:18 +08006558 btrfs_err(fs_info,
6559 "failed to init missing dev %llu: %ld",
6560 devid, PTR_ERR(map->stripes[i].dev));
6561 return PTR_ERR(map->stripes[i].dev);
Chris Masondfe25022008-05-13 13:46:40 -04006562 }
Anand Jain2b902df2017-10-09 11:07:46 +08006563 btrfs_report_missing_device(fs_info, devid, uuid, false);
Chris Masondfe25022008-05-13 13:46:40 -04006564 }
Anand Jaine12c9622017-12-04 12:54:53 +08006565 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
6566 &(map->stripes[i].dev->dev_state));
6567
Chris Mason0b86a832008-03-24 15:01:56 -04006568 }
6569
Chris Mason890871b2009-09-02 16:24:52 -04006570 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006571 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006572 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006573 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006574 free_extent_map(em);
6575
6576 return 0;
6577}
6578
Jeff Mahoney143bede2012-03-01 14:56:26 +01006579static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006580 struct btrfs_dev_item *dev_item,
6581 struct btrfs_device *device)
6582{
6583 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006584
6585 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006586 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6587 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006588 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006589 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006590 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006591 device->type = btrfs_device_type(leaf, dev_item);
6592 device->io_align = btrfs_device_io_align(leaf, dev_item);
6593 device->io_width = btrfs_device_io_width(leaf, dev_item);
6594 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006595 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Anand Jain401e29c2017-12-04 12:54:55 +08006596 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Chris Mason0b86a832008-03-24 15:01:56 -04006597
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006598 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006599 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006600}
6601
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006602static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info,
Miao Xie5f375832014-09-03 21:35:46 +08006603 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006604{
6605 struct btrfs_fs_devices *fs_devices;
6606 int ret;
6607
Li Zefanb367e472011-12-07 11:38:24 +08006608 BUG_ON(!mutex_is_locked(&uuid_mutex));
David Sterba2dfeca92017-06-14 02:48:07 +02006609 ASSERT(fsid);
Yan Zheng2b820322008-11-17 21:11:30 -05006610
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006611 fs_devices = fs_info->fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05006612 while (fs_devices) {
Anand Jain44880fd2017-07-29 17:50:09 +08006613 if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE))
Miao Xie5f375832014-09-03 21:35:46 +08006614 return fs_devices;
6615
Yan Zheng2b820322008-11-17 21:11:30 -05006616 fs_devices = fs_devices->seed;
6617 }
6618
6619 fs_devices = find_fsid(fsid);
6620 if (!fs_devices) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006621 if (!btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08006622 return ERR_PTR(-ENOENT);
6623
6624 fs_devices = alloc_fs_devices(fsid);
6625 if (IS_ERR(fs_devices))
6626 return fs_devices;
6627
6628 fs_devices->seeding = 1;
6629 fs_devices->opened = 1;
6630 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006631 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006632
6633 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006634 if (IS_ERR(fs_devices))
6635 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006636
Christoph Hellwig97288f22008-12-02 06:36:09 -05006637 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006638 fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006639 if (ret) {
6640 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006641 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006642 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006643 }
Yan Zheng2b820322008-11-17 21:11:30 -05006644
6645 if (!fs_devices->seeding) {
6646 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006647 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006648 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006649 goto out;
6650 }
6651
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006652 fs_devices->seed = fs_info->fs_devices->seed;
6653 fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006654out:
Miao Xie5f375832014-09-03 21:35:46 +08006655 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006656}
6657
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006658static int read_one_dev(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04006659 struct extent_buffer *leaf,
6660 struct btrfs_dev_item *dev_item)
6661{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006662 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006663 struct btrfs_device *device;
6664 u64 devid;
6665 int ret;
Anand Jain44880fd2017-07-29 17:50:09 +08006666 u8 fs_uuid[BTRFS_FSID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006667 u8 dev_uuid[BTRFS_UUID_SIZE];
6668
Chris Mason0b86a832008-03-24 15:01:56 -04006669 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006670 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006671 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006672 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08006673 BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05006674
Anand Jain44880fd2017-07-29 17:50:09 +08006675 if (memcmp(fs_uuid, fs_info->fsid, BTRFS_FSID_SIZE)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006676 fs_devices = open_seed_devices(fs_info, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006677 if (IS_ERR(fs_devices))
6678 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006679 }
6680
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006681 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006682 if (!device) {
Qu Wenruoc5502452017-03-09 09:34:42 +08006683 if (!btrfs_test_opt(fs_info, DEGRADED)) {
Anand Jain2b902df2017-10-09 11:07:46 +08006684 btrfs_report_missing_device(fs_info, devid,
6685 dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006686 return -ENOENT;
Qu Wenruoc5502452017-03-09 09:34:42 +08006687 }
Yan Zheng2b820322008-11-17 21:11:30 -05006688
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006689 device = add_missing_dev(fs_devices, devid, dev_uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08006690 if (IS_ERR(device)) {
6691 btrfs_err(fs_info,
6692 "failed to add missing dev %llu: %ld",
6693 devid, PTR_ERR(device));
6694 return PTR_ERR(device);
6695 }
Anand Jain2b902df2017-10-09 11:07:46 +08006696 btrfs_report_missing_device(fs_info, devid, dev_uuid, false);
Miao Xie5f375832014-09-03 21:35:46 +08006697 } else {
Qu Wenruoc5502452017-03-09 09:34:42 +08006698 if (!device->bdev) {
Anand Jain2b902df2017-10-09 11:07:46 +08006699 if (!btrfs_test_opt(fs_info, DEGRADED)) {
6700 btrfs_report_missing_device(fs_info,
6701 devid, dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006702 return -ENOENT;
Anand Jain2b902df2017-10-09 11:07:46 +08006703 }
6704 btrfs_report_missing_device(fs_info, devid,
6705 dev_uuid, false);
Qu Wenruoc5502452017-03-09 09:34:42 +08006706 }
Miao Xie5f375832014-09-03 21:35:46 +08006707
Anand Jaine6e674b2017-12-04 12:54:54 +08006708 if (!device->bdev &&
6709 !test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006710 /*
6711 * this happens when a device that was properly setup
6712 * in the device info lists suddenly goes bad.
6713 * device->bdev is NULL, and so we have to set
6714 * device->missing to one here
6715 */
Miao Xie5f375832014-09-03 21:35:46 +08006716 device->fs_devices->missing_devices++;
Anand Jaine6e674b2017-12-04 12:54:54 +08006717 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05006718 }
Miao Xie5f375832014-09-03 21:35:46 +08006719
6720 /* Move the device to its own fs_devices */
6721 if (device->fs_devices != fs_devices) {
Anand Jaine6e674b2017-12-04 12:54:54 +08006722 ASSERT(test_bit(BTRFS_DEV_STATE_MISSING,
6723 &device->dev_state));
Miao Xie5f375832014-09-03 21:35:46 +08006724
6725 list_move(&device->dev_list, &fs_devices->devices);
6726 device->fs_devices->num_devices--;
6727 fs_devices->num_devices++;
6728
6729 device->fs_devices->missing_devices--;
6730 fs_devices->missing_devices++;
6731
6732 device->fs_devices = fs_devices;
6733 }
Yan Zheng2b820322008-11-17 21:11:30 -05006734 }
6735
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006736 if (device->fs_devices != fs_info->fs_devices) {
Anand Jainebbede42017-12-04 12:54:52 +08006737 BUG_ON(test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state));
Yan Zheng2b820322008-11-17 21:11:30 -05006738 if (device->generation !=
6739 btrfs_device_generation(leaf, dev_item))
6740 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006741 }
Chris Mason0b86a832008-03-24 15:01:56 -04006742
6743 fill_device_from_item(leaf, dev_item, device);
Anand Jaine12c9622017-12-04 12:54:53 +08006744 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jainebbede42017-12-04 12:54:52 +08006745 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jain401e29c2017-12-04 12:54:55 +08006746 !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05006747 device->fs_devices->total_rw_bytes += device->total_bytes;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03006748 atomic64_add(device->total_bytes - device->bytes_used,
6749 &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04006750 }
Chris Mason0b86a832008-03-24 15:01:56 -04006751 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006752 return ret;
6753}
6754
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006755int btrfs_read_sys_array(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006756{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006757 struct btrfs_root *root = fs_info->tree_root;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006758 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006759 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006760 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006761 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006762 u8 *array_ptr;
6763 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006764 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006765 u32 num_stripes;
6766 u32 array_size;
6767 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006768 u32 cur_offset;
Liu Boe06cd3d2016-06-03 12:05:15 -07006769 u64 type;
Chris Mason84eed902008-04-25 09:04:37 -04006770 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006771
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006772 ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize);
David Sterbaa83fffb2014-06-15 02:39:54 +02006773 /*
6774 * This will create extent buffer of nodesize, superblock size is
6775 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6776 * overallocate but we can keep it as-is, only the first page is used.
6777 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006778 sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET);
Liu Boc871b0f2016-06-06 12:01:23 -07006779 if (IS_ERR(sb))
6780 return PTR_ERR(sb);
David Sterba4db8c522015-12-03 13:06:46 +01006781 set_extent_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006782 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006783 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006784 * The sb extent buffer is artificial and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01006785 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02006786 * pages up-to-date when the page is larger: extent does not cover the
6787 * whole page and consequently check_page_uptodate does not find all
6788 * the page's extents up-to-date (the hole beyond sb),
6789 * write_extent_buffer then triggers a WARN_ON.
6790 *
6791 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6792 * but sb spans only this function. Add an explicit SetPageUptodate call
6793 * to silence the warning eg. on PowerPC 64.
6794 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006795 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006796 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006797
Chris Masona061fc82008-05-07 11:43:44 -04006798 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006799 array_size = btrfs_super_sys_array_size(super_copy);
6800
David Sterba1ffb22c2014-10-31 19:02:42 +01006801 array_ptr = super_copy->sys_chunk_array;
6802 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6803 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006804
David Sterba1ffb22c2014-10-31 19:02:42 +01006805 while (cur_offset < array_size) {
6806 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006807 len = sizeof(*disk_key);
6808 if (cur_offset + len > array_size)
6809 goto out_short_read;
6810
Chris Mason0b86a832008-03-24 15:01:56 -04006811 btrfs_disk_key_to_cpu(&key, disk_key);
6812
David Sterba1ffb22c2014-10-31 19:02:42 +01006813 array_ptr += len;
6814 sb_array_offset += len;
6815 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006816
Chris Mason0d81ba52008-03-24 15:02:07 -04006817 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006818 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006819 /*
6820 * At least one btrfs_chunk with one stripe must be
6821 * present, exact stripe count check comes afterwards
6822 */
6823 len = btrfs_chunk_item_size(1);
6824 if (cur_offset + len > array_size)
6825 goto out_short_read;
6826
6827 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006828 if (!num_stripes) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006829 btrfs_err(fs_info,
6830 "invalid number of stripes %u in sys_array at offset %u",
David Sterbaf5cdedd2015-11-30 17:27:06 +01006831 num_stripes, cur_offset);
6832 ret = -EIO;
6833 break;
6834 }
6835
Liu Boe06cd3d2016-06-03 12:05:15 -07006836 type = btrfs_chunk_type(sb, chunk);
6837 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006838 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006839 "invalid chunk type %llu in sys_array at offset %u",
6840 type, cur_offset);
6841 ret = -EIO;
6842 break;
6843 }
6844
David Sterbae3540ea2014-11-05 15:24:51 +01006845 len = btrfs_chunk_item_size(num_stripes);
6846 if (cur_offset + len > array_size)
6847 goto out_short_read;
6848
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006849 ret = read_one_chunk(fs_info, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006850 if (ret)
6851 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006852 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006853 btrfs_err(fs_info,
6854 "unexpected item type %u in sys_array at offset %u",
6855 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006856 ret = -EIO;
6857 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006858 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006859 array_ptr += len;
6860 sb_array_offset += len;
6861 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006862 }
Liu Bod8651772016-06-03 17:41:42 -07006863 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006864 free_extent_buffer_stale(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006865 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006866
6867out_short_read:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006868 btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u",
David Sterbae3540ea2014-11-05 15:24:51 +01006869 len, cur_offset);
Liu Bod8651772016-06-03 17:41:42 -07006870 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006871 free_extent_buffer_stale(sb);
David Sterbae3540ea2014-11-05 15:24:51 +01006872 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006873}
6874
Qu Wenruo21634a12017-03-09 09:34:36 +08006875/*
6876 * Check if all chunks in the fs are OK for read-write degraded mount
6877 *
Anand Jain6528b992017-12-18 17:08:59 +08006878 * If the @failing_dev is specified, it's accounted as missing.
6879 *
Qu Wenruo21634a12017-03-09 09:34:36 +08006880 * Return true if all chunks meet the minimal RW mount requirements.
6881 * Return false if any chunk doesn't meet the minimal RW mount requirements.
6882 */
Anand Jain6528b992017-12-18 17:08:59 +08006883bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info,
6884 struct btrfs_device *failing_dev)
Qu Wenruo21634a12017-03-09 09:34:36 +08006885{
6886 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
6887 struct extent_map *em;
6888 u64 next_start = 0;
6889 bool ret = true;
6890
6891 read_lock(&map_tree->map_tree.lock);
6892 em = lookup_extent_mapping(&map_tree->map_tree, 0, (u64)-1);
6893 read_unlock(&map_tree->map_tree.lock);
6894 /* No chunk at all? Return false anyway */
6895 if (!em) {
6896 ret = false;
6897 goto out;
6898 }
6899 while (em) {
6900 struct map_lookup *map;
6901 int missing = 0;
6902 int max_tolerated;
6903 int i;
6904
6905 map = em->map_lookup;
6906 max_tolerated =
6907 btrfs_get_num_tolerated_disk_barrier_failures(
6908 map->type);
6909 for (i = 0; i < map->num_stripes; i++) {
6910 struct btrfs_device *dev = map->stripes[i].dev;
6911
Anand Jaine6e674b2017-12-04 12:54:54 +08006912 if (!dev || !dev->bdev ||
6913 test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) ||
Qu Wenruo21634a12017-03-09 09:34:36 +08006914 dev->last_flush_error)
6915 missing++;
Anand Jain6528b992017-12-18 17:08:59 +08006916 else if (failing_dev && failing_dev == dev)
6917 missing++;
Qu Wenruo21634a12017-03-09 09:34:36 +08006918 }
6919 if (missing > max_tolerated) {
Anand Jain6528b992017-12-18 17:08:59 +08006920 if (!failing_dev)
6921 btrfs_warn(fs_info,
Qu Wenruo21634a12017-03-09 09:34:36 +08006922 "chunk %llu missing %d devices, max tolerance is %d for writeable mount",
6923 em->start, missing, max_tolerated);
6924 free_extent_map(em);
6925 ret = false;
6926 goto out;
6927 }
6928 next_start = extent_map_end(em);
6929 free_extent_map(em);
6930
6931 read_lock(&map_tree->map_tree.lock);
6932 em = lookup_extent_mapping(&map_tree->map_tree, next_start,
6933 (u64)(-1) - next_start);
6934 read_unlock(&map_tree->map_tree.lock);
6935 }
6936out:
6937 return ret;
6938}
6939
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006940int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006941{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006942 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04006943 struct btrfs_path *path;
6944 struct extent_buffer *leaf;
6945 struct btrfs_key key;
6946 struct btrfs_key found_key;
6947 int ret;
6948 int slot;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006949 u64 total_dev = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006950
Chris Mason0b86a832008-03-24 15:01:56 -04006951 path = btrfs_alloc_path();
6952 if (!path)
6953 return -ENOMEM;
6954
Li Zefanb367e472011-12-07 11:38:24 +08006955 mutex_lock(&uuid_mutex);
David Sterba34441362016-10-04 19:34:27 +02006956 mutex_lock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006957
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006958 /*
6959 * Read all device items, and then all the chunk items. All
6960 * device items are found before any chunk item (their object id
6961 * is smaller than the lowest possible object id for a chunk
6962 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006963 */
6964 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6965 key.offset = 0;
6966 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006967 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006968 if (ret < 0)
6969 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006970 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006971 leaf = path->nodes[0];
6972 slot = path->slots[0];
6973 if (slot >= btrfs_header_nritems(leaf)) {
6974 ret = btrfs_next_leaf(root, path);
6975 if (ret == 0)
6976 continue;
6977 if (ret < 0)
6978 goto error;
6979 break;
6980 }
6981 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006982 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6983 struct btrfs_dev_item *dev_item;
6984 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006985 struct btrfs_dev_item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006986 ret = read_one_dev(fs_info, leaf, dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006987 if (ret)
6988 goto error;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006989 total_dev++;
Chris Mason0b86a832008-03-24 15:01:56 -04006990 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6991 struct btrfs_chunk *chunk;
6992 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006993 ret = read_one_chunk(fs_info, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006994 if (ret)
6995 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006996 }
6997 path->slots[0]++;
6998 }
Liu Bo99e3ecf2016-06-03 12:05:14 -07006999
7000 /*
7001 * After loading chunk tree, we've got all device information,
7002 * do another round of validation checks.
7003 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007004 if (total_dev != fs_info->fs_devices->total_devices) {
7005 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07007006 "super_num_devices %llu mismatch with num_devices %llu found here",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007007 btrfs_super_num_devices(fs_info->super_copy),
Liu Bo99e3ecf2016-06-03 12:05:14 -07007008 total_dev);
7009 ret = -EINVAL;
7010 goto error;
7011 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007012 if (btrfs_super_total_bytes(fs_info->super_copy) <
7013 fs_info->fs_devices->total_rw_bytes) {
7014 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07007015 "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007016 btrfs_super_total_bytes(fs_info->super_copy),
7017 fs_info->fs_devices->total_rw_bytes);
Liu Bo99e3ecf2016-06-03 12:05:14 -07007018 ret = -EINVAL;
7019 goto error;
7020 }
Chris Mason0b86a832008-03-24 15:01:56 -04007021 ret = 0;
7022error:
David Sterba34441362016-10-04 19:34:27 +02007023 mutex_unlock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08007024 mutex_unlock(&uuid_mutex);
7025
Yan Zheng2b820322008-11-17 21:11:30 -05007026 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04007027 return ret;
7028}
Stefan Behrens442a4f62012-05-25 16:06:08 +02007029
Miao Xiecb517ea2013-05-15 07:48:19 +00007030void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
7031{
7032 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7033 struct btrfs_device *device;
7034
Liu Bo29cc83f2014-05-11 23:14:59 +08007035 while (fs_devices) {
7036 mutex_lock(&fs_devices->device_list_mutex);
7037 list_for_each_entry(device, &fs_devices->devices, dev_list)
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007038 device->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08007039 mutex_unlock(&fs_devices->device_list_mutex);
7040
7041 fs_devices = fs_devices->seed;
7042 }
Miao Xiecb517ea2013-05-15 07:48:19 +00007043}
7044
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007045static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
7046{
7047 int i;
7048
7049 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7050 btrfs_dev_stat_reset(dev, i);
7051}
7052
7053int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
7054{
7055 struct btrfs_key key;
7056 struct btrfs_key found_key;
7057 struct btrfs_root *dev_root = fs_info->dev_root;
7058 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7059 struct extent_buffer *eb;
7060 int slot;
7061 int ret = 0;
7062 struct btrfs_device *device;
7063 struct btrfs_path *path = NULL;
7064 int i;
7065
7066 path = btrfs_alloc_path();
7067 if (!path) {
7068 ret = -ENOMEM;
7069 goto out;
7070 }
7071
7072 mutex_lock(&fs_devices->device_list_mutex);
7073 list_for_each_entry(device, &fs_devices->devices, dev_list) {
7074 int item_size;
7075 struct btrfs_dev_stats_item *ptr;
7076
David Sterba242e2952016-01-25 17:51:31 +01007077 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7078 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007079 key.offset = device->devid;
7080 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
7081 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007082 __btrfs_reset_dev_stats(device);
7083 device->dev_stats_valid = 1;
7084 btrfs_release_path(path);
7085 continue;
7086 }
7087 slot = path->slots[0];
7088 eb = path->nodes[0];
7089 btrfs_item_key_to_cpu(eb, &found_key, slot);
7090 item_size = btrfs_item_size_nr(eb, slot);
7091
7092 ptr = btrfs_item_ptr(eb, slot,
7093 struct btrfs_dev_stats_item);
7094
7095 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7096 if (item_size >= (1 + i) * sizeof(__le64))
7097 btrfs_dev_stat_set(device, i,
7098 btrfs_dev_stats_value(eb, ptr, i));
7099 else
7100 btrfs_dev_stat_reset(device, i);
7101 }
7102
7103 device->dev_stats_valid = 1;
7104 btrfs_dev_stat_print_on_load(device);
7105 btrfs_release_path(path);
7106 }
7107 mutex_unlock(&fs_devices->device_list_mutex);
7108
7109out:
7110 btrfs_free_path(path);
7111 return ret < 0 ? ret : 0;
7112}
7113
7114static int update_dev_stat_item(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007115 struct btrfs_fs_info *fs_info,
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007116 struct btrfs_device *device)
7117{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007118 struct btrfs_root *dev_root = fs_info->dev_root;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007119 struct btrfs_path *path;
7120 struct btrfs_key key;
7121 struct extent_buffer *eb;
7122 struct btrfs_dev_stats_item *ptr;
7123 int ret;
7124 int i;
7125
David Sterba242e2952016-01-25 17:51:31 +01007126 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7127 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007128 key.offset = device->devid;
7129
7130 path = btrfs_alloc_path();
David Sterbafa252992017-02-15 09:35:01 +01007131 if (!path)
7132 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007133 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
7134 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007135 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007136 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04007137 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007138 goto out;
7139 }
7140
7141 if (ret == 0 &&
7142 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
7143 /* need to delete old one and insert a new one */
7144 ret = btrfs_del_item(trans, dev_root, path);
7145 if (ret != 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007146 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007147 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04007148 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007149 goto out;
7150 }
7151 ret = 1;
7152 }
7153
7154 if (ret == 1) {
7155 /* need to insert a new item */
7156 btrfs_release_path(path);
7157 ret = btrfs_insert_empty_item(trans, dev_root, path,
7158 &key, sizeof(*ptr));
7159 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007160 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007161 "insert dev_stats item for device %s failed %d",
7162 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007163 goto out;
7164 }
7165 }
7166
7167 eb = path->nodes[0];
7168 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
7169 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7170 btrfs_set_dev_stats_value(eb, ptr, i,
7171 btrfs_dev_stat_read(device, i));
7172 btrfs_mark_buffer_dirty(eb);
7173
7174out:
7175 btrfs_free_path(path);
7176 return ret;
7177}
7178
7179/*
7180 * called from commit_transaction. Writes all changed device stats to disk.
7181 */
7182int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
7183 struct btrfs_fs_info *fs_info)
7184{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007185 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7186 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08007187 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007188 int ret = 0;
7189
7190 mutex_lock(&fs_devices->device_list_mutex);
7191 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Nikolay Borisov9deae962017-10-24 13:47:37 +03007192 stats_cnt = atomic_read(&device->dev_stats_ccnt);
7193 if (!device->dev_stats_valid || stats_cnt == 0)
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007194 continue;
7195
Nikolay Borisov9deae962017-10-24 13:47:37 +03007196
7197 /*
7198 * There is a LOAD-LOAD control dependency between the value of
7199 * dev_stats_ccnt and updating the on-disk values which requires
7200 * reading the in-memory counters. Such control dependencies
7201 * require explicit read memory barriers.
7202 *
7203 * This memory barriers pairs with smp_mb__before_atomic in
7204 * btrfs_dev_stat_inc/btrfs_dev_stat_set and with the full
7205 * barrier implied by atomic_xchg in
7206 * btrfs_dev_stats_read_and_reset
7207 */
7208 smp_rmb();
7209
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007210 ret = update_dev_stat_item(trans, fs_info, device);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007211 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08007212 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007213 }
7214 mutex_unlock(&fs_devices->device_list_mutex);
7215
7216 return ret;
7217}
7218
Stefan Behrens442a4f62012-05-25 16:06:08 +02007219void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
7220{
7221 btrfs_dev_stat_inc(dev, index);
7222 btrfs_dev_stat_print_on_error(dev);
7223}
7224
Eric Sandeen48a3b632013-04-25 20:41:01 +00007225static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02007226{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007227 if (!dev->dev_stats_valid)
7228 return;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007229 btrfs_err_rl_in_rcu(dev->fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02007230 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007231 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02007232 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7233 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7234 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05007235 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7236 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02007237}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007238
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007239static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
7240{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06007241 int i;
7242
7243 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7244 if (btrfs_dev_stat_read(dev, i) != 0)
7245 break;
7246 if (i == BTRFS_DEV_STAT_VALUES_MAX)
7247 return; /* all values == 0, suppress message */
7248
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007249 btrfs_info_in_rcu(dev->fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007250 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007251 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007252 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7253 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7254 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
7255 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7256 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
7257}
7258
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007259int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06007260 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007261{
7262 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007263 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007264 int i;
7265
7266 mutex_lock(&fs_devices->device_list_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007267 dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007268 mutex_unlock(&fs_devices->device_list_mutex);
7269
7270 if (!dev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007271 btrfs_warn(fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007272 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007273 } else if (!dev->dev_stats_valid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007274 btrfs_warn(fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007275 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06007276 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007277 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7278 if (stats->nr_items > i)
7279 stats->values[i] =
7280 btrfs_dev_stat_read_and_reset(dev, i);
7281 else
7282 btrfs_dev_stat_reset(dev, i);
7283 }
7284 } else {
7285 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7286 if (stats->nr_items > i)
7287 stats->values[i] = btrfs_dev_stat_read(dev, i);
7288 }
7289 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
7290 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
7291 return 0;
7292}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007293
David Sterbada353f62017-02-14 17:55:53 +01007294void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007295{
7296 struct buffer_head *bh;
7297 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08007298 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007299
Anand Jain12b1c262015-08-14 18:32:59 +08007300 if (!bdev)
7301 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007302
Anand Jain12b1c262015-08-14 18:32:59 +08007303 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
7304 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007305
Anand Jain12b1c262015-08-14 18:32:59 +08007306 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
7307 continue;
7308
7309 disk_super = (struct btrfs_super_block *)bh->b_data;
7310
7311 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
7312 set_buffer_dirty(bh);
7313 sync_dirty_buffer(bh);
7314 brelse(bh);
7315 }
7316
7317 /* Notify udev that device has changed */
7318 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
7319
7320 /* Update ctime/mtime for device path for libblkid */
7321 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007322}
Miao Xie935e5cc2014-09-03 21:35:33 +08007323
7324/*
7325 * Update the size of all devices, which is used for writing out the
7326 * super blocks.
7327 */
7328void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
7329{
7330 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7331 struct btrfs_device *curr, *next;
7332
7333 if (list_empty(&fs_devices->resized_devices))
7334 return;
7335
7336 mutex_lock(&fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02007337 mutex_lock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007338 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
7339 resized_list) {
7340 list_del_init(&curr->resized_list);
7341 curr->commit_total_bytes = curr->disk_total_bytes;
7342 }
David Sterba34441362016-10-04 19:34:27 +02007343 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007344 mutex_unlock(&fs_devices->device_list_mutex);
7345}
Miao Xiece7213c2014-09-03 21:35:34 +08007346
7347/* Must be invoked during the transaction commit */
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007348void btrfs_update_commit_device_bytes_used(struct btrfs_transaction *trans)
Miao Xiece7213c2014-09-03 21:35:34 +08007349{
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007350 struct btrfs_fs_info *fs_info = trans->fs_info;
Miao Xiece7213c2014-09-03 21:35:34 +08007351 struct extent_map *em;
7352 struct map_lookup *map;
7353 struct btrfs_device *dev;
7354 int i;
7355
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007356 if (list_empty(&trans->pending_chunks))
Miao Xiece7213c2014-09-03 21:35:34 +08007357 return;
7358
7359 /* In order to kick the device replace finish process */
David Sterba34441362016-10-04 19:34:27 +02007360 mutex_lock(&fs_info->chunk_mutex);
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007361 list_for_each_entry(em, &trans->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04007362 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08007363
7364 for (i = 0; i < map->num_stripes; i++) {
7365 dev = map->stripes[i].dev;
7366 dev->commit_bytes_used = dev->bytes_used;
7367 }
7368 }
David Sterba34441362016-10-04 19:34:27 +02007369 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007370}
Anand Jain5a13f432015-03-10 06:38:31 +08007371
7372void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
7373{
7374 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7375 while (fs_devices) {
7376 fs_devices->fs_info = fs_info;
7377 fs_devices = fs_devices->seed;
7378 }
7379}
7380
7381void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
7382{
7383 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7384 while (fs_devices) {
7385 fs_devices->fs_info = NULL;
7386 fs_devices = fs_devices->seed;
7387 }
7388}