blob: 34c889a66240f331fc1edafb49129b1897007c24 [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);
648 } else {
649 fs_devs->num_devices--;
650 list_del(&dev->dev_list);
David Sterba55de4802017-10-30 18:55:47 +0100651 free_device(dev);
Anand Jain4fde46f2015-06-17 21:10:48 +0800652 }
Anand Jain4fde46f2015-06-17 21:10:48 +0800653 }
654 }
655}
656
Anand Jain0fb08bc2017-11-09 23:45:24 +0800657static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices,
658 struct btrfs_device *device, fmode_t flags,
659 void *holder)
660{
661 struct request_queue *q;
662 struct block_device *bdev;
663 struct buffer_head *bh;
664 struct btrfs_super_block *disk_super;
665 u64 devid;
666 int ret;
667
668 if (device->bdev)
669 return -EINVAL;
670 if (!device->name)
671 return -EINVAL;
672
673 ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
674 &bdev, &bh);
675 if (ret)
676 return ret;
677
678 disk_super = (struct btrfs_super_block *)bh->b_data;
679 devid = btrfs_stack_device_id(&disk_super->dev_item);
680 if (devid != device->devid)
681 goto error_brelse;
682
683 if (memcmp(device->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE))
684 goto error_brelse;
685
686 device->generation = btrfs_super_generation(disk_super);
687
688 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
Anand Jainebbede42017-12-04 12:54:52 +0800689 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800690 fs_devices->seeding = 1;
691 } else {
Anand Jainebbede42017-12-04 12:54:52 +0800692 if (bdev_read_only(bdev))
693 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
694 else
695 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800696 }
697
698 q = bdev_get_queue(bdev);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800699 if (!blk_queue_nonrot(q))
700 fs_devices->rotating = 1;
701
702 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +0800703 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800704 device->mode = flags;
705
706 fs_devices->open_devices++;
Anand Jainebbede42017-12-04 12:54:52 +0800707 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
708 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Anand Jain0fb08bc2017-11-09 23:45:24 +0800709 fs_devices->rw_devices++;
710 list_add(&device->dev_alloc_list, &fs_devices->alloc_list);
711 }
712 brelse(bh);
713
714 return 0;
715
716error_brelse:
717 brelse(bh);
718 blkdev_put(bdev, flags);
719
720 return -EINVAL;
721}
722
David Sterba60999ca2014-03-26 18:26:36 +0100723/*
724 * Add new device to list of registered devices
725 *
726 * Returns:
Anand Jaine124ece2018-01-18 22:02:35 +0800727 * device pointer which was just added or updated when successful
728 * error pointer when failed
David Sterba60999ca2014-03-26 18:26:36 +0100729 */
Anand Jaine124ece2018-01-18 22:02:35 +0800730static noinline struct btrfs_device *device_list_add(const char *path,
731 struct btrfs_super_block *disk_super, u64 devid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400732{
733 struct btrfs_device *device;
734 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400735 struct rcu_string *name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400736 u64 found_transid = btrfs_super_generation(disk_super);
737
738 fs_devices = find_fsid(disk_super->fsid);
739 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300740 fs_devices = alloc_fs_devices(disk_super->fsid);
741 if (IS_ERR(fs_devices))
Anand Jaine124ece2018-01-18 22:02:35 +0800742 return ERR_CAST(fs_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300743
Chris Mason8a4b83c2008-03-24 15:02:07 -0400744 list_add(&fs_devices->list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300745
Chris Mason8a4b83c2008-03-24 15:02:07 -0400746 device = NULL;
747 } else {
David Sterba35c70102017-06-15 19:51:51 +0200748 device = find_device(fs_devices, devid,
749 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400750 }
Miao Xie443f24f2014-07-24 11:37:15 +0800751
Chris Mason8a4b83c2008-03-24 15:02:07 -0400752 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500753 if (fs_devices->opened)
Anand Jaine124ece2018-01-18 22:02:35 +0800754 return ERR_PTR(-EBUSY);
Yan Zheng2b820322008-11-17 21:11:30 -0500755
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300756 device = btrfs_alloc_device(NULL, &devid,
757 disk_super->dev_item.uuid);
758 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400759 /* we can safely leave the fs_devices entry around */
Anand Jaine124ece2018-01-18 22:02:35 +0800760 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400761 }
Josef Bacik606686e2012-06-04 14:03:51 -0400762
763 name = rcu_string_strdup(path, GFP_NOFS);
764 if (!name) {
David Sterba55de4802017-10-30 18:55:47 +0100765 free_device(device);
Anand Jaine124ece2018-01-18 22:02:35 +0800766 return ERR_PTR(-ENOMEM);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400767 }
Josef Bacik606686e2012-06-04 14:03:51 -0400768 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200769
Chris Masone5e9a522009-06-10 15:17:02 -0400770 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000771 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100772 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400773 mutex_unlock(&fs_devices->device_list_mutex);
774
Yan Zheng2b820322008-11-17 21:11:30 -0500775 device->fs_devices = fs_devices;
Anand Jaind8367db2018-01-18 22:00:37 +0800776 btrfs_free_stale_devices(path, device);
Anand Jain327f18c2018-01-18 22:02:33 +0800777
778 if (disk_super->label[0])
779 pr_info("BTRFS: device label %s devid %llu transid %llu %s\n",
780 disk_super->label, devid, found_transid, path);
781 else
782 pr_info("BTRFS: device fsid %pU devid %llu transid %llu %s\n",
783 disk_super->fsid, devid, found_transid, path);
784
Josef Bacik606686e2012-06-04 14:03:51 -0400785 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800786 /*
787 * When FS is already mounted.
788 * 1. If you are here and if the device->name is NULL that
789 * means this device was missing at time of FS mount.
790 * 2. If you are here and if the device->name is different
791 * from 'path' that means either
792 * a. The same device disappeared and reappeared with
793 * different name. or
794 * b. The missing-disk-which-was-replaced, has
795 * reappeared now.
796 *
797 * We must allow 1 and 2a above. But 2b would be a spurious
798 * and unintentional.
799 *
800 * Further in case of 1 and 2a above, the disk at 'path'
801 * would have missed some transaction when it was away and
802 * in case of 2a the stale bdev has to be updated as well.
803 * 2b must not be allowed at all time.
804 */
805
806 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700807 * For now, we do allow update to btrfs_fs_device through the
808 * btrfs dev scan cli after FS has been mounted. We're still
809 * tracking a problem where systems fail mount by subvolume id
810 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800811 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700812 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800813 /*
814 * That is if the FS is _not_ mounted and if you
815 * are here, that means there is more than one
816 * disk with same uuid and devid.We keep the one
817 * with larger generation number or the last-in if
818 * generation are equal.
819 */
Anand Jaine124ece2018-01-18 22:02:35 +0800820 return ERR_PTR(-EEXIST);
Anand Jain77bdae42014-07-03 18:22:06 +0800821 }
Anand Jainb96de002014-07-03 18:22:05 +0800822
Josef Bacik606686e2012-06-04 14:03:51 -0400823 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000824 if (!name)
Anand Jaine124ece2018-01-18 22:02:35 +0800825 return ERR_PTR(-ENOMEM);
Josef Bacik606686e2012-06-04 14:03:51 -0400826 rcu_string_free(device->name);
827 rcu_assign_pointer(device->name, name);
Anand Jaine6e674b2017-12-04 12:54:54 +0800828 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -0500829 fs_devices->missing_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +0800830 clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -0500831 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400832 }
833
Anand Jain77bdae42014-07-03 18:22:06 +0800834 /*
835 * Unmount does not free the btrfs_device struct but would zero
836 * generation along with most of the other members. So just update
837 * it back. We need it to pick the disk with largest generation
838 * (as above).
839 */
840 if (!fs_devices->opened)
841 device->generation = found_transid;
842
Anand Jainf2788d22018-01-18 22:02:34 +0800843 fs_devices->total_devices = btrfs_super_num_devices(disk_super);
844
Anand Jaine124ece2018-01-18 22:02:35 +0800845 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400846}
847
Yan Zhenge4404d62008-12-12 10:03:26 -0500848static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
849{
850 struct btrfs_fs_devices *fs_devices;
851 struct btrfs_device *device;
852 struct btrfs_device *orig_dev;
853
Ilya Dryomov2208a372013-08-12 14:33:03 +0300854 fs_devices = alloc_fs_devices(orig->fsid);
855 if (IS_ERR(fs_devices))
856 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500857
Miao Xieadbbb862014-09-03 21:35:42 +0800858 mutex_lock(&orig->device_list_mutex);
Josef Bacik02db0842012-06-21 16:03:58 -0400859 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500860
Xiao Guangrong46224702011-04-20 10:08:47 +0000861 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500862 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400863 struct rcu_string *name;
864
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300865 device = btrfs_alloc_device(NULL, &orig_dev->devid,
866 orig_dev->uuid);
867 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500868 goto error;
869
Josef Bacik606686e2012-06-04 14:03:51 -0400870 /*
871 * This is ok to do without rcu read locked because we hold the
872 * uuid mutex so nothing we touch in here is going to disappear.
873 */
Anand Jaine755f782014-06-30 17:12:47 +0800874 if (orig_dev->name) {
David Sterba78f2c9e2016-02-11 14:25:38 +0100875 name = rcu_string_strdup(orig_dev->name->str,
876 GFP_KERNEL);
Anand Jaine755f782014-06-30 17:12:47 +0800877 if (!name) {
David Sterba55de4802017-10-30 18:55:47 +0100878 free_device(device);
Anand Jaine755f782014-06-30 17:12:47 +0800879 goto error;
880 }
881 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400882 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500883
Yan Zhenge4404d62008-12-12 10:03:26 -0500884 list_add(&device->dev_list, &fs_devices->devices);
885 device->fs_devices = fs_devices;
886 fs_devices->num_devices++;
887 }
Miao Xieadbbb862014-09-03 21:35:42 +0800888 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500889 return fs_devices;
890error:
Miao Xieadbbb862014-09-03 21:35:42 +0800891 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500892 free_fs_devices(fs_devices);
893 return ERR_PTR(-ENOMEM);
894}
895
Eric Sandeen9eaed212014-08-01 18:12:35 -0500896void btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400897{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500898 struct btrfs_device *device, *next;
Miao Xie443f24f2014-07-24 11:37:15 +0800899 struct btrfs_device *latest_dev = NULL;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500900
Chris Masondfe25022008-05-13 13:46:40 -0400901 mutex_lock(&uuid_mutex);
902again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000903 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500904 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Anand Jaine12c9622017-12-04 12:54:53 +0800905 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
906 &device->dev_state)) {
Anand Jain401e29c2017-12-04 12:54:55 +0800907 if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
908 &device->dev_state) &&
909 (!latest_dev ||
910 device->generation > latest_dev->generation)) {
Miao Xie443f24f2014-07-24 11:37:15 +0800911 latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500912 }
Yan Zheng2b820322008-11-17 21:11:30 -0500913 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500914 }
Yan Zheng2b820322008-11-17 21:11:30 -0500915
Stefan Behrens8dabb742012-11-06 13:15:27 +0100916 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
917 /*
918 * In the first step, keep the device which has
919 * the correct fsid and the devid that is used
920 * for the dev_replace procedure.
921 * In the second step, the dev_replace state is
922 * read from the device tree and it is known
923 * whether the procedure is really active or
924 * not, which means whether this device is
925 * used or whether it should be removed.
926 */
Anand Jain401e29c2017-12-04 12:54:55 +0800927 if (step == 0 || test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
928 &device->dev_state)) {
Stefan Behrens8dabb742012-11-06 13:15:27 +0100929 continue;
930 }
931 }
Yan Zheng2b820322008-11-17 21:11:30 -0500932 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100933 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500934 device->bdev = NULL;
935 fs_devices->open_devices--;
936 }
Anand Jainebbede42017-12-04 12:54:52 +0800937 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -0500938 list_del_init(&device->dev_alloc_list);
Anand Jainebbede42017-12-04 12:54:52 +0800939 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +0800940 if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
941 &device->dev_state))
Stefan Behrens8dabb742012-11-06 13:15:27 +0100942 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500943 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500944 list_del_init(&device->dev_list);
945 fs_devices->num_devices--;
David Sterba55de4802017-10-30 18:55:47 +0100946 free_device(device);
Chris Masondfe25022008-05-13 13:46:40 -0400947 }
Yan Zheng2b820322008-11-17 21:11:30 -0500948
949 if (fs_devices->seed) {
950 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500951 goto again;
952 }
953
Miao Xie443f24f2014-07-24 11:37:15 +0800954 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500955
Chris Masondfe25022008-05-13 13:46:40 -0400956 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400957}
Chris Masona0af4692008-05-13 16:03:06 -0400958
David Sterbaf06c5962017-06-06 17:08:23 +0200959static void free_device_rcu(struct rcu_head *head)
Xiao Guangrong1f781602011-04-20 10:09:16 +0000960{
961 struct btrfs_device *device;
962
963 device = container_of(head, struct btrfs_device, rcu);
David Sterba55de4802017-10-30 18:55:47 +0100964 free_device(device);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000965}
966
Anand Jain14238812016-07-22 06:04:53 +0800967static void btrfs_close_bdev(struct btrfs_device *device)
968{
David Sterba08ffcae2017-06-19 16:55:35 +0200969 if (!device->bdev)
970 return;
971
Anand Jainebbede42017-12-04 12:54:52 +0800972 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Anand Jain14238812016-07-22 06:04:53 +0800973 sync_blockdev(device->bdev);
974 invalidate_bdev(device->bdev);
975 }
976
David Sterba08ffcae2017-06-19 16:55:35 +0200977 blkdev_put(device->bdev, device->mode);
Anand Jain14238812016-07-22 06:04:53 +0800978}
979
Anand Jain0ccd0522016-09-22 12:56:13 +0800980static void btrfs_prepare_close_one_device(struct btrfs_device *device)
Anand Jainf448341a2016-06-14 18:55:25 +0800981{
982 struct btrfs_fs_devices *fs_devices = device->fs_devices;
983 struct btrfs_device *new_device;
984 struct rcu_string *name;
985
986 if (device->bdev)
987 fs_devices->open_devices--;
988
Anand Jainebbede42017-12-04 12:54:52 +0800989 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jainf448341a2016-06-14 18:55:25 +0800990 device->devid != BTRFS_DEV_REPLACE_DEVID) {
991 list_del_init(&device->dev_alloc_list);
992 fs_devices->rw_devices--;
993 }
994
Anand Jaine6e674b2017-12-04 12:54:54 +0800995 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
Anand Jainf448341a2016-06-14 18:55:25 +0800996 fs_devices->missing_devices--;
997
998 new_device = btrfs_alloc_device(NULL, &device->devid,
999 device->uuid);
1000 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
1001
1002 /* Safe because we are under uuid_mutex */
1003 if (device->name) {
1004 name = rcu_string_strdup(device->name->str, GFP_NOFS);
1005 BUG_ON(!name); /* -ENOMEM */
1006 rcu_assign_pointer(new_device->name, name);
1007 }
1008
1009 list_replace_rcu(&device->dev_list, &new_device->dev_list);
1010 new_device->fs_devices = device->fs_devices;
Anand Jainf448341a2016-06-14 18:55:25 +08001011}
1012
Yan Zheng2b820322008-11-17 21:11:30 -05001013static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001014{
Sasha Levin2037a092015-05-12 19:31:37 -04001015 struct btrfs_device *device, *tmp;
Anand Jain0ccd0522016-09-22 12:56:13 +08001016 struct list_head pending_put;
1017
1018 INIT_LIST_HEAD(&pending_put);
Yan Zhenge4404d62008-12-12 10:03:26 -05001019
Yan Zheng2b820322008-11-17 21:11:30 -05001020 if (--fs_devices->opened > 0)
1021 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001022
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001023 mutex_lock(&fs_devices->device_list_mutex);
Sasha Levin2037a092015-05-12 19:31:37 -04001024 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
Anand Jain0ccd0522016-09-22 12:56:13 +08001025 btrfs_prepare_close_one_device(device);
1026 list_add(&device->dev_list, &pending_put);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001027 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001028 mutex_unlock(&fs_devices->device_list_mutex);
1029
Anand Jain0ccd0522016-09-22 12:56:13 +08001030 /*
1031 * btrfs_show_devname() is using the device_list_mutex,
1032 * sometimes call to blkdev_put() leads vfs calling
1033 * into this func. So do put outside of device_list_mutex,
1034 * as of now.
1035 */
1036 while (!list_empty(&pending_put)) {
1037 device = list_first_entry(&pending_put,
1038 struct btrfs_device, dev_list);
1039 list_del(&device->dev_list);
1040 btrfs_close_bdev(device);
David Sterbaf06c5962017-06-06 17:08:23 +02001041 call_rcu(&device->rcu, free_device_rcu);
Anand Jain0ccd0522016-09-22 12:56:13 +08001042 }
1043
Yan Zhenge4404d62008-12-12 10:03:26 -05001044 WARN_ON(fs_devices->open_devices);
1045 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001046 fs_devices->opened = 0;
1047 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001048
Chris Mason8a4b83c2008-03-24 15:02:07 -04001049 return 0;
1050}
1051
Yan Zheng2b820322008-11-17 21:11:30 -05001052int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
1053{
Yan Zhenge4404d62008-12-12 10:03:26 -05001054 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -05001055 int ret;
1056
1057 mutex_lock(&uuid_mutex);
1058 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05001059 if (!fs_devices->opened) {
1060 seed_devices = fs_devices->seed;
1061 fs_devices->seed = NULL;
1062 }
Yan Zheng2b820322008-11-17 21:11:30 -05001063 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001064
1065 while (seed_devices) {
1066 fs_devices = seed_devices;
1067 seed_devices = fs_devices->seed;
1068 __btrfs_close_devices(fs_devices);
1069 free_fs_devices(fs_devices);
1070 }
Yan Zheng2b820322008-11-17 21:11:30 -05001071 return ret;
1072}
1073
Yan Zhenge4404d62008-12-12 10:03:26 -05001074static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
1075 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001076{
Chris Mason8a4b83c2008-03-24 15:02:07 -04001077 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001078 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +08001079 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -04001080 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001081
Tejun Heod4d77622010-11-13 11:55:18 +01001082 flags |= FMODE_EXCL;
1083
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001084 list_for_each_entry(device, head, dev_list) {
Eric Sandeenf63e0cc2013-04-04 20:45:08 +00001085 /* Just open everything we can; ignore failures here */
Anand Jain0fb08bc2017-11-09 23:45:24 +08001086 if (btrfs_open_one_device(fs_devices, device, flags, holder))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001087 continue;
Chris Masona0af4692008-05-13 16:03:06 -04001088
Anand Jain9f050db2017-11-09 23:45:25 +08001089 if (!latest_dev ||
1090 device->generation > latest_dev->generation)
1091 latest_dev = device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001092 }
Chris Masona0af4692008-05-13 16:03:06 -04001093 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +03001094 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -04001095 goto out;
1096 }
Yan Zheng2b820322008-11-17 21:11:30 -05001097 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +08001098 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -05001099 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -04001100out:
Yan Zheng2b820322008-11-17 21:11:30 -05001101 return ret;
1102}
1103
1104int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -05001105 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -05001106{
1107 int ret;
1108
1109 mutex_lock(&uuid_mutex);
1110 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001111 fs_devices->opened++;
1112 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001113 } else {
Chris Mason15916de2008-11-19 21:17:22 -05001114 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -05001115 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001116 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001117 return ret;
1118}
1119
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001120static void btrfs_release_disk_super(struct page *page)
Anand Jain6cf86a002016-02-13 10:01:29 +08001121{
1122 kunmap(page);
1123 put_page(page);
1124}
1125
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001126static int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr,
1127 struct page **page,
1128 struct btrfs_super_block **disk_super)
Anand Jain6cf86a002016-02-13 10:01:29 +08001129{
1130 void *p;
1131 pgoff_t index;
1132
1133 /* make sure our super fits in the device */
1134 if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode))
1135 return 1;
1136
1137 /* make sure our super fits in the page */
1138 if (sizeof(**disk_super) > PAGE_SIZE)
1139 return 1;
1140
1141 /* make sure our super doesn't straddle pages on disk */
1142 index = bytenr >> PAGE_SHIFT;
1143 if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index)
1144 return 1;
1145
1146 /* pull in the page with our super */
1147 *page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1148 index, GFP_KERNEL);
1149
1150 if (IS_ERR_OR_NULL(*page))
1151 return 1;
1152
1153 p = kmap(*page);
1154
1155 /* align our pointer to the offset of the super block */
1156 *disk_super = p + (bytenr & ~PAGE_MASK);
1157
1158 if (btrfs_super_bytenr(*disk_super) != bytenr ||
1159 btrfs_super_magic(*disk_super) != BTRFS_MAGIC) {
1160 btrfs_release_disk_super(*page);
1161 return 1;
1162 }
1163
1164 if ((*disk_super)->label[0] &&
1165 (*disk_super)->label[BTRFS_LABEL_SIZE - 1])
1166 (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0';
1167
1168 return 0;
1169}
1170
David Sterba6f60cbd2013-02-15 11:31:02 -07001171/*
1172 * Look for a btrfs signature on a device. This may be called out of the mount path
1173 * and we are not allowed to call set_blocksize during the scan. The superblock
1174 * is read via pagecache
1175 */
Christoph Hellwig97288f22008-12-02 06:36:09 -05001176int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001177 struct btrfs_fs_devices **fs_devices_ret)
1178{
1179 struct btrfs_super_block *disk_super;
Anand Jaine124ece2018-01-18 22:02:35 +08001180 struct btrfs_device *device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001181 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -07001182 struct page *page;
Anand Jaine124ece2018-01-18 22:02:35 +08001183 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001184 u64 devid;
David Sterba6f60cbd2013-02-15 11:31:02 -07001185 u64 bytenr;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001186
David Sterba6f60cbd2013-02-15 11:31:02 -07001187 /*
1188 * we would like to check all the supers, but that would make
1189 * a btrfs mount succeed after a mkfs from a different FS.
1190 * So, we need to add a special mount option to scan for
1191 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1192 */
1193 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +01001194 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -05001195 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -07001196
1197 bdev = blkdev_get_by_path(path, flags, holder);
David Sterba6f60cbd2013-02-15 11:31:02 -07001198 if (IS_ERR(bdev)) {
1199 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001200 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -07001201 }
1202
Anand Jain05a5c552017-12-15 15:40:16 +08001203 if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super)) {
1204 ret = -EINVAL;
David Sterba6f60cbd2013-02-15 11:31:02 -07001205 goto error_bdev_put;
Anand Jain05a5c552017-12-15 15:40:16 +08001206 }
David Sterba6f60cbd2013-02-15 11:31:02 -07001207
Xiao Guangronga3438322010-01-06 11:48:18 +00001208 devid = btrfs_stack_device_id(&disk_super->dev_item);
David Sterba6f60cbd2013-02-15 11:31:02 -07001209
Anand Jaine124ece2018-01-18 22:02:35 +08001210 device = device_list_add(path, disk_super, devid);
1211 if (IS_ERR(device))
1212 ret = PTR_ERR(device);
1213 else
1214 *fs_devices_ret = device->fs_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001215
Anand Jain6cf86a002016-02-13 10:01:29 +08001216 btrfs_release_disk_super(page);
David Sterba6f60cbd2013-02-15 11:31:02 -07001217
1218error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001219 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001220error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001221 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001222 return ret;
1223}
Chris Mason0b86a832008-03-24 15:01:56 -04001224
Miao Xie6d07bce2011-01-05 10:07:31 +00001225/* helper to account the used device space in the range */
1226int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
1227 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -04001228{
1229 struct btrfs_key key;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001230 struct btrfs_root *root = device->fs_info->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +00001231 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001232 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +00001233 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001234 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +00001235 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001236 struct extent_buffer *l;
1237
Miao Xie6d07bce2011-01-05 10:07:31 +00001238 *length = 0;
1239
Anand Jain401e29c2017-12-04 12:54:55 +08001240 if (start >= device->total_bytes ||
1241 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Miao Xie6d07bce2011-01-05 10:07:31 +00001242 return 0;
1243
Yan Zheng2b820322008-11-17 21:11:30 -05001244 path = btrfs_alloc_path();
1245 if (!path)
1246 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01001247 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04001248
Chris Mason0b86a832008-03-24 15:01:56 -04001249 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001250 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001251 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +00001252
1253 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001254 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001255 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001256 if (ret > 0) {
1257 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1258 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001259 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001260 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001261
Chris Mason0b86a832008-03-24 15:01:56 -04001262 while (1) {
1263 l = path->nodes[0];
1264 slot = path->slots[0];
1265 if (slot >= btrfs_header_nritems(l)) {
1266 ret = btrfs_next_leaf(root, path);
1267 if (ret == 0)
1268 continue;
1269 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001270 goto out;
1271
1272 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001273 }
1274 btrfs_item_key_to_cpu(l, &key, slot);
1275
1276 if (key.objectid < device->devid)
1277 goto next;
1278
1279 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +00001280 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001281
David Sterba962a2982014-06-04 18:41:45 +02001282 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001283 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001284
Chris Mason0b86a832008-03-24 15:01:56 -04001285 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +00001286 extent_end = key.offset + btrfs_dev_extent_length(l,
1287 dev_extent);
1288 if (key.offset <= start && extent_end > end) {
1289 *length = end - start + 1;
1290 break;
1291 } else if (key.offset <= start && extent_end > start)
1292 *length += extent_end - start;
1293 else if (key.offset > start && extent_end <= end)
1294 *length += extent_end - key.offset;
1295 else if (key.offset > start && key.offset <= end) {
1296 *length += end - key.offset + 1;
1297 break;
1298 } else if (key.offset > end)
1299 break;
1300
1301next:
1302 path->slots[0]++;
1303 }
1304 ret = 0;
1305out:
1306 btrfs_free_path(path);
1307 return ret;
1308}
1309
Jeff Mahoney499f3772015-06-15 09:41:17 -04001310static int contains_pending_extent(struct btrfs_transaction *transaction,
Josef Bacik6df9a952013-06-27 13:22:46 -04001311 struct btrfs_device *device,
1312 u64 *start, u64 len)
1313{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001314 struct btrfs_fs_info *fs_info = device->fs_info;
Josef Bacik6df9a952013-06-27 13:22:46 -04001315 struct extent_map *em;
Jeff Mahoney499f3772015-06-15 09:41:17 -04001316 struct list_head *search_list = &fs_info->pinned_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001317 int ret = 0;
Forrest Liu1b984502015-02-09 17:30:47 +08001318 u64 physical_start = *start;
Josef Bacik6df9a952013-06-27 13:22:46 -04001319
Jeff Mahoney499f3772015-06-15 09:41:17 -04001320 if (transaction)
1321 search_list = &transaction->pending_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001322again:
1323 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001324 struct map_lookup *map;
1325 int i;
1326
Jeff Mahoney95617d62015-06-03 10:55:48 -04001327 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04001328 for (i = 0; i < map->num_stripes; i++) {
Filipe Mananac152b632015-05-14 10:46:03 +01001329 u64 end;
1330
Josef Bacik6df9a952013-06-27 13:22:46 -04001331 if (map->stripes[i].dev != device)
1332 continue;
Forrest Liu1b984502015-02-09 17:30:47 +08001333 if (map->stripes[i].physical >= physical_start + len ||
Josef Bacik6df9a952013-06-27 13:22:46 -04001334 map->stripes[i].physical + em->orig_block_len <=
Forrest Liu1b984502015-02-09 17:30:47 +08001335 physical_start)
Josef Bacik6df9a952013-06-27 13:22:46 -04001336 continue;
Filipe Mananac152b632015-05-14 10:46:03 +01001337 /*
1338 * Make sure that while processing the pinned list we do
1339 * not override our *start with a lower value, because
1340 * we can have pinned chunks that fall within this
1341 * device hole and that have lower physical addresses
1342 * than the pending chunks we processed before. If we
1343 * do not take this special care we can end up getting
1344 * 2 pending chunks that start at the same physical
1345 * device offsets because the end offset of a pinned
1346 * chunk can be equal to the start offset of some
1347 * pending chunk.
1348 */
1349 end = map->stripes[i].physical + em->orig_block_len;
1350 if (end > *start) {
1351 *start = end;
1352 ret = 1;
1353 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001354 }
1355 }
Jeff Mahoney499f3772015-06-15 09:41:17 -04001356 if (search_list != &fs_info->pinned_chunks) {
1357 search_list = &fs_info->pinned_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001358 goto again;
1359 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001360
1361 return ret;
1362}
1363
1364
Chris Mason0b86a832008-03-24 15:01:56 -04001365/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001366 * find_free_dev_extent_start - find free space in the specified device
1367 * @device: the device which we search the free space in
1368 * @num_bytes: the size of the free space that we need
1369 * @search_start: the position from which to begin the search
1370 * @start: store the start of the free space.
1371 * @len: the size of the free space. that we find, or the size
1372 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001373 *
Chris Mason0b86a832008-03-24 15:01:56 -04001374 * this uses a pretty simple search, the expectation is that it is
1375 * called very infrequently and that a given device has a small number
1376 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001377 *
1378 * @start is used to store the start of the free space if we find. But if we
1379 * don't find suitable free space, it will be used to store the start position
1380 * of the max free space.
1381 *
1382 * @len is used to store the size of the free space that we find.
1383 * But if we don't find suitable free space, it is used to store the size of
1384 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001385 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001386int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1387 struct btrfs_device *device, u64 num_bytes,
1388 u64 search_start, u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001389{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001390 struct btrfs_fs_info *fs_info = device->fs_info;
1391 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001392 struct btrfs_key key;
Miao Xie7bfc8372011-01-05 10:07:26 +00001393 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001394 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001395 u64 hole_size;
1396 u64 max_hole_start;
1397 u64 max_hole_size;
1398 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001399 u64 search_end = device->total_bytes;
1400 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001401 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001402 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001403
1404 /*
1405 * We don't want to overwrite the superblock on the drive nor any area
1406 * used by the boot loader (grub for example), so we make sure to start
1407 * at an offset of at least 1MB.
1408 */
David Sterba0d0c71b2017-06-15 01:30:06 +02001409 search_start = max_t(u64, search_start, SZ_1M);
Chris Mason0b86a832008-03-24 15:01:56 -04001410
Josef Bacik6df9a952013-06-27 13:22:46 -04001411 path = btrfs_alloc_path();
1412 if (!path)
1413 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001414
Miao Xie7bfc8372011-01-05 10:07:26 +00001415 max_hole_start = search_start;
1416 max_hole_size = 0;
1417
Zhao Leif2ab7612015-02-16 18:52:17 +08001418again:
Anand Jain401e29c2017-12-04 12:54:55 +08001419 if (search_start >= search_end ||
1420 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001421 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001422 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001423 }
1424
David Sterbae4058b52015-11-27 16:31:35 +01001425 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001426 path->search_commit_root = 1;
1427 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001428
Chris Mason0b86a832008-03-24 15:01:56 -04001429 key.objectid = device->devid;
1430 key.offset = search_start;
1431 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001432
Li Zefan125ccb02011-12-08 15:07:24 +08001433 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001434 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001435 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001436 if (ret > 0) {
1437 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1438 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001439 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001440 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001441
Chris Mason0b86a832008-03-24 15:01:56 -04001442 while (1) {
1443 l = path->nodes[0];
1444 slot = path->slots[0];
1445 if (slot >= btrfs_header_nritems(l)) {
1446 ret = btrfs_next_leaf(root, path);
1447 if (ret == 0)
1448 continue;
1449 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001450 goto out;
1451
1452 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001453 }
1454 btrfs_item_key_to_cpu(l, &key, slot);
1455
1456 if (key.objectid < device->devid)
1457 goto next;
1458
1459 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001460 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001461
David Sterba962a2982014-06-04 18:41:45 +02001462 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001463 goto next;
1464
Miao Xie7bfc8372011-01-05 10:07:26 +00001465 if (key.offset > search_start) {
1466 hole_size = key.offset - search_start;
1467
Josef Bacik6df9a952013-06-27 13:22:46 -04001468 /*
1469 * Have to check before we set max_hole_start, otherwise
1470 * we could end up sending back this offset anyway.
1471 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001472 if (contains_pending_extent(transaction, device,
Josef Bacik6df9a952013-06-27 13:22:46 -04001473 &search_start,
Forrest Liu1b984502015-02-09 17:30:47 +08001474 hole_size)) {
1475 if (key.offset >= search_start) {
1476 hole_size = key.offset - search_start;
1477 } else {
1478 WARN_ON_ONCE(1);
1479 hole_size = 0;
1480 }
1481 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001482
Miao Xie7bfc8372011-01-05 10:07:26 +00001483 if (hole_size > max_hole_size) {
1484 max_hole_start = search_start;
1485 max_hole_size = hole_size;
1486 }
1487
1488 /*
1489 * If this free space is greater than which we need,
1490 * it must be the max free space that we have found
1491 * until now, so max_hole_start must point to the start
1492 * of this free space and the length of this free space
1493 * is stored in max_hole_size. Thus, we return
1494 * max_hole_start and max_hole_size and go back to the
1495 * caller.
1496 */
1497 if (hole_size >= num_bytes) {
1498 ret = 0;
1499 goto out;
1500 }
1501 }
1502
Chris Mason0b86a832008-03-24 15:01:56 -04001503 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001504 extent_end = key.offset + btrfs_dev_extent_length(l,
1505 dev_extent);
1506 if (extent_end > search_start)
1507 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001508next:
1509 path->slots[0]++;
1510 cond_resched();
1511 }
Chris Mason0b86a832008-03-24 15:01:56 -04001512
liubo38c01b92011-08-02 02:39:03 +00001513 /*
1514 * At this point, search_start should be the end of
1515 * allocated dev extents, and when shrinking the device,
1516 * search_end may be smaller than search_start.
1517 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001518 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001519 hole_size = search_end - search_start;
1520
Jeff Mahoney499f3772015-06-15 09:41:17 -04001521 if (contains_pending_extent(transaction, device, &search_start,
Zhao Leif2ab7612015-02-16 18:52:17 +08001522 hole_size)) {
1523 btrfs_release_path(path);
1524 goto again;
1525 }
Chris Mason0b86a832008-03-24 15:01:56 -04001526
Zhao Leif2ab7612015-02-16 18:52:17 +08001527 if (hole_size > max_hole_size) {
1528 max_hole_start = search_start;
1529 max_hole_size = hole_size;
1530 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001531 }
1532
Miao Xie7bfc8372011-01-05 10:07:26 +00001533 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001534 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001535 ret = -ENOSPC;
1536 else
1537 ret = 0;
1538
1539out:
Yan Zheng2b820322008-11-17 21:11:30 -05001540 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001541 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001542 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001543 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001544 return ret;
1545}
1546
Jeff Mahoney499f3772015-06-15 09:41:17 -04001547int find_free_dev_extent(struct btrfs_trans_handle *trans,
1548 struct btrfs_device *device, u64 num_bytes,
1549 u64 *start, u64 *len)
1550{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001551 /* FIXME use last free of some kind */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001552 return find_free_dev_extent_start(trans->transaction, device,
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001553 num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001554}
1555
Christoph Hellwigb2950862008-12-02 09:54:17 -05001556static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001557 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001558 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001559{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001560 struct btrfs_fs_info *fs_info = device->fs_info;
1561 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001562 int ret;
1563 struct btrfs_path *path;
Chris Mason8f18cf12008-04-25 16:53:30 -04001564 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001565 struct btrfs_key found_key;
1566 struct extent_buffer *leaf = NULL;
1567 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001568
1569 path = btrfs_alloc_path();
1570 if (!path)
1571 return -ENOMEM;
1572
1573 key.objectid = device->devid;
1574 key.offset = start;
1575 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001576again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001577 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001578 if (ret > 0) {
1579 ret = btrfs_previous_item(root, path, key.objectid,
1580 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001581 if (ret)
1582 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001583 leaf = path->nodes[0];
1584 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1585 extent = btrfs_item_ptr(leaf, path->slots[0],
1586 struct btrfs_dev_extent);
1587 BUG_ON(found_key.offset > start || found_key.offset +
1588 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001589 key = found_key;
1590 btrfs_release_path(path);
1591 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001592 } else if (ret == 0) {
1593 leaf = path->nodes[0];
1594 extent = btrfs_item_ptr(leaf, path->slots[0],
1595 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001596 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001597 btrfs_handle_fs_error(fs_info, ret, "Slot search failed");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001598 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001599 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001600
Miao Xie2196d6e2014-09-03 21:35:41 +08001601 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1602
Chris Mason8f18cf12008-04-25 16:53:30 -04001603 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001604 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001605 btrfs_handle_fs_error(fs_info, ret,
1606 "Failed to remove dev extent item");
Zhao Lei13212b52015-02-12 14:18:17 +08001607 } else {
Josef Bacik3204d332015-09-24 10:46:10 -04001608 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001609 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001610out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001611 btrfs_free_path(path);
1612 return ret;
1613}
1614
Eric Sandeen48a3b632013-04-25 20:41:01 +00001615static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1616 struct btrfs_device *device,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001617 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001618{
1619 int ret;
1620 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001621 struct btrfs_fs_info *fs_info = device->fs_info;
1622 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001623 struct btrfs_dev_extent *extent;
1624 struct extent_buffer *leaf;
1625 struct btrfs_key key;
1626
Anand Jaine12c9622017-12-04 12:54:53 +08001627 WARN_ON(!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state));
Anand Jain401e29c2017-12-04 12:54:55 +08001628 WARN_ON(test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state));
Chris Mason0b86a832008-03-24 15:01:56 -04001629 path = btrfs_alloc_path();
1630 if (!path)
1631 return -ENOMEM;
1632
Chris Mason0b86a832008-03-24 15:01:56 -04001633 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001634 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001635 key.type = BTRFS_DEV_EXTENT_KEY;
1636 ret = btrfs_insert_empty_item(trans, root, path, &key,
1637 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001638 if (ret)
1639 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001640
1641 leaf = path->nodes[0];
1642 extent = btrfs_item_ptr(leaf, path->slots[0],
1643 struct btrfs_dev_extent);
Nikolay Borisovb5d90712017-08-18 17:58:23 +03001644 btrfs_set_dev_extent_chunk_tree(leaf, extent,
1645 BTRFS_CHUNK_TREE_OBJECTID);
Nikolay Borisov0ca00af2017-08-18 17:58:22 +03001646 btrfs_set_dev_extent_chunk_objectid(leaf, extent,
1647 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Masone17cade2008-04-15 15:41:47 -04001648 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1649
Chris Mason0b86a832008-03-24 15:01:56 -04001650 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1651 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001652out:
Chris Mason0b86a832008-03-24 15:01:56 -04001653 btrfs_free_path(path);
1654 return ret;
1655}
1656
Josef Bacik6df9a952013-06-27 13:22:46 -04001657static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001658{
Josef Bacik6df9a952013-06-27 13:22:46 -04001659 struct extent_map_tree *em_tree;
1660 struct extent_map *em;
1661 struct rb_node *n;
1662 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001663
Josef Bacik6df9a952013-06-27 13:22:46 -04001664 em_tree = &fs_info->mapping_tree.map_tree;
1665 read_lock(&em_tree->lock);
1666 n = rb_last(&em_tree->map);
1667 if (n) {
1668 em = rb_entry(n, struct extent_map, rb_node);
1669 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001670 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001671 read_unlock(&em_tree->lock);
1672
Chris Mason0b86a832008-03-24 15:01:56 -04001673 return ret;
1674}
1675
Ilya Dryomov53f10652013-08-12 14:33:01 +03001676static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1677 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001678{
1679 int ret;
1680 struct btrfs_key key;
1681 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001682 struct btrfs_path *path;
1683
Yan Zheng2b820322008-11-17 21:11:30 -05001684 path = btrfs_alloc_path();
1685 if (!path)
1686 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001687
1688 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1689 key.type = BTRFS_DEV_ITEM_KEY;
1690 key.offset = (u64)-1;
1691
Ilya Dryomov53f10652013-08-12 14:33:01 +03001692 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001693 if (ret < 0)
1694 goto error;
1695
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001696 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001697
Ilya Dryomov53f10652013-08-12 14:33:01 +03001698 ret = btrfs_previous_item(fs_info->chunk_root, path,
1699 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001700 BTRFS_DEV_ITEM_KEY);
1701 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001702 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001703 } else {
1704 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1705 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001706 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001707 }
1708 ret = 0;
1709error:
Yan Zheng2b820322008-11-17 21:11:30 -05001710 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001711 return ret;
1712}
1713
1714/*
1715 * the device information is stored in the chunk root
1716 * the btrfs_device struct should be fully filled in
1717 */
Anand Jainc74a0b02017-11-06 16:36:15 +08001718static int btrfs_add_dev_item(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001719 struct btrfs_fs_info *fs_info,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001720 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001721{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001722 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001723 int ret;
1724 struct btrfs_path *path;
1725 struct btrfs_dev_item *dev_item;
1726 struct extent_buffer *leaf;
1727 struct btrfs_key key;
1728 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001729
Chris Mason0b86a832008-03-24 15:01:56 -04001730 path = btrfs_alloc_path();
1731 if (!path)
1732 return -ENOMEM;
1733
Chris Mason0b86a832008-03-24 15:01:56 -04001734 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1735 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001736 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001737
1738 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001739 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001740 if (ret)
1741 goto out;
1742
1743 leaf = path->nodes[0];
1744 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1745
1746 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001747 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001748 btrfs_set_device_type(leaf, dev_item, device->type);
1749 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1750 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1751 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001752 btrfs_set_device_total_bytes(leaf, dev_item,
1753 btrfs_device_get_disk_total_bytes(device));
1754 btrfs_set_device_bytes_used(leaf, dev_item,
1755 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001756 btrfs_set_device_group(leaf, dev_item, 0);
1757 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1758 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001759 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001760
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001761 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001762 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001763 ptr = btrfs_device_fsid(dev_item);
Anand Jain44880fd2017-07-29 17:50:09 +08001764 write_extent_buffer(leaf, fs_info->fsid, ptr, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001765 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001766
Yan Zheng2b820322008-11-17 21:11:30 -05001767 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001768out:
1769 btrfs_free_path(path);
1770 return ret;
1771}
Chris Mason8f18cf12008-04-25 16:53:30 -04001772
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001773/*
1774 * Function to update ctime/mtime for a given device path.
1775 * Mainly used for ctime/mtime based probe like libblkid.
1776 */
David Sterbada353f62017-02-14 17:55:53 +01001777static void update_dev_time(const char *path_name)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001778{
1779 struct file *filp;
1780
1781 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001782 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001783 return;
1784 file_update_time(filp);
1785 filp_close(filp, NULL);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001786}
1787
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001788static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info,
Chris Masona061fc82008-05-07 11:43:44 -04001789 struct btrfs_device *device)
1790{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001791 struct btrfs_root *root = fs_info->chunk_root;
Chris Masona061fc82008-05-07 11:43:44 -04001792 int ret;
1793 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001794 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001795 struct btrfs_trans_handle *trans;
1796
Chris Masona061fc82008-05-07 11:43:44 -04001797 path = btrfs_alloc_path();
1798 if (!path)
1799 return -ENOMEM;
1800
Yan, Zhenga22285a2010-05-16 10:48:46 -04001801 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001802 if (IS_ERR(trans)) {
1803 btrfs_free_path(path);
1804 return PTR_ERR(trans);
1805 }
Chris Masona061fc82008-05-07 11:43:44 -04001806 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1807 key.type = BTRFS_DEV_ITEM_KEY;
1808 key.offset = device->devid;
1809
1810 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001811 if (ret) {
1812 if (ret > 0)
1813 ret = -ENOENT;
1814 btrfs_abort_transaction(trans, ret);
1815 btrfs_end_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001816 goto out;
1817 }
1818
1819 ret = btrfs_del_item(trans, root, path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001820 if (ret) {
1821 btrfs_abort_transaction(trans, ret);
1822 btrfs_end_transaction(trans);
1823 }
1824
Chris Masona061fc82008-05-07 11:43:44 -04001825out:
1826 btrfs_free_path(path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001827 if (!ret)
1828 ret = btrfs_commit_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001829 return ret;
1830}
1831
David Sterba3cc31a02016-02-15 16:00:26 +01001832/*
1833 * Verify that @num_devices satisfies the RAID profile constraints in the whole
1834 * filesystem. It's up to the caller to adjust that number regarding eg. device
1835 * replace.
1836 */
1837static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info,
1838 u64 num_devices)
Chris Masona061fc82008-05-07 11:43:44 -04001839{
Chris Masona061fc82008-05-07 11:43:44 -04001840 u64 all_avail;
Miao Xiede98ced2013-01-29 10:13:12 +00001841 unsigned seq;
David Sterba418775a2016-02-15 16:28:14 +01001842 int i;
Chris Masona061fc82008-05-07 11:43:44 -04001843
Miao Xiede98ced2013-01-29 10:13:12 +00001844 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001845 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00001846
Anand Jainbd45ffb2016-02-13 10:01:34 +08001847 all_avail = fs_info->avail_data_alloc_bits |
1848 fs_info->avail_system_alloc_bits |
1849 fs_info->avail_metadata_alloc_bits;
1850 } while (read_seqretry(&fs_info->profiles_lock, seq));
Anand Jainf1fa7f22016-02-13 10:01:33 +08001851
David Sterba418775a2016-02-15 16:28:14 +01001852 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
1853 if (!(all_avail & btrfs_raid_group[i]))
1854 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001855
David Sterba418775a2016-02-15 16:28:14 +01001856 if (num_devices < btrfs_raid_array[i].devs_min) {
1857 int ret = btrfs_raid_mindev_error[i];
Chris Masona061fc82008-05-07 11:43:44 -04001858
David Sterba418775a2016-02-15 16:28:14 +01001859 if (ret)
1860 return ret;
1861 }
Anand Jainbd45ffb2016-02-13 10:01:34 +08001862 }
1863
1864 return 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001865}
1866
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001867static struct btrfs_device * btrfs_find_next_active_device(
1868 struct btrfs_fs_devices *fs_devs, struct btrfs_device *device)
Anand Jain88acff62016-05-03 17:44:43 +08001869{
1870 struct btrfs_device *next_device;
1871
1872 list_for_each_entry(next_device, &fs_devs->devices, dev_list) {
1873 if (next_device != device &&
Anand Jaine6e674b2017-12-04 12:54:54 +08001874 !test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state)
1875 && next_device->bdev)
Anand Jain88acff62016-05-03 17:44:43 +08001876 return next_device;
1877 }
1878
1879 return NULL;
1880}
1881
1882/*
1883 * Helper function to check if the given device is part of s_bdev / latest_bdev
1884 * and replace it with the provided or the next active device, in the context
1885 * where this function called, there should be always be another device (or
1886 * this_dev) which is active.
1887 */
1888void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info,
1889 struct btrfs_device *device, struct btrfs_device *this_dev)
1890{
1891 struct btrfs_device *next_device;
1892
1893 if (this_dev)
1894 next_device = this_dev;
1895 else
1896 next_device = btrfs_find_next_active_device(fs_info->fs_devices,
1897 device);
1898 ASSERT(next_device);
1899
1900 if (fs_info->sb->s_bdev &&
1901 (fs_info->sb->s_bdev == device->bdev))
1902 fs_info->sb->s_bdev = next_device->bdev;
1903
1904 if (fs_info->fs_devices->latest_bdev == device->bdev)
1905 fs_info->fs_devices->latest_bdev = next_device->bdev;
1906}
1907
David Sterbada353f62017-02-14 17:55:53 +01001908int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path,
1909 u64 devid)
Anand Jainf1fa7f22016-02-13 10:01:33 +08001910{
1911 struct btrfs_device *device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001912 struct btrfs_fs_devices *cur_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001913 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001914 int ret = 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001915
Anand Jain2c997382017-11-06 10:28:00 +08001916 mutex_lock(&fs_info->volume_mutex);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001917 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001918
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001919 num_devices = fs_info->fs_devices->num_devices;
1920 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
1921 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
Chris Masona061fc82008-05-07 11:43:44 -04001922 WARN_ON(num_devices < 1);
1923 num_devices--;
1924 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001925 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Chris Masona061fc82008-05-07 11:43:44 -04001926
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001927 ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001928 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001929 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001930
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001931 ret = btrfs_find_device_by_devspec(fs_info, devid, device_path,
1932 &device);
Anand Jain24fc5722016-02-13 10:01:36 +08001933 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001934 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001935
Anand Jain401e29c2017-12-04 12:54:55 +08001936 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Anand Jain183860f2013-05-17 10:52:45 +00001937 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08001938 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001939 }
1940
Anand Jainebbede42017-12-04 12:54:52 +08001941 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
1942 fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001943 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08001944 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001945 }
1946
Anand Jainebbede42017-12-04 12:54:52 +08001947 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02001948 mutex_lock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001949 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001950 device->fs_devices->rw_devices--;
David Sterba34441362016-10-04 19:34:27 +02001951 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001952 }
Chris Masona061fc82008-05-07 11:43:44 -04001953
Carey Underwoodd7901552013-03-04 16:37:06 -06001954 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001955 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001956 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001957 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001958 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001959
Stefan Behrens63a212a2012-11-05 18:29:28 +01001960 /*
1961 * TODO: the superblock still includes this device in its num_devices
1962 * counter although write_all_supers() is not locked out. This
1963 * could give a filesystem state which requires a degraded mount.
1964 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001965 ret = btrfs_rm_dev_item(fs_info, device);
Chris Masona061fc82008-05-07 11:43:44 -04001966 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001967 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001968
Anand Jaine12c9622017-12-04 12:54:53 +08001969 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001970 btrfs_scrub_cancel_dev(fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001971
1972 /*
1973 * the device list mutex makes sure that we don't change
1974 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001975 * the device supers. Whoever is writing all supers, should
1976 * lock the device list mutex before getting the number of
1977 * devices in the super block (super_copy). Conversely,
1978 * whoever updates the number of devices in the super block
1979 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001980 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001981
1982 cur_devices = device->fs_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001983 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001984 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001985
Yan Zhenge4404d62008-12-12 10:03:26 -05001986 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001987 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001988
Anand Jaine6e674b2017-12-04 12:54:54 +08001989 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
Miao Xie3a7d55c2014-07-16 18:38:01 +08001990 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001991
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001992 btrfs_assign_next_active_device(fs_info, device, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05001993
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001994 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001995 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001996 /* remove sysfs entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001997 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001998 }
Anand Jain99994cd2014-06-03 11:36:00 +08001999
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002000 num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1;
2001 btrfs_set_super_num_devices(fs_info->super_copy, num_devices);
2002 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002003
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002004 /*
2005 * at this point, the device is zero sized and detached from
2006 * the devices list. All that's left is to zero out the old
2007 * supers and free the device.
2008 */
Anand Jainebbede42017-12-04 12:54:52 +08002009 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002010 btrfs_scratch_superblocks(device->bdev, device->name->str);
2011
2012 btrfs_close_bdev(device);
David Sterbaf06c5962017-06-06 17:08:23 +02002013 call_rcu(&device->rcu, free_device_rcu);
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002014
Xiao Guangrong1f781602011-04-20 10:09:16 +00002015 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05002016 struct btrfs_fs_devices *fs_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002017 fs_devices = fs_info->fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002018 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02002019 if (fs_devices->seed == cur_devices) {
2020 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05002021 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02002022 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002023 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05002024 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00002025 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00002026 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002027 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002028 }
2029
Chris Masona061fc82008-05-07 11:43:44 -04002030out:
2031 mutex_unlock(&uuid_mutex);
Anand Jain2c997382017-11-06 10:28:00 +08002032 mutex_unlock(&fs_info->volume_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04002033 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08002034
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002035error_undo:
Anand Jainebbede42017-12-04 12:54:52 +08002036 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002037 mutex_lock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002038 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002039 &fs_info->fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08002040 device->fs_devices->rw_devices++;
David Sterba34441362016-10-04 19:34:27 +02002041 mutex_unlock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002042 }
Anand Jain24fc5722016-02-13 10:01:36 +08002043 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04002044}
2045
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002046void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
2047 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002048{
Anand Jaind51908c2014-08-13 14:24:19 +08002049 struct btrfs_fs_devices *fs_devices;
2050
Stefan Behrense93c89c2012-11-05 17:33:06 +01002051 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03002052
Anand Jain25e8e912014-08-20 10:56:56 +08002053 /*
2054 * in case of fs with no seed, srcdev->fs_devices will point
2055 * to fs_devices of fs_info. However when the dev being replaced is
2056 * a seed dev it will point to the seed's local fs_devices. In short
2057 * srcdev will have its correct fs_devices in both the cases.
2058 */
2059 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08002060
Stefan Behrense93c89c2012-11-05 17:33:06 +01002061 list_del_rcu(&srcdev->dev_list);
David Sterba619c47f2017-06-19 14:14:22 +02002062 list_del(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08002063 fs_devices->num_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +08002064 if (test_bit(BTRFS_DEV_STATE_MISSING, &srcdev->dev_state))
Anand Jaind51908c2014-08-13 14:24:19 +08002065 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002066
Anand Jainebbede42017-12-04 12:54:52 +08002067 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state))
Miao Xie82372bc2014-09-03 21:35:44 +08002068 fs_devices->rw_devices--;
Ilya Dryomov13572722013-10-02 20:41:01 +03002069
Miao Xie82372bc2014-09-03 21:35:44 +08002070 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08002071 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002072}
2073
2074void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
2075 struct btrfs_device *srcdev)
2076{
2077 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002078
Anand Jainebbede42017-12-04 12:54:52 +08002079 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) {
Anand Jain48b3b9d2016-04-12 21:36:16 +08002080 /* zero out the old super if it is writable */
2081 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
2082 }
Anand Jain14238812016-07-22 06:04:53 +08002083
2084 btrfs_close_bdev(srcdev);
David Sterbaf06c5962017-06-06 17:08:23 +02002085 call_rcu(&srcdev->rcu, free_device_rcu);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002086
Anand Jain94d5f0c2014-08-13 14:24:22 +08002087 /* if this is no devs we rather delete the fs_devices */
2088 if (!fs_devices->num_devices) {
2089 struct btrfs_fs_devices *tmp_fs_devices;
2090
Anand Jain6dd38f82017-10-17 06:53:50 +08002091 /*
2092 * On a mounted FS, num_devices can't be zero unless it's a
2093 * seed. In case of a seed device being replaced, the replace
2094 * target added to the sprout FS, so there will be no more
2095 * device left under the seed FS.
2096 */
2097 ASSERT(fs_devices->seeding);
2098
Anand Jain94d5f0c2014-08-13 14:24:22 +08002099 tmp_fs_devices = fs_info->fs_devices;
2100 while (tmp_fs_devices) {
2101 if (tmp_fs_devices->seed == fs_devices) {
2102 tmp_fs_devices->seed = fs_devices->seed;
2103 break;
2104 }
2105 tmp_fs_devices = tmp_fs_devices->seed;
2106 }
2107 fs_devices->seed = NULL;
Anand Jain8bef8402014-08-13 14:24:23 +08002108 __btrfs_close_devices(fs_devices);
2109 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002110 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002111}
2112
2113void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2114 struct btrfs_device *tgtdev)
2115{
Miao Xie67a2c452014-09-03 21:35:43 +08002116 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002117 WARN_ON(!tgtdev);
2118 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002119
Anand Jain32576042015-08-14 18:32:49 +08002120 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002121
Anand Jain779bf3fe2016-04-18 16:51:23 +08002122 if (tgtdev->bdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002123 fs_info->fs_devices->open_devices--;
Anand Jain779bf3fe2016-04-18 16:51:23 +08002124
Stefan Behrense93c89c2012-11-05 17:33:06 +01002125 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002126
Anand Jain88acff62016-05-03 17:44:43 +08002127 btrfs_assign_next_active_device(fs_info, tgtdev, NULL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002128
Stefan Behrense93c89c2012-11-05 17:33:06 +01002129 list_del_rcu(&tgtdev->dev_list);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002130
2131 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002132 mutex_unlock(&uuid_mutex);
Anand Jain779bf3fe2016-04-18 16:51:23 +08002133
2134 /*
2135 * The update_dev_time() with in btrfs_scratch_superblocks()
2136 * may lead to a call to btrfs_show_devname() which will try
2137 * to hold device_list_mutex. And here this device
2138 * is already out of device list, so we don't have to hold
2139 * the device_list_mutex lock.
2140 */
2141 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Anand Jain14238812016-07-22 06:04:53 +08002142
2143 btrfs_close_bdev(tgtdev);
David Sterbaf06c5962017-06-06 17:08:23 +02002144 call_rcu(&tgtdev->rcu, free_device_rcu);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002145}
2146
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002147static int btrfs_find_device_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002148 const char *device_path,
Eric Sandeen48a3b632013-04-25 20:41:01 +00002149 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002150{
2151 int ret = 0;
2152 struct btrfs_super_block *disk_super;
2153 u64 devid;
2154 u8 *dev_uuid;
2155 struct block_device *bdev;
2156 struct buffer_head *bh;
2157
2158 *device = NULL;
2159 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002160 fs_info->bdev_holder, 0, &bdev, &bh);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002161 if (ret)
2162 return ret;
2163 disk_super = (struct btrfs_super_block *)bh->b_data;
2164 devid = btrfs_stack_device_id(&disk_super->dev_item);
2165 dev_uuid = disk_super->dev_item.uuid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002166 *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002167 brelse(bh);
2168 if (!*device)
2169 ret = -ENOENT;
2170 blkdev_put(bdev, FMODE_READ);
2171 return ret;
2172}
2173
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002174int btrfs_find_device_missing_or_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002175 const char *device_path,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002176 struct btrfs_device **device)
2177{
2178 *device = NULL;
2179 if (strcmp(device_path, "missing") == 0) {
2180 struct list_head *devices;
2181 struct btrfs_device *tmp;
2182
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002183 devices = &fs_info->fs_devices->devices;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002184 /*
2185 * It is safe to read the devices since the volume_mutex
2186 * is held by the caller.
2187 */
2188 list_for_each_entry(tmp, devices, dev_list) {
Anand Jaine12c9622017-12-04 12:54:53 +08002189 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
2190 &tmp->dev_state) && !tmp->bdev) {
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002191 *device = tmp;
2192 break;
2193 }
2194 }
2195
Anand Jaind74a6252015-08-14 18:32:56 +08002196 if (!*device)
2197 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002198
2199 return 0;
2200 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002201 return btrfs_find_device_by_path(fs_info, device_path, device);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002202 }
2203}
2204
Yan Zheng2b820322008-11-17 21:11:30 -05002205/*
David Sterba5c5c0df2016-02-15 16:39:55 +01002206 * Lookup a device given by device id, or the path if the id is 0.
2207 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002208int btrfs_find_device_by_devspec(struct btrfs_fs_info *fs_info, u64 devid,
David Sterbada353f62017-02-14 17:55:53 +01002209 const char *devpath,
2210 struct btrfs_device **device)
Anand Jain24e04742016-02-13 10:01:35 +08002211{
2212 int ret;
2213
David Sterba5c5c0df2016-02-15 16:39:55 +01002214 if (devid) {
Anand Jain24e04742016-02-13 10:01:35 +08002215 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002216 *device = btrfs_find_device(fs_info, devid, NULL, NULL);
Anand Jain24e04742016-02-13 10:01:35 +08002217 if (!*device)
2218 ret = -ENOENT;
2219 } else {
David Sterba5c5c0df2016-02-15 16:39:55 +01002220 if (!devpath || !devpath[0])
Anand Jainb3d1b152016-02-13 10:01:37 +08002221 return -EINVAL;
2222
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002223 ret = btrfs_find_device_missing_or_by_path(fs_info, devpath,
Anand Jain24e04742016-02-13 10:01:35 +08002224 device);
2225 }
2226 return ret;
2227}
2228
Yan Zheng2b820322008-11-17 21:11:30 -05002229/*
2230 * does all the dirty work required for changing file system's UUID.
2231 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002232static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002233{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002234 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002235 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002236 struct btrfs_fs_devices *seed_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002237 struct btrfs_super_block *disk_super = fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002238 struct btrfs_device *device;
2239 u64 super_flags;
2240
2241 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05002242 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002243 return -EINVAL;
2244
David Sterba2dfeca92017-06-14 02:48:07 +02002245 seed_devices = alloc_fs_devices(NULL);
Ilya Dryomov2208a372013-08-12 14:33:03 +03002246 if (IS_ERR(seed_devices))
2247 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002248
Yan Zhenge4404d62008-12-12 10:03:26 -05002249 old_devices = clone_fs_devices(fs_devices);
2250 if (IS_ERR(old_devices)) {
2251 kfree(seed_devices);
2252 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002253 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002254
Yan Zheng2b820322008-11-17 21:11:30 -05002255 list_add(&old_devices->list, &fs_uuids);
2256
Yan Zhenge4404d62008-12-12 10:03:26 -05002257 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2258 seed_devices->opened = 1;
2259 INIT_LIST_HEAD(&seed_devices->devices);
2260 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002261 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002262
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002263 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002264 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2265 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002266 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002267 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002268
David Sterba34441362016-10-04 19:34:27 +02002269 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002270 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
David Sterba34441362016-10-04 19:34:27 +02002271 mutex_unlock(&fs_info->chunk_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002272
Yan Zheng2b820322008-11-17 21:11:30 -05002273 fs_devices->seeding = 0;
2274 fs_devices->num_devices = 0;
2275 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002276 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002277 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002278 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002279
2280 generate_random_uuid(fs_devices->fsid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002281 memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002282 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002283 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002284
Yan Zheng2b820322008-11-17 21:11:30 -05002285 super_flags = btrfs_super_flags(disk_super) &
2286 ~BTRFS_SUPER_FLAG_SEEDING;
2287 btrfs_set_super_flags(disk_super, super_flags);
2288
2289 return 0;
2290}
2291
2292/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002293 * Store the expected generation for seed devices in device items.
Yan Zheng2b820322008-11-17 21:11:30 -05002294 */
2295static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002296 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002297{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002298 struct btrfs_root *root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002299 struct btrfs_path *path;
2300 struct extent_buffer *leaf;
2301 struct btrfs_dev_item *dev_item;
2302 struct btrfs_device *device;
2303 struct btrfs_key key;
Anand Jain44880fd2017-07-29 17:50:09 +08002304 u8 fs_uuid[BTRFS_FSID_SIZE];
Yan Zheng2b820322008-11-17 21:11:30 -05002305 u8 dev_uuid[BTRFS_UUID_SIZE];
2306 u64 devid;
2307 int ret;
2308
2309 path = btrfs_alloc_path();
2310 if (!path)
2311 return -ENOMEM;
2312
Yan Zheng2b820322008-11-17 21:11:30 -05002313 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2314 key.offset = 0;
2315 key.type = BTRFS_DEV_ITEM_KEY;
2316
2317 while (1) {
2318 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2319 if (ret < 0)
2320 goto error;
2321
2322 leaf = path->nodes[0];
2323next_slot:
2324 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2325 ret = btrfs_next_leaf(root, path);
2326 if (ret > 0)
2327 break;
2328 if (ret < 0)
2329 goto error;
2330 leaf = path->nodes[0];
2331 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002332 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002333 continue;
2334 }
2335
2336 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2337 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2338 key.type != BTRFS_DEV_ITEM_KEY)
2339 break;
2340
2341 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2342 struct btrfs_dev_item);
2343 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002344 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002345 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002346 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08002347 BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002348 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002349 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002350
2351 if (device->fs_devices->seeding) {
2352 btrfs_set_device_generation(leaf, dev_item,
2353 device->generation);
2354 btrfs_mark_buffer_dirty(leaf);
2355 }
2356
2357 path->slots[0]++;
2358 goto next_slot;
2359 }
2360 ret = 0;
2361error:
2362 btrfs_free_path(path);
2363 return ret;
2364}
2365
David Sterbada353f62017-02-14 17:55:53 +01002366int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path)
Chris Mason788f20e2008-04-28 15:29:42 -04002367{
Jeff Mahoney5112feb2016-06-21 20:16:08 -04002368 struct btrfs_root *root = fs_info->dev_root;
Josef Bacikd5e20032011-08-04 14:52:27 +00002369 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002370 struct btrfs_trans_handle *trans;
2371 struct btrfs_device *device;
2372 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002373 struct list_head *devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002374 struct super_block *sb = fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002375 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002376 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002377 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002378 int ret = 0;
Anand Jain7132a262017-09-28 14:51:11 +08002379 bool unlocked = false;
Chris Mason788f20e2008-04-28 15:29:42 -04002380
David Howellsbc98a422017-07-17 08:45:34 +01002381 if (sb_rdonly(sb) && !fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002382 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002383
Li Zefana5d16332011-12-07 20:08:40 -05002384 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002385 fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002386 if (IS_ERR(bdev))
2387 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002388
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002389 if (fs_info->fs_devices->seeding) {
Yan Zheng2b820322008-11-17 21:11:30 -05002390 seeding_dev = 1;
2391 down_write(&sb->s_umount);
2392 mutex_lock(&uuid_mutex);
2393 }
2394
Chris Mason8c8bee12008-09-29 11:19:10 -04002395 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002396
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002397 devices = &fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002398
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002399 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002400 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002401 if (device->bdev == bdev) {
2402 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002403 mutex_unlock(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002404 &fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002405 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002406 }
2407 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002408 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002409
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002410 device = btrfs_alloc_device(fs_info, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002411 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002412 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002413 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002414 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002415 }
2416
David Sterba78f2c9e2016-02-11 14:25:38 +01002417 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002418 if (!name) {
Yan Zheng2b820322008-11-17 21:11:30 -05002419 ret = -ENOMEM;
David Sterba5c4cf6c2017-10-30 19:29:46 +01002420 goto error_free_device;
Chris Mason788f20e2008-04-28 15:29:42 -04002421 }
Josef Bacik606686e2012-06-04 14:03:51 -04002422 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002423
Yan, Zhenga22285a2010-05-16 10:48:46 -04002424 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002425 if (IS_ERR(trans)) {
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002426 ret = PTR_ERR(trans);
David Sterba5c4cf6c2017-10-30 19:29:46 +01002427 goto error_free_device;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002428 }
2429
Josef Bacikd5e20032011-08-04 14:52:27 +00002430 q = bdev_get_queue(bdev);
Anand Jainebbede42017-12-04 12:54:52 +08002431 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05002432 device->generation = trans->transid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002433 device->io_width = fs_info->sectorsize;
2434 device->io_align = fs_info->sectorsize;
2435 device->sector_size = fs_info->sectorsize;
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002436 device->total_bytes = round_down(i_size_read(bdev->bd_inode),
2437 fs_info->sectorsize);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002438 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002439 device->commit_total_bytes = device->total_bytes;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002440 device->fs_info = fs_info;
Chris Mason788f20e2008-04-28 15:29:42 -04002441 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +08002442 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +08002443 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002444 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002445 device->dev_stats_valid = 1;
David Sterba9f6d2512017-06-16 01:48:05 +02002446 set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE);
Zheng Yan325cd4b2008-09-05 16:43:54 -04002447
Yan Zheng2b820322008-11-17 21:11:30 -05002448 if (seeding_dev) {
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002449 sb->s_flags &= ~SB_RDONLY;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002450 ret = btrfs_prepare_sprout(fs_info);
Anand Jaind31c32f2017-09-28 14:51:10 +08002451 if (ret) {
2452 btrfs_abort_transaction(trans, ret);
2453 goto error_trans;
2454 }
Yan Zheng2b820322008-11-17 21:11:30 -05002455 }
2456
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002457 device->fs_devices = fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002458
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002459 mutex_lock(&fs_info->fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02002460 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002461 list_add_rcu(&device->dev_list, &fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002462 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002463 &fs_info->fs_devices->alloc_list);
2464 fs_info->fs_devices->num_devices++;
2465 fs_info->fs_devices->open_devices++;
2466 fs_info->fs_devices->rw_devices++;
2467 fs_info->fs_devices->total_devices++;
2468 fs_info->fs_devices->total_rw_bytes += device->total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05002469
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002470 atomic64_add(device->total_bytes, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04002471
Anand Jaine884f4f2017-04-04 18:40:19 +08002472 if (!blk_queue_nonrot(q))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002473 fs_info->fs_devices->rotating = 1;
Chris Masonc2898112009-06-10 09:51:32 -04002474
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002475 tmp = btrfs_super_total_bytes(fs_info->super_copy);
2476 btrfs_set_super_total_bytes(fs_info->super_copy,
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002477 round_down(tmp + device->total_bytes, fs_info->sectorsize));
Chris Mason788f20e2008-04-28 15:29:42 -04002478
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002479 tmp = btrfs_super_num_devices(fs_info->super_copy);
2480 btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002481
2482 /* add sysfs device entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002483 btrfs_sysfs_add_device_link(fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002484
Miao Xie2196d6e2014-09-03 21:35:41 +08002485 /*
2486 * we've got more storage, clear any full flags on the space
2487 * infos
2488 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002489 btrfs_clear_space_info_full(fs_info);
Miao Xie2196d6e2014-09-03 21:35:41 +08002490
David Sterba34441362016-10-04 19:34:27 +02002491 mutex_unlock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002492 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002493
Yan Zheng2b820322008-11-17 21:11:30 -05002494 if (seeding_dev) {
David Sterba34441362016-10-04 19:34:27 +02002495 mutex_lock(&fs_info->chunk_mutex);
David Sterbae4a4dce2017-02-10 19:49:01 +01002496 ret = init_first_rw_device(trans, fs_info);
David Sterba34441362016-10-04 19:34:27 +02002497 mutex_unlock(&fs_info->chunk_mutex);
David Sterba005d6422012-09-18 07:52:32 -06002498 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002499 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002500 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002501 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002502 }
2503
Anand Jainc74a0b02017-11-06 16:36:15 +08002504 ret = btrfs_add_dev_item(trans, fs_info, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002505 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002506 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002507 goto error_sysfs;
Miao Xie2196d6e2014-09-03 21:35:41 +08002508 }
2509
2510 if (seeding_dev) {
2511 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2512
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002513 ret = btrfs_finish_sprout(trans, fs_info);
David Sterba005d6422012-09-18 07:52:32 -06002514 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002515 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002516 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002517 }
Anand Jainb2373f22014-06-03 11:36:03 +08002518
2519 /* Sprouting would change fsid of the mounted root,
2520 * so rename the fsid on the sysfs
2521 */
2522 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002523 fs_info->fsid);
2524 if (kobject_rename(&fs_info->fs_devices->fsid_kobj, fsid_buf))
2525 btrfs_warn(fs_info,
2526 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002527 }
2528
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002529 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002530
2531 if (seeding_dev) {
2532 mutex_unlock(&uuid_mutex);
2533 up_write(&sb->s_umount);
Anand Jain7132a262017-09-28 14:51:11 +08002534 unlocked = true;
Yan Zheng2b820322008-11-17 21:11:30 -05002535
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002536 if (ret) /* transaction commit */
2537 return ret;
2538
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002539 ret = btrfs_relocate_sys_chunks(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002540 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002541 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002542 "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002543 trans = btrfs_attach_transaction(root);
2544 if (IS_ERR(trans)) {
2545 if (PTR_ERR(trans) == -ENOENT)
2546 return 0;
Anand Jain7132a262017-09-28 14:51:11 +08002547 ret = PTR_ERR(trans);
2548 trans = NULL;
2549 goto error_sysfs;
Miao Xie671415b2012-10-16 11:26:46 +00002550 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002551 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002552 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002553
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002554 /* Update ctime/mtime for libblkid */
2555 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002556 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002557
Anand Jaind31c32f2017-09-28 14:51:10 +08002558error_sysfs:
2559 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002560error_trans:
Anand Jain0af2c4b2017-09-28 14:51:09 +08002561 if (seeding_dev)
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002562 sb->s_flags |= SB_RDONLY;
Anand Jain7132a262017-09-28 14:51:11 +08002563 if (trans)
2564 btrfs_end_transaction(trans);
David Sterba5c4cf6c2017-10-30 19:29:46 +01002565error_free_device:
David Sterba55de4802017-10-30 18:55:47 +01002566 free_device(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002567error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002568 blkdev_put(bdev, FMODE_EXCL);
Anand Jain7132a262017-09-28 14:51:11 +08002569 if (seeding_dev && !unlocked) {
Yan Zheng2b820322008-11-17 21:11:30 -05002570 mutex_unlock(&uuid_mutex);
2571 up_write(&sb->s_umount);
2572 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002573 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002574}
2575
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002576int btrfs_init_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002577 const char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002578 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002579 struct btrfs_device **device_out)
2580{
Stefan Behrense93c89c2012-11-05 17:33:06 +01002581 struct btrfs_device *device;
2582 struct block_device *bdev;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002583 struct list_head *devices;
2584 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002585 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002586 int ret = 0;
2587
2588 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002589 if (fs_info->fs_devices->seeding) {
2590 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002591 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002592 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002593
2594 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2595 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002596 if (IS_ERR(bdev)) {
2597 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002598 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002599 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002600
2601 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2602
2603 devices = &fs_info->fs_devices->devices;
2604 list_for_each_entry(device, devices, dev_list) {
2605 if (device->bdev == bdev) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002606 btrfs_err(fs_info,
2607 "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002608 ret = -EEXIST;
2609 goto error;
2610 }
2611 }
2612
Miao Xie1c433662014-09-03 21:35:32 +08002613
Miao Xie7cc8e582014-09-03 21:35:38 +08002614 if (i_size_read(bdev->bd_inode) <
2615 btrfs_device_get_total_bytes(srcdev)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002616 btrfs_err(fs_info,
2617 "target device is smaller than source device!");
Miao Xie1c433662014-09-03 21:35:32 +08002618 ret = -EINVAL;
2619 goto error;
2620 }
2621
2622
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002623 device = btrfs_alloc_device(NULL, &devid, NULL);
2624 if (IS_ERR(device)) {
2625 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002626 goto error;
2627 }
2628
David Sterba61655722017-06-15 17:16:43 +02002629 name = rcu_string_strdup(device_path, GFP_KERNEL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002630 if (!name) {
David Sterba55de4802017-10-30 18:55:47 +01002631 free_device(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002632 ret = -ENOMEM;
2633 goto error;
2634 }
2635 rcu_assign_pointer(device->name, name);
2636
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002637 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jainebbede42017-12-04 12:54:52 +08002638 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002639 device->generation = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002640 device->io_width = fs_info->sectorsize;
2641 device->io_align = fs_info->sectorsize;
2642 device->sector_size = fs_info->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002643 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2644 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2645 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002646 ASSERT(list_empty(&srcdev->resized_list));
2647 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002648 device->commit_bytes_used = device->bytes_used;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002649 device->fs_info = fs_info;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002650 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +08002651 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +08002652 set_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002653 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002654 device->dev_stats_valid = 1;
David Sterba9f6d2512017-06-16 01:48:05 +02002655 set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002656 device->fs_devices = fs_info->fs_devices;
2657 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2658 fs_info->fs_devices->num_devices++;
2659 fs_info->fs_devices->open_devices++;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002660 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002661
2662 *device_out = device;
2663 return ret;
2664
2665error:
2666 blkdev_put(bdev, FMODE_EXCL);
2667 return ret;
2668}
2669
2670void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2671 struct btrfs_device *tgtdev)
2672{
Jeff Mahoneyda170662016-06-15 09:22:56 -04002673 u32 sectorsize = fs_info->sectorsize;
2674
Stefan Behrense93c89c2012-11-05 17:33:06 +01002675 WARN_ON(fs_info->fs_devices->rw_devices == 0);
Jeff Mahoneyda170662016-06-15 09:22:56 -04002676 tgtdev->io_width = sectorsize;
2677 tgtdev->io_align = sectorsize;
2678 tgtdev->sector_size = sectorsize;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002679 tgtdev->fs_info = fs_info;
Anand Jaine12c9622017-12-04 12:54:53 +08002680 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &tgtdev->dev_state);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002681}
2682
Chris Masond3977122009-01-05 21:25:51 -05002683static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2684 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002685{
2686 int ret;
2687 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002688 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002689 struct btrfs_dev_item *dev_item;
2690 struct extent_buffer *leaf;
2691 struct btrfs_key key;
2692
Chris Mason0b86a832008-03-24 15:01:56 -04002693 path = btrfs_alloc_path();
2694 if (!path)
2695 return -ENOMEM;
2696
2697 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2698 key.type = BTRFS_DEV_ITEM_KEY;
2699 key.offset = device->devid;
2700
2701 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2702 if (ret < 0)
2703 goto out;
2704
2705 if (ret > 0) {
2706 ret = -ENOENT;
2707 goto out;
2708 }
2709
2710 leaf = path->nodes[0];
2711 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2712
2713 btrfs_set_device_id(leaf, dev_item, device->devid);
2714 btrfs_set_device_type(leaf, dev_item, device->type);
2715 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2716 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2717 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002718 btrfs_set_device_total_bytes(leaf, dev_item,
2719 btrfs_device_get_disk_total_bytes(device));
2720 btrfs_set_device_bytes_used(leaf, dev_item,
2721 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002722 btrfs_mark_buffer_dirty(leaf);
2723
2724out:
2725 btrfs_free_path(path);
2726 return ret;
2727}
2728
Miao Xie2196d6e2014-09-03 21:35:41 +08002729int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002730 struct btrfs_device *device, u64 new_size)
2731{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002732 struct btrfs_fs_info *fs_info = device->fs_info;
2733 struct btrfs_super_block *super_copy = fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002734 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002735 u64 old_total;
2736 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002737
Anand Jainebbede42017-12-04 12:54:52 +08002738 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Yan Zheng2b820322008-11-17 21:11:30 -05002739 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002740
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002741 new_size = round_down(new_size, fs_info->sectorsize);
2742
David Sterba34441362016-10-04 19:34:27 +02002743 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002744 old_total = btrfs_super_total_bytes(super_copy);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03002745 diff = round_down(new_size - device->total_bytes, fs_info->sectorsize);
Miao Xie2196d6e2014-09-03 21:35:41 +08002746
Stefan Behrens63a212a2012-11-05 18:29:28 +01002747 if (new_size <= device->total_bytes ||
Anand Jain401e29c2017-12-04 12:54:55 +08002748 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002749 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002750 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002751 }
Yan Zheng2b820322008-11-17 21:11:30 -05002752
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002753 fs_devices = fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002754
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002755 btrfs_set_super_total_bytes(super_copy,
2756 round_down(old_total + diff, fs_info->sectorsize));
Yan Zheng2b820322008-11-17 21:11:30 -05002757 device->fs_devices->total_rw_bytes += diff;
2758
Miao Xie7cc8e582014-09-03 21:35:38 +08002759 btrfs_device_set_total_bytes(device, new_size);
2760 btrfs_device_set_disk_total_bytes(device, new_size);
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002761 btrfs_clear_space_info_full(device->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002762 if (list_empty(&device->resized_list))
2763 list_add_tail(&device->resized_list,
2764 &fs_devices->resized_devices);
David Sterba34441362016-10-04 19:34:27 +02002765 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason4184ea72009-03-10 12:39:20 -04002766
Chris Mason8f18cf12008-04-25 16:53:30 -04002767 return btrfs_update_device(trans, device);
2768}
2769
2770static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002771 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002772{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002773 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002774 int ret;
2775 struct btrfs_path *path;
2776 struct btrfs_key key;
2777
Chris Mason8f18cf12008-04-25 16:53:30 -04002778 path = btrfs_alloc_path();
2779 if (!path)
2780 return -ENOMEM;
2781
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002782 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Chris Mason8f18cf12008-04-25 16:53:30 -04002783 key.offset = chunk_offset;
2784 key.type = BTRFS_CHUNK_ITEM_KEY;
2785
2786 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002787 if (ret < 0)
2788 goto out;
2789 else if (ret > 0) { /* Logic error or corruption */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002790 btrfs_handle_fs_error(fs_info, -ENOENT,
2791 "Failed lookup while freeing chunk.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002792 ret = -ENOENT;
2793 goto out;
2794 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002795
2796 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002797 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002798 btrfs_handle_fs_error(fs_info, ret,
2799 "Failed to delete chunk item.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002800out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002801 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002802 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002803}
2804
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002805static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002806{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002807 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002808 struct btrfs_disk_key *disk_key;
2809 struct btrfs_chunk *chunk;
2810 u8 *ptr;
2811 int ret = 0;
2812 u32 num_stripes;
2813 u32 array_size;
2814 u32 len = 0;
2815 u32 cur;
2816 struct btrfs_key key;
2817
David Sterba34441362016-10-04 19:34:27 +02002818 mutex_lock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002819 array_size = btrfs_super_sys_array_size(super_copy);
2820
2821 ptr = super_copy->sys_chunk_array;
2822 cur = 0;
2823
2824 while (cur < array_size) {
2825 disk_key = (struct btrfs_disk_key *)ptr;
2826 btrfs_disk_key_to_cpu(&key, disk_key);
2827
2828 len = sizeof(*disk_key);
2829
2830 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2831 chunk = (struct btrfs_chunk *)(ptr + len);
2832 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2833 len += btrfs_chunk_item_size(num_stripes);
2834 } else {
2835 ret = -EIO;
2836 break;
2837 }
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002838 if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID &&
Chris Mason8f18cf12008-04-25 16:53:30 -04002839 key.offset == chunk_offset) {
2840 memmove(ptr, ptr + len, array_size - (cur + len));
2841 array_size -= len;
2842 btrfs_set_super_sys_array_size(super_copy, array_size);
2843 } else {
2844 ptr += len;
2845 cur += len;
2846 }
2847 }
David Sterba34441362016-10-04 19:34:27 +02002848 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002849 return ret;
2850}
2851
Liu Bo592d92e2017-03-14 13:33:55 -07002852static struct extent_map *get_chunk_map(struct btrfs_fs_info *fs_info,
2853 u64 logical, u64 length)
2854{
2855 struct extent_map_tree *em_tree;
2856 struct extent_map *em;
2857
2858 em_tree = &fs_info->mapping_tree.map_tree;
2859 read_lock(&em_tree->lock);
2860 em = lookup_extent_mapping(em_tree, logical, length);
2861 read_unlock(&em_tree->lock);
2862
2863 if (!em) {
2864 btrfs_crit(fs_info, "unable to find logical %llu length %llu",
2865 logical, length);
2866 return ERR_PTR(-EINVAL);
2867 }
2868
2869 if (em->start > logical || em->start + em->len < logical) {
2870 btrfs_crit(fs_info,
2871 "found a bad mapping, wanted %llu-%llu, found %llu-%llu",
2872 logical, length, em->start, em->start + em->len);
2873 free_extent_map(em);
2874 return ERR_PTR(-EINVAL);
2875 }
2876
2877 /* callers are responsible for dropping em's ref. */
2878 return em;
2879}
2880
Josef Bacik47ab2a62014-09-18 11:20:02 -04002881int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002882 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Josef Bacik47ab2a62014-09-18 11:20:02 -04002883{
Josef Bacik47ab2a62014-09-18 11:20:02 -04002884 struct extent_map *em;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002885 struct map_lookup *map;
2886 u64 dev_extent_len = 0;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002887 int i, ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002888 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002889
Liu Bo592d92e2017-03-14 13:33:55 -07002890 em = get_chunk_map(fs_info, chunk_offset, 1);
2891 if (IS_ERR(em)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -04002892 /*
2893 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002894 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04002895 * do anything we still error out.
2896 */
2897 ASSERT(0);
Liu Bo592d92e2017-03-14 13:33:55 -07002898 return PTR_ERR(em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002899 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002900 map = em->map_lookup;
David Sterba34441362016-10-04 19:34:27 +02002901 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002902 check_system_chunk(trans, fs_info, map->type);
David Sterba34441362016-10-04 19:34:27 +02002903 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002904
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002905 /*
2906 * Take the device list mutex to prevent races with the final phase of
2907 * a device replace operation that replaces the device object associated
2908 * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()).
2909 */
2910 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002911 for (i = 0; i < map->num_stripes; i++) {
2912 struct btrfs_device *device = map->stripes[i].dev;
2913 ret = btrfs_free_dev_extent(trans, device,
2914 map->stripes[i].physical,
2915 &dev_extent_len);
2916 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002917 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002918 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002919 goto out;
2920 }
2921
2922 if (device->bytes_used > 0) {
David Sterba34441362016-10-04 19:34:27 +02002923 mutex_lock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002924 btrfs_device_set_bytes_used(device,
2925 device->bytes_used - dev_extent_len);
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002926 atomic64_add(dev_extent_len, &fs_info->free_chunk_space);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002927 btrfs_clear_space_info_full(fs_info);
David Sterba34441362016-10-04 19:34:27 +02002928 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002929 }
2930
2931 if (map->stripes[i].dev) {
2932 ret = btrfs_update_device(trans, map->stripes[i].dev);
2933 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002934 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002935 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002936 goto out;
2937 }
2938 }
2939 }
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002940 mutex_unlock(&fs_devices->device_list_mutex);
2941
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002942 ret = btrfs_free_chunk(trans, fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002943 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002944 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002945 goto out;
2946 }
2947
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002948 trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002949
2950 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002951 ret = btrfs_del_sys_chunk(fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002952 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002953 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002954 goto out;
2955 }
2956 }
2957
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002958 ret = btrfs_remove_block_group(trans, fs_info, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002959 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002960 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002961 goto out;
2962 }
2963
Josef Bacik47ab2a62014-09-18 11:20:02 -04002964out:
2965 /* once for us */
2966 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002967 return ret;
2968}
2969
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002970static int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002971{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002972 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason19c4d2f2016-10-10 13:43:31 -07002973 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002974 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002975
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002976 /*
2977 * Prevent races with automatic removal of unused block groups.
2978 * After we relocate and before we remove the chunk with offset
2979 * chunk_offset, automatic removal of the block group can kick in,
2980 * resulting in a failure when calling btrfs_remove_chunk() below.
2981 *
2982 * Make sure to acquire this mutex before doing a tree search (dev
2983 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2984 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2985 * we release the path used to search the chunk/dev tree and before
2986 * the current task acquires this mutex and calls us.
2987 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002988 ASSERT(mutex_is_locked(&fs_info->delete_unused_bgs_mutex));
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002989
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002990 ret = btrfs_can_relocate(fs_info, chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002991 if (ret)
2992 return -ENOSPC;
2993
Chris Mason8f18cf12008-04-25 16:53:30 -04002994 /* step one, relocate all the extents inside this chunk */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002995 btrfs_scrub_pause(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002996 ret = btrfs_relocate_block_group(fs_info, chunk_offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002997 btrfs_scrub_continue(fs_info);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002998 if (ret)
2999 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04003000
Chris Mason19c4d2f2016-10-10 13:43:31 -07003001 trans = btrfs_start_trans_remove_block_group(root->fs_info,
3002 chunk_offset);
3003 if (IS_ERR(trans)) {
3004 ret = PTR_ERR(trans);
3005 btrfs_handle_fs_error(root->fs_info, ret, NULL);
3006 return ret;
3007 }
Naohiro Aota5d8eb6f2016-09-02 16:46:32 +09003008
Chris Mason19c4d2f2016-10-10 13:43:31 -07003009 /*
3010 * step two, delete the device extents and the
3011 * chunk tree entries
3012 */
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003013 ret = btrfs_remove_chunk(trans, fs_info, chunk_offset);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003014 btrfs_end_transaction(trans);
Chris Mason19c4d2f2016-10-10 13:43:31 -07003015 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04003016}
3017
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003018static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05003019{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003020 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05003021 struct btrfs_path *path;
3022 struct extent_buffer *leaf;
3023 struct btrfs_chunk *chunk;
3024 struct btrfs_key key;
3025 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05003026 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04003027 bool retried = false;
3028 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05003029 int ret;
3030
3031 path = btrfs_alloc_path();
3032 if (!path)
3033 return -ENOMEM;
3034
Josef Bacikba1bf482009-09-11 16:11:19 -04003035again:
Yan Zheng2b820322008-11-17 21:11:30 -05003036 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3037 key.offset = (u64)-1;
3038 key.type = BTRFS_CHUNK_ITEM_KEY;
3039
3040 while (1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003041 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003042 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003043 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003044 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003045 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003046 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003047 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05003048
3049 ret = btrfs_previous_item(chunk_root, path, key.objectid,
3050 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003051 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003052 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003053 if (ret < 0)
3054 goto error;
3055 if (ret > 0)
3056 break;
3057
3058 leaf = path->nodes[0];
3059 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3060
3061 chunk = btrfs_item_ptr(leaf, path->slots[0],
3062 struct btrfs_chunk);
3063 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02003064 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05003065
3066 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003067 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003068 if (ret == -ENOSPC)
3069 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05303070 else
3071 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05003072 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003073 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003074
3075 if (found_key.offset == 0)
3076 break;
3077 key.offset = found_key.offset - 1;
3078 }
3079 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04003080 if (failed && !retried) {
3081 failed = 0;
3082 retried = true;
3083 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303084 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04003085 ret = -ENOSPC;
3086 }
Yan Zheng2b820322008-11-17 21:11:30 -05003087error:
3088 btrfs_free_path(path);
3089 return ret;
3090}
3091
Liu Boa6f93c72017-11-15 16:28:11 -07003092/*
3093 * return 1 : allocate a data chunk successfully,
3094 * return <0: errors during allocating a data chunk,
3095 * return 0 : no need to allocate a data chunk.
3096 */
3097static int btrfs_may_alloc_data_chunk(struct btrfs_fs_info *fs_info,
3098 u64 chunk_offset)
3099{
3100 struct btrfs_block_group_cache *cache;
3101 u64 bytes_used;
3102 u64 chunk_type;
3103
3104 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3105 ASSERT(cache);
3106 chunk_type = cache->flags;
3107 btrfs_put_block_group(cache);
3108
3109 if (chunk_type & BTRFS_BLOCK_GROUP_DATA) {
3110 spin_lock(&fs_info->data_sinfo->lock);
3111 bytes_used = fs_info->data_sinfo->bytes_used;
3112 spin_unlock(&fs_info->data_sinfo->lock);
3113
3114 if (!bytes_used) {
3115 struct btrfs_trans_handle *trans;
3116 int ret;
3117
3118 trans = btrfs_join_transaction(fs_info->tree_root);
3119 if (IS_ERR(trans))
3120 return PTR_ERR(trans);
3121
3122 ret = btrfs_force_chunk_alloc(trans, fs_info,
3123 BTRFS_BLOCK_GROUP_DATA);
3124 btrfs_end_transaction(trans);
3125 if (ret < 0)
3126 return ret;
3127
3128 return 1;
3129 }
3130 }
3131 return 0;
3132}
3133
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003134static int insert_balance_item(struct btrfs_fs_info *fs_info,
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003135 struct btrfs_balance_control *bctl)
3136{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003137 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003138 struct btrfs_trans_handle *trans;
3139 struct btrfs_balance_item *item;
3140 struct btrfs_disk_balance_args disk_bargs;
3141 struct btrfs_path *path;
3142 struct extent_buffer *leaf;
3143 struct btrfs_key key;
3144 int ret, err;
3145
3146 path = btrfs_alloc_path();
3147 if (!path)
3148 return -ENOMEM;
3149
3150 trans = btrfs_start_transaction(root, 0);
3151 if (IS_ERR(trans)) {
3152 btrfs_free_path(path);
3153 return PTR_ERR(trans);
3154 }
3155
3156 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003157 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003158 key.offset = 0;
3159
3160 ret = btrfs_insert_empty_item(trans, root, path, &key,
3161 sizeof(*item));
3162 if (ret)
3163 goto out;
3164
3165 leaf = path->nodes[0];
3166 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3167
David Sterbab159fa22016-11-08 18:09:03 +01003168 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003169
3170 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
3171 btrfs_set_balance_data(leaf, item, &disk_bargs);
3172 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
3173 btrfs_set_balance_meta(leaf, item, &disk_bargs);
3174 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
3175 btrfs_set_balance_sys(leaf, item, &disk_bargs);
3176
3177 btrfs_set_balance_flags(leaf, item, bctl->flags);
3178
3179 btrfs_mark_buffer_dirty(leaf);
3180out:
3181 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003182 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003183 if (err && !ret)
3184 ret = err;
3185 return ret;
3186}
3187
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003188static int del_balance_item(struct btrfs_fs_info *fs_info)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003189{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003190 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003191 struct btrfs_trans_handle *trans;
3192 struct btrfs_path *path;
3193 struct btrfs_key key;
3194 int ret, err;
3195
3196 path = btrfs_alloc_path();
3197 if (!path)
3198 return -ENOMEM;
3199
3200 trans = btrfs_start_transaction(root, 0);
3201 if (IS_ERR(trans)) {
3202 btrfs_free_path(path);
3203 return PTR_ERR(trans);
3204 }
3205
3206 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003207 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003208 key.offset = 0;
3209
3210 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3211 if (ret < 0)
3212 goto out;
3213 if (ret > 0) {
3214 ret = -ENOENT;
3215 goto out;
3216 }
3217
3218 ret = btrfs_del_item(trans, root, path);
3219out:
3220 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003221 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003222 if (err && !ret)
3223 ret = err;
3224 return ret;
3225}
3226
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003227/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003228 * This is a heuristic used to reduce the number of chunks balanced on
3229 * resume after balance was interrupted.
3230 */
3231static void update_balance_args(struct btrfs_balance_control *bctl)
3232{
3233 /*
3234 * Turn on soft mode for chunk types that were being converted.
3235 */
3236 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3237 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3238 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3239 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3240 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3241 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3242
3243 /*
3244 * Turn on usage filter if is not already used. The idea is
3245 * that chunks that we have already balanced should be
3246 * reasonably full. Don't do it for chunks that are being
3247 * converted - that will keep us from relocating unconverted
3248 * (albeit full) chunks.
3249 */
3250 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003251 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003252 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3253 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3254 bctl->data.usage = 90;
3255 }
3256 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003257 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003258 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3259 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3260 bctl->sys.usage = 90;
3261 }
3262 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003263 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003264 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3265 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3266 bctl->meta.usage = 90;
3267 }
3268}
3269
3270/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003271 * Should be called with both balance and volume mutexes held to
3272 * serialize other volume operations (add_dev/rm_dev/resize) with
3273 * restriper. Same goes for unset_balance_control.
3274 */
3275static void set_balance_control(struct btrfs_balance_control *bctl)
3276{
3277 struct btrfs_fs_info *fs_info = bctl->fs_info;
3278
3279 BUG_ON(fs_info->balance_ctl);
3280
3281 spin_lock(&fs_info->balance_lock);
3282 fs_info->balance_ctl = bctl;
3283 spin_unlock(&fs_info->balance_lock);
3284}
3285
3286static void unset_balance_control(struct btrfs_fs_info *fs_info)
3287{
3288 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3289
3290 BUG_ON(!fs_info->balance_ctl);
3291
3292 spin_lock(&fs_info->balance_lock);
3293 fs_info->balance_ctl = NULL;
3294 spin_unlock(&fs_info->balance_lock);
3295
3296 kfree(bctl);
3297}
3298
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003299/*
3300 * Balance filters. Return 1 if chunk should be filtered out
3301 * (should not be balanced).
3302 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003303static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003304 struct btrfs_balance_args *bargs)
3305{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003306 chunk_type = chunk_to_extended(chunk_type) &
3307 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003308
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003309 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003310 return 0;
3311
3312 return 1;
3313}
3314
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003315static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003316 struct btrfs_balance_args *bargs)
3317{
3318 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003319 u64 chunk_used;
3320 u64 user_thresh_min;
3321 u64 user_thresh_max;
3322 int ret = 1;
3323
3324 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3325 chunk_used = btrfs_block_group_used(&cache->item);
3326
3327 if (bargs->usage_min == 0)
3328 user_thresh_min = 0;
3329 else
3330 user_thresh_min = div_factor_fine(cache->key.offset,
3331 bargs->usage_min);
3332
3333 if (bargs->usage_max == 0)
3334 user_thresh_max = 1;
3335 else if (bargs->usage_max > 100)
3336 user_thresh_max = cache->key.offset;
3337 else
3338 user_thresh_max = div_factor_fine(cache->key.offset,
3339 bargs->usage_max);
3340
3341 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3342 ret = 0;
3343
3344 btrfs_put_block_group(cache);
3345 return ret;
3346}
3347
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003348static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003349 u64 chunk_offset, struct btrfs_balance_args *bargs)
3350{
3351 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003352 u64 chunk_used, user_thresh;
3353 int ret = 1;
3354
3355 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3356 chunk_used = btrfs_block_group_used(&cache->item);
3357
David Sterbabc309462015-10-20 18:22:13 +02003358 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003359 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003360 else if (bargs->usage > 100)
3361 user_thresh = cache->key.offset;
3362 else
3363 user_thresh = div_factor_fine(cache->key.offset,
3364 bargs->usage);
3365
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003366 if (chunk_used < user_thresh)
3367 ret = 0;
3368
3369 btrfs_put_block_group(cache);
3370 return ret;
3371}
3372
Ilya Dryomov409d4042012-01-16 22:04:47 +02003373static int chunk_devid_filter(struct extent_buffer *leaf,
3374 struct btrfs_chunk *chunk,
3375 struct btrfs_balance_args *bargs)
3376{
3377 struct btrfs_stripe *stripe;
3378 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3379 int i;
3380
3381 for (i = 0; i < num_stripes; i++) {
3382 stripe = btrfs_stripe_nr(chunk, i);
3383 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3384 return 0;
3385 }
3386
3387 return 1;
3388}
3389
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003390/* [pstart, pend) */
3391static int chunk_drange_filter(struct extent_buffer *leaf,
3392 struct btrfs_chunk *chunk,
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003393 struct btrfs_balance_args *bargs)
3394{
3395 struct btrfs_stripe *stripe;
3396 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3397 u64 stripe_offset;
3398 u64 stripe_length;
3399 int factor;
3400 int i;
3401
3402 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3403 return 0;
3404
3405 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003406 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3407 factor = num_stripes / 2;
3408 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3409 factor = num_stripes - 1;
3410 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3411 factor = num_stripes - 2;
3412 } else {
3413 factor = num_stripes;
3414 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003415
3416 for (i = 0; i < num_stripes; i++) {
3417 stripe = btrfs_stripe_nr(chunk, i);
3418 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3419 continue;
3420
3421 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3422 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003423 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003424
3425 if (stripe_offset < bargs->pend &&
3426 stripe_offset + stripe_length > bargs->pstart)
3427 return 0;
3428 }
3429
3430 return 1;
3431}
3432
Ilya Dryomovea671762012-01-16 22:04:48 +02003433/* [vstart, vend) */
3434static int chunk_vrange_filter(struct extent_buffer *leaf,
3435 struct btrfs_chunk *chunk,
3436 u64 chunk_offset,
3437 struct btrfs_balance_args *bargs)
3438{
3439 if (chunk_offset < bargs->vend &&
3440 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3441 /* at least part of the chunk is inside this vrange */
3442 return 0;
3443
3444 return 1;
3445}
3446
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003447static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3448 struct btrfs_chunk *chunk,
3449 struct btrfs_balance_args *bargs)
3450{
3451 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3452
3453 if (bargs->stripes_min <= num_stripes
3454 && num_stripes <= bargs->stripes_max)
3455 return 0;
3456
3457 return 1;
3458}
3459
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003460static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003461 struct btrfs_balance_args *bargs)
3462{
3463 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3464 return 0;
3465
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003466 chunk_type = chunk_to_extended(chunk_type) &
3467 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003468
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003469 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003470 return 1;
3471
3472 return 0;
3473}
3474
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003475static int should_balance_chunk(struct btrfs_fs_info *fs_info,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003476 struct extent_buffer *leaf,
3477 struct btrfs_chunk *chunk, u64 chunk_offset)
3478{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003479 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003480 struct btrfs_balance_args *bargs = NULL;
3481 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3482
3483 /* type filter */
3484 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3485 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3486 return 0;
3487 }
3488
3489 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3490 bargs = &bctl->data;
3491 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3492 bargs = &bctl->sys;
3493 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3494 bargs = &bctl->meta;
3495
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003496 /* profiles filter */
3497 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3498 chunk_profiles_filter(chunk_type, bargs)) {
3499 return 0;
3500 }
3501
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003502 /* usage filter */
3503 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003504 chunk_usage_filter(fs_info, chunk_offset, bargs)) {
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003505 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003506 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003507 chunk_usage_range_filter(fs_info, chunk_offset, bargs)) {
David Sterbabc309462015-10-20 18:22:13 +02003508 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003509 }
3510
Ilya Dryomov409d4042012-01-16 22:04:47 +02003511 /* devid filter */
3512 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3513 chunk_devid_filter(leaf, chunk, bargs)) {
3514 return 0;
3515 }
3516
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003517 /* drange filter, makes sense only with devid filter */
3518 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03003519 chunk_drange_filter(leaf, chunk, bargs)) {
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003520 return 0;
3521 }
3522
Ilya Dryomovea671762012-01-16 22:04:48 +02003523 /* vrange filter */
3524 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3525 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3526 return 0;
3527 }
3528
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003529 /* stripes filter */
3530 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3531 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3532 return 0;
3533 }
3534
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003535 /* soft profile changing mode */
3536 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3537 chunk_soft_convert_filter(chunk_type, bargs)) {
3538 return 0;
3539 }
3540
David Sterba7d824b62014-05-07 17:37:51 +02003541 /*
3542 * limited by count, must be the last filter
3543 */
3544 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3545 if (bargs->limit == 0)
3546 return 0;
3547 else
3548 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003549 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3550 /*
3551 * Same logic as the 'limit' filter; the minimum cannot be
Nicholas D Steeves01327612016-05-19 21:18:45 -04003552 * determined here because we do not have the global information
David Sterba12907fc2015-10-10 17:16:50 +02003553 * about the count of all chunks that satisfy the filters.
3554 */
3555 if (bargs->limit_max == 0)
3556 return 0;
3557 else
3558 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003559 }
3560
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003561 return 1;
3562}
3563
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003564static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003565{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003566 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003567 struct btrfs_root *chunk_root = fs_info->chunk_root;
3568 struct btrfs_root *dev_root = fs_info->dev_root;
3569 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003570 struct btrfs_device *device;
3571 u64 old_size;
3572 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003573 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003574 struct btrfs_chunk *chunk;
Liu Bo5a488b92016-07-12 11:24:21 -07003575 struct btrfs_path *path = NULL;
Chris Masonec44a352008-04-28 15:29:52 -04003576 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003577 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003578 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003579 struct extent_buffer *leaf;
3580 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003581 int ret;
3582 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003583 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003584 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003585 u64 limit_data = bctl->data.limit;
3586 u64 limit_meta = bctl->meta.limit;
3587 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003588 u32 count_data = 0;
3589 u32 count_meta = 0;
3590 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003591 int chunk_reserved = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003592
Chris Masonec44a352008-04-28 15:29:52 -04003593 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003594 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003595 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003596 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003597 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003598 size_to_free = min_t(u64, size_to_free, SZ_1M);
Anand Jainebbede42017-12-04 12:54:52 +08003599 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003600 btrfs_device_get_total_bytes(device) -
3601 btrfs_device_get_bytes_used(device) > size_to_free ||
Anand Jain401e29c2017-12-04 12:54:55 +08003602 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Chris Masonec44a352008-04-28 15:29:52 -04003603 continue;
3604
3605 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003606 if (ret == -ENOSPC)
3607 break;
Liu Bo5a488b92016-07-12 11:24:21 -07003608 if (ret) {
3609 /* btrfs_shrink_device never returns ret > 0 */
3610 WARN_ON(ret > 0);
3611 goto error;
3612 }
Chris Masonec44a352008-04-28 15:29:52 -04003613
Yan, Zhenga22285a2010-05-16 10:48:46 -04003614 trans = btrfs_start_transaction(dev_root, 0);
Liu Bo5a488b92016-07-12 11:24:21 -07003615 if (IS_ERR(trans)) {
3616 ret = PTR_ERR(trans);
3617 btrfs_info_in_rcu(fs_info,
3618 "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu",
3619 rcu_str_deref(device->name), ret,
3620 old_size, old_size - size_to_free);
3621 goto error;
3622 }
Chris Masonec44a352008-04-28 15:29:52 -04003623
3624 ret = btrfs_grow_device(trans, device, old_size);
Liu Bo5a488b92016-07-12 11:24:21 -07003625 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003626 btrfs_end_transaction(trans);
Liu Bo5a488b92016-07-12 11:24:21 -07003627 /* btrfs_grow_device never returns ret > 0 */
3628 WARN_ON(ret > 0);
3629 btrfs_info_in_rcu(fs_info,
3630 "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu",
3631 rcu_str_deref(device->name), ret,
3632 old_size, old_size - size_to_free);
3633 goto error;
3634 }
Chris Masonec44a352008-04-28 15:29:52 -04003635
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003636 btrfs_end_transaction(trans);
Chris Masonec44a352008-04-28 15:29:52 -04003637 }
3638
3639 /* step two, relocate all the chunks */
3640 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003641 if (!path) {
3642 ret = -ENOMEM;
3643 goto error;
3644 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003645
3646 /* zero out stat counters */
3647 spin_lock(&fs_info->balance_lock);
3648 memset(&bctl->stat, 0, sizeof(bctl->stat));
3649 spin_unlock(&fs_info->balance_lock);
3650again:
David Sterba7d824b62014-05-07 17:37:51 +02003651 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003652 /*
3653 * The single value limit and min/max limits use the same bytes
3654 * in the
3655 */
David Sterba7d824b62014-05-07 17:37:51 +02003656 bctl->data.limit = limit_data;
3657 bctl->meta.limit = limit_meta;
3658 bctl->sys.limit = limit_sys;
3659 }
Chris Masonec44a352008-04-28 15:29:52 -04003660 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3661 key.offset = (u64)-1;
3662 key.type = BTRFS_CHUNK_ITEM_KEY;
3663
Chris Masond3977122009-01-05 21:25:51 -05003664 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003665 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003666 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003667 ret = -ECANCELED;
3668 goto error;
3669 }
3670
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003671 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003672 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003673 if (ret < 0) {
3674 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003675 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003676 }
Chris Masonec44a352008-04-28 15:29:52 -04003677
3678 /*
3679 * this shouldn't happen, it means the last relocate
3680 * failed
3681 */
3682 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003683 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003684
3685 ret = btrfs_previous_item(chunk_root, path, 0,
3686 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003687 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003688 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003689 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003690 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003691 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003692
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003693 leaf = path->nodes[0];
3694 slot = path->slots[0];
3695 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3696
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003697 if (found_key.objectid != key.objectid) {
3698 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003699 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003700 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003701
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003702 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003703 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003704
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003705 if (!counting) {
3706 spin_lock(&fs_info->balance_lock);
3707 bctl->stat.considered++;
3708 spin_unlock(&fs_info->balance_lock);
3709 }
3710
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003711 ret = should_balance_chunk(fs_info, leaf, chunk,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003712 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003713
David Sterbab3b4aa72011-04-21 01:20:15 +02003714 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003715 if (!ret) {
3716 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003717 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003718 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003719
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003720 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003721 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003722 spin_lock(&fs_info->balance_lock);
3723 bctl->stat.expected++;
3724 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003725
3726 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3727 count_data++;
3728 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3729 count_sys++;
3730 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3731 count_meta++;
3732
3733 goto loop;
3734 }
3735
3736 /*
3737 * Apply limit_min filter, no need to check if the LIMITS
3738 * filter is used, limit_min is 0 by default
3739 */
3740 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3741 count_data < bctl->data.limit_min)
3742 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3743 count_meta < bctl->meta.limit_min)
3744 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3745 count_sys < bctl->sys.limit_min)) {
3746 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003747 goto loop;
3748 }
3749
Liu Boa6f93c72017-11-15 16:28:11 -07003750 if (!chunk_reserved) {
3751 /*
3752 * We may be relocating the only data chunk we have,
3753 * which could potentially end up with losing data's
3754 * raid profile, so lets allocate an empty one in
3755 * advance.
3756 */
3757 ret = btrfs_may_alloc_data_chunk(fs_info,
3758 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003759 if (ret < 0) {
3760 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3761 goto error;
Liu Boa6f93c72017-11-15 16:28:11 -07003762 } else if (ret == 1) {
3763 chunk_reserved = 1;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003764 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003765 }
3766
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003767 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003768 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003769 if (ret && ret != -ENOSPC)
3770 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003771 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003772 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003773 } else {
3774 spin_lock(&fs_info->balance_lock);
3775 bctl->stat.completed++;
3776 spin_unlock(&fs_info->balance_lock);
3777 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003778loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003779 if (found_key.offset == 0)
3780 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003781 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003782 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003783
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003784 if (counting) {
3785 btrfs_release_path(path);
3786 counting = false;
3787 goto again;
3788 }
Chris Masonec44a352008-04-28 15:29:52 -04003789error:
3790 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003791 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003792 btrfs_info(fs_info, "%d enospc errors during balance",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003793 enospc_errors);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003794 if (!ret)
3795 ret = -ENOSPC;
3796 }
3797
Chris Masonec44a352008-04-28 15:29:52 -04003798 return ret;
3799}
3800
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003801/**
3802 * alloc_profile_is_valid - see if a given profile is valid and reduced
3803 * @flags: profile to validate
3804 * @extended: if true @flags is treated as an extended profile
3805 */
3806static int alloc_profile_is_valid(u64 flags, int extended)
3807{
3808 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3809 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3810
3811 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3812
3813 /* 1) check that all other bits are zeroed */
3814 if (flags & ~mask)
3815 return 0;
3816
3817 /* 2) see if profile is reduced */
3818 if (flags == 0)
3819 return !extended; /* "0" is valid for usual profiles */
3820
3821 /* true if exactly one bit set */
3822 return (flags & (flags - 1)) == 0;
3823}
3824
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003825static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3826{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003827 /* cancel requested || normal exit path */
3828 return atomic_read(&fs_info->balance_cancel_req) ||
3829 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3830 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003831}
3832
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003833static void __cancel_balance(struct btrfs_fs_info *fs_info)
3834{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003835 int ret;
3836
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003837 unset_balance_control(fs_info);
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003838 ret = del_balance_item(fs_info);
Liu Bo0f788c52013-03-04 16:25:40 +00003839 if (ret)
Anand Jain34d97002016-03-16 16:43:06 +08003840 btrfs_handle_fs_error(fs_info, ret, NULL);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003841
David Sterba171938e2017-03-28 14:44:21 +02003842 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003843}
3844
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003845/* Non-zero return value signifies invalidity */
3846static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3847 u64 allowed)
3848{
3849 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3850 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3851 (bctl_arg->target & ~allowed)));
3852}
3853
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003854/*
3855 * Should be called with both balance and volume mutexes held
3856 */
3857int btrfs_balance(struct btrfs_balance_control *bctl,
3858 struct btrfs_ioctl_balance_args *bargs)
3859{
3860 struct btrfs_fs_info *fs_info = bctl->fs_info;
Adam Borowski14506122017-03-07 23:34:44 +01003861 u64 meta_target, data_target;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003862 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003863 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003864 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003865 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003866 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003867
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003868 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003869 atomic_read(&fs_info->balance_pause_req) ||
3870 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003871 ret = -EINVAL;
3872 goto out;
3873 }
3874
Ilya Dryomove4837f82012-03-27 17:09:17 +03003875 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3876 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3877 mixed = 1;
3878
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003879 /*
3880 * In case of mixed groups both data and meta should be picked,
3881 * and identical options should be given for both of them.
3882 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003883 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3884 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003885 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3886 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3887 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003888 btrfs_err(fs_info,
3889 "with mixed groups data and metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003890 ret = -EINVAL;
3891 goto out;
3892 }
3893 }
3894
Stefan Behrens8dabb742012-11-06 13:15:27 +01003895 num_devices = fs_info->fs_devices->num_devices;
Liu Bo73beece2015-07-17 16:49:19 +08003896 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrens8dabb742012-11-06 13:15:27 +01003897 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3898 BUG_ON(num_devices < 1);
3899 num_devices--;
3900 }
Liu Bo73beece2015-07-17 16:49:19 +08003901 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Austin S. Hemmelgarn88be1592016-03-23 14:22:59 -04003902 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP;
3903 if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003904 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003905 if (num_devices > 2)
3906 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3907 if (num_devices > 3)
3908 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3909 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003910 if (validate_convert_profile(&bctl->data, allowed)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003911 btrfs_err(fs_info,
3912 "unable to start balance with target data profile %llu",
3913 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003914 ret = -EINVAL;
3915 goto out;
3916 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003917 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003918 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003919 "unable to start balance with target metadata profile %llu",
3920 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003921 ret = -EINVAL;
3922 goto out;
3923 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003924 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003925 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003926 "unable to start balance with target system profile %llu",
3927 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003928 ret = -EINVAL;
3929 goto out;
3930 }
3931
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003932 /* allow to reduce meta or sys integrity only if force set */
3933 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003934 BTRFS_BLOCK_GROUP_RAID10 |
3935 BTRFS_BLOCK_GROUP_RAID5 |
3936 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003937 do {
3938 seq = read_seqbegin(&fs_info->profiles_lock);
3939
3940 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3941 (fs_info->avail_system_alloc_bits & allowed) &&
3942 !(bctl->sys.target & allowed)) ||
3943 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3944 (fs_info->avail_metadata_alloc_bits & allowed) &&
3945 !(bctl->meta.target & allowed))) {
3946 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003947 btrfs_info(fs_info,
3948 "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003949 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003950 btrfs_err(fs_info,
3951 "balance will reduce metadata integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003952 ret = -EINVAL;
3953 goto out;
3954 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003955 }
Miao Xiede98ced2013-01-29 10:13:12 +00003956 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003957
Adam Borowski14506122017-03-07 23:34:44 +01003958 /* if we're not converting, the target field is uninitialized */
3959 meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3960 bctl->meta.target : fs_info->avail_metadata_alloc_bits;
3961 data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3962 bctl->data.target : fs_info->avail_data_alloc_bits;
3963 if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) <
3964 btrfs_get_num_tolerated_disk_barrier_failures(data_target)) {
Sam Tygieree592d02016-01-06 08:46:12 +00003965 btrfs_warn(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003966 "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
Adam Borowski14506122017-03-07 23:34:44 +01003967 meta_target, data_target);
Sam Tygieree592d02016-01-06 08:46:12 +00003968 }
3969
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003970 ret = insert_balance_item(fs_info, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003971 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003972 goto out;
3973
Ilya Dryomov59641012012-01-16 22:04:48 +02003974 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3975 BUG_ON(ret == -EEXIST);
3976 set_balance_control(bctl);
3977 } else {
3978 BUG_ON(ret != -EEXIST);
3979 spin_lock(&fs_info->balance_lock);
3980 update_balance_args(bctl);
3981 spin_unlock(&fs_info->balance_lock);
3982 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003983
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003984 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003985 mutex_unlock(&fs_info->balance_mutex);
3986
3987 ret = __btrfs_balance(fs_info);
3988
3989 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003990 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003991
3992 if (bargs) {
3993 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003994 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003995 }
3996
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003997 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3998 balance_need_close(fs_info)) {
3999 __cancel_balance(fs_info);
4000 }
4001
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004002 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004003
4004 return ret;
4005out:
Ilya Dryomov59641012012-01-16 22:04:48 +02004006 if (bctl->flags & BTRFS_BALANCE_RESUME)
4007 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004008 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02004009 kfree(bctl);
David Sterba171938e2017-03-28 14:44:21 +02004010 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004011 }
Ilya Dryomov59641012012-01-16 22:04:48 +02004012 return ret;
4013}
4014
4015static int balance_kthread(void *data)
4016{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004017 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02004018 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02004019
4020 mutex_lock(&fs_info->volume_mutex);
4021 mutex_lock(&fs_info->balance_mutex);
4022
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004023 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004024 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004025 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02004026 }
Ilya Dryomov59641012012-01-16 22:04:48 +02004027
4028 mutex_unlock(&fs_info->balance_mutex);
4029 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004030
Ilya Dryomov59641012012-01-16 22:04:48 +02004031 return ret;
4032}
4033
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004034int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
4035{
4036 struct task_struct *tsk;
4037
4038 spin_lock(&fs_info->balance_lock);
4039 if (!fs_info->balance_ctl) {
4040 spin_unlock(&fs_info->balance_lock);
4041 return 0;
4042 }
4043 spin_unlock(&fs_info->balance_lock);
4044
Jeff Mahoney3cdde222016-06-09 21:38:35 -04004045 if (btrfs_test_opt(fs_info, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004046 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004047 return 0;
4048 }
4049
4050 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05304051 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004052}
4053
Ilya Dryomov68310a52012-06-22 12:24:12 -06004054int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02004055{
Ilya Dryomov59641012012-01-16 22:04:48 +02004056 struct btrfs_balance_control *bctl;
4057 struct btrfs_balance_item *item;
4058 struct btrfs_disk_balance_args disk_bargs;
4059 struct btrfs_path *path;
4060 struct extent_buffer *leaf;
4061 struct btrfs_key key;
4062 int ret;
4063
4064 path = btrfs_alloc_path();
4065 if (!path)
4066 return -ENOMEM;
4067
Ilya Dryomov68310a52012-06-22 12:24:12 -06004068 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01004069 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06004070 key.offset = 0;
4071
4072 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
4073 if (ret < 0)
4074 goto out;
4075 if (ret > 0) { /* ret = -ENOENT; */
4076 ret = 0;
4077 goto out;
4078 }
4079
Ilya Dryomov59641012012-01-16 22:04:48 +02004080 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4081 if (!bctl) {
4082 ret = -ENOMEM;
4083 goto out;
4084 }
4085
Ilya Dryomov59641012012-01-16 22:04:48 +02004086 leaf = path->nodes[0];
4087 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
4088
Ilya Dryomov68310a52012-06-22 12:24:12 -06004089 bctl->fs_info = fs_info;
4090 bctl->flags = btrfs_balance_flags(leaf, item);
4091 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02004092
4093 btrfs_balance_data(leaf, item, &disk_bargs);
4094 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
4095 btrfs_balance_meta(leaf, item, &disk_bargs);
4096 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
4097 btrfs_balance_sys(leaf, item, &disk_bargs);
4098 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
4099
David Sterba171938e2017-03-28 14:44:21 +02004100 WARN_ON(test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004101
Ilya Dryomov68310a52012-06-22 12:24:12 -06004102 mutex_lock(&fs_info->volume_mutex);
4103 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004104
Ilya Dryomov68310a52012-06-22 12:24:12 -06004105 set_balance_control(bctl);
4106
4107 mutex_unlock(&fs_info->balance_mutex);
4108 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004109out:
4110 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004111 return ret;
4112}
4113
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004114int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
4115{
4116 int ret = 0;
4117
4118 mutex_lock(&fs_info->balance_mutex);
4119 if (!fs_info->balance_ctl) {
4120 mutex_unlock(&fs_info->balance_mutex);
4121 return -ENOTCONN;
4122 }
4123
4124 if (atomic_read(&fs_info->balance_running)) {
4125 atomic_inc(&fs_info->balance_pause_req);
4126 mutex_unlock(&fs_info->balance_mutex);
4127
4128 wait_event(fs_info->balance_wait_q,
4129 atomic_read(&fs_info->balance_running) == 0);
4130
4131 mutex_lock(&fs_info->balance_mutex);
4132 /* we are good with balance_ctl ripped off from under us */
4133 BUG_ON(atomic_read(&fs_info->balance_running));
4134 atomic_dec(&fs_info->balance_pause_req);
4135 } else {
4136 ret = -ENOTCONN;
4137 }
4138
4139 mutex_unlock(&fs_info->balance_mutex);
4140 return ret;
4141}
4142
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004143int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
4144{
David Howellsbc98a422017-07-17 08:45:34 +01004145 if (sb_rdonly(fs_info->sb))
Ilya Dryomove649e582013-10-10 20:40:21 +03004146 return -EROFS;
4147
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004148 mutex_lock(&fs_info->balance_mutex);
4149 if (!fs_info->balance_ctl) {
4150 mutex_unlock(&fs_info->balance_mutex);
4151 return -ENOTCONN;
4152 }
4153
4154 atomic_inc(&fs_info->balance_cancel_req);
4155 /*
4156 * if we are running just wait and return, balance item is
4157 * deleted in btrfs_balance in this case
4158 */
4159 if (atomic_read(&fs_info->balance_running)) {
4160 mutex_unlock(&fs_info->balance_mutex);
4161 wait_event(fs_info->balance_wait_q,
4162 atomic_read(&fs_info->balance_running) == 0);
4163 mutex_lock(&fs_info->balance_mutex);
4164 } else {
4165 /* __cancel_balance needs volume_mutex */
4166 mutex_unlock(&fs_info->balance_mutex);
4167 mutex_lock(&fs_info->volume_mutex);
4168 mutex_lock(&fs_info->balance_mutex);
4169
4170 if (fs_info->balance_ctl)
4171 __cancel_balance(fs_info);
4172
4173 mutex_unlock(&fs_info->volume_mutex);
4174 }
4175
4176 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
4177 atomic_dec(&fs_info->balance_cancel_req);
4178 mutex_unlock(&fs_info->balance_mutex);
4179 return 0;
4180}
4181
Stefan Behrens803b2f52013-08-15 17:11:21 +02004182static int btrfs_uuid_scan_kthread(void *data)
4183{
4184 struct btrfs_fs_info *fs_info = data;
4185 struct btrfs_root *root = fs_info->tree_root;
4186 struct btrfs_key key;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004187 struct btrfs_path *path = NULL;
4188 int ret = 0;
4189 struct extent_buffer *eb;
4190 int slot;
4191 struct btrfs_root_item root_item;
4192 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004193 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004194
4195 path = btrfs_alloc_path();
4196 if (!path) {
4197 ret = -ENOMEM;
4198 goto out;
4199 }
4200
4201 key.objectid = 0;
4202 key.type = BTRFS_ROOT_ITEM_KEY;
4203 key.offset = 0;
4204
Stefan Behrens803b2f52013-08-15 17:11:21 +02004205 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004206 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004207 if (ret) {
4208 if (ret > 0)
4209 ret = 0;
4210 break;
4211 }
4212
4213 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4214 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4215 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4216 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4217 goto skip;
4218
4219 eb = path->nodes[0];
4220 slot = path->slots[0];
4221 item_size = btrfs_item_size_nr(eb, slot);
4222 if (item_size < sizeof(root_item))
4223 goto skip;
4224
Stefan Behrens803b2f52013-08-15 17:11:21 +02004225 read_extent_buffer(eb, &root_item,
4226 btrfs_item_ptr_offset(eb, slot),
4227 (int)sizeof(root_item));
4228 if (btrfs_root_refs(&root_item) == 0)
4229 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004230
4231 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4232 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4233 if (trans)
4234 goto update_tree;
4235
4236 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004237 /*
4238 * 1 - subvol uuid item
4239 * 1 - received_subvol uuid item
4240 */
4241 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4242 if (IS_ERR(trans)) {
4243 ret = PTR_ERR(trans);
4244 break;
4245 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004246 continue;
4247 } else {
4248 goto skip;
4249 }
4250update_tree:
4251 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004252 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004253 root_item.uuid,
4254 BTRFS_UUID_KEY_SUBVOL,
4255 key.objectid);
4256 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004257 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004258 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004259 break;
4260 }
4261 }
4262
4263 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004264 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004265 root_item.received_uuid,
4266 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4267 key.objectid);
4268 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004269 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004270 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004271 break;
4272 }
4273 }
4274
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004275skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004276 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004277 ret = btrfs_end_transaction(trans);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004278 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004279 if (ret)
4280 break;
4281 }
4282
Stefan Behrens803b2f52013-08-15 17:11:21 +02004283 btrfs_release_path(path);
4284 if (key.offset < (u64)-1) {
4285 key.offset++;
4286 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4287 key.offset = 0;
4288 key.type = BTRFS_ROOT_ITEM_KEY;
4289 } else if (key.objectid < (u64)-1) {
4290 key.offset = 0;
4291 key.type = BTRFS_ROOT_ITEM_KEY;
4292 key.objectid++;
4293 } else {
4294 break;
4295 }
4296 cond_resched();
4297 }
4298
4299out:
4300 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004301 if (trans && !IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004302 btrfs_end_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004303 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004304 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004305 else
Josef Bacikafcdd122016-09-02 15:40:02 -04004306 set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004307 up(&fs_info->uuid_tree_rescan_sem);
4308 return 0;
4309}
4310
Stefan Behrens70f80172013-08-15 17:11:23 +02004311/*
4312 * Callback for btrfs_uuid_tree_iterate().
4313 * returns:
4314 * 0 check succeeded, the entry is not outdated.
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08004315 * < 0 if an error occurred.
Stefan Behrens70f80172013-08-15 17:11:23 +02004316 * > 0 if the check failed, which means the caller shall remove the entry.
4317 */
4318static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4319 u8 *uuid, u8 type, u64 subid)
4320{
4321 struct btrfs_key key;
4322 int ret = 0;
4323 struct btrfs_root *subvol_root;
4324
4325 if (type != BTRFS_UUID_KEY_SUBVOL &&
4326 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4327 goto out;
4328
4329 key.objectid = subid;
4330 key.type = BTRFS_ROOT_ITEM_KEY;
4331 key.offset = (u64)-1;
4332 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4333 if (IS_ERR(subvol_root)) {
4334 ret = PTR_ERR(subvol_root);
4335 if (ret == -ENOENT)
4336 ret = 1;
4337 goto out;
4338 }
4339
4340 switch (type) {
4341 case BTRFS_UUID_KEY_SUBVOL:
4342 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4343 ret = 1;
4344 break;
4345 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4346 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4347 BTRFS_UUID_SIZE))
4348 ret = 1;
4349 break;
4350 }
4351
4352out:
4353 return ret;
4354}
4355
4356static int btrfs_uuid_rescan_kthread(void *data)
4357{
4358 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4359 int ret;
4360
4361 /*
4362 * 1st step is to iterate through the existing UUID tree and
4363 * to delete all entries that contain outdated data.
4364 * 2nd step is to add all missing entries to the UUID tree.
4365 */
4366 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4367 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004368 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004369 up(&fs_info->uuid_tree_rescan_sem);
4370 return ret;
4371 }
4372 return btrfs_uuid_scan_kthread(data);
4373}
4374
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004375int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4376{
4377 struct btrfs_trans_handle *trans;
4378 struct btrfs_root *tree_root = fs_info->tree_root;
4379 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004380 struct task_struct *task;
4381 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004382
4383 /*
4384 * 1 - root node
4385 * 1 - root item
4386 */
4387 trans = btrfs_start_transaction(tree_root, 2);
4388 if (IS_ERR(trans))
4389 return PTR_ERR(trans);
4390
4391 uuid_root = btrfs_create_tree(trans, fs_info,
4392 BTRFS_UUID_TREE_OBJECTID);
4393 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004394 ret = PTR_ERR(uuid_root);
Jeff Mahoney66642832016-06-10 18:19:25 -04004395 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004396 btrfs_end_transaction(trans);
David Sterba6d13f542015-04-24 19:12:01 +02004397 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004398 }
4399
4400 fs_info->uuid_root = uuid_root;
4401
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004402 ret = btrfs_commit_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004403 if (ret)
4404 return ret;
4405
4406 down(&fs_info->uuid_tree_rescan_sem);
4407 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4408 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004409 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004410 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004411 up(&fs_info->uuid_tree_rescan_sem);
4412 return PTR_ERR(task);
4413 }
4414
4415 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004416}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004417
Stefan Behrens70f80172013-08-15 17:11:23 +02004418int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4419{
4420 struct task_struct *task;
4421
4422 down(&fs_info->uuid_tree_rescan_sem);
4423 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4424 if (IS_ERR(task)) {
4425 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004426 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004427 up(&fs_info->uuid_tree_rescan_sem);
4428 return PTR_ERR(task);
4429 }
4430
4431 return 0;
4432}
4433
Chris Mason8f18cf12008-04-25 16:53:30 -04004434/*
4435 * shrinking a device means finding all of the device extents past
4436 * the new size, and then following the back refs to the chunks.
4437 * The chunk relocation code actually frees the device extent
4438 */
4439int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4440{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004441 struct btrfs_fs_info *fs_info = device->fs_info;
4442 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04004443 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04004444 struct btrfs_dev_extent *dev_extent = NULL;
4445 struct btrfs_path *path;
4446 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004447 u64 chunk_offset;
4448 int ret;
4449 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004450 int failed = 0;
4451 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004452 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004453 struct extent_buffer *l;
4454 struct btrfs_key key;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004455 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004456 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004457 u64 old_size = btrfs_device_get_total_bytes(device);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004458 u64 diff;
4459
4460 new_size = round_down(new_size, fs_info->sectorsize);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03004461 diff = round_down(old_size - new_size, fs_info->sectorsize);
Chris Mason8f18cf12008-04-25 16:53:30 -04004462
Anand Jain401e29c2017-12-04 12:54:55 +08004463 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Stefan Behrens63a212a2012-11-05 18:29:28 +01004464 return -EINVAL;
4465
Chris Mason8f18cf12008-04-25 16:53:30 -04004466 path = btrfs_alloc_path();
4467 if (!path)
4468 return -ENOMEM;
4469
David Sterbae4058b52015-11-27 16:31:35 +01004470 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04004471
David Sterba34441362016-10-04 19:34:27 +02004472 mutex_lock(&fs_info->chunk_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04004473
Miao Xie7cc8e582014-09-03 21:35:38 +08004474 btrfs_device_set_total_bytes(device, new_size);
Anand Jainebbede42017-12-04 12:54:52 +08004475 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05004476 device->fs_devices->total_rw_bytes -= diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004477 atomic64_sub(diff, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04004478 }
David Sterba34441362016-10-04 19:34:27 +02004479 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004480
Josef Bacikba1bf482009-09-11 16:11:19 -04004481again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004482 key.objectid = device->devid;
4483 key.offset = (u64)-1;
4484 key.type = BTRFS_DEV_EXTENT_KEY;
4485
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004486 do {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004487 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004488 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004489 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004490 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004491 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004492 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004493
4494 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004495 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004496 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004497 if (ret < 0)
4498 goto done;
4499 if (ret) {
4500 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004501 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004502 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004503 }
4504
4505 l = path->nodes[0];
4506 slot = path->slots[0];
4507 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4508
Josef Bacikba1bf482009-09-11 16:11:19 -04004509 if (key.objectid != device->devid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004510 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004511 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004512 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004513 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004514
4515 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4516 length = btrfs_dev_extent_length(l, dev_extent);
4517
Josef Bacikba1bf482009-09-11 16:11:19 -04004518 if (key.offset + length <= new_size) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004519 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004520 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004521 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004522 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004523
Chris Mason8f18cf12008-04-25 16:53:30 -04004524 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004525 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004526
Liu Boa6f93c72017-11-15 16:28:11 -07004527 /*
4528 * We may be relocating the only data chunk we have,
4529 * which could potentially end up with losing data's
4530 * raid profile, so lets allocate an empty one in
4531 * advance.
4532 */
4533 ret = btrfs_may_alloc_data_chunk(fs_info, chunk_offset);
4534 if (ret < 0) {
4535 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
4536 goto done;
4537 }
4538
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004539 ret = btrfs_relocate_chunk(fs_info, chunk_offset);
4540 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004541 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004542 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004543 if (ret == -ENOSPC)
4544 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004545 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004546
4547 if (failed && !retried) {
4548 failed = 0;
4549 retried = true;
4550 goto again;
4551 } else if (failed && retried) {
4552 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004553 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004554 }
4555
Chris Balld6397ba2009-04-27 07:29:03 -04004556 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004557 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004558 if (IS_ERR(trans)) {
4559 ret = PTR_ERR(trans);
4560 goto done;
4561 }
4562
David Sterba34441362016-10-04 19:34:27 +02004563 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004564
4565 /*
4566 * We checked in the above loop all device extents that were already in
4567 * the device tree. However before we have updated the device's
4568 * total_bytes to the new size, we might have had chunk allocations that
4569 * have not complete yet (new block groups attached to transaction
4570 * handles), and therefore their device extents were not yet in the
4571 * device tree and we missed them in the loop above. So if we have any
4572 * pending chunk using a device extent that overlaps the device range
4573 * that we can not use anymore, commit the current transaction and
4574 * repeat the search on the device tree - this way we guarantee we will
4575 * not have chunks using device extents that end beyond 'new_size'.
4576 */
4577 if (!checked_pending_chunks) {
4578 u64 start = new_size;
4579 u64 len = old_size - new_size;
4580
Jeff Mahoney499f3772015-06-15 09:41:17 -04004581 if (contains_pending_extent(trans->transaction, device,
4582 &start, len)) {
David Sterba34441362016-10-04 19:34:27 +02004583 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004584 checked_pending_chunks = true;
4585 failed = 0;
4586 retried = false;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004587 ret = btrfs_commit_transaction(trans);
Filipe Manana53e489b2015-06-02 14:43:21 +01004588 if (ret)
4589 goto done;
4590 goto again;
4591 }
4592 }
4593
Miao Xie7cc8e582014-09-03 21:35:38 +08004594 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004595 if (list_empty(&device->resized_list))
4596 list_add_tail(&device->resized_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004597 &fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004598
Chris Balld6397ba2009-04-27 07:29:03 -04004599 WARN_ON(diff > old_total);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004600 btrfs_set_super_total_bytes(super_copy,
4601 round_down(old_total - diff, fs_info->sectorsize));
David Sterba34441362016-10-04 19:34:27 +02004602 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08004603
4604 /* Now btrfs_update_device() will change the on-disk size. */
4605 ret = btrfs_update_device(trans, device);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004606 btrfs_end_transaction(trans);
Chris Mason8f18cf12008-04-25 16:53:30 -04004607done:
4608 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004609 if (ret) {
David Sterba34441362016-10-04 19:34:27 +02004610 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004611 btrfs_device_set_total_bytes(device, old_size);
Anand Jainebbede42017-12-04 12:54:52 +08004612 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Filipe Manana53e489b2015-06-02 14:43:21 +01004613 device->fs_devices->total_rw_bytes += diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004614 atomic64_add(diff, &fs_info->free_chunk_space);
David Sterba34441362016-10-04 19:34:27 +02004615 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004616 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004617 return ret;
4618}
4619
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004620static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04004621 struct btrfs_key *key,
4622 struct btrfs_chunk *chunk, int item_size)
4623{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004624 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004625 struct btrfs_disk_key disk_key;
4626 u32 array_size;
4627 u8 *ptr;
4628
David Sterba34441362016-10-04 19:34:27 +02004629 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004630 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004631 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004632 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
David Sterba34441362016-10-04 19:34:27 +02004633 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004634 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004635 }
Chris Mason0b86a832008-03-24 15:01:56 -04004636
4637 ptr = super_copy->sys_chunk_array + array_size;
4638 btrfs_cpu_key_to_disk(&disk_key, key);
4639 memcpy(ptr, &disk_key, sizeof(disk_key));
4640 ptr += sizeof(disk_key);
4641 memcpy(ptr, chunk, item_size);
4642 item_size += sizeof(disk_key);
4643 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
David Sterba34441362016-10-04 19:34:27 +02004644 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004645
Chris Mason0b86a832008-03-24 15:01:56 -04004646 return 0;
4647}
4648
Miao Xieb2117a32011-01-05 10:07:28 +00004649/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004650 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004651 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004652static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004653{
Arne Jansen73c5de02011-04-12 12:07:57 +02004654 const struct btrfs_device_info *di_a = a;
4655 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004656
Arne Jansen73c5de02011-04-12 12:07:57 +02004657 if (di_a->max_avail > di_b->max_avail)
4658 return -1;
4659 if (di_a->max_avail < di_b->max_avail)
4660 return 1;
4661 if (di_a->total_avail > di_b->total_avail)
4662 return -1;
4663 if (di_a->total_avail < di_b->total_avail)
4664 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004665 return 0;
4666}
4667
David Woodhouse53b381b2013-01-29 18:40:14 -05004668static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4669{
Zhao Leiffe2d202015-01-20 15:11:44 +08004670 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004671 return;
4672
Miao Xieceda0862013-04-11 10:30:16 +00004673 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004674}
4675
Jeff Mahoneyda170662016-06-15 09:22:56 -04004676#define BTRFS_MAX_DEVS(r) ((BTRFS_MAX_ITEM_SIZE(r->fs_info) \
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004677 - sizeof(struct btrfs_chunk)) \
4678 / sizeof(struct btrfs_stripe) + 1)
4679
4680#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4681 - 2 * sizeof(struct btrfs_disk_key) \
4682 - 2 * sizeof(struct btrfs_chunk)) \
4683 / sizeof(struct btrfs_stripe) + 1)
4684
Miao Xieb2117a32011-01-05 10:07:28 +00004685static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
David Sterba72b468c2017-02-10 19:46:27 +01004686 u64 start, u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004687{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004688 struct btrfs_fs_info *info = trans->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004689 struct btrfs_fs_devices *fs_devices = info->fs_devices;
Nikolay Borisovebcc9302017-06-27 10:02:24 +03004690 struct btrfs_device *device;
Arne Jansen73c5de02011-04-12 12:07:57 +02004691 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004692 struct extent_map_tree *em_tree;
4693 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004694 struct btrfs_device_info *devices_info = NULL;
4695 u64 total_avail;
4696 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004697 int data_stripes; /* number of stripes that count for
4698 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004699 int sub_stripes; /* sub_stripes info for map */
4700 int dev_stripes; /* stripes per dev */
4701 int devs_max; /* max devs to use */
4702 int devs_min; /* min devs needed */
4703 int devs_increment; /* ndevs has to be a multiple of this */
4704 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004705 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004706 u64 max_stripe_size;
4707 u64 max_chunk_size;
4708 u64 stripe_size;
4709 u64 num_bytes;
4710 int ndevs;
4711 int i;
4712 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004713 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004714
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004715 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004716
Miao Xieb2117a32011-01-05 10:07:28 +00004717 if (list_empty(&fs_devices->alloc_list))
4718 return -ENOSPC;
4719
Liu Bo31e50222012-11-21 14:18:10 +00004720 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004721
Liu Bo31e50222012-11-21 14:18:10 +00004722 sub_stripes = btrfs_raid_array[index].sub_stripes;
4723 dev_stripes = btrfs_raid_array[index].dev_stripes;
4724 devs_max = btrfs_raid_array[index].devs_max;
4725 devs_min = btrfs_raid_array[index].devs_min;
4726 devs_increment = btrfs_raid_array[index].devs_increment;
4727 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004728
4729 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004730 max_stripe_size = SZ_1G;
Arne Jansen73c5de02011-04-12 12:07:57 +02004731 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004732 if (!devs_max)
4733 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004734 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004735 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004736 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4737 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004738 else
Byongho Leeee221842015-12-15 01:42:10 +09004739 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004740 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004741 if (!devs_max)
4742 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004743 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004744 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004745 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004746 if (!devs_max)
4747 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004748 } else {
David Sterba351fd352014-05-15 16:48:20 +02004749 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004750 type);
4751 BUG_ON(1);
4752 }
4753
4754 /* we don't want a chunk larger than 10% of writeable space */
4755 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4756 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004757
David Sterba31e818f2015-02-20 18:00:26 +01004758 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004759 GFP_NOFS);
4760 if (!devices_info)
4761 return -ENOMEM;
4762
Arne Jansen73c5de02011-04-12 12:07:57 +02004763 /*
4764 * in the first pass through the devices list, we gather information
4765 * about the available holes on each device.
4766 */
4767 ndevs = 0;
Nikolay Borisovebcc9302017-06-27 10:02:24 +03004768 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Arne Jansen73c5de02011-04-12 12:07:57 +02004769 u64 max_avail;
4770 u64 dev_offset;
4771
Anand Jainebbede42017-12-04 12:54:52 +08004772 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004773 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004774 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004775 continue;
4776 }
4777
Anand Jaine12c9622017-12-04 12:54:53 +08004778 if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
4779 &device->dev_state) ||
Anand Jain401e29c2017-12-04 12:54:55 +08004780 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Arne Jansen73c5de02011-04-12 12:07:57 +02004781 continue;
4782
4783 if (device->total_bytes > device->bytes_used)
4784 total_avail = device->total_bytes - device->bytes_used;
4785 else
4786 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004787
4788 /* If there is no space on this device, skip it. */
4789 if (total_avail == 0)
4790 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004791
Josef Bacik6df9a952013-06-27 13:22:46 -04004792 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004793 max_stripe_size * dev_stripes,
4794 &dev_offset, &max_avail);
4795 if (ret && ret != -ENOSPC)
4796 goto error;
4797
4798 if (ret == 0)
4799 max_avail = max_stripe_size * dev_stripes;
4800
4801 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4802 continue;
4803
Eric Sandeen063d0062013-01-31 00:55:01 +00004804 if (ndevs == fs_devices->rw_devices) {
4805 WARN(1, "%s: found more than %llu devices\n",
4806 __func__, fs_devices->rw_devices);
4807 break;
4808 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004809 devices_info[ndevs].dev_offset = dev_offset;
4810 devices_info[ndevs].max_avail = max_avail;
4811 devices_info[ndevs].total_avail = total_avail;
4812 devices_info[ndevs].dev = device;
4813 ++ndevs;
4814 }
4815
4816 /*
4817 * now sort the devices by hole size / available space
4818 */
4819 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4820 btrfs_cmp_device_info, NULL);
4821
4822 /* round down to number of usable stripes */
Nikolay Borisove5600fd2017-06-27 10:02:25 +03004823 ndevs = round_down(ndevs, devs_increment);
Arne Jansen73c5de02011-04-12 12:07:57 +02004824
4825 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4826 ret = -ENOSPC;
4827 goto error;
4828 }
4829
Nikolay Borisovf148ef42017-06-27 10:02:26 +03004830 ndevs = min(ndevs, devs_max);
4831
Arne Jansen73c5de02011-04-12 12:07:57 +02004832 /*
4833 * the primary goal is to maximize the number of stripes, so use as many
4834 * devices as possible, even if the stripes are not maximum sized.
4835 */
4836 stripe_size = devices_info[ndevs-1].max_avail;
4837 num_stripes = ndevs * dev_stripes;
4838
David Woodhouse53b381b2013-01-29 18:40:14 -05004839 /*
4840 * this will have to be fixed for RAID1 and RAID10 over
4841 * more drives
4842 */
4843 data_stripes = num_stripes / ncopies;
4844
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004845 if (type & BTRFS_BLOCK_GROUP_RAID5)
David Woodhouse53b381b2013-01-29 18:40:14 -05004846 data_stripes = num_stripes - 1;
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004847
4848 if (type & BTRFS_BLOCK_GROUP_RAID6)
David Woodhouse53b381b2013-01-29 18:40:14 -05004849 data_stripes = num_stripes - 2;
Chris Mason86db2572013-02-20 16:23:40 -05004850
4851 /*
4852 * Use the number of data stripes to figure out how big this chunk
4853 * is really going to be in terms of logical address space,
4854 * and compare that answer with the max chunk size
4855 */
4856 if (stripe_size * data_stripes > max_chunk_size) {
4857 u64 mask = (1ULL << 24) - 1;
David Sterbab8b93ad2015-01-16 17:26:13 +01004858
4859 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004860
4861 /* bump the answer up to a 16MB boundary */
4862 stripe_size = (stripe_size + mask) & ~mask;
4863
4864 /* but don't go higher than the limits we found
4865 * while searching for free extents
4866 */
4867 if (stripe_size > devices_info[ndevs-1].max_avail)
4868 stripe_size = devices_info[ndevs-1].max_avail;
4869 }
4870
David Sterbab8b93ad2015-01-16 17:26:13 +01004871 stripe_size = div_u64(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004872
4873 /* align to BTRFS_STRIPE_LEN */
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004874 stripe_size = round_down(stripe_size, BTRFS_STRIPE_LEN);
Arne Jansen73c5de02011-04-12 12:07:57 +02004875
Miao Xieb2117a32011-01-05 10:07:28 +00004876 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4877 if (!map) {
4878 ret = -ENOMEM;
4879 goto error;
4880 }
4881 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004882
Arne Jansen73c5de02011-04-12 12:07:57 +02004883 for (i = 0; i < ndevs; ++i) {
4884 for (j = 0; j < dev_stripes; ++j) {
4885 int s = i * dev_stripes + j;
4886 map->stripes[s].dev = devices_info[i].dev;
4887 map->stripes[s].physical = devices_info[i].dev_offset +
4888 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004889 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004890 }
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004891 map->stripe_len = BTRFS_STRIPE_LEN;
4892 map->io_align = BTRFS_STRIPE_LEN;
4893 map->io_width = BTRFS_STRIPE_LEN;
Chris Mason593060d2008-03-25 16:50:33 -04004894 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004895 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004896
David Woodhouse53b381b2013-01-29 18:40:14 -05004897 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004898
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004899 trace_btrfs_chunk_alloc(info, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004900
David Sterba172ddd62011-04-21 00:48:27 +02004901 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004902 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004903 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004904 ret = -ENOMEM;
4905 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004906 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004907 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004908 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004909 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004910 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004911 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004912 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004913 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004914
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004915 em_tree = &info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004916 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004917 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004918 if (ret) {
Nikolay Borisov1efb72a2017-08-21 12:43:49 +03004919 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004920 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004921 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004922 }
Yan Zheng2b820322008-11-17 21:11:30 -05004923
Nikolay Borisov1efb72a2017-08-21 12:43:49 +03004924 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4925 refcount_inc(&em->refs);
4926 write_unlock(&em_tree->lock);
4927
Nikolay Borisov01744842017-07-27 14:22:11 +03004928 ret = btrfs_make_block_group(trans, info, 0, type, start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004929 if (ret)
4930 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004931
Miao Xie7cc8e582014-09-03 21:35:38 +08004932 for (i = 0; i < map->num_stripes; i++) {
4933 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4934 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4935 }
Miao Xie43530c42014-09-03 21:35:36 +08004936
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004937 atomic64_sub(stripe_size * map->num_stripes, &info->free_chunk_space);
Miao Xie1c116182014-09-03 21:35:37 +08004938
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004939 free_extent_map(em);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004940 check_raid56_incompat_flag(info, type);
David Woodhouse53b381b2013-01-29 18:40:14 -05004941
Miao Xieb2117a32011-01-05 10:07:28 +00004942 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004943 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004944
Josef Bacik6df9a952013-06-27 13:22:46 -04004945error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004946 write_lock(&em_tree->lock);
4947 remove_extent_mapping(em_tree, em);
4948 write_unlock(&em_tree->lock);
4949
4950 /* One for our allocation */
4951 free_extent_map(em);
4952 /* One for the tree reference */
4953 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004954 /* One for the pending_chunks list reference */
4955 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004956error:
Miao Xieb2117a32011-01-05 10:07:28 +00004957 kfree(devices_info);
4958 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004959}
4960
Josef Bacik6df9a952013-06-27 13:22:46 -04004961int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004962 struct btrfs_fs_info *fs_info,
Josef Bacik6df9a952013-06-27 13:22:46 -04004963 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004964{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004965 struct btrfs_root *extent_root = fs_info->extent_root;
4966 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05004967 struct btrfs_key key;
Yan Zheng2b820322008-11-17 21:11:30 -05004968 struct btrfs_device *device;
4969 struct btrfs_chunk *chunk;
4970 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004971 struct extent_map *em;
4972 struct map_lookup *map;
4973 size_t item_size;
4974 u64 dev_offset;
4975 u64 stripe_size;
4976 int i = 0;
Chris Mason140e6392015-12-23 13:30:51 -08004977 int ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004978
Liu Bo592d92e2017-03-14 13:33:55 -07004979 em = get_chunk_map(fs_info, chunk_offset, chunk_size);
4980 if (IS_ERR(em))
4981 return PTR_ERR(em);
Josef Bacik6df9a952013-06-27 13:22:46 -04004982
Jeff Mahoney95617d62015-06-03 10:55:48 -04004983 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004984 item_size = btrfs_chunk_item_size(map->num_stripes);
4985 stripe_size = em->orig_block_len;
4986
4987 chunk = kzalloc(item_size, GFP_NOFS);
4988 if (!chunk) {
4989 ret = -ENOMEM;
4990 goto out;
4991 }
4992
Filipe Manana50460e32015-11-20 10:42:47 +00004993 /*
4994 * Take the device list mutex to prevent races with the final phase of
4995 * a device replace operation that replaces the device object associated
4996 * with the map's stripes, because the device object's id can change
4997 * at any time during that final phase of the device replace operation
4998 * (dev-replace.c:btrfs_dev_replace_finishing()).
4999 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005000 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04005001 for (i = 0; i < map->num_stripes; i++) {
5002 device = map->stripes[i].dev;
5003 dev_offset = map->stripes[i].physical;
5004
Yan Zheng2b820322008-11-17 21:11:30 -05005005 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07005006 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00005007 break;
Nikolay Borisovb5d90712017-08-18 17:58:23 +03005008 ret = btrfs_alloc_dev_extent(trans, device, chunk_offset,
5009 dev_offset, stripe_size);
Josef Bacik6df9a952013-06-27 13:22:46 -04005010 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00005011 break;
5012 }
5013 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005014 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe Manana50460e32015-11-20 10:42:47 +00005015 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05005016 }
5017
Yan Zheng2b820322008-11-17 21:11:30 -05005018 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04005019 for (i = 0; i < map->num_stripes; i++) {
5020 device = map->stripes[i].dev;
5021 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05005022
5023 btrfs_set_stack_stripe_devid(stripe, device->devid);
5024 btrfs_set_stack_stripe_offset(stripe, dev_offset);
5025 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
5026 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05005027 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005028 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05005029
5030 btrfs_set_stack_chunk_length(chunk, chunk_size);
5031 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
5032 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
5033 btrfs_set_stack_chunk_type(chunk, map->type);
5034 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
5035 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
5036 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005037 btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize);
Yan Zheng2b820322008-11-17 21:11:30 -05005038 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
5039
5040 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
5041 key.type = BTRFS_CHUNK_ITEM_KEY;
5042 key.offset = chunk_offset;
5043
5044 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07005045 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
5046 /*
5047 * TODO: Cleanup of inserted chunk root in case of
5048 * failure.
5049 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005050 ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05005051 }
liubo1abe9b82011-03-24 11:18:59 +00005052
Josef Bacik6df9a952013-06-27 13:22:46 -04005053out:
Yan Zheng2b820322008-11-17 21:11:30 -05005054 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04005055 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07005056 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005057}
5058
5059/*
5060 * Chunk allocation falls into two parts. The first part does works
5061 * that make the new allocated chunk useable, but not do any operation
5062 * that modifies the chunk tree. The second part does the works that
5063 * require modifying the chunk tree. This division is important for the
5064 * bootstrap process of adding storage to a seed btrfs.
5065 */
5066int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005067 struct btrfs_fs_info *fs_info, u64 type)
Yan Zheng2b820322008-11-17 21:11:30 -05005068{
5069 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005070
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005071 ASSERT(mutex_is_locked(&fs_info->chunk_mutex));
5072 chunk_offset = find_next_chunk(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005073 return __btrfs_alloc_chunk(trans, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05005074}
5075
Chris Masond3977122009-01-05 21:25:51 -05005076static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +01005077 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05005078{
5079 u64 chunk_offset;
5080 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005081 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05005082 int ret;
5083
Josef Bacik6df9a952013-06-27 13:22:46 -04005084 chunk_offset = find_next_chunk(fs_info);
Jeff Mahoney1b868262017-05-17 11:38:35 -04005085 alloc_profile = btrfs_metadata_alloc_profile(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005086 ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005087 if (ret)
5088 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005089
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005090 sys_chunk_offset = find_next_chunk(fs_info);
Jeff Mahoney1b868262017-05-17 11:38:35 -04005091 alloc_profile = btrfs_system_alloc_profile(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005092 ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005093 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005094}
5095
Miao Xied20983b2014-07-03 18:22:13 +08005096static inline int btrfs_chunk_max_errors(struct map_lookup *map)
5097{
5098 int max_errors;
5099
5100 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5101 BTRFS_BLOCK_GROUP_RAID10 |
5102 BTRFS_BLOCK_GROUP_RAID5 |
5103 BTRFS_BLOCK_GROUP_DUP)) {
5104 max_errors = 1;
5105 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
5106 max_errors = 2;
5107 } else {
5108 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005109 }
5110
Miao Xied20983b2014-07-03 18:22:13 +08005111 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05005112}
5113
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005114int btrfs_chunk_readonly(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Yan Zheng2b820322008-11-17 21:11:30 -05005115{
5116 struct extent_map *em;
5117 struct map_lookup *map;
Yan Zheng2b820322008-11-17 21:11:30 -05005118 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08005119 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005120 int i;
5121
Liu Bo592d92e2017-03-14 13:33:55 -07005122 em = get_chunk_map(fs_info, chunk_offset, 1);
5123 if (IS_ERR(em))
Yan Zheng2b820322008-11-17 21:11:30 -05005124 return 1;
5125
Jeff Mahoney95617d62015-06-03 10:55:48 -04005126 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05005127 for (i = 0; i < map->num_stripes; i++) {
Anand Jaine6e674b2017-12-04 12:54:54 +08005128 if (test_bit(BTRFS_DEV_STATE_MISSING,
5129 &map->stripes[i].dev->dev_state)) {
Miao Xied20983b2014-07-03 18:22:13 +08005130 miss_ndevs++;
5131 continue;
5132 }
Anand Jainebbede42017-12-04 12:54:52 +08005133 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE,
5134 &map->stripes[i].dev->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05005135 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08005136 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05005137 }
5138 }
Miao Xied20983b2014-07-03 18:22:13 +08005139
5140 /*
5141 * If the number of missing devices is larger than max errors,
5142 * we can not write the data into that chunk successfully, so
5143 * set it readonly.
5144 */
5145 if (miss_ndevs > btrfs_chunk_max_errors(map))
5146 readonly = 1;
5147end:
Yan Zheng2b820322008-11-17 21:11:30 -05005148 free_extent_map(em);
5149 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04005150}
5151
5152void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
5153{
David Sterbaa8067e02011-04-21 00:34:43 +02005154 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04005155}
5156
5157void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
5158{
5159 struct extent_map *em;
5160
Chris Masond3977122009-01-05 21:25:51 -05005161 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04005162 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005163 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
5164 if (em)
5165 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04005166 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005167 if (!em)
5168 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005169 /* once for us */
5170 free_extent_map(em);
5171 /* once for the tree */
5172 free_extent_map(em);
5173 }
5174}
5175
Stefan Behrens5d964052012-11-05 14:59:07 +01005176int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005177{
5178 struct extent_map *em;
5179 struct map_lookup *map;
Chris Masonf1885912008-04-09 16:28:12 -04005180 int ret;
5181
Liu Bo592d92e2017-03-14 13:33:55 -07005182 em = get_chunk_map(fs_info, logical, len);
5183 if (IS_ERR(em))
5184 /*
5185 * We could return errors for these cases, but that could get
5186 * ugly and we'd probably do the same thing which is just not do
5187 * anything else and exit, so return 1 so the callers don't try
5188 * to use other copies.
5189 */
Josef Bacikfb7669b2013-04-23 10:53:18 -04005190 return 1;
Josef Bacikfb7669b2013-04-23 10:53:18 -04005191
Jeff Mahoney95617d62015-06-03 10:55:48 -04005192 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005193 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5194 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005195 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5196 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005197 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5198 ret = 2;
5199 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
Liu Bo8810f752018-01-02 13:36:41 -07005200 /*
5201 * There could be two corrupted data stripes, we need
5202 * to loop retry in order to rebuild the correct data.
5203 *
5204 * Fail a stripe at a time on every retry except the
5205 * stripe under reconstruction.
5206 */
5207 ret = map->num_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04005208 else
5209 ret = 1;
5210 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005211
Liu Bo73beece2015-07-17 16:49:19 +08005212 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Liu Bo6fad8232017-03-14 13:33:59 -07005213 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) &&
5214 fs_info->dev_replace.tgtdev)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005215 ret++;
Liu Bo73beece2015-07-17 16:49:19 +08005216 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005217
Chris Masonf1885912008-04-09 16:28:12 -04005218 return ret;
5219}
5220
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005221unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005222 u64 logical)
5223{
5224 struct extent_map *em;
5225 struct map_lookup *map;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005226 unsigned long len = fs_info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05005227
Liu Bo592d92e2017-03-14 13:33:55 -07005228 em = get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005229
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005230 if (!WARN_ON(IS_ERR(em))) {
5231 map = em->map_lookup;
5232 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5233 len = map->stripe_len * nr_data_stripes(map);
5234 free_extent_map(em);
5235 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005236 return len;
5237}
5238
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03005239int btrfs_is_parity_mirror(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
David Woodhouse53b381b2013-01-29 18:40:14 -05005240{
5241 struct extent_map *em;
5242 struct map_lookup *map;
David Woodhouse53b381b2013-01-29 18:40:14 -05005243 int ret = 0;
5244
Liu Bo592d92e2017-03-14 13:33:55 -07005245 em = get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005246
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005247 if(!WARN_ON(IS_ERR(em))) {
5248 map = em->map_lookup;
5249 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5250 ret = 1;
5251 free_extent_map(em);
5252 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005253 return ret;
5254}
5255
Stefan Behrens30d98612012-11-06 14:52:18 +01005256static int find_live_mirror(struct btrfs_fs_info *fs_info,
5257 struct map_lookup *map, int first, int num,
5258 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005259{
5260 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01005261 int tolerance;
5262 struct btrfs_device *srcdev;
5263
5264 if (dev_replace_is_ongoing &&
5265 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5266 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5267 srcdev = fs_info->dev_replace.srcdev;
5268 else
5269 srcdev = NULL;
5270
5271 /*
5272 * try to avoid the drive that is the source drive for a
5273 * dev-replace procedure, only choose it if no other non-missing
5274 * mirror is available
5275 */
5276 for (tolerance = 0; tolerance < 2; tolerance++) {
5277 if (map->stripes[optimal].dev->bdev &&
5278 (tolerance || map->stripes[optimal].dev != srcdev))
5279 return optimal;
5280 for (i = first; i < first + num; i++) {
5281 if (map->stripes[i].dev->bdev &&
5282 (tolerance || map->stripes[i].dev != srcdev))
5283 return i;
5284 }
Chris Masondfe25022008-05-13 13:46:40 -04005285 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005286
Chris Masondfe25022008-05-13 13:46:40 -04005287 /* we couldn't find one that doesn't fail. Just return something
5288 * and the io error handling code will clean up eventually
5289 */
5290 return optimal;
5291}
5292
David Woodhouse53b381b2013-01-29 18:40:14 -05005293static inline int parity_smaller(u64 a, u64 b)
5294{
5295 return a > b;
5296}
5297
5298/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005299static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005300{
5301 struct btrfs_bio_stripe s;
5302 int i;
5303 u64 l;
5304 int again = 1;
5305
5306 while (again) {
5307 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005308 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005309 if (parity_smaller(bbio->raid_map[i],
5310 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005311 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005312 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005313 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005314 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005315 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005316 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005317
David Woodhouse53b381b2013-01-29 18:40:14 -05005318 again = 1;
5319 }
5320 }
5321 }
5322}
5323
Zhao Lei6e9606d2015-01-20 15:11:34 +08005324static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5325{
5326 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005327 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005328 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005329 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005330 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005331 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005332 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005333 /*
5334 * plus the raid_map, which includes both the tgt dev
5335 * and the stripes
5336 */
5337 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005338 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005339
5340 atomic_set(&bbio->error, 0);
Elena Reshetova140475a2017-03-03 10:55:10 +02005341 refcount_set(&bbio->refs, 1);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005342
5343 return bbio;
5344}
5345
5346void btrfs_get_bbio(struct btrfs_bio *bbio)
5347{
Elena Reshetova140475a2017-03-03 10:55:10 +02005348 WARN_ON(!refcount_read(&bbio->refs));
5349 refcount_inc(&bbio->refs);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005350}
5351
5352void btrfs_put_bbio(struct btrfs_bio *bbio)
5353{
5354 if (!bbio)
5355 return;
Elena Reshetova140475a2017-03-03 10:55:10 +02005356 if (refcount_dec_and_test(&bbio->refs))
Zhao Lei6e9606d2015-01-20 15:11:34 +08005357 kfree(bbio);
5358}
5359
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005360/* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */
5361/*
5362 * Please note that, discard won't be sent to target device of device
5363 * replace.
5364 */
5365static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info,
5366 u64 logical, u64 length,
5367 struct btrfs_bio **bbio_ret)
5368{
5369 struct extent_map *em;
5370 struct map_lookup *map;
5371 struct btrfs_bio *bbio;
5372 u64 offset;
5373 u64 stripe_nr;
5374 u64 stripe_nr_end;
5375 u64 stripe_end_offset;
5376 u64 stripe_cnt;
5377 u64 stripe_len;
5378 u64 stripe_offset;
5379 u64 num_stripes;
5380 u32 stripe_index;
5381 u32 factor = 0;
5382 u32 sub_stripes = 0;
5383 u64 stripes_per_dev = 0;
5384 u32 remaining_stripes = 0;
5385 u32 last_stripe = 0;
5386 int ret = 0;
5387 int i;
5388
5389 /* discard always return a bbio */
5390 ASSERT(bbio_ret);
5391
5392 em = get_chunk_map(fs_info, logical, length);
5393 if (IS_ERR(em))
5394 return PTR_ERR(em);
5395
5396 map = em->map_lookup;
5397 /* we don't discard raid56 yet */
5398 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
5399 ret = -EOPNOTSUPP;
5400 goto out;
5401 }
5402
5403 offset = logical - em->start;
5404 length = min_t(u64, em->len - offset, length);
5405
5406 stripe_len = map->stripe_len;
5407 /*
5408 * stripe_nr counts the total number of stripes we have to stride
5409 * to get to this block
5410 */
5411 stripe_nr = div64_u64(offset, stripe_len);
5412
5413 /* stripe_offset is the offset of this block in its stripe */
5414 stripe_offset = offset - stripe_nr * stripe_len;
5415
5416 stripe_nr_end = round_up(offset + length, map->stripe_len);
Liu Bo42c61ab2017-04-03 13:45:24 -07005417 stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005418 stripe_cnt = stripe_nr_end - stripe_nr;
5419 stripe_end_offset = stripe_nr_end * map->stripe_len -
5420 (offset + length);
5421 /*
5422 * after this, stripe_nr is the number of stripes on this
5423 * device we have to walk to find the data, and stripe_index is
5424 * the number of our device in the stripe array
5425 */
5426 num_stripes = 1;
5427 stripe_index = 0;
5428 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5429 BTRFS_BLOCK_GROUP_RAID10)) {
5430 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5431 sub_stripes = 1;
5432 else
5433 sub_stripes = map->sub_stripes;
5434
5435 factor = map->num_stripes / sub_stripes;
5436 num_stripes = min_t(u64, map->num_stripes,
5437 sub_stripes * stripe_cnt);
5438 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
5439 stripe_index *= sub_stripes;
5440 stripes_per_dev = div_u64_rem(stripe_cnt, factor,
5441 &remaining_stripes);
5442 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5443 last_stripe *= sub_stripes;
5444 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5445 BTRFS_BLOCK_GROUP_DUP)) {
5446 num_stripes = map->num_stripes;
5447 } else {
5448 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5449 &stripe_index);
5450 }
5451
5452 bbio = alloc_btrfs_bio(num_stripes, 0);
5453 if (!bbio) {
5454 ret = -ENOMEM;
5455 goto out;
5456 }
5457
5458 for (i = 0; i < num_stripes; i++) {
5459 bbio->stripes[i].physical =
5460 map->stripes[stripe_index].physical +
5461 stripe_offset + stripe_nr * map->stripe_len;
5462 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
5463
5464 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5465 BTRFS_BLOCK_GROUP_RAID10)) {
5466 bbio->stripes[i].length = stripes_per_dev *
5467 map->stripe_len;
5468
5469 if (i / sub_stripes < remaining_stripes)
5470 bbio->stripes[i].length +=
5471 map->stripe_len;
5472
5473 /*
5474 * Special for the first stripe and
5475 * the last stripe:
5476 *
5477 * |-------|...|-------|
5478 * |----------|
5479 * off end_off
5480 */
5481 if (i < sub_stripes)
5482 bbio->stripes[i].length -=
5483 stripe_offset;
5484
5485 if (stripe_index >= last_stripe &&
5486 stripe_index <= (last_stripe +
5487 sub_stripes - 1))
5488 bbio->stripes[i].length -=
5489 stripe_end_offset;
5490
5491 if (i == sub_stripes - 1)
5492 stripe_offset = 0;
5493 } else {
5494 bbio->stripes[i].length = length;
5495 }
5496
5497 stripe_index++;
5498 if (stripe_index == map->num_stripes) {
5499 stripe_index = 0;
5500 stripe_nr++;
5501 }
5502 }
5503
5504 *bbio_ret = bbio;
5505 bbio->map_type = map->type;
5506 bbio->num_stripes = num_stripes;
5507out:
5508 free_extent_map(em);
5509 return ret;
5510}
5511
Liu Bo5ab56092017-03-14 13:33:57 -07005512/*
5513 * In dev-replace case, for repair case (that's the only case where the mirror
5514 * is selected explicitly when calling btrfs_map_block), blocks left of the
5515 * left cursor can also be read from the target drive.
5516 *
5517 * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the
5518 * array of stripes.
5519 * For READ, it also needs to be supported using the same mirror number.
5520 *
5521 * If the requested block is not left of the left cursor, EIO is returned. This
5522 * can happen because btrfs_num_copies() returns one more in the dev-replace
5523 * case.
5524 */
5525static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info,
5526 u64 logical, u64 length,
5527 u64 srcdev_devid, int *mirror_num,
5528 u64 *physical)
5529{
5530 struct btrfs_bio *bbio = NULL;
5531 int num_stripes;
5532 int index_srcdev = 0;
5533 int found = 0;
5534 u64 physical_of_found = 0;
5535 int i;
5536 int ret = 0;
5537
5538 ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
5539 logical, &length, &bbio, 0, 0);
5540 if (ret) {
5541 ASSERT(bbio == NULL);
5542 return ret;
5543 }
5544
5545 num_stripes = bbio->num_stripes;
5546 if (*mirror_num > num_stripes) {
5547 /*
5548 * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror,
5549 * that means that the requested area is not left of the left
5550 * cursor
5551 */
5552 btrfs_put_bbio(bbio);
5553 return -EIO;
5554 }
5555
5556 /*
5557 * process the rest of the function using the mirror_num of the source
5558 * drive. Therefore look it up first. At the end, patch the device
5559 * pointer to the one of the target drive.
5560 */
5561 for (i = 0; i < num_stripes; i++) {
5562 if (bbio->stripes[i].dev->devid != srcdev_devid)
5563 continue;
5564
5565 /*
5566 * In case of DUP, in order to keep it simple, only add the
5567 * mirror with the lowest physical address
5568 */
5569 if (found &&
5570 physical_of_found <= bbio->stripes[i].physical)
5571 continue;
5572
5573 index_srcdev = i;
5574 found = 1;
5575 physical_of_found = bbio->stripes[i].physical;
5576 }
5577
5578 btrfs_put_bbio(bbio);
5579
5580 ASSERT(found);
5581 if (!found)
5582 return -EIO;
5583
5584 *mirror_num = index_srcdev + 1;
5585 *physical = physical_of_found;
5586 return ret;
5587}
5588
Liu Bo73c0f222017-03-14 13:33:58 -07005589static void handle_ops_on_dev_replace(enum btrfs_map_op op,
5590 struct btrfs_bio **bbio_ret,
5591 struct btrfs_dev_replace *dev_replace,
5592 int *num_stripes_ret, int *max_errors_ret)
5593{
5594 struct btrfs_bio *bbio = *bbio_ret;
5595 u64 srcdev_devid = dev_replace->srcdev->devid;
5596 int tgtdev_indexes = 0;
5597 int num_stripes = *num_stripes_ret;
5598 int max_errors = *max_errors_ret;
5599 int i;
5600
5601 if (op == BTRFS_MAP_WRITE) {
5602 int index_where_to_add;
5603
5604 /*
5605 * duplicate the write operations while the dev replace
5606 * procedure is running. Since the copying of the old disk to
5607 * the new disk takes place at run time while the filesystem is
5608 * mounted writable, the regular write operations to the old
5609 * disk have to be duplicated to go to the new disk as well.
5610 *
5611 * Note that device->missing is handled by the caller, and that
5612 * the write to the old disk is already set up in the stripes
5613 * array.
5614 */
5615 index_where_to_add = num_stripes;
5616 for (i = 0; i < num_stripes; i++) {
5617 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5618 /* write to new disk, too */
5619 struct btrfs_bio_stripe *new =
5620 bbio->stripes + index_where_to_add;
5621 struct btrfs_bio_stripe *old =
5622 bbio->stripes + i;
5623
5624 new->physical = old->physical;
5625 new->length = old->length;
5626 new->dev = dev_replace->tgtdev;
5627 bbio->tgtdev_map[i] = index_where_to_add;
5628 index_where_to_add++;
5629 max_errors++;
5630 tgtdev_indexes++;
5631 }
5632 }
5633 num_stripes = index_where_to_add;
5634 } else if (op == BTRFS_MAP_GET_READ_MIRRORS) {
5635 int index_srcdev = 0;
5636 int found = 0;
5637 u64 physical_of_found = 0;
5638
5639 /*
5640 * During the dev-replace procedure, the target drive can also
5641 * be used to read data in case it is needed to repair a corrupt
5642 * block elsewhere. This is possible if the requested area is
5643 * left of the left cursor. In this area, the target drive is a
5644 * full copy of the source drive.
5645 */
5646 for (i = 0; i < num_stripes; i++) {
5647 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5648 /*
5649 * In case of DUP, in order to keep it simple,
5650 * only add the mirror with the lowest physical
5651 * address
5652 */
5653 if (found &&
5654 physical_of_found <=
5655 bbio->stripes[i].physical)
5656 continue;
5657 index_srcdev = i;
5658 found = 1;
5659 physical_of_found = bbio->stripes[i].physical;
5660 }
5661 }
5662 if (found) {
5663 struct btrfs_bio_stripe *tgtdev_stripe =
5664 bbio->stripes + num_stripes;
5665
5666 tgtdev_stripe->physical = physical_of_found;
5667 tgtdev_stripe->length =
5668 bbio->stripes[index_srcdev].length;
5669 tgtdev_stripe->dev = dev_replace->tgtdev;
5670 bbio->tgtdev_map[index_srcdev] = num_stripes;
5671
5672 tgtdev_indexes++;
5673 num_stripes++;
5674 }
5675 }
5676
5677 *num_stripes_ret = num_stripes;
5678 *max_errors_ret = max_errors;
5679 bbio->num_tgtdevs = tgtdev_indexes;
5680 *bbio_ret = bbio;
5681}
5682
Liu Bo2b19a1f2017-03-14 13:34:00 -07005683static bool need_full_stripe(enum btrfs_map_op op)
5684{
5685 return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS);
5686}
5687
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005688static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
5689 enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005690 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005691 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005692 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005693{
5694 struct extent_map *em;
5695 struct map_lookup *map;
Chris Mason0b86a832008-03-24 15:01:56 -04005696 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005697 u64 stripe_offset;
5698 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005699 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005700 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005701 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005702 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005703 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005704 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005705 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005706 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005707 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5708 int dev_replace_is_ongoing = 0;
5709 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005710 int patch_the_first_stripe_for_dev_replace = 0;
5711 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005712 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005713
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005714 if (op == BTRFS_MAP_DISCARD)
5715 return __btrfs_map_block_for_discard(fs_info, logical,
5716 *length, bbio_ret);
5717
Liu Bo592d92e2017-03-14 13:33:55 -07005718 em = get_chunk_map(fs_info, logical, *length);
5719 if (IS_ERR(em))
5720 return PTR_ERR(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005721
Jeff Mahoney95617d62015-06-03 10:55:48 -04005722 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005723 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005724
David Woodhouse53b381b2013-01-29 18:40:14 -05005725 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005726 stripe_nr = offset;
5727 /*
5728 * stripe_nr counts the total number of stripes we have to stride
5729 * to get to this block
5730 */
David Sterba47c57132015-02-20 18:43:47 +01005731 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005732
David Woodhouse53b381b2013-01-29 18:40:14 -05005733 stripe_offset = stripe_nr * stripe_len;
Josef Bacike042d1e2016-04-12 12:54:40 -04005734 if (offset < stripe_offset) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005735 btrfs_crit(fs_info,
5736 "stripe math has gone wrong, stripe_offset=%llu, offset=%llu, start=%llu, logical=%llu, stripe_len=%llu",
Josef Bacike042d1e2016-04-12 12:54:40 -04005737 stripe_offset, offset, em->start, logical,
5738 stripe_len);
5739 free_extent_map(em);
5740 return -EINVAL;
5741 }
Chris Mason593060d2008-03-25 16:50:33 -04005742
5743 /* stripe_offset is the offset of this block in its stripe*/
5744 stripe_offset = offset - stripe_offset;
5745
David Woodhouse53b381b2013-01-29 18:40:14 -05005746 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005747 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005748 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5749 raid56_full_stripe_start = offset;
5750
5751 /* allow a write of a full stripe, but make sure we don't
5752 * allow straddling of stripes
5753 */
David Sterba47c57132015-02-20 18:43:47 +01005754 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5755 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005756 raid56_full_stripe_start *= full_stripe_len;
5757 }
5758
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005759 if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005760 u64 max_len;
5761 /* For writes to RAID[56], allow a full stripeset across all disks.
5762 For other RAID types and for RAID[56] reads, just allow a single
5763 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005764 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005765 (op == BTRFS_MAP_WRITE)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005766 max_len = stripe_len * nr_data_stripes(map) -
5767 (offset - raid56_full_stripe_start);
5768 } else {
5769 /* we limit the length of each bio to what fits in a stripe */
5770 max_len = stripe_len - stripe_offset;
5771 }
5772 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005773 } else {
5774 *length = em->len - offset;
5775 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005776
David Woodhouse53b381b2013-01-29 18:40:14 -05005777 /* This is for when we're called from btrfs_merge_bio_hook() and all
5778 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005779 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005780 goto out;
5781
Liu Bo73beece2015-07-17 16:49:19 +08005782 btrfs_dev_replace_lock(dev_replace, 0);
Stefan Behrens472262f2012-11-06 14:43:46 +01005783 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5784 if (!dev_replace_is_ongoing)
Liu Bo73beece2015-07-17 16:49:19 +08005785 btrfs_dev_replace_unlock(dev_replace, 0);
5786 else
5787 btrfs_dev_replace_set_lock_blocking(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005788
Stefan Behrensad6d6202012-11-06 15:06:47 +01005789 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005790 !need_full_stripe(op) && dev_replace->tgtdev != NULL) {
Liu Bo5ab56092017-03-14 13:33:57 -07005791 ret = get_extra_mirror_from_replace(fs_info, logical, *length,
5792 dev_replace->srcdev->devid,
5793 &mirror_num,
5794 &physical_to_patch_in_first_stripe);
5795 if (ret)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005796 goto out;
Liu Bo5ab56092017-03-14 13:33:57 -07005797 else
5798 patch_the_first_stripe_for_dev_replace = 1;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005799 } else if (mirror_num > map->num_stripes) {
5800 mirror_num = 0;
5801 }
5802
Chris Masonf2d8d742008-04-21 10:03:05 -04005803 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005804 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005805 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
David Sterba47c57132015-02-20 18:43:47 +01005806 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5807 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08005808 if (!need_full_stripe(op))
Miao Xie28e1cc72014-09-12 18:44:02 +08005809 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005810 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
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;
Chris Mason2fff7342008-04-29 14:12:09 -04005813 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005814 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005815 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005816 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005817 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005818 current->pid % map->num_stripes,
5819 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005820 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005821 }
Chris Mason2fff7342008-04-29 14:12:09 -04005822
Chris Mason611f0e02008-04-03 16:29:03 -04005823 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Anand Jainde483732017-10-12 16:43:00 +08005824 if (need_full_stripe(op)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005825 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005826 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005827 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005828 } else {
5829 mirror_num = 1;
5830 }
Chris Mason2fff7342008-04-29 14:12:09 -04005831
Chris Mason321aecc2008-04-16 10:49:51 -04005832 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005833 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005834
David Sterba47c57132015-02-20 18:43:47 +01005835 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005836 stripe_index *= map->sub_stripes;
5837
Anand Jainde483732017-10-12 16:43:00 +08005838 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04005839 num_stripes = map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005840 else if (mirror_num)
5841 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005842 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005843 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005844 stripe_index = find_live_mirror(fs_info, map,
5845 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005846 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005847 current->pid % map->sub_stripes,
5848 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005849 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005850 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005851
Zhao Leiffe2d202015-01-20 15:11:44 +08005852 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Anand Jainde483732017-10-12 16:43:00 +08005853 if (need_raid_map && (need_full_stripe(op) || mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005854 /* push stripe_nr back to the start of the full stripe */
Liu Bo42c61ab2017-04-03 13:45:24 -07005855 stripe_nr = div64_u64(raid56_full_stripe_start,
David Sterbab8b93ad2015-01-16 17:26:13 +01005856 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005857
5858 /* RAID[56] write or recovery. Return all stripes */
5859 num_stripes = map->num_stripes;
5860 max_errors = nr_parity_stripes(map);
5861
David Woodhouse53b381b2013-01-29 18:40:14 -05005862 *length = map->stripe_len;
5863 stripe_index = 0;
5864 stripe_offset = 0;
5865 } else {
5866 /*
5867 * Mirror #0 or #1 means the original data block.
5868 * Mirror #2 is RAID5 parity block.
5869 * Mirror #3 is RAID6 Q block.
5870 */
David Sterba47c57132015-02-20 18:43:47 +01005871 stripe_nr = div_u64_rem(stripe_nr,
5872 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005873 if (mirror_num > 1)
5874 stripe_index = nr_data_stripes(map) +
5875 mirror_num - 2;
5876
5877 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005878 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5879 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08005880 if (!need_full_stripe(op) && mirror_num <= 1)
Miao Xie28e1cc72014-09-12 18:44:02 +08005881 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005882 }
Chris Mason8790d502008-04-03 16:29:03 -04005883 } else {
5884 /*
David Sterba47c57132015-02-20 18:43:47 +01005885 * after this, stripe_nr is the number of stripes on this
5886 * device we have to walk to find the data, and stripe_index is
5887 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005888 */
David Sterba47c57132015-02-20 18:43:47 +01005889 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5890 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005891 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005892 }
Josef Bacike042d1e2016-04-12 12:54:40 -04005893 if (stripe_index >= map->num_stripes) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005894 btrfs_crit(fs_info,
5895 "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u",
Josef Bacike042d1e2016-04-12 12:54:40 -04005896 stripe_index, map->num_stripes);
5897 ret = -EINVAL;
5898 goto out;
5899 }
Chris Mason593060d2008-03-25 16:50:33 -04005900
Stefan Behrens472262f2012-11-06 14:43:46 +01005901 num_alloc_stripes = num_stripes;
Liu Bo6fad8232017-03-14 13:33:59 -07005902 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005903 if (op == BTRFS_MAP_WRITE)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005904 num_alloc_stripes <<= 1;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005905 if (op == BTRFS_MAP_GET_READ_MIRRORS)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005906 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005907 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005908 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005909
Zhao Lei6e9606d2015-01-20 15:11:34 +08005910 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005911 if (!bbio) {
5912 ret = -ENOMEM;
5913 goto out;
5914 }
Liu Bo6fad8232017-03-14 13:33:59 -07005915 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL)
Miao Xie2c8cdd62014-11-14 16:06:25 +08005916 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005917
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005918 /* build raid_map */
Liu Bo2b19a1f2017-03-14 13:34:00 -07005919 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map &&
5920 (need_full_stripe(op) || mirror_num > 1)) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005921 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005922 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005923
5924 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5925 sizeof(struct btrfs_bio_stripe) *
5926 num_alloc_stripes +
5927 sizeof(int) * tgtdev_indexes);
5928
5929 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005930 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005931
5932 /* Fill in the logical address of each stripe */
5933 tmp = stripe_nr * nr_data_stripes(map);
5934 for (i = 0; i < nr_data_stripes(map); i++)
5935 bbio->raid_map[(i+rot) % num_stripes] =
5936 em->start + (tmp + i) * map->stripe_len;
5937
5938 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5939 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5940 bbio->raid_map[(i+rot+1) % num_stripes] =
5941 RAID6_Q_STRIPE;
5942 }
5943
Li Zefanec9ef7a2011-12-01 14:06:42 +08005944
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005945 for (i = 0; i < num_stripes; i++) {
5946 bbio->stripes[i].physical =
5947 map->stripes[stripe_index].physical +
5948 stripe_offset +
5949 stripe_nr * map->stripe_len;
5950 bbio->stripes[i].dev =
5951 map->stripes[stripe_index].dev;
5952 stripe_index++;
Chris Mason593060d2008-03-25 16:50:33 -04005953 }
Li Zefande11cc12011-12-01 12:55:47 +08005954
Liu Bo2b19a1f2017-03-14 13:34:00 -07005955 if (need_full_stripe(op))
Miao Xied20983b2014-07-03 18:22:13 +08005956 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005957
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005958 if (bbio->raid_map)
5959 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005960
Liu Bo73c0f222017-03-14 13:33:58 -07005961 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005962 need_full_stripe(op)) {
Liu Bo73c0f222017-03-14 13:33:58 -07005963 handle_ops_on_dev_replace(op, &bbio, dev_replace, &num_stripes,
5964 &max_errors);
Stefan Behrens472262f2012-11-06 14:43:46 +01005965 }
5966
Li Zefande11cc12011-12-01 12:55:47 +08005967 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005968 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005969 bbio->num_stripes = num_stripes;
5970 bbio->max_errors = max_errors;
5971 bbio->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005972
5973 /*
5974 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5975 * mirror_num == num_stripes + 1 && dev_replace target drive is
5976 * available as a mirror
5977 */
5978 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5979 WARN_ON(num_stripes > 1);
5980 bbio->stripes[0].dev = dev_replace->tgtdev;
5981 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5982 bbio->mirror_num = map->num_stripes + 1;
5983 }
Chris Masoncea9e442008-04-09 16:28:12 -04005984out:
Liu Bo73beece2015-07-17 16:49:19 +08005985 if (dev_replace_is_ongoing) {
5986 btrfs_dev_replace_clear_lock_blocking(dev_replace);
5987 btrfs_dev_replace_unlock(dev_replace, 0);
5988 }
Chris Mason0b86a832008-03-24 15:01:56 -04005989 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005990 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005991}
5992
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005993int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005994 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005995 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005996{
Mike Christieb3d3fa52016-06-05 14:31:53 -05005997 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005998 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005999}
6000
Miao Xieaf8e2d12014-10-23 14:42:50 +08006001/* For Scrub/replace */
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02006002int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Miao Xieaf8e2d12014-10-23 14:42:50 +08006003 u64 logical, u64 *length,
David Sterba825ad4c2017-03-28 14:45:22 +02006004 struct btrfs_bio **bbio_ret)
Miao Xieaf8e2d12014-10-23 14:42:50 +08006005{
David Sterba825ad4c2017-03-28 14:45:22 +02006006 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, 0, 1);
Miao Xieaf8e2d12014-10-23 14:42:50 +08006007}
6008
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006009int btrfs_rmap_block(struct btrfs_fs_info *fs_info,
Yan Zhenga512bbf2008-12-08 16:46:26 -05006010 u64 chunk_start, u64 physical, u64 devid,
6011 u64 **logical, int *naddrs, int *stripe_len)
6012{
Yan Zhenga512bbf2008-12-08 16:46:26 -05006013 struct extent_map *em;
6014 struct map_lookup *map;
6015 u64 *buf;
6016 u64 bytenr;
6017 u64 length;
6018 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05006019 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05006020 int i, j, nr = 0;
6021
Liu Bo592d92e2017-03-14 13:33:55 -07006022 em = get_chunk_map(fs_info, chunk_start, 1);
6023 if (IS_ERR(em))
Josef Bacik835d9742013-03-19 12:13:25 -04006024 return -EIO;
Josef Bacik835d9742013-03-19 12:13:25 -04006025
Jeff Mahoney95617d62015-06-03 10:55:48 -04006026 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05006027 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05006028 rmap_len = map->stripe_len;
6029
Yan Zhenga512bbf2008-12-08 16:46:26 -05006030 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01006031 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006032 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01006033 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08006034 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01006035 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05006036 rmap_len = map->stripe_len * nr_data_stripes(map);
6037 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05006038
David Sterba31e818f2015-02-20 18:00:26 +01006039 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006040 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05006041
6042 for (i = 0; i < map->num_stripes; i++) {
6043 if (devid && map->stripes[i].dev->devid != devid)
6044 continue;
6045 if (map->stripes[i].physical > physical ||
6046 map->stripes[i].physical + length <= physical)
6047 continue;
6048
6049 stripe_nr = physical - map->stripes[i].physical;
Liu Bo42c61ab2017-04-03 13:45:24 -07006050 stripe_nr = div64_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006051
6052 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
6053 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01006054 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006055 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
6056 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05006057 } /* else if RAID[56], multiply by nr_data_stripes().
6058 * Alternatively, just use rmap_len below instead of
6059 * map->stripe_len */
6060
6061 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05006062 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006063 for (j = 0; j < nr; j++) {
6064 if (buf[j] == bytenr)
6065 break;
6066 }
Chris Mason934d3752008-12-08 16:43:10 -05006067 if (j == nr) {
6068 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006069 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05006070 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05006071 }
6072
Yan Zhenga512bbf2008-12-08 16:46:26 -05006073 *logical = buf;
6074 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05006075 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05006076
6077 free_extent_map(em);
6078 return 0;
6079}
6080
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006081static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08006082{
Mike Snitzer326e1db2015-05-22 09:14:03 -04006083 bio->bi_private = bbio->private;
6084 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006085 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04006086
Zhao Lei6e9606d2015-01-20 15:11:34 +08006087 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08006088}
6089
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006090static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04006091{
Chris Mason9be33952013-05-17 18:30:14 -04006092 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006093 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04006094
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006095 if (bio->bi_status) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02006096 atomic_inc(&bbio->error);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006097 if (bio->bi_status == BLK_STS_IOERR ||
6098 bio->bi_status == BLK_STS_TARGET) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02006099 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04006100 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08006101 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02006102
6103 BUG_ON(stripe_index >= bbio->num_stripes);
6104 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02006105 if (dev->bdev) {
Mike Christie37226b22016-06-05 14:31:52 -05006106 if (bio_op(bio) == REQ_OP_WRITE)
Anand Jain1cb34c82017-10-21 01:45:33 +08006107 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006108 BTRFS_DEV_STAT_WRITE_ERRS);
6109 else
Anand Jain1cb34c82017-10-21 01:45:33 +08006110 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006111 BTRFS_DEV_STAT_READ_ERRS);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06006112 if (bio->bi_opf & REQ_PREFLUSH)
Anand Jain1cb34c82017-10-21 01:45:33 +08006113 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006114 BTRFS_DEV_STAT_FLUSH_ERRS);
Stefan Behrens597a60f2012-06-14 16:42:31 +02006115 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02006116 }
6117 }
Chris Mason8790d502008-04-03 16:29:03 -04006118
Jan Schmidta1d3c472011-08-04 17:15:33 +02006119 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04006120 is_orig_bio = 1;
6121
Miao Xiec404e0d2014-01-30 16:46:55 +08006122 btrfs_bio_counter_dec(bbio->fs_info);
6123
Jan Schmidta1d3c472011-08-04 17:15:33 +02006124 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04006125 if (!is_orig_bio) {
6126 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006127 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006128 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07006129
Chris Mason9be33952013-05-17 18:30:14 -04006130 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04006131 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05006132 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04006133 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02006134 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006135 bio->bi_status = BLK_STS_IOERR;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05006136 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04006137 /*
6138 * this bio is actually up to date, we didn't
6139 * go over the max number of errors
6140 */
Anand Jain2dbe0c72017-10-14 08:35:56 +08006141 bio->bi_status = BLK_STS_OK;
Chris Mason1259ab72008-05-12 13:39:03 -04006142 }
Miao Xiec55f1392014-06-19 10:42:54 +08006143
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006144 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04006145 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04006146 bio_put(bio);
6147 }
Chris Mason8790d502008-04-03 16:29:03 -04006148}
6149
Chris Mason8b712842008-06-11 16:50:36 -04006150/*
6151 * see run_scheduled_bios for a description of why bios are collected for
6152 * async submit.
6153 *
6154 * This will add one bio to the pending list for a device and make sure
6155 * the work struct is scheduled.
6156 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006157static noinline void btrfs_schedule_bio(struct btrfs_device *device,
Mike Christie4e49ea42016-06-05 14:31:41 -05006158 struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04006159{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006160 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -04006161 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04006162 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006163
Anand Jaine6e674b2017-12-04 12:54:54 +08006164 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state) ||
6165 !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006166 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05006167 return;
6168 }
6169
Chris Mason8b712842008-06-11 16:50:36 -04006170 /* don't bother with additional async steps for reads, right now */
Mike Christie37226b22016-06-05 14:31:52 -05006171 if (bio_op(bio) == REQ_OP_READ) {
Mike Christie4e49ea42016-06-05 14:31:41 -05006172 btrfsic_submit_bio(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01006173 return;
Chris Mason8b712842008-06-11 16:50:36 -04006174 }
6175
Chris Mason492bb6de2008-07-31 16:29:02 -04006176 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04006177 bio->bi_next = NULL;
Chris Mason8b712842008-06-11 16:50:36 -04006178
6179 spin_lock(&device->io_lock);
Christoph Hellwig67f055c2016-11-01 07:40:06 -06006180 if (op_is_sync(bio->bi_opf))
Chris Masonffbd5172009-04-20 15:50:09 -04006181 pending_bios = &device->pending_sync_bios;
6182 else
6183 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006184
Chris Masonffbd5172009-04-20 15:50:09 -04006185 if (pending_bios->tail)
6186 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006187
Chris Masonffbd5172009-04-20 15:50:09 -04006188 pending_bios->tail = bio;
6189 if (!pending_bios->head)
6190 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006191 if (device->running_pending)
6192 should_queue = 0;
6193
6194 spin_unlock(&device->io_lock);
6195
6196 if (should_queue)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006197 btrfs_queue_work(fs_info->submit_workers, &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04006198}
6199
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006200static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio,
6201 u64 physical, int dev_nr, int async)
Josef Bacikde1ee922012-10-19 16:50:56 -04006202{
6203 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006204 struct btrfs_fs_info *fs_info = bbio->fs_info;
Josef Bacikde1ee922012-10-19 16:50:56 -04006205
6206 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04006207 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04006208 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006209 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04006210#ifdef DEBUG
6211 {
6212 struct rcu_string *name;
6213
6214 rcu_read_lock();
6215 name = rcu_dereference(dev->name);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006216 btrfs_debug(fs_info,
6217 "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u",
6218 bio_op(bio), bio->bi_opf,
6219 (u64)bio->bi_iter.bi_sector,
6220 (u_long)dev->bdev->bd_dev, name->str, dev->devid,
6221 bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006222 rcu_read_unlock();
6223 }
6224#endif
Christoph Hellwig74d46992017-08-23 19:10:32 +02006225 bio_set_dev(bio, dev->bdev);
Miao Xiec404e0d2014-01-30 16:46:55 +08006226
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006227 btrfs_bio_counter_inc_noblocked(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006228
Josef Bacikde1ee922012-10-19 16:50:56 -04006229 if (async)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006230 btrfs_schedule_bio(dev, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006231 else
Mike Christie4e49ea42016-06-05 14:31:41 -05006232 btrfsic_submit_bio(bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006233}
6234
Josef Bacikde1ee922012-10-19 16:50:56 -04006235static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6236{
6237 atomic_inc(&bbio->error);
6238 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Nicholas D Steeves01327612016-05-19 21:18:45 -04006239 /* Should be the original bio. */
Miao Xie8408c712014-06-19 10:42:55 +08006240 WARN_ON(bio != bbio->orig_bio);
6241
Chris Mason9be33952013-05-17 18:30:14 -04006242 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006243 bio->bi_iter.bi_sector = logical >> 9;
Anand Jain102ed2c2017-10-14 08:34:02 +08006244 if (atomic_read(&bbio->error) > bbio->max_errors)
6245 bio->bi_status = BLK_STS_IOERR;
6246 else
6247 bio->bi_status = BLK_STS_OK;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006248 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006249 }
6250}
6251
Omar Sandoval58efbc92017-08-22 23:45:59 -07006252blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
6253 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006254{
Chris Mason0b86a832008-03-24 15:01:56 -04006255 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006256 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006257 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006258 u64 length = 0;
6259 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006260 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006261 int dev_nr;
6262 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006263 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006264
Kent Overstreet4f024f32013-10-11 15:44:27 -07006265 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006266 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006267
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006268 btrfs_bio_counter_inc_blocked(fs_info);
Liu Bobd7d63c2017-09-19 17:50:09 -06006269 ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical,
Mike Christie37226b22016-06-05 14:31:52 -05006270 &map_length, &bbio, mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006271 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006272 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006273 return errno_to_blk_status(ret);
Miao Xiec404e0d2014-01-30 16:46:55 +08006274 }
Chris Masoncea9e442008-04-09 16:28:12 -04006275
Jan Schmidta1d3c472011-08-04 17:15:33 +02006276 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006277 bbio->orig_bio = first_bio;
6278 bbio->private = first_bio->bi_private;
6279 bbio->end_io = first_bio->bi_end_io;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006280 bbio->fs_info = fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006281 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6282
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006283 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Mike Christie37226b22016-06-05 14:31:52 -05006284 ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006285 /* In this case, map_length has been set to the length of
6286 a single stripe; not the whole write */
Mike Christie37226b22016-06-05 14:31:52 -05006287 if (bio_op(bio) == REQ_OP_WRITE) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006288 ret = raid56_parity_write(fs_info, bio, bbio,
6289 map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006290 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006291 ret = raid56_parity_recover(fs_info, bio, bbio,
6292 map_length, mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006293 }
Miao Xie42452152014-11-25 16:39:28 +08006294
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006295 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006296 return errno_to_blk_status(ret);
David Woodhouse53b381b2013-01-29 18:40:14 -05006297 }
6298
Chris Masoncea9e442008-04-09 16:28:12 -04006299 if (map_length < length) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006300 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006301 "mapping failed logical %llu bio len %llu len %llu",
6302 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006303 BUG();
6304 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006305
Zhao Lei08da7572015-02-12 15:42:16 +08006306 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006307 dev = bbio->stripes[dev_nr].dev;
Mike Christie37226b22016-06-05 14:31:52 -05006308 if (!dev || !dev->bdev ||
Anand Jainebbede42017-12-04 12:54:52 +08006309 (bio_op(first_bio) == REQ_OP_WRITE &&
6310 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006311 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006312 continue;
6313 }
6314
David Sterba3aa8e072017-06-02 17:38:30 +02006315 if (dev_nr < total_devs - 1)
David Sterba8b6c1d52017-06-02 17:48:13 +02006316 bio = btrfs_bio_clone(first_bio);
David Sterba3aa8e072017-06-02 17:38:30 +02006317 else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006318 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006319
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006320 submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical,
6321 dev_nr, async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006322 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006323 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006324 return BLK_STS_OK;
Chris Mason0b86a832008-03-24 15:01:56 -04006325}
6326
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006327struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006328 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006329{
Yan Zheng2b820322008-11-17 21:11:30 -05006330 struct btrfs_device *device;
6331 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006332
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006333 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006334 while (cur_devices) {
6335 if (!fsid ||
Anand Jain44880fd2017-07-29 17:50:09 +08006336 !memcmp(cur_devices->fsid, fsid, BTRFS_FSID_SIZE)) {
David Sterba35c70102017-06-15 19:51:51 +02006337 device = find_device(cur_devices, devid, uuid);
Yan Zheng2b820322008-11-17 21:11:30 -05006338 if (device)
6339 return device;
6340 }
6341 cur_devices = cur_devices->seed;
6342 }
6343 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006344}
6345
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006346static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006347 u64 devid, u8 *dev_uuid)
6348{
6349 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006350
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006351 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6352 if (IS_ERR(device))
Anand Jainadfb69a2017-10-11 12:46:18 +08006353 return device;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006354
6355 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006356 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006357 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006358
Anand Jaine6e674b2017-12-04 12:54:54 +08006359 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -05006360 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006361
Chris Masondfe25022008-05-13 13:46:40 -04006362 return device;
6363}
6364
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006365/**
6366 * btrfs_alloc_device - allocate struct btrfs_device
6367 * @fs_info: used only for generating a new devid, can be NULL if
6368 * devid is provided (i.e. @devid != NULL).
6369 * @devid: a pointer to devid for this device. If NULL a new devid
6370 * is generated.
6371 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6372 * is generated.
6373 *
6374 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
David Sterba48dae9c2017-10-30 18:10:25 +01006375 * on error. Returned struct is not linked onto any lists and must be
6376 * destroyed with free_device.
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006377 */
6378struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6379 const u64 *devid,
6380 const u8 *uuid)
6381{
6382 struct btrfs_device *dev;
6383 u64 tmp;
6384
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306385 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006386 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006387
6388 dev = __alloc_device();
6389 if (IS_ERR(dev))
6390 return dev;
6391
6392 if (devid)
6393 tmp = *devid;
6394 else {
6395 int ret;
6396
6397 ret = find_next_devid(fs_info, &tmp);
6398 if (ret) {
David Sterba55de4802017-10-30 18:55:47 +01006399 free_device(dev);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006400 return ERR_PTR(ret);
6401 }
6402 }
6403 dev->devid = tmp;
6404
6405 if (uuid)
6406 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6407 else
6408 generate_random_uuid(dev->uuid);
6409
Liu Bo9e0af232014-08-15 23:36:53 +08006410 btrfs_init_work(&dev->work, btrfs_submit_helper,
6411 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006412
6413 return dev;
6414}
6415
Liu Boe06cd3d2016-06-03 12:05:15 -07006416/* Return -EIO if any error, otherwise return 0. */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006417static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006418 struct extent_buffer *leaf,
6419 struct btrfs_chunk *chunk, u64 logical)
6420{
6421 u64 length;
6422 u64 stripe_len;
6423 u16 num_stripes;
6424 u16 sub_stripes;
6425 u64 type;
6426
6427 length = btrfs_chunk_length(leaf, chunk);
6428 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6429 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6430 sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
6431 type = btrfs_chunk_type(leaf, chunk);
6432
6433 if (!num_stripes) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006434 btrfs_err(fs_info, "invalid chunk num_stripes: %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006435 num_stripes);
6436 return -EIO;
6437 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006438 if (!IS_ALIGNED(logical, fs_info->sectorsize)) {
6439 btrfs_err(fs_info, "invalid chunk logical %llu", logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006440 return -EIO;
6441 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006442 if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) {
6443 btrfs_err(fs_info, "invalid chunk sectorsize %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006444 btrfs_chunk_sector_size(leaf, chunk));
6445 return -EIO;
6446 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006447 if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) {
6448 btrfs_err(fs_info, "invalid chunk length %llu", length);
Liu Boe06cd3d2016-06-03 12:05:15 -07006449 return -EIO;
6450 }
6451 if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006452 btrfs_err(fs_info, "invalid chunk stripe length: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006453 stripe_len);
6454 return -EIO;
6455 }
6456 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6457 type) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006458 btrfs_err(fs_info, "unrecognized chunk type: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006459 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6460 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6461 btrfs_chunk_type(leaf, chunk));
6462 return -EIO;
6463 }
6464 if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) ||
6465 (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) ||
6466 (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) ||
6467 (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) ||
6468 (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) ||
6469 ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 &&
6470 num_stripes != 1)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006471 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006472 "invalid num_stripes:sub_stripes %u:%u for profile %llu",
6473 num_stripes, sub_stripes,
6474 type & BTRFS_BLOCK_GROUP_PROFILE_MASK);
6475 return -EIO;
6476 }
6477
6478 return 0;
6479}
6480
Anand Jain5a2b8e62017-10-09 11:07:45 +08006481static void btrfs_report_missing_device(struct btrfs_fs_info *fs_info,
Anand Jain2b902df2017-10-09 11:07:46 +08006482 u64 devid, u8 *uuid, bool error)
Anand Jain5a2b8e62017-10-09 11:07:45 +08006483{
Anand Jain2b902df2017-10-09 11:07:46 +08006484 if (error)
6485 btrfs_err_rl(fs_info, "devid %llu uuid %pU is missing",
6486 devid, uuid);
6487 else
6488 btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing",
6489 devid, uuid);
Anand Jain5a2b8e62017-10-09 11:07:45 +08006490}
6491
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006492static int read_one_chunk(struct btrfs_fs_info *fs_info, struct btrfs_key *key,
Chris Mason0b86a832008-03-24 15:01:56 -04006493 struct extent_buffer *leaf,
6494 struct btrfs_chunk *chunk)
6495{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006496 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04006497 struct map_lookup *map;
6498 struct extent_map *em;
6499 u64 logical;
6500 u64 length;
6501 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006502 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006503 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006504 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006505 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006506
Chris Masone17cade2008-04-15 15:41:47 -04006507 logical = key->offset;
6508 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006509 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
Liu Boe06cd3d2016-06-03 12:05:15 -07006510
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006511 ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006512 if (ret)
6513 return ret;
Chris Masona061fc82008-05-07 11:43:44 -04006514
Chris Mason890871b2009-09-02 16:24:52 -04006515 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006516 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006517 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006518
6519 /* already mapped? */
6520 if (em && em->start <= logical && em->start + em->len > logical) {
6521 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006522 return 0;
6523 } else if (em) {
6524 free_extent_map(em);
6525 }
Chris Mason0b86a832008-03-24 15:01:56 -04006526
David Sterba172ddd62011-04-21 00:48:27 +02006527 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006528 if (!em)
6529 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006530 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006531 if (!map) {
6532 free_extent_map(em);
6533 return -ENOMEM;
6534 }
6535
Wang Shilong298a8f92014-06-19 10:42:52 +08006536 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006537 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006538 em->start = logical;
6539 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006540 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006541 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006542 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006543
Chris Mason593060d2008-03-25 16:50:33 -04006544 map->num_stripes = num_stripes;
6545 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6546 map->io_align = btrfs_chunk_io_align(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006547 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6548 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006549 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006550 for (i = 0; i < num_stripes; i++) {
6551 map->stripes[i].physical =
6552 btrfs_stripe_offset_nr(leaf, chunk, i);
6553 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006554 read_extent_buffer(leaf, uuid, (unsigned long)
6555 btrfs_stripe_dev_uuid_nr(chunk, i),
6556 BTRFS_UUID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006557 map->stripes[i].dev = btrfs_find_device(fs_info, devid,
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006558 uuid, NULL);
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006559 if (!map->stripes[i].dev &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006560 !btrfs_test_opt(fs_info, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006561 free_extent_map(em);
Anand Jain2b902df2017-10-09 11:07:46 +08006562 btrfs_report_missing_device(fs_info, devid, uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006563 return -ENOENT;
Chris Mason593060d2008-03-25 16:50:33 -04006564 }
Chris Masondfe25022008-05-13 13:46:40 -04006565 if (!map->stripes[i].dev) {
6566 map->stripes[i].dev =
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006567 add_missing_dev(fs_info->fs_devices, devid,
6568 uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08006569 if (IS_ERR(map->stripes[i].dev)) {
Chris Masondfe25022008-05-13 13:46:40 -04006570 free_extent_map(em);
Anand Jainadfb69a2017-10-11 12:46:18 +08006571 btrfs_err(fs_info,
6572 "failed to init missing dev %llu: %ld",
6573 devid, PTR_ERR(map->stripes[i].dev));
6574 return PTR_ERR(map->stripes[i].dev);
Chris Masondfe25022008-05-13 13:46:40 -04006575 }
Anand Jain2b902df2017-10-09 11:07:46 +08006576 btrfs_report_missing_device(fs_info, devid, uuid, false);
Chris Masondfe25022008-05-13 13:46:40 -04006577 }
Anand Jaine12c9622017-12-04 12:54:53 +08006578 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
6579 &(map->stripes[i].dev->dev_state));
6580
Chris Mason0b86a832008-03-24 15:01:56 -04006581 }
6582
Chris Mason890871b2009-09-02 16:24:52 -04006583 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006584 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006585 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006586 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006587 free_extent_map(em);
6588
6589 return 0;
6590}
6591
Jeff Mahoney143bede2012-03-01 14:56:26 +01006592static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006593 struct btrfs_dev_item *dev_item,
6594 struct btrfs_device *device)
6595{
6596 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006597
6598 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006599 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6600 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006601 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006602 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006603 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006604 device->type = btrfs_device_type(leaf, dev_item);
6605 device->io_align = btrfs_device_io_align(leaf, dev_item);
6606 device->io_width = btrfs_device_io_width(leaf, dev_item);
6607 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006608 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Anand Jain401e29c2017-12-04 12:54:55 +08006609 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Chris Mason0b86a832008-03-24 15:01:56 -04006610
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006611 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006612 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006613}
6614
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006615static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info,
Miao Xie5f375832014-09-03 21:35:46 +08006616 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006617{
6618 struct btrfs_fs_devices *fs_devices;
6619 int ret;
6620
Li Zefanb367e472011-12-07 11:38:24 +08006621 BUG_ON(!mutex_is_locked(&uuid_mutex));
David Sterba2dfeca92017-06-14 02:48:07 +02006622 ASSERT(fsid);
Yan Zheng2b820322008-11-17 21:11:30 -05006623
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006624 fs_devices = fs_info->fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05006625 while (fs_devices) {
Anand Jain44880fd2017-07-29 17:50:09 +08006626 if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE))
Miao Xie5f375832014-09-03 21:35:46 +08006627 return fs_devices;
6628
Yan Zheng2b820322008-11-17 21:11:30 -05006629 fs_devices = fs_devices->seed;
6630 }
6631
6632 fs_devices = find_fsid(fsid);
6633 if (!fs_devices) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006634 if (!btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08006635 return ERR_PTR(-ENOENT);
6636
6637 fs_devices = alloc_fs_devices(fsid);
6638 if (IS_ERR(fs_devices))
6639 return fs_devices;
6640
6641 fs_devices->seeding = 1;
6642 fs_devices->opened = 1;
6643 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006644 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006645
6646 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006647 if (IS_ERR(fs_devices))
6648 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006649
Christoph Hellwig97288f22008-12-02 06:36:09 -05006650 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006651 fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006652 if (ret) {
6653 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006654 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006655 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006656 }
Yan Zheng2b820322008-11-17 21:11:30 -05006657
6658 if (!fs_devices->seeding) {
6659 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006660 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006661 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006662 goto out;
6663 }
6664
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006665 fs_devices->seed = fs_info->fs_devices->seed;
6666 fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006667out:
Miao Xie5f375832014-09-03 21:35:46 +08006668 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006669}
6670
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006671static int read_one_dev(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04006672 struct extent_buffer *leaf,
6673 struct btrfs_dev_item *dev_item)
6674{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006675 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006676 struct btrfs_device *device;
6677 u64 devid;
6678 int ret;
Anand Jain44880fd2017-07-29 17:50:09 +08006679 u8 fs_uuid[BTRFS_FSID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006680 u8 dev_uuid[BTRFS_UUID_SIZE];
6681
Chris Mason0b86a832008-03-24 15:01:56 -04006682 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006683 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006684 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006685 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08006686 BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05006687
Anand Jain44880fd2017-07-29 17:50:09 +08006688 if (memcmp(fs_uuid, fs_info->fsid, BTRFS_FSID_SIZE)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006689 fs_devices = open_seed_devices(fs_info, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006690 if (IS_ERR(fs_devices))
6691 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006692 }
6693
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006694 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006695 if (!device) {
Qu Wenruoc5502452017-03-09 09:34:42 +08006696 if (!btrfs_test_opt(fs_info, DEGRADED)) {
Anand Jain2b902df2017-10-09 11:07:46 +08006697 btrfs_report_missing_device(fs_info, devid,
6698 dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006699 return -ENOENT;
Qu Wenruoc5502452017-03-09 09:34:42 +08006700 }
Yan Zheng2b820322008-11-17 21:11:30 -05006701
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006702 device = add_missing_dev(fs_devices, devid, dev_uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08006703 if (IS_ERR(device)) {
6704 btrfs_err(fs_info,
6705 "failed to add missing dev %llu: %ld",
6706 devid, PTR_ERR(device));
6707 return PTR_ERR(device);
6708 }
Anand Jain2b902df2017-10-09 11:07:46 +08006709 btrfs_report_missing_device(fs_info, devid, dev_uuid, false);
Miao Xie5f375832014-09-03 21:35:46 +08006710 } else {
Qu Wenruoc5502452017-03-09 09:34:42 +08006711 if (!device->bdev) {
Anand Jain2b902df2017-10-09 11:07:46 +08006712 if (!btrfs_test_opt(fs_info, DEGRADED)) {
6713 btrfs_report_missing_device(fs_info,
6714 devid, dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006715 return -ENOENT;
Anand Jain2b902df2017-10-09 11:07:46 +08006716 }
6717 btrfs_report_missing_device(fs_info, devid,
6718 dev_uuid, false);
Qu Wenruoc5502452017-03-09 09:34:42 +08006719 }
Miao Xie5f375832014-09-03 21:35:46 +08006720
Anand Jaine6e674b2017-12-04 12:54:54 +08006721 if (!device->bdev &&
6722 !test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006723 /*
6724 * this happens when a device that was properly setup
6725 * in the device info lists suddenly goes bad.
6726 * device->bdev is NULL, and so we have to set
6727 * device->missing to one here
6728 */
Miao Xie5f375832014-09-03 21:35:46 +08006729 device->fs_devices->missing_devices++;
Anand Jaine6e674b2017-12-04 12:54:54 +08006730 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05006731 }
Miao Xie5f375832014-09-03 21:35:46 +08006732
6733 /* Move the device to its own fs_devices */
6734 if (device->fs_devices != fs_devices) {
Anand Jaine6e674b2017-12-04 12:54:54 +08006735 ASSERT(test_bit(BTRFS_DEV_STATE_MISSING,
6736 &device->dev_state));
Miao Xie5f375832014-09-03 21:35:46 +08006737
6738 list_move(&device->dev_list, &fs_devices->devices);
6739 device->fs_devices->num_devices--;
6740 fs_devices->num_devices++;
6741
6742 device->fs_devices->missing_devices--;
6743 fs_devices->missing_devices++;
6744
6745 device->fs_devices = fs_devices;
6746 }
Yan Zheng2b820322008-11-17 21:11:30 -05006747 }
6748
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006749 if (device->fs_devices != fs_info->fs_devices) {
Anand Jainebbede42017-12-04 12:54:52 +08006750 BUG_ON(test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state));
Yan Zheng2b820322008-11-17 21:11:30 -05006751 if (device->generation !=
6752 btrfs_device_generation(leaf, dev_item))
6753 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006754 }
Chris Mason0b86a832008-03-24 15:01:56 -04006755
6756 fill_device_from_item(leaf, dev_item, device);
Anand Jaine12c9622017-12-04 12:54:53 +08006757 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jainebbede42017-12-04 12:54:52 +08006758 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jain401e29c2017-12-04 12:54:55 +08006759 !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05006760 device->fs_devices->total_rw_bytes += device->total_bytes;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03006761 atomic64_add(device->total_bytes - device->bytes_used,
6762 &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04006763 }
Chris Mason0b86a832008-03-24 15:01:56 -04006764 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006765 return ret;
6766}
6767
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006768int btrfs_read_sys_array(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006769{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006770 struct btrfs_root *root = fs_info->tree_root;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006771 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006772 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006773 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006774 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006775 u8 *array_ptr;
6776 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006777 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006778 u32 num_stripes;
6779 u32 array_size;
6780 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006781 u32 cur_offset;
Liu Boe06cd3d2016-06-03 12:05:15 -07006782 u64 type;
Chris Mason84eed902008-04-25 09:04:37 -04006783 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006784
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006785 ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize);
David Sterbaa83fffb2014-06-15 02:39:54 +02006786 /*
6787 * This will create extent buffer of nodesize, superblock size is
6788 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6789 * overallocate but we can keep it as-is, only the first page is used.
6790 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006791 sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET);
Liu Boc871b0f2016-06-06 12:01:23 -07006792 if (IS_ERR(sb))
6793 return PTR_ERR(sb);
David Sterba4db8c522015-12-03 13:06:46 +01006794 set_extent_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006795 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006796 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006797 * The sb extent buffer is artificial and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01006798 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02006799 * pages up-to-date when the page is larger: extent does not cover the
6800 * whole page and consequently check_page_uptodate does not find all
6801 * the page's extents up-to-date (the hole beyond sb),
6802 * write_extent_buffer then triggers a WARN_ON.
6803 *
6804 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6805 * but sb spans only this function. Add an explicit SetPageUptodate call
6806 * to silence the warning eg. on PowerPC 64.
6807 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006808 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006809 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006810
Chris Masona061fc82008-05-07 11:43:44 -04006811 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006812 array_size = btrfs_super_sys_array_size(super_copy);
6813
David Sterba1ffb22c2014-10-31 19:02:42 +01006814 array_ptr = super_copy->sys_chunk_array;
6815 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6816 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006817
David Sterba1ffb22c2014-10-31 19:02:42 +01006818 while (cur_offset < array_size) {
6819 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006820 len = sizeof(*disk_key);
6821 if (cur_offset + len > array_size)
6822 goto out_short_read;
6823
Chris Mason0b86a832008-03-24 15:01:56 -04006824 btrfs_disk_key_to_cpu(&key, disk_key);
6825
David Sterba1ffb22c2014-10-31 19:02:42 +01006826 array_ptr += len;
6827 sb_array_offset += len;
6828 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006829
Chris Mason0d81ba52008-03-24 15:02:07 -04006830 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006831 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006832 /*
6833 * At least one btrfs_chunk with one stripe must be
6834 * present, exact stripe count check comes afterwards
6835 */
6836 len = btrfs_chunk_item_size(1);
6837 if (cur_offset + len > array_size)
6838 goto out_short_read;
6839
6840 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006841 if (!num_stripes) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006842 btrfs_err(fs_info,
6843 "invalid number of stripes %u in sys_array at offset %u",
David Sterbaf5cdedd2015-11-30 17:27:06 +01006844 num_stripes, cur_offset);
6845 ret = -EIO;
6846 break;
6847 }
6848
Liu Boe06cd3d2016-06-03 12:05:15 -07006849 type = btrfs_chunk_type(sb, chunk);
6850 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006851 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006852 "invalid chunk type %llu in sys_array at offset %u",
6853 type, cur_offset);
6854 ret = -EIO;
6855 break;
6856 }
6857
David Sterbae3540ea2014-11-05 15:24:51 +01006858 len = btrfs_chunk_item_size(num_stripes);
6859 if (cur_offset + len > array_size)
6860 goto out_short_read;
6861
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006862 ret = read_one_chunk(fs_info, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006863 if (ret)
6864 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006865 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006866 btrfs_err(fs_info,
6867 "unexpected item type %u in sys_array at offset %u",
6868 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006869 ret = -EIO;
6870 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006871 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006872 array_ptr += len;
6873 sb_array_offset += len;
6874 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006875 }
Liu Bod8651772016-06-03 17:41:42 -07006876 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006877 free_extent_buffer_stale(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006878 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006879
6880out_short_read:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006881 btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u",
David Sterbae3540ea2014-11-05 15:24:51 +01006882 len, cur_offset);
Liu Bod8651772016-06-03 17:41:42 -07006883 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006884 free_extent_buffer_stale(sb);
David Sterbae3540ea2014-11-05 15:24:51 +01006885 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006886}
6887
Qu Wenruo21634a12017-03-09 09:34:36 +08006888/*
6889 * Check if all chunks in the fs are OK for read-write degraded mount
6890 *
Anand Jain6528b992017-12-18 17:08:59 +08006891 * If the @failing_dev is specified, it's accounted as missing.
6892 *
Qu Wenruo21634a12017-03-09 09:34:36 +08006893 * Return true if all chunks meet the minimal RW mount requirements.
6894 * Return false if any chunk doesn't meet the minimal RW mount requirements.
6895 */
Anand Jain6528b992017-12-18 17:08:59 +08006896bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info,
6897 struct btrfs_device *failing_dev)
Qu Wenruo21634a12017-03-09 09:34:36 +08006898{
6899 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
6900 struct extent_map *em;
6901 u64 next_start = 0;
6902 bool ret = true;
6903
6904 read_lock(&map_tree->map_tree.lock);
6905 em = lookup_extent_mapping(&map_tree->map_tree, 0, (u64)-1);
6906 read_unlock(&map_tree->map_tree.lock);
6907 /* No chunk at all? Return false anyway */
6908 if (!em) {
6909 ret = false;
6910 goto out;
6911 }
6912 while (em) {
6913 struct map_lookup *map;
6914 int missing = 0;
6915 int max_tolerated;
6916 int i;
6917
6918 map = em->map_lookup;
6919 max_tolerated =
6920 btrfs_get_num_tolerated_disk_barrier_failures(
6921 map->type);
6922 for (i = 0; i < map->num_stripes; i++) {
6923 struct btrfs_device *dev = map->stripes[i].dev;
6924
Anand Jaine6e674b2017-12-04 12:54:54 +08006925 if (!dev || !dev->bdev ||
6926 test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) ||
Qu Wenruo21634a12017-03-09 09:34:36 +08006927 dev->last_flush_error)
6928 missing++;
Anand Jain6528b992017-12-18 17:08:59 +08006929 else if (failing_dev && failing_dev == dev)
6930 missing++;
Qu Wenruo21634a12017-03-09 09:34:36 +08006931 }
6932 if (missing > max_tolerated) {
Anand Jain6528b992017-12-18 17:08:59 +08006933 if (!failing_dev)
6934 btrfs_warn(fs_info,
Qu Wenruo21634a12017-03-09 09:34:36 +08006935 "chunk %llu missing %d devices, max tolerance is %d for writeable mount",
6936 em->start, missing, max_tolerated);
6937 free_extent_map(em);
6938 ret = false;
6939 goto out;
6940 }
6941 next_start = extent_map_end(em);
6942 free_extent_map(em);
6943
6944 read_lock(&map_tree->map_tree.lock);
6945 em = lookup_extent_mapping(&map_tree->map_tree, next_start,
6946 (u64)(-1) - next_start);
6947 read_unlock(&map_tree->map_tree.lock);
6948 }
6949out:
6950 return ret;
6951}
6952
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006953int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006954{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006955 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04006956 struct btrfs_path *path;
6957 struct extent_buffer *leaf;
6958 struct btrfs_key key;
6959 struct btrfs_key found_key;
6960 int ret;
6961 int slot;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006962 u64 total_dev = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006963
Chris Mason0b86a832008-03-24 15:01:56 -04006964 path = btrfs_alloc_path();
6965 if (!path)
6966 return -ENOMEM;
6967
Li Zefanb367e472011-12-07 11:38:24 +08006968 mutex_lock(&uuid_mutex);
David Sterba34441362016-10-04 19:34:27 +02006969 mutex_lock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006970
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006971 /*
6972 * Read all device items, and then all the chunk items. All
6973 * device items are found before any chunk item (their object id
6974 * is smaller than the lowest possible object id for a chunk
6975 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006976 */
6977 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6978 key.offset = 0;
6979 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006980 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006981 if (ret < 0)
6982 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006983 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006984 leaf = path->nodes[0];
6985 slot = path->slots[0];
6986 if (slot >= btrfs_header_nritems(leaf)) {
6987 ret = btrfs_next_leaf(root, path);
6988 if (ret == 0)
6989 continue;
6990 if (ret < 0)
6991 goto error;
6992 break;
6993 }
6994 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006995 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6996 struct btrfs_dev_item *dev_item;
6997 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006998 struct btrfs_dev_item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006999 ret = read_one_dev(fs_info, leaf, dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01007000 if (ret)
7001 goto error;
Liu Bo99e3ecf2016-06-03 12:05:14 -07007002 total_dev++;
Chris Mason0b86a832008-03-24 15:01:56 -04007003 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
7004 struct btrfs_chunk *chunk;
7005 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007006 ret = read_one_chunk(fs_info, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05007007 if (ret)
7008 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04007009 }
7010 path->slots[0]++;
7011 }
Liu Bo99e3ecf2016-06-03 12:05:14 -07007012
7013 /*
7014 * After loading chunk tree, we've got all device information,
7015 * do another round of validation checks.
7016 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007017 if (total_dev != fs_info->fs_devices->total_devices) {
7018 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07007019 "super_num_devices %llu mismatch with num_devices %llu found here",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007020 btrfs_super_num_devices(fs_info->super_copy),
Liu Bo99e3ecf2016-06-03 12:05:14 -07007021 total_dev);
7022 ret = -EINVAL;
7023 goto error;
7024 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007025 if (btrfs_super_total_bytes(fs_info->super_copy) <
7026 fs_info->fs_devices->total_rw_bytes) {
7027 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07007028 "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007029 btrfs_super_total_bytes(fs_info->super_copy),
7030 fs_info->fs_devices->total_rw_bytes);
Liu Bo99e3ecf2016-06-03 12:05:14 -07007031 ret = -EINVAL;
7032 goto error;
7033 }
Chris Mason0b86a832008-03-24 15:01:56 -04007034 ret = 0;
7035error:
David Sterba34441362016-10-04 19:34:27 +02007036 mutex_unlock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08007037 mutex_unlock(&uuid_mutex);
7038
Yan Zheng2b820322008-11-17 21:11:30 -05007039 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04007040 return ret;
7041}
Stefan Behrens442a4f62012-05-25 16:06:08 +02007042
Miao Xiecb517ea2013-05-15 07:48:19 +00007043void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
7044{
7045 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7046 struct btrfs_device *device;
7047
Liu Bo29cc83f2014-05-11 23:14:59 +08007048 while (fs_devices) {
7049 mutex_lock(&fs_devices->device_list_mutex);
7050 list_for_each_entry(device, &fs_devices->devices, dev_list)
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007051 device->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08007052 mutex_unlock(&fs_devices->device_list_mutex);
7053
7054 fs_devices = fs_devices->seed;
7055 }
Miao Xiecb517ea2013-05-15 07:48:19 +00007056}
7057
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007058static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
7059{
7060 int i;
7061
7062 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7063 btrfs_dev_stat_reset(dev, i);
7064}
7065
7066int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
7067{
7068 struct btrfs_key key;
7069 struct btrfs_key found_key;
7070 struct btrfs_root *dev_root = fs_info->dev_root;
7071 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7072 struct extent_buffer *eb;
7073 int slot;
7074 int ret = 0;
7075 struct btrfs_device *device;
7076 struct btrfs_path *path = NULL;
7077 int i;
7078
7079 path = btrfs_alloc_path();
7080 if (!path) {
7081 ret = -ENOMEM;
7082 goto out;
7083 }
7084
7085 mutex_lock(&fs_devices->device_list_mutex);
7086 list_for_each_entry(device, &fs_devices->devices, dev_list) {
7087 int item_size;
7088 struct btrfs_dev_stats_item *ptr;
7089
David Sterba242e2952016-01-25 17:51:31 +01007090 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7091 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007092 key.offset = device->devid;
7093 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
7094 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007095 __btrfs_reset_dev_stats(device);
7096 device->dev_stats_valid = 1;
7097 btrfs_release_path(path);
7098 continue;
7099 }
7100 slot = path->slots[0];
7101 eb = path->nodes[0];
7102 btrfs_item_key_to_cpu(eb, &found_key, slot);
7103 item_size = btrfs_item_size_nr(eb, slot);
7104
7105 ptr = btrfs_item_ptr(eb, slot,
7106 struct btrfs_dev_stats_item);
7107
7108 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7109 if (item_size >= (1 + i) * sizeof(__le64))
7110 btrfs_dev_stat_set(device, i,
7111 btrfs_dev_stats_value(eb, ptr, i));
7112 else
7113 btrfs_dev_stat_reset(device, i);
7114 }
7115
7116 device->dev_stats_valid = 1;
7117 btrfs_dev_stat_print_on_load(device);
7118 btrfs_release_path(path);
7119 }
7120 mutex_unlock(&fs_devices->device_list_mutex);
7121
7122out:
7123 btrfs_free_path(path);
7124 return ret < 0 ? ret : 0;
7125}
7126
7127static int update_dev_stat_item(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007128 struct btrfs_fs_info *fs_info,
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007129 struct btrfs_device *device)
7130{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007131 struct btrfs_root *dev_root = fs_info->dev_root;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007132 struct btrfs_path *path;
7133 struct btrfs_key key;
7134 struct extent_buffer *eb;
7135 struct btrfs_dev_stats_item *ptr;
7136 int ret;
7137 int i;
7138
David Sterba242e2952016-01-25 17:51:31 +01007139 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7140 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007141 key.offset = device->devid;
7142
7143 path = btrfs_alloc_path();
David Sterbafa252992017-02-15 09:35:01 +01007144 if (!path)
7145 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007146 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
7147 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007148 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007149 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04007150 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007151 goto out;
7152 }
7153
7154 if (ret == 0 &&
7155 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
7156 /* need to delete old one and insert a new one */
7157 ret = btrfs_del_item(trans, dev_root, path);
7158 if (ret != 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007159 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007160 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04007161 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007162 goto out;
7163 }
7164 ret = 1;
7165 }
7166
7167 if (ret == 1) {
7168 /* need to insert a new item */
7169 btrfs_release_path(path);
7170 ret = btrfs_insert_empty_item(trans, dev_root, path,
7171 &key, sizeof(*ptr));
7172 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007173 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007174 "insert dev_stats item for device %s failed %d",
7175 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007176 goto out;
7177 }
7178 }
7179
7180 eb = path->nodes[0];
7181 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
7182 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7183 btrfs_set_dev_stats_value(eb, ptr, i,
7184 btrfs_dev_stat_read(device, i));
7185 btrfs_mark_buffer_dirty(eb);
7186
7187out:
7188 btrfs_free_path(path);
7189 return ret;
7190}
7191
7192/*
7193 * called from commit_transaction. Writes all changed device stats to disk.
7194 */
7195int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
7196 struct btrfs_fs_info *fs_info)
7197{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007198 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7199 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08007200 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007201 int ret = 0;
7202
7203 mutex_lock(&fs_devices->device_list_mutex);
7204 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Nikolay Borisov9deae962017-10-24 13:47:37 +03007205 stats_cnt = atomic_read(&device->dev_stats_ccnt);
7206 if (!device->dev_stats_valid || stats_cnt == 0)
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007207 continue;
7208
Nikolay Borisov9deae962017-10-24 13:47:37 +03007209
7210 /*
7211 * There is a LOAD-LOAD control dependency between the value of
7212 * dev_stats_ccnt and updating the on-disk values which requires
7213 * reading the in-memory counters. Such control dependencies
7214 * require explicit read memory barriers.
7215 *
7216 * This memory barriers pairs with smp_mb__before_atomic in
7217 * btrfs_dev_stat_inc/btrfs_dev_stat_set and with the full
7218 * barrier implied by atomic_xchg in
7219 * btrfs_dev_stats_read_and_reset
7220 */
7221 smp_rmb();
7222
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007223 ret = update_dev_stat_item(trans, fs_info, device);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007224 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08007225 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007226 }
7227 mutex_unlock(&fs_devices->device_list_mutex);
7228
7229 return ret;
7230}
7231
Stefan Behrens442a4f62012-05-25 16:06:08 +02007232void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
7233{
7234 btrfs_dev_stat_inc(dev, index);
7235 btrfs_dev_stat_print_on_error(dev);
7236}
7237
Eric Sandeen48a3b632013-04-25 20:41:01 +00007238static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02007239{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007240 if (!dev->dev_stats_valid)
7241 return;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007242 btrfs_err_rl_in_rcu(dev->fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02007243 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007244 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02007245 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7246 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7247 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05007248 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7249 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02007250}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007251
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007252static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
7253{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06007254 int i;
7255
7256 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7257 if (btrfs_dev_stat_read(dev, i) != 0)
7258 break;
7259 if (i == BTRFS_DEV_STAT_VALUES_MAX)
7260 return; /* all values == 0, suppress message */
7261
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007262 btrfs_info_in_rcu(dev->fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007263 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007264 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007265 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7266 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7267 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
7268 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7269 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
7270}
7271
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007272int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06007273 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007274{
7275 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007276 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007277 int i;
7278
7279 mutex_lock(&fs_devices->device_list_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007280 dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007281 mutex_unlock(&fs_devices->device_list_mutex);
7282
7283 if (!dev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007284 btrfs_warn(fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007285 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007286 } else if (!dev->dev_stats_valid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007287 btrfs_warn(fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007288 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06007289 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007290 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7291 if (stats->nr_items > i)
7292 stats->values[i] =
7293 btrfs_dev_stat_read_and_reset(dev, i);
7294 else
7295 btrfs_dev_stat_reset(dev, i);
7296 }
7297 } else {
7298 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7299 if (stats->nr_items > i)
7300 stats->values[i] = btrfs_dev_stat_read(dev, i);
7301 }
7302 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
7303 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
7304 return 0;
7305}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007306
David Sterbada353f62017-02-14 17:55:53 +01007307void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007308{
7309 struct buffer_head *bh;
7310 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08007311 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007312
Anand Jain12b1c262015-08-14 18:32:59 +08007313 if (!bdev)
7314 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007315
Anand Jain12b1c262015-08-14 18:32:59 +08007316 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
7317 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007318
Anand Jain12b1c262015-08-14 18:32:59 +08007319 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
7320 continue;
7321
7322 disk_super = (struct btrfs_super_block *)bh->b_data;
7323
7324 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
7325 set_buffer_dirty(bh);
7326 sync_dirty_buffer(bh);
7327 brelse(bh);
7328 }
7329
7330 /* Notify udev that device has changed */
7331 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
7332
7333 /* Update ctime/mtime for device path for libblkid */
7334 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007335}
Miao Xie935e5cc2014-09-03 21:35:33 +08007336
7337/*
7338 * Update the size of all devices, which is used for writing out the
7339 * super blocks.
7340 */
7341void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
7342{
7343 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7344 struct btrfs_device *curr, *next;
7345
7346 if (list_empty(&fs_devices->resized_devices))
7347 return;
7348
7349 mutex_lock(&fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02007350 mutex_lock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007351 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
7352 resized_list) {
7353 list_del_init(&curr->resized_list);
7354 curr->commit_total_bytes = curr->disk_total_bytes;
7355 }
David Sterba34441362016-10-04 19:34:27 +02007356 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007357 mutex_unlock(&fs_devices->device_list_mutex);
7358}
Miao Xiece7213c2014-09-03 21:35:34 +08007359
7360/* Must be invoked during the transaction commit */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007361void btrfs_update_commit_device_bytes_used(struct btrfs_fs_info *fs_info,
Miao Xiece7213c2014-09-03 21:35:34 +08007362 struct btrfs_transaction *transaction)
7363{
7364 struct extent_map *em;
7365 struct map_lookup *map;
7366 struct btrfs_device *dev;
7367 int i;
7368
7369 if (list_empty(&transaction->pending_chunks))
7370 return;
7371
7372 /* In order to kick the device replace finish process */
David Sterba34441362016-10-04 19:34:27 +02007373 mutex_lock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007374 list_for_each_entry(em, &transaction->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04007375 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08007376
7377 for (i = 0; i < map->num_stripes; i++) {
7378 dev = map->stripes[i].dev;
7379 dev->commit_bytes_used = dev->bytes_used;
7380 }
7381 }
David Sterba34441362016-10-04 19:34:27 +02007382 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007383}
Anand Jain5a13f432015-03-10 06:38:31 +08007384
7385void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
7386{
7387 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7388 while (fs_devices) {
7389 fs_devices->fs_info = fs_info;
7390 fs_devices = fs_devices->seed;
7391 }
7392}
7393
7394void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
7395{
7396 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7397 while (fs_devices) {
7398 fs_devices->fs_info = NULL;
7399 fs_devices = fs_devices->seed;
7400 }
7401}