blob: 585f930132148523cb9c3dda4ed8aadd1b5ebb2b [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason0b86a832008-03-24 15:01:56 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason0b86a832008-03-24 15:01:56 -04004 */
David Sterbac1d7c512018-04-03 19:23:33 +02005
Chris Mason0b86a832008-03-24 15:01:56 -04006#include <linux/sched.h>
7#include <linux/bio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Chris Mason8a4b83c2008-03-24 15:02:07 -04009#include <linux/buffer_head.h>
Chris Masonf2d8d742008-04-21 10:03:05 -040010#include <linux/blkdev.h>
Chris Masonb765ead2009-04-03 10:27:10 -040011#include <linux/iocontext.h>
Ben Hutchings6f88a442010-12-29 14:55:03 +000012#include <linux/capability.h>
Stefan Behrens442a4f62012-05-25 16:06:08 +020013#include <linux/ratelimit.h>
Ilya Dryomov59641012012-01-16 22:04:48 +020014#include <linux/kthread.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050015#include <linux/raid/pq.h>
Stefan Behrens803b2f52013-08-15 17:11:21 +020016#include <linux/semaphore.h>
Andy Shevchenko8da4b8c2016-05-20 17:01:00 -070017#include <linux/uuid.h>
Anand Jainf8e10cd2018-01-22 14:49:36 -080018#include <linux/list_sort.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050019#include <asm/div64.h>
Chris Mason0b86a832008-03-24 15:01:56 -040020#include "ctree.h"
21#include "extent_map.h"
22#include "disk-io.h"
23#include "transaction.h"
24#include "print-tree.h"
25#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050026#include "raid56.h"
Chris Mason8b712842008-06-11 16:50:36 -040027#include "async-thread.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010028#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040029#include "rcu-string.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060030#include "math.h"
Stefan Behrens8dabb742012-11-06 13:15:27 +010031#include "dev-replace.h"
Anand Jain99994cd2014-06-03 11:36:00 +080032#include "sysfs.h"
Chris Mason0b86a832008-03-24 15:01:56 -040033
Zhao Leiaf902042015-09-15 21:08:06 +080034const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
35 [BTRFS_RAID_RAID10] = {
36 .sub_stripes = 2,
37 .dev_stripes = 1,
38 .devs_max = 0, /* 0 == as many as possible */
39 .devs_min = 4,
Zhao Lei8789f4f2015-09-15 21:08:07 +080040 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080041 .devs_increment = 2,
42 .ncopies = 2,
43 },
44 [BTRFS_RAID_RAID1] = {
45 .sub_stripes = 1,
46 .dev_stripes = 1,
47 .devs_max = 2,
48 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080049 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080050 .devs_increment = 2,
51 .ncopies = 2,
52 },
53 [BTRFS_RAID_DUP] = {
54 .sub_stripes = 1,
55 .dev_stripes = 2,
56 .devs_max = 1,
57 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +080058 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080059 .devs_increment = 1,
60 .ncopies = 2,
61 },
62 [BTRFS_RAID_RAID0] = {
63 .sub_stripes = 1,
64 .dev_stripes = 1,
65 .devs_max = 0,
66 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080067 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080068 .devs_increment = 1,
69 .ncopies = 1,
70 },
71 [BTRFS_RAID_SINGLE] = {
72 .sub_stripes = 1,
73 .dev_stripes = 1,
74 .devs_max = 1,
75 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +080076 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080077 .devs_increment = 1,
78 .ncopies = 1,
79 },
80 [BTRFS_RAID_RAID5] = {
81 .sub_stripes = 1,
82 .dev_stripes = 1,
83 .devs_max = 0,
84 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080085 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080086 .devs_increment = 1,
87 .ncopies = 2,
88 },
89 [BTRFS_RAID_RAID6] = {
90 .sub_stripes = 1,
91 .dev_stripes = 1,
92 .devs_max = 0,
93 .devs_min = 3,
Zhao Lei8789f4f2015-09-15 21:08:07 +080094 .tolerated_failures = 2,
Zhao Leiaf902042015-09-15 21:08:06 +080095 .devs_increment = 1,
96 .ncopies = 3,
97 },
98};
99
Colin Ian Kingfb75d852016-01-19 00:05:28 +0000100const u64 btrfs_raid_group[BTRFS_NR_RAID_TYPES] = {
Zhao Leiaf902042015-09-15 21:08:06 +0800101 [BTRFS_RAID_RAID10] = BTRFS_BLOCK_GROUP_RAID10,
102 [BTRFS_RAID_RAID1] = BTRFS_BLOCK_GROUP_RAID1,
103 [BTRFS_RAID_DUP] = BTRFS_BLOCK_GROUP_DUP,
104 [BTRFS_RAID_RAID0] = BTRFS_BLOCK_GROUP_RAID0,
105 [BTRFS_RAID_SINGLE] = 0,
106 [BTRFS_RAID_RAID5] = BTRFS_BLOCK_GROUP_RAID5,
107 [BTRFS_RAID_RAID6] = BTRFS_BLOCK_GROUP_RAID6,
108};
109
David Sterba621292b2016-02-15 16:28:03 +0100110/*
111 * Table to convert BTRFS_RAID_* to the error code if minimum number of devices
112 * condition is not met. Zero means there's no corresponding
113 * BTRFS_ERROR_DEV_*_NOT_MET value.
114 */
115const int btrfs_raid_mindev_error[BTRFS_NR_RAID_TYPES] = {
116 [BTRFS_RAID_RAID10] = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET,
117 [BTRFS_RAID_RAID1] = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET,
118 [BTRFS_RAID_DUP] = 0,
119 [BTRFS_RAID_RAID0] = 0,
120 [BTRFS_RAID_SINGLE] = 0,
121 [BTRFS_RAID_RAID5] = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET,
122 [BTRFS_RAID_RAID6] = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET,
123};
124
Yan Zheng2b820322008-11-17 21:11:30 -0500125static int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +0100126 struct btrfs_fs_info *fs_info);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400127static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200128static void __btrfs_reset_dev_stats(struct btrfs_device *dev);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000129static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200130static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
Liu Bo5ab56092017-03-14 13:33:57 -0700131static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
132 enum btrfs_map_op op,
133 u64 logical, u64 *length,
134 struct btrfs_bio **bbio_ret,
135 int mirror_num, int need_raid_map);
Yan Zheng2b820322008-11-17 21:11:30 -0500136
David Sterba9c6b1c42017-06-16 22:30:00 +0200137/*
138 * Device locking
139 * ==============
140 *
141 * There are several mutexes that protect manipulation of devices and low-level
142 * structures like chunks but not block groups, extents or files
143 *
144 * uuid_mutex (global lock)
145 * ------------------------
146 * protects the fs_uuids list that tracks all per-fs fs_devices, resulting from
147 * the SCAN_DEV ioctl registration or from mount either implicitly (the first
148 * device) or requested by the device= mount option
149 *
150 * the mutex can be very coarse and can cover long-running operations
151 *
152 * protects: updates to fs_devices counters like missing devices, rw devices,
153 * seeding, structure cloning, openning/closing devices at mount/umount time
154 *
155 * global::fs_devs - add, remove, updates to the global list
156 *
157 * does not protect: manipulation of the fs_devices::devices list!
158 *
159 * btrfs_device::name - renames (write side), read is RCU
160 *
161 * fs_devices::device_list_mutex (per-fs, with RCU)
162 * ------------------------------------------------
163 * protects updates to fs_devices::devices, ie. adding and deleting
164 *
165 * simple list traversal with read-only actions can be done with RCU protection
166 *
167 * may be used to exclude some operations from running concurrently without any
168 * modifications to the list (see write_all_supers)
169 *
170 * volume_mutex
171 * ------------
172 * coarse lock owned by a mounted filesystem; used to exclude some operations
173 * that cannot run in parallel and affect the higher-level properties of the
174 * filesystem like: device add/deleting/resize/replace, or balance
175 *
176 * balance_mutex
177 * -------------
178 * protects balance structures (status, state) and context accessed from
179 * several places (internally, ioctl)
180 *
181 * chunk_mutex
182 * -----------
183 * protects chunks, adding or removing during allocation, trim or when a new
184 * device is added/removed
185 *
186 * cleaner_mutex
187 * -------------
188 * a big lock that is held by the cleaner thread and prevents running subvolume
189 * cleaning together with relocation or delayed iputs
190 *
191 *
192 * Lock nesting
193 * ============
194 *
195 * uuid_mutex
196 * volume_mutex
197 * device_list_mutex
198 * chunk_mutex
199 * balance_mutex
Anand Jain89595e82018-04-18 14:59:25 +0800200 *
201 *
202 * Exclusive operations, BTRFS_FS_EXCL_OP
203 * ======================================
204 *
205 * Maintains the exclusivity of the following operations that apply to the
206 * whole filesystem and cannot run in parallel.
207 *
208 * - Balance (*)
209 * - Device add
210 * - Device remove
211 * - Device replace (*)
212 * - Resize
213 *
214 * The device operations (as above) can be in one of the following states:
215 *
216 * - Running state
217 * - Paused state
218 * - Completed state
219 *
220 * Only device operations marked with (*) can go into the Paused state for the
221 * following reasons:
222 *
223 * - ioctl (only Balance can be Paused through ioctl)
224 * - filesystem remounted as read-only
225 * - filesystem unmounted and mounted as read-only
226 * - system power-cycle and filesystem mounted as read-only
227 * - filesystem or device errors leading to forced read-only
228 *
229 * BTRFS_FS_EXCL_OP flag is set and cleared using atomic operations.
230 * During the course of Paused state, the BTRFS_FS_EXCL_OP remains set.
231 * A device operation in Paused or Running state can be canceled or resumed
232 * either by ioctl (Balance only) or when remounted as read-write.
233 * BTRFS_FS_EXCL_OP flag is cleared when the device operation is canceled or
234 * completed.
David Sterba9c6b1c42017-06-16 22:30:00 +0200235 */
236
Miao Xie67a2c452014-09-03 21:35:43 +0800237DEFINE_MUTEX(uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400238static LIST_HEAD(fs_uuids);
Anand Jainc73eccf2015-03-10 06:38:30 +0800239struct list_head *btrfs_get_fs_uuids(void)
240{
241 return &fs_uuids;
242}
Chris Mason8a4b83c2008-03-24 15:02:07 -0400243
David Sterba2dfeca92017-06-14 02:48:07 +0200244/*
245 * alloc_fs_devices - allocate struct btrfs_fs_devices
246 * @fsid: if not NULL, copy the uuid to fs_devices::fsid
247 *
248 * Return a pointer to a new struct btrfs_fs_devices on success, or ERR_PTR().
249 * The returned struct is not linked onto any lists and can be destroyed with
250 * kfree() right away.
251 */
252static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
Ilya Dryomov2208a372013-08-12 14:33:03 +0300253{
254 struct btrfs_fs_devices *fs_devs;
255
David Sterba78f2c9e2016-02-11 14:25:38 +0100256 fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300257 if (!fs_devs)
258 return ERR_PTR(-ENOMEM);
259
260 mutex_init(&fs_devs->device_list_mutex);
261
262 INIT_LIST_HEAD(&fs_devs->devices);
Miao Xie935e5cc2014-09-03 21:35:33 +0800263 INIT_LIST_HEAD(&fs_devs->resized_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300264 INIT_LIST_HEAD(&fs_devs->alloc_list);
Anand Jainc4babc52018-04-12 10:29:25 +0800265 INIT_LIST_HEAD(&fs_devs->fs_list);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300266 if (fsid)
267 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300268
269 return fs_devs;
270}
271
David Sterbaa425f9d2018-03-20 15:47:33 +0100272void btrfs_free_device(struct btrfs_device *device)
David Sterba48dae9c2017-10-30 18:10:25 +0100273{
274 rcu_string_free(device->name);
275 bio_put(device->flush_bio);
276 kfree(device);
277}
278
Yan Zhenge4404d62008-12-12 10:03:26 -0500279static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
280{
281 struct btrfs_device *device;
282 WARN_ON(fs_devices->opened);
283 while (!list_empty(&fs_devices->devices)) {
284 device = list_entry(fs_devices->devices.next,
285 struct btrfs_device, dev_list);
286 list_del(&device->dev_list);
David Sterbaa425f9d2018-03-20 15:47:33 +0100287 btrfs_free_device(device);
Yan Zhenge4404d62008-12-12 10:03:26 -0500288 }
289 kfree(fs_devices);
290}
291
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000292static void btrfs_kobject_uevent(struct block_device *bdev,
293 enum kobject_action action)
294{
295 int ret;
296
297 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
298 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -0500299 pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n",
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000300 action,
301 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
302 &disk_to_dev(bdev->bd_disk)->kobj);
303}
304
David Sterbaffc5a372018-02-19 17:24:15 +0100305void __exit btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400306{
307 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400308
Yan Zheng2b820322008-11-17 21:11:30 -0500309 while (!list_empty(&fs_uuids)) {
310 fs_devices = list_entry(fs_uuids.next,
Anand Jainc4babc52018-04-12 10:29:25 +0800311 struct btrfs_fs_devices, fs_list);
312 list_del(&fs_devices->fs_list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500313 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400314 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400315}
316
David Sterba48dae9c2017-10-30 18:10:25 +0100317/*
318 * Returns a pointer to a new btrfs_device on success; ERR_PTR() on error.
319 * Returned struct is not linked onto any lists and must be destroyed using
David Sterbaa425f9d2018-03-20 15:47:33 +0100320 * btrfs_free_device.
David Sterba48dae9c2017-10-30 18:10:25 +0100321 */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300322static struct btrfs_device *__alloc_device(void)
323{
324 struct btrfs_device *dev;
325
David Sterba78f2c9e2016-02-11 14:25:38 +0100326 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300327 if (!dev)
328 return ERR_PTR(-ENOMEM);
329
David Sterbae0ae9992017-06-06 17:06:06 +0200330 /*
331 * Preallocate a bio that's always going to be used for flushing device
332 * barriers and matches the device lifespan
333 */
334 dev->flush_bio = bio_alloc_bioset(GFP_KERNEL, 0, NULL);
335 if (!dev->flush_bio) {
336 kfree(dev);
337 return ERR_PTR(-ENOMEM);
338 }
David Sterbae0ae9992017-06-06 17:06:06 +0200339
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300340 INIT_LIST_HEAD(&dev->dev_list);
341 INIT_LIST_HEAD(&dev->dev_alloc_list);
Miao Xie935e5cc2014-09-03 21:35:33 +0800342 INIT_LIST_HEAD(&dev->resized_list);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300343
344 spin_lock_init(&dev->io_lock);
345
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300346 atomic_set(&dev->reada_in_flight, 0);
Miao Xieaddc3fa2014-07-24 11:37:11 +0800347 atomic_set(&dev->dev_stats_ccnt, 0);
Sebastian Andrzej Siewior546bed62016-01-15 14:37:15 +0100348 btrfs_device_data_ordered_init(dev);
Chris Mason9bcaaea2017-05-04 16:08:08 -0700349 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Mel Gormand0164ad2015-11-06 16:28:21 -0800350 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300351
352 return dev;
353}
354
David Sterba35c70102017-06-15 19:51:51 +0200355/*
356 * Find a device specified by @devid or @uuid in the list of @fs_devices, or
357 * return NULL.
358 *
359 * If devid and uuid are both specified, the match must be exact, otherwise
360 * only devid is used.
361 */
362static struct btrfs_device *find_device(struct btrfs_fs_devices *fs_devices,
363 u64 devid, const u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400364{
365 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400366
Anand Jain636d2c92018-04-12 10:29:29 +0800367 list_for_each_entry(dev, &fs_devices->devices, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400368 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400369 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400370 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400371 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400372 }
373 return NULL;
374}
375
Chris Masona1b32a52008-09-05 16:09:51 -0400376static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400377{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400378 struct btrfs_fs_devices *fs_devices;
379
Anand Jainc4babc52018-04-12 10:29:25 +0800380 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400381 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
382 return fs_devices;
383 }
384 return NULL;
385}
386
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100387static int
388btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
389 int flush, struct block_device **bdev,
390 struct buffer_head **bh)
391{
392 int ret;
393
394 *bdev = blkdev_get_by_path(device_path, flags, holder);
395
396 if (IS_ERR(*bdev)) {
397 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100398 goto error;
399 }
400
401 if (flush)
402 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
David Sterba9f6d2512017-06-16 01:48:05 +0200403 ret = set_blocksize(*bdev, BTRFS_BDEV_BLOCKSIZE);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100404 if (ret) {
405 blkdev_put(*bdev, flags);
406 goto error;
407 }
408 invalidate_bdev(*bdev);
409 *bh = btrfs_read_dev_super(*bdev);
Anand Jain92fc03f2015-08-14 18:32:51 +0800410 if (IS_ERR(*bh)) {
411 ret = PTR_ERR(*bh);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100412 blkdev_put(*bdev, flags);
413 goto error;
414 }
415
416 return 0;
417
418error:
419 *bdev = NULL;
420 *bh = NULL;
421 return ret;
422}
423
Chris Masonffbd5172009-04-20 15:50:09 -0400424static void requeue_list(struct btrfs_pending_bios *pending_bios,
425 struct bio *head, struct bio *tail)
426{
427
428 struct bio *old_head;
429
430 old_head = pending_bios->head;
431 pending_bios->head = head;
432 if (pending_bios->tail)
433 tail->bi_next = old_head;
434 else
435 pending_bios->tail = tail;
436}
437
Chris Mason8b712842008-06-11 16:50:36 -0400438/*
439 * we try to collect pending bios for a device so we don't get a large
440 * number of procs sending bios down to the same device. This greatly
441 * improves the schedulers ability to collect and merge the bios.
442 *
443 * But, it also turns into a long list of bios to process and that is sure
444 * to eventually make the worker thread block. The solution here is to
445 * make some progress and then put this work struct back at the end of
446 * the list if the block device is congested. This way, multiple devices
447 * can make progress from a single worker thread.
448 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100449static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400450{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400451 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -0400452 struct bio *pending;
453 struct backing_dev_info *bdi;
Chris Masonffbd5172009-04-20 15:50:09 -0400454 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400455 struct bio *tail;
456 struct bio *cur;
457 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400458 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400459 unsigned long batch_run = 0;
Chris Masonb765ead2009-04-03 10:27:10 -0400460 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400461 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000462 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400463 struct blk_plug plug;
464
465 /*
466 * this function runs all the bios we've collected for
467 * a particular device. We don't want to wander off to
468 * another device without first sending all of these down.
469 * So, setup a plug here and finish it off before we return
470 */
471 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400472
Jan Karaefa7c9f2017-02-02 15:56:53 +0100473 bdi = device->bdev->bd_bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400474
Chris Mason8b712842008-06-11 16:50:36 -0400475loop:
476 spin_lock(&device->io_lock);
477
Chris Masona6837052009-02-04 09:19:41 -0500478loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400479 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400480
Chris Mason8b712842008-06-11 16:50:36 -0400481 /* take all the bios off the list at once and process them
482 * later on (without the lock held). But, remember the
483 * tail and other pointers so the bios can be properly reinserted
484 * into the list if we hit congestion
485 */
Chris Masond84275c2009-06-09 15:39:08 -0400486 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400487 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400488 force_reg = 1;
489 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400490 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400491 force_reg = 0;
492 }
Chris Masonffbd5172009-04-20 15:50:09 -0400493
494 pending = pending_bios->head;
495 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400496 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400497
498 /*
499 * if pending was null this time around, no bios need processing
500 * at all and we can stop. Otherwise it'll loop back up again
501 * and do an additional check so no bios are missed.
502 *
503 * device->running_pending is used to synchronize with the
504 * schedule_bio code.
505 */
Chris Masonffbd5172009-04-20 15:50:09 -0400506 if (device->pending_sync_bios.head == NULL &&
507 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400508 again = 0;
509 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400510 } else {
511 again = 1;
512 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400513 }
Chris Masonffbd5172009-04-20 15:50:09 -0400514
515 pending_bios->head = NULL;
516 pending_bios->tail = NULL;
517
Chris Mason8b712842008-06-11 16:50:36 -0400518 spin_unlock(&device->io_lock);
519
Chris Masond3977122009-01-05 21:25:51 -0500520 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400521
522 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400523 /* we want to work on both lists, but do more bios on the
524 * sync list than the regular list
525 */
526 if ((num_run > 32 &&
527 pending_bios != &device->pending_sync_bios &&
528 device->pending_sync_bios.head) ||
529 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
530 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400531 spin_lock(&device->io_lock);
532 requeue_list(pending_bios, pending, tail);
533 goto loop_lock;
534 }
535
Chris Mason8b712842008-06-11 16:50:36 -0400536 cur = pending;
537 pending = pending->bi_next;
538 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400539
Jens Axboedac56212015-04-17 16:23:59 -0600540 BUG_ON(atomic_read(&cur->__bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400541
Chris Mason2ab1ba62011-08-04 14:28:36 -0400542 /*
543 * if we're doing the sync list, record that our
544 * plug has some sync requests on it
545 *
546 * If we're doing the regular list and there are
547 * sync requests sitting around, unplug before
548 * we add more
549 */
550 if (pending_bios == &device->pending_sync_bios) {
551 sync_pending = 1;
552 } else if (sync_pending) {
553 blk_finish_plug(&plug);
554 blk_start_plug(&plug);
555 sync_pending = 0;
556 }
557
Mike Christie4e49ea42016-06-05 14:31:41 -0500558 btrfsic_submit_bio(cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400559 num_run++;
560 batch_run++;
David Sterba853d8ec2015-01-08 15:15:19 +0100561
562 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400563
564 /*
565 * we made progress, there is more work to do and the bdi
566 * is now congested. Back off and let other work structs
567 * run instead
568 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400569 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500570 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400571 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400572
Chris Masonb765ead2009-04-03 10:27:10 -0400573 ioc = current->io_context;
574
575 /*
576 * the main goal here is that we don't want to
577 * block if we're going to be able to submit
578 * more requests without blocking.
579 *
580 * This code does two great things, it pokes into
581 * the elevator code from a filesystem _and_
582 * it makes assumptions about how batching works.
583 */
584 if (ioc && ioc->nr_batch_requests > 0 &&
585 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
586 (last_waited == 0 ||
587 ioc->last_waited == last_waited)) {
588 /*
589 * we want to go through our batch of
590 * requests and stop. So, we copy out
591 * the ioc->last_waited time and test
592 * against it before looping
593 */
594 last_waited = ioc->last_waited;
David Sterba853d8ec2015-01-08 15:15:19 +0100595 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400596 continue;
597 }
Chris Mason8b712842008-06-11 16:50:36 -0400598 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400599 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500600 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400601
602 spin_unlock(&device->io_lock);
Qu Wenruoa8c93d4e2014-02-28 10:46:08 +0800603 btrfs_queue_work(fs_info->submit_workers,
604 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -0400605 goto done;
606 }
607 }
Chris Masonffbd5172009-04-20 15:50:09 -0400608
Chris Mason51684082010-03-10 15:33:32 -0500609 cond_resched();
610 if (again)
611 goto loop;
612
613 spin_lock(&device->io_lock);
614 if (device->pending_bios.head || device->pending_sync_bios.head)
615 goto loop_lock;
616 spin_unlock(&device->io_lock);
617
Chris Mason8b712842008-06-11 16:50:36 -0400618done:
Chris Mason211588a2011-04-19 20:12:40 -0400619 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400620}
621
Christoph Hellwigb2950862008-12-02 09:54:17 -0500622static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400623{
624 struct btrfs_device *device;
625
626 device = container_of(work, struct btrfs_device, work);
627 run_scheduled_bios(device);
628}
629
Anand Jaind8367db2018-01-18 22:00:37 +0800630/*
631 * Search and remove all stale (devices which are not mounted) devices.
632 * When both inputs are NULL, it will search and release all stale devices.
633 * path: Optional. When provided will it release all unmounted devices
634 * matching this path only.
635 * skip_dev: Optional. Will skip this device when searching for the stale
636 * devices.
637 */
638static void btrfs_free_stale_devices(const char *path,
639 struct btrfs_device *skip_dev)
Anand Jain4fde46f2015-06-17 21:10:48 +0800640{
Anand Jain38cf6652018-01-18 22:00:34 +0800641 struct btrfs_fs_devices *fs_devs, *tmp_fs_devs;
642 struct btrfs_device *dev, *tmp_dev;
Anand Jain4fde46f2015-06-17 21:10:48 +0800643
Anand Jainc4babc52018-04-12 10:29:25 +0800644 list_for_each_entry_safe(fs_devs, tmp_fs_devs, &fs_uuids, fs_list) {
Anand Jain4fde46f2015-06-17 21:10:48 +0800645
646 if (fs_devs->opened)
647 continue;
Anand Jain4fde46f2015-06-17 21:10:48 +0800648
Anand Jain38cf6652018-01-18 22:00:34 +0800649 list_for_each_entry_safe(dev, tmp_dev,
650 &fs_devs->devices, dev_list) {
Anand Jain522f1b42018-01-18 22:00:35 +0800651 int not_found = 0;
Anand Jain4fde46f2015-06-17 21:10:48 +0800652
Anand Jaind8367db2018-01-18 22:00:37 +0800653 if (skip_dev && skip_dev == dev)
654 continue;
655 if (path && !dev->name)
Anand Jain4fde46f2015-06-17 21:10:48 +0800656 continue;
657
Anand Jain4fde46f2015-06-17 21:10:48 +0800658 rcu_read_lock();
Anand Jaind8367db2018-01-18 22:00:37 +0800659 if (path)
Anand Jain522f1b42018-01-18 22:00:35 +0800660 not_found = strcmp(rcu_str_deref(dev->name),
Anand Jaind8367db2018-01-18 22:00:37 +0800661 path);
Anand Jain4fde46f2015-06-17 21:10:48 +0800662 rcu_read_unlock();
Anand Jain38cf6652018-01-18 22:00:34 +0800663 if (not_found)
664 continue;
Anand Jain4fde46f2015-06-17 21:10:48 +0800665
Anand Jain4fde46f2015-06-17 21:10:48 +0800666 /* delete the stale device */
667 if (fs_devs->num_devices == 1) {
668 btrfs_sysfs_remove_fsid(fs_devs);
Anand Jainc4babc52018-04-12 10:29:25 +0800669 list_del(&fs_devs->fs_list);
Anand Jain4fde46f2015-06-17 21:10:48 +0800670 free_fs_devices(fs_devs);
Nikolay Borisovfd649f12018-01-30 16:07:37 +0200671 break;
Anand Jain4fde46f2015-06-17 21:10:48 +0800672 } else {
673 fs_devs->num_devices--;
674 list_del(&dev->dev_list);
David Sterbaa425f9d2018-03-20 15:47:33 +0100675 btrfs_free_device(dev);
Anand Jain4fde46f2015-06-17 21:10:48 +0800676 }
Anand Jain4fde46f2015-06-17 21:10:48 +0800677 }
678 }
679}
680
Anand Jain0fb08bc2017-11-09 23:45:24 +0800681static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices,
682 struct btrfs_device *device, fmode_t flags,
683 void *holder)
684{
685 struct request_queue *q;
686 struct block_device *bdev;
687 struct buffer_head *bh;
688 struct btrfs_super_block *disk_super;
689 u64 devid;
690 int ret;
691
692 if (device->bdev)
693 return -EINVAL;
694 if (!device->name)
695 return -EINVAL;
696
697 ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
698 &bdev, &bh);
699 if (ret)
700 return ret;
701
702 disk_super = (struct btrfs_super_block *)bh->b_data;
703 devid = btrfs_stack_device_id(&disk_super->dev_item);
704 if (devid != device->devid)
705 goto error_brelse;
706
707 if (memcmp(device->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE))
708 goto error_brelse;
709
710 device->generation = btrfs_super_generation(disk_super);
711
712 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
Anand Jainebbede42017-12-04 12:54:52 +0800713 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800714 fs_devices->seeding = 1;
715 } else {
Anand Jainebbede42017-12-04 12:54:52 +0800716 if (bdev_read_only(bdev))
717 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
718 else
719 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800720 }
721
722 q = bdev_get_queue(bdev);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800723 if (!blk_queue_nonrot(q))
724 fs_devices->rotating = 1;
725
726 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +0800727 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800728 device->mode = flags;
729
730 fs_devices->open_devices++;
Anand Jainebbede42017-12-04 12:54:52 +0800731 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
732 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Anand Jain0fb08bc2017-11-09 23:45:24 +0800733 fs_devices->rw_devices++;
Anand Jainb1b8e382018-01-22 14:49:37 -0800734 list_add_tail(&device->dev_alloc_list, &fs_devices->alloc_list);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800735 }
736 brelse(bh);
737
738 return 0;
739
740error_brelse:
741 brelse(bh);
742 blkdev_put(bdev, flags);
743
744 return -EINVAL;
745}
746
David Sterba60999ca2014-03-26 18:26:36 +0100747/*
748 * Add new device to list of registered devices
749 *
750 * Returns:
Anand Jaine124ece2018-01-18 22:02:35 +0800751 * device pointer which was just added or updated when successful
752 * error pointer when failed
David Sterba60999ca2014-03-26 18:26:36 +0100753 */
Anand Jaine124ece2018-01-18 22:02:35 +0800754static noinline struct btrfs_device *device_list_add(const char *path,
Anand Jain3acbcbf2018-01-18 22:02:36 +0800755 struct btrfs_super_block *disk_super)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400756{
757 struct btrfs_device *device;
758 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400759 struct rcu_string *name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400760 u64 found_transid = btrfs_super_generation(disk_super);
Anand Jain3acbcbf2018-01-18 22:02:36 +0800761 u64 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400762
763 fs_devices = find_fsid(disk_super->fsid);
764 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300765 fs_devices = alloc_fs_devices(disk_super->fsid);
766 if (IS_ERR(fs_devices))
Anand Jaine124ece2018-01-18 22:02:35 +0800767 return ERR_CAST(fs_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300768
Anand Jainc4babc52018-04-12 10:29:25 +0800769 list_add(&fs_devices->fs_list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300770
Chris Mason8a4b83c2008-03-24 15:02:07 -0400771 device = NULL;
772 } else {
David Sterba35c70102017-06-15 19:51:51 +0200773 device = find_device(fs_devices, devid,
774 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400775 }
Miao Xie443f24f2014-07-24 11:37:15 +0800776
Chris Mason8a4b83c2008-03-24 15:02:07 -0400777 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500778 if (fs_devices->opened)
Anand Jaine124ece2018-01-18 22:02:35 +0800779 return ERR_PTR(-EBUSY);
Yan Zheng2b820322008-11-17 21:11:30 -0500780
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300781 device = btrfs_alloc_device(NULL, &devid,
782 disk_super->dev_item.uuid);
783 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400784 /* we can safely leave the fs_devices entry around */
Anand Jaine124ece2018-01-18 22:02:35 +0800785 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400786 }
Josef Bacik606686e2012-06-04 14:03:51 -0400787
788 name = rcu_string_strdup(path, GFP_NOFS);
789 if (!name) {
David Sterbaa425f9d2018-03-20 15:47:33 +0100790 btrfs_free_device(device);
Anand Jaine124ece2018-01-18 22:02:35 +0800791 return ERR_PTR(-ENOMEM);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400792 }
Josef Bacik606686e2012-06-04 14:03:51 -0400793 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200794
Chris Masone5e9a522009-06-10 15:17:02 -0400795 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000796 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100797 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400798 mutex_unlock(&fs_devices->device_list_mutex);
799
Yan Zheng2b820322008-11-17 21:11:30 -0500800 device->fs_devices = fs_devices;
Anand Jaind8367db2018-01-18 22:00:37 +0800801 btrfs_free_stale_devices(path, device);
Anand Jain327f18c2018-01-18 22:02:33 +0800802
803 if (disk_super->label[0])
804 pr_info("BTRFS: device label %s devid %llu transid %llu %s\n",
805 disk_super->label, devid, found_transid, path);
806 else
807 pr_info("BTRFS: device fsid %pU devid %llu transid %llu %s\n",
808 disk_super->fsid, devid, found_transid, path);
809
Josef Bacik606686e2012-06-04 14:03:51 -0400810 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800811 /*
812 * When FS is already mounted.
813 * 1. If you are here and if the device->name is NULL that
814 * means this device was missing at time of FS mount.
815 * 2. If you are here and if the device->name is different
816 * from 'path' that means either
817 * a. The same device disappeared and reappeared with
818 * different name. or
819 * b. The missing-disk-which-was-replaced, has
820 * reappeared now.
821 *
822 * We must allow 1 and 2a above. But 2b would be a spurious
823 * and unintentional.
824 *
825 * Further in case of 1 and 2a above, the disk at 'path'
826 * would have missed some transaction when it was away and
827 * in case of 2a the stale bdev has to be updated as well.
828 * 2b must not be allowed at all time.
829 */
830
831 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700832 * For now, we do allow update to btrfs_fs_device through the
833 * btrfs dev scan cli after FS has been mounted. We're still
834 * tracking a problem where systems fail mount by subvolume id
835 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800836 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700837 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800838 /*
839 * That is if the FS is _not_ mounted and if you
840 * are here, that means there is more than one
841 * disk with same uuid and devid.We keep the one
842 * with larger generation number or the last-in if
843 * generation are equal.
844 */
Anand Jaine124ece2018-01-18 22:02:35 +0800845 return ERR_PTR(-EEXIST);
Anand Jain77bdae42014-07-03 18:22:06 +0800846 }
Anand Jainb96de002014-07-03 18:22:05 +0800847
Josef Bacik606686e2012-06-04 14:03:51 -0400848 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000849 if (!name)
Anand Jaine124ece2018-01-18 22:02:35 +0800850 return ERR_PTR(-ENOMEM);
Josef Bacik606686e2012-06-04 14:03:51 -0400851 rcu_string_free(device->name);
852 rcu_assign_pointer(device->name, name);
Anand Jaine6e674b2017-12-04 12:54:54 +0800853 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -0500854 fs_devices->missing_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +0800855 clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -0500856 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400857 }
858
Anand Jain77bdae42014-07-03 18:22:06 +0800859 /*
860 * Unmount does not free the btrfs_device struct but would zero
861 * generation along with most of the other members. So just update
862 * it back. We need it to pick the disk with largest generation
863 * (as above).
864 */
865 if (!fs_devices->opened)
866 device->generation = found_transid;
867
Anand Jainf2788d22018-01-18 22:02:34 +0800868 fs_devices->total_devices = btrfs_super_num_devices(disk_super);
869
Anand Jaine124ece2018-01-18 22:02:35 +0800870 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400871}
872
Yan Zhenge4404d62008-12-12 10:03:26 -0500873static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
874{
875 struct btrfs_fs_devices *fs_devices;
876 struct btrfs_device *device;
877 struct btrfs_device *orig_dev;
878
Ilya Dryomov2208a372013-08-12 14:33:03 +0300879 fs_devices = alloc_fs_devices(orig->fsid);
880 if (IS_ERR(fs_devices))
881 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500882
Miao Xieadbbb862014-09-03 21:35:42 +0800883 mutex_lock(&orig->device_list_mutex);
Josef Bacik02db0842012-06-21 16:03:58 -0400884 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500885
Xiao Guangrong46224702011-04-20 10:08:47 +0000886 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500887 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400888 struct rcu_string *name;
889
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300890 device = btrfs_alloc_device(NULL, &orig_dev->devid,
891 orig_dev->uuid);
892 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500893 goto error;
894
Josef Bacik606686e2012-06-04 14:03:51 -0400895 /*
896 * This is ok to do without rcu read locked because we hold the
897 * uuid mutex so nothing we touch in here is going to disappear.
898 */
Anand Jaine755f782014-06-30 17:12:47 +0800899 if (orig_dev->name) {
David Sterba78f2c9e2016-02-11 14:25:38 +0100900 name = rcu_string_strdup(orig_dev->name->str,
901 GFP_KERNEL);
Anand Jaine755f782014-06-30 17:12:47 +0800902 if (!name) {
David Sterbaa425f9d2018-03-20 15:47:33 +0100903 btrfs_free_device(device);
Anand Jaine755f782014-06-30 17:12:47 +0800904 goto error;
905 }
906 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400907 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500908
Yan Zhenge4404d62008-12-12 10:03:26 -0500909 list_add(&device->dev_list, &fs_devices->devices);
910 device->fs_devices = fs_devices;
911 fs_devices->num_devices++;
912 }
Miao Xieadbbb862014-09-03 21:35:42 +0800913 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500914 return fs_devices;
915error:
Miao Xieadbbb862014-09-03 21:35:42 +0800916 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500917 free_fs_devices(fs_devices);
918 return ERR_PTR(-ENOMEM);
919}
920
Anand Jain9b99b112018-02-27 12:41:59 +0800921/*
922 * After we have read the system tree and know devids belonging to
923 * this filesystem, remove the device which does not belong there.
924 */
925void btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400926{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500927 struct btrfs_device *device, *next;
Miao Xie443f24f2014-07-24 11:37:15 +0800928 struct btrfs_device *latest_dev = NULL;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500929
Chris Masondfe25022008-05-13 13:46:40 -0400930 mutex_lock(&uuid_mutex);
931again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000932 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500933 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Anand Jaine12c9622017-12-04 12:54:53 +0800934 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
935 &device->dev_state)) {
Anand Jain401e29c2017-12-04 12:54:55 +0800936 if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
937 &device->dev_state) &&
938 (!latest_dev ||
939 device->generation > latest_dev->generation)) {
Miao Xie443f24f2014-07-24 11:37:15 +0800940 latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500941 }
Yan Zheng2b820322008-11-17 21:11:30 -0500942 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500943 }
Yan Zheng2b820322008-11-17 21:11:30 -0500944
Stefan Behrens8dabb742012-11-06 13:15:27 +0100945 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
946 /*
947 * In the first step, keep the device which has
948 * the correct fsid and the devid that is used
949 * for the dev_replace procedure.
950 * In the second step, the dev_replace state is
951 * read from the device tree and it is known
952 * whether the procedure is really active or
953 * not, which means whether this device is
954 * used or whether it should be removed.
955 */
Anand Jain401e29c2017-12-04 12:54:55 +0800956 if (step == 0 || test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
957 &device->dev_state)) {
Stefan Behrens8dabb742012-11-06 13:15:27 +0100958 continue;
959 }
960 }
Yan Zheng2b820322008-11-17 21:11:30 -0500961 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100962 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500963 device->bdev = NULL;
964 fs_devices->open_devices--;
965 }
Anand Jainebbede42017-12-04 12:54:52 +0800966 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -0500967 list_del_init(&device->dev_alloc_list);
Anand Jainebbede42017-12-04 12:54:52 +0800968 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +0800969 if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
970 &device->dev_state))
Stefan Behrens8dabb742012-11-06 13:15:27 +0100971 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500972 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500973 list_del_init(&device->dev_list);
974 fs_devices->num_devices--;
David Sterbaa425f9d2018-03-20 15:47:33 +0100975 btrfs_free_device(device);
Chris Masondfe25022008-05-13 13:46:40 -0400976 }
Yan Zheng2b820322008-11-17 21:11:30 -0500977
978 if (fs_devices->seed) {
979 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500980 goto again;
981 }
982
Miao Xie443f24f2014-07-24 11:37:15 +0800983 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500984
Chris Masondfe25022008-05-13 13:46:40 -0400985 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400986}
Chris Masona0af4692008-05-13 16:03:06 -0400987
David Sterbaf06c5962017-06-06 17:08:23 +0200988static void free_device_rcu(struct rcu_head *head)
Xiao Guangrong1f781602011-04-20 10:09:16 +0000989{
990 struct btrfs_device *device;
991
992 device = container_of(head, struct btrfs_device, rcu);
David Sterbaa425f9d2018-03-20 15:47:33 +0100993 btrfs_free_device(device);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000994}
995
Anand Jain14238812016-07-22 06:04:53 +0800996static void btrfs_close_bdev(struct btrfs_device *device)
997{
David Sterba08ffcae2017-06-19 16:55:35 +0200998 if (!device->bdev)
999 return;
1000
Anand Jainebbede42017-12-04 12:54:52 +08001001 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Anand Jain14238812016-07-22 06:04:53 +08001002 sync_blockdev(device->bdev);
1003 invalidate_bdev(device->bdev);
1004 }
1005
David Sterba08ffcae2017-06-19 16:55:35 +02001006 blkdev_put(device->bdev, device->mode);
Anand Jain14238812016-07-22 06:04:53 +08001007}
1008
Anand Jain0ccd0522016-09-22 12:56:13 +08001009static void btrfs_prepare_close_one_device(struct btrfs_device *device)
Anand Jainf448341a2016-06-14 18:55:25 +08001010{
1011 struct btrfs_fs_devices *fs_devices = device->fs_devices;
1012 struct btrfs_device *new_device;
1013 struct rcu_string *name;
1014
1015 if (device->bdev)
1016 fs_devices->open_devices--;
1017
Anand Jainebbede42017-12-04 12:54:52 +08001018 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jainf448341a2016-06-14 18:55:25 +08001019 device->devid != BTRFS_DEV_REPLACE_DEVID) {
1020 list_del_init(&device->dev_alloc_list);
1021 fs_devices->rw_devices--;
1022 }
1023
Anand Jaine6e674b2017-12-04 12:54:54 +08001024 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
Anand Jainf448341a2016-06-14 18:55:25 +08001025 fs_devices->missing_devices--;
1026
1027 new_device = btrfs_alloc_device(NULL, &device->devid,
1028 device->uuid);
1029 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
1030
1031 /* Safe because we are under uuid_mutex */
1032 if (device->name) {
1033 name = rcu_string_strdup(device->name->str, GFP_NOFS);
1034 BUG_ON(!name); /* -ENOMEM */
1035 rcu_assign_pointer(new_device->name, name);
1036 }
1037
1038 list_replace_rcu(&device->dev_list, &new_device->dev_list);
1039 new_device->fs_devices = device->fs_devices;
Anand Jainf448341a2016-06-14 18:55:25 +08001040}
1041
Anand Jain0226e0e2018-04-12 10:29:27 +08001042static int close_fs_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001043{
Sasha Levin2037a092015-05-12 19:31:37 -04001044 struct btrfs_device *device, *tmp;
Anand Jain0ccd0522016-09-22 12:56:13 +08001045 struct list_head pending_put;
1046
1047 INIT_LIST_HEAD(&pending_put);
Yan Zhenge4404d62008-12-12 10:03:26 -05001048
Yan Zheng2b820322008-11-17 21:11:30 -05001049 if (--fs_devices->opened > 0)
1050 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001051
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001052 mutex_lock(&fs_devices->device_list_mutex);
Sasha Levin2037a092015-05-12 19:31:37 -04001053 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
Anand Jain0ccd0522016-09-22 12:56:13 +08001054 btrfs_prepare_close_one_device(device);
1055 list_add(&device->dev_list, &pending_put);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001056 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001057 mutex_unlock(&fs_devices->device_list_mutex);
1058
Anand Jain0ccd0522016-09-22 12:56:13 +08001059 /*
1060 * btrfs_show_devname() is using the device_list_mutex,
1061 * sometimes call to blkdev_put() leads vfs calling
1062 * into this func. So do put outside of device_list_mutex,
1063 * as of now.
1064 */
1065 while (!list_empty(&pending_put)) {
1066 device = list_first_entry(&pending_put,
1067 struct btrfs_device, dev_list);
1068 list_del(&device->dev_list);
1069 btrfs_close_bdev(device);
David Sterbaf06c5962017-06-06 17:08:23 +02001070 call_rcu(&device->rcu, free_device_rcu);
Anand Jain0ccd0522016-09-22 12:56:13 +08001071 }
1072
Yan Zhenge4404d62008-12-12 10:03:26 -05001073 WARN_ON(fs_devices->open_devices);
1074 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001075 fs_devices->opened = 0;
1076 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001077
Chris Mason8a4b83c2008-03-24 15:02:07 -04001078 return 0;
1079}
1080
Yan Zheng2b820322008-11-17 21:11:30 -05001081int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
1082{
Yan Zhenge4404d62008-12-12 10:03:26 -05001083 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -05001084 int ret;
1085
1086 mutex_lock(&uuid_mutex);
Anand Jain0226e0e2018-04-12 10:29:27 +08001087 ret = close_fs_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05001088 if (!fs_devices->opened) {
1089 seed_devices = fs_devices->seed;
1090 fs_devices->seed = NULL;
1091 }
Yan Zheng2b820322008-11-17 21:11:30 -05001092 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001093
1094 while (seed_devices) {
1095 fs_devices = seed_devices;
1096 seed_devices = fs_devices->seed;
Anand Jain0226e0e2018-04-12 10:29:27 +08001097 close_fs_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05001098 free_fs_devices(fs_devices);
1099 }
Yan Zheng2b820322008-11-17 21:11:30 -05001100 return ret;
1101}
1102
Anand Jain897fb572018-04-12 10:29:28 +08001103static int open_fs_devices(struct btrfs_fs_devices *fs_devices,
Yan Zhenge4404d62008-12-12 10:03:26 -05001104 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001105{
Chris Mason8a4b83c2008-03-24 15:02:07 -04001106 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +08001107 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -04001108 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001109
Tejun Heod4d77622010-11-13 11:55:18 +01001110 flags |= FMODE_EXCL;
1111
Anand Jainf117e292018-04-12 10:29:26 +08001112 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Eric Sandeenf63e0cc2013-04-04 20:45:08 +00001113 /* Just open everything we can; ignore failures here */
Anand Jain0fb08bc2017-11-09 23:45:24 +08001114 if (btrfs_open_one_device(fs_devices, device, flags, holder))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001115 continue;
Chris Masona0af4692008-05-13 16:03:06 -04001116
Anand Jain9f050db2017-11-09 23:45:25 +08001117 if (!latest_dev ||
1118 device->generation > latest_dev->generation)
1119 latest_dev = device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001120 }
Chris Masona0af4692008-05-13 16:03:06 -04001121 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +03001122 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -04001123 goto out;
1124 }
Yan Zheng2b820322008-11-17 21:11:30 -05001125 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +08001126 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -05001127 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -04001128out:
Yan Zheng2b820322008-11-17 21:11:30 -05001129 return ret;
1130}
1131
Anand Jainf8e10cd2018-01-22 14:49:36 -08001132static int devid_cmp(void *priv, struct list_head *a, struct list_head *b)
1133{
1134 struct btrfs_device *dev1, *dev2;
1135
1136 dev1 = list_entry(a, struct btrfs_device, dev_list);
1137 dev2 = list_entry(b, struct btrfs_device, dev_list);
1138
1139 if (dev1->devid < dev2->devid)
1140 return -1;
1141 else if (dev1->devid > dev2->devid)
1142 return 1;
1143 return 0;
1144}
1145
Yan Zheng2b820322008-11-17 21:11:30 -05001146int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -05001147 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -05001148{
1149 int ret;
1150
1151 mutex_lock(&uuid_mutex);
1152 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001153 fs_devices->opened++;
1154 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001155 } else {
Anand Jainf8e10cd2018-01-22 14:49:36 -08001156 list_sort(NULL, &fs_devices->devices, devid_cmp);
Anand Jain897fb572018-04-12 10:29:28 +08001157 ret = open_fs_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -05001158 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001159 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001160 return ret;
1161}
1162
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001163static void btrfs_release_disk_super(struct page *page)
Anand Jain6cf86a002016-02-13 10:01:29 +08001164{
1165 kunmap(page);
1166 put_page(page);
1167}
1168
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001169static int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr,
1170 struct page **page,
1171 struct btrfs_super_block **disk_super)
Anand Jain6cf86a002016-02-13 10:01:29 +08001172{
1173 void *p;
1174 pgoff_t index;
1175
1176 /* make sure our super fits in the device */
1177 if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode))
1178 return 1;
1179
1180 /* make sure our super fits in the page */
1181 if (sizeof(**disk_super) > PAGE_SIZE)
1182 return 1;
1183
1184 /* make sure our super doesn't straddle pages on disk */
1185 index = bytenr >> PAGE_SHIFT;
1186 if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index)
1187 return 1;
1188
1189 /* pull in the page with our super */
1190 *page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1191 index, GFP_KERNEL);
1192
1193 if (IS_ERR_OR_NULL(*page))
1194 return 1;
1195
1196 p = kmap(*page);
1197
1198 /* align our pointer to the offset of the super block */
1199 *disk_super = p + (bytenr & ~PAGE_MASK);
1200
1201 if (btrfs_super_bytenr(*disk_super) != bytenr ||
1202 btrfs_super_magic(*disk_super) != BTRFS_MAGIC) {
1203 btrfs_release_disk_super(*page);
1204 return 1;
1205 }
1206
1207 if ((*disk_super)->label[0] &&
1208 (*disk_super)->label[BTRFS_LABEL_SIZE - 1])
1209 (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0';
1210
1211 return 0;
1212}
1213
David Sterba6f60cbd2013-02-15 11:31:02 -07001214/*
1215 * Look for a btrfs signature on a device. This may be called out of the mount path
1216 * and we are not allowed to call set_blocksize during the scan. The superblock
1217 * is read via pagecache
1218 */
Christoph Hellwig97288f22008-12-02 06:36:09 -05001219int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001220 struct btrfs_fs_devices **fs_devices_ret)
1221{
1222 struct btrfs_super_block *disk_super;
Anand Jaine124ece2018-01-18 22:02:35 +08001223 struct btrfs_device *device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001224 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -07001225 struct page *page;
Anand Jaine124ece2018-01-18 22:02:35 +08001226 int ret = 0;
David Sterba6f60cbd2013-02-15 11:31:02 -07001227 u64 bytenr;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001228
David Sterba6f60cbd2013-02-15 11:31:02 -07001229 /*
1230 * we would like to check all the supers, but that would make
1231 * a btrfs mount succeed after a mkfs from a different FS.
1232 * So, we need to add a special mount option to scan for
1233 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1234 */
1235 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +01001236 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -05001237 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -07001238
1239 bdev = blkdev_get_by_path(path, flags, holder);
David Sterba6f60cbd2013-02-15 11:31:02 -07001240 if (IS_ERR(bdev)) {
1241 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001242 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -07001243 }
1244
Anand Jain05a5c552017-12-15 15:40:16 +08001245 if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super)) {
1246 ret = -EINVAL;
David Sterba6f60cbd2013-02-15 11:31:02 -07001247 goto error_bdev_put;
Anand Jain05a5c552017-12-15 15:40:16 +08001248 }
David Sterba6f60cbd2013-02-15 11:31:02 -07001249
Anand Jain3acbcbf2018-01-18 22:02:36 +08001250 device = device_list_add(path, disk_super);
Anand Jaine124ece2018-01-18 22:02:35 +08001251 if (IS_ERR(device))
1252 ret = PTR_ERR(device);
1253 else
1254 *fs_devices_ret = device->fs_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001255
Anand Jain6cf86a002016-02-13 10:01:29 +08001256 btrfs_release_disk_super(page);
David Sterba6f60cbd2013-02-15 11:31:02 -07001257
1258error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001259 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001260error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001261 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001262 return ret;
1263}
Chris Mason0b86a832008-03-24 15:01:56 -04001264
Miao Xie6d07bce2011-01-05 10:07:31 +00001265/* helper to account the used device space in the range */
1266int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
1267 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -04001268{
1269 struct btrfs_key key;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001270 struct btrfs_root *root = device->fs_info->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +00001271 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001272 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +00001273 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001274 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +00001275 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001276 struct extent_buffer *l;
1277
Miao Xie6d07bce2011-01-05 10:07:31 +00001278 *length = 0;
1279
Anand Jain401e29c2017-12-04 12:54:55 +08001280 if (start >= device->total_bytes ||
1281 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Miao Xie6d07bce2011-01-05 10:07:31 +00001282 return 0;
1283
Yan Zheng2b820322008-11-17 21:11:30 -05001284 path = btrfs_alloc_path();
1285 if (!path)
1286 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01001287 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04001288
Chris Mason0b86a832008-03-24 15:01:56 -04001289 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001290 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001291 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +00001292
1293 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001294 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001295 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001296 if (ret > 0) {
1297 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1298 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001299 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001300 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001301
Chris Mason0b86a832008-03-24 15:01:56 -04001302 while (1) {
1303 l = path->nodes[0];
1304 slot = path->slots[0];
1305 if (slot >= btrfs_header_nritems(l)) {
1306 ret = btrfs_next_leaf(root, path);
1307 if (ret == 0)
1308 continue;
1309 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001310 goto out;
1311
1312 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001313 }
1314 btrfs_item_key_to_cpu(l, &key, slot);
1315
1316 if (key.objectid < device->devid)
1317 goto next;
1318
1319 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +00001320 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001321
David Sterba962a2982014-06-04 18:41:45 +02001322 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001323 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001324
Chris Mason0b86a832008-03-24 15:01:56 -04001325 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +00001326 extent_end = key.offset + btrfs_dev_extent_length(l,
1327 dev_extent);
1328 if (key.offset <= start && extent_end > end) {
1329 *length = end - start + 1;
1330 break;
1331 } else if (key.offset <= start && extent_end > start)
1332 *length += extent_end - start;
1333 else if (key.offset > start && extent_end <= end)
1334 *length += extent_end - key.offset;
1335 else if (key.offset > start && key.offset <= end) {
1336 *length += end - key.offset + 1;
1337 break;
1338 } else if (key.offset > end)
1339 break;
1340
1341next:
1342 path->slots[0]++;
1343 }
1344 ret = 0;
1345out:
1346 btrfs_free_path(path);
1347 return ret;
1348}
1349
Jeff Mahoney499f3772015-06-15 09:41:17 -04001350static int contains_pending_extent(struct btrfs_transaction *transaction,
Josef Bacik6df9a952013-06-27 13:22:46 -04001351 struct btrfs_device *device,
1352 u64 *start, u64 len)
1353{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001354 struct btrfs_fs_info *fs_info = device->fs_info;
Josef Bacik6df9a952013-06-27 13:22:46 -04001355 struct extent_map *em;
Jeff Mahoney499f3772015-06-15 09:41:17 -04001356 struct list_head *search_list = &fs_info->pinned_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001357 int ret = 0;
Forrest Liu1b984502015-02-09 17:30:47 +08001358 u64 physical_start = *start;
Josef Bacik6df9a952013-06-27 13:22:46 -04001359
Jeff Mahoney499f3772015-06-15 09:41:17 -04001360 if (transaction)
1361 search_list = &transaction->pending_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001362again:
1363 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001364 struct map_lookup *map;
1365 int i;
1366
Jeff Mahoney95617d62015-06-03 10:55:48 -04001367 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04001368 for (i = 0; i < map->num_stripes; i++) {
Filipe Mananac152b632015-05-14 10:46:03 +01001369 u64 end;
1370
Josef Bacik6df9a952013-06-27 13:22:46 -04001371 if (map->stripes[i].dev != device)
1372 continue;
Forrest Liu1b984502015-02-09 17:30:47 +08001373 if (map->stripes[i].physical >= physical_start + len ||
Josef Bacik6df9a952013-06-27 13:22:46 -04001374 map->stripes[i].physical + em->orig_block_len <=
Forrest Liu1b984502015-02-09 17:30:47 +08001375 physical_start)
Josef Bacik6df9a952013-06-27 13:22:46 -04001376 continue;
Filipe Mananac152b632015-05-14 10:46:03 +01001377 /*
1378 * Make sure that while processing the pinned list we do
1379 * not override our *start with a lower value, because
1380 * we can have pinned chunks that fall within this
1381 * device hole and that have lower physical addresses
1382 * than the pending chunks we processed before. If we
1383 * do not take this special care we can end up getting
1384 * 2 pending chunks that start at the same physical
1385 * device offsets because the end offset of a pinned
1386 * chunk can be equal to the start offset of some
1387 * pending chunk.
1388 */
1389 end = map->stripes[i].physical + em->orig_block_len;
1390 if (end > *start) {
1391 *start = end;
1392 ret = 1;
1393 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001394 }
1395 }
Jeff Mahoney499f3772015-06-15 09:41:17 -04001396 if (search_list != &fs_info->pinned_chunks) {
1397 search_list = &fs_info->pinned_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001398 goto again;
1399 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001400
1401 return ret;
1402}
1403
1404
Chris Mason0b86a832008-03-24 15:01:56 -04001405/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001406 * find_free_dev_extent_start - find free space in the specified device
1407 * @device: the device which we search the free space in
1408 * @num_bytes: the size of the free space that we need
1409 * @search_start: the position from which to begin the search
1410 * @start: store the start of the free space.
1411 * @len: the size of the free space. that we find, or the size
1412 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001413 *
Chris Mason0b86a832008-03-24 15:01:56 -04001414 * this uses a pretty simple search, the expectation is that it is
1415 * called very infrequently and that a given device has a small number
1416 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001417 *
1418 * @start is used to store the start of the free space if we find. But if we
1419 * don't find suitable free space, it will be used to store the start position
1420 * of the max free space.
1421 *
1422 * @len is used to store the size of the free space that we find.
1423 * But if we don't find suitable free space, it is used to store the size of
1424 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001425 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001426int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1427 struct btrfs_device *device, u64 num_bytes,
1428 u64 search_start, u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001429{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001430 struct btrfs_fs_info *fs_info = device->fs_info;
1431 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001432 struct btrfs_key key;
Miao Xie7bfc8372011-01-05 10:07:26 +00001433 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001434 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001435 u64 hole_size;
1436 u64 max_hole_start;
1437 u64 max_hole_size;
1438 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001439 u64 search_end = device->total_bytes;
1440 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001441 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001442 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001443
1444 /*
1445 * We don't want to overwrite the superblock on the drive nor any area
1446 * used by the boot loader (grub for example), so we make sure to start
1447 * at an offset of at least 1MB.
1448 */
David Sterba0d0c71b2017-06-15 01:30:06 +02001449 search_start = max_t(u64, search_start, SZ_1M);
Chris Mason0b86a832008-03-24 15:01:56 -04001450
Josef Bacik6df9a952013-06-27 13:22:46 -04001451 path = btrfs_alloc_path();
1452 if (!path)
1453 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001454
Miao Xie7bfc8372011-01-05 10:07:26 +00001455 max_hole_start = search_start;
1456 max_hole_size = 0;
1457
Zhao Leif2ab7612015-02-16 18:52:17 +08001458again:
Anand Jain401e29c2017-12-04 12:54:55 +08001459 if (search_start >= search_end ||
1460 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001461 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001462 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001463 }
1464
David Sterbae4058b52015-11-27 16:31:35 +01001465 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001466 path->search_commit_root = 1;
1467 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001468
Chris Mason0b86a832008-03-24 15:01:56 -04001469 key.objectid = device->devid;
1470 key.offset = search_start;
1471 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001472
Li Zefan125ccb02011-12-08 15:07:24 +08001473 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001474 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001475 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001476 if (ret > 0) {
1477 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1478 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001479 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001480 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001481
Chris Mason0b86a832008-03-24 15:01:56 -04001482 while (1) {
1483 l = path->nodes[0];
1484 slot = path->slots[0];
1485 if (slot >= btrfs_header_nritems(l)) {
1486 ret = btrfs_next_leaf(root, path);
1487 if (ret == 0)
1488 continue;
1489 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001490 goto out;
1491
1492 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001493 }
1494 btrfs_item_key_to_cpu(l, &key, slot);
1495
1496 if (key.objectid < device->devid)
1497 goto next;
1498
1499 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001500 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001501
David Sterba962a2982014-06-04 18:41:45 +02001502 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001503 goto next;
1504
Miao Xie7bfc8372011-01-05 10:07:26 +00001505 if (key.offset > search_start) {
1506 hole_size = key.offset - search_start;
1507
Josef Bacik6df9a952013-06-27 13:22:46 -04001508 /*
1509 * Have to check before we set max_hole_start, otherwise
1510 * we could end up sending back this offset anyway.
1511 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001512 if (contains_pending_extent(transaction, device,
Josef Bacik6df9a952013-06-27 13:22:46 -04001513 &search_start,
Forrest Liu1b984502015-02-09 17:30:47 +08001514 hole_size)) {
1515 if (key.offset >= search_start) {
1516 hole_size = key.offset - search_start;
1517 } else {
1518 WARN_ON_ONCE(1);
1519 hole_size = 0;
1520 }
1521 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001522
Miao Xie7bfc8372011-01-05 10:07:26 +00001523 if (hole_size > max_hole_size) {
1524 max_hole_start = search_start;
1525 max_hole_size = hole_size;
1526 }
1527
1528 /*
1529 * If this free space is greater than which we need,
1530 * it must be the max free space that we have found
1531 * until now, so max_hole_start must point to the start
1532 * of this free space and the length of this free space
1533 * is stored in max_hole_size. Thus, we return
1534 * max_hole_start and max_hole_size and go back to the
1535 * caller.
1536 */
1537 if (hole_size >= num_bytes) {
1538 ret = 0;
1539 goto out;
1540 }
1541 }
1542
Chris Mason0b86a832008-03-24 15:01:56 -04001543 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001544 extent_end = key.offset + btrfs_dev_extent_length(l,
1545 dev_extent);
1546 if (extent_end > search_start)
1547 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001548next:
1549 path->slots[0]++;
1550 cond_resched();
1551 }
Chris Mason0b86a832008-03-24 15:01:56 -04001552
liubo38c01b92011-08-02 02:39:03 +00001553 /*
1554 * At this point, search_start should be the end of
1555 * allocated dev extents, and when shrinking the device,
1556 * search_end may be smaller than search_start.
1557 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001558 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001559 hole_size = search_end - search_start;
1560
Jeff Mahoney499f3772015-06-15 09:41:17 -04001561 if (contains_pending_extent(transaction, device, &search_start,
Zhao Leif2ab7612015-02-16 18:52:17 +08001562 hole_size)) {
1563 btrfs_release_path(path);
1564 goto again;
1565 }
Chris Mason0b86a832008-03-24 15:01:56 -04001566
Zhao Leif2ab7612015-02-16 18:52:17 +08001567 if (hole_size > max_hole_size) {
1568 max_hole_start = search_start;
1569 max_hole_size = hole_size;
1570 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001571 }
1572
Miao Xie7bfc8372011-01-05 10:07:26 +00001573 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001574 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001575 ret = -ENOSPC;
1576 else
1577 ret = 0;
1578
1579out:
Yan Zheng2b820322008-11-17 21:11:30 -05001580 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001581 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001582 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001583 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001584 return ret;
1585}
1586
Jeff Mahoney499f3772015-06-15 09:41:17 -04001587int find_free_dev_extent(struct btrfs_trans_handle *trans,
1588 struct btrfs_device *device, u64 num_bytes,
1589 u64 *start, u64 *len)
1590{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001591 /* FIXME use last free of some kind */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001592 return find_free_dev_extent_start(trans->transaction, device,
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001593 num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001594}
1595
Christoph Hellwigb2950862008-12-02 09:54:17 -05001596static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001597 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001598 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001599{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001600 struct btrfs_fs_info *fs_info = device->fs_info;
1601 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001602 int ret;
1603 struct btrfs_path *path;
Chris Mason8f18cf12008-04-25 16:53:30 -04001604 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001605 struct btrfs_key found_key;
1606 struct extent_buffer *leaf = NULL;
1607 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001608
1609 path = btrfs_alloc_path();
1610 if (!path)
1611 return -ENOMEM;
1612
1613 key.objectid = device->devid;
1614 key.offset = start;
1615 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001616again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001617 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001618 if (ret > 0) {
1619 ret = btrfs_previous_item(root, path, key.objectid,
1620 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001621 if (ret)
1622 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001623 leaf = path->nodes[0];
1624 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1625 extent = btrfs_item_ptr(leaf, path->slots[0],
1626 struct btrfs_dev_extent);
1627 BUG_ON(found_key.offset > start || found_key.offset +
1628 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001629 key = found_key;
1630 btrfs_release_path(path);
1631 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001632 } else if (ret == 0) {
1633 leaf = path->nodes[0];
1634 extent = btrfs_item_ptr(leaf, path->slots[0],
1635 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001636 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001637 btrfs_handle_fs_error(fs_info, ret, "Slot search failed");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001638 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001639 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001640
Miao Xie2196d6e2014-09-03 21:35:41 +08001641 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1642
Chris Mason8f18cf12008-04-25 16:53:30 -04001643 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001644 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001645 btrfs_handle_fs_error(fs_info, ret,
1646 "Failed to remove dev extent item");
Zhao Lei13212b52015-02-12 14:18:17 +08001647 } else {
Josef Bacik3204d332015-09-24 10:46:10 -04001648 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001649 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001650out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001651 btrfs_free_path(path);
1652 return ret;
1653}
1654
Eric Sandeen48a3b632013-04-25 20:41:01 +00001655static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1656 struct btrfs_device *device,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001657 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001658{
1659 int ret;
1660 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001661 struct btrfs_fs_info *fs_info = device->fs_info;
1662 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001663 struct btrfs_dev_extent *extent;
1664 struct extent_buffer *leaf;
1665 struct btrfs_key key;
1666
Anand Jaine12c9622017-12-04 12:54:53 +08001667 WARN_ON(!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state));
Anand Jain401e29c2017-12-04 12:54:55 +08001668 WARN_ON(test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state));
Chris Mason0b86a832008-03-24 15:01:56 -04001669 path = btrfs_alloc_path();
1670 if (!path)
1671 return -ENOMEM;
1672
Chris Mason0b86a832008-03-24 15:01:56 -04001673 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001674 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001675 key.type = BTRFS_DEV_EXTENT_KEY;
1676 ret = btrfs_insert_empty_item(trans, root, path, &key,
1677 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001678 if (ret)
1679 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001680
1681 leaf = path->nodes[0];
1682 extent = btrfs_item_ptr(leaf, path->slots[0],
1683 struct btrfs_dev_extent);
Nikolay Borisovb5d90712017-08-18 17:58:23 +03001684 btrfs_set_dev_extent_chunk_tree(leaf, extent,
1685 BTRFS_CHUNK_TREE_OBJECTID);
Nikolay Borisov0ca00af2017-08-18 17:58:22 +03001686 btrfs_set_dev_extent_chunk_objectid(leaf, extent,
1687 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Masone17cade2008-04-15 15:41:47 -04001688 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1689
Chris Mason0b86a832008-03-24 15:01:56 -04001690 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1691 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001692out:
Chris Mason0b86a832008-03-24 15:01:56 -04001693 btrfs_free_path(path);
1694 return ret;
1695}
1696
Josef Bacik6df9a952013-06-27 13:22:46 -04001697static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001698{
Josef Bacik6df9a952013-06-27 13:22:46 -04001699 struct extent_map_tree *em_tree;
1700 struct extent_map *em;
1701 struct rb_node *n;
1702 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001703
Josef Bacik6df9a952013-06-27 13:22:46 -04001704 em_tree = &fs_info->mapping_tree.map_tree;
1705 read_lock(&em_tree->lock);
1706 n = rb_last(&em_tree->map);
1707 if (n) {
1708 em = rb_entry(n, struct extent_map, rb_node);
1709 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001710 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001711 read_unlock(&em_tree->lock);
1712
Chris Mason0b86a832008-03-24 15:01:56 -04001713 return ret;
1714}
1715
Ilya Dryomov53f10652013-08-12 14:33:01 +03001716static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1717 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001718{
1719 int ret;
1720 struct btrfs_key key;
1721 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001722 struct btrfs_path *path;
1723
Yan Zheng2b820322008-11-17 21:11:30 -05001724 path = btrfs_alloc_path();
1725 if (!path)
1726 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001727
1728 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1729 key.type = BTRFS_DEV_ITEM_KEY;
1730 key.offset = (u64)-1;
1731
Ilya Dryomov53f10652013-08-12 14:33:01 +03001732 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001733 if (ret < 0)
1734 goto error;
1735
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001736 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001737
Ilya Dryomov53f10652013-08-12 14:33:01 +03001738 ret = btrfs_previous_item(fs_info->chunk_root, path,
1739 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001740 BTRFS_DEV_ITEM_KEY);
1741 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001742 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001743 } else {
1744 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1745 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001746 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001747 }
1748 ret = 0;
1749error:
Yan Zheng2b820322008-11-17 21:11:30 -05001750 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001751 return ret;
1752}
1753
1754/*
1755 * the device information is stored in the chunk root
1756 * the btrfs_device struct should be fully filled in
1757 */
Anand Jainc74a0b02017-11-06 16:36:15 +08001758static int btrfs_add_dev_item(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001759 struct btrfs_fs_info *fs_info,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001760 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001761{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001762 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001763 int ret;
1764 struct btrfs_path *path;
1765 struct btrfs_dev_item *dev_item;
1766 struct extent_buffer *leaf;
1767 struct btrfs_key key;
1768 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001769
Chris Mason0b86a832008-03-24 15:01:56 -04001770 path = btrfs_alloc_path();
1771 if (!path)
1772 return -ENOMEM;
1773
Chris Mason0b86a832008-03-24 15:01:56 -04001774 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1775 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001776 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001777
1778 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001779 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001780 if (ret)
1781 goto out;
1782
1783 leaf = path->nodes[0];
1784 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1785
1786 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001787 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001788 btrfs_set_device_type(leaf, dev_item, device->type);
1789 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1790 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1791 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001792 btrfs_set_device_total_bytes(leaf, dev_item,
1793 btrfs_device_get_disk_total_bytes(device));
1794 btrfs_set_device_bytes_used(leaf, dev_item,
1795 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001796 btrfs_set_device_group(leaf, dev_item, 0);
1797 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1798 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001799 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001800
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001801 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001802 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001803 ptr = btrfs_device_fsid(dev_item);
Anand Jain44880fd2017-07-29 17:50:09 +08001804 write_extent_buffer(leaf, fs_info->fsid, ptr, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001805 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001806
Yan Zheng2b820322008-11-17 21:11:30 -05001807 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001808out:
1809 btrfs_free_path(path);
1810 return ret;
1811}
Chris Mason8f18cf12008-04-25 16:53:30 -04001812
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001813/*
1814 * Function to update ctime/mtime for a given device path.
1815 * Mainly used for ctime/mtime based probe like libblkid.
1816 */
David Sterbada353f62017-02-14 17:55:53 +01001817static void update_dev_time(const char *path_name)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001818{
1819 struct file *filp;
1820
1821 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001822 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001823 return;
1824 file_update_time(filp);
1825 filp_close(filp, NULL);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001826}
1827
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001828static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info,
Chris Masona061fc82008-05-07 11:43:44 -04001829 struct btrfs_device *device)
1830{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001831 struct btrfs_root *root = fs_info->chunk_root;
Chris Masona061fc82008-05-07 11:43:44 -04001832 int ret;
1833 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001834 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001835 struct btrfs_trans_handle *trans;
1836
Chris Masona061fc82008-05-07 11:43:44 -04001837 path = btrfs_alloc_path();
1838 if (!path)
1839 return -ENOMEM;
1840
Yan, Zhenga22285a2010-05-16 10:48:46 -04001841 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001842 if (IS_ERR(trans)) {
1843 btrfs_free_path(path);
1844 return PTR_ERR(trans);
1845 }
Chris Masona061fc82008-05-07 11:43:44 -04001846 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1847 key.type = BTRFS_DEV_ITEM_KEY;
1848 key.offset = device->devid;
1849
1850 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001851 if (ret) {
1852 if (ret > 0)
1853 ret = -ENOENT;
1854 btrfs_abort_transaction(trans, ret);
1855 btrfs_end_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001856 goto out;
1857 }
1858
1859 ret = btrfs_del_item(trans, root, path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001860 if (ret) {
1861 btrfs_abort_transaction(trans, ret);
1862 btrfs_end_transaction(trans);
1863 }
1864
Chris Masona061fc82008-05-07 11:43:44 -04001865out:
1866 btrfs_free_path(path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001867 if (!ret)
1868 ret = btrfs_commit_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001869 return ret;
1870}
1871
David Sterba3cc31a02016-02-15 16:00:26 +01001872/*
1873 * Verify that @num_devices satisfies the RAID profile constraints in the whole
1874 * filesystem. It's up to the caller to adjust that number regarding eg. device
1875 * replace.
1876 */
1877static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info,
1878 u64 num_devices)
Chris Masona061fc82008-05-07 11:43:44 -04001879{
Chris Masona061fc82008-05-07 11:43:44 -04001880 u64 all_avail;
Miao Xiede98ced2013-01-29 10:13:12 +00001881 unsigned seq;
David Sterba418775a2016-02-15 16:28:14 +01001882 int i;
Chris Masona061fc82008-05-07 11:43:44 -04001883
Miao Xiede98ced2013-01-29 10:13:12 +00001884 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001885 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00001886
Anand Jainbd45ffb2016-02-13 10:01:34 +08001887 all_avail = fs_info->avail_data_alloc_bits |
1888 fs_info->avail_system_alloc_bits |
1889 fs_info->avail_metadata_alloc_bits;
1890 } while (read_seqretry(&fs_info->profiles_lock, seq));
Anand Jainf1fa7f22016-02-13 10:01:33 +08001891
David Sterba418775a2016-02-15 16:28:14 +01001892 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
1893 if (!(all_avail & btrfs_raid_group[i]))
1894 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001895
David Sterba418775a2016-02-15 16:28:14 +01001896 if (num_devices < btrfs_raid_array[i].devs_min) {
1897 int ret = btrfs_raid_mindev_error[i];
Chris Masona061fc82008-05-07 11:43:44 -04001898
David Sterba418775a2016-02-15 16:28:14 +01001899 if (ret)
1900 return ret;
1901 }
Anand Jainbd45ffb2016-02-13 10:01:34 +08001902 }
1903
1904 return 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001905}
1906
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001907static struct btrfs_device * btrfs_find_next_active_device(
1908 struct btrfs_fs_devices *fs_devs, struct btrfs_device *device)
Anand Jain88acff62016-05-03 17:44:43 +08001909{
1910 struct btrfs_device *next_device;
1911
1912 list_for_each_entry(next_device, &fs_devs->devices, dev_list) {
1913 if (next_device != device &&
Anand Jaine6e674b2017-12-04 12:54:54 +08001914 !test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state)
1915 && next_device->bdev)
Anand Jain88acff62016-05-03 17:44:43 +08001916 return next_device;
1917 }
1918
1919 return NULL;
1920}
1921
1922/*
1923 * Helper function to check if the given device is part of s_bdev / latest_bdev
1924 * and replace it with the provided or the next active device, in the context
1925 * where this function called, there should be always be another device (or
1926 * this_dev) which is active.
1927 */
1928void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info,
1929 struct btrfs_device *device, struct btrfs_device *this_dev)
1930{
1931 struct btrfs_device *next_device;
1932
1933 if (this_dev)
1934 next_device = this_dev;
1935 else
1936 next_device = btrfs_find_next_active_device(fs_info->fs_devices,
1937 device);
1938 ASSERT(next_device);
1939
1940 if (fs_info->sb->s_bdev &&
1941 (fs_info->sb->s_bdev == device->bdev))
1942 fs_info->sb->s_bdev = next_device->bdev;
1943
1944 if (fs_info->fs_devices->latest_bdev == device->bdev)
1945 fs_info->fs_devices->latest_bdev = next_device->bdev;
1946}
1947
David Sterbada353f62017-02-14 17:55:53 +01001948int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path,
1949 u64 devid)
Anand Jainf1fa7f22016-02-13 10:01:33 +08001950{
1951 struct btrfs_device *device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001952 struct btrfs_fs_devices *cur_devices;
Anand Jainb5185192018-04-12 10:29:30 +08001953 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001954 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001955 int ret = 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001956
1957 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001958
Anand Jainb5185192018-04-12 10:29:30 +08001959 num_devices = fs_devices->num_devices;
David Sterba7e79cb82018-03-24 02:11:38 +01001960 btrfs_dev_replace_read_lock(&fs_info->dev_replace);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001961 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
Chris Masona061fc82008-05-07 11:43:44 -04001962 WARN_ON(num_devices < 1);
1963 num_devices--;
1964 }
David Sterba7e79cb82018-03-24 02:11:38 +01001965 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
Chris Masona061fc82008-05-07 11:43:44 -04001966
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001967 ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001968 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001969 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001970
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001971 ret = btrfs_find_device_by_devspec(fs_info, devid, device_path,
1972 &device);
Anand Jain24fc5722016-02-13 10:01:36 +08001973 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001974 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001975
Anand Jain401e29c2017-12-04 12:54:55 +08001976 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Anand Jain183860f2013-05-17 10:52:45 +00001977 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08001978 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001979 }
1980
Anand Jainebbede42017-12-04 12:54:52 +08001981 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
1982 fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001983 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08001984 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001985 }
1986
Anand Jainebbede42017-12-04 12:54:52 +08001987 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02001988 mutex_lock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001989 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001990 device->fs_devices->rw_devices--;
David Sterba34441362016-10-04 19:34:27 +02001991 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001992 }
Chris Masona061fc82008-05-07 11:43:44 -04001993
Carey Underwoodd7901552013-03-04 16:37:06 -06001994 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001995 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001996 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001997 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001998 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001999
Stefan Behrens63a212a2012-11-05 18:29:28 +01002000 /*
2001 * TODO: the superblock still includes this device in its num_devices
2002 * counter although write_all_supers() is not locked out. This
2003 * could give a filesystem state which requires a degraded mount.
2004 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002005 ret = btrfs_rm_dev_item(fs_info, device);
Chris Masona061fc82008-05-07 11:43:44 -04002006 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002007 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04002008
Anand Jaine12c9622017-12-04 12:54:53 +08002009 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002010 btrfs_scrub_cancel_dev(fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04002011
2012 /*
2013 * the device list mutex makes sure that we don't change
2014 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01002015 * the device supers. Whoever is writing all supers, should
2016 * lock the device list mutex before getting the number of
2017 * devices in the super block (super_copy). Conversely,
2018 * whoever updates the number of devices in the super block
2019 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04002020 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00002021
2022 cur_devices = device->fs_devices;
Anand Jainb5185192018-04-12 10:29:30 +08002023 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002024 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002025
Yan Zhenge4404d62008-12-12 10:03:26 -05002026 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04002027 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05002028
Anand Jaine6e674b2017-12-04 12:54:54 +08002029 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
Miao Xie3a7d55c2014-07-16 18:38:01 +08002030 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05002031
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002032 btrfs_assign_next_active_device(fs_info, device, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05002033
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002034 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05002035 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002036 /* remove sysfs entry */
Anand Jainb5185192018-04-12 10:29:30 +08002037 btrfs_sysfs_rm_device_link(fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05002038 }
Anand Jain99994cd2014-06-03 11:36:00 +08002039
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002040 num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1;
2041 btrfs_set_super_num_devices(fs_info->super_copy, num_devices);
Anand Jainb5185192018-04-12 10:29:30 +08002042 mutex_unlock(&fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002043
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002044 /*
2045 * at this point, the device is zero sized and detached from
2046 * the devices list. All that's left is to zero out the old
2047 * supers and free the device.
2048 */
Anand Jainebbede42017-12-04 12:54:52 +08002049 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002050 btrfs_scratch_superblocks(device->bdev, device->name->str);
2051
2052 btrfs_close_bdev(device);
David Sterbaf06c5962017-06-06 17:08:23 +02002053 call_rcu(&device->rcu, free_device_rcu);
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04002054
Xiao Guangrong1f781602011-04-20 10:09:16 +00002055 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05002056 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02002057 if (fs_devices->seed == cur_devices) {
2058 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05002059 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02002060 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002061 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05002062 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00002063 cur_devices->seed = NULL;
Anand Jain0226e0e2018-04-12 10:29:27 +08002064 close_fs_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002065 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002066 }
2067
Chris Masona061fc82008-05-07 11:43:44 -04002068out:
2069 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04002070 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08002071
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002072error_undo:
Anand Jainebbede42017-12-04 12:54:52 +08002073 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002074 mutex_lock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002075 list_add(&device->dev_alloc_list,
Anand Jainb5185192018-04-12 10:29:30 +08002076 &fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08002077 device->fs_devices->rw_devices++;
David Sterba34441362016-10-04 19:34:27 +02002078 mutex_unlock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002079 }
Anand Jain24fc5722016-02-13 10:01:36 +08002080 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04002081}
2082
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002083void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
2084 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002085{
Anand Jaind51908c2014-08-13 14:24:19 +08002086 struct btrfs_fs_devices *fs_devices;
2087
David Sterbaa32bf9a2018-03-16 02:21:22 +01002088 lockdep_assert_held(&fs_info->fs_devices->device_list_mutex);
Ilya Dryomov13572722013-10-02 20:41:01 +03002089
Anand Jain25e8e912014-08-20 10:56:56 +08002090 /*
2091 * in case of fs with no seed, srcdev->fs_devices will point
2092 * to fs_devices of fs_info. However when the dev being replaced is
2093 * a seed dev it will point to the seed's local fs_devices. In short
2094 * srcdev will have its correct fs_devices in both the cases.
2095 */
2096 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08002097
Stefan Behrense93c89c2012-11-05 17:33:06 +01002098 list_del_rcu(&srcdev->dev_list);
David Sterba619c47f2017-06-19 14:14:22 +02002099 list_del(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08002100 fs_devices->num_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +08002101 if (test_bit(BTRFS_DEV_STATE_MISSING, &srcdev->dev_state))
Anand Jaind51908c2014-08-13 14:24:19 +08002102 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002103
Anand Jainebbede42017-12-04 12:54:52 +08002104 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state))
Miao Xie82372bc2014-09-03 21:35:44 +08002105 fs_devices->rw_devices--;
Ilya Dryomov13572722013-10-02 20:41:01 +03002106
Miao Xie82372bc2014-09-03 21:35:44 +08002107 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08002108 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002109}
2110
2111void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
2112 struct btrfs_device *srcdev)
2113{
2114 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002115
Anand Jainebbede42017-12-04 12:54:52 +08002116 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) {
Anand Jain48b3b9d2016-04-12 21:36:16 +08002117 /* zero out the old super if it is writable */
2118 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
2119 }
Anand Jain14238812016-07-22 06:04:53 +08002120
2121 btrfs_close_bdev(srcdev);
David Sterbaf06c5962017-06-06 17:08:23 +02002122 call_rcu(&srcdev->rcu, free_device_rcu);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002123
Anand Jain94d5f0c2014-08-13 14:24:22 +08002124 /* if this is no devs we rather delete the fs_devices */
2125 if (!fs_devices->num_devices) {
2126 struct btrfs_fs_devices *tmp_fs_devices;
2127
Anand Jain6dd38f82017-10-17 06:53:50 +08002128 /*
2129 * On a mounted FS, num_devices can't be zero unless it's a
2130 * seed. In case of a seed device being replaced, the replace
2131 * target added to the sprout FS, so there will be no more
2132 * device left under the seed FS.
2133 */
2134 ASSERT(fs_devices->seeding);
2135
Anand Jain94d5f0c2014-08-13 14:24:22 +08002136 tmp_fs_devices = fs_info->fs_devices;
2137 while (tmp_fs_devices) {
2138 if (tmp_fs_devices->seed == fs_devices) {
2139 tmp_fs_devices->seed = fs_devices->seed;
2140 break;
2141 }
2142 tmp_fs_devices = tmp_fs_devices->seed;
2143 }
2144 fs_devices->seed = NULL;
Anand Jain0226e0e2018-04-12 10:29:27 +08002145 close_fs_devices(fs_devices);
Anand Jain8bef8402014-08-13 14:24:23 +08002146 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002147 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002148}
2149
2150void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2151 struct btrfs_device *tgtdev)
2152{
Miao Xie67a2c452014-09-03 21:35:43 +08002153 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002154 WARN_ON(!tgtdev);
2155 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002156
Anand Jain32576042015-08-14 18:32:49 +08002157 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002158
Anand Jain779bf3fe2016-04-18 16:51:23 +08002159 if (tgtdev->bdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002160 fs_info->fs_devices->open_devices--;
Anand Jain779bf3fe2016-04-18 16:51:23 +08002161
Stefan Behrense93c89c2012-11-05 17:33:06 +01002162 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002163
Anand Jain88acff62016-05-03 17:44:43 +08002164 btrfs_assign_next_active_device(fs_info, tgtdev, NULL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002165
Stefan Behrense93c89c2012-11-05 17:33:06 +01002166 list_del_rcu(&tgtdev->dev_list);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002167
2168 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002169 mutex_unlock(&uuid_mutex);
Anand Jain779bf3fe2016-04-18 16:51:23 +08002170
2171 /*
2172 * The update_dev_time() with in btrfs_scratch_superblocks()
2173 * may lead to a call to btrfs_show_devname() which will try
2174 * to hold device_list_mutex. And here this device
2175 * is already out of device list, so we don't have to hold
2176 * the device_list_mutex lock.
2177 */
2178 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Anand Jain14238812016-07-22 06:04:53 +08002179
2180 btrfs_close_bdev(tgtdev);
David Sterbaf06c5962017-06-06 17:08:23 +02002181 call_rcu(&tgtdev->rcu, free_device_rcu);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002182}
2183
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002184static int btrfs_find_device_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002185 const char *device_path,
Eric Sandeen48a3b632013-04-25 20:41:01 +00002186 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002187{
2188 int ret = 0;
2189 struct btrfs_super_block *disk_super;
2190 u64 devid;
2191 u8 *dev_uuid;
2192 struct block_device *bdev;
2193 struct buffer_head *bh;
2194
2195 *device = NULL;
2196 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002197 fs_info->bdev_holder, 0, &bdev, &bh);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002198 if (ret)
2199 return ret;
2200 disk_super = (struct btrfs_super_block *)bh->b_data;
2201 devid = btrfs_stack_device_id(&disk_super->dev_item);
2202 dev_uuid = disk_super->dev_item.uuid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002203 *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002204 brelse(bh);
2205 if (!*device)
2206 ret = -ENOENT;
2207 blkdev_put(bdev, FMODE_READ);
2208 return ret;
2209}
2210
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002211int btrfs_find_device_missing_or_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002212 const char *device_path,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002213 struct btrfs_device **device)
2214{
2215 *device = NULL;
2216 if (strcmp(device_path, "missing") == 0) {
2217 struct list_head *devices;
2218 struct btrfs_device *tmp;
2219
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002220 devices = &fs_info->fs_devices->devices;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002221 /*
2222 * It is safe to read the devices since the volume_mutex
2223 * is held by the caller.
2224 */
2225 list_for_each_entry(tmp, devices, dev_list) {
Anand Jaine12c9622017-12-04 12:54:53 +08002226 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
2227 &tmp->dev_state) && !tmp->bdev) {
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002228 *device = tmp;
2229 break;
2230 }
2231 }
2232
Anand Jaind74a6252015-08-14 18:32:56 +08002233 if (!*device)
2234 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002235
2236 return 0;
2237 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002238 return btrfs_find_device_by_path(fs_info, device_path, device);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002239 }
2240}
2241
Yan Zheng2b820322008-11-17 21:11:30 -05002242/*
David Sterba5c5c0df2016-02-15 16:39:55 +01002243 * Lookup a device given by device id, or the path if the id is 0.
2244 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002245int btrfs_find_device_by_devspec(struct btrfs_fs_info *fs_info, u64 devid,
David Sterbada353f62017-02-14 17:55:53 +01002246 const char *devpath,
2247 struct btrfs_device **device)
Anand Jain24e04742016-02-13 10:01:35 +08002248{
2249 int ret;
2250
David Sterba5c5c0df2016-02-15 16:39:55 +01002251 if (devid) {
Anand Jain24e04742016-02-13 10:01:35 +08002252 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002253 *device = btrfs_find_device(fs_info, devid, NULL, NULL);
Anand Jain24e04742016-02-13 10:01:35 +08002254 if (!*device)
2255 ret = -ENOENT;
2256 } else {
David Sterba5c5c0df2016-02-15 16:39:55 +01002257 if (!devpath || !devpath[0])
Anand Jainb3d1b152016-02-13 10:01:37 +08002258 return -EINVAL;
2259
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002260 ret = btrfs_find_device_missing_or_by_path(fs_info, devpath,
Anand Jain24e04742016-02-13 10:01:35 +08002261 device);
2262 }
2263 return ret;
2264}
2265
Yan Zheng2b820322008-11-17 21:11:30 -05002266/*
2267 * does all the dirty work required for changing file system's UUID.
2268 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002269static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002270{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002271 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002272 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002273 struct btrfs_fs_devices *seed_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002274 struct btrfs_super_block *disk_super = fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002275 struct btrfs_device *device;
2276 u64 super_flags;
2277
David Sterbaa32bf9a2018-03-16 02:21:22 +01002278 lockdep_assert_held(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002279 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002280 return -EINVAL;
2281
David Sterba2dfeca92017-06-14 02:48:07 +02002282 seed_devices = alloc_fs_devices(NULL);
Ilya Dryomov2208a372013-08-12 14:33:03 +03002283 if (IS_ERR(seed_devices))
2284 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002285
Yan Zhenge4404d62008-12-12 10:03:26 -05002286 old_devices = clone_fs_devices(fs_devices);
2287 if (IS_ERR(old_devices)) {
2288 kfree(seed_devices);
2289 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002290 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002291
Anand Jainc4babc52018-04-12 10:29:25 +08002292 list_add(&old_devices->fs_list, &fs_uuids);
Yan Zheng2b820322008-11-17 21:11:30 -05002293
Yan Zhenge4404d62008-12-12 10:03:26 -05002294 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2295 seed_devices->opened = 1;
2296 INIT_LIST_HEAD(&seed_devices->devices);
2297 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002298 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002299
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002300 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002301 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2302 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002303 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002304 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002305
David Sterba34441362016-10-04 19:34:27 +02002306 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002307 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
David Sterba34441362016-10-04 19:34:27 +02002308 mutex_unlock(&fs_info->chunk_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002309
Yan Zheng2b820322008-11-17 21:11:30 -05002310 fs_devices->seeding = 0;
2311 fs_devices->num_devices = 0;
2312 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002313 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002314 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002315 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002316
2317 generate_random_uuid(fs_devices->fsid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002318 memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002319 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002320 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002321
Yan Zheng2b820322008-11-17 21:11:30 -05002322 super_flags = btrfs_super_flags(disk_super) &
2323 ~BTRFS_SUPER_FLAG_SEEDING;
2324 btrfs_set_super_flags(disk_super, super_flags);
2325
2326 return 0;
2327}
2328
2329/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002330 * Store the expected generation for seed devices in device items.
Yan Zheng2b820322008-11-17 21:11:30 -05002331 */
2332static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002333 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002334{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002335 struct btrfs_root *root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002336 struct btrfs_path *path;
2337 struct extent_buffer *leaf;
2338 struct btrfs_dev_item *dev_item;
2339 struct btrfs_device *device;
2340 struct btrfs_key key;
Anand Jain44880fd2017-07-29 17:50:09 +08002341 u8 fs_uuid[BTRFS_FSID_SIZE];
Yan Zheng2b820322008-11-17 21:11:30 -05002342 u8 dev_uuid[BTRFS_UUID_SIZE];
2343 u64 devid;
2344 int ret;
2345
2346 path = btrfs_alloc_path();
2347 if (!path)
2348 return -ENOMEM;
2349
Yan Zheng2b820322008-11-17 21:11:30 -05002350 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2351 key.offset = 0;
2352 key.type = BTRFS_DEV_ITEM_KEY;
2353
2354 while (1) {
2355 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2356 if (ret < 0)
2357 goto error;
2358
2359 leaf = path->nodes[0];
2360next_slot:
2361 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2362 ret = btrfs_next_leaf(root, path);
2363 if (ret > 0)
2364 break;
2365 if (ret < 0)
2366 goto error;
2367 leaf = path->nodes[0];
2368 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002369 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002370 continue;
2371 }
2372
2373 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2374 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2375 key.type != BTRFS_DEV_ITEM_KEY)
2376 break;
2377
2378 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2379 struct btrfs_dev_item);
2380 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002381 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002382 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002383 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08002384 BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002385 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002386 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002387
2388 if (device->fs_devices->seeding) {
2389 btrfs_set_device_generation(leaf, dev_item,
2390 device->generation);
2391 btrfs_mark_buffer_dirty(leaf);
2392 }
2393
2394 path->slots[0]++;
2395 goto next_slot;
2396 }
2397 ret = 0;
2398error:
2399 btrfs_free_path(path);
2400 return ret;
2401}
2402
David Sterbada353f62017-02-14 17:55:53 +01002403int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path)
Chris Mason788f20e2008-04-28 15:29:42 -04002404{
Jeff Mahoney5112feb2016-06-21 20:16:08 -04002405 struct btrfs_root *root = fs_info->dev_root;
Josef Bacikd5e20032011-08-04 14:52:27 +00002406 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002407 struct btrfs_trans_handle *trans;
2408 struct btrfs_device *device;
2409 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002410 struct list_head *devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002411 struct super_block *sb = fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002412 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002413 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002414 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002415 int ret = 0;
Anand Jain7132a262017-09-28 14:51:11 +08002416 bool unlocked = false;
Chris Mason788f20e2008-04-28 15:29:42 -04002417
David Howellsbc98a422017-07-17 08:45:34 +01002418 if (sb_rdonly(sb) && !fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002419 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002420
Li Zefana5d16332011-12-07 20:08:40 -05002421 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002422 fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002423 if (IS_ERR(bdev))
2424 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002425
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002426 if (fs_info->fs_devices->seeding) {
Yan Zheng2b820322008-11-17 21:11:30 -05002427 seeding_dev = 1;
2428 down_write(&sb->s_umount);
2429 mutex_lock(&uuid_mutex);
2430 }
2431
Chris Mason8c8bee12008-09-29 11:19:10 -04002432 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002433
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002434 devices = &fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002435
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002436 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002437 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002438 if (device->bdev == bdev) {
2439 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002440 mutex_unlock(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002441 &fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002442 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002443 }
2444 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002445 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002446
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002447 device = btrfs_alloc_device(fs_info, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002448 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002449 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002450 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002451 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002452 }
2453
David Sterba78f2c9e2016-02-11 14:25:38 +01002454 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002455 if (!name) {
Yan Zheng2b820322008-11-17 21:11:30 -05002456 ret = -ENOMEM;
David Sterba5c4cf6c2017-10-30 19:29:46 +01002457 goto error_free_device;
Chris Mason788f20e2008-04-28 15:29:42 -04002458 }
Josef Bacik606686e2012-06-04 14:03:51 -04002459 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002460
Yan, Zhenga22285a2010-05-16 10:48:46 -04002461 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002462 if (IS_ERR(trans)) {
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002463 ret = PTR_ERR(trans);
David Sterba5c4cf6c2017-10-30 19:29:46 +01002464 goto error_free_device;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002465 }
2466
Josef Bacikd5e20032011-08-04 14:52:27 +00002467 q = bdev_get_queue(bdev);
Anand Jainebbede42017-12-04 12:54:52 +08002468 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05002469 device->generation = trans->transid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002470 device->io_width = fs_info->sectorsize;
2471 device->io_align = fs_info->sectorsize;
2472 device->sector_size = fs_info->sectorsize;
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002473 device->total_bytes = round_down(i_size_read(bdev->bd_inode),
2474 fs_info->sectorsize);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002475 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002476 device->commit_total_bytes = device->total_bytes;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002477 device->fs_info = fs_info;
Chris Mason788f20e2008-04-28 15:29:42 -04002478 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +08002479 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +08002480 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002481 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002482 device->dev_stats_valid = 1;
David Sterba9f6d2512017-06-16 01:48:05 +02002483 set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE);
Zheng Yan325cd4b2008-09-05 16:43:54 -04002484
Yan Zheng2b820322008-11-17 21:11:30 -05002485 if (seeding_dev) {
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002486 sb->s_flags &= ~SB_RDONLY;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002487 ret = btrfs_prepare_sprout(fs_info);
Anand Jaind31c32f2017-09-28 14:51:10 +08002488 if (ret) {
2489 btrfs_abort_transaction(trans, ret);
2490 goto error_trans;
2491 }
Yan Zheng2b820322008-11-17 21:11:30 -05002492 }
2493
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002494 device->fs_devices = fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002495
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002496 mutex_lock(&fs_info->fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02002497 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002498 list_add_rcu(&device->dev_list, &fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002499 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002500 &fs_info->fs_devices->alloc_list);
2501 fs_info->fs_devices->num_devices++;
2502 fs_info->fs_devices->open_devices++;
2503 fs_info->fs_devices->rw_devices++;
2504 fs_info->fs_devices->total_devices++;
2505 fs_info->fs_devices->total_rw_bytes += device->total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05002506
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002507 atomic64_add(device->total_bytes, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04002508
Anand Jaine884f4f2017-04-04 18:40:19 +08002509 if (!blk_queue_nonrot(q))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002510 fs_info->fs_devices->rotating = 1;
Chris Masonc2898112009-06-10 09:51:32 -04002511
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002512 tmp = btrfs_super_total_bytes(fs_info->super_copy);
2513 btrfs_set_super_total_bytes(fs_info->super_copy,
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002514 round_down(tmp + device->total_bytes, fs_info->sectorsize));
Chris Mason788f20e2008-04-28 15:29:42 -04002515
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002516 tmp = btrfs_super_num_devices(fs_info->super_copy);
2517 btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002518
2519 /* add sysfs device entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002520 btrfs_sysfs_add_device_link(fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002521
Miao Xie2196d6e2014-09-03 21:35:41 +08002522 /*
2523 * we've got more storage, clear any full flags on the space
2524 * infos
2525 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002526 btrfs_clear_space_info_full(fs_info);
Miao Xie2196d6e2014-09-03 21:35:41 +08002527
David Sterba34441362016-10-04 19:34:27 +02002528 mutex_unlock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002529 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002530
Yan Zheng2b820322008-11-17 21:11:30 -05002531 if (seeding_dev) {
David Sterba34441362016-10-04 19:34:27 +02002532 mutex_lock(&fs_info->chunk_mutex);
David Sterbae4a4dce2017-02-10 19:49:01 +01002533 ret = init_first_rw_device(trans, fs_info);
David Sterba34441362016-10-04 19:34:27 +02002534 mutex_unlock(&fs_info->chunk_mutex);
David Sterba005d6422012-09-18 07:52:32 -06002535 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002536 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002537 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002538 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002539 }
2540
Anand Jainc74a0b02017-11-06 16:36:15 +08002541 ret = btrfs_add_dev_item(trans, fs_info, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002542 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002543 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002544 goto error_sysfs;
Miao Xie2196d6e2014-09-03 21:35:41 +08002545 }
2546
2547 if (seeding_dev) {
2548 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2549
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002550 ret = btrfs_finish_sprout(trans, fs_info);
David Sterba005d6422012-09-18 07:52:32 -06002551 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002552 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002553 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002554 }
Anand Jainb2373f22014-06-03 11:36:03 +08002555
2556 /* Sprouting would change fsid of the mounted root,
2557 * so rename the fsid on the sysfs
2558 */
2559 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002560 fs_info->fsid);
2561 if (kobject_rename(&fs_info->fs_devices->fsid_kobj, fsid_buf))
2562 btrfs_warn(fs_info,
2563 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002564 }
2565
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002566 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002567
2568 if (seeding_dev) {
2569 mutex_unlock(&uuid_mutex);
2570 up_write(&sb->s_umount);
Anand Jain7132a262017-09-28 14:51:11 +08002571 unlocked = true;
Yan Zheng2b820322008-11-17 21:11:30 -05002572
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002573 if (ret) /* transaction commit */
2574 return ret;
2575
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002576 ret = btrfs_relocate_sys_chunks(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002577 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002578 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002579 "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002580 trans = btrfs_attach_transaction(root);
2581 if (IS_ERR(trans)) {
2582 if (PTR_ERR(trans) == -ENOENT)
2583 return 0;
Anand Jain7132a262017-09-28 14:51:11 +08002584 ret = PTR_ERR(trans);
2585 trans = NULL;
2586 goto error_sysfs;
Miao Xie671415b2012-10-16 11:26:46 +00002587 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002588 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002589 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002590
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002591 /* Update ctime/mtime for libblkid */
2592 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002593 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002594
Anand Jaind31c32f2017-09-28 14:51:10 +08002595error_sysfs:
2596 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002597error_trans:
Anand Jain0af2c4b2017-09-28 14:51:09 +08002598 if (seeding_dev)
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002599 sb->s_flags |= SB_RDONLY;
Anand Jain7132a262017-09-28 14:51:11 +08002600 if (trans)
2601 btrfs_end_transaction(trans);
David Sterba5c4cf6c2017-10-30 19:29:46 +01002602error_free_device:
David Sterbaa425f9d2018-03-20 15:47:33 +01002603 btrfs_free_device(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002604error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002605 blkdev_put(bdev, FMODE_EXCL);
Anand Jain7132a262017-09-28 14:51:11 +08002606 if (seeding_dev && !unlocked) {
Yan Zheng2b820322008-11-17 21:11:30 -05002607 mutex_unlock(&uuid_mutex);
2608 up_write(&sb->s_umount);
2609 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002610 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002611}
2612
Chris Masond3977122009-01-05 21:25:51 -05002613static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2614 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002615{
2616 int ret;
2617 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002618 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002619 struct btrfs_dev_item *dev_item;
2620 struct extent_buffer *leaf;
2621 struct btrfs_key key;
2622
Chris Mason0b86a832008-03-24 15:01:56 -04002623 path = btrfs_alloc_path();
2624 if (!path)
2625 return -ENOMEM;
2626
2627 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2628 key.type = BTRFS_DEV_ITEM_KEY;
2629 key.offset = device->devid;
2630
2631 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2632 if (ret < 0)
2633 goto out;
2634
2635 if (ret > 0) {
2636 ret = -ENOENT;
2637 goto out;
2638 }
2639
2640 leaf = path->nodes[0];
2641 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2642
2643 btrfs_set_device_id(leaf, dev_item, device->devid);
2644 btrfs_set_device_type(leaf, dev_item, device->type);
2645 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2646 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2647 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002648 btrfs_set_device_total_bytes(leaf, dev_item,
2649 btrfs_device_get_disk_total_bytes(device));
2650 btrfs_set_device_bytes_used(leaf, dev_item,
2651 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002652 btrfs_mark_buffer_dirty(leaf);
2653
2654out:
2655 btrfs_free_path(path);
2656 return ret;
2657}
2658
Miao Xie2196d6e2014-09-03 21:35:41 +08002659int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002660 struct btrfs_device *device, u64 new_size)
2661{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002662 struct btrfs_fs_info *fs_info = device->fs_info;
2663 struct btrfs_super_block *super_copy = fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002664 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002665 u64 old_total;
2666 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002667
Anand Jainebbede42017-12-04 12:54:52 +08002668 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Yan Zheng2b820322008-11-17 21:11:30 -05002669 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002670
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002671 new_size = round_down(new_size, fs_info->sectorsize);
2672
David Sterba34441362016-10-04 19:34:27 +02002673 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002674 old_total = btrfs_super_total_bytes(super_copy);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03002675 diff = round_down(new_size - device->total_bytes, fs_info->sectorsize);
Miao Xie2196d6e2014-09-03 21:35:41 +08002676
Stefan Behrens63a212a2012-11-05 18:29:28 +01002677 if (new_size <= device->total_bytes ||
Anand Jain401e29c2017-12-04 12:54:55 +08002678 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002679 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002680 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002681 }
Yan Zheng2b820322008-11-17 21:11:30 -05002682
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002683 fs_devices = fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002684
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002685 btrfs_set_super_total_bytes(super_copy,
2686 round_down(old_total + diff, fs_info->sectorsize));
Yan Zheng2b820322008-11-17 21:11:30 -05002687 device->fs_devices->total_rw_bytes += diff;
2688
Miao Xie7cc8e582014-09-03 21:35:38 +08002689 btrfs_device_set_total_bytes(device, new_size);
2690 btrfs_device_set_disk_total_bytes(device, new_size);
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002691 btrfs_clear_space_info_full(device->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002692 if (list_empty(&device->resized_list))
2693 list_add_tail(&device->resized_list,
2694 &fs_devices->resized_devices);
David Sterba34441362016-10-04 19:34:27 +02002695 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason4184ea72009-03-10 12:39:20 -04002696
Chris Mason8f18cf12008-04-25 16:53:30 -04002697 return btrfs_update_device(trans, device);
2698}
2699
2700static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002701 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002702{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002703 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002704 int ret;
2705 struct btrfs_path *path;
2706 struct btrfs_key key;
2707
Chris Mason8f18cf12008-04-25 16:53:30 -04002708 path = btrfs_alloc_path();
2709 if (!path)
2710 return -ENOMEM;
2711
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002712 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Chris Mason8f18cf12008-04-25 16:53:30 -04002713 key.offset = chunk_offset;
2714 key.type = BTRFS_CHUNK_ITEM_KEY;
2715
2716 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002717 if (ret < 0)
2718 goto out;
2719 else if (ret > 0) { /* Logic error or corruption */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002720 btrfs_handle_fs_error(fs_info, -ENOENT,
2721 "Failed lookup while freeing chunk.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002722 ret = -ENOENT;
2723 goto out;
2724 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002725
2726 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002727 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002728 btrfs_handle_fs_error(fs_info, ret,
2729 "Failed to delete chunk item.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002730out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002731 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002732 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002733}
2734
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002735static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002736{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002737 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002738 struct btrfs_disk_key *disk_key;
2739 struct btrfs_chunk *chunk;
2740 u8 *ptr;
2741 int ret = 0;
2742 u32 num_stripes;
2743 u32 array_size;
2744 u32 len = 0;
2745 u32 cur;
2746 struct btrfs_key key;
2747
David Sterba34441362016-10-04 19:34:27 +02002748 mutex_lock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002749 array_size = btrfs_super_sys_array_size(super_copy);
2750
2751 ptr = super_copy->sys_chunk_array;
2752 cur = 0;
2753
2754 while (cur < array_size) {
2755 disk_key = (struct btrfs_disk_key *)ptr;
2756 btrfs_disk_key_to_cpu(&key, disk_key);
2757
2758 len = sizeof(*disk_key);
2759
2760 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2761 chunk = (struct btrfs_chunk *)(ptr + len);
2762 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2763 len += btrfs_chunk_item_size(num_stripes);
2764 } else {
2765 ret = -EIO;
2766 break;
2767 }
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002768 if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID &&
Chris Mason8f18cf12008-04-25 16:53:30 -04002769 key.offset == chunk_offset) {
2770 memmove(ptr, ptr + len, array_size - (cur + len));
2771 array_size -= len;
2772 btrfs_set_super_sys_array_size(super_copy, array_size);
2773 } else {
2774 ptr += len;
2775 cur += len;
2776 }
2777 }
David Sterba34441362016-10-04 19:34:27 +02002778 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002779 return ret;
2780}
2781
Liu Bo592d92e2017-03-14 13:33:55 -07002782static struct extent_map *get_chunk_map(struct btrfs_fs_info *fs_info,
2783 u64 logical, u64 length)
2784{
2785 struct extent_map_tree *em_tree;
2786 struct extent_map *em;
2787
2788 em_tree = &fs_info->mapping_tree.map_tree;
2789 read_lock(&em_tree->lock);
2790 em = lookup_extent_mapping(em_tree, logical, length);
2791 read_unlock(&em_tree->lock);
2792
2793 if (!em) {
2794 btrfs_crit(fs_info, "unable to find logical %llu length %llu",
2795 logical, length);
2796 return ERR_PTR(-EINVAL);
2797 }
2798
2799 if (em->start > logical || em->start + em->len < logical) {
2800 btrfs_crit(fs_info,
2801 "found a bad mapping, wanted %llu-%llu, found %llu-%llu",
2802 logical, length, em->start, em->start + em->len);
2803 free_extent_map(em);
2804 return ERR_PTR(-EINVAL);
2805 }
2806
2807 /* callers are responsible for dropping em's ref. */
2808 return em;
2809}
2810
Josef Bacik47ab2a62014-09-18 11:20:02 -04002811int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002812 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Josef Bacik47ab2a62014-09-18 11:20:02 -04002813{
Josef Bacik47ab2a62014-09-18 11:20:02 -04002814 struct extent_map *em;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002815 struct map_lookup *map;
2816 u64 dev_extent_len = 0;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002817 int i, ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002818 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002819
Liu Bo592d92e2017-03-14 13:33:55 -07002820 em = get_chunk_map(fs_info, chunk_offset, 1);
2821 if (IS_ERR(em)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -04002822 /*
2823 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002824 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04002825 * do anything we still error out.
2826 */
2827 ASSERT(0);
Liu Bo592d92e2017-03-14 13:33:55 -07002828 return PTR_ERR(em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002829 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002830 map = em->map_lookup;
David Sterba34441362016-10-04 19:34:27 +02002831 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002832 check_system_chunk(trans, fs_info, map->type);
David Sterba34441362016-10-04 19:34:27 +02002833 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002834
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002835 /*
2836 * Take the device list mutex to prevent races with the final phase of
2837 * a device replace operation that replaces the device object associated
2838 * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()).
2839 */
2840 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002841 for (i = 0; i < map->num_stripes; i++) {
2842 struct btrfs_device *device = map->stripes[i].dev;
2843 ret = btrfs_free_dev_extent(trans, device,
2844 map->stripes[i].physical,
2845 &dev_extent_len);
2846 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002847 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002848 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002849 goto out;
2850 }
2851
2852 if (device->bytes_used > 0) {
David Sterba34441362016-10-04 19:34:27 +02002853 mutex_lock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002854 btrfs_device_set_bytes_used(device,
2855 device->bytes_used - dev_extent_len);
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002856 atomic64_add(dev_extent_len, &fs_info->free_chunk_space);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002857 btrfs_clear_space_info_full(fs_info);
David Sterba34441362016-10-04 19:34:27 +02002858 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002859 }
2860
2861 if (map->stripes[i].dev) {
2862 ret = btrfs_update_device(trans, map->stripes[i].dev);
2863 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002864 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002865 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002866 goto out;
2867 }
2868 }
2869 }
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002870 mutex_unlock(&fs_devices->device_list_mutex);
2871
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002872 ret = btrfs_free_chunk(trans, fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002873 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002874 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002875 goto out;
2876 }
2877
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002878 trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002879
2880 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002881 ret = btrfs_del_sys_chunk(fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002882 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002883 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002884 goto out;
2885 }
2886 }
2887
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002888 ret = btrfs_remove_block_group(trans, fs_info, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002889 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002890 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002891 goto out;
2892 }
2893
Josef Bacik47ab2a62014-09-18 11:20:02 -04002894out:
2895 /* once for us */
2896 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002897 return ret;
2898}
2899
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002900static int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002901{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002902 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason19c4d2f2016-10-10 13:43:31 -07002903 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002904 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002905
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002906 /*
2907 * Prevent races with automatic removal of unused block groups.
2908 * After we relocate and before we remove the chunk with offset
2909 * chunk_offset, automatic removal of the block group can kick in,
2910 * resulting in a failure when calling btrfs_remove_chunk() below.
2911 *
2912 * Make sure to acquire this mutex before doing a tree search (dev
2913 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2914 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2915 * we release the path used to search the chunk/dev tree and before
2916 * the current task acquires this mutex and calls us.
2917 */
David Sterbaa32bf9a2018-03-16 02:21:22 +01002918 lockdep_assert_held(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002919
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002920 ret = btrfs_can_relocate(fs_info, chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002921 if (ret)
2922 return -ENOSPC;
2923
Chris Mason8f18cf12008-04-25 16:53:30 -04002924 /* step one, relocate all the extents inside this chunk */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002925 btrfs_scrub_pause(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002926 ret = btrfs_relocate_block_group(fs_info, chunk_offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002927 btrfs_scrub_continue(fs_info);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002928 if (ret)
2929 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002930
Jeff Mahoney75cb3792018-03-20 15:25:26 -04002931 /*
2932 * We add the kobjects here (and after forcing data chunk creation)
2933 * since relocation is the only place we'll create chunks of a new
2934 * type at runtime. The only place where we'll remove the last
2935 * chunk of a type is the call immediately below this one. Even
2936 * so, we're protected against races with the cleaner thread since
2937 * we're covered by the delete_unused_bgs_mutex.
2938 */
2939 btrfs_add_raid_kobjects(fs_info);
2940
Chris Mason19c4d2f2016-10-10 13:43:31 -07002941 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2942 chunk_offset);
2943 if (IS_ERR(trans)) {
2944 ret = PTR_ERR(trans);
2945 btrfs_handle_fs_error(root->fs_info, ret, NULL);
2946 return ret;
2947 }
Naohiro Aota5d8eb6f2016-09-02 16:46:32 +09002948
Chris Mason19c4d2f2016-10-10 13:43:31 -07002949 /*
2950 * step two, delete the device extents and the
2951 * chunk tree entries
2952 */
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002953 ret = btrfs_remove_chunk(trans, fs_info, chunk_offset);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002954 btrfs_end_transaction(trans);
Chris Mason19c4d2f2016-10-10 13:43:31 -07002955 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002956}
2957
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002958static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002959{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002960 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002961 struct btrfs_path *path;
2962 struct extent_buffer *leaf;
2963 struct btrfs_chunk *chunk;
2964 struct btrfs_key key;
2965 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05002966 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002967 bool retried = false;
2968 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002969 int ret;
2970
2971 path = btrfs_alloc_path();
2972 if (!path)
2973 return -ENOMEM;
2974
Josef Bacikba1bf482009-09-11 16:11:19 -04002975again:
Yan Zheng2b820322008-11-17 21:11:30 -05002976 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2977 key.offset = (u64)-1;
2978 key.type = BTRFS_CHUNK_ITEM_KEY;
2979
2980 while (1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002981 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002982 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002983 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002984 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002985 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002986 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002987 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002988
2989 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2990 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002991 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002992 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002993 if (ret < 0)
2994 goto error;
2995 if (ret > 0)
2996 break;
2997
2998 leaf = path->nodes[0];
2999 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3000
3001 chunk = btrfs_item_ptr(leaf, path->slots[0],
3002 struct btrfs_chunk);
3003 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02003004 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05003005
3006 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003007 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003008 if (ret == -ENOSPC)
3009 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05303010 else
3011 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05003012 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003013 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003014
3015 if (found_key.offset == 0)
3016 break;
3017 key.offset = found_key.offset - 1;
3018 }
3019 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04003020 if (failed && !retried) {
3021 failed = 0;
3022 retried = true;
3023 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303024 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04003025 ret = -ENOSPC;
3026 }
Yan Zheng2b820322008-11-17 21:11:30 -05003027error:
3028 btrfs_free_path(path);
3029 return ret;
3030}
3031
Liu Boa6f93c72017-11-15 16:28:11 -07003032/*
3033 * return 1 : allocate a data chunk successfully,
3034 * return <0: errors during allocating a data chunk,
3035 * return 0 : no need to allocate a data chunk.
3036 */
3037static int btrfs_may_alloc_data_chunk(struct btrfs_fs_info *fs_info,
3038 u64 chunk_offset)
3039{
3040 struct btrfs_block_group_cache *cache;
3041 u64 bytes_used;
3042 u64 chunk_type;
3043
3044 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3045 ASSERT(cache);
3046 chunk_type = cache->flags;
3047 btrfs_put_block_group(cache);
3048
3049 if (chunk_type & BTRFS_BLOCK_GROUP_DATA) {
3050 spin_lock(&fs_info->data_sinfo->lock);
3051 bytes_used = fs_info->data_sinfo->bytes_used;
3052 spin_unlock(&fs_info->data_sinfo->lock);
3053
3054 if (!bytes_used) {
3055 struct btrfs_trans_handle *trans;
3056 int ret;
3057
3058 trans = btrfs_join_transaction(fs_info->tree_root);
3059 if (IS_ERR(trans))
3060 return PTR_ERR(trans);
3061
3062 ret = btrfs_force_chunk_alloc(trans, fs_info,
3063 BTRFS_BLOCK_GROUP_DATA);
3064 btrfs_end_transaction(trans);
3065 if (ret < 0)
3066 return ret;
3067
Jeff Mahoney75cb3792018-03-20 15:25:26 -04003068 btrfs_add_raid_kobjects(fs_info);
3069
Liu Boa6f93c72017-11-15 16:28:11 -07003070 return 1;
3071 }
3072 }
3073 return 0;
3074}
3075
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003076static int insert_balance_item(struct btrfs_fs_info *fs_info,
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003077 struct btrfs_balance_control *bctl)
3078{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003079 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003080 struct btrfs_trans_handle *trans;
3081 struct btrfs_balance_item *item;
3082 struct btrfs_disk_balance_args disk_bargs;
3083 struct btrfs_path *path;
3084 struct extent_buffer *leaf;
3085 struct btrfs_key key;
3086 int ret, err;
3087
3088 path = btrfs_alloc_path();
3089 if (!path)
3090 return -ENOMEM;
3091
3092 trans = btrfs_start_transaction(root, 0);
3093 if (IS_ERR(trans)) {
3094 btrfs_free_path(path);
3095 return PTR_ERR(trans);
3096 }
3097
3098 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003099 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003100 key.offset = 0;
3101
3102 ret = btrfs_insert_empty_item(trans, root, path, &key,
3103 sizeof(*item));
3104 if (ret)
3105 goto out;
3106
3107 leaf = path->nodes[0];
3108 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3109
David Sterbab159fa22016-11-08 18:09:03 +01003110 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003111
3112 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
3113 btrfs_set_balance_data(leaf, item, &disk_bargs);
3114 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
3115 btrfs_set_balance_meta(leaf, item, &disk_bargs);
3116 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
3117 btrfs_set_balance_sys(leaf, item, &disk_bargs);
3118
3119 btrfs_set_balance_flags(leaf, item, bctl->flags);
3120
3121 btrfs_mark_buffer_dirty(leaf);
3122out:
3123 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003124 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003125 if (err && !ret)
3126 ret = err;
3127 return ret;
3128}
3129
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003130static int del_balance_item(struct btrfs_fs_info *fs_info)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003131{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003132 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003133 struct btrfs_trans_handle *trans;
3134 struct btrfs_path *path;
3135 struct btrfs_key key;
3136 int ret, err;
3137
3138 path = btrfs_alloc_path();
3139 if (!path)
3140 return -ENOMEM;
3141
3142 trans = btrfs_start_transaction(root, 0);
3143 if (IS_ERR(trans)) {
3144 btrfs_free_path(path);
3145 return PTR_ERR(trans);
3146 }
3147
3148 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003149 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003150 key.offset = 0;
3151
3152 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3153 if (ret < 0)
3154 goto out;
3155 if (ret > 0) {
3156 ret = -ENOENT;
3157 goto out;
3158 }
3159
3160 ret = btrfs_del_item(trans, root, path);
3161out:
3162 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003163 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003164 if (err && !ret)
3165 ret = err;
3166 return ret;
3167}
3168
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003169/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003170 * This is a heuristic used to reduce the number of chunks balanced on
3171 * resume after balance was interrupted.
3172 */
3173static void update_balance_args(struct btrfs_balance_control *bctl)
3174{
3175 /*
3176 * Turn on soft mode for chunk types that were being converted.
3177 */
3178 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3179 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3180 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3181 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3182 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3183 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3184
3185 /*
3186 * Turn on usage filter if is not already used. The idea is
3187 * that chunks that we have already balanced should be
3188 * reasonably full. Don't do it for chunks that are being
3189 * converted - that will keep us from relocating unconverted
3190 * (albeit full) chunks.
3191 */
3192 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003193 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003194 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3195 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3196 bctl->data.usage = 90;
3197 }
3198 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003199 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003200 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3201 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3202 bctl->sys.usage = 90;
3203 }
3204 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003205 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003206 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3207 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3208 bctl->meta.usage = 90;
3209 }
3210}
3211
3212/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003213 * Should be called with both balance and volume mutexes held to
3214 * serialize other volume operations (add_dev/rm_dev/resize) with
3215 * restriper. Same goes for unset_balance_control.
3216 */
3217static void set_balance_control(struct btrfs_balance_control *bctl)
3218{
3219 struct btrfs_fs_info *fs_info = bctl->fs_info;
3220
3221 BUG_ON(fs_info->balance_ctl);
3222
3223 spin_lock(&fs_info->balance_lock);
3224 fs_info->balance_ctl = bctl;
3225 spin_unlock(&fs_info->balance_lock);
3226}
3227
3228static void unset_balance_control(struct btrfs_fs_info *fs_info)
3229{
3230 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3231
3232 BUG_ON(!fs_info->balance_ctl);
3233
3234 spin_lock(&fs_info->balance_lock);
3235 fs_info->balance_ctl = NULL;
3236 spin_unlock(&fs_info->balance_lock);
3237
3238 kfree(bctl);
3239}
3240
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003241/*
3242 * Balance filters. Return 1 if chunk should be filtered out
3243 * (should not be balanced).
3244 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003245static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003246 struct btrfs_balance_args *bargs)
3247{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003248 chunk_type = chunk_to_extended(chunk_type) &
3249 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003250
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003251 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003252 return 0;
3253
3254 return 1;
3255}
3256
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003257static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003258 struct btrfs_balance_args *bargs)
3259{
3260 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003261 u64 chunk_used;
3262 u64 user_thresh_min;
3263 u64 user_thresh_max;
3264 int ret = 1;
3265
3266 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3267 chunk_used = btrfs_block_group_used(&cache->item);
3268
3269 if (bargs->usage_min == 0)
3270 user_thresh_min = 0;
3271 else
3272 user_thresh_min = div_factor_fine(cache->key.offset,
3273 bargs->usage_min);
3274
3275 if (bargs->usage_max == 0)
3276 user_thresh_max = 1;
3277 else if (bargs->usage_max > 100)
3278 user_thresh_max = cache->key.offset;
3279 else
3280 user_thresh_max = div_factor_fine(cache->key.offset,
3281 bargs->usage_max);
3282
3283 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3284 ret = 0;
3285
3286 btrfs_put_block_group(cache);
3287 return ret;
3288}
3289
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003290static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003291 u64 chunk_offset, struct btrfs_balance_args *bargs)
3292{
3293 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003294 u64 chunk_used, user_thresh;
3295 int ret = 1;
3296
3297 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3298 chunk_used = btrfs_block_group_used(&cache->item);
3299
David Sterbabc309462015-10-20 18:22:13 +02003300 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003301 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003302 else if (bargs->usage > 100)
3303 user_thresh = cache->key.offset;
3304 else
3305 user_thresh = div_factor_fine(cache->key.offset,
3306 bargs->usage);
3307
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003308 if (chunk_used < user_thresh)
3309 ret = 0;
3310
3311 btrfs_put_block_group(cache);
3312 return ret;
3313}
3314
Ilya Dryomov409d4042012-01-16 22:04:47 +02003315static int chunk_devid_filter(struct extent_buffer *leaf,
3316 struct btrfs_chunk *chunk,
3317 struct btrfs_balance_args *bargs)
3318{
3319 struct btrfs_stripe *stripe;
3320 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3321 int i;
3322
3323 for (i = 0; i < num_stripes; i++) {
3324 stripe = btrfs_stripe_nr(chunk, i);
3325 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3326 return 0;
3327 }
3328
3329 return 1;
3330}
3331
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003332/* [pstart, pend) */
3333static int chunk_drange_filter(struct extent_buffer *leaf,
3334 struct btrfs_chunk *chunk,
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003335 struct btrfs_balance_args *bargs)
3336{
3337 struct btrfs_stripe *stripe;
3338 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3339 u64 stripe_offset;
3340 u64 stripe_length;
3341 int factor;
3342 int i;
3343
3344 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3345 return 0;
3346
3347 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003348 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3349 factor = num_stripes / 2;
3350 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3351 factor = num_stripes - 1;
3352 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3353 factor = num_stripes - 2;
3354 } else {
3355 factor = num_stripes;
3356 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003357
3358 for (i = 0; i < num_stripes; i++) {
3359 stripe = btrfs_stripe_nr(chunk, i);
3360 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3361 continue;
3362
3363 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3364 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003365 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003366
3367 if (stripe_offset < bargs->pend &&
3368 stripe_offset + stripe_length > bargs->pstart)
3369 return 0;
3370 }
3371
3372 return 1;
3373}
3374
Ilya Dryomovea671762012-01-16 22:04:48 +02003375/* [vstart, vend) */
3376static int chunk_vrange_filter(struct extent_buffer *leaf,
3377 struct btrfs_chunk *chunk,
3378 u64 chunk_offset,
3379 struct btrfs_balance_args *bargs)
3380{
3381 if (chunk_offset < bargs->vend &&
3382 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3383 /* at least part of the chunk is inside this vrange */
3384 return 0;
3385
3386 return 1;
3387}
3388
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003389static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3390 struct btrfs_chunk *chunk,
3391 struct btrfs_balance_args *bargs)
3392{
3393 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3394
3395 if (bargs->stripes_min <= num_stripes
3396 && num_stripes <= bargs->stripes_max)
3397 return 0;
3398
3399 return 1;
3400}
3401
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003402static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003403 struct btrfs_balance_args *bargs)
3404{
3405 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3406 return 0;
3407
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003408 chunk_type = chunk_to_extended(chunk_type) &
3409 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003410
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003411 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003412 return 1;
3413
3414 return 0;
3415}
3416
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003417static int should_balance_chunk(struct btrfs_fs_info *fs_info,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003418 struct extent_buffer *leaf,
3419 struct btrfs_chunk *chunk, u64 chunk_offset)
3420{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003421 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003422 struct btrfs_balance_args *bargs = NULL;
3423 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3424
3425 /* type filter */
3426 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3427 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3428 return 0;
3429 }
3430
3431 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3432 bargs = &bctl->data;
3433 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3434 bargs = &bctl->sys;
3435 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3436 bargs = &bctl->meta;
3437
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003438 /* profiles filter */
3439 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3440 chunk_profiles_filter(chunk_type, bargs)) {
3441 return 0;
3442 }
3443
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003444 /* usage filter */
3445 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003446 chunk_usage_filter(fs_info, chunk_offset, bargs)) {
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003447 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003448 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003449 chunk_usage_range_filter(fs_info, chunk_offset, bargs)) {
David Sterbabc309462015-10-20 18:22:13 +02003450 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003451 }
3452
Ilya Dryomov409d4042012-01-16 22:04:47 +02003453 /* devid filter */
3454 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3455 chunk_devid_filter(leaf, chunk, bargs)) {
3456 return 0;
3457 }
3458
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003459 /* drange filter, makes sense only with devid filter */
3460 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03003461 chunk_drange_filter(leaf, chunk, bargs)) {
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003462 return 0;
3463 }
3464
Ilya Dryomovea671762012-01-16 22:04:48 +02003465 /* vrange filter */
3466 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3467 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3468 return 0;
3469 }
3470
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003471 /* stripes filter */
3472 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3473 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3474 return 0;
3475 }
3476
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003477 /* soft profile changing mode */
3478 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3479 chunk_soft_convert_filter(chunk_type, bargs)) {
3480 return 0;
3481 }
3482
David Sterba7d824b62014-05-07 17:37:51 +02003483 /*
3484 * limited by count, must be the last filter
3485 */
3486 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3487 if (bargs->limit == 0)
3488 return 0;
3489 else
3490 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003491 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3492 /*
3493 * Same logic as the 'limit' filter; the minimum cannot be
Nicholas D Steeves01327612016-05-19 21:18:45 -04003494 * determined here because we do not have the global information
David Sterba12907fc2015-10-10 17:16:50 +02003495 * about the count of all chunks that satisfy the filters.
3496 */
3497 if (bargs->limit_max == 0)
3498 return 0;
3499 else
3500 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003501 }
3502
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003503 return 1;
3504}
3505
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003506static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003507{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003508 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003509 struct btrfs_root *chunk_root = fs_info->chunk_root;
3510 struct btrfs_root *dev_root = fs_info->dev_root;
3511 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003512 struct btrfs_device *device;
3513 u64 old_size;
3514 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003515 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003516 struct btrfs_chunk *chunk;
Liu Bo5a488b92016-07-12 11:24:21 -07003517 struct btrfs_path *path = NULL;
Chris Masonec44a352008-04-28 15:29:52 -04003518 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003519 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003520 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003521 struct extent_buffer *leaf;
3522 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003523 int ret;
3524 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003525 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003526 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003527 u64 limit_data = bctl->data.limit;
3528 u64 limit_meta = bctl->meta.limit;
3529 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003530 u32 count_data = 0;
3531 u32 count_meta = 0;
3532 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003533 int chunk_reserved = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003534
Chris Masonec44a352008-04-28 15:29:52 -04003535 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003536 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003537 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003538 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003539 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003540 size_to_free = min_t(u64, size_to_free, SZ_1M);
Anand Jainebbede42017-12-04 12:54:52 +08003541 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003542 btrfs_device_get_total_bytes(device) -
3543 btrfs_device_get_bytes_used(device) > size_to_free ||
Anand Jain401e29c2017-12-04 12:54:55 +08003544 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Chris Masonec44a352008-04-28 15:29:52 -04003545 continue;
3546
3547 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003548 if (ret == -ENOSPC)
3549 break;
Liu Bo5a488b92016-07-12 11:24:21 -07003550 if (ret) {
3551 /* btrfs_shrink_device never returns ret > 0 */
3552 WARN_ON(ret > 0);
3553 goto error;
3554 }
Chris Masonec44a352008-04-28 15:29:52 -04003555
Yan, Zhenga22285a2010-05-16 10:48:46 -04003556 trans = btrfs_start_transaction(dev_root, 0);
Liu Bo5a488b92016-07-12 11:24:21 -07003557 if (IS_ERR(trans)) {
3558 ret = PTR_ERR(trans);
3559 btrfs_info_in_rcu(fs_info,
3560 "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu",
3561 rcu_str_deref(device->name), ret,
3562 old_size, old_size - size_to_free);
3563 goto error;
3564 }
Chris Masonec44a352008-04-28 15:29:52 -04003565
3566 ret = btrfs_grow_device(trans, device, old_size);
Liu Bo5a488b92016-07-12 11:24:21 -07003567 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003568 btrfs_end_transaction(trans);
Liu Bo5a488b92016-07-12 11:24:21 -07003569 /* btrfs_grow_device never returns ret > 0 */
3570 WARN_ON(ret > 0);
3571 btrfs_info_in_rcu(fs_info,
3572 "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu",
3573 rcu_str_deref(device->name), ret,
3574 old_size, old_size - size_to_free);
3575 goto error;
3576 }
Chris Masonec44a352008-04-28 15:29:52 -04003577
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003578 btrfs_end_transaction(trans);
Chris Masonec44a352008-04-28 15:29:52 -04003579 }
3580
3581 /* step two, relocate all the chunks */
3582 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003583 if (!path) {
3584 ret = -ENOMEM;
3585 goto error;
3586 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003587
3588 /* zero out stat counters */
3589 spin_lock(&fs_info->balance_lock);
3590 memset(&bctl->stat, 0, sizeof(bctl->stat));
3591 spin_unlock(&fs_info->balance_lock);
3592again:
David Sterba7d824b62014-05-07 17:37:51 +02003593 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003594 /*
3595 * The single value limit and min/max limits use the same bytes
3596 * in the
3597 */
David Sterba7d824b62014-05-07 17:37:51 +02003598 bctl->data.limit = limit_data;
3599 bctl->meta.limit = limit_meta;
3600 bctl->sys.limit = limit_sys;
3601 }
Chris Masonec44a352008-04-28 15:29:52 -04003602 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3603 key.offset = (u64)-1;
3604 key.type = BTRFS_CHUNK_ITEM_KEY;
3605
Chris Masond3977122009-01-05 21:25:51 -05003606 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003607 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003608 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003609 ret = -ECANCELED;
3610 goto error;
3611 }
3612
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003613 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003614 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003615 if (ret < 0) {
3616 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003617 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003618 }
Chris Masonec44a352008-04-28 15:29:52 -04003619
3620 /*
3621 * this shouldn't happen, it means the last relocate
3622 * failed
3623 */
3624 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003625 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003626
3627 ret = btrfs_previous_item(chunk_root, path, 0,
3628 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003629 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003630 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003631 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003632 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003633 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003634
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003635 leaf = path->nodes[0];
3636 slot = path->slots[0];
3637 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3638
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003639 if (found_key.objectid != key.objectid) {
3640 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003641 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003642 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003643
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003644 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003645 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003646
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003647 if (!counting) {
3648 spin_lock(&fs_info->balance_lock);
3649 bctl->stat.considered++;
3650 spin_unlock(&fs_info->balance_lock);
3651 }
3652
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003653 ret = should_balance_chunk(fs_info, leaf, chunk,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003654 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003655
David Sterbab3b4aa72011-04-21 01:20:15 +02003656 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003657 if (!ret) {
3658 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003659 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003660 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003661
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003662 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003663 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003664 spin_lock(&fs_info->balance_lock);
3665 bctl->stat.expected++;
3666 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003667
3668 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3669 count_data++;
3670 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3671 count_sys++;
3672 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3673 count_meta++;
3674
3675 goto loop;
3676 }
3677
3678 /*
3679 * Apply limit_min filter, no need to check if the LIMITS
3680 * filter is used, limit_min is 0 by default
3681 */
3682 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3683 count_data < bctl->data.limit_min)
3684 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3685 count_meta < bctl->meta.limit_min)
3686 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3687 count_sys < bctl->sys.limit_min)) {
3688 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003689 goto loop;
3690 }
3691
Liu Boa6f93c72017-11-15 16:28:11 -07003692 if (!chunk_reserved) {
3693 /*
3694 * We may be relocating the only data chunk we have,
3695 * which could potentially end up with losing data's
3696 * raid profile, so lets allocate an empty one in
3697 * advance.
3698 */
3699 ret = btrfs_may_alloc_data_chunk(fs_info,
3700 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003701 if (ret < 0) {
3702 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3703 goto error;
Liu Boa6f93c72017-11-15 16:28:11 -07003704 } else if (ret == 1) {
3705 chunk_reserved = 1;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003706 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003707 }
3708
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003709 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003710 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003711 if (ret && ret != -ENOSPC)
3712 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003713 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003714 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003715 } else {
3716 spin_lock(&fs_info->balance_lock);
3717 bctl->stat.completed++;
3718 spin_unlock(&fs_info->balance_lock);
3719 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003720loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003721 if (found_key.offset == 0)
3722 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003723 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003724 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003725
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003726 if (counting) {
3727 btrfs_release_path(path);
3728 counting = false;
3729 goto again;
3730 }
Chris Masonec44a352008-04-28 15:29:52 -04003731error:
3732 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003733 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003734 btrfs_info(fs_info, "%d enospc errors during balance",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003735 enospc_errors);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003736 if (!ret)
3737 ret = -ENOSPC;
3738 }
3739
Chris Masonec44a352008-04-28 15:29:52 -04003740 return ret;
3741}
3742
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003743/**
3744 * alloc_profile_is_valid - see if a given profile is valid and reduced
3745 * @flags: profile to validate
3746 * @extended: if true @flags is treated as an extended profile
3747 */
3748static int alloc_profile_is_valid(u64 flags, int extended)
3749{
3750 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3751 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3752
3753 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3754
3755 /* 1) check that all other bits are zeroed */
3756 if (flags & ~mask)
3757 return 0;
3758
3759 /* 2) see if profile is reduced */
3760 if (flags == 0)
3761 return !extended; /* "0" is valid for usual profiles */
3762
3763 /* true if exactly one bit set */
3764 return (flags & (flags - 1)) == 0;
3765}
3766
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003767static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3768{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003769 /* cancel requested || normal exit path */
3770 return atomic_read(&fs_info->balance_cancel_req) ||
3771 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3772 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003773}
3774
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003775static void __cancel_balance(struct btrfs_fs_info *fs_info)
3776{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003777 int ret;
3778
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003779 unset_balance_control(fs_info);
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003780 ret = del_balance_item(fs_info);
Liu Bo0f788c52013-03-04 16:25:40 +00003781 if (ret)
Anand Jain34d97002016-03-16 16:43:06 +08003782 btrfs_handle_fs_error(fs_info, ret, NULL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003783}
3784
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003785/* Non-zero return value signifies invalidity */
3786static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3787 u64 allowed)
3788{
3789 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3790 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3791 (bctl_arg->target & ~allowed)));
3792}
3793
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003794/*
3795 * Should be called with both balance and volume mutexes held
3796 */
3797int btrfs_balance(struct btrfs_balance_control *bctl,
3798 struct btrfs_ioctl_balance_args *bargs)
3799{
3800 struct btrfs_fs_info *fs_info = bctl->fs_info;
Adam Borowski14506122017-03-07 23:34:44 +01003801 u64 meta_target, data_target;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003802 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003803 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003804 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003805 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003806 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003807
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003808 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003809 atomic_read(&fs_info->balance_pause_req) ||
3810 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003811 ret = -EINVAL;
3812 goto out;
3813 }
3814
Ilya Dryomove4837f82012-03-27 17:09:17 +03003815 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3816 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3817 mixed = 1;
3818
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003819 /*
3820 * In case of mixed groups both data and meta should be picked,
3821 * and identical options should be given for both of them.
3822 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003823 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3824 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003825 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3826 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3827 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003828 btrfs_err(fs_info,
3829 "with mixed groups data and metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003830 ret = -EINVAL;
3831 goto out;
3832 }
3833 }
3834
Stefan Behrens8dabb742012-11-06 13:15:27 +01003835 num_devices = fs_info->fs_devices->num_devices;
David Sterba7e79cb82018-03-24 02:11:38 +01003836 btrfs_dev_replace_read_lock(&fs_info->dev_replace);
Stefan Behrens8dabb742012-11-06 13:15:27 +01003837 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3838 BUG_ON(num_devices < 1);
3839 num_devices--;
3840 }
David Sterba7e79cb82018-03-24 02:11:38 +01003841 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
Austin S. Hemmelgarn88be1592016-03-23 14:22:59 -04003842 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP;
3843 if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003844 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003845 if (num_devices > 2)
3846 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3847 if (num_devices > 3)
3848 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3849 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003850 if (validate_convert_profile(&bctl->data, allowed)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003851 btrfs_err(fs_info,
3852 "unable to start balance with target data profile %llu",
3853 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003854 ret = -EINVAL;
3855 goto out;
3856 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003857 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003858 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003859 "unable to start balance with target metadata profile %llu",
3860 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003861 ret = -EINVAL;
3862 goto out;
3863 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003864 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003865 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003866 "unable to start balance with target system profile %llu",
3867 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003868 ret = -EINVAL;
3869 goto out;
3870 }
3871
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003872 /* allow to reduce meta or sys integrity only if force set */
3873 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003874 BTRFS_BLOCK_GROUP_RAID10 |
3875 BTRFS_BLOCK_GROUP_RAID5 |
3876 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003877 do {
3878 seq = read_seqbegin(&fs_info->profiles_lock);
3879
3880 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3881 (fs_info->avail_system_alloc_bits & allowed) &&
3882 !(bctl->sys.target & allowed)) ||
3883 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3884 (fs_info->avail_metadata_alloc_bits & allowed) &&
3885 !(bctl->meta.target & allowed))) {
3886 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003887 btrfs_info(fs_info,
3888 "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003889 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003890 btrfs_err(fs_info,
3891 "balance will reduce metadata integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003892 ret = -EINVAL;
3893 goto out;
3894 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003895 }
Miao Xiede98ced2013-01-29 10:13:12 +00003896 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003897
Adam Borowski14506122017-03-07 23:34:44 +01003898 /* if we're not converting, the target field is uninitialized */
3899 meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3900 bctl->meta.target : fs_info->avail_metadata_alloc_bits;
3901 data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3902 bctl->data.target : fs_info->avail_data_alloc_bits;
3903 if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) <
3904 btrfs_get_num_tolerated_disk_barrier_failures(data_target)) {
Sam Tygieree592d02016-01-06 08:46:12 +00003905 btrfs_warn(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003906 "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
Adam Borowski14506122017-03-07 23:34:44 +01003907 meta_target, data_target);
Sam Tygieree592d02016-01-06 08:46:12 +00003908 }
3909
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003910 ret = insert_balance_item(fs_info, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003911 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003912 goto out;
3913
Ilya Dryomov59641012012-01-16 22:04:48 +02003914 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3915 BUG_ON(ret == -EEXIST);
3916 set_balance_control(bctl);
3917 } else {
3918 BUG_ON(ret != -EEXIST);
3919 spin_lock(&fs_info->balance_lock);
3920 update_balance_args(bctl);
3921 spin_unlock(&fs_info->balance_lock);
3922 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003923
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003924 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003925 mutex_unlock(&fs_info->balance_mutex);
3926
3927 ret = __btrfs_balance(fs_info);
3928
3929 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003930 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003931
3932 if (bargs) {
3933 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003934 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003935 }
3936
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003937 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3938 balance_need_close(fs_info)) {
3939 __cancel_balance(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01003940 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003941 }
3942
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003943 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003944
3945 return ret;
3946out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003947 if (bctl->flags & BTRFS_BALANCE_RESUME)
3948 __cancel_balance(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01003949 else
Ilya Dryomov59641012012-01-16 22:04:48 +02003950 kfree(bctl);
David Sterbaa17c95d2018-03-20 17:28:05 +01003951 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
3952
Ilya Dryomov59641012012-01-16 22:04:48 +02003953 return ret;
3954}
3955
3956static int balance_kthread(void *data)
3957{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003958 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003959 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003960
3961 mutex_lock(&fs_info->volume_mutex);
3962 mutex_lock(&fs_info->balance_mutex);
3963
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003964 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003965 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003966 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003967 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003968
3969 mutex_unlock(&fs_info->balance_mutex);
3970 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003971
Ilya Dryomov59641012012-01-16 22:04:48 +02003972 return ret;
3973}
3974
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003975int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3976{
3977 struct task_struct *tsk;
3978
3979 spin_lock(&fs_info->balance_lock);
3980 if (!fs_info->balance_ctl) {
3981 spin_unlock(&fs_info->balance_lock);
3982 return 0;
3983 }
3984 spin_unlock(&fs_info->balance_lock);
3985
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003986 if (btrfs_test_opt(fs_info, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003987 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003988 return 0;
3989 }
3990
Anand Jain02ee6542018-05-17 15:16:51 +08003991 /*
3992 * A ro->rw remount sequence should continue with the paused balance
3993 * regardless of who pauses it, system or the user as of now, so set
3994 * the resume flag.
3995 */
3996 spin_lock(&fs_info->balance_lock);
3997 fs_info->balance_ctl->flags |= BTRFS_BALANCE_RESUME;
3998 spin_unlock(&fs_info->balance_lock);
3999
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004000 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05304001 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06004002}
4003
Ilya Dryomov68310a52012-06-22 12:24:12 -06004004int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02004005{
Ilya Dryomov59641012012-01-16 22:04:48 +02004006 struct btrfs_balance_control *bctl;
4007 struct btrfs_balance_item *item;
4008 struct btrfs_disk_balance_args disk_bargs;
4009 struct btrfs_path *path;
4010 struct extent_buffer *leaf;
4011 struct btrfs_key key;
4012 int ret;
4013
4014 path = btrfs_alloc_path();
4015 if (!path)
4016 return -ENOMEM;
4017
Ilya Dryomov68310a52012-06-22 12:24:12 -06004018 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01004019 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06004020 key.offset = 0;
4021
4022 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
4023 if (ret < 0)
4024 goto out;
4025 if (ret > 0) { /* ret = -ENOENT; */
4026 ret = 0;
4027 goto out;
4028 }
4029
Ilya Dryomov59641012012-01-16 22:04:48 +02004030 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4031 if (!bctl) {
4032 ret = -ENOMEM;
4033 goto out;
4034 }
4035
Ilya Dryomov59641012012-01-16 22:04:48 +02004036 leaf = path->nodes[0];
4037 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
4038
Ilya Dryomov68310a52012-06-22 12:24:12 -06004039 bctl->fs_info = fs_info;
4040 bctl->flags = btrfs_balance_flags(leaf, item);
4041 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02004042
4043 btrfs_balance_data(leaf, item, &disk_bargs);
4044 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
4045 btrfs_balance_meta(leaf, item, &disk_bargs);
4046 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
4047 btrfs_balance_sys(leaf, item, &disk_bargs);
4048 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
4049
David Sterbaeee95e32018-03-20 20:07:58 +01004050 /*
4051 * This should never happen, as the paused balance state is recovered
4052 * during mount without any chance of other exclusive ops to collide.
4053 *
4054 * This gives the exclusive op status to balance and keeps in paused
4055 * state until user intervention (cancel or umount). If the ownership
4056 * cannot be assigned, show a message but do not fail. The balance
4057 * is in a paused state and must have fs_info::balance_ctl properly
4058 * set up.
4059 */
4060 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags))
4061 btrfs_warn(fs_info,
4062 "cannot set exclusive op status to balance, resume manually");
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004063
Ilya Dryomov68310a52012-06-22 12:24:12 -06004064 mutex_lock(&fs_info->volume_mutex);
4065 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004066
Ilya Dryomov68310a52012-06-22 12:24:12 -06004067 set_balance_control(bctl);
4068
4069 mutex_unlock(&fs_info->balance_mutex);
4070 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004071out:
4072 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004073 return ret;
4074}
4075
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004076int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
4077{
4078 int ret = 0;
4079
4080 mutex_lock(&fs_info->balance_mutex);
4081 if (!fs_info->balance_ctl) {
4082 mutex_unlock(&fs_info->balance_mutex);
4083 return -ENOTCONN;
4084 }
4085
4086 if (atomic_read(&fs_info->balance_running)) {
4087 atomic_inc(&fs_info->balance_pause_req);
4088 mutex_unlock(&fs_info->balance_mutex);
4089
4090 wait_event(fs_info->balance_wait_q,
4091 atomic_read(&fs_info->balance_running) == 0);
4092
4093 mutex_lock(&fs_info->balance_mutex);
4094 /* we are good with balance_ctl ripped off from under us */
4095 BUG_ON(atomic_read(&fs_info->balance_running));
4096 atomic_dec(&fs_info->balance_pause_req);
4097 } else {
4098 ret = -ENOTCONN;
4099 }
4100
4101 mutex_unlock(&fs_info->balance_mutex);
4102 return ret;
4103}
4104
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004105int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
4106{
David Howellsbc98a422017-07-17 08:45:34 +01004107 if (sb_rdonly(fs_info->sb))
Ilya Dryomove649e582013-10-10 20:40:21 +03004108 return -EROFS;
4109
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004110 mutex_lock(&fs_info->balance_mutex);
4111 if (!fs_info->balance_ctl) {
4112 mutex_unlock(&fs_info->balance_mutex);
4113 return -ENOTCONN;
4114 }
4115
4116 atomic_inc(&fs_info->balance_cancel_req);
4117 /*
4118 * if we are running just wait and return, balance item is
4119 * deleted in btrfs_balance in this case
4120 */
4121 if (atomic_read(&fs_info->balance_running)) {
4122 mutex_unlock(&fs_info->balance_mutex);
4123 wait_event(fs_info->balance_wait_q,
4124 atomic_read(&fs_info->balance_running) == 0);
4125 mutex_lock(&fs_info->balance_mutex);
4126 } else {
4127 /* __cancel_balance needs volume_mutex */
4128 mutex_unlock(&fs_info->balance_mutex);
4129 mutex_lock(&fs_info->volume_mutex);
4130 mutex_lock(&fs_info->balance_mutex);
4131
David Sterbaa17c95d2018-03-20 17:28:05 +01004132 if (fs_info->balance_ctl) {
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004133 __cancel_balance(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01004134 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
4135 }
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004136
4137 mutex_unlock(&fs_info->volume_mutex);
4138 }
4139
4140 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
4141 atomic_dec(&fs_info->balance_cancel_req);
4142 mutex_unlock(&fs_info->balance_mutex);
4143 return 0;
4144}
4145
Stefan Behrens803b2f52013-08-15 17:11:21 +02004146static int btrfs_uuid_scan_kthread(void *data)
4147{
4148 struct btrfs_fs_info *fs_info = data;
4149 struct btrfs_root *root = fs_info->tree_root;
4150 struct btrfs_key key;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004151 struct btrfs_path *path = NULL;
4152 int ret = 0;
4153 struct extent_buffer *eb;
4154 int slot;
4155 struct btrfs_root_item root_item;
4156 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004157 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004158
4159 path = btrfs_alloc_path();
4160 if (!path) {
4161 ret = -ENOMEM;
4162 goto out;
4163 }
4164
4165 key.objectid = 0;
4166 key.type = BTRFS_ROOT_ITEM_KEY;
4167 key.offset = 0;
4168
Stefan Behrens803b2f52013-08-15 17:11:21 +02004169 while (1) {
Anand Jain7c829b72018-03-07 17:29:18 +08004170 ret = btrfs_search_forward(root, &key, path,
4171 BTRFS_OLDEST_GENERATION);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004172 if (ret) {
4173 if (ret > 0)
4174 ret = 0;
4175 break;
4176 }
4177
4178 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4179 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4180 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4181 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4182 goto skip;
4183
4184 eb = path->nodes[0];
4185 slot = path->slots[0];
4186 item_size = btrfs_item_size_nr(eb, slot);
4187 if (item_size < sizeof(root_item))
4188 goto skip;
4189
Stefan Behrens803b2f52013-08-15 17:11:21 +02004190 read_extent_buffer(eb, &root_item,
4191 btrfs_item_ptr_offset(eb, slot),
4192 (int)sizeof(root_item));
4193 if (btrfs_root_refs(&root_item) == 0)
4194 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004195
4196 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4197 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4198 if (trans)
4199 goto update_tree;
4200
4201 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004202 /*
4203 * 1 - subvol uuid item
4204 * 1 - received_subvol uuid item
4205 */
4206 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4207 if (IS_ERR(trans)) {
4208 ret = PTR_ERR(trans);
4209 break;
4210 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004211 continue;
4212 } else {
4213 goto skip;
4214 }
4215update_tree:
4216 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004217 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004218 root_item.uuid,
4219 BTRFS_UUID_KEY_SUBVOL,
4220 key.objectid);
4221 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004222 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004223 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004224 break;
4225 }
4226 }
4227
4228 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004229 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004230 root_item.received_uuid,
4231 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4232 key.objectid);
4233 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004234 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004235 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004236 break;
4237 }
4238 }
4239
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004240skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004241 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004242 ret = btrfs_end_transaction(trans);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004243 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004244 if (ret)
4245 break;
4246 }
4247
Stefan Behrens803b2f52013-08-15 17:11:21 +02004248 btrfs_release_path(path);
4249 if (key.offset < (u64)-1) {
4250 key.offset++;
4251 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4252 key.offset = 0;
4253 key.type = BTRFS_ROOT_ITEM_KEY;
4254 } else if (key.objectid < (u64)-1) {
4255 key.offset = 0;
4256 key.type = BTRFS_ROOT_ITEM_KEY;
4257 key.objectid++;
4258 } else {
4259 break;
4260 }
4261 cond_resched();
4262 }
4263
4264out:
4265 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004266 if (trans && !IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004267 btrfs_end_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004268 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004269 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004270 else
Josef Bacikafcdd122016-09-02 15:40:02 -04004271 set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004272 up(&fs_info->uuid_tree_rescan_sem);
4273 return 0;
4274}
4275
Stefan Behrens70f80172013-08-15 17:11:23 +02004276/*
4277 * Callback for btrfs_uuid_tree_iterate().
4278 * returns:
4279 * 0 check succeeded, the entry is not outdated.
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08004280 * < 0 if an error occurred.
Stefan Behrens70f80172013-08-15 17:11:23 +02004281 * > 0 if the check failed, which means the caller shall remove the entry.
4282 */
4283static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4284 u8 *uuid, u8 type, u64 subid)
4285{
4286 struct btrfs_key key;
4287 int ret = 0;
4288 struct btrfs_root *subvol_root;
4289
4290 if (type != BTRFS_UUID_KEY_SUBVOL &&
4291 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4292 goto out;
4293
4294 key.objectid = subid;
4295 key.type = BTRFS_ROOT_ITEM_KEY;
4296 key.offset = (u64)-1;
4297 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4298 if (IS_ERR(subvol_root)) {
4299 ret = PTR_ERR(subvol_root);
4300 if (ret == -ENOENT)
4301 ret = 1;
4302 goto out;
4303 }
4304
4305 switch (type) {
4306 case BTRFS_UUID_KEY_SUBVOL:
4307 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4308 ret = 1;
4309 break;
4310 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4311 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4312 BTRFS_UUID_SIZE))
4313 ret = 1;
4314 break;
4315 }
4316
4317out:
4318 return ret;
4319}
4320
4321static int btrfs_uuid_rescan_kthread(void *data)
4322{
4323 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4324 int ret;
4325
4326 /*
4327 * 1st step is to iterate through the existing UUID tree and
4328 * to delete all entries that contain outdated data.
4329 * 2nd step is to add all missing entries to the UUID tree.
4330 */
4331 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4332 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004333 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004334 up(&fs_info->uuid_tree_rescan_sem);
4335 return ret;
4336 }
4337 return btrfs_uuid_scan_kthread(data);
4338}
4339
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004340int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4341{
4342 struct btrfs_trans_handle *trans;
4343 struct btrfs_root *tree_root = fs_info->tree_root;
4344 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004345 struct task_struct *task;
4346 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004347
4348 /*
4349 * 1 - root node
4350 * 1 - root item
4351 */
4352 trans = btrfs_start_transaction(tree_root, 2);
4353 if (IS_ERR(trans))
4354 return PTR_ERR(trans);
4355
4356 uuid_root = btrfs_create_tree(trans, fs_info,
4357 BTRFS_UUID_TREE_OBJECTID);
4358 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004359 ret = PTR_ERR(uuid_root);
Jeff Mahoney66642832016-06-10 18:19:25 -04004360 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004361 btrfs_end_transaction(trans);
David Sterba6d13f542015-04-24 19:12:01 +02004362 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004363 }
4364
4365 fs_info->uuid_root = uuid_root;
4366
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004367 ret = btrfs_commit_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004368 if (ret)
4369 return ret;
4370
4371 down(&fs_info->uuid_tree_rescan_sem);
4372 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4373 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004374 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004375 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004376 up(&fs_info->uuid_tree_rescan_sem);
4377 return PTR_ERR(task);
4378 }
4379
4380 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004381}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004382
Stefan Behrens70f80172013-08-15 17:11:23 +02004383int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4384{
4385 struct task_struct *task;
4386
4387 down(&fs_info->uuid_tree_rescan_sem);
4388 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4389 if (IS_ERR(task)) {
4390 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004391 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004392 up(&fs_info->uuid_tree_rescan_sem);
4393 return PTR_ERR(task);
4394 }
4395
4396 return 0;
4397}
4398
Chris Mason8f18cf12008-04-25 16:53:30 -04004399/*
4400 * shrinking a device means finding all of the device extents past
4401 * the new size, and then following the back refs to the chunks.
4402 * The chunk relocation code actually frees the device extent
4403 */
4404int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4405{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004406 struct btrfs_fs_info *fs_info = device->fs_info;
4407 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04004408 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04004409 struct btrfs_dev_extent *dev_extent = NULL;
4410 struct btrfs_path *path;
4411 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004412 u64 chunk_offset;
4413 int ret;
4414 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004415 int failed = 0;
4416 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004417 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004418 struct extent_buffer *l;
4419 struct btrfs_key key;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004420 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004421 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004422 u64 old_size = btrfs_device_get_total_bytes(device);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004423 u64 diff;
4424
4425 new_size = round_down(new_size, fs_info->sectorsize);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03004426 diff = round_down(old_size - new_size, fs_info->sectorsize);
Chris Mason8f18cf12008-04-25 16:53:30 -04004427
Anand Jain401e29c2017-12-04 12:54:55 +08004428 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Stefan Behrens63a212a2012-11-05 18:29:28 +01004429 return -EINVAL;
4430
Chris Mason8f18cf12008-04-25 16:53:30 -04004431 path = btrfs_alloc_path();
4432 if (!path)
4433 return -ENOMEM;
4434
David Sterbae4058b52015-11-27 16:31:35 +01004435 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04004436
David Sterba34441362016-10-04 19:34:27 +02004437 mutex_lock(&fs_info->chunk_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04004438
Miao Xie7cc8e582014-09-03 21:35:38 +08004439 btrfs_device_set_total_bytes(device, new_size);
Anand Jainebbede42017-12-04 12:54:52 +08004440 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05004441 device->fs_devices->total_rw_bytes -= diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004442 atomic64_sub(diff, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04004443 }
David Sterba34441362016-10-04 19:34:27 +02004444 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004445
Josef Bacikba1bf482009-09-11 16:11:19 -04004446again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004447 key.objectid = device->devid;
4448 key.offset = (u64)-1;
4449 key.type = BTRFS_DEV_EXTENT_KEY;
4450
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004451 do {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004452 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004453 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004454 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004455 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004456 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004457 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004458
4459 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004460 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004461 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004462 if (ret < 0)
4463 goto done;
4464 if (ret) {
4465 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004466 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004467 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004468 }
4469
4470 l = path->nodes[0];
4471 slot = path->slots[0];
4472 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4473
Josef Bacikba1bf482009-09-11 16:11:19 -04004474 if (key.objectid != device->devid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004475 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004476 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004477 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004478 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004479
4480 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4481 length = btrfs_dev_extent_length(l, dev_extent);
4482
Josef Bacikba1bf482009-09-11 16:11:19 -04004483 if (key.offset + length <= new_size) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004484 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004485 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004486 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004487 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004488
Chris Mason8f18cf12008-04-25 16:53:30 -04004489 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004490 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004491
Liu Boa6f93c72017-11-15 16:28:11 -07004492 /*
4493 * We may be relocating the only data chunk we have,
4494 * which could potentially end up with losing data's
4495 * raid profile, so lets allocate an empty one in
4496 * advance.
4497 */
4498 ret = btrfs_may_alloc_data_chunk(fs_info, chunk_offset);
4499 if (ret < 0) {
4500 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
4501 goto done;
4502 }
4503
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004504 ret = btrfs_relocate_chunk(fs_info, chunk_offset);
4505 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004506 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004507 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004508 if (ret == -ENOSPC)
4509 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004510 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004511
4512 if (failed && !retried) {
4513 failed = 0;
4514 retried = true;
4515 goto again;
4516 } else if (failed && retried) {
4517 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004518 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004519 }
4520
Chris Balld6397ba2009-04-27 07:29:03 -04004521 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004522 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004523 if (IS_ERR(trans)) {
4524 ret = PTR_ERR(trans);
4525 goto done;
4526 }
4527
David Sterba34441362016-10-04 19:34:27 +02004528 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004529
4530 /*
4531 * We checked in the above loop all device extents that were already in
4532 * the device tree. However before we have updated the device's
4533 * total_bytes to the new size, we might have had chunk allocations that
4534 * have not complete yet (new block groups attached to transaction
4535 * handles), and therefore their device extents were not yet in the
4536 * device tree and we missed them in the loop above. So if we have any
4537 * pending chunk using a device extent that overlaps the device range
4538 * that we can not use anymore, commit the current transaction and
4539 * repeat the search on the device tree - this way we guarantee we will
4540 * not have chunks using device extents that end beyond 'new_size'.
4541 */
4542 if (!checked_pending_chunks) {
4543 u64 start = new_size;
4544 u64 len = old_size - new_size;
4545
Jeff Mahoney499f3772015-06-15 09:41:17 -04004546 if (contains_pending_extent(trans->transaction, device,
4547 &start, len)) {
David Sterba34441362016-10-04 19:34:27 +02004548 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004549 checked_pending_chunks = true;
4550 failed = 0;
4551 retried = false;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004552 ret = btrfs_commit_transaction(trans);
Filipe Manana53e489b2015-06-02 14:43:21 +01004553 if (ret)
4554 goto done;
4555 goto again;
4556 }
4557 }
4558
Miao Xie7cc8e582014-09-03 21:35:38 +08004559 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004560 if (list_empty(&device->resized_list))
4561 list_add_tail(&device->resized_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004562 &fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004563
Chris Balld6397ba2009-04-27 07:29:03 -04004564 WARN_ON(diff > old_total);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004565 btrfs_set_super_total_bytes(super_copy,
4566 round_down(old_total - diff, fs_info->sectorsize));
David Sterba34441362016-10-04 19:34:27 +02004567 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08004568
4569 /* Now btrfs_update_device() will change the on-disk size. */
4570 ret = btrfs_update_device(trans, device);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004571 btrfs_end_transaction(trans);
Chris Mason8f18cf12008-04-25 16:53:30 -04004572done:
4573 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004574 if (ret) {
David Sterba34441362016-10-04 19:34:27 +02004575 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004576 btrfs_device_set_total_bytes(device, old_size);
Anand Jainebbede42017-12-04 12:54:52 +08004577 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Filipe Manana53e489b2015-06-02 14:43:21 +01004578 device->fs_devices->total_rw_bytes += diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004579 atomic64_add(diff, &fs_info->free_chunk_space);
David Sterba34441362016-10-04 19:34:27 +02004580 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004581 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004582 return ret;
4583}
4584
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004585static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04004586 struct btrfs_key *key,
4587 struct btrfs_chunk *chunk, int item_size)
4588{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004589 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004590 struct btrfs_disk_key disk_key;
4591 u32 array_size;
4592 u8 *ptr;
4593
David Sterba34441362016-10-04 19:34:27 +02004594 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004595 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004596 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004597 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
David Sterba34441362016-10-04 19:34:27 +02004598 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004599 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004600 }
Chris Mason0b86a832008-03-24 15:01:56 -04004601
4602 ptr = super_copy->sys_chunk_array + array_size;
4603 btrfs_cpu_key_to_disk(&disk_key, key);
4604 memcpy(ptr, &disk_key, sizeof(disk_key));
4605 ptr += sizeof(disk_key);
4606 memcpy(ptr, chunk, item_size);
4607 item_size += sizeof(disk_key);
4608 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
David Sterba34441362016-10-04 19:34:27 +02004609 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004610
Chris Mason0b86a832008-03-24 15:01:56 -04004611 return 0;
4612}
4613
Miao Xieb2117a32011-01-05 10:07:28 +00004614/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004615 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004616 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004617static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004618{
Arne Jansen73c5de02011-04-12 12:07:57 +02004619 const struct btrfs_device_info *di_a = a;
4620 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004621
Arne Jansen73c5de02011-04-12 12:07:57 +02004622 if (di_a->max_avail > di_b->max_avail)
4623 return -1;
4624 if (di_a->max_avail < di_b->max_avail)
4625 return 1;
4626 if (di_a->total_avail > di_b->total_avail)
4627 return -1;
4628 if (di_a->total_avail < di_b->total_avail)
4629 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004630 return 0;
4631}
4632
David Woodhouse53b381b2013-01-29 18:40:14 -05004633static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4634{
Zhao Leiffe2d202015-01-20 15:11:44 +08004635 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004636 return;
4637
Miao Xieceda0862013-04-11 10:30:16 +00004638 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004639}
4640
Qu Wenruo062d4d12018-01-30 18:20:46 +08004641#define BTRFS_MAX_DEVS(info) ((BTRFS_MAX_ITEM_SIZE(info) \
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004642 - sizeof(struct btrfs_chunk)) \
4643 / sizeof(struct btrfs_stripe) + 1)
4644
4645#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4646 - 2 * sizeof(struct btrfs_disk_key) \
4647 - 2 * sizeof(struct btrfs_chunk)) \
4648 / sizeof(struct btrfs_stripe) + 1)
4649
Miao Xieb2117a32011-01-05 10:07:28 +00004650static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
David Sterba72b468c2017-02-10 19:46:27 +01004651 u64 start, u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004652{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004653 struct btrfs_fs_info *info = trans->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004654 struct btrfs_fs_devices *fs_devices = info->fs_devices;
Nikolay Borisovebcc9302017-06-27 10:02:24 +03004655 struct btrfs_device *device;
Arne Jansen73c5de02011-04-12 12:07:57 +02004656 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004657 struct extent_map_tree *em_tree;
4658 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004659 struct btrfs_device_info *devices_info = NULL;
4660 u64 total_avail;
4661 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004662 int data_stripes; /* number of stripes that count for
4663 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004664 int sub_stripes; /* sub_stripes info for map */
4665 int dev_stripes; /* stripes per dev */
4666 int devs_max; /* max devs to use */
4667 int devs_min; /* min devs needed */
4668 int devs_increment; /* ndevs has to be a multiple of this */
4669 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004670 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004671 u64 max_stripe_size;
4672 u64 max_chunk_size;
4673 u64 stripe_size;
4674 u64 num_bytes;
4675 int ndevs;
4676 int i;
4677 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004678 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004679
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004680 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004681
Qu Wenruo4117f202018-01-22 13:50:54 +08004682 if (list_empty(&fs_devices->alloc_list)) {
4683 if (btrfs_test_opt(info, ENOSPC_DEBUG))
4684 btrfs_debug(info, "%s: no writable device", __func__);
Miao Xieb2117a32011-01-05 10:07:28 +00004685 return -ENOSPC;
Qu Wenruo4117f202018-01-22 13:50:54 +08004686 }
Miao Xieb2117a32011-01-05 10:07:28 +00004687
Qu Wenruo3e72ee82018-01-30 18:20:45 +08004688 index = btrfs_bg_flags_to_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004689
Liu Bo31e50222012-11-21 14:18:10 +00004690 sub_stripes = btrfs_raid_array[index].sub_stripes;
4691 dev_stripes = btrfs_raid_array[index].dev_stripes;
4692 devs_max = btrfs_raid_array[index].devs_max;
4693 devs_min = btrfs_raid_array[index].devs_min;
4694 devs_increment = btrfs_raid_array[index].devs_increment;
4695 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004696
4697 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004698 max_stripe_size = SZ_1G;
Arne Jansen73c5de02011-04-12 12:07:57 +02004699 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004700 if (!devs_max)
Qu Wenruo062d4d12018-01-30 18:20:46 +08004701 devs_max = BTRFS_MAX_DEVS(info);
Arne Jansen73c5de02011-04-12 12:07:57 +02004702 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004703 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004704 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4705 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004706 else
Byongho Leeee221842015-12-15 01:42:10 +09004707 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004708 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004709 if (!devs_max)
Qu Wenruo062d4d12018-01-30 18:20:46 +08004710 devs_max = BTRFS_MAX_DEVS(info);
Arne Jansen73c5de02011-04-12 12:07:57 +02004711 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004712 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004713 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004714 if (!devs_max)
4715 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004716 } else {
David Sterba351fd352014-05-15 16:48:20 +02004717 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004718 type);
4719 BUG_ON(1);
4720 }
4721
4722 /* we don't want a chunk larger than 10% of writeable space */
4723 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4724 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004725
David Sterba31e818f2015-02-20 18:00:26 +01004726 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004727 GFP_NOFS);
4728 if (!devices_info)
4729 return -ENOMEM;
4730
Arne Jansen73c5de02011-04-12 12:07:57 +02004731 /*
4732 * in the first pass through the devices list, we gather information
4733 * about the available holes on each device.
4734 */
4735 ndevs = 0;
Nikolay Borisovebcc9302017-06-27 10:02:24 +03004736 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Arne Jansen73c5de02011-04-12 12:07:57 +02004737 u64 max_avail;
4738 u64 dev_offset;
4739
Anand Jainebbede42017-12-04 12:54:52 +08004740 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004741 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004742 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004743 continue;
4744 }
4745
Anand Jaine12c9622017-12-04 12:54:53 +08004746 if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
4747 &device->dev_state) ||
Anand Jain401e29c2017-12-04 12:54:55 +08004748 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Arne Jansen73c5de02011-04-12 12:07:57 +02004749 continue;
4750
4751 if (device->total_bytes > device->bytes_used)
4752 total_avail = device->total_bytes - device->bytes_used;
4753 else
4754 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004755
4756 /* If there is no space on this device, skip it. */
4757 if (total_avail == 0)
4758 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004759
Josef Bacik6df9a952013-06-27 13:22:46 -04004760 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004761 max_stripe_size * dev_stripes,
4762 &dev_offset, &max_avail);
4763 if (ret && ret != -ENOSPC)
4764 goto error;
4765
4766 if (ret == 0)
4767 max_avail = max_stripe_size * dev_stripes;
4768
Qu Wenruo4117f202018-01-22 13:50:54 +08004769 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes) {
4770 if (btrfs_test_opt(info, ENOSPC_DEBUG))
4771 btrfs_debug(info,
4772 "%s: devid %llu has no free space, have=%llu want=%u",
4773 __func__, device->devid, max_avail,
4774 BTRFS_STRIPE_LEN * dev_stripes);
Arne Jansen73c5de02011-04-12 12:07:57 +02004775 continue;
Qu Wenruo4117f202018-01-22 13:50:54 +08004776 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004777
Eric Sandeen063d0062013-01-31 00:55:01 +00004778 if (ndevs == fs_devices->rw_devices) {
4779 WARN(1, "%s: found more than %llu devices\n",
4780 __func__, fs_devices->rw_devices);
4781 break;
4782 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004783 devices_info[ndevs].dev_offset = dev_offset;
4784 devices_info[ndevs].max_avail = max_avail;
4785 devices_info[ndevs].total_avail = total_avail;
4786 devices_info[ndevs].dev = device;
4787 ++ndevs;
4788 }
4789
4790 /*
4791 * now sort the devices by hole size / available space
4792 */
4793 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4794 btrfs_cmp_device_info, NULL);
4795
4796 /* round down to number of usable stripes */
Nikolay Borisove5600fd2017-06-27 10:02:25 +03004797 ndevs = round_down(ndevs, devs_increment);
Arne Jansen73c5de02011-04-12 12:07:57 +02004798
Qu Wenruoba89b802018-01-31 13:56:15 +08004799 if (ndevs < devs_min) {
Arne Jansen73c5de02011-04-12 12:07:57 +02004800 ret = -ENOSPC;
Qu Wenruo4117f202018-01-22 13:50:54 +08004801 if (btrfs_test_opt(info, ENOSPC_DEBUG)) {
4802 btrfs_debug(info,
4803 "%s: not enough devices with free space: have=%d minimum required=%d",
Qu Wenruoba89b802018-01-31 13:56:15 +08004804 __func__, ndevs, devs_min);
Qu Wenruo4117f202018-01-22 13:50:54 +08004805 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004806 goto error;
4807 }
4808
Nikolay Borisovf148ef42017-06-27 10:02:26 +03004809 ndevs = min(ndevs, devs_max);
4810
Arne Jansen73c5de02011-04-12 12:07:57 +02004811 /*
Hans van Kranenburg92e222d2018-02-05 17:45:11 +01004812 * The primary goal is to maximize the number of stripes, so use as
4813 * many devices as possible, even if the stripes are not maximum sized.
4814 *
4815 * The DUP profile stores more than one stripe per device, the
4816 * max_avail is the total size so we have to adjust.
Arne Jansen73c5de02011-04-12 12:07:57 +02004817 */
Hans van Kranenburg92e222d2018-02-05 17:45:11 +01004818 stripe_size = div_u64(devices_info[ndevs - 1].max_avail, dev_stripes);
Arne Jansen73c5de02011-04-12 12:07:57 +02004819 num_stripes = ndevs * dev_stripes;
4820
David Woodhouse53b381b2013-01-29 18:40:14 -05004821 /*
4822 * this will have to be fixed for RAID1 and RAID10 over
4823 * more drives
4824 */
4825 data_stripes = num_stripes / ncopies;
4826
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004827 if (type & BTRFS_BLOCK_GROUP_RAID5)
David Woodhouse53b381b2013-01-29 18:40:14 -05004828 data_stripes = num_stripes - 1;
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004829
4830 if (type & BTRFS_BLOCK_GROUP_RAID6)
David Woodhouse53b381b2013-01-29 18:40:14 -05004831 data_stripes = num_stripes - 2;
Chris Mason86db2572013-02-20 16:23:40 -05004832
4833 /*
4834 * Use the number of data stripes to figure out how big this chunk
4835 * is really going to be in terms of logical address space,
4836 * and compare that answer with the max chunk size
4837 */
4838 if (stripe_size * data_stripes > max_chunk_size) {
David Sterbab8b93ad2015-01-16 17:26:13 +01004839 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004840
4841 /* bump the answer up to a 16MB boundary */
Qu Wenruo793ff2c2018-01-31 14:16:34 +08004842 stripe_size = round_up(stripe_size, SZ_16M);
Chris Mason86db2572013-02-20 16:23:40 -05004843
Qu Wenruo793ff2c2018-01-31 14:16:34 +08004844 /*
4845 * But don't go higher than the limits we found while searching
4846 * for free extents
Chris Mason86db2572013-02-20 16:23:40 -05004847 */
Qu Wenruo793ff2c2018-01-31 14:16:34 +08004848 stripe_size = min(devices_info[ndevs - 1].max_avail,
4849 stripe_size);
Chris Mason86db2572013-02-20 16:23:40 -05004850 }
4851
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004852 /* align to BTRFS_STRIPE_LEN */
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004853 stripe_size = round_down(stripe_size, BTRFS_STRIPE_LEN);
Arne Jansen73c5de02011-04-12 12:07:57 +02004854
Miao Xieb2117a32011-01-05 10:07:28 +00004855 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4856 if (!map) {
4857 ret = -ENOMEM;
4858 goto error;
4859 }
4860 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004861
Arne Jansen73c5de02011-04-12 12:07:57 +02004862 for (i = 0; i < ndevs; ++i) {
4863 for (j = 0; j < dev_stripes; ++j) {
4864 int s = i * dev_stripes + j;
4865 map->stripes[s].dev = devices_info[i].dev;
4866 map->stripes[s].physical = devices_info[i].dev_offset +
4867 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004868 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004869 }
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004870 map->stripe_len = BTRFS_STRIPE_LEN;
4871 map->io_align = BTRFS_STRIPE_LEN;
4872 map->io_width = BTRFS_STRIPE_LEN;
Chris Mason593060d2008-03-25 16:50:33 -04004873 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004874 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004875
David Woodhouse53b381b2013-01-29 18:40:14 -05004876 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004877
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004878 trace_btrfs_chunk_alloc(info, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004879
David Sterba172ddd62011-04-21 00:48:27 +02004880 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004881 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004882 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004883 ret = -ENOMEM;
4884 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004885 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004886 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004887 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004888 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004889 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004890 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004891 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004892 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004893
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004894 em_tree = &info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004895 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004896 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004897 if (ret) {
Nikolay Borisov1efb72a2017-08-21 12:43:49 +03004898 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004899 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004900 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004901 }
Yan Zheng2b820322008-11-17 21:11:30 -05004902
Nikolay Borisov1efb72a2017-08-21 12:43:49 +03004903 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4904 refcount_inc(&em->refs);
4905 write_unlock(&em_tree->lock);
4906
Nikolay Borisov01744842017-07-27 14:22:11 +03004907 ret = btrfs_make_block_group(trans, info, 0, type, start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004908 if (ret)
4909 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004910
Miao Xie7cc8e582014-09-03 21:35:38 +08004911 for (i = 0; i < map->num_stripes; i++) {
4912 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4913 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4914 }
Miao Xie43530c42014-09-03 21:35:36 +08004915
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004916 atomic64_sub(stripe_size * map->num_stripes, &info->free_chunk_space);
Miao Xie1c116182014-09-03 21:35:37 +08004917
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004918 free_extent_map(em);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004919 check_raid56_incompat_flag(info, type);
David Woodhouse53b381b2013-01-29 18:40:14 -05004920
Miao Xieb2117a32011-01-05 10:07:28 +00004921 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004922 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004923
Josef Bacik6df9a952013-06-27 13:22:46 -04004924error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004925 write_lock(&em_tree->lock);
4926 remove_extent_mapping(em_tree, em);
4927 write_unlock(&em_tree->lock);
4928
4929 /* One for our allocation */
4930 free_extent_map(em);
4931 /* One for the tree reference */
4932 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004933 /* One for the pending_chunks list reference */
4934 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004935error:
Miao Xieb2117a32011-01-05 10:07:28 +00004936 kfree(devices_info);
4937 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004938}
4939
Josef Bacik6df9a952013-06-27 13:22:46 -04004940int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004941 struct btrfs_fs_info *fs_info,
Josef Bacik6df9a952013-06-27 13:22:46 -04004942 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004943{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004944 struct btrfs_root *extent_root = fs_info->extent_root;
4945 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05004946 struct btrfs_key key;
Yan Zheng2b820322008-11-17 21:11:30 -05004947 struct btrfs_device *device;
4948 struct btrfs_chunk *chunk;
4949 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004950 struct extent_map *em;
4951 struct map_lookup *map;
4952 size_t item_size;
4953 u64 dev_offset;
4954 u64 stripe_size;
4955 int i = 0;
Chris Mason140e6392015-12-23 13:30:51 -08004956 int ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004957
Liu Bo592d92e2017-03-14 13:33:55 -07004958 em = get_chunk_map(fs_info, chunk_offset, chunk_size);
4959 if (IS_ERR(em))
4960 return PTR_ERR(em);
Josef Bacik6df9a952013-06-27 13:22:46 -04004961
Jeff Mahoney95617d62015-06-03 10:55:48 -04004962 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004963 item_size = btrfs_chunk_item_size(map->num_stripes);
4964 stripe_size = em->orig_block_len;
4965
4966 chunk = kzalloc(item_size, GFP_NOFS);
4967 if (!chunk) {
4968 ret = -ENOMEM;
4969 goto out;
4970 }
4971
Filipe Manana50460e32015-11-20 10:42:47 +00004972 /*
4973 * Take the device list mutex to prevent races with the final phase of
4974 * a device replace operation that replaces the device object associated
4975 * with the map's stripes, because the device object's id can change
4976 * at any time during that final phase of the device replace operation
4977 * (dev-replace.c:btrfs_dev_replace_finishing()).
4978 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004979 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04004980 for (i = 0; i < map->num_stripes; i++) {
4981 device = map->stripes[i].dev;
4982 dev_offset = map->stripes[i].physical;
4983
Yan Zheng2b820322008-11-17 21:11:30 -05004984 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004985 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004986 break;
Nikolay Borisovb5d90712017-08-18 17:58:23 +03004987 ret = btrfs_alloc_dev_extent(trans, device, chunk_offset,
4988 dev_offset, stripe_size);
Josef Bacik6df9a952013-06-27 13:22:46 -04004989 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004990 break;
4991 }
4992 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004993 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe Manana50460e32015-11-20 10:42:47 +00004994 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004995 }
4996
Yan Zheng2b820322008-11-17 21:11:30 -05004997 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004998 for (i = 0; i < map->num_stripes; i++) {
4999 device = map->stripes[i].dev;
5000 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05005001
5002 btrfs_set_stack_stripe_devid(stripe, device->devid);
5003 btrfs_set_stack_stripe_offset(stripe, dev_offset);
5004 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
5005 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05005006 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005007 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05005008
5009 btrfs_set_stack_chunk_length(chunk, chunk_size);
5010 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
5011 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
5012 btrfs_set_stack_chunk_type(chunk, map->type);
5013 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
5014 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
5015 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005016 btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize);
Yan Zheng2b820322008-11-17 21:11:30 -05005017 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
5018
5019 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
5020 key.type = BTRFS_CHUNK_ITEM_KEY;
5021 key.offset = chunk_offset;
5022
5023 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07005024 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
5025 /*
5026 * TODO: Cleanup of inserted chunk root in case of
5027 * failure.
5028 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005029 ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05005030 }
liubo1abe9b82011-03-24 11:18:59 +00005031
Josef Bacik6df9a952013-06-27 13:22:46 -04005032out:
Yan Zheng2b820322008-11-17 21:11:30 -05005033 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04005034 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07005035 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005036}
5037
5038/*
5039 * Chunk allocation falls into two parts. The first part does works
5040 * that make the new allocated chunk useable, but not do any operation
5041 * that modifies the chunk tree. The second part does the works that
5042 * require modifying the chunk tree. This division is important for the
5043 * bootstrap process of adding storage to a seed btrfs.
5044 */
5045int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005046 struct btrfs_fs_info *fs_info, u64 type)
Yan Zheng2b820322008-11-17 21:11:30 -05005047{
5048 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005049
David Sterbaa32bf9a2018-03-16 02:21:22 +01005050 lockdep_assert_held(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005051 chunk_offset = find_next_chunk(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005052 return __btrfs_alloc_chunk(trans, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05005053}
5054
Chris Masond3977122009-01-05 21:25:51 -05005055static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +01005056 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05005057{
5058 u64 chunk_offset;
5059 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005060 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05005061 int ret;
5062
Josef Bacik6df9a952013-06-27 13:22:46 -04005063 chunk_offset = find_next_chunk(fs_info);
Jeff Mahoney1b868262017-05-17 11:38:35 -04005064 alloc_profile = btrfs_metadata_alloc_profile(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005065 ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005066 if (ret)
5067 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005068
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005069 sys_chunk_offset = find_next_chunk(fs_info);
Jeff Mahoney1b868262017-05-17 11:38:35 -04005070 alloc_profile = btrfs_system_alloc_profile(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005071 ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005072 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005073}
5074
Miao Xied20983b2014-07-03 18:22:13 +08005075static inline int btrfs_chunk_max_errors(struct map_lookup *map)
5076{
5077 int max_errors;
5078
5079 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5080 BTRFS_BLOCK_GROUP_RAID10 |
5081 BTRFS_BLOCK_GROUP_RAID5 |
5082 BTRFS_BLOCK_GROUP_DUP)) {
5083 max_errors = 1;
5084 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
5085 max_errors = 2;
5086 } else {
5087 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005088 }
5089
Miao Xied20983b2014-07-03 18:22:13 +08005090 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05005091}
5092
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005093int btrfs_chunk_readonly(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Yan Zheng2b820322008-11-17 21:11:30 -05005094{
5095 struct extent_map *em;
5096 struct map_lookup *map;
Yan Zheng2b820322008-11-17 21:11:30 -05005097 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08005098 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005099 int i;
5100
Liu Bo592d92e2017-03-14 13:33:55 -07005101 em = get_chunk_map(fs_info, chunk_offset, 1);
5102 if (IS_ERR(em))
Yan Zheng2b820322008-11-17 21:11:30 -05005103 return 1;
5104
Jeff Mahoney95617d62015-06-03 10:55:48 -04005105 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05005106 for (i = 0; i < map->num_stripes; i++) {
Anand Jaine6e674b2017-12-04 12:54:54 +08005107 if (test_bit(BTRFS_DEV_STATE_MISSING,
5108 &map->stripes[i].dev->dev_state)) {
Miao Xied20983b2014-07-03 18:22:13 +08005109 miss_ndevs++;
5110 continue;
5111 }
Anand Jainebbede42017-12-04 12:54:52 +08005112 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE,
5113 &map->stripes[i].dev->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05005114 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08005115 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05005116 }
5117 }
Miao Xied20983b2014-07-03 18:22:13 +08005118
5119 /*
5120 * If the number of missing devices is larger than max errors,
5121 * we can not write the data into that chunk successfully, so
5122 * set it readonly.
5123 */
5124 if (miss_ndevs > btrfs_chunk_max_errors(map))
5125 readonly = 1;
5126end:
Yan Zheng2b820322008-11-17 21:11:30 -05005127 free_extent_map(em);
5128 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04005129}
5130
5131void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
5132{
David Sterbaa8067e02011-04-21 00:34:43 +02005133 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04005134}
5135
5136void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
5137{
5138 struct extent_map *em;
5139
Chris Masond3977122009-01-05 21:25:51 -05005140 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04005141 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005142 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
5143 if (em)
5144 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04005145 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005146 if (!em)
5147 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005148 /* once for us */
5149 free_extent_map(em);
5150 /* once for the tree */
5151 free_extent_map(em);
5152 }
5153}
5154
Stefan Behrens5d964052012-11-05 14:59:07 +01005155int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005156{
5157 struct extent_map *em;
5158 struct map_lookup *map;
Chris Masonf1885912008-04-09 16:28:12 -04005159 int ret;
5160
Liu Bo592d92e2017-03-14 13:33:55 -07005161 em = get_chunk_map(fs_info, logical, len);
5162 if (IS_ERR(em))
5163 /*
5164 * We could return errors for these cases, but that could get
5165 * ugly and we'd probably do the same thing which is just not do
5166 * anything else and exit, so return 1 so the callers don't try
5167 * to use other copies.
5168 */
Josef Bacikfb7669b2013-04-23 10:53:18 -04005169 return 1;
Josef Bacikfb7669b2013-04-23 10:53:18 -04005170
Jeff Mahoney95617d62015-06-03 10:55:48 -04005171 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005172 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5173 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005174 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5175 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005176 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5177 ret = 2;
5178 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
Liu Bo8810f752018-01-02 13:36:41 -07005179 /*
5180 * There could be two corrupted data stripes, we need
5181 * to loop retry in order to rebuild the correct data.
5182 *
5183 * Fail a stripe at a time on every retry except the
5184 * stripe under reconstruction.
5185 */
5186 ret = map->num_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04005187 else
5188 ret = 1;
5189 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005190
David Sterba7e79cb82018-03-24 02:11:38 +01005191 btrfs_dev_replace_read_lock(&fs_info->dev_replace);
Liu Bo6fad8232017-03-14 13:33:59 -07005192 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) &&
5193 fs_info->dev_replace.tgtdev)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005194 ret++;
David Sterba7e79cb82018-03-24 02:11:38 +01005195 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005196
Chris Masonf1885912008-04-09 16:28:12 -04005197 return ret;
5198}
5199
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005200unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005201 u64 logical)
5202{
5203 struct extent_map *em;
5204 struct map_lookup *map;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005205 unsigned long len = fs_info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05005206
Liu Bo592d92e2017-03-14 13:33:55 -07005207 em = get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005208
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005209 if (!WARN_ON(IS_ERR(em))) {
5210 map = em->map_lookup;
5211 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5212 len = map->stripe_len * nr_data_stripes(map);
5213 free_extent_map(em);
5214 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005215 return len;
5216}
5217
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03005218int btrfs_is_parity_mirror(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
David Woodhouse53b381b2013-01-29 18:40:14 -05005219{
5220 struct extent_map *em;
5221 struct map_lookup *map;
David Woodhouse53b381b2013-01-29 18:40:14 -05005222 int ret = 0;
5223
Liu Bo592d92e2017-03-14 13:33:55 -07005224 em = get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005225
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005226 if(!WARN_ON(IS_ERR(em))) {
5227 map = em->map_lookup;
5228 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5229 ret = 1;
5230 free_extent_map(em);
5231 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005232 return ret;
5233}
5234
Stefan Behrens30d98612012-11-06 14:52:18 +01005235static int find_live_mirror(struct btrfs_fs_info *fs_info,
Anand Jain99f92a72018-03-14 16:29:12 +08005236 struct map_lookup *map, int first,
Anand Jain8ba0ae72018-03-14 16:29:13 +08005237 int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005238{
5239 int i;
Anand Jain99f92a72018-03-14 16:29:12 +08005240 int num_stripes;
Anand Jain8ba0ae72018-03-14 16:29:13 +08005241 int preferred_mirror;
Stefan Behrens30d98612012-11-06 14:52:18 +01005242 int tolerance;
5243 struct btrfs_device *srcdev;
5244
Anand Jain99f92a72018-03-14 16:29:12 +08005245 ASSERT((map->type &
5246 (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)));
5247
5248 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5249 num_stripes = map->sub_stripes;
5250 else
5251 num_stripes = map->num_stripes;
5252
Anand Jain8ba0ae72018-03-14 16:29:13 +08005253 preferred_mirror = first + current->pid % num_stripes;
5254
Stefan Behrens30d98612012-11-06 14:52:18 +01005255 if (dev_replace_is_ongoing &&
5256 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5257 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5258 srcdev = fs_info->dev_replace.srcdev;
5259 else
5260 srcdev = NULL;
5261
5262 /*
5263 * try to avoid the drive that is the source drive for a
5264 * dev-replace procedure, only choose it if no other non-missing
5265 * mirror is available
5266 */
5267 for (tolerance = 0; tolerance < 2; tolerance++) {
Anand Jain8ba0ae72018-03-14 16:29:13 +08005268 if (map->stripes[preferred_mirror].dev->bdev &&
5269 (tolerance || map->stripes[preferred_mirror].dev != srcdev))
5270 return preferred_mirror;
Anand Jain99f92a72018-03-14 16:29:12 +08005271 for (i = first; i < first + num_stripes; i++) {
Stefan Behrens30d98612012-11-06 14:52:18 +01005272 if (map->stripes[i].dev->bdev &&
5273 (tolerance || map->stripes[i].dev != srcdev))
5274 return i;
5275 }
Chris Masondfe25022008-05-13 13:46:40 -04005276 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005277
Chris Masondfe25022008-05-13 13:46:40 -04005278 /* we couldn't find one that doesn't fail. Just return something
5279 * and the io error handling code will clean up eventually
5280 */
Anand Jain8ba0ae72018-03-14 16:29:13 +08005281 return preferred_mirror;
Chris Masondfe25022008-05-13 13:46:40 -04005282}
5283
David Woodhouse53b381b2013-01-29 18:40:14 -05005284static inline int parity_smaller(u64 a, u64 b)
5285{
5286 return a > b;
5287}
5288
5289/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005290static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005291{
5292 struct btrfs_bio_stripe s;
5293 int i;
5294 u64 l;
5295 int again = 1;
5296
5297 while (again) {
5298 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005299 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005300 if (parity_smaller(bbio->raid_map[i],
5301 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005302 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005303 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005304 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005305 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005306 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005307 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005308
David Woodhouse53b381b2013-01-29 18:40:14 -05005309 again = 1;
5310 }
5311 }
5312 }
5313}
5314
Zhao Lei6e9606d2015-01-20 15:11:34 +08005315static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5316{
5317 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005318 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005319 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005320 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005321 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005322 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005323 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005324 /*
5325 * plus the raid_map, which includes both the tgt dev
5326 * and the stripes
5327 */
5328 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005329 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005330
5331 atomic_set(&bbio->error, 0);
Elena Reshetova140475a2017-03-03 10:55:10 +02005332 refcount_set(&bbio->refs, 1);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005333
5334 return bbio;
5335}
5336
5337void btrfs_get_bbio(struct btrfs_bio *bbio)
5338{
Elena Reshetova140475a2017-03-03 10:55:10 +02005339 WARN_ON(!refcount_read(&bbio->refs));
5340 refcount_inc(&bbio->refs);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005341}
5342
5343void btrfs_put_bbio(struct btrfs_bio *bbio)
5344{
5345 if (!bbio)
5346 return;
Elena Reshetova140475a2017-03-03 10:55:10 +02005347 if (refcount_dec_and_test(&bbio->refs))
Zhao Lei6e9606d2015-01-20 15:11:34 +08005348 kfree(bbio);
5349}
5350
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005351/* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */
5352/*
5353 * Please note that, discard won't be sent to target device of device
5354 * replace.
5355 */
5356static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info,
5357 u64 logical, u64 length,
5358 struct btrfs_bio **bbio_ret)
5359{
5360 struct extent_map *em;
5361 struct map_lookup *map;
5362 struct btrfs_bio *bbio;
5363 u64 offset;
5364 u64 stripe_nr;
5365 u64 stripe_nr_end;
5366 u64 stripe_end_offset;
5367 u64 stripe_cnt;
5368 u64 stripe_len;
5369 u64 stripe_offset;
5370 u64 num_stripes;
5371 u32 stripe_index;
5372 u32 factor = 0;
5373 u32 sub_stripes = 0;
5374 u64 stripes_per_dev = 0;
5375 u32 remaining_stripes = 0;
5376 u32 last_stripe = 0;
5377 int ret = 0;
5378 int i;
5379
5380 /* discard always return a bbio */
5381 ASSERT(bbio_ret);
5382
5383 em = get_chunk_map(fs_info, logical, length);
5384 if (IS_ERR(em))
5385 return PTR_ERR(em);
5386
5387 map = em->map_lookup;
5388 /* we don't discard raid56 yet */
5389 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
5390 ret = -EOPNOTSUPP;
5391 goto out;
5392 }
5393
5394 offset = logical - em->start;
5395 length = min_t(u64, em->len - offset, length);
5396
5397 stripe_len = map->stripe_len;
5398 /*
5399 * stripe_nr counts the total number of stripes we have to stride
5400 * to get to this block
5401 */
5402 stripe_nr = div64_u64(offset, stripe_len);
5403
5404 /* stripe_offset is the offset of this block in its stripe */
5405 stripe_offset = offset - stripe_nr * stripe_len;
5406
5407 stripe_nr_end = round_up(offset + length, map->stripe_len);
Liu Bo42c61ab2017-04-03 13:45:24 -07005408 stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005409 stripe_cnt = stripe_nr_end - stripe_nr;
5410 stripe_end_offset = stripe_nr_end * map->stripe_len -
5411 (offset + length);
5412 /*
5413 * after this, stripe_nr is the number of stripes on this
5414 * device we have to walk to find the data, and stripe_index is
5415 * the number of our device in the stripe array
5416 */
5417 num_stripes = 1;
5418 stripe_index = 0;
5419 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5420 BTRFS_BLOCK_GROUP_RAID10)) {
5421 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5422 sub_stripes = 1;
5423 else
5424 sub_stripes = map->sub_stripes;
5425
5426 factor = map->num_stripes / sub_stripes;
5427 num_stripes = min_t(u64, map->num_stripes,
5428 sub_stripes * stripe_cnt);
5429 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
5430 stripe_index *= sub_stripes;
5431 stripes_per_dev = div_u64_rem(stripe_cnt, factor,
5432 &remaining_stripes);
5433 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5434 last_stripe *= sub_stripes;
5435 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5436 BTRFS_BLOCK_GROUP_DUP)) {
5437 num_stripes = map->num_stripes;
5438 } else {
5439 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5440 &stripe_index);
5441 }
5442
5443 bbio = alloc_btrfs_bio(num_stripes, 0);
5444 if (!bbio) {
5445 ret = -ENOMEM;
5446 goto out;
5447 }
5448
5449 for (i = 0; i < num_stripes; i++) {
5450 bbio->stripes[i].physical =
5451 map->stripes[stripe_index].physical +
5452 stripe_offset + stripe_nr * map->stripe_len;
5453 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
5454
5455 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5456 BTRFS_BLOCK_GROUP_RAID10)) {
5457 bbio->stripes[i].length = stripes_per_dev *
5458 map->stripe_len;
5459
5460 if (i / sub_stripes < remaining_stripes)
5461 bbio->stripes[i].length +=
5462 map->stripe_len;
5463
5464 /*
5465 * Special for the first stripe and
5466 * the last stripe:
5467 *
5468 * |-------|...|-------|
5469 * |----------|
5470 * off end_off
5471 */
5472 if (i < sub_stripes)
5473 bbio->stripes[i].length -=
5474 stripe_offset;
5475
5476 if (stripe_index >= last_stripe &&
5477 stripe_index <= (last_stripe +
5478 sub_stripes - 1))
5479 bbio->stripes[i].length -=
5480 stripe_end_offset;
5481
5482 if (i == sub_stripes - 1)
5483 stripe_offset = 0;
5484 } else {
5485 bbio->stripes[i].length = length;
5486 }
5487
5488 stripe_index++;
5489 if (stripe_index == map->num_stripes) {
5490 stripe_index = 0;
5491 stripe_nr++;
5492 }
5493 }
5494
5495 *bbio_ret = bbio;
5496 bbio->map_type = map->type;
5497 bbio->num_stripes = num_stripes;
5498out:
5499 free_extent_map(em);
5500 return ret;
5501}
5502
Liu Bo5ab56092017-03-14 13:33:57 -07005503/*
5504 * In dev-replace case, for repair case (that's the only case where the mirror
5505 * is selected explicitly when calling btrfs_map_block), blocks left of the
5506 * left cursor can also be read from the target drive.
5507 *
5508 * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the
5509 * array of stripes.
5510 * For READ, it also needs to be supported using the same mirror number.
5511 *
5512 * If the requested block is not left of the left cursor, EIO is returned. This
5513 * can happen because btrfs_num_copies() returns one more in the dev-replace
5514 * case.
5515 */
5516static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info,
5517 u64 logical, u64 length,
5518 u64 srcdev_devid, int *mirror_num,
5519 u64 *physical)
5520{
5521 struct btrfs_bio *bbio = NULL;
5522 int num_stripes;
5523 int index_srcdev = 0;
5524 int found = 0;
5525 u64 physical_of_found = 0;
5526 int i;
5527 int ret = 0;
5528
5529 ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
5530 logical, &length, &bbio, 0, 0);
5531 if (ret) {
5532 ASSERT(bbio == NULL);
5533 return ret;
5534 }
5535
5536 num_stripes = bbio->num_stripes;
5537 if (*mirror_num > num_stripes) {
5538 /*
5539 * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror,
5540 * that means that the requested area is not left of the left
5541 * cursor
5542 */
5543 btrfs_put_bbio(bbio);
5544 return -EIO;
5545 }
5546
5547 /*
5548 * process the rest of the function using the mirror_num of the source
5549 * drive. Therefore look it up first. At the end, patch the device
5550 * pointer to the one of the target drive.
5551 */
5552 for (i = 0; i < num_stripes; i++) {
5553 if (bbio->stripes[i].dev->devid != srcdev_devid)
5554 continue;
5555
5556 /*
5557 * In case of DUP, in order to keep it simple, only add the
5558 * mirror with the lowest physical address
5559 */
5560 if (found &&
5561 physical_of_found <= bbio->stripes[i].physical)
5562 continue;
5563
5564 index_srcdev = i;
5565 found = 1;
5566 physical_of_found = bbio->stripes[i].physical;
5567 }
5568
5569 btrfs_put_bbio(bbio);
5570
5571 ASSERT(found);
5572 if (!found)
5573 return -EIO;
5574
5575 *mirror_num = index_srcdev + 1;
5576 *physical = physical_of_found;
5577 return ret;
5578}
5579
Liu Bo73c0f222017-03-14 13:33:58 -07005580static void handle_ops_on_dev_replace(enum btrfs_map_op op,
5581 struct btrfs_bio **bbio_ret,
5582 struct btrfs_dev_replace *dev_replace,
5583 int *num_stripes_ret, int *max_errors_ret)
5584{
5585 struct btrfs_bio *bbio = *bbio_ret;
5586 u64 srcdev_devid = dev_replace->srcdev->devid;
5587 int tgtdev_indexes = 0;
5588 int num_stripes = *num_stripes_ret;
5589 int max_errors = *max_errors_ret;
5590 int i;
5591
5592 if (op == BTRFS_MAP_WRITE) {
5593 int index_where_to_add;
5594
5595 /*
5596 * duplicate the write operations while the dev replace
5597 * procedure is running. Since the copying of the old disk to
5598 * the new disk takes place at run time while the filesystem is
5599 * mounted writable, the regular write operations to the old
5600 * disk have to be duplicated to go to the new disk as well.
5601 *
5602 * Note that device->missing is handled by the caller, and that
5603 * the write to the old disk is already set up in the stripes
5604 * array.
5605 */
5606 index_where_to_add = num_stripes;
5607 for (i = 0; i < num_stripes; i++) {
5608 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5609 /* write to new disk, too */
5610 struct btrfs_bio_stripe *new =
5611 bbio->stripes + index_where_to_add;
5612 struct btrfs_bio_stripe *old =
5613 bbio->stripes + i;
5614
5615 new->physical = old->physical;
5616 new->length = old->length;
5617 new->dev = dev_replace->tgtdev;
5618 bbio->tgtdev_map[i] = index_where_to_add;
5619 index_where_to_add++;
5620 max_errors++;
5621 tgtdev_indexes++;
5622 }
5623 }
5624 num_stripes = index_where_to_add;
5625 } else if (op == BTRFS_MAP_GET_READ_MIRRORS) {
5626 int index_srcdev = 0;
5627 int found = 0;
5628 u64 physical_of_found = 0;
5629
5630 /*
5631 * During the dev-replace procedure, the target drive can also
5632 * be used to read data in case it is needed to repair a corrupt
5633 * block elsewhere. This is possible if the requested area is
5634 * left of the left cursor. In this area, the target drive is a
5635 * full copy of the source drive.
5636 */
5637 for (i = 0; i < num_stripes; i++) {
5638 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5639 /*
5640 * In case of DUP, in order to keep it simple,
5641 * only add the mirror with the lowest physical
5642 * address
5643 */
5644 if (found &&
5645 physical_of_found <=
5646 bbio->stripes[i].physical)
5647 continue;
5648 index_srcdev = i;
5649 found = 1;
5650 physical_of_found = bbio->stripes[i].physical;
5651 }
5652 }
5653 if (found) {
5654 struct btrfs_bio_stripe *tgtdev_stripe =
5655 bbio->stripes + num_stripes;
5656
5657 tgtdev_stripe->physical = physical_of_found;
5658 tgtdev_stripe->length =
5659 bbio->stripes[index_srcdev].length;
5660 tgtdev_stripe->dev = dev_replace->tgtdev;
5661 bbio->tgtdev_map[index_srcdev] = num_stripes;
5662
5663 tgtdev_indexes++;
5664 num_stripes++;
5665 }
5666 }
5667
5668 *num_stripes_ret = num_stripes;
5669 *max_errors_ret = max_errors;
5670 bbio->num_tgtdevs = tgtdev_indexes;
5671 *bbio_ret = bbio;
5672}
5673
Liu Bo2b19a1f2017-03-14 13:34:00 -07005674static bool need_full_stripe(enum btrfs_map_op op)
5675{
5676 return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS);
5677}
5678
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005679static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
5680 enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005681 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005682 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005683 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005684{
5685 struct extent_map *em;
5686 struct map_lookup *map;
Chris Mason0b86a832008-03-24 15:01:56 -04005687 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005688 u64 stripe_offset;
5689 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005690 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005691 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005692 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005693 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005694 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005695 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005696 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005697 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005698 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5699 int dev_replace_is_ongoing = 0;
5700 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005701 int patch_the_first_stripe_for_dev_replace = 0;
5702 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005703 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005704
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005705 if (op == BTRFS_MAP_DISCARD)
5706 return __btrfs_map_block_for_discard(fs_info, logical,
5707 *length, bbio_ret);
5708
Liu Bo592d92e2017-03-14 13:33:55 -07005709 em = get_chunk_map(fs_info, logical, *length);
5710 if (IS_ERR(em))
5711 return PTR_ERR(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005712
Jeff Mahoney95617d62015-06-03 10:55:48 -04005713 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005714 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005715
David Woodhouse53b381b2013-01-29 18:40:14 -05005716 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005717 stripe_nr = offset;
5718 /*
5719 * stripe_nr counts the total number of stripes we have to stride
5720 * to get to this block
5721 */
David Sterba47c57132015-02-20 18:43:47 +01005722 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005723
David Woodhouse53b381b2013-01-29 18:40:14 -05005724 stripe_offset = stripe_nr * stripe_len;
Josef Bacike042d1e2016-04-12 12:54:40 -04005725 if (offset < stripe_offset) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005726 btrfs_crit(fs_info,
5727 "stripe math has gone wrong, stripe_offset=%llu, offset=%llu, start=%llu, logical=%llu, stripe_len=%llu",
Josef Bacike042d1e2016-04-12 12:54:40 -04005728 stripe_offset, offset, em->start, logical,
5729 stripe_len);
5730 free_extent_map(em);
5731 return -EINVAL;
5732 }
Chris Mason593060d2008-03-25 16:50:33 -04005733
5734 /* stripe_offset is the offset of this block in its stripe*/
5735 stripe_offset = offset - stripe_offset;
5736
David Woodhouse53b381b2013-01-29 18:40:14 -05005737 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005738 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005739 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5740 raid56_full_stripe_start = offset;
5741
5742 /* allow a write of a full stripe, but make sure we don't
5743 * allow straddling of stripes
5744 */
David Sterba47c57132015-02-20 18:43:47 +01005745 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5746 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005747 raid56_full_stripe_start *= full_stripe_len;
5748 }
5749
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005750 if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005751 u64 max_len;
5752 /* For writes to RAID[56], allow a full stripeset across all disks.
5753 For other RAID types and for RAID[56] reads, just allow a single
5754 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005755 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005756 (op == BTRFS_MAP_WRITE)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005757 max_len = stripe_len * nr_data_stripes(map) -
5758 (offset - raid56_full_stripe_start);
5759 } else {
5760 /* we limit the length of each bio to what fits in a stripe */
5761 max_len = stripe_len - stripe_offset;
5762 }
5763 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005764 } else {
5765 *length = em->len - offset;
5766 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005767
David Woodhouse53b381b2013-01-29 18:40:14 -05005768 /* This is for when we're called from btrfs_merge_bio_hook() and all
5769 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005770 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005771 goto out;
5772
David Sterba7e79cb82018-03-24 02:11:38 +01005773 btrfs_dev_replace_read_lock(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005774 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5775 if (!dev_replace_is_ongoing)
David Sterba7e79cb82018-03-24 02:11:38 +01005776 btrfs_dev_replace_read_unlock(dev_replace);
Liu Bo73beece2015-07-17 16:49:19 +08005777 else
5778 btrfs_dev_replace_set_lock_blocking(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005779
Stefan Behrensad6d6202012-11-06 15:06:47 +01005780 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005781 !need_full_stripe(op) && dev_replace->tgtdev != NULL) {
Liu Bo5ab56092017-03-14 13:33:57 -07005782 ret = get_extra_mirror_from_replace(fs_info, logical, *length,
5783 dev_replace->srcdev->devid,
5784 &mirror_num,
5785 &physical_to_patch_in_first_stripe);
5786 if (ret)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005787 goto out;
Liu Bo5ab56092017-03-14 13:33:57 -07005788 else
5789 patch_the_first_stripe_for_dev_replace = 1;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005790 } else if (mirror_num > map->num_stripes) {
5791 mirror_num = 0;
5792 }
5793
Chris Masonf2d8d742008-04-21 10:03:05 -04005794 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005795 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005796 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
David Sterba47c57132015-02-20 18:43:47 +01005797 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5798 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08005799 if (!need_full_stripe(op))
Miao Xie28e1cc72014-09-12 18:44:02 +08005800 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005801 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Anand Jainde483732017-10-12 16:43:00 +08005802 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04005803 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005804 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005805 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005806 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005807 stripe_index = find_live_mirror(fs_info, map, 0,
Stefan Behrens30d98612012-11-06 14:52:18 +01005808 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005809 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005810 }
Chris Mason2fff7342008-04-29 14:12:09 -04005811
Chris Mason611f0e02008-04-03 16:29:03 -04005812 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Anand Jainde483732017-10-12 16:43:00 +08005813 if (need_full_stripe(op)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005814 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005815 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005816 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005817 } else {
5818 mirror_num = 1;
5819 }
Chris Mason2fff7342008-04-29 14:12:09 -04005820
Chris Mason321aecc2008-04-16 10:49:51 -04005821 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005822 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005823
David Sterba47c57132015-02-20 18:43:47 +01005824 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005825 stripe_index *= map->sub_stripes;
5826
Anand Jainde483732017-10-12 16:43:00 +08005827 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04005828 num_stripes = map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005829 else if (mirror_num)
5830 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005831 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005832 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005833 stripe_index = find_live_mirror(fs_info, map,
5834 stripe_index,
Stefan Behrens30d98612012-11-06 14:52:18 +01005835 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005836 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005837 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005838
Zhao Leiffe2d202015-01-20 15:11:44 +08005839 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Anand Jainde483732017-10-12 16:43:00 +08005840 if (need_raid_map && (need_full_stripe(op) || mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005841 /* push stripe_nr back to the start of the full stripe */
Liu Bo42c61ab2017-04-03 13:45:24 -07005842 stripe_nr = div64_u64(raid56_full_stripe_start,
David Sterbab8b93ad2015-01-16 17:26:13 +01005843 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005844
5845 /* RAID[56] write or recovery. Return all stripes */
5846 num_stripes = map->num_stripes;
5847 max_errors = nr_parity_stripes(map);
5848
David Woodhouse53b381b2013-01-29 18:40:14 -05005849 *length = map->stripe_len;
5850 stripe_index = 0;
5851 stripe_offset = 0;
5852 } else {
5853 /*
5854 * Mirror #0 or #1 means the original data block.
5855 * Mirror #2 is RAID5 parity block.
5856 * Mirror #3 is RAID6 Q block.
5857 */
David Sterba47c57132015-02-20 18:43:47 +01005858 stripe_nr = div_u64_rem(stripe_nr,
5859 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005860 if (mirror_num > 1)
5861 stripe_index = nr_data_stripes(map) +
5862 mirror_num - 2;
5863
5864 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005865 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5866 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08005867 if (!need_full_stripe(op) && mirror_num <= 1)
Miao Xie28e1cc72014-09-12 18:44:02 +08005868 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005869 }
Chris Mason8790d502008-04-03 16:29:03 -04005870 } else {
5871 /*
David Sterba47c57132015-02-20 18:43:47 +01005872 * after this, stripe_nr is the number of stripes on this
5873 * device we have to walk to find the data, and stripe_index is
5874 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005875 */
David Sterba47c57132015-02-20 18:43:47 +01005876 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5877 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005878 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005879 }
Josef Bacike042d1e2016-04-12 12:54:40 -04005880 if (stripe_index >= map->num_stripes) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005881 btrfs_crit(fs_info,
5882 "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u",
Josef Bacike042d1e2016-04-12 12:54:40 -04005883 stripe_index, map->num_stripes);
5884 ret = -EINVAL;
5885 goto out;
5886 }
Chris Mason593060d2008-03-25 16:50:33 -04005887
Stefan Behrens472262f2012-11-06 14:43:46 +01005888 num_alloc_stripes = num_stripes;
Liu Bo6fad8232017-03-14 13:33:59 -07005889 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005890 if (op == BTRFS_MAP_WRITE)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005891 num_alloc_stripes <<= 1;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005892 if (op == BTRFS_MAP_GET_READ_MIRRORS)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005893 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005894 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005895 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005896
Zhao Lei6e9606d2015-01-20 15:11:34 +08005897 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005898 if (!bbio) {
5899 ret = -ENOMEM;
5900 goto out;
5901 }
Liu Bo6fad8232017-03-14 13:33:59 -07005902 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL)
Miao Xie2c8cdd62014-11-14 16:06:25 +08005903 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005904
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005905 /* build raid_map */
Liu Bo2b19a1f2017-03-14 13:34:00 -07005906 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map &&
5907 (need_full_stripe(op) || mirror_num > 1)) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005908 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005909 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005910
5911 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5912 sizeof(struct btrfs_bio_stripe) *
5913 num_alloc_stripes +
5914 sizeof(int) * tgtdev_indexes);
5915
5916 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005917 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005918
5919 /* Fill in the logical address of each stripe */
5920 tmp = stripe_nr * nr_data_stripes(map);
5921 for (i = 0; i < nr_data_stripes(map); i++)
5922 bbio->raid_map[(i+rot) % num_stripes] =
5923 em->start + (tmp + i) * map->stripe_len;
5924
5925 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5926 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5927 bbio->raid_map[(i+rot+1) % num_stripes] =
5928 RAID6_Q_STRIPE;
5929 }
5930
Li Zefanec9ef7a2011-12-01 14:06:42 +08005931
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005932 for (i = 0; i < num_stripes; i++) {
5933 bbio->stripes[i].physical =
5934 map->stripes[stripe_index].physical +
5935 stripe_offset +
5936 stripe_nr * map->stripe_len;
5937 bbio->stripes[i].dev =
5938 map->stripes[stripe_index].dev;
5939 stripe_index++;
Chris Mason593060d2008-03-25 16:50:33 -04005940 }
Li Zefande11cc12011-12-01 12:55:47 +08005941
Liu Bo2b19a1f2017-03-14 13:34:00 -07005942 if (need_full_stripe(op))
Miao Xied20983b2014-07-03 18:22:13 +08005943 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005944
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005945 if (bbio->raid_map)
5946 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005947
Liu Bo73c0f222017-03-14 13:33:58 -07005948 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005949 need_full_stripe(op)) {
Liu Bo73c0f222017-03-14 13:33:58 -07005950 handle_ops_on_dev_replace(op, &bbio, dev_replace, &num_stripes,
5951 &max_errors);
Stefan Behrens472262f2012-11-06 14:43:46 +01005952 }
5953
Li Zefande11cc12011-12-01 12:55:47 +08005954 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005955 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005956 bbio->num_stripes = num_stripes;
5957 bbio->max_errors = max_errors;
5958 bbio->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005959
5960 /*
5961 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5962 * mirror_num == num_stripes + 1 && dev_replace target drive is
5963 * available as a mirror
5964 */
5965 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5966 WARN_ON(num_stripes > 1);
5967 bbio->stripes[0].dev = dev_replace->tgtdev;
5968 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5969 bbio->mirror_num = map->num_stripes + 1;
5970 }
Chris Masoncea9e442008-04-09 16:28:12 -04005971out:
Liu Bo73beece2015-07-17 16:49:19 +08005972 if (dev_replace_is_ongoing) {
5973 btrfs_dev_replace_clear_lock_blocking(dev_replace);
David Sterba7e79cb82018-03-24 02:11:38 +01005974 btrfs_dev_replace_read_unlock(dev_replace);
Liu Bo73beece2015-07-17 16:49:19 +08005975 }
Chris Mason0b86a832008-03-24 15:01:56 -04005976 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005977 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005978}
5979
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005980int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005981 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005982 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005983{
Mike Christieb3d3fa52016-06-05 14:31:53 -05005984 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005985 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005986}
5987
Miao Xieaf8e2d12014-10-23 14:42:50 +08005988/* For Scrub/replace */
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005989int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Miao Xieaf8e2d12014-10-23 14:42:50 +08005990 u64 logical, u64 *length,
David Sterba825ad4c2017-03-28 14:45:22 +02005991 struct btrfs_bio **bbio_ret)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005992{
David Sterba825ad4c2017-03-28 14:45:22 +02005993 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, 0, 1);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005994}
5995
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04005996int btrfs_rmap_block(struct btrfs_fs_info *fs_info,
Yan Zhenga512bbf2008-12-08 16:46:26 -05005997 u64 chunk_start, u64 physical, u64 devid,
5998 u64 **logical, int *naddrs, int *stripe_len)
5999{
Yan Zhenga512bbf2008-12-08 16:46:26 -05006000 struct extent_map *em;
6001 struct map_lookup *map;
6002 u64 *buf;
6003 u64 bytenr;
6004 u64 length;
6005 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05006006 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05006007 int i, j, nr = 0;
6008
Liu Bo592d92e2017-03-14 13:33:55 -07006009 em = get_chunk_map(fs_info, chunk_start, 1);
6010 if (IS_ERR(em))
Josef Bacik835d9742013-03-19 12:13:25 -04006011 return -EIO;
Josef Bacik835d9742013-03-19 12:13:25 -04006012
Jeff Mahoney95617d62015-06-03 10:55:48 -04006013 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05006014 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05006015 rmap_len = map->stripe_len;
6016
Yan Zhenga512bbf2008-12-08 16:46:26 -05006017 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01006018 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006019 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01006020 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08006021 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01006022 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05006023 rmap_len = map->stripe_len * nr_data_stripes(map);
6024 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05006025
David Sterba31e818f2015-02-20 18:00:26 +01006026 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006027 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05006028
6029 for (i = 0; i < map->num_stripes; i++) {
6030 if (devid && map->stripes[i].dev->devid != devid)
6031 continue;
6032 if (map->stripes[i].physical > physical ||
6033 map->stripes[i].physical + length <= physical)
6034 continue;
6035
6036 stripe_nr = physical - map->stripes[i].physical;
Liu Bo42c61ab2017-04-03 13:45:24 -07006037 stripe_nr = div64_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006038
6039 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
6040 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01006041 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006042 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
6043 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05006044 } /* else if RAID[56], multiply by nr_data_stripes().
6045 * Alternatively, just use rmap_len below instead of
6046 * map->stripe_len */
6047
6048 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05006049 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006050 for (j = 0; j < nr; j++) {
6051 if (buf[j] == bytenr)
6052 break;
6053 }
Chris Mason934d3752008-12-08 16:43:10 -05006054 if (j == nr) {
6055 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006056 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05006057 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05006058 }
6059
Yan Zhenga512bbf2008-12-08 16:46:26 -05006060 *logical = buf;
6061 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05006062 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05006063
6064 free_extent_map(em);
6065 return 0;
6066}
6067
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006068static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08006069{
Mike Snitzer326e1db2015-05-22 09:14:03 -04006070 bio->bi_private = bbio->private;
6071 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006072 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04006073
Zhao Lei6e9606d2015-01-20 15:11:34 +08006074 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08006075}
6076
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006077static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04006078{
Chris Mason9be33952013-05-17 18:30:14 -04006079 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006080 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04006081
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006082 if (bio->bi_status) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02006083 atomic_inc(&bbio->error);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006084 if (bio->bi_status == BLK_STS_IOERR ||
6085 bio->bi_status == BLK_STS_TARGET) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02006086 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04006087 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08006088 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02006089
6090 BUG_ON(stripe_index >= bbio->num_stripes);
6091 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02006092 if (dev->bdev) {
Mike Christie37226b22016-06-05 14:31:52 -05006093 if (bio_op(bio) == REQ_OP_WRITE)
Anand Jain1cb34c82017-10-21 01:45:33 +08006094 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006095 BTRFS_DEV_STAT_WRITE_ERRS);
6096 else
Anand Jain1cb34c82017-10-21 01:45:33 +08006097 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006098 BTRFS_DEV_STAT_READ_ERRS);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06006099 if (bio->bi_opf & REQ_PREFLUSH)
Anand Jain1cb34c82017-10-21 01:45:33 +08006100 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006101 BTRFS_DEV_STAT_FLUSH_ERRS);
Stefan Behrens597a60f2012-06-14 16:42:31 +02006102 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02006103 }
6104 }
Chris Mason8790d502008-04-03 16:29:03 -04006105
Jan Schmidta1d3c472011-08-04 17:15:33 +02006106 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04006107 is_orig_bio = 1;
6108
Miao Xiec404e0d2014-01-30 16:46:55 +08006109 btrfs_bio_counter_dec(bbio->fs_info);
6110
Jan Schmidta1d3c472011-08-04 17:15:33 +02006111 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04006112 if (!is_orig_bio) {
6113 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006114 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006115 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07006116
Chris Mason9be33952013-05-17 18:30:14 -04006117 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04006118 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05006119 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04006120 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02006121 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006122 bio->bi_status = BLK_STS_IOERR;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05006123 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04006124 /*
6125 * this bio is actually up to date, we didn't
6126 * go over the max number of errors
6127 */
Anand Jain2dbe0c72017-10-14 08:35:56 +08006128 bio->bi_status = BLK_STS_OK;
Chris Mason1259ab72008-05-12 13:39:03 -04006129 }
Miao Xiec55f1392014-06-19 10:42:54 +08006130
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006131 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04006132 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04006133 bio_put(bio);
6134 }
Chris Mason8790d502008-04-03 16:29:03 -04006135}
6136
Chris Mason8b712842008-06-11 16:50:36 -04006137/*
6138 * see run_scheduled_bios for a description of why bios are collected for
6139 * async submit.
6140 *
6141 * This will add one bio to the pending list for a device and make sure
6142 * the work struct is scheduled.
6143 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006144static noinline void btrfs_schedule_bio(struct btrfs_device *device,
Mike Christie4e49ea42016-06-05 14:31:41 -05006145 struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04006146{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006147 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -04006148 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04006149 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006150
Anand Jaine6e674b2017-12-04 12:54:54 +08006151 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state) ||
6152 !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006153 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05006154 return;
6155 }
6156
Chris Mason8b712842008-06-11 16:50:36 -04006157 /* don't bother with additional async steps for reads, right now */
Mike Christie37226b22016-06-05 14:31:52 -05006158 if (bio_op(bio) == REQ_OP_READ) {
Mike Christie4e49ea42016-06-05 14:31:41 -05006159 btrfsic_submit_bio(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01006160 return;
Chris Mason8b712842008-06-11 16:50:36 -04006161 }
6162
Chris Mason492bb6de2008-07-31 16:29:02 -04006163 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04006164 bio->bi_next = NULL;
Chris Mason8b712842008-06-11 16:50:36 -04006165
6166 spin_lock(&device->io_lock);
Christoph Hellwig67f055c2016-11-01 07:40:06 -06006167 if (op_is_sync(bio->bi_opf))
Chris Masonffbd5172009-04-20 15:50:09 -04006168 pending_bios = &device->pending_sync_bios;
6169 else
6170 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006171
Chris Masonffbd5172009-04-20 15:50:09 -04006172 if (pending_bios->tail)
6173 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006174
Chris Masonffbd5172009-04-20 15:50:09 -04006175 pending_bios->tail = bio;
6176 if (!pending_bios->head)
6177 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006178 if (device->running_pending)
6179 should_queue = 0;
6180
6181 spin_unlock(&device->io_lock);
6182
6183 if (should_queue)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006184 btrfs_queue_work(fs_info->submit_workers, &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04006185}
6186
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006187static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio,
6188 u64 physical, int dev_nr, int async)
Josef Bacikde1ee922012-10-19 16:50:56 -04006189{
6190 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006191 struct btrfs_fs_info *fs_info = bbio->fs_info;
Josef Bacikde1ee922012-10-19 16:50:56 -04006192
6193 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04006194 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04006195 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006196 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04006197#ifdef DEBUG
6198 {
6199 struct rcu_string *name;
6200
6201 rcu_read_lock();
6202 name = rcu_dereference(dev->name);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006203 btrfs_debug(fs_info,
6204 "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u",
6205 bio_op(bio), bio->bi_opf,
6206 (u64)bio->bi_iter.bi_sector,
6207 (u_long)dev->bdev->bd_dev, name->str, dev->devid,
6208 bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006209 rcu_read_unlock();
6210 }
6211#endif
Christoph Hellwig74d46992017-08-23 19:10:32 +02006212 bio_set_dev(bio, dev->bdev);
Miao Xiec404e0d2014-01-30 16:46:55 +08006213
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006214 btrfs_bio_counter_inc_noblocked(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006215
Josef Bacikde1ee922012-10-19 16:50:56 -04006216 if (async)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006217 btrfs_schedule_bio(dev, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006218 else
Mike Christie4e49ea42016-06-05 14:31:41 -05006219 btrfsic_submit_bio(bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006220}
6221
Josef Bacikde1ee922012-10-19 16:50:56 -04006222static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6223{
6224 atomic_inc(&bbio->error);
6225 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Nicholas D Steeves01327612016-05-19 21:18:45 -04006226 /* Should be the original bio. */
Miao Xie8408c712014-06-19 10:42:55 +08006227 WARN_ON(bio != bbio->orig_bio);
6228
Chris Mason9be33952013-05-17 18:30:14 -04006229 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006230 bio->bi_iter.bi_sector = logical >> 9;
Anand Jain102ed2c2017-10-14 08:34:02 +08006231 if (atomic_read(&bbio->error) > bbio->max_errors)
6232 bio->bi_status = BLK_STS_IOERR;
6233 else
6234 bio->bi_status = BLK_STS_OK;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006235 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006236 }
6237}
6238
Omar Sandoval58efbc92017-08-22 23:45:59 -07006239blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
6240 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006241{
Chris Mason0b86a832008-03-24 15:01:56 -04006242 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006243 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006244 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006245 u64 length = 0;
6246 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006247 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006248 int dev_nr;
6249 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006250 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006251
Kent Overstreet4f024f32013-10-11 15:44:27 -07006252 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006253 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006254
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006255 btrfs_bio_counter_inc_blocked(fs_info);
Liu Bobd7d63c2017-09-19 17:50:09 -06006256 ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical,
Mike Christie37226b22016-06-05 14:31:52 -05006257 &map_length, &bbio, mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006258 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006259 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006260 return errno_to_blk_status(ret);
Miao Xiec404e0d2014-01-30 16:46:55 +08006261 }
Chris Masoncea9e442008-04-09 16:28:12 -04006262
Jan Schmidta1d3c472011-08-04 17:15:33 +02006263 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006264 bbio->orig_bio = first_bio;
6265 bbio->private = first_bio->bi_private;
6266 bbio->end_io = first_bio->bi_end_io;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006267 bbio->fs_info = fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006268 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6269
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006270 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Mike Christie37226b22016-06-05 14:31:52 -05006271 ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006272 /* In this case, map_length has been set to the length of
6273 a single stripe; not the whole write */
Mike Christie37226b22016-06-05 14:31:52 -05006274 if (bio_op(bio) == REQ_OP_WRITE) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006275 ret = raid56_parity_write(fs_info, bio, bbio,
6276 map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006277 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006278 ret = raid56_parity_recover(fs_info, bio, bbio,
6279 map_length, mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006280 }
Miao Xie42452152014-11-25 16:39:28 +08006281
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006282 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006283 return errno_to_blk_status(ret);
David Woodhouse53b381b2013-01-29 18:40:14 -05006284 }
6285
Chris Masoncea9e442008-04-09 16:28:12 -04006286 if (map_length < length) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006287 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006288 "mapping failed logical %llu bio len %llu len %llu",
6289 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006290 BUG();
6291 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006292
Zhao Lei08da7572015-02-12 15:42:16 +08006293 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006294 dev = bbio->stripes[dev_nr].dev;
Mike Christie37226b22016-06-05 14:31:52 -05006295 if (!dev || !dev->bdev ||
Anand Jainebbede42017-12-04 12:54:52 +08006296 (bio_op(first_bio) == REQ_OP_WRITE &&
6297 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006298 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006299 continue;
6300 }
6301
David Sterba3aa8e072017-06-02 17:38:30 +02006302 if (dev_nr < total_devs - 1)
David Sterba8b6c1d52017-06-02 17:48:13 +02006303 bio = btrfs_bio_clone(first_bio);
David Sterba3aa8e072017-06-02 17:38:30 +02006304 else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006305 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006306
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006307 submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical,
6308 dev_nr, async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006309 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006310 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006311 return BLK_STS_OK;
Chris Mason0b86a832008-03-24 15:01:56 -04006312}
6313
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006314struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006315 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006316{
Yan Zheng2b820322008-11-17 21:11:30 -05006317 struct btrfs_device *device;
6318 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006319
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006320 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006321 while (cur_devices) {
6322 if (!fsid ||
Anand Jain44880fd2017-07-29 17:50:09 +08006323 !memcmp(cur_devices->fsid, fsid, BTRFS_FSID_SIZE)) {
David Sterba35c70102017-06-15 19:51:51 +02006324 device = find_device(cur_devices, devid, uuid);
Yan Zheng2b820322008-11-17 21:11:30 -05006325 if (device)
6326 return device;
6327 }
6328 cur_devices = cur_devices->seed;
6329 }
6330 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006331}
6332
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006333static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006334 u64 devid, u8 *dev_uuid)
6335{
6336 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006337
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006338 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6339 if (IS_ERR(device))
Anand Jainadfb69a2017-10-11 12:46:18 +08006340 return device;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006341
6342 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006343 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006344 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006345
Anand Jaine6e674b2017-12-04 12:54:54 +08006346 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -05006347 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006348
Chris Masondfe25022008-05-13 13:46:40 -04006349 return device;
6350}
6351
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006352/**
6353 * btrfs_alloc_device - allocate struct btrfs_device
6354 * @fs_info: used only for generating a new devid, can be NULL if
6355 * devid is provided (i.e. @devid != NULL).
6356 * @devid: a pointer to devid for this device. If NULL a new devid
6357 * is generated.
6358 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6359 * is generated.
6360 *
6361 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
David Sterba48dae9c2017-10-30 18:10:25 +01006362 * on error. Returned struct is not linked onto any lists and must be
David Sterbaa425f9d2018-03-20 15:47:33 +01006363 * destroyed with btrfs_free_device.
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006364 */
6365struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6366 const u64 *devid,
6367 const u8 *uuid)
6368{
6369 struct btrfs_device *dev;
6370 u64 tmp;
6371
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306372 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006373 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006374
6375 dev = __alloc_device();
6376 if (IS_ERR(dev))
6377 return dev;
6378
6379 if (devid)
6380 tmp = *devid;
6381 else {
6382 int ret;
6383
6384 ret = find_next_devid(fs_info, &tmp);
6385 if (ret) {
David Sterbaa425f9d2018-03-20 15:47:33 +01006386 btrfs_free_device(dev);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006387 return ERR_PTR(ret);
6388 }
6389 }
6390 dev->devid = tmp;
6391
6392 if (uuid)
6393 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6394 else
6395 generate_random_uuid(dev->uuid);
6396
Liu Bo9e0af232014-08-15 23:36:53 +08006397 btrfs_init_work(&dev->work, btrfs_submit_helper,
6398 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006399
6400 return dev;
6401}
6402
Liu Boe06cd3d2016-06-03 12:05:15 -07006403/* Return -EIO if any error, otherwise return 0. */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006404static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006405 struct extent_buffer *leaf,
6406 struct btrfs_chunk *chunk, u64 logical)
6407{
6408 u64 length;
6409 u64 stripe_len;
6410 u16 num_stripes;
6411 u16 sub_stripes;
6412 u64 type;
6413
6414 length = btrfs_chunk_length(leaf, chunk);
6415 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6416 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6417 sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
6418 type = btrfs_chunk_type(leaf, chunk);
6419
6420 if (!num_stripes) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006421 btrfs_err(fs_info, "invalid chunk num_stripes: %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006422 num_stripes);
6423 return -EIO;
6424 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006425 if (!IS_ALIGNED(logical, fs_info->sectorsize)) {
6426 btrfs_err(fs_info, "invalid chunk logical %llu", logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006427 return -EIO;
6428 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006429 if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) {
6430 btrfs_err(fs_info, "invalid chunk sectorsize %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006431 btrfs_chunk_sector_size(leaf, chunk));
6432 return -EIO;
6433 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006434 if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) {
6435 btrfs_err(fs_info, "invalid chunk length %llu", length);
Liu Boe06cd3d2016-06-03 12:05:15 -07006436 return -EIO;
6437 }
6438 if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006439 btrfs_err(fs_info, "invalid chunk stripe length: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006440 stripe_len);
6441 return -EIO;
6442 }
6443 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6444 type) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006445 btrfs_err(fs_info, "unrecognized chunk type: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006446 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6447 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6448 btrfs_chunk_type(leaf, chunk));
6449 return -EIO;
6450 }
6451 if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) ||
6452 (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) ||
6453 (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) ||
6454 (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) ||
6455 (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) ||
6456 ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 &&
6457 num_stripes != 1)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006458 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006459 "invalid num_stripes:sub_stripes %u:%u for profile %llu",
6460 num_stripes, sub_stripes,
6461 type & BTRFS_BLOCK_GROUP_PROFILE_MASK);
6462 return -EIO;
6463 }
6464
6465 return 0;
6466}
6467
Anand Jain5a2b8e62017-10-09 11:07:45 +08006468static void btrfs_report_missing_device(struct btrfs_fs_info *fs_info,
Anand Jain2b902df2017-10-09 11:07:46 +08006469 u64 devid, u8 *uuid, bool error)
Anand Jain5a2b8e62017-10-09 11:07:45 +08006470{
Anand Jain2b902df2017-10-09 11:07:46 +08006471 if (error)
6472 btrfs_err_rl(fs_info, "devid %llu uuid %pU is missing",
6473 devid, uuid);
6474 else
6475 btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing",
6476 devid, uuid);
Anand Jain5a2b8e62017-10-09 11:07:45 +08006477}
6478
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006479static int read_one_chunk(struct btrfs_fs_info *fs_info, struct btrfs_key *key,
Chris Mason0b86a832008-03-24 15:01:56 -04006480 struct extent_buffer *leaf,
6481 struct btrfs_chunk *chunk)
6482{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006483 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04006484 struct map_lookup *map;
6485 struct extent_map *em;
6486 u64 logical;
6487 u64 length;
6488 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006489 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006490 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006491 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006492 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006493
Chris Masone17cade2008-04-15 15:41:47 -04006494 logical = key->offset;
6495 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006496 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
Liu Boe06cd3d2016-06-03 12:05:15 -07006497
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006498 ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006499 if (ret)
6500 return ret;
Chris Masona061fc82008-05-07 11:43:44 -04006501
Chris Mason890871b2009-09-02 16:24:52 -04006502 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006503 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006504 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006505
6506 /* already mapped? */
6507 if (em && em->start <= logical && em->start + em->len > logical) {
6508 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006509 return 0;
6510 } else if (em) {
6511 free_extent_map(em);
6512 }
Chris Mason0b86a832008-03-24 15:01:56 -04006513
David Sterba172ddd62011-04-21 00:48:27 +02006514 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006515 if (!em)
6516 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006517 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006518 if (!map) {
6519 free_extent_map(em);
6520 return -ENOMEM;
6521 }
6522
Wang Shilong298a8f92014-06-19 10:42:52 +08006523 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006524 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006525 em->start = logical;
6526 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006527 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006528 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006529 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006530
Chris Mason593060d2008-03-25 16:50:33 -04006531 map->num_stripes = num_stripes;
6532 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6533 map->io_align = btrfs_chunk_io_align(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006534 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6535 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006536 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006537 for (i = 0; i < num_stripes; i++) {
6538 map->stripes[i].physical =
6539 btrfs_stripe_offset_nr(leaf, chunk, i);
6540 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006541 read_extent_buffer(leaf, uuid, (unsigned long)
6542 btrfs_stripe_dev_uuid_nr(chunk, i),
6543 BTRFS_UUID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006544 map->stripes[i].dev = btrfs_find_device(fs_info, devid,
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006545 uuid, NULL);
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006546 if (!map->stripes[i].dev &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006547 !btrfs_test_opt(fs_info, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006548 free_extent_map(em);
Anand Jain2b902df2017-10-09 11:07:46 +08006549 btrfs_report_missing_device(fs_info, devid, uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006550 return -ENOENT;
Chris Mason593060d2008-03-25 16:50:33 -04006551 }
Chris Masondfe25022008-05-13 13:46:40 -04006552 if (!map->stripes[i].dev) {
6553 map->stripes[i].dev =
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006554 add_missing_dev(fs_info->fs_devices, devid,
6555 uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08006556 if (IS_ERR(map->stripes[i].dev)) {
Chris Masondfe25022008-05-13 13:46:40 -04006557 free_extent_map(em);
Anand Jainadfb69a2017-10-11 12:46:18 +08006558 btrfs_err(fs_info,
6559 "failed to init missing dev %llu: %ld",
6560 devid, PTR_ERR(map->stripes[i].dev));
6561 return PTR_ERR(map->stripes[i].dev);
Chris Masondfe25022008-05-13 13:46:40 -04006562 }
Anand Jain2b902df2017-10-09 11:07:46 +08006563 btrfs_report_missing_device(fs_info, devid, uuid, false);
Chris Masondfe25022008-05-13 13:46:40 -04006564 }
Anand Jaine12c9622017-12-04 12:54:53 +08006565 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
6566 &(map->stripes[i].dev->dev_state));
6567
Chris Mason0b86a832008-03-24 15:01:56 -04006568 }
6569
Chris Mason890871b2009-09-02 16:24:52 -04006570 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006571 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006572 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006573 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006574 free_extent_map(em);
6575
6576 return 0;
6577}
6578
Jeff Mahoney143bede2012-03-01 14:56:26 +01006579static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006580 struct btrfs_dev_item *dev_item,
6581 struct btrfs_device *device)
6582{
6583 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006584
6585 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006586 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6587 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006588 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006589 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006590 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006591 device->type = btrfs_device_type(leaf, dev_item);
6592 device->io_align = btrfs_device_io_align(leaf, dev_item);
6593 device->io_width = btrfs_device_io_width(leaf, dev_item);
6594 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006595 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Anand Jain401e29c2017-12-04 12:54:55 +08006596 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Chris Mason0b86a832008-03-24 15:01:56 -04006597
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006598 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006599 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006600}
6601
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006602static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info,
Miao Xie5f375832014-09-03 21:35:46 +08006603 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006604{
6605 struct btrfs_fs_devices *fs_devices;
6606 int ret;
6607
David Sterbaa32bf9a2018-03-16 02:21:22 +01006608 lockdep_assert_held(&uuid_mutex);
David Sterba2dfeca92017-06-14 02:48:07 +02006609 ASSERT(fsid);
Yan Zheng2b820322008-11-17 21:11:30 -05006610
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006611 fs_devices = fs_info->fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05006612 while (fs_devices) {
Anand Jain44880fd2017-07-29 17:50:09 +08006613 if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE))
Miao Xie5f375832014-09-03 21:35:46 +08006614 return fs_devices;
6615
Yan Zheng2b820322008-11-17 21:11:30 -05006616 fs_devices = fs_devices->seed;
6617 }
6618
6619 fs_devices = find_fsid(fsid);
6620 if (!fs_devices) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006621 if (!btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08006622 return ERR_PTR(-ENOENT);
6623
6624 fs_devices = alloc_fs_devices(fsid);
6625 if (IS_ERR(fs_devices))
6626 return fs_devices;
6627
6628 fs_devices->seeding = 1;
6629 fs_devices->opened = 1;
6630 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006631 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006632
6633 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006634 if (IS_ERR(fs_devices))
6635 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006636
Anand Jain897fb572018-04-12 10:29:28 +08006637 ret = open_fs_devices(fs_devices, FMODE_READ, fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006638 if (ret) {
6639 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006640 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006641 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006642 }
Yan Zheng2b820322008-11-17 21:11:30 -05006643
6644 if (!fs_devices->seeding) {
Anand Jain0226e0e2018-04-12 10:29:27 +08006645 close_fs_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006646 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006647 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006648 goto out;
6649 }
6650
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006651 fs_devices->seed = fs_info->fs_devices->seed;
6652 fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006653out:
Miao Xie5f375832014-09-03 21:35:46 +08006654 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006655}
6656
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006657static int read_one_dev(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04006658 struct extent_buffer *leaf,
6659 struct btrfs_dev_item *dev_item)
6660{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006661 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006662 struct btrfs_device *device;
6663 u64 devid;
6664 int ret;
Anand Jain44880fd2017-07-29 17:50:09 +08006665 u8 fs_uuid[BTRFS_FSID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006666 u8 dev_uuid[BTRFS_UUID_SIZE];
6667
Chris Mason0b86a832008-03-24 15:01:56 -04006668 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006669 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006670 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006671 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08006672 BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05006673
Anand Jain44880fd2017-07-29 17:50:09 +08006674 if (memcmp(fs_uuid, fs_info->fsid, BTRFS_FSID_SIZE)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006675 fs_devices = open_seed_devices(fs_info, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006676 if (IS_ERR(fs_devices))
6677 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006678 }
6679
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006680 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006681 if (!device) {
Qu Wenruoc5502452017-03-09 09:34:42 +08006682 if (!btrfs_test_opt(fs_info, DEGRADED)) {
Anand Jain2b902df2017-10-09 11:07:46 +08006683 btrfs_report_missing_device(fs_info, devid,
6684 dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006685 return -ENOENT;
Qu Wenruoc5502452017-03-09 09:34:42 +08006686 }
Yan Zheng2b820322008-11-17 21:11:30 -05006687
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006688 device = add_missing_dev(fs_devices, devid, dev_uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08006689 if (IS_ERR(device)) {
6690 btrfs_err(fs_info,
6691 "failed to add missing dev %llu: %ld",
6692 devid, PTR_ERR(device));
6693 return PTR_ERR(device);
6694 }
Anand Jain2b902df2017-10-09 11:07:46 +08006695 btrfs_report_missing_device(fs_info, devid, dev_uuid, false);
Miao Xie5f375832014-09-03 21:35:46 +08006696 } else {
Qu Wenruoc5502452017-03-09 09:34:42 +08006697 if (!device->bdev) {
Anand Jain2b902df2017-10-09 11:07:46 +08006698 if (!btrfs_test_opt(fs_info, DEGRADED)) {
6699 btrfs_report_missing_device(fs_info,
6700 devid, dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006701 return -ENOENT;
Anand Jain2b902df2017-10-09 11:07:46 +08006702 }
6703 btrfs_report_missing_device(fs_info, devid,
6704 dev_uuid, false);
Qu Wenruoc5502452017-03-09 09:34:42 +08006705 }
Miao Xie5f375832014-09-03 21:35:46 +08006706
Anand Jaine6e674b2017-12-04 12:54:54 +08006707 if (!device->bdev &&
6708 !test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006709 /*
6710 * this happens when a device that was properly setup
6711 * in the device info lists suddenly goes bad.
6712 * device->bdev is NULL, and so we have to set
6713 * device->missing to one here
6714 */
Miao Xie5f375832014-09-03 21:35:46 +08006715 device->fs_devices->missing_devices++;
Anand Jaine6e674b2017-12-04 12:54:54 +08006716 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05006717 }
Miao Xie5f375832014-09-03 21:35:46 +08006718
6719 /* Move the device to its own fs_devices */
6720 if (device->fs_devices != fs_devices) {
Anand Jaine6e674b2017-12-04 12:54:54 +08006721 ASSERT(test_bit(BTRFS_DEV_STATE_MISSING,
6722 &device->dev_state));
Miao Xie5f375832014-09-03 21:35:46 +08006723
6724 list_move(&device->dev_list, &fs_devices->devices);
6725 device->fs_devices->num_devices--;
6726 fs_devices->num_devices++;
6727
6728 device->fs_devices->missing_devices--;
6729 fs_devices->missing_devices++;
6730
6731 device->fs_devices = fs_devices;
6732 }
Yan Zheng2b820322008-11-17 21:11:30 -05006733 }
6734
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006735 if (device->fs_devices != fs_info->fs_devices) {
Anand Jainebbede42017-12-04 12:54:52 +08006736 BUG_ON(test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state));
Yan Zheng2b820322008-11-17 21:11:30 -05006737 if (device->generation !=
6738 btrfs_device_generation(leaf, dev_item))
6739 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006740 }
Chris Mason0b86a832008-03-24 15:01:56 -04006741
6742 fill_device_from_item(leaf, dev_item, device);
Anand Jaine12c9622017-12-04 12:54:53 +08006743 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jainebbede42017-12-04 12:54:52 +08006744 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jain401e29c2017-12-04 12:54:55 +08006745 !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05006746 device->fs_devices->total_rw_bytes += device->total_bytes;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03006747 atomic64_add(device->total_bytes - device->bytes_used,
6748 &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04006749 }
Chris Mason0b86a832008-03-24 15:01:56 -04006750 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006751 return ret;
6752}
6753
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006754int btrfs_read_sys_array(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006755{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006756 struct btrfs_root *root = fs_info->tree_root;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006757 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006758 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006759 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006760 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006761 u8 *array_ptr;
6762 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006763 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006764 u32 num_stripes;
6765 u32 array_size;
6766 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006767 u32 cur_offset;
Liu Boe06cd3d2016-06-03 12:05:15 -07006768 u64 type;
Chris Mason84eed902008-04-25 09:04:37 -04006769 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006770
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006771 ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize);
David Sterbaa83fffb2014-06-15 02:39:54 +02006772 /*
6773 * This will create extent buffer of nodesize, superblock size is
6774 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6775 * overallocate but we can keep it as-is, only the first page is used.
6776 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006777 sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET);
Liu Boc871b0f2016-06-06 12:01:23 -07006778 if (IS_ERR(sb))
6779 return PTR_ERR(sb);
David Sterba4db8c522015-12-03 13:06:46 +01006780 set_extent_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006781 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006782 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006783 * The sb extent buffer is artificial and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01006784 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02006785 * pages up-to-date when the page is larger: extent does not cover the
6786 * whole page and consequently check_page_uptodate does not find all
6787 * the page's extents up-to-date (the hole beyond sb),
6788 * write_extent_buffer then triggers a WARN_ON.
6789 *
6790 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6791 * but sb spans only this function. Add an explicit SetPageUptodate call
6792 * to silence the warning eg. on PowerPC 64.
6793 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006794 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006795 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006796
Chris Masona061fc82008-05-07 11:43:44 -04006797 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006798 array_size = btrfs_super_sys_array_size(super_copy);
6799
David Sterba1ffb22c2014-10-31 19:02:42 +01006800 array_ptr = super_copy->sys_chunk_array;
6801 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6802 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006803
David Sterba1ffb22c2014-10-31 19:02:42 +01006804 while (cur_offset < array_size) {
6805 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006806 len = sizeof(*disk_key);
6807 if (cur_offset + len > array_size)
6808 goto out_short_read;
6809
Chris Mason0b86a832008-03-24 15:01:56 -04006810 btrfs_disk_key_to_cpu(&key, disk_key);
6811
David Sterba1ffb22c2014-10-31 19:02:42 +01006812 array_ptr += len;
6813 sb_array_offset += len;
6814 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006815
Chris Mason0d81ba52008-03-24 15:02:07 -04006816 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006817 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006818 /*
6819 * At least one btrfs_chunk with one stripe must be
6820 * present, exact stripe count check comes afterwards
6821 */
6822 len = btrfs_chunk_item_size(1);
6823 if (cur_offset + len > array_size)
6824 goto out_short_read;
6825
6826 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006827 if (!num_stripes) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006828 btrfs_err(fs_info,
6829 "invalid number of stripes %u in sys_array at offset %u",
David Sterbaf5cdedd2015-11-30 17:27:06 +01006830 num_stripes, cur_offset);
6831 ret = -EIO;
6832 break;
6833 }
6834
Liu Boe06cd3d2016-06-03 12:05:15 -07006835 type = btrfs_chunk_type(sb, chunk);
6836 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006837 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006838 "invalid chunk type %llu in sys_array at offset %u",
6839 type, cur_offset);
6840 ret = -EIO;
6841 break;
6842 }
6843
David Sterbae3540ea2014-11-05 15:24:51 +01006844 len = btrfs_chunk_item_size(num_stripes);
6845 if (cur_offset + len > array_size)
6846 goto out_short_read;
6847
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006848 ret = read_one_chunk(fs_info, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006849 if (ret)
6850 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006851 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006852 btrfs_err(fs_info,
6853 "unexpected item type %u in sys_array at offset %u",
6854 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006855 ret = -EIO;
6856 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006857 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006858 array_ptr += len;
6859 sb_array_offset += len;
6860 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006861 }
Liu Bod8651772016-06-03 17:41:42 -07006862 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006863 free_extent_buffer_stale(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006864 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006865
6866out_short_read:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006867 btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u",
David Sterbae3540ea2014-11-05 15:24:51 +01006868 len, cur_offset);
Liu Bod8651772016-06-03 17:41:42 -07006869 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006870 free_extent_buffer_stale(sb);
David Sterbae3540ea2014-11-05 15:24:51 +01006871 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006872}
6873
Qu Wenruo21634a12017-03-09 09:34:36 +08006874/*
6875 * Check if all chunks in the fs are OK for read-write degraded mount
6876 *
Anand Jain6528b992017-12-18 17:08:59 +08006877 * If the @failing_dev is specified, it's accounted as missing.
6878 *
Qu Wenruo21634a12017-03-09 09:34:36 +08006879 * Return true if all chunks meet the minimal RW mount requirements.
6880 * Return false if any chunk doesn't meet the minimal RW mount requirements.
6881 */
Anand Jain6528b992017-12-18 17:08:59 +08006882bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info,
6883 struct btrfs_device *failing_dev)
Qu Wenruo21634a12017-03-09 09:34:36 +08006884{
6885 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
6886 struct extent_map *em;
6887 u64 next_start = 0;
6888 bool ret = true;
6889
6890 read_lock(&map_tree->map_tree.lock);
6891 em = lookup_extent_mapping(&map_tree->map_tree, 0, (u64)-1);
6892 read_unlock(&map_tree->map_tree.lock);
6893 /* No chunk at all? Return false anyway */
6894 if (!em) {
6895 ret = false;
6896 goto out;
6897 }
6898 while (em) {
6899 struct map_lookup *map;
6900 int missing = 0;
6901 int max_tolerated;
6902 int i;
6903
6904 map = em->map_lookup;
6905 max_tolerated =
6906 btrfs_get_num_tolerated_disk_barrier_failures(
6907 map->type);
6908 for (i = 0; i < map->num_stripes; i++) {
6909 struct btrfs_device *dev = map->stripes[i].dev;
6910
Anand Jaine6e674b2017-12-04 12:54:54 +08006911 if (!dev || !dev->bdev ||
6912 test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) ||
Qu Wenruo21634a12017-03-09 09:34:36 +08006913 dev->last_flush_error)
6914 missing++;
Anand Jain6528b992017-12-18 17:08:59 +08006915 else if (failing_dev && failing_dev == dev)
6916 missing++;
Qu Wenruo21634a12017-03-09 09:34:36 +08006917 }
6918 if (missing > max_tolerated) {
Anand Jain6528b992017-12-18 17:08:59 +08006919 if (!failing_dev)
6920 btrfs_warn(fs_info,
Qu Wenruo21634a12017-03-09 09:34:36 +08006921 "chunk %llu missing %d devices, max tolerance is %d for writeable mount",
6922 em->start, missing, max_tolerated);
6923 free_extent_map(em);
6924 ret = false;
6925 goto out;
6926 }
6927 next_start = extent_map_end(em);
6928 free_extent_map(em);
6929
6930 read_lock(&map_tree->map_tree.lock);
6931 em = lookup_extent_mapping(&map_tree->map_tree, next_start,
6932 (u64)(-1) - next_start);
6933 read_unlock(&map_tree->map_tree.lock);
6934 }
6935out:
6936 return ret;
6937}
6938
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006939int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006940{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006941 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04006942 struct btrfs_path *path;
6943 struct extent_buffer *leaf;
6944 struct btrfs_key key;
6945 struct btrfs_key found_key;
6946 int ret;
6947 int slot;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006948 u64 total_dev = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006949
Chris Mason0b86a832008-03-24 15:01:56 -04006950 path = btrfs_alloc_path();
6951 if (!path)
6952 return -ENOMEM;
6953
Li Zefanb367e472011-12-07 11:38:24 +08006954 mutex_lock(&uuid_mutex);
David Sterba34441362016-10-04 19:34:27 +02006955 mutex_lock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006956
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006957 /*
6958 * Read all device items, and then all the chunk items. All
6959 * device items are found before any chunk item (their object id
6960 * is smaller than the lowest possible object id for a chunk
6961 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006962 */
6963 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6964 key.offset = 0;
6965 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006966 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006967 if (ret < 0)
6968 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006969 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006970 leaf = path->nodes[0];
6971 slot = path->slots[0];
6972 if (slot >= btrfs_header_nritems(leaf)) {
6973 ret = btrfs_next_leaf(root, path);
6974 if (ret == 0)
6975 continue;
6976 if (ret < 0)
6977 goto error;
6978 break;
6979 }
6980 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006981 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6982 struct btrfs_dev_item *dev_item;
6983 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006984 struct btrfs_dev_item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006985 ret = read_one_dev(fs_info, leaf, dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006986 if (ret)
6987 goto error;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006988 total_dev++;
Chris Mason0b86a832008-03-24 15:01:56 -04006989 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6990 struct btrfs_chunk *chunk;
6991 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006992 ret = read_one_chunk(fs_info, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006993 if (ret)
6994 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006995 }
6996 path->slots[0]++;
6997 }
Liu Bo99e3ecf2016-06-03 12:05:14 -07006998
6999 /*
7000 * After loading chunk tree, we've got all device information,
7001 * do another round of validation checks.
7002 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007003 if (total_dev != fs_info->fs_devices->total_devices) {
7004 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07007005 "super_num_devices %llu mismatch with num_devices %llu found here",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007006 btrfs_super_num_devices(fs_info->super_copy),
Liu Bo99e3ecf2016-06-03 12:05:14 -07007007 total_dev);
7008 ret = -EINVAL;
7009 goto error;
7010 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007011 if (btrfs_super_total_bytes(fs_info->super_copy) <
7012 fs_info->fs_devices->total_rw_bytes) {
7013 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07007014 "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007015 btrfs_super_total_bytes(fs_info->super_copy),
7016 fs_info->fs_devices->total_rw_bytes);
Liu Bo99e3ecf2016-06-03 12:05:14 -07007017 ret = -EINVAL;
7018 goto error;
7019 }
Chris Mason0b86a832008-03-24 15:01:56 -04007020 ret = 0;
7021error:
David Sterba34441362016-10-04 19:34:27 +02007022 mutex_unlock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08007023 mutex_unlock(&uuid_mutex);
7024
Yan Zheng2b820322008-11-17 21:11:30 -05007025 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04007026 return ret;
7027}
Stefan Behrens442a4f62012-05-25 16:06:08 +02007028
Miao Xiecb517ea2013-05-15 07:48:19 +00007029void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
7030{
7031 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7032 struct btrfs_device *device;
7033
Liu Bo29cc83f2014-05-11 23:14:59 +08007034 while (fs_devices) {
7035 mutex_lock(&fs_devices->device_list_mutex);
7036 list_for_each_entry(device, &fs_devices->devices, dev_list)
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007037 device->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08007038 mutex_unlock(&fs_devices->device_list_mutex);
7039
7040 fs_devices = fs_devices->seed;
7041 }
Miao Xiecb517ea2013-05-15 07:48:19 +00007042}
7043
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007044static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
7045{
7046 int i;
7047
7048 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7049 btrfs_dev_stat_reset(dev, i);
7050}
7051
7052int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
7053{
7054 struct btrfs_key key;
7055 struct btrfs_key found_key;
7056 struct btrfs_root *dev_root = fs_info->dev_root;
7057 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7058 struct extent_buffer *eb;
7059 int slot;
7060 int ret = 0;
7061 struct btrfs_device *device;
7062 struct btrfs_path *path = NULL;
7063 int i;
7064
7065 path = btrfs_alloc_path();
7066 if (!path) {
7067 ret = -ENOMEM;
7068 goto out;
7069 }
7070
7071 mutex_lock(&fs_devices->device_list_mutex);
7072 list_for_each_entry(device, &fs_devices->devices, dev_list) {
7073 int item_size;
7074 struct btrfs_dev_stats_item *ptr;
7075
David Sterba242e2952016-01-25 17:51:31 +01007076 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7077 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007078 key.offset = device->devid;
7079 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
7080 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007081 __btrfs_reset_dev_stats(device);
7082 device->dev_stats_valid = 1;
7083 btrfs_release_path(path);
7084 continue;
7085 }
7086 slot = path->slots[0];
7087 eb = path->nodes[0];
7088 btrfs_item_key_to_cpu(eb, &found_key, slot);
7089 item_size = btrfs_item_size_nr(eb, slot);
7090
7091 ptr = btrfs_item_ptr(eb, slot,
7092 struct btrfs_dev_stats_item);
7093
7094 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7095 if (item_size >= (1 + i) * sizeof(__le64))
7096 btrfs_dev_stat_set(device, i,
7097 btrfs_dev_stats_value(eb, ptr, i));
7098 else
7099 btrfs_dev_stat_reset(device, i);
7100 }
7101
7102 device->dev_stats_valid = 1;
7103 btrfs_dev_stat_print_on_load(device);
7104 btrfs_release_path(path);
7105 }
7106 mutex_unlock(&fs_devices->device_list_mutex);
7107
7108out:
7109 btrfs_free_path(path);
7110 return ret < 0 ? ret : 0;
7111}
7112
7113static int update_dev_stat_item(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007114 struct btrfs_fs_info *fs_info,
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007115 struct btrfs_device *device)
7116{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007117 struct btrfs_root *dev_root = fs_info->dev_root;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007118 struct btrfs_path *path;
7119 struct btrfs_key key;
7120 struct extent_buffer *eb;
7121 struct btrfs_dev_stats_item *ptr;
7122 int ret;
7123 int i;
7124
David Sterba242e2952016-01-25 17:51:31 +01007125 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7126 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007127 key.offset = device->devid;
7128
7129 path = btrfs_alloc_path();
David Sterbafa252992017-02-15 09:35:01 +01007130 if (!path)
7131 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007132 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
7133 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007134 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007135 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04007136 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007137 goto out;
7138 }
7139
7140 if (ret == 0 &&
7141 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
7142 /* need to delete old one and insert a new one */
7143 ret = btrfs_del_item(trans, dev_root, path);
7144 if (ret != 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007145 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007146 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04007147 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007148 goto out;
7149 }
7150 ret = 1;
7151 }
7152
7153 if (ret == 1) {
7154 /* need to insert a new item */
7155 btrfs_release_path(path);
7156 ret = btrfs_insert_empty_item(trans, dev_root, path,
7157 &key, sizeof(*ptr));
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 "insert dev_stats item for device %s failed %d",
7161 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007162 goto out;
7163 }
7164 }
7165
7166 eb = path->nodes[0];
7167 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
7168 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7169 btrfs_set_dev_stats_value(eb, ptr, i,
7170 btrfs_dev_stat_read(device, i));
7171 btrfs_mark_buffer_dirty(eb);
7172
7173out:
7174 btrfs_free_path(path);
7175 return ret;
7176}
7177
7178/*
7179 * called from commit_transaction. Writes all changed device stats to disk.
7180 */
7181int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
7182 struct btrfs_fs_info *fs_info)
7183{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007184 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7185 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08007186 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007187 int ret = 0;
7188
7189 mutex_lock(&fs_devices->device_list_mutex);
7190 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Nikolay Borisov9deae962017-10-24 13:47:37 +03007191 stats_cnt = atomic_read(&device->dev_stats_ccnt);
7192 if (!device->dev_stats_valid || stats_cnt == 0)
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007193 continue;
7194
Nikolay Borisov9deae962017-10-24 13:47:37 +03007195
7196 /*
7197 * There is a LOAD-LOAD control dependency between the value of
7198 * dev_stats_ccnt and updating the on-disk values which requires
7199 * reading the in-memory counters. Such control dependencies
7200 * require explicit read memory barriers.
7201 *
7202 * This memory barriers pairs with smp_mb__before_atomic in
7203 * btrfs_dev_stat_inc/btrfs_dev_stat_set and with the full
7204 * barrier implied by atomic_xchg in
7205 * btrfs_dev_stats_read_and_reset
7206 */
7207 smp_rmb();
7208
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007209 ret = update_dev_stat_item(trans, fs_info, device);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007210 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08007211 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007212 }
7213 mutex_unlock(&fs_devices->device_list_mutex);
7214
7215 return ret;
7216}
7217
Stefan Behrens442a4f62012-05-25 16:06:08 +02007218void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
7219{
7220 btrfs_dev_stat_inc(dev, index);
7221 btrfs_dev_stat_print_on_error(dev);
7222}
7223
Eric Sandeen48a3b632013-04-25 20:41:01 +00007224static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02007225{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007226 if (!dev->dev_stats_valid)
7227 return;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007228 btrfs_err_rl_in_rcu(dev->fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02007229 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007230 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02007231 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7232 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7233 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05007234 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7235 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02007236}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007237
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007238static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
7239{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06007240 int i;
7241
7242 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7243 if (btrfs_dev_stat_read(dev, i) != 0)
7244 break;
7245 if (i == BTRFS_DEV_STAT_VALUES_MAX)
7246 return; /* all values == 0, suppress message */
7247
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007248 btrfs_info_in_rcu(dev->fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007249 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007250 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007251 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7252 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7253 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
7254 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7255 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
7256}
7257
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007258int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06007259 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007260{
7261 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007262 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007263 int i;
7264
7265 mutex_lock(&fs_devices->device_list_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007266 dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007267 mutex_unlock(&fs_devices->device_list_mutex);
7268
7269 if (!dev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007270 btrfs_warn(fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007271 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007272 } else if (!dev->dev_stats_valid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007273 btrfs_warn(fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007274 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06007275 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007276 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7277 if (stats->nr_items > i)
7278 stats->values[i] =
7279 btrfs_dev_stat_read_and_reset(dev, i);
7280 else
7281 btrfs_dev_stat_reset(dev, i);
7282 }
7283 } else {
7284 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7285 if (stats->nr_items > i)
7286 stats->values[i] = btrfs_dev_stat_read(dev, i);
7287 }
7288 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
7289 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
7290 return 0;
7291}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007292
David Sterbada353f62017-02-14 17:55:53 +01007293void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007294{
7295 struct buffer_head *bh;
7296 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08007297 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007298
Anand Jain12b1c262015-08-14 18:32:59 +08007299 if (!bdev)
7300 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007301
Anand Jain12b1c262015-08-14 18:32:59 +08007302 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
7303 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007304
Anand Jain12b1c262015-08-14 18:32:59 +08007305 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
7306 continue;
7307
7308 disk_super = (struct btrfs_super_block *)bh->b_data;
7309
7310 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
7311 set_buffer_dirty(bh);
7312 sync_dirty_buffer(bh);
7313 brelse(bh);
7314 }
7315
7316 /* Notify udev that device has changed */
7317 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
7318
7319 /* Update ctime/mtime for device path for libblkid */
7320 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007321}
Miao Xie935e5cc2014-09-03 21:35:33 +08007322
7323/*
7324 * Update the size of all devices, which is used for writing out the
7325 * super blocks.
7326 */
7327void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
7328{
7329 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7330 struct btrfs_device *curr, *next;
7331
7332 if (list_empty(&fs_devices->resized_devices))
7333 return;
7334
7335 mutex_lock(&fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02007336 mutex_lock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007337 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
7338 resized_list) {
7339 list_del_init(&curr->resized_list);
7340 curr->commit_total_bytes = curr->disk_total_bytes;
7341 }
David Sterba34441362016-10-04 19:34:27 +02007342 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007343 mutex_unlock(&fs_devices->device_list_mutex);
7344}
Miao Xiece7213c2014-09-03 21:35:34 +08007345
7346/* Must be invoked during the transaction commit */
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007347void btrfs_update_commit_device_bytes_used(struct btrfs_transaction *trans)
Miao Xiece7213c2014-09-03 21:35:34 +08007348{
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007349 struct btrfs_fs_info *fs_info = trans->fs_info;
Miao Xiece7213c2014-09-03 21:35:34 +08007350 struct extent_map *em;
7351 struct map_lookup *map;
7352 struct btrfs_device *dev;
7353 int i;
7354
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007355 if (list_empty(&trans->pending_chunks))
Miao Xiece7213c2014-09-03 21:35:34 +08007356 return;
7357
7358 /* In order to kick the device replace finish process */
David Sterba34441362016-10-04 19:34:27 +02007359 mutex_lock(&fs_info->chunk_mutex);
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007360 list_for_each_entry(em, &trans->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04007361 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08007362
7363 for (i = 0; i < map->num_stripes; i++) {
7364 dev = map->stripes[i].dev;
7365 dev->commit_bytes_used = dev->bytes_used;
7366 }
7367 }
David Sterba34441362016-10-04 19:34:27 +02007368 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007369}
Anand Jain5a13f432015-03-10 06:38:31 +08007370
7371void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
7372{
7373 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7374 while (fs_devices) {
7375 fs_devices->fs_info = fs_info;
7376 fs_devices = fs_devices->seed;
7377 }
7378}
7379
7380void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
7381{
7382 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7383 while (fs_devices) {
7384 fs_devices->fs_info = NULL;
7385 fs_devices = fs_devices->seed;
7386 }
7387}