blob: 1c88c4c947bb7f5e29a0b45b4d74270cc84cc693 [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>
Stefan Behrens442a4f62012-05-25 16:06:08 +020011#include <linux/ratelimit.h>
Ilya Dryomov59641012012-01-16 22:04:48 +020012#include <linux/kthread.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050013#include <linux/raid/pq.h>
Stefan Behrens803b2f52013-08-15 17:11:21 +020014#include <linux/semaphore.h>
Andy Shevchenko8da4b8c2016-05-20 17:01:00 -070015#include <linux/uuid.h>
Anand Jainf8e10cd2018-01-22 14:49:36 -080016#include <linux/list_sort.h>
Chris Mason0b86a832008-03-24 15:01:56 -040017#include "ctree.h"
18#include "extent_map.h"
19#include "disk-io.h"
20#include "transaction.h"
21#include "print-tree.h"
22#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050023#include "raid56.h"
Chris Mason8b712842008-06-11 16:50:36 -040024#include "async-thread.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010025#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040026#include "rcu-string.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060027#include "math.h"
Stefan Behrens8dabb742012-11-06 13:15:27 +010028#include "dev-replace.h"
Anand Jain99994cd2014-06-03 11:36:00 +080029#include "sysfs.h"
Chris Mason0b86a832008-03-24 15:01:56 -040030
Zhao Leiaf902042015-09-15 21:08:06 +080031const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
32 [BTRFS_RAID_RAID10] = {
33 .sub_stripes = 2,
34 .dev_stripes = 1,
35 .devs_max = 0, /* 0 == as many as possible */
36 .devs_min = 4,
Zhao Lei8789f4f2015-09-15 21:08:07 +080037 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080038 .devs_increment = 2,
39 .ncopies = 2,
Anand Jained234672018-04-25 19:01:42 +080040 .raid_name = "raid10",
Anand Jain41a6e892018-04-25 19:01:43 +080041 .bg_flag = BTRFS_BLOCK_GROUP_RAID10,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080042 .mindev_error = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +080043 },
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,
Anand Jained234672018-04-25 19:01:42 +080052 .raid_name = "raid1",
Anand Jain41a6e892018-04-25 19:01:43 +080053 .bg_flag = BTRFS_BLOCK_GROUP_RAID1,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080054 .mindev_error = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +080055 },
56 [BTRFS_RAID_DUP] = {
57 .sub_stripes = 1,
58 .dev_stripes = 2,
59 .devs_max = 1,
60 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +080061 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080062 .devs_increment = 1,
63 .ncopies = 2,
Anand Jained234672018-04-25 19:01:42 +080064 .raid_name = "dup",
Anand Jain41a6e892018-04-25 19:01:43 +080065 .bg_flag = BTRFS_BLOCK_GROUP_DUP,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080066 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080067 },
68 [BTRFS_RAID_RAID0] = {
69 .sub_stripes = 1,
70 .dev_stripes = 1,
71 .devs_max = 0,
72 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080073 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080074 .devs_increment = 1,
75 .ncopies = 1,
Anand Jained234672018-04-25 19:01:42 +080076 .raid_name = "raid0",
Anand Jain41a6e892018-04-25 19:01:43 +080077 .bg_flag = BTRFS_BLOCK_GROUP_RAID0,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080078 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080079 },
80 [BTRFS_RAID_SINGLE] = {
81 .sub_stripes = 1,
82 .dev_stripes = 1,
83 .devs_max = 1,
84 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +080085 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080086 .devs_increment = 1,
87 .ncopies = 1,
Anand Jained234672018-04-25 19:01:42 +080088 .raid_name = "single",
Anand Jain41a6e892018-04-25 19:01:43 +080089 .bg_flag = 0,
Anand Jainf9fbcaa2018-04-25 19:01:44 +080090 .mindev_error = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080091 },
92 [BTRFS_RAID_RAID5] = {
93 .sub_stripes = 1,
94 .dev_stripes = 1,
95 .devs_max = 0,
96 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080097 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080098 .devs_increment = 1,
99 .ncopies = 2,
Anand Jained234672018-04-25 19:01:42 +0800100 .raid_name = "raid5",
Anand Jain41a6e892018-04-25 19:01:43 +0800101 .bg_flag = BTRFS_BLOCK_GROUP_RAID5,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800102 .mindev_error = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +0800103 },
104 [BTRFS_RAID_RAID6] = {
105 .sub_stripes = 1,
106 .dev_stripes = 1,
107 .devs_max = 0,
108 .devs_min = 3,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800109 .tolerated_failures = 2,
Zhao Leiaf902042015-09-15 21:08:06 +0800110 .devs_increment = 1,
111 .ncopies = 3,
Anand Jained234672018-04-25 19:01:42 +0800112 .raid_name = "raid6",
Anand Jain41a6e892018-04-25 19:01:43 +0800113 .bg_flag = BTRFS_BLOCK_GROUP_RAID6,
Anand Jainf9fbcaa2018-04-25 19:01:44 +0800114 .mindev_error = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET,
Zhao Leiaf902042015-09-15 21:08:06 +0800115 },
116};
117
Anand Jained234672018-04-25 19:01:42 +0800118const char *get_raid_name(enum btrfs_raid_types type)
119{
120 if (type >= BTRFS_NR_RAID_TYPES)
121 return NULL;
122
123 return btrfs_raid_array[type].raid_name;
124}
125
Yan Zheng2b820322008-11-17 21:11:30 -0500126static int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +0100127 struct btrfs_fs_info *fs_info);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400128static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200129static void __btrfs_reset_dev_stats(struct btrfs_device *dev);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000130static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200131static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
Liu Bo5ab56092017-03-14 13:33:57 -0700132static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
133 enum btrfs_map_op op,
134 u64 logical, u64 *length,
135 struct btrfs_bio **bbio_ret,
136 int mirror_num, int need_raid_map);
Yan Zheng2b820322008-11-17 21:11:30 -0500137
David Sterba9c6b1c42017-06-16 22:30:00 +0200138/*
139 * Device locking
140 * ==============
141 *
142 * There are several mutexes that protect manipulation of devices and low-level
143 * structures like chunks but not block groups, extents or files
144 *
145 * uuid_mutex (global lock)
146 * ------------------------
147 * protects the fs_uuids list that tracks all per-fs fs_devices, resulting from
148 * the SCAN_DEV ioctl registration or from mount either implicitly (the first
149 * device) or requested by the device= mount option
150 *
151 * the mutex can be very coarse and can cover long-running operations
152 *
153 * protects: updates to fs_devices counters like missing devices, rw devices,
154 * seeding, structure cloning, openning/closing devices at mount/umount time
155 *
156 * global::fs_devs - add, remove, updates to the global list
157 *
158 * does not protect: manipulation of the fs_devices::devices list!
159 *
160 * btrfs_device::name - renames (write side), read is RCU
161 *
162 * fs_devices::device_list_mutex (per-fs, with RCU)
163 * ------------------------------------------------
164 * protects updates to fs_devices::devices, ie. adding and deleting
165 *
166 * simple list traversal with read-only actions can be done with RCU protection
167 *
168 * may be used to exclude some operations from running concurrently without any
169 * modifications to the list (see write_all_supers)
170 *
David Sterba9c6b1c42017-06-16 22:30:00 +0200171 * balance_mutex
172 * -------------
173 * protects balance structures (status, state) and context accessed from
174 * several places (internally, ioctl)
175 *
176 * chunk_mutex
177 * -----------
178 * protects chunks, adding or removing during allocation, trim or when a new
179 * device is added/removed
180 *
181 * cleaner_mutex
182 * -------------
183 * a big lock that is held by the cleaner thread and prevents running subvolume
184 * cleaning together with relocation or delayed iputs
185 *
186 *
187 * Lock nesting
188 * ============
189 *
190 * uuid_mutex
191 * volume_mutex
192 * device_list_mutex
193 * chunk_mutex
194 * balance_mutex
Anand Jain89595e82018-04-18 14:59:25 +0800195 *
196 *
197 * Exclusive operations, BTRFS_FS_EXCL_OP
198 * ======================================
199 *
200 * Maintains the exclusivity of the following operations that apply to the
201 * whole filesystem and cannot run in parallel.
202 *
203 * - Balance (*)
204 * - Device add
205 * - Device remove
206 * - Device replace (*)
207 * - Resize
208 *
209 * The device operations (as above) can be in one of the following states:
210 *
211 * - Running state
212 * - Paused state
213 * - Completed state
214 *
215 * Only device operations marked with (*) can go into the Paused state for the
216 * following reasons:
217 *
218 * - ioctl (only Balance can be Paused through ioctl)
219 * - filesystem remounted as read-only
220 * - filesystem unmounted and mounted as read-only
221 * - system power-cycle and filesystem mounted as read-only
222 * - filesystem or device errors leading to forced read-only
223 *
224 * BTRFS_FS_EXCL_OP flag is set and cleared using atomic operations.
225 * During the course of Paused state, the BTRFS_FS_EXCL_OP remains set.
226 * A device operation in Paused or Running state can be canceled or resumed
227 * either by ioctl (Balance only) or when remounted as read-write.
228 * BTRFS_FS_EXCL_OP flag is cleared when the device operation is canceled or
229 * completed.
David Sterba9c6b1c42017-06-16 22:30:00 +0200230 */
231
Miao Xie67a2c452014-09-03 21:35:43 +0800232DEFINE_MUTEX(uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400233static LIST_HEAD(fs_uuids);
Anand Jainc73eccf2015-03-10 06:38:30 +0800234struct list_head *btrfs_get_fs_uuids(void)
235{
236 return &fs_uuids;
237}
Chris Mason8a4b83c2008-03-24 15:02:07 -0400238
David Sterba2dfeca92017-06-14 02:48:07 +0200239/*
240 * alloc_fs_devices - allocate struct btrfs_fs_devices
241 * @fsid: if not NULL, copy the uuid to fs_devices::fsid
242 *
243 * Return a pointer to a new struct btrfs_fs_devices on success, or ERR_PTR().
244 * The returned struct is not linked onto any lists and can be destroyed with
245 * kfree() right away.
246 */
247static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
Ilya Dryomov2208a372013-08-12 14:33:03 +0300248{
249 struct btrfs_fs_devices *fs_devs;
250
David Sterba78f2c9e2016-02-11 14:25:38 +0100251 fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300252 if (!fs_devs)
253 return ERR_PTR(-ENOMEM);
254
255 mutex_init(&fs_devs->device_list_mutex);
256
257 INIT_LIST_HEAD(&fs_devs->devices);
Miao Xie935e5cc2014-09-03 21:35:33 +0800258 INIT_LIST_HEAD(&fs_devs->resized_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300259 INIT_LIST_HEAD(&fs_devs->alloc_list);
Anand Jainc4babc52018-04-12 10:29:25 +0800260 INIT_LIST_HEAD(&fs_devs->fs_list);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300261 if (fsid)
262 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300263
264 return fs_devs;
265}
266
David Sterbaa425f9d2018-03-20 15:47:33 +0100267void btrfs_free_device(struct btrfs_device *device)
David Sterba48dae9c2017-10-30 18:10:25 +0100268{
269 rcu_string_free(device->name);
270 bio_put(device->flush_bio);
271 kfree(device);
272}
273
Yan Zhenge4404d62008-12-12 10:03:26 -0500274static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
275{
276 struct btrfs_device *device;
277 WARN_ON(fs_devices->opened);
278 while (!list_empty(&fs_devices->devices)) {
279 device = list_entry(fs_devices->devices.next,
280 struct btrfs_device, dev_list);
281 list_del(&device->dev_list);
David Sterbaa425f9d2018-03-20 15:47:33 +0100282 btrfs_free_device(device);
Yan Zhenge4404d62008-12-12 10:03:26 -0500283 }
284 kfree(fs_devices);
285}
286
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000287static void btrfs_kobject_uevent(struct block_device *bdev,
288 enum kobject_action action)
289{
290 int ret;
291
292 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
293 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -0500294 pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n",
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000295 action,
296 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
297 &disk_to_dev(bdev->bd_disk)->kobj);
298}
299
David Sterbaffc5a372018-02-19 17:24:15 +0100300void __exit btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400301{
302 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400303
Yan Zheng2b820322008-11-17 21:11:30 -0500304 while (!list_empty(&fs_uuids)) {
305 fs_devices = list_entry(fs_uuids.next,
Anand Jainc4babc52018-04-12 10:29:25 +0800306 struct btrfs_fs_devices, fs_list);
307 list_del(&fs_devices->fs_list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500308 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400309 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400310}
311
David Sterba48dae9c2017-10-30 18:10:25 +0100312/*
313 * Returns a pointer to a new btrfs_device on success; ERR_PTR() on error.
314 * Returned struct is not linked onto any lists and must be destroyed using
David Sterbaa425f9d2018-03-20 15:47:33 +0100315 * btrfs_free_device.
David Sterba48dae9c2017-10-30 18:10:25 +0100316 */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300317static struct btrfs_device *__alloc_device(void)
318{
319 struct btrfs_device *dev;
320
David Sterba78f2c9e2016-02-11 14:25:38 +0100321 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300322 if (!dev)
323 return ERR_PTR(-ENOMEM);
324
David Sterbae0ae9992017-06-06 17:06:06 +0200325 /*
326 * Preallocate a bio that's always going to be used for flushing device
327 * barriers and matches the device lifespan
328 */
329 dev->flush_bio = bio_alloc_bioset(GFP_KERNEL, 0, NULL);
330 if (!dev->flush_bio) {
331 kfree(dev);
332 return ERR_PTR(-ENOMEM);
333 }
David Sterbae0ae9992017-06-06 17:06:06 +0200334
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300335 INIT_LIST_HEAD(&dev->dev_list);
336 INIT_LIST_HEAD(&dev->dev_alloc_list);
Miao Xie935e5cc2014-09-03 21:35:33 +0800337 INIT_LIST_HEAD(&dev->resized_list);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300338
339 spin_lock_init(&dev->io_lock);
340
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300341 atomic_set(&dev->reada_in_flight, 0);
Miao Xieaddc3fa2014-07-24 11:37:11 +0800342 atomic_set(&dev->dev_stats_ccnt, 0);
Sebastian Andrzej Siewior546bed62016-01-15 14:37:15 +0100343 btrfs_device_data_ordered_init(dev);
Chris Mason9bcaaea2017-05-04 16:08:08 -0700344 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Mel Gormand0164ad2015-11-06 16:28:21 -0800345 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300346
347 return dev;
348}
349
David Sterba35c70102017-06-15 19:51:51 +0200350/*
351 * Find a device specified by @devid or @uuid in the list of @fs_devices, or
352 * return NULL.
353 *
354 * If devid and uuid are both specified, the match must be exact, otherwise
355 * only devid is used.
356 */
357static struct btrfs_device *find_device(struct btrfs_fs_devices *fs_devices,
358 u64 devid, const u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400359{
360 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400361
Anand Jain636d2c92018-04-12 10:29:29 +0800362 list_for_each_entry(dev, &fs_devices->devices, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400363 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400364 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400365 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400366 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400367 }
368 return NULL;
369}
370
Chris Masona1b32a52008-09-05 16:09:51 -0400371static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400372{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400373 struct btrfs_fs_devices *fs_devices;
374
Anand Jainc4babc52018-04-12 10:29:25 +0800375 list_for_each_entry(fs_devices, &fs_uuids, fs_list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400376 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
377 return fs_devices;
378 }
379 return NULL;
380}
381
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100382static int
383btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
384 int flush, struct block_device **bdev,
385 struct buffer_head **bh)
386{
387 int ret;
388
389 *bdev = blkdev_get_by_path(device_path, flags, holder);
390
391 if (IS_ERR(*bdev)) {
392 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100393 goto error;
394 }
395
396 if (flush)
397 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
David Sterba9f6d2512017-06-16 01:48:05 +0200398 ret = set_blocksize(*bdev, BTRFS_BDEV_BLOCKSIZE);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100399 if (ret) {
400 blkdev_put(*bdev, flags);
401 goto error;
402 }
403 invalidate_bdev(*bdev);
404 *bh = btrfs_read_dev_super(*bdev);
Anand Jain92fc03f2015-08-14 18:32:51 +0800405 if (IS_ERR(*bh)) {
406 ret = PTR_ERR(*bh);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100407 blkdev_put(*bdev, flags);
408 goto error;
409 }
410
411 return 0;
412
413error:
414 *bdev = NULL;
415 *bh = NULL;
416 return ret;
417}
418
Chris Masonffbd5172009-04-20 15:50:09 -0400419static void requeue_list(struct btrfs_pending_bios *pending_bios,
420 struct bio *head, struct bio *tail)
421{
422
423 struct bio *old_head;
424
425 old_head = pending_bios->head;
426 pending_bios->head = head;
427 if (pending_bios->tail)
428 tail->bi_next = old_head;
429 else
430 pending_bios->tail = tail;
431}
432
Chris Mason8b712842008-06-11 16:50:36 -0400433/*
434 * we try to collect pending bios for a device so we don't get a large
435 * number of procs sending bios down to the same device. This greatly
436 * improves the schedulers ability to collect and merge the bios.
437 *
438 * But, it also turns into a long list of bios to process and that is sure
439 * to eventually make the worker thread block. The solution here is to
440 * make some progress and then put this work struct back at the end of
441 * the list if the block device is congested. This way, multiple devices
442 * can make progress from a single worker thread.
443 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100444static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400445{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400446 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -0400447 struct bio *pending;
448 struct backing_dev_info *bdi;
Chris Masonffbd5172009-04-20 15:50:09 -0400449 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400450 struct bio *tail;
451 struct bio *cur;
452 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400453 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400454 unsigned long batch_run = 0;
Chris Masonb765ead2009-04-03 10:27:10 -0400455 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400456 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000457 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400458 struct blk_plug plug;
459
460 /*
461 * this function runs all the bios we've collected for
462 * a particular device. We don't want to wander off to
463 * another device without first sending all of these down.
464 * So, setup a plug here and finish it off before we return
465 */
466 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400467
Jan Karaefa7c9f2017-02-02 15:56:53 +0100468 bdi = device->bdev->bd_bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400469
Chris Mason8b712842008-06-11 16:50:36 -0400470loop:
471 spin_lock(&device->io_lock);
472
Chris Masona6837052009-02-04 09:19:41 -0500473loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400474 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400475
Chris Mason8b712842008-06-11 16:50:36 -0400476 /* take all the bios off the list at once and process them
477 * later on (without the lock held). But, remember the
478 * tail and other pointers so the bios can be properly reinserted
479 * into the list if we hit congestion
480 */
Chris Masond84275c2009-06-09 15:39:08 -0400481 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400482 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400483 force_reg = 1;
484 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400485 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400486 force_reg = 0;
487 }
Chris Masonffbd5172009-04-20 15:50:09 -0400488
489 pending = pending_bios->head;
490 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400491 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400492
493 /*
494 * if pending was null this time around, no bios need processing
495 * at all and we can stop. Otherwise it'll loop back up again
496 * and do an additional check so no bios are missed.
497 *
498 * device->running_pending is used to synchronize with the
499 * schedule_bio code.
500 */
Chris Masonffbd5172009-04-20 15:50:09 -0400501 if (device->pending_sync_bios.head == NULL &&
502 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400503 again = 0;
504 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400505 } else {
506 again = 1;
507 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400508 }
Chris Masonffbd5172009-04-20 15:50:09 -0400509
510 pending_bios->head = NULL;
511 pending_bios->tail = NULL;
512
Chris Mason8b712842008-06-11 16:50:36 -0400513 spin_unlock(&device->io_lock);
514
Chris Masond3977122009-01-05 21:25:51 -0500515 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400516
517 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400518 /* we want to work on both lists, but do more bios on the
519 * sync list than the regular list
520 */
521 if ((num_run > 32 &&
522 pending_bios != &device->pending_sync_bios &&
523 device->pending_sync_bios.head) ||
524 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
525 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400526 spin_lock(&device->io_lock);
527 requeue_list(pending_bios, pending, tail);
528 goto loop_lock;
529 }
530
Chris Mason8b712842008-06-11 16:50:36 -0400531 cur = pending;
532 pending = pending->bi_next;
533 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400534
Jens Axboedac56212015-04-17 16:23:59 -0600535 BUG_ON(atomic_read(&cur->__bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400536
Chris Mason2ab1ba62011-08-04 14:28:36 -0400537 /*
538 * if we're doing the sync list, record that our
539 * plug has some sync requests on it
540 *
541 * If we're doing the regular list and there are
542 * sync requests sitting around, unplug before
543 * we add more
544 */
545 if (pending_bios == &device->pending_sync_bios) {
546 sync_pending = 1;
547 } else if (sync_pending) {
548 blk_finish_plug(&plug);
549 blk_start_plug(&plug);
550 sync_pending = 0;
551 }
552
Mike Christie4e49ea42016-06-05 14:31:41 -0500553 btrfsic_submit_bio(cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400554 num_run++;
555 batch_run++;
David Sterba853d8ec2015-01-08 15:15:19 +0100556
557 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400558
559 /*
560 * we made progress, there is more work to do and the bdi
561 * is now congested. Back off and let other work structs
562 * run instead
563 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400564 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500565 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400566 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400567
Chris Masonb765ead2009-04-03 10:27:10 -0400568 ioc = current->io_context;
569
570 /*
571 * the main goal here is that we don't want to
572 * block if we're going to be able to submit
573 * more requests without blocking.
574 *
575 * This code does two great things, it pokes into
576 * the elevator code from a filesystem _and_
577 * it makes assumptions about how batching works.
578 */
579 if (ioc && ioc->nr_batch_requests > 0 &&
580 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
581 (last_waited == 0 ||
582 ioc->last_waited == last_waited)) {
583 /*
584 * we want to go through our batch of
585 * requests and stop. So, we copy out
586 * the ioc->last_waited time and test
587 * against it before looping
588 */
589 last_waited = ioc->last_waited;
David Sterba853d8ec2015-01-08 15:15:19 +0100590 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400591 continue;
592 }
Chris Mason8b712842008-06-11 16:50:36 -0400593 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400594 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500595 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400596
597 spin_unlock(&device->io_lock);
Qu Wenruoa8c93d4e2014-02-28 10:46:08 +0800598 btrfs_queue_work(fs_info->submit_workers,
599 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -0400600 goto done;
601 }
602 }
Chris Masonffbd5172009-04-20 15:50:09 -0400603
Chris Mason51684082010-03-10 15:33:32 -0500604 cond_resched();
605 if (again)
606 goto loop;
607
608 spin_lock(&device->io_lock);
609 if (device->pending_bios.head || device->pending_sync_bios.head)
610 goto loop_lock;
611 spin_unlock(&device->io_lock);
612
Chris Mason8b712842008-06-11 16:50:36 -0400613done:
Chris Mason211588a2011-04-19 20:12:40 -0400614 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400615}
616
Christoph Hellwigb2950862008-12-02 09:54:17 -0500617static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400618{
619 struct btrfs_device *device;
620
621 device = container_of(work, struct btrfs_device, work);
622 run_scheduled_bios(device);
623}
624
Anand Jaind8367db2018-01-18 22:00:37 +0800625/*
626 * Search and remove all stale (devices which are not mounted) devices.
627 * When both inputs are NULL, it will search and release all stale devices.
628 * path: Optional. When provided will it release all unmounted devices
629 * matching this path only.
630 * skip_dev: Optional. Will skip this device when searching for the stale
631 * devices.
632 */
633static void btrfs_free_stale_devices(const char *path,
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800634 struct btrfs_device *skip_device)
Anand Jain4fde46f2015-06-17 21:10:48 +0800635{
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800636 struct btrfs_fs_devices *fs_devices, *tmp_fs_devices;
637 struct btrfs_device *device, *tmp_device;
Anand Jain4fde46f2015-06-17 21:10:48 +0800638
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800639 list_for_each_entry_safe(fs_devices, tmp_fs_devices, &fs_uuids, fs_list) {
Anand Jain7bcb8162018-05-29 17:23:20 +0800640 mutex_lock(&fs_devices->device_list_mutex);
641 if (fs_devices->opened) {
642 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jain4fde46f2015-06-17 21:10:48 +0800643 continue;
Anand Jain7bcb8162018-05-29 17:23:20 +0800644 }
Anand Jain4fde46f2015-06-17 21:10:48 +0800645
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800646 list_for_each_entry_safe(device, tmp_device,
647 &fs_devices->devices, dev_list) {
Anand Jain522f1b42018-01-18 22:00:35 +0800648 int not_found = 0;
Anand Jain4fde46f2015-06-17 21:10:48 +0800649
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800650 if (skip_device && skip_device == device)
Anand Jaind8367db2018-01-18 22:00:37 +0800651 continue;
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800652 if (path && !device->name)
Anand Jain4fde46f2015-06-17 21:10:48 +0800653 continue;
654
Anand Jain4fde46f2015-06-17 21:10:48 +0800655 rcu_read_lock();
Anand Jaind8367db2018-01-18 22:00:37 +0800656 if (path)
Anand Jainfa6d2ae2018-05-29 15:33:08 +0800657 not_found = strcmp(rcu_str_deref(device->name),
Anand Jaind8367db2018-01-18 22:00:37 +0800658 path);
Anand Jain4fde46f2015-06-17 21:10:48 +0800659 rcu_read_unlock();
Anand Jain38cf6652018-01-18 22:00:34 +0800660 if (not_found)
661 continue;
Anand Jain4fde46f2015-06-17 21:10:48 +0800662
Anand Jain4fde46f2015-06-17 21:10:48 +0800663 /* delete the stale device */
Anand Jain7bcb8162018-05-29 17:23:20 +0800664 fs_devices->num_devices--;
665 list_del(&device->dev_list);
666 btrfs_free_device(device);
667
668 if (fs_devices->num_devices == 0)
Nikolay Borisovfd649f12018-01-30 16:07:37 +0200669 break;
Anand Jain7bcb8162018-05-29 17:23:20 +0800670 }
671 mutex_unlock(&fs_devices->device_list_mutex);
672 if (fs_devices->num_devices == 0) {
673 btrfs_sysfs_remove_fsid(fs_devices);
674 list_del(&fs_devices->fs_list);
675 free_fs_devices(fs_devices);
Anand Jain4fde46f2015-06-17 21:10:48 +0800676 }
677 }
678}
679
Anand Jain0fb08bc2017-11-09 23:45:24 +0800680static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices,
681 struct btrfs_device *device, fmode_t flags,
682 void *holder)
683{
684 struct request_queue *q;
685 struct block_device *bdev;
686 struct buffer_head *bh;
687 struct btrfs_super_block *disk_super;
688 u64 devid;
689 int ret;
690
691 if (device->bdev)
692 return -EINVAL;
693 if (!device->name)
694 return -EINVAL;
695
696 ret = btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
697 &bdev, &bh);
698 if (ret)
699 return ret;
700
701 disk_super = (struct btrfs_super_block *)bh->b_data;
702 devid = btrfs_stack_device_id(&disk_super->dev_item);
703 if (devid != device->devid)
704 goto error_brelse;
705
706 if (memcmp(device->uuid, disk_super->dev_item.uuid, BTRFS_UUID_SIZE))
707 goto error_brelse;
708
709 device->generation = btrfs_super_generation(disk_super);
710
711 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
Anand Jainebbede42017-12-04 12:54:52 +0800712 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800713 fs_devices->seeding = 1;
714 } else {
Anand Jainebbede42017-12-04 12:54:52 +0800715 if (bdev_read_only(bdev))
716 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
717 else
718 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800719 }
720
721 q = bdev_get_queue(bdev);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800722 if (!blk_queue_nonrot(q))
723 fs_devices->rotating = 1;
724
725 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +0800726 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800727 device->mode = flags;
728
729 fs_devices->open_devices++;
Anand Jainebbede42017-12-04 12:54:52 +0800730 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
731 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Anand Jain0fb08bc2017-11-09 23:45:24 +0800732 fs_devices->rw_devices++;
Anand Jainb1b8e382018-01-22 14:49:37 -0800733 list_add_tail(&device->dev_alloc_list, &fs_devices->alloc_list);
Anand Jain0fb08bc2017-11-09 23:45:24 +0800734 }
735 brelse(bh);
736
737 return 0;
738
739error_brelse:
740 brelse(bh);
741 blkdev_put(bdev, flags);
742
743 return -EINVAL;
744}
745
David Sterba60999ca2014-03-26 18:26:36 +0100746/*
747 * Add new device to list of registered devices
748 *
749 * Returns:
Anand Jaine124ece2018-01-18 22:02:35 +0800750 * device pointer which was just added or updated when successful
751 * error pointer when failed
David Sterba60999ca2014-03-26 18:26:36 +0100752 */
Anand Jaine124ece2018-01-18 22:02:35 +0800753static noinline struct btrfs_device *device_list_add(const char *path,
Anand Jain4306a972018-05-29 12:28:37 +0800754 struct btrfs_super_block *disk_super,
755 bool *new_device_added)
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 Jain9c6d1732018-05-29 14:10:20 +0800769 mutex_lock(&fs_devices->device_list_mutex);
Anand Jainc4babc52018-04-12 10:29:25 +0800770 list_add(&fs_devices->fs_list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300771
Chris Mason8a4b83c2008-03-24 15:02:07 -0400772 device = NULL;
773 } else {
Anand Jain9c6d1732018-05-29 14:10:20 +0800774 mutex_lock(&fs_devices->device_list_mutex);
David Sterba35c70102017-06-15 19:51:51 +0200775 device = find_device(fs_devices, devid,
776 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400777 }
Miao Xie443f24f2014-07-24 11:37:15 +0800778
Chris Mason8a4b83c2008-03-24 15:02:07 -0400779 if (!device) {
Anand Jain9c6d1732018-05-29 14:10:20 +0800780 if (fs_devices->opened) {
781 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800782 return ERR_PTR(-EBUSY);
Anand Jain9c6d1732018-05-29 14:10:20 +0800783 }
Yan Zheng2b820322008-11-17 21:11:30 -0500784
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300785 device = btrfs_alloc_device(NULL, &devid,
786 disk_super->dev_item.uuid);
787 if (IS_ERR(device)) {
Anand Jain9c6d1732018-05-29 14:10:20 +0800788 mutex_unlock(&fs_devices->device_list_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400789 /* we can safely leave the fs_devices entry around */
Anand Jaine124ece2018-01-18 22:02:35 +0800790 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400791 }
Josef Bacik606686e2012-06-04 14:03:51 -0400792
793 name = rcu_string_strdup(path, GFP_NOFS);
794 if (!name) {
David Sterbaa425f9d2018-03-20 15:47:33 +0100795 btrfs_free_device(device);
Anand Jain9c6d1732018-05-29 14:10:20 +0800796 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800797 return ERR_PTR(-ENOMEM);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400798 }
Josef Bacik606686e2012-06-04 14:03:51 -0400799 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200800
Xiao Guangrong1f781602011-04-20 10:09:16 +0000801 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100802 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400803
Yan Zheng2b820322008-11-17 21:11:30 -0500804 device->fs_devices = fs_devices;
Anand Jain4306a972018-05-29 12:28:37 +0800805 *new_device_added = true;
Anand Jain327f18c2018-01-18 22:02:33 +0800806
807 if (disk_super->label[0])
808 pr_info("BTRFS: device label %s devid %llu transid %llu %s\n",
809 disk_super->label, devid, found_transid, path);
810 else
811 pr_info("BTRFS: device fsid %pU devid %llu transid %llu %s\n",
812 disk_super->fsid, devid, found_transid, path);
813
Josef Bacik606686e2012-06-04 14:03:51 -0400814 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800815 /*
816 * When FS is already mounted.
817 * 1. If you are here and if the device->name is NULL that
818 * means this device was missing at time of FS mount.
819 * 2. If you are here and if the device->name is different
820 * from 'path' that means either
821 * a. The same device disappeared and reappeared with
822 * different name. or
823 * b. The missing-disk-which-was-replaced, has
824 * reappeared now.
825 *
826 * We must allow 1 and 2a above. But 2b would be a spurious
827 * and unintentional.
828 *
829 * Further in case of 1 and 2a above, the disk at 'path'
830 * would have missed some transaction when it was away and
831 * in case of 2a the stale bdev has to be updated as well.
832 * 2b must not be allowed at all time.
833 */
834
835 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700836 * For now, we do allow update to btrfs_fs_device through the
837 * btrfs dev scan cli after FS has been mounted. We're still
838 * tracking a problem where systems fail mount by subvolume id
839 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800840 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700841 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800842 /*
843 * That is if the FS is _not_ mounted and if you
844 * are here, that means there is more than one
845 * disk with same uuid and devid.We keep the one
846 * with larger generation number or the last-in if
847 * generation are equal.
848 */
Anand Jain9c6d1732018-05-29 14:10:20 +0800849 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800850 return ERR_PTR(-EEXIST);
Anand Jain77bdae42014-07-03 18:22:06 +0800851 }
Anand Jainb96de002014-07-03 18:22:05 +0800852
Josef Bacik606686e2012-06-04 14:03:51 -0400853 name = rcu_string_strdup(path, GFP_NOFS);
Anand Jain9c6d1732018-05-29 14:10:20 +0800854 if (!name) {
855 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800856 return ERR_PTR(-ENOMEM);
Anand Jain9c6d1732018-05-29 14:10:20 +0800857 }
Josef Bacik606686e2012-06-04 14:03:51 -0400858 rcu_string_free(device->name);
859 rcu_assign_pointer(device->name, name);
Anand Jaine6e674b2017-12-04 12:54:54 +0800860 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -0500861 fs_devices->missing_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +0800862 clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -0500863 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400864 }
865
Anand Jain77bdae42014-07-03 18:22:06 +0800866 /*
867 * Unmount does not free the btrfs_device struct but would zero
868 * generation along with most of the other members. So just update
869 * it back. We need it to pick the disk with largest generation
870 * (as above).
871 */
872 if (!fs_devices->opened)
873 device->generation = found_transid;
874
Anand Jainf2788d22018-01-18 22:02:34 +0800875 fs_devices->total_devices = btrfs_super_num_devices(disk_super);
876
Anand Jain9c6d1732018-05-29 14:10:20 +0800877 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jaine124ece2018-01-18 22:02:35 +0800878 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400879}
880
Yan Zhenge4404d62008-12-12 10:03:26 -0500881static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
882{
883 struct btrfs_fs_devices *fs_devices;
884 struct btrfs_device *device;
885 struct btrfs_device *orig_dev;
886
Ilya Dryomov2208a372013-08-12 14:33:03 +0300887 fs_devices = alloc_fs_devices(orig->fsid);
888 if (IS_ERR(fs_devices))
889 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500890
Miao Xieadbbb862014-09-03 21:35:42 +0800891 mutex_lock(&orig->device_list_mutex);
Josef Bacik02db0842012-06-21 16:03:58 -0400892 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500893
Xiao Guangrong46224702011-04-20 10:08:47 +0000894 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500895 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400896 struct rcu_string *name;
897
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300898 device = btrfs_alloc_device(NULL, &orig_dev->devid,
899 orig_dev->uuid);
900 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500901 goto error;
902
Josef Bacik606686e2012-06-04 14:03:51 -0400903 /*
904 * This is ok to do without rcu read locked because we hold the
905 * uuid mutex so nothing we touch in here is going to disappear.
906 */
Anand Jaine755f782014-06-30 17:12:47 +0800907 if (orig_dev->name) {
David Sterba78f2c9e2016-02-11 14:25:38 +0100908 name = rcu_string_strdup(orig_dev->name->str,
909 GFP_KERNEL);
Anand Jaine755f782014-06-30 17:12:47 +0800910 if (!name) {
David Sterbaa425f9d2018-03-20 15:47:33 +0100911 btrfs_free_device(device);
Anand Jaine755f782014-06-30 17:12:47 +0800912 goto error;
913 }
914 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400915 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500916
Yan Zhenge4404d62008-12-12 10:03:26 -0500917 list_add(&device->dev_list, &fs_devices->devices);
918 device->fs_devices = fs_devices;
919 fs_devices->num_devices++;
920 }
Miao Xieadbbb862014-09-03 21:35:42 +0800921 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500922 return fs_devices;
923error:
Miao Xieadbbb862014-09-03 21:35:42 +0800924 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500925 free_fs_devices(fs_devices);
926 return ERR_PTR(-ENOMEM);
927}
928
Anand Jain9b99b112018-02-27 12:41:59 +0800929/*
930 * After we have read the system tree and know devids belonging to
931 * this filesystem, remove the device which does not belong there.
932 */
933void btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400934{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500935 struct btrfs_device *device, *next;
Miao Xie443f24f2014-07-24 11:37:15 +0800936 struct btrfs_device *latest_dev = NULL;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500937
Chris Masondfe25022008-05-13 13:46:40 -0400938 mutex_lock(&uuid_mutex);
939again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000940 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500941 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Anand Jaine12c9622017-12-04 12:54:53 +0800942 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
943 &device->dev_state)) {
Anand Jain401e29c2017-12-04 12:54:55 +0800944 if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
945 &device->dev_state) &&
946 (!latest_dev ||
947 device->generation > latest_dev->generation)) {
Miao Xie443f24f2014-07-24 11:37:15 +0800948 latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500949 }
Yan Zheng2b820322008-11-17 21:11:30 -0500950 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500951 }
Yan Zheng2b820322008-11-17 21:11:30 -0500952
Stefan Behrens8dabb742012-11-06 13:15:27 +0100953 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
954 /*
955 * In the first step, keep the device which has
956 * the correct fsid and the devid that is used
957 * for the dev_replace procedure.
958 * In the second step, the dev_replace state is
959 * read from the device tree and it is known
960 * whether the procedure is really active or
961 * not, which means whether this device is
962 * used or whether it should be removed.
963 */
Anand Jain401e29c2017-12-04 12:54:55 +0800964 if (step == 0 || test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
965 &device->dev_state)) {
Stefan Behrens8dabb742012-11-06 13:15:27 +0100966 continue;
967 }
968 }
Yan Zheng2b820322008-11-17 21:11:30 -0500969 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100970 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500971 device->bdev = NULL;
972 fs_devices->open_devices--;
973 }
Anand Jainebbede42017-12-04 12:54:52 +0800974 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -0500975 list_del_init(&device->dev_alloc_list);
Anand Jainebbede42017-12-04 12:54:52 +0800976 clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +0800977 if (!test_bit(BTRFS_DEV_STATE_REPLACE_TGT,
978 &device->dev_state))
Stefan Behrens8dabb742012-11-06 13:15:27 +0100979 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500980 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500981 list_del_init(&device->dev_list);
982 fs_devices->num_devices--;
David Sterbaa425f9d2018-03-20 15:47:33 +0100983 btrfs_free_device(device);
Chris Masondfe25022008-05-13 13:46:40 -0400984 }
Yan Zheng2b820322008-11-17 21:11:30 -0500985
986 if (fs_devices->seed) {
987 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500988 goto again;
989 }
990
Miao Xie443f24f2014-07-24 11:37:15 +0800991 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500992
Chris Masondfe25022008-05-13 13:46:40 -0400993 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400994}
Chris Masona0af4692008-05-13 16:03:06 -0400995
David Sterbaf06c5962017-06-06 17:08:23 +0200996static void free_device_rcu(struct rcu_head *head)
Xiao Guangrong1f781602011-04-20 10:09:16 +0000997{
998 struct btrfs_device *device;
999
1000 device = container_of(head, struct btrfs_device, rcu);
David Sterbaa425f9d2018-03-20 15:47:33 +01001001 btrfs_free_device(device);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001002}
1003
Anand Jain14238812016-07-22 06:04:53 +08001004static void btrfs_close_bdev(struct btrfs_device *device)
1005{
David Sterba08ffcae2017-06-19 16:55:35 +02001006 if (!device->bdev)
1007 return;
1008
Anand Jainebbede42017-12-04 12:54:52 +08001009 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Anand Jain14238812016-07-22 06:04:53 +08001010 sync_blockdev(device->bdev);
1011 invalidate_bdev(device->bdev);
1012 }
1013
David Sterba08ffcae2017-06-19 16:55:35 +02001014 blkdev_put(device->bdev, device->mode);
Anand Jain14238812016-07-22 06:04:53 +08001015}
1016
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001017static void btrfs_close_one_device(struct btrfs_device *device)
Anand Jainf448341a2016-06-14 18:55:25 +08001018{
1019 struct btrfs_fs_devices *fs_devices = device->fs_devices;
1020 struct btrfs_device *new_device;
1021 struct rcu_string *name;
1022
1023 if (device->bdev)
1024 fs_devices->open_devices--;
1025
Anand Jainebbede42017-12-04 12:54:52 +08001026 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jainf448341a2016-06-14 18:55:25 +08001027 device->devid != BTRFS_DEV_REPLACE_DEVID) {
1028 list_del_init(&device->dev_alloc_list);
1029 fs_devices->rw_devices--;
1030 }
1031
Anand Jaine6e674b2017-12-04 12:54:54 +08001032 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
Anand Jainf448341a2016-06-14 18:55:25 +08001033 fs_devices->missing_devices--;
1034
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001035 btrfs_close_bdev(device);
1036
Anand Jainf448341a2016-06-14 18:55:25 +08001037 new_device = btrfs_alloc_device(NULL, &device->devid,
1038 device->uuid);
1039 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
1040
1041 /* Safe because we are under uuid_mutex */
1042 if (device->name) {
1043 name = rcu_string_strdup(device->name->str, GFP_NOFS);
1044 BUG_ON(!name); /* -ENOMEM */
1045 rcu_assign_pointer(new_device->name, name);
1046 }
1047
1048 list_replace_rcu(&device->dev_list, &new_device->dev_list);
1049 new_device->fs_devices = device->fs_devices;
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001050
1051 call_rcu(&device->rcu, free_device_rcu);
Anand Jainf448341a2016-06-14 18:55:25 +08001052}
1053
Anand Jain0226e0e2018-04-12 10:29:27 +08001054static int close_fs_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001055{
Sasha Levin2037a092015-05-12 19:31:37 -04001056 struct btrfs_device *device, *tmp;
Yan Zhenge4404d62008-12-12 10:03:26 -05001057
Yan Zheng2b820322008-11-17 21:11:30 -05001058 if (--fs_devices->opened > 0)
1059 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001060
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001061 mutex_lock(&fs_devices->device_list_mutex);
Sasha Levin2037a092015-05-12 19:31:37 -04001062 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
Nikolay Borisov959b1c02018-06-29 08:26:05 +03001063 btrfs_close_one_device(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001064 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00001065 mutex_unlock(&fs_devices->device_list_mutex);
1066
Yan Zhenge4404d62008-12-12 10:03:26 -05001067 WARN_ON(fs_devices->open_devices);
1068 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001069 fs_devices->opened = 0;
1070 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001071
Chris Mason8a4b83c2008-03-24 15:02:07 -04001072 return 0;
1073}
1074
Yan Zheng2b820322008-11-17 21:11:30 -05001075int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
1076{
Yan Zhenge4404d62008-12-12 10:03:26 -05001077 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -05001078 int ret;
1079
1080 mutex_lock(&uuid_mutex);
Anand Jain0226e0e2018-04-12 10:29:27 +08001081 ret = close_fs_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05001082 if (!fs_devices->opened) {
1083 seed_devices = fs_devices->seed;
1084 fs_devices->seed = NULL;
1085 }
Yan Zheng2b820322008-11-17 21:11:30 -05001086 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001087
1088 while (seed_devices) {
1089 fs_devices = seed_devices;
1090 seed_devices = fs_devices->seed;
Anand Jain0226e0e2018-04-12 10:29:27 +08001091 close_fs_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05001092 free_fs_devices(fs_devices);
1093 }
Yan Zheng2b820322008-11-17 21:11:30 -05001094 return ret;
1095}
1096
Anand Jain897fb572018-04-12 10:29:28 +08001097static int open_fs_devices(struct btrfs_fs_devices *fs_devices,
Yan Zhenge4404d62008-12-12 10:03:26 -05001098 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001099{
Chris Mason8a4b83c2008-03-24 15:02:07 -04001100 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +08001101 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -04001102 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001103
Tejun Heod4d77622010-11-13 11:55:18 +01001104 flags |= FMODE_EXCL;
1105
Anand Jainf117e292018-04-12 10:29:26 +08001106 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Eric Sandeenf63e0cc2013-04-04 20:45:08 +00001107 /* Just open everything we can; ignore failures here */
Anand Jain0fb08bc2017-11-09 23:45:24 +08001108 if (btrfs_open_one_device(fs_devices, device, flags, holder))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001109 continue;
Chris Masona0af4692008-05-13 16:03:06 -04001110
Anand Jain9f050db2017-11-09 23:45:25 +08001111 if (!latest_dev ||
1112 device->generation > latest_dev->generation)
1113 latest_dev = device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001114 }
Chris Masona0af4692008-05-13 16:03:06 -04001115 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +03001116 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -04001117 goto out;
1118 }
Yan Zheng2b820322008-11-17 21:11:30 -05001119 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +08001120 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -05001121 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -04001122out:
Yan Zheng2b820322008-11-17 21:11:30 -05001123 return ret;
1124}
1125
Anand Jainf8e10cd2018-01-22 14:49:36 -08001126static int devid_cmp(void *priv, struct list_head *a, struct list_head *b)
1127{
1128 struct btrfs_device *dev1, *dev2;
1129
1130 dev1 = list_entry(a, struct btrfs_device, dev_list);
1131 dev2 = list_entry(b, struct btrfs_device, dev_list);
1132
1133 if (dev1->devid < dev2->devid)
1134 return -1;
1135 else if (dev1->devid > dev2->devid)
1136 return 1;
1137 return 0;
1138}
1139
Yan Zheng2b820322008-11-17 21:11:30 -05001140int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -05001141 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -05001142{
1143 int ret;
1144
David Sterbaf5194e32018-06-19 17:09:47 +02001145 lockdep_assert_held(&uuid_mutex);
1146
Anand Jain542c5902018-04-12 10:29:34 +08001147 mutex_lock(&fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001148 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001149 fs_devices->opened++;
1150 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001151 } else {
Anand Jainf8e10cd2018-01-22 14:49:36 -08001152 list_sort(NULL, &fs_devices->devices, devid_cmp);
Anand Jain897fb572018-04-12 10:29:28 +08001153 ret = open_fs_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -05001154 }
Anand Jain542c5902018-04-12 10:29:34 +08001155 mutex_unlock(&fs_devices->device_list_mutex);
1156
Chris Mason8a4b83c2008-03-24 15:02:07 -04001157 return ret;
1158}
1159
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001160static void btrfs_release_disk_super(struct page *page)
Anand Jain6cf86a002016-02-13 10:01:29 +08001161{
1162 kunmap(page);
1163 put_page(page);
1164}
1165
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001166static int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr,
1167 struct page **page,
1168 struct btrfs_super_block **disk_super)
Anand Jain6cf86a002016-02-13 10:01:29 +08001169{
1170 void *p;
1171 pgoff_t index;
1172
1173 /* make sure our super fits in the device */
1174 if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode))
1175 return 1;
1176
1177 /* make sure our super fits in the page */
1178 if (sizeof(**disk_super) > PAGE_SIZE)
1179 return 1;
1180
1181 /* make sure our super doesn't straddle pages on disk */
1182 index = bytenr >> PAGE_SHIFT;
1183 if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index)
1184 return 1;
1185
1186 /* pull in the page with our super */
1187 *page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1188 index, GFP_KERNEL);
1189
1190 if (IS_ERR_OR_NULL(*page))
1191 return 1;
1192
1193 p = kmap(*page);
1194
1195 /* align our pointer to the offset of the super block */
1196 *disk_super = p + (bytenr & ~PAGE_MASK);
1197
1198 if (btrfs_super_bytenr(*disk_super) != bytenr ||
1199 btrfs_super_magic(*disk_super) != BTRFS_MAGIC) {
1200 btrfs_release_disk_super(*page);
1201 return 1;
1202 }
1203
1204 if ((*disk_super)->label[0] &&
1205 (*disk_super)->label[BTRFS_LABEL_SIZE - 1])
1206 (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0';
1207
1208 return 0;
1209}
1210
David Sterba6f60cbd2013-02-15 11:31:02 -07001211/*
1212 * Look for a btrfs signature on a device. This may be called out of the mount path
1213 * and we are not allowed to call set_blocksize during the scan. The superblock
1214 * is read via pagecache
1215 */
Gu Jinxiang36350e92018-07-12 14:23:16 +08001216struct btrfs_device *btrfs_scan_one_device(const char *path, fmode_t flags,
1217 void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -04001218{
1219 struct btrfs_super_block *disk_super;
Anand Jain4306a972018-05-29 12:28:37 +08001220 bool new_device_added = false;
Gu Jinxiang36350e92018-07-12 14:23:16 +08001221 struct btrfs_device *device = NULL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001222 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -07001223 struct page *page;
David Sterba6f60cbd2013-02-15 11:31:02 -07001224 u64 bytenr;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001225
David Sterba899f9302018-06-19 16:37:36 +02001226 lockdep_assert_held(&uuid_mutex);
1227
David Sterba6f60cbd2013-02-15 11:31:02 -07001228 /*
1229 * we would like to check all the supers, but that would make
1230 * a btrfs mount succeed after a mkfs from a different FS.
1231 * So, we need to add a special mount option to scan for
1232 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1233 */
1234 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +01001235 flags |= FMODE_EXCL;
David Sterba6f60cbd2013-02-15 11:31:02 -07001236
1237 bdev = blkdev_get_by_path(path, flags, holder);
Anand Jainb6ed73b2018-04-12 10:29:24 +08001238 if (IS_ERR(bdev))
Gu Jinxiang36350e92018-07-12 14:23:16 +08001239 return ERR_CAST(bdev);
David Sterba6f60cbd2013-02-15 11:31:02 -07001240
Anand Jain05a5c552017-12-15 15:40:16 +08001241 if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super)) {
Gu Jinxiang36350e92018-07-12 14:23:16 +08001242 device = ERR_PTR(-EINVAL);
David Sterba6f60cbd2013-02-15 11:31:02 -07001243 goto error_bdev_put;
Anand Jain05a5c552017-12-15 15:40:16 +08001244 }
David Sterba6f60cbd2013-02-15 11:31:02 -07001245
Anand Jain4306a972018-05-29 12:28:37 +08001246 device = device_list_add(path, disk_super, &new_device_added);
Gu Jinxiang36350e92018-07-12 14:23:16 +08001247 if (!IS_ERR(device)) {
Anand Jain4306a972018-05-29 12:28:37 +08001248 if (new_device_added)
1249 btrfs_free_stale_devices(path, device);
1250 }
David Sterba6f60cbd2013-02-15 11:31:02 -07001251
Anand Jain6cf86a002016-02-13 10:01:29 +08001252 btrfs_release_disk_super(page);
David Sterba6f60cbd2013-02-15 11:31:02 -07001253
1254error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001255 blkdev_put(bdev, flags);
Anand Jainb6ed73b2018-04-12 10:29:24 +08001256
Gu Jinxiang36350e92018-07-12 14:23:16 +08001257 return device;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001258}
Chris Mason0b86a832008-03-24 15:01:56 -04001259
Jeff Mahoney499f3772015-06-15 09:41:17 -04001260static int contains_pending_extent(struct btrfs_transaction *transaction,
Josef Bacik6df9a952013-06-27 13:22:46 -04001261 struct btrfs_device *device,
1262 u64 *start, u64 len)
1263{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001264 struct btrfs_fs_info *fs_info = device->fs_info;
Josef Bacik6df9a952013-06-27 13:22:46 -04001265 struct extent_map *em;
Jeff Mahoney499f3772015-06-15 09:41:17 -04001266 struct list_head *search_list = &fs_info->pinned_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001267 int ret = 0;
Forrest Liu1b984502015-02-09 17:30:47 +08001268 u64 physical_start = *start;
Josef Bacik6df9a952013-06-27 13:22:46 -04001269
Jeff Mahoney499f3772015-06-15 09:41:17 -04001270 if (transaction)
1271 search_list = &transaction->pending_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001272again:
1273 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001274 struct map_lookup *map;
1275 int i;
1276
Jeff Mahoney95617d62015-06-03 10:55:48 -04001277 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04001278 for (i = 0; i < map->num_stripes; i++) {
Filipe Mananac152b632015-05-14 10:46:03 +01001279 u64 end;
1280
Josef Bacik6df9a952013-06-27 13:22:46 -04001281 if (map->stripes[i].dev != device)
1282 continue;
Forrest Liu1b984502015-02-09 17:30:47 +08001283 if (map->stripes[i].physical >= physical_start + len ||
Josef Bacik6df9a952013-06-27 13:22:46 -04001284 map->stripes[i].physical + em->orig_block_len <=
Forrest Liu1b984502015-02-09 17:30:47 +08001285 physical_start)
Josef Bacik6df9a952013-06-27 13:22:46 -04001286 continue;
Filipe Mananac152b632015-05-14 10:46:03 +01001287 /*
1288 * Make sure that while processing the pinned list we do
1289 * not override our *start with a lower value, because
1290 * we can have pinned chunks that fall within this
1291 * device hole and that have lower physical addresses
1292 * than the pending chunks we processed before. If we
1293 * do not take this special care we can end up getting
1294 * 2 pending chunks that start at the same physical
1295 * device offsets because the end offset of a pinned
1296 * chunk can be equal to the start offset of some
1297 * pending chunk.
1298 */
1299 end = map->stripes[i].physical + em->orig_block_len;
1300 if (end > *start) {
1301 *start = end;
1302 ret = 1;
1303 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001304 }
1305 }
Jeff Mahoney499f3772015-06-15 09:41:17 -04001306 if (search_list != &fs_info->pinned_chunks) {
1307 search_list = &fs_info->pinned_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001308 goto again;
1309 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001310
1311 return ret;
1312}
1313
1314
Chris Mason0b86a832008-03-24 15:01:56 -04001315/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001316 * find_free_dev_extent_start - find free space in the specified device
1317 * @device: the device which we search the free space in
1318 * @num_bytes: the size of the free space that we need
1319 * @search_start: the position from which to begin the search
1320 * @start: store the start of the free space.
1321 * @len: the size of the free space. that we find, or the size
1322 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001323 *
Chris Mason0b86a832008-03-24 15:01:56 -04001324 * this uses a pretty simple search, the expectation is that it is
1325 * called very infrequently and that a given device has a small number
1326 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001327 *
1328 * @start is used to store the start of the free space if we find. But if we
1329 * don't find suitable free space, it will be used to store the start position
1330 * of the max free space.
1331 *
1332 * @len is used to store the size of the free space that we find.
1333 * But if we don't find suitable free space, it is used to store the size of
1334 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001335 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001336int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1337 struct btrfs_device *device, u64 num_bytes,
1338 u64 search_start, u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001339{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001340 struct btrfs_fs_info *fs_info = device->fs_info;
1341 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001342 struct btrfs_key key;
Miao Xie7bfc8372011-01-05 10:07:26 +00001343 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001344 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001345 u64 hole_size;
1346 u64 max_hole_start;
1347 u64 max_hole_size;
1348 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001349 u64 search_end = device->total_bytes;
1350 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001351 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001352 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001353
1354 /*
1355 * We don't want to overwrite the superblock on the drive nor any area
1356 * used by the boot loader (grub for example), so we make sure to start
1357 * at an offset of at least 1MB.
1358 */
David Sterba0d0c71b2017-06-15 01:30:06 +02001359 search_start = max_t(u64, search_start, SZ_1M);
Chris Mason0b86a832008-03-24 15:01:56 -04001360
Josef Bacik6df9a952013-06-27 13:22:46 -04001361 path = btrfs_alloc_path();
1362 if (!path)
1363 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001364
Miao Xie7bfc8372011-01-05 10:07:26 +00001365 max_hole_start = search_start;
1366 max_hole_size = 0;
1367
Zhao Leif2ab7612015-02-16 18:52:17 +08001368again:
Anand Jain401e29c2017-12-04 12:54:55 +08001369 if (search_start >= search_end ||
1370 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001371 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001372 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001373 }
1374
David Sterbae4058b52015-11-27 16:31:35 +01001375 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001376 path->search_commit_root = 1;
1377 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001378
Chris Mason0b86a832008-03-24 15:01:56 -04001379 key.objectid = device->devid;
1380 key.offset = search_start;
1381 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001382
Li Zefan125ccb02011-12-08 15:07:24 +08001383 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001384 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001385 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001386 if (ret > 0) {
1387 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1388 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001389 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001390 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001391
Chris Mason0b86a832008-03-24 15:01:56 -04001392 while (1) {
1393 l = path->nodes[0];
1394 slot = path->slots[0];
1395 if (slot >= btrfs_header_nritems(l)) {
1396 ret = btrfs_next_leaf(root, path);
1397 if (ret == 0)
1398 continue;
1399 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001400 goto out;
1401
1402 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001403 }
1404 btrfs_item_key_to_cpu(l, &key, slot);
1405
1406 if (key.objectid < device->devid)
1407 goto next;
1408
1409 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001410 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001411
David Sterba962a2982014-06-04 18:41:45 +02001412 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001413 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001414
Miao Xie7bfc8372011-01-05 10:07:26 +00001415 if (key.offset > search_start) {
1416 hole_size = key.offset - search_start;
1417
Josef Bacik6df9a952013-06-27 13:22:46 -04001418 /*
1419 * Have to check before we set max_hole_start, otherwise
1420 * we could end up sending back this offset anyway.
1421 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001422 if (contains_pending_extent(transaction, device,
Josef Bacik6df9a952013-06-27 13:22:46 -04001423 &search_start,
Forrest Liu1b984502015-02-09 17:30:47 +08001424 hole_size)) {
1425 if (key.offset >= search_start) {
1426 hole_size = key.offset - search_start;
1427 } else {
1428 WARN_ON_ONCE(1);
1429 hole_size = 0;
1430 }
1431 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001432
Miao Xie7bfc8372011-01-05 10:07:26 +00001433 if (hole_size > max_hole_size) {
1434 max_hole_start = search_start;
1435 max_hole_size = hole_size;
1436 }
1437
1438 /*
1439 * If this free space is greater than which we need,
1440 * it must be the max free space that we have found
1441 * until now, so max_hole_start must point to the start
1442 * of this free space and the length of this free space
1443 * is stored in max_hole_size. Thus, we return
1444 * max_hole_start and max_hole_size and go back to the
1445 * caller.
1446 */
1447 if (hole_size >= num_bytes) {
1448 ret = 0;
1449 goto out;
1450 }
1451 }
1452
Chris Mason0b86a832008-03-24 15:01:56 -04001453 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001454 extent_end = key.offset + btrfs_dev_extent_length(l,
1455 dev_extent);
1456 if (extent_end > search_start)
1457 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001458next:
1459 path->slots[0]++;
1460 cond_resched();
1461 }
Chris Mason0b86a832008-03-24 15:01:56 -04001462
liubo38c01b92011-08-02 02:39:03 +00001463 /*
1464 * At this point, search_start should be the end of
1465 * allocated dev extents, and when shrinking the device,
1466 * search_end may be smaller than search_start.
1467 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001468 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001469 hole_size = search_end - search_start;
1470
Jeff Mahoney499f3772015-06-15 09:41:17 -04001471 if (contains_pending_extent(transaction, device, &search_start,
Zhao Leif2ab7612015-02-16 18:52:17 +08001472 hole_size)) {
1473 btrfs_release_path(path);
1474 goto again;
1475 }
Chris Mason0b86a832008-03-24 15:01:56 -04001476
Zhao Leif2ab7612015-02-16 18:52:17 +08001477 if (hole_size > max_hole_size) {
1478 max_hole_start = search_start;
1479 max_hole_size = hole_size;
1480 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001481 }
1482
Miao Xie7bfc8372011-01-05 10:07:26 +00001483 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001484 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001485 ret = -ENOSPC;
1486 else
1487 ret = 0;
1488
1489out:
Yan Zheng2b820322008-11-17 21:11:30 -05001490 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001491 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001492 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001493 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001494 return ret;
1495}
1496
Jeff Mahoney499f3772015-06-15 09:41:17 -04001497int find_free_dev_extent(struct btrfs_trans_handle *trans,
1498 struct btrfs_device *device, u64 num_bytes,
1499 u64 *start, u64 *len)
1500{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001501 /* FIXME use last free of some kind */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001502 return find_free_dev_extent_start(trans->transaction, device,
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001503 num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001504}
1505
Christoph Hellwigb2950862008-12-02 09:54:17 -05001506static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001507 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001508 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001509{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001510 struct btrfs_fs_info *fs_info = device->fs_info;
1511 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001512 int ret;
1513 struct btrfs_path *path;
Chris Mason8f18cf12008-04-25 16:53:30 -04001514 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001515 struct btrfs_key found_key;
1516 struct extent_buffer *leaf = NULL;
1517 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001518
1519 path = btrfs_alloc_path();
1520 if (!path)
1521 return -ENOMEM;
1522
1523 key.objectid = device->devid;
1524 key.offset = start;
1525 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001526again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001527 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001528 if (ret > 0) {
1529 ret = btrfs_previous_item(root, path, key.objectid,
1530 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001531 if (ret)
1532 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001533 leaf = path->nodes[0];
1534 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1535 extent = btrfs_item_ptr(leaf, path->slots[0],
1536 struct btrfs_dev_extent);
1537 BUG_ON(found_key.offset > start || found_key.offset +
1538 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001539 key = found_key;
1540 btrfs_release_path(path);
1541 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001542 } else if (ret == 0) {
1543 leaf = path->nodes[0];
1544 extent = btrfs_item_ptr(leaf, path->slots[0],
1545 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001546 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001547 btrfs_handle_fs_error(fs_info, ret, "Slot search failed");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001548 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001549 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001550
Miao Xie2196d6e2014-09-03 21:35:41 +08001551 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1552
Chris Mason8f18cf12008-04-25 16:53:30 -04001553 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001554 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001555 btrfs_handle_fs_error(fs_info, ret,
1556 "Failed to remove dev extent item");
Zhao Lei13212b52015-02-12 14:18:17 +08001557 } else {
Josef Bacik3204d332015-09-24 10:46:10 -04001558 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001559 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001560out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001561 btrfs_free_path(path);
1562 return ret;
1563}
1564
Eric Sandeen48a3b632013-04-25 20:41:01 +00001565static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1566 struct btrfs_device *device,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001567 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001568{
1569 int ret;
1570 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001571 struct btrfs_fs_info *fs_info = device->fs_info;
1572 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001573 struct btrfs_dev_extent *extent;
1574 struct extent_buffer *leaf;
1575 struct btrfs_key key;
1576
Anand Jaine12c9622017-12-04 12:54:53 +08001577 WARN_ON(!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state));
Anand Jain401e29c2017-12-04 12:54:55 +08001578 WARN_ON(test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state));
Chris Mason0b86a832008-03-24 15:01:56 -04001579 path = btrfs_alloc_path();
1580 if (!path)
1581 return -ENOMEM;
1582
Chris Mason0b86a832008-03-24 15:01:56 -04001583 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001584 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001585 key.type = BTRFS_DEV_EXTENT_KEY;
1586 ret = btrfs_insert_empty_item(trans, root, path, &key,
1587 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001588 if (ret)
1589 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001590
1591 leaf = path->nodes[0];
1592 extent = btrfs_item_ptr(leaf, path->slots[0],
1593 struct btrfs_dev_extent);
Nikolay Borisovb5d90712017-08-18 17:58:23 +03001594 btrfs_set_dev_extent_chunk_tree(leaf, extent,
1595 BTRFS_CHUNK_TREE_OBJECTID);
Nikolay Borisov0ca00af2017-08-18 17:58:22 +03001596 btrfs_set_dev_extent_chunk_objectid(leaf, extent,
1597 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Masone17cade2008-04-15 15:41:47 -04001598 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1599
Chris Mason0b86a832008-03-24 15:01:56 -04001600 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1601 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001602out:
Chris Mason0b86a832008-03-24 15:01:56 -04001603 btrfs_free_path(path);
1604 return ret;
1605}
1606
Josef Bacik6df9a952013-06-27 13:22:46 -04001607static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001608{
Josef Bacik6df9a952013-06-27 13:22:46 -04001609 struct extent_map_tree *em_tree;
1610 struct extent_map *em;
1611 struct rb_node *n;
1612 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001613
Josef Bacik6df9a952013-06-27 13:22:46 -04001614 em_tree = &fs_info->mapping_tree.map_tree;
1615 read_lock(&em_tree->lock);
1616 n = rb_last(&em_tree->map);
1617 if (n) {
1618 em = rb_entry(n, struct extent_map, rb_node);
1619 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001620 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001621 read_unlock(&em_tree->lock);
1622
Chris Mason0b86a832008-03-24 15:01:56 -04001623 return ret;
1624}
1625
Ilya Dryomov53f10652013-08-12 14:33:01 +03001626static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1627 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001628{
1629 int ret;
1630 struct btrfs_key key;
1631 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001632 struct btrfs_path *path;
1633
Yan Zheng2b820322008-11-17 21:11:30 -05001634 path = btrfs_alloc_path();
1635 if (!path)
1636 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001637
1638 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1639 key.type = BTRFS_DEV_ITEM_KEY;
1640 key.offset = (u64)-1;
1641
Ilya Dryomov53f10652013-08-12 14:33:01 +03001642 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001643 if (ret < 0)
1644 goto error;
1645
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001646 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001647
Ilya Dryomov53f10652013-08-12 14:33:01 +03001648 ret = btrfs_previous_item(fs_info->chunk_root, path,
1649 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001650 BTRFS_DEV_ITEM_KEY);
1651 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001652 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001653 } else {
1654 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1655 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001656 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001657 }
1658 ret = 0;
1659error:
Yan Zheng2b820322008-11-17 21:11:30 -05001660 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001661 return ret;
1662}
1663
1664/*
1665 * the device information is stored in the chunk root
1666 * the btrfs_device struct should be fully filled in
1667 */
Anand Jainc74a0b02017-11-06 16:36:15 +08001668static int btrfs_add_dev_item(struct btrfs_trans_handle *trans,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001669 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001670{
1671 int ret;
1672 struct btrfs_path *path;
1673 struct btrfs_dev_item *dev_item;
1674 struct extent_buffer *leaf;
1675 struct btrfs_key key;
1676 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001677
Chris Mason0b86a832008-03-24 15:01:56 -04001678 path = btrfs_alloc_path();
1679 if (!path)
1680 return -ENOMEM;
1681
Chris Mason0b86a832008-03-24 15:01:56 -04001682 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1683 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001684 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001685
Nikolay Borisov8e87e852018-07-20 19:37:47 +03001686 ret = btrfs_insert_empty_item(trans, trans->fs_info->chunk_root, path,
1687 &key, sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001688 if (ret)
1689 goto out;
1690
1691 leaf = path->nodes[0];
1692 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1693
1694 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001695 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001696 btrfs_set_device_type(leaf, dev_item, device->type);
1697 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1698 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1699 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001700 btrfs_set_device_total_bytes(leaf, dev_item,
1701 btrfs_device_get_disk_total_bytes(device));
1702 btrfs_set_device_bytes_used(leaf, dev_item,
1703 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001704 btrfs_set_device_group(leaf, dev_item, 0);
1705 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1706 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001707 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001708
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001709 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001710 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001711 ptr = btrfs_device_fsid(dev_item);
Nikolay Borisov8e87e852018-07-20 19:37:47 +03001712 write_extent_buffer(leaf, trans->fs_info->fsid, ptr, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001713 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001714
Yan Zheng2b820322008-11-17 21:11:30 -05001715 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001716out:
1717 btrfs_free_path(path);
1718 return ret;
1719}
Chris Mason8f18cf12008-04-25 16:53:30 -04001720
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001721/*
1722 * Function to update ctime/mtime for a given device path.
1723 * Mainly used for ctime/mtime based probe like libblkid.
1724 */
David Sterbada353f62017-02-14 17:55:53 +01001725static void update_dev_time(const char *path_name)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001726{
1727 struct file *filp;
1728
1729 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001730 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001731 return;
1732 file_update_time(filp);
1733 filp_close(filp, NULL);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001734}
1735
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001736static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info,
Chris Masona061fc82008-05-07 11:43:44 -04001737 struct btrfs_device *device)
1738{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001739 struct btrfs_root *root = fs_info->chunk_root;
Chris Masona061fc82008-05-07 11:43:44 -04001740 int ret;
1741 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001742 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001743 struct btrfs_trans_handle *trans;
1744
Chris Masona061fc82008-05-07 11:43:44 -04001745 path = btrfs_alloc_path();
1746 if (!path)
1747 return -ENOMEM;
1748
Yan, Zhenga22285a2010-05-16 10:48:46 -04001749 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001750 if (IS_ERR(trans)) {
1751 btrfs_free_path(path);
1752 return PTR_ERR(trans);
1753 }
Chris Masona061fc82008-05-07 11:43:44 -04001754 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1755 key.type = BTRFS_DEV_ITEM_KEY;
1756 key.offset = device->devid;
1757
1758 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001759 if (ret) {
1760 if (ret > 0)
1761 ret = -ENOENT;
1762 btrfs_abort_transaction(trans, ret);
1763 btrfs_end_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001764 goto out;
1765 }
1766
1767 ret = btrfs_del_item(trans, root, path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001768 if (ret) {
1769 btrfs_abort_transaction(trans, ret);
1770 btrfs_end_transaction(trans);
1771 }
1772
Chris Masona061fc82008-05-07 11:43:44 -04001773out:
1774 btrfs_free_path(path);
Nikolay Borisov5e9f2ad2017-10-23 09:58:46 +03001775 if (!ret)
1776 ret = btrfs_commit_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001777 return ret;
1778}
1779
David Sterba3cc31a02016-02-15 16:00:26 +01001780/*
1781 * Verify that @num_devices satisfies the RAID profile constraints in the whole
1782 * filesystem. It's up to the caller to adjust that number regarding eg. device
1783 * replace.
1784 */
1785static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info,
1786 u64 num_devices)
Chris Masona061fc82008-05-07 11:43:44 -04001787{
Chris Masona061fc82008-05-07 11:43:44 -04001788 u64 all_avail;
Miao Xiede98ced2013-01-29 10:13:12 +00001789 unsigned seq;
David Sterba418775a2016-02-15 16:28:14 +01001790 int i;
Chris Masona061fc82008-05-07 11:43:44 -04001791
Miao Xiede98ced2013-01-29 10:13:12 +00001792 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001793 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00001794
Anand Jainbd45ffb2016-02-13 10:01:34 +08001795 all_avail = fs_info->avail_data_alloc_bits |
1796 fs_info->avail_system_alloc_bits |
1797 fs_info->avail_metadata_alloc_bits;
1798 } while (read_seqretry(&fs_info->profiles_lock, seq));
Anand Jainf1fa7f22016-02-13 10:01:33 +08001799
David Sterba418775a2016-02-15 16:28:14 +01001800 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
Anand Jain41a6e892018-04-25 19:01:43 +08001801 if (!(all_avail & btrfs_raid_array[i].bg_flag))
David Sterba418775a2016-02-15 16:28:14 +01001802 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001803
David Sterba418775a2016-02-15 16:28:14 +01001804 if (num_devices < btrfs_raid_array[i].devs_min) {
Anand Jainf9fbcaa2018-04-25 19:01:44 +08001805 int ret = btrfs_raid_array[i].mindev_error;
Chris Masona061fc82008-05-07 11:43:44 -04001806
David Sterba418775a2016-02-15 16:28:14 +01001807 if (ret)
1808 return ret;
1809 }
Anand Jainbd45ffb2016-02-13 10:01:34 +08001810 }
1811
1812 return 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001813}
1814
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001815static struct btrfs_device * btrfs_find_next_active_device(
1816 struct btrfs_fs_devices *fs_devs, struct btrfs_device *device)
Anand Jain88acff62016-05-03 17:44:43 +08001817{
1818 struct btrfs_device *next_device;
1819
1820 list_for_each_entry(next_device, &fs_devs->devices, dev_list) {
1821 if (next_device != device &&
Anand Jaine6e674b2017-12-04 12:54:54 +08001822 !test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state)
1823 && next_device->bdev)
Anand Jain88acff62016-05-03 17:44:43 +08001824 return next_device;
1825 }
1826
1827 return NULL;
1828}
1829
1830/*
1831 * Helper function to check if the given device is part of s_bdev / latest_bdev
1832 * and replace it with the provided or the next active device, in the context
1833 * where this function called, there should be always be another device (or
1834 * this_dev) which is active.
1835 */
1836void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info,
1837 struct btrfs_device *device, struct btrfs_device *this_dev)
1838{
1839 struct btrfs_device *next_device;
1840
1841 if (this_dev)
1842 next_device = this_dev;
1843 else
1844 next_device = btrfs_find_next_active_device(fs_info->fs_devices,
1845 device);
1846 ASSERT(next_device);
1847
1848 if (fs_info->sb->s_bdev &&
1849 (fs_info->sb->s_bdev == device->bdev))
1850 fs_info->sb->s_bdev = next_device->bdev;
1851
1852 if (fs_info->fs_devices->latest_bdev == device->bdev)
1853 fs_info->fs_devices->latest_bdev = next_device->bdev;
1854}
1855
David Sterbada353f62017-02-14 17:55:53 +01001856int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path,
1857 u64 devid)
Anand Jainf1fa7f22016-02-13 10:01:33 +08001858{
1859 struct btrfs_device *device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001860 struct btrfs_fs_devices *cur_devices;
Anand Jainb5185192018-04-12 10:29:30 +08001861 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001862 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001863 int ret = 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001864
1865 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001866
Anand Jainb5185192018-04-12 10:29:30 +08001867 num_devices = fs_devices->num_devices;
David Sterba7e79cb82018-03-24 02:11:38 +01001868 btrfs_dev_replace_read_lock(&fs_info->dev_replace);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001869 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
Chris Masona061fc82008-05-07 11:43:44 -04001870 WARN_ON(num_devices < 1);
1871 num_devices--;
1872 }
David Sterba7e79cb82018-03-24 02:11:38 +01001873 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
Chris Masona061fc82008-05-07 11:43:44 -04001874
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001875 ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001876 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001877 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001878
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001879 ret = btrfs_find_device_by_devspec(fs_info, devid, device_path,
1880 &device);
Anand Jain24fc5722016-02-13 10:01:36 +08001881 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001882 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001883
Anand Jain401e29c2017-12-04 12:54:55 +08001884 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Anand Jain183860f2013-05-17 10:52:45 +00001885 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08001886 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001887 }
1888
Anand Jainebbede42017-12-04 12:54:52 +08001889 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
1890 fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001891 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08001892 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001893 }
1894
Anand Jainebbede42017-12-04 12:54:52 +08001895 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02001896 mutex_lock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001897 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001898 device->fs_devices->rw_devices--;
David Sterba34441362016-10-04 19:34:27 +02001899 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001900 }
Chris Masona061fc82008-05-07 11:43:44 -04001901
Carey Underwoodd7901552013-03-04 16:37:06 -06001902 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001903 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001904 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001905 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001906 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001907
Stefan Behrens63a212a2012-11-05 18:29:28 +01001908 /*
1909 * TODO: the superblock still includes this device in its num_devices
1910 * counter although write_all_supers() is not locked out. This
1911 * could give a filesystem state which requires a degraded mount.
1912 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001913 ret = btrfs_rm_dev_item(fs_info, device);
Chris Masona061fc82008-05-07 11:43:44 -04001914 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001915 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001916
Anand Jaine12c9622017-12-04 12:54:53 +08001917 clear_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001918 btrfs_scrub_cancel_dev(fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001919
1920 /*
1921 * the device list mutex makes sure that we don't change
1922 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001923 * the device supers. Whoever is writing all supers, should
1924 * lock the device list mutex before getting the number of
1925 * devices in the super block (super_copy). Conversely,
1926 * whoever updates the number of devices in the super block
1927 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001928 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001929
Anand Jain41a52a02018-04-12 10:29:31 +08001930 /*
1931 * In normal cases the cur_devices == fs_devices. But in case
1932 * of deleting a seed device, the cur_devices should point to
1933 * its own fs_devices listed under the fs_devices->seed.
1934 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001935 cur_devices = device->fs_devices;
Anand Jainb5185192018-04-12 10:29:30 +08001936 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001937 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001938
Anand Jain41a52a02018-04-12 10:29:31 +08001939 cur_devices->num_devices--;
1940 cur_devices->total_devices--;
Anand Jainb4993e62018-07-03 17:07:23 +08001941 /* Update total_devices of the parent fs_devices if it's seed */
1942 if (cur_devices != fs_devices)
1943 fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001944
Anand Jaine6e674b2017-12-04 12:54:54 +08001945 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
Anand Jain41a52a02018-04-12 10:29:31 +08001946 cur_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001947
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001948 btrfs_assign_next_active_device(fs_info, device, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05001949
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001950 if (device->bdev) {
Anand Jain41a52a02018-04-12 10:29:31 +08001951 cur_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001952 /* remove sysfs entry */
Anand Jainb5185192018-04-12 10:29:30 +08001953 btrfs_sysfs_rm_device_link(fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001954 }
Anand Jain99994cd2014-06-03 11:36:00 +08001955
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001956 num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1;
1957 btrfs_set_super_num_devices(fs_info->super_copy, num_devices);
Anand Jainb5185192018-04-12 10:29:30 +08001958 mutex_unlock(&fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001959
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04001960 /*
1961 * at this point, the device is zero sized and detached from
1962 * the devices list. All that's left is to zero out the old
1963 * supers and free the device.
1964 */
Anand Jainebbede42017-12-04 12:54:52 +08001965 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04001966 btrfs_scratch_superblocks(device->bdev, device->name->str);
1967
1968 btrfs_close_bdev(device);
David Sterbaf06c5962017-06-06 17:08:23 +02001969 call_rcu(&device->rcu, free_device_rcu);
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04001970
Xiao Guangrong1f781602011-04-20 10:09:16 +00001971 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001972 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001973 if (fs_devices->seed == cur_devices) {
1974 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05001975 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001976 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001977 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001978 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001979 cur_devices->seed = NULL;
Anand Jain0226e0e2018-04-12 10:29:27 +08001980 close_fs_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001981 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001982 }
1983
Chris Masona061fc82008-05-07 11:43:44 -04001984out:
1985 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001986 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08001987
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001988error_undo:
Anand Jainebbede42017-12-04 12:54:52 +08001989 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02001990 mutex_lock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001991 list_add(&device->dev_alloc_list,
Anand Jainb5185192018-04-12 10:29:30 +08001992 &fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001993 device->fs_devices->rw_devices++;
David Sterba34441362016-10-04 19:34:27 +02001994 mutex_unlock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001995 }
Anand Jain24fc5722016-02-13 10:01:36 +08001996 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001997}
1998
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001999void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
2000 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002001{
Anand Jaind51908c2014-08-13 14:24:19 +08002002 struct btrfs_fs_devices *fs_devices;
2003
David Sterbaa32bf9a2018-03-16 02:21:22 +01002004 lockdep_assert_held(&fs_info->fs_devices->device_list_mutex);
Ilya Dryomov13572722013-10-02 20:41:01 +03002005
Anand Jain25e8e912014-08-20 10:56:56 +08002006 /*
2007 * in case of fs with no seed, srcdev->fs_devices will point
2008 * to fs_devices of fs_info. However when the dev being replaced is
2009 * a seed dev it will point to the seed's local fs_devices. In short
2010 * srcdev will have its correct fs_devices in both the cases.
2011 */
2012 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08002013
Stefan Behrense93c89c2012-11-05 17:33:06 +01002014 list_del_rcu(&srcdev->dev_list);
David Sterba619c47f2017-06-19 14:14:22 +02002015 list_del(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08002016 fs_devices->num_devices--;
Anand Jaine6e674b2017-12-04 12:54:54 +08002017 if (test_bit(BTRFS_DEV_STATE_MISSING, &srcdev->dev_state))
Anand Jaind51908c2014-08-13 14:24:19 +08002018 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002019
Anand Jainebbede42017-12-04 12:54:52 +08002020 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state))
Miao Xie82372bc2014-09-03 21:35:44 +08002021 fs_devices->rw_devices--;
Ilya Dryomov13572722013-10-02 20:41:01 +03002022
Miao Xie82372bc2014-09-03 21:35:44 +08002023 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08002024 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002025}
2026
2027void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
2028 struct btrfs_device *srcdev)
2029{
2030 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002031
Anand Jainebbede42017-12-04 12:54:52 +08002032 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &srcdev->dev_state)) {
Anand Jain48b3b9d2016-04-12 21:36:16 +08002033 /* zero out the old super if it is writable */
2034 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
2035 }
Anand Jain14238812016-07-22 06:04:53 +08002036
2037 btrfs_close_bdev(srcdev);
David Sterbaf06c5962017-06-06 17:08:23 +02002038 call_rcu(&srcdev->rcu, free_device_rcu);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002039
Anand Jain94d5f0c2014-08-13 14:24:22 +08002040 /* if this is no devs we rather delete the fs_devices */
2041 if (!fs_devices->num_devices) {
2042 struct btrfs_fs_devices *tmp_fs_devices;
2043
Anand Jain6dd38f82017-10-17 06:53:50 +08002044 /*
2045 * On a mounted FS, num_devices can't be zero unless it's a
2046 * seed. In case of a seed device being replaced, the replace
2047 * target added to the sprout FS, so there will be no more
2048 * device left under the seed FS.
2049 */
2050 ASSERT(fs_devices->seeding);
2051
Anand Jain94d5f0c2014-08-13 14:24:22 +08002052 tmp_fs_devices = fs_info->fs_devices;
2053 while (tmp_fs_devices) {
2054 if (tmp_fs_devices->seed == fs_devices) {
2055 tmp_fs_devices->seed = fs_devices->seed;
2056 break;
2057 }
2058 tmp_fs_devices = tmp_fs_devices->seed;
2059 }
2060 fs_devices->seed = NULL;
Anand Jain0226e0e2018-04-12 10:29:27 +08002061 close_fs_devices(fs_devices);
Anand Jain8bef8402014-08-13 14:24:23 +08002062 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002063 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002064}
2065
2066void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2067 struct btrfs_device *tgtdev)
2068{
Anand Jaind9a071f2018-04-12 10:29:38 +08002069 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Anand Jaind2ff1b22015-03-10 06:38:42 +08002070
Anand Jaind9a071f2018-04-12 10:29:38 +08002071 WARN_ON(!tgtdev);
2072 mutex_lock(&fs_devices->device_list_mutex);
2073
2074 btrfs_sysfs_rm_device_link(fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002075
Anand Jain779bf3fe2016-04-18 16:51:23 +08002076 if (tgtdev->bdev)
Anand Jaind9a071f2018-04-12 10:29:38 +08002077 fs_devices->open_devices--;
Anand Jain779bf3fe2016-04-18 16:51:23 +08002078
Anand Jaind9a071f2018-04-12 10:29:38 +08002079 fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002080
Anand Jain88acff62016-05-03 17:44:43 +08002081 btrfs_assign_next_active_device(fs_info, tgtdev, NULL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002082
Stefan Behrense93c89c2012-11-05 17:33:06 +01002083 list_del_rcu(&tgtdev->dev_list);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002084
Anand Jaind9a071f2018-04-12 10:29:38 +08002085 mutex_unlock(&fs_devices->device_list_mutex);
Anand Jain779bf3fe2016-04-18 16:51:23 +08002086
2087 /*
2088 * The update_dev_time() with in btrfs_scratch_superblocks()
2089 * may lead to a call to btrfs_show_devname() which will try
2090 * to hold device_list_mutex. And here this device
2091 * is already out of device list, so we don't have to hold
2092 * the device_list_mutex lock.
2093 */
2094 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Anand Jain14238812016-07-22 06:04:53 +08002095
2096 btrfs_close_bdev(tgtdev);
David Sterbaf06c5962017-06-06 17:08:23 +02002097 call_rcu(&tgtdev->rcu, free_device_rcu);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002098}
2099
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002100static int btrfs_find_device_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002101 const char *device_path,
Eric Sandeen48a3b632013-04-25 20:41:01 +00002102 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002103{
2104 int ret = 0;
2105 struct btrfs_super_block *disk_super;
2106 u64 devid;
2107 u8 *dev_uuid;
2108 struct block_device *bdev;
2109 struct buffer_head *bh;
2110
2111 *device = NULL;
2112 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002113 fs_info->bdev_holder, 0, &bdev, &bh);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002114 if (ret)
2115 return ret;
2116 disk_super = (struct btrfs_super_block *)bh->b_data;
2117 devid = btrfs_stack_device_id(&disk_super->dev_item);
2118 dev_uuid = disk_super->dev_item.uuid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002119 *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002120 brelse(bh);
2121 if (!*device)
2122 ret = -ENOENT;
2123 blkdev_put(bdev, FMODE_READ);
2124 return ret;
2125}
2126
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002127int btrfs_find_device_missing_or_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002128 const char *device_path,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002129 struct btrfs_device **device)
2130{
2131 *device = NULL;
2132 if (strcmp(device_path, "missing") == 0) {
2133 struct list_head *devices;
2134 struct btrfs_device *tmp;
2135
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002136 devices = &fs_info->fs_devices->devices;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002137 list_for_each_entry(tmp, devices, dev_list) {
Anand Jaine12c9622017-12-04 12:54:53 +08002138 if (test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
2139 &tmp->dev_state) && !tmp->bdev) {
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002140 *device = tmp;
2141 break;
2142 }
2143 }
2144
Anand Jaind74a6252015-08-14 18:32:56 +08002145 if (!*device)
2146 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002147
2148 return 0;
2149 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002150 return btrfs_find_device_by_path(fs_info, device_path, device);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002151 }
2152}
2153
Yan Zheng2b820322008-11-17 21:11:30 -05002154/*
David Sterba5c5c0df2016-02-15 16:39:55 +01002155 * Lookup a device given by device id, or the path if the id is 0.
2156 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002157int btrfs_find_device_by_devspec(struct btrfs_fs_info *fs_info, u64 devid,
David Sterbada353f62017-02-14 17:55:53 +01002158 const char *devpath,
2159 struct btrfs_device **device)
Anand Jain24e04742016-02-13 10:01:35 +08002160{
2161 int ret;
2162
David Sterba5c5c0df2016-02-15 16:39:55 +01002163 if (devid) {
Anand Jain24e04742016-02-13 10:01:35 +08002164 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002165 *device = btrfs_find_device(fs_info, devid, NULL, NULL);
Anand Jain24e04742016-02-13 10:01:35 +08002166 if (!*device)
2167 ret = -ENOENT;
2168 } else {
David Sterba5c5c0df2016-02-15 16:39:55 +01002169 if (!devpath || !devpath[0])
Anand Jainb3d1b152016-02-13 10:01:37 +08002170 return -EINVAL;
2171
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002172 ret = btrfs_find_device_missing_or_by_path(fs_info, devpath,
Anand Jain24e04742016-02-13 10:01:35 +08002173 device);
2174 }
2175 return ret;
2176}
2177
Yan Zheng2b820322008-11-17 21:11:30 -05002178/*
2179 * does all the dirty work required for changing file system's UUID.
2180 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002181static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002182{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002183 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002184 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002185 struct btrfs_fs_devices *seed_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002186 struct btrfs_super_block *disk_super = fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002187 struct btrfs_device *device;
2188 u64 super_flags;
2189
David Sterbaa32bf9a2018-03-16 02:21:22 +01002190 lockdep_assert_held(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002191 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002192 return -EINVAL;
2193
David Sterba2dfeca92017-06-14 02:48:07 +02002194 seed_devices = alloc_fs_devices(NULL);
Ilya Dryomov2208a372013-08-12 14:33:03 +03002195 if (IS_ERR(seed_devices))
2196 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002197
Yan Zhenge4404d62008-12-12 10:03:26 -05002198 old_devices = clone_fs_devices(fs_devices);
2199 if (IS_ERR(old_devices)) {
2200 kfree(seed_devices);
2201 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002202 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002203
Anand Jainc4babc52018-04-12 10:29:25 +08002204 list_add(&old_devices->fs_list, &fs_uuids);
Yan Zheng2b820322008-11-17 21:11:30 -05002205
Yan Zhenge4404d62008-12-12 10:03:26 -05002206 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2207 seed_devices->opened = 1;
2208 INIT_LIST_HEAD(&seed_devices->devices);
2209 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002210 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002211
Anand Jain321a4bf2018-07-16 22:58:09 +08002212 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002213 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2214 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002215 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002216 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002217
David Sterba34441362016-10-04 19:34:27 +02002218 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002219 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
David Sterba34441362016-10-04 19:34:27 +02002220 mutex_unlock(&fs_info->chunk_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002221
Yan Zheng2b820322008-11-17 21:11:30 -05002222 fs_devices->seeding = 0;
2223 fs_devices->num_devices = 0;
2224 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002225 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002226 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002227 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002228
2229 generate_random_uuid(fs_devices->fsid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002230 memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002231 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Anand Jain321a4bf2018-07-16 22:58:09 +08002232 mutex_unlock(&fs_devices->device_list_mutex);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002233
Yan Zheng2b820322008-11-17 21:11:30 -05002234 super_flags = btrfs_super_flags(disk_super) &
2235 ~BTRFS_SUPER_FLAG_SEEDING;
2236 btrfs_set_super_flags(disk_super, super_flags);
2237
2238 return 0;
2239}
2240
2241/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002242 * Store the expected generation for seed devices in device items.
Yan Zheng2b820322008-11-17 21:11:30 -05002243 */
2244static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002245 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002246{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002247 struct btrfs_root *root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002248 struct btrfs_path *path;
2249 struct extent_buffer *leaf;
2250 struct btrfs_dev_item *dev_item;
2251 struct btrfs_device *device;
2252 struct btrfs_key key;
Anand Jain44880fd2017-07-29 17:50:09 +08002253 u8 fs_uuid[BTRFS_FSID_SIZE];
Yan Zheng2b820322008-11-17 21:11:30 -05002254 u8 dev_uuid[BTRFS_UUID_SIZE];
2255 u64 devid;
2256 int ret;
2257
2258 path = btrfs_alloc_path();
2259 if (!path)
2260 return -ENOMEM;
2261
Yan Zheng2b820322008-11-17 21:11:30 -05002262 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2263 key.offset = 0;
2264 key.type = BTRFS_DEV_ITEM_KEY;
2265
2266 while (1) {
2267 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2268 if (ret < 0)
2269 goto error;
2270
2271 leaf = path->nodes[0];
2272next_slot:
2273 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2274 ret = btrfs_next_leaf(root, path);
2275 if (ret > 0)
2276 break;
2277 if (ret < 0)
2278 goto error;
2279 leaf = path->nodes[0];
2280 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002281 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002282 continue;
2283 }
2284
2285 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2286 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2287 key.type != BTRFS_DEV_ITEM_KEY)
2288 break;
2289
2290 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2291 struct btrfs_dev_item);
2292 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002293 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002294 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002295 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08002296 BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002297 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002298 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002299
2300 if (device->fs_devices->seeding) {
2301 btrfs_set_device_generation(leaf, dev_item,
2302 device->generation);
2303 btrfs_mark_buffer_dirty(leaf);
2304 }
2305
2306 path->slots[0]++;
2307 goto next_slot;
2308 }
2309 ret = 0;
2310error:
2311 btrfs_free_path(path);
2312 return ret;
2313}
2314
David Sterbada353f62017-02-14 17:55:53 +01002315int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path)
Chris Mason788f20e2008-04-28 15:29:42 -04002316{
Jeff Mahoney5112feb2016-06-21 20:16:08 -04002317 struct btrfs_root *root = fs_info->dev_root;
Josef Bacikd5e20032011-08-04 14:52:27 +00002318 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002319 struct btrfs_trans_handle *trans;
2320 struct btrfs_device *device;
2321 struct block_device *bdev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002322 struct super_block *sb = fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002323 struct rcu_string *name;
Anand Jain5da54bc2018-07-03 13:14:50 +08002324 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002325 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002326 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002327 int ret = 0;
Anand Jain7132a262017-09-28 14:51:11 +08002328 bool unlocked = false;
Chris Mason788f20e2008-04-28 15:29:42 -04002329
Anand Jain5da54bc2018-07-03 13:14:50 +08002330 if (sb_rdonly(sb) && !fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002331 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002332
Li Zefana5d163332011-12-07 20:08:40 -05002333 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002334 fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002335 if (IS_ERR(bdev))
2336 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002337
Anand Jain5da54bc2018-07-03 13:14:50 +08002338 if (fs_devices->seeding) {
Yan Zheng2b820322008-11-17 21:11:30 -05002339 seeding_dev = 1;
2340 down_write(&sb->s_umount);
2341 mutex_lock(&uuid_mutex);
2342 }
2343
Chris Mason8c8bee12008-09-29 11:19:10 -04002344 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002345
Anand Jain5da54bc2018-07-03 13:14:50 +08002346 mutex_lock(&fs_devices->device_list_mutex);
Anand Jain694c51f2018-07-03 13:14:51 +08002347 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002348 if (device->bdev == bdev) {
2349 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002350 mutex_unlock(
Anand Jain5da54bc2018-07-03 13:14:50 +08002351 &fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002352 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002353 }
2354 }
Anand Jain5da54bc2018-07-03 13:14:50 +08002355 mutex_unlock(&fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002356
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002357 device = btrfs_alloc_device(fs_info, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002358 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002359 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002360 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002361 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002362 }
2363
David Sterba78f2c9e2016-02-11 14:25:38 +01002364 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002365 if (!name) {
Yan Zheng2b820322008-11-17 21:11:30 -05002366 ret = -ENOMEM;
David Sterba5c4cf6c2017-10-30 19:29:46 +01002367 goto error_free_device;
Chris Mason788f20e2008-04-28 15:29:42 -04002368 }
Josef Bacik606686e2012-06-04 14:03:51 -04002369 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002370
Yan, Zhenga22285a2010-05-16 10:48:46 -04002371 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002372 if (IS_ERR(trans)) {
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002373 ret = PTR_ERR(trans);
David Sterba5c4cf6c2017-10-30 19:29:46 +01002374 goto error_free_device;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002375 }
2376
Josef Bacikd5e20032011-08-04 14:52:27 +00002377 q = bdev_get_queue(bdev);
Anand Jainebbede42017-12-04 12:54:52 +08002378 set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05002379 device->generation = trans->transid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002380 device->io_width = fs_info->sectorsize;
2381 device->io_align = fs_info->sectorsize;
2382 device->sector_size = fs_info->sectorsize;
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002383 device->total_bytes = round_down(i_size_read(bdev->bd_inode),
2384 fs_info->sectorsize);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002385 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002386 device->commit_total_bytes = device->total_bytes;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002387 device->fs_info = fs_info;
Chris Mason788f20e2008-04-28 15:29:42 -04002388 device->bdev = bdev;
Anand Jaine12c9622017-12-04 12:54:53 +08002389 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jain401e29c2017-12-04 12:54:55 +08002390 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002391 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002392 device->dev_stats_valid = 1;
David Sterba9f6d2512017-06-16 01:48:05 +02002393 set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE);
Zheng Yan325cd4b2008-09-05 16:43:54 -04002394
Yan Zheng2b820322008-11-17 21:11:30 -05002395 if (seeding_dev) {
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002396 sb->s_flags &= ~SB_RDONLY;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002397 ret = btrfs_prepare_sprout(fs_info);
Anand Jaind31c32f2017-09-28 14:51:10 +08002398 if (ret) {
2399 btrfs_abort_transaction(trans, ret);
2400 goto error_trans;
2401 }
Yan Zheng2b820322008-11-17 21:11:30 -05002402 }
2403
Anand Jain5da54bc2018-07-03 13:14:50 +08002404 device->fs_devices = fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002405
Anand Jain5da54bc2018-07-03 13:14:50 +08002406 mutex_lock(&fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02002407 mutex_lock(&fs_info->chunk_mutex);
Anand Jain5da54bc2018-07-03 13:14:50 +08002408 list_add_rcu(&device->dev_list, &fs_devices->devices);
2409 list_add(&device->dev_alloc_list, &fs_devices->alloc_list);
2410 fs_devices->num_devices++;
2411 fs_devices->open_devices++;
2412 fs_devices->rw_devices++;
2413 fs_devices->total_devices++;
2414 fs_devices->total_rw_bytes += device->total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05002415
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002416 atomic64_add(device->total_bytes, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04002417
Anand Jaine884f4f2017-04-04 18:40:19 +08002418 if (!blk_queue_nonrot(q))
Anand Jain5da54bc2018-07-03 13:14:50 +08002419 fs_devices->rotating = 1;
Chris Masonc2898112009-06-10 09:51:32 -04002420
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002421 tmp = btrfs_super_total_bytes(fs_info->super_copy);
2422 btrfs_set_super_total_bytes(fs_info->super_copy,
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002423 round_down(tmp + device->total_bytes, fs_info->sectorsize));
Chris Mason788f20e2008-04-28 15:29:42 -04002424
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002425 tmp = btrfs_super_num_devices(fs_info->super_copy);
2426 btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002427
2428 /* add sysfs device entry */
Anand Jain5da54bc2018-07-03 13:14:50 +08002429 btrfs_sysfs_add_device_link(fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002430
Miao Xie2196d6e2014-09-03 21:35:41 +08002431 /*
2432 * we've got more storage, clear any full flags on the space
2433 * infos
2434 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002435 btrfs_clear_space_info_full(fs_info);
Miao Xie2196d6e2014-09-03 21:35:41 +08002436
David Sterba34441362016-10-04 19:34:27 +02002437 mutex_unlock(&fs_info->chunk_mutex);
Anand Jain5da54bc2018-07-03 13:14:50 +08002438 mutex_unlock(&fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002439
Yan Zheng2b820322008-11-17 21:11:30 -05002440 if (seeding_dev) {
David Sterba34441362016-10-04 19:34:27 +02002441 mutex_lock(&fs_info->chunk_mutex);
David Sterbae4a4dce2017-02-10 19:49:01 +01002442 ret = init_first_rw_device(trans, fs_info);
David Sterba34441362016-10-04 19:34:27 +02002443 mutex_unlock(&fs_info->chunk_mutex);
David Sterba005d6422012-09-18 07:52:32 -06002444 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002445 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002446 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002447 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002448 }
2449
Nikolay Borisov8e87e852018-07-20 19:37:47 +03002450 ret = btrfs_add_dev_item(trans, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002451 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002452 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002453 goto error_sysfs;
Miao Xie2196d6e2014-09-03 21:35:41 +08002454 }
2455
2456 if (seeding_dev) {
2457 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2458
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002459 ret = btrfs_finish_sprout(trans, fs_info);
David Sterba005d6422012-09-18 07:52:32 -06002460 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002461 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002462 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002463 }
Anand Jainb2373f22014-06-03 11:36:03 +08002464
2465 /* Sprouting would change fsid of the mounted root,
2466 * so rename the fsid on the sysfs
2467 */
2468 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002469 fs_info->fsid);
Anand Jain5da54bc2018-07-03 13:14:50 +08002470 if (kobject_rename(&fs_devices->fsid_kobj, fsid_buf))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002471 btrfs_warn(fs_info,
2472 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002473 }
2474
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002475 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002476
2477 if (seeding_dev) {
2478 mutex_unlock(&uuid_mutex);
2479 up_write(&sb->s_umount);
Anand Jain7132a262017-09-28 14:51:11 +08002480 unlocked = true;
Yan Zheng2b820322008-11-17 21:11:30 -05002481
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002482 if (ret) /* transaction commit */
2483 return ret;
2484
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002485 ret = btrfs_relocate_sys_chunks(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002486 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002487 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002488 "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002489 trans = btrfs_attach_transaction(root);
2490 if (IS_ERR(trans)) {
2491 if (PTR_ERR(trans) == -ENOENT)
2492 return 0;
Anand Jain7132a262017-09-28 14:51:11 +08002493 ret = PTR_ERR(trans);
2494 trans = NULL;
2495 goto error_sysfs;
Miao Xie671415b2012-10-16 11:26:46 +00002496 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002497 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002498 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002499
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002500 /* Update ctime/mtime for libblkid */
2501 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002502 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002503
Anand Jaind31c32f2017-09-28 14:51:10 +08002504error_sysfs:
Anand Jain5da54bc2018-07-03 13:14:50 +08002505 btrfs_sysfs_rm_device_link(fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002506error_trans:
Anand Jain0af2c4b2017-09-28 14:51:09 +08002507 if (seeding_dev)
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002508 sb->s_flags |= SB_RDONLY;
Anand Jain7132a262017-09-28 14:51:11 +08002509 if (trans)
2510 btrfs_end_transaction(trans);
David Sterba5c4cf6c2017-10-30 19:29:46 +01002511error_free_device:
David Sterbaa425f9d2018-03-20 15:47:33 +01002512 btrfs_free_device(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002513error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002514 blkdev_put(bdev, FMODE_EXCL);
Anand Jain7132a262017-09-28 14:51:11 +08002515 if (seeding_dev && !unlocked) {
Yan Zheng2b820322008-11-17 21:11:30 -05002516 mutex_unlock(&uuid_mutex);
2517 up_write(&sb->s_umount);
2518 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002519 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002520}
2521
Chris Masond3977122009-01-05 21:25:51 -05002522static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2523 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002524{
2525 int ret;
2526 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002527 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002528 struct btrfs_dev_item *dev_item;
2529 struct extent_buffer *leaf;
2530 struct btrfs_key key;
2531
Chris Mason0b86a832008-03-24 15:01:56 -04002532 path = btrfs_alloc_path();
2533 if (!path)
2534 return -ENOMEM;
2535
2536 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2537 key.type = BTRFS_DEV_ITEM_KEY;
2538 key.offset = device->devid;
2539
2540 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2541 if (ret < 0)
2542 goto out;
2543
2544 if (ret > 0) {
2545 ret = -ENOENT;
2546 goto out;
2547 }
2548
2549 leaf = path->nodes[0];
2550 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2551
2552 btrfs_set_device_id(leaf, dev_item, device->devid);
2553 btrfs_set_device_type(leaf, dev_item, device->type);
2554 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2555 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2556 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002557 btrfs_set_device_total_bytes(leaf, dev_item,
2558 btrfs_device_get_disk_total_bytes(device));
2559 btrfs_set_device_bytes_used(leaf, dev_item,
2560 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002561 btrfs_mark_buffer_dirty(leaf);
2562
2563out:
2564 btrfs_free_path(path);
2565 return ret;
2566}
2567
Miao Xie2196d6e2014-09-03 21:35:41 +08002568int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002569 struct btrfs_device *device, u64 new_size)
2570{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002571 struct btrfs_fs_info *fs_info = device->fs_info;
2572 struct btrfs_super_block *super_copy = fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002573 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002574 u64 old_total;
2575 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002576
Anand Jainebbede42017-12-04 12:54:52 +08002577 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Yan Zheng2b820322008-11-17 21:11:30 -05002578 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002579
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002580 new_size = round_down(new_size, fs_info->sectorsize);
2581
David Sterba34441362016-10-04 19:34:27 +02002582 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002583 old_total = btrfs_super_total_bytes(super_copy);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03002584 diff = round_down(new_size - device->total_bytes, fs_info->sectorsize);
Miao Xie2196d6e2014-09-03 21:35:41 +08002585
Stefan Behrens63a212a2012-11-05 18:29:28 +01002586 if (new_size <= device->total_bytes ||
Anand Jain401e29c2017-12-04 12:54:55 +08002587 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
David Sterba34441362016-10-04 19:34:27 +02002588 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002589 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002590 }
Yan Zheng2b820322008-11-17 21:11:30 -05002591
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002592 fs_devices = fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002593
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002594 btrfs_set_super_total_bytes(super_copy,
2595 round_down(old_total + diff, fs_info->sectorsize));
Yan Zheng2b820322008-11-17 21:11:30 -05002596 device->fs_devices->total_rw_bytes += diff;
2597
Miao Xie7cc8e582014-09-03 21:35:38 +08002598 btrfs_device_set_total_bytes(device, new_size);
2599 btrfs_device_set_disk_total_bytes(device, new_size);
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002600 btrfs_clear_space_info_full(device->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002601 if (list_empty(&device->resized_list))
2602 list_add_tail(&device->resized_list,
2603 &fs_devices->resized_devices);
David Sterba34441362016-10-04 19:34:27 +02002604 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason4184ea72009-03-10 12:39:20 -04002605
Chris Mason8f18cf12008-04-25 16:53:30 -04002606 return btrfs_update_device(trans, device);
2607}
2608
2609static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002610 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002611{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002612 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002613 int ret;
2614 struct btrfs_path *path;
2615 struct btrfs_key key;
2616
Chris Mason8f18cf12008-04-25 16:53:30 -04002617 path = btrfs_alloc_path();
2618 if (!path)
2619 return -ENOMEM;
2620
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002621 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Chris Mason8f18cf12008-04-25 16:53:30 -04002622 key.offset = chunk_offset;
2623 key.type = BTRFS_CHUNK_ITEM_KEY;
2624
2625 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002626 if (ret < 0)
2627 goto out;
2628 else if (ret > 0) { /* Logic error or corruption */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002629 btrfs_handle_fs_error(fs_info, -ENOENT,
2630 "Failed lookup while freeing chunk.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002631 ret = -ENOENT;
2632 goto out;
2633 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002634
2635 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002636 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002637 btrfs_handle_fs_error(fs_info, ret,
2638 "Failed to delete chunk item.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002639out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002640 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002641 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002642}
2643
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002644static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002645{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002646 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002647 struct btrfs_disk_key *disk_key;
2648 struct btrfs_chunk *chunk;
2649 u8 *ptr;
2650 int ret = 0;
2651 u32 num_stripes;
2652 u32 array_size;
2653 u32 len = 0;
2654 u32 cur;
2655 struct btrfs_key key;
2656
David Sterba34441362016-10-04 19:34:27 +02002657 mutex_lock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002658 array_size = btrfs_super_sys_array_size(super_copy);
2659
2660 ptr = super_copy->sys_chunk_array;
2661 cur = 0;
2662
2663 while (cur < array_size) {
2664 disk_key = (struct btrfs_disk_key *)ptr;
2665 btrfs_disk_key_to_cpu(&key, disk_key);
2666
2667 len = sizeof(*disk_key);
2668
2669 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2670 chunk = (struct btrfs_chunk *)(ptr + len);
2671 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2672 len += btrfs_chunk_item_size(num_stripes);
2673 } else {
2674 ret = -EIO;
2675 break;
2676 }
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002677 if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID &&
Chris Mason8f18cf12008-04-25 16:53:30 -04002678 key.offset == chunk_offset) {
2679 memmove(ptr, ptr + len, array_size - (cur + len));
2680 array_size -= len;
2681 btrfs_set_super_sys_array_size(super_copy, array_size);
2682 } else {
2683 ptr += len;
2684 cur += len;
2685 }
2686 }
David Sterba34441362016-10-04 19:34:27 +02002687 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002688 return ret;
2689}
2690
Liu Bo592d92e2017-03-14 13:33:55 -07002691static struct extent_map *get_chunk_map(struct btrfs_fs_info *fs_info,
2692 u64 logical, u64 length)
2693{
2694 struct extent_map_tree *em_tree;
2695 struct extent_map *em;
2696
2697 em_tree = &fs_info->mapping_tree.map_tree;
2698 read_lock(&em_tree->lock);
2699 em = lookup_extent_mapping(em_tree, logical, length);
2700 read_unlock(&em_tree->lock);
2701
2702 if (!em) {
2703 btrfs_crit(fs_info, "unable to find logical %llu length %llu",
2704 logical, length);
2705 return ERR_PTR(-EINVAL);
2706 }
2707
2708 if (em->start > logical || em->start + em->len < logical) {
2709 btrfs_crit(fs_info,
2710 "found a bad mapping, wanted %llu-%llu, found %llu-%llu",
2711 logical, length, em->start, em->start + em->len);
2712 free_extent_map(em);
2713 return ERR_PTR(-EINVAL);
2714 }
2715
2716 /* callers are responsible for dropping em's ref. */
2717 return em;
2718}
2719
Josef Bacik47ab2a62014-09-18 11:20:02 -04002720int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002721 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Josef Bacik47ab2a62014-09-18 11:20:02 -04002722{
Josef Bacik47ab2a62014-09-18 11:20:02 -04002723 struct extent_map *em;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002724 struct map_lookup *map;
2725 u64 dev_extent_len = 0;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002726 int i, ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002727 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002728
Liu Bo592d92e2017-03-14 13:33:55 -07002729 em = get_chunk_map(fs_info, chunk_offset, 1);
2730 if (IS_ERR(em)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -04002731 /*
2732 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002733 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04002734 * do anything we still error out.
2735 */
2736 ASSERT(0);
Liu Bo592d92e2017-03-14 13:33:55 -07002737 return PTR_ERR(em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002738 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002739 map = em->map_lookup;
David Sterba34441362016-10-04 19:34:27 +02002740 mutex_lock(&fs_info->chunk_mutex);
Nikolay Borisov451a2c12018-06-20 15:49:07 +03002741 check_system_chunk(trans, map->type);
David Sterba34441362016-10-04 19:34:27 +02002742 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002743
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002744 /*
2745 * Take the device list mutex to prevent races with the final phase of
2746 * a device replace operation that replaces the device object associated
2747 * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()).
2748 */
2749 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002750 for (i = 0; i < map->num_stripes; i++) {
2751 struct btrfs_device *device = map->stripes[i].dev;
2752 ret = btrfs_free_dev_extent(trans, device,
2753 map->stripes[i].physical,
2754 &dev_extent_len);
2755 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002756 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002757 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002758 goto out;
2759 }
2760
2761 if (device->bytes_used > 0) {
David Sterba34441362016-10-04 19:34:27 +02002762 mutex_lock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002763 btrfs_device_set_bytes_used(device,
2764 device->bytes_used - dev_extent_len);
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002765 atomic64_add(dev_extent_len, &fs_info->free_chunk_space);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002766 btrfs_clear_space_info_full(fs_info);
David Sterba34441362016-10-04 19:34:27 +02002767 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002768 }
2769
2770 if (map->stripes[i].dev) {
2771 ret = btrfs_update_device(trans, map->stripes[i].dev);
2772 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002773 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002774 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002775 goto out;
2776 }
2777 }
2778 }
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002779 mutex_unlock(&fs_devices->device_list_mutex);
2780
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002781 ret = btrfs_free_chunk(trans, fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002782 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002783 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002784 goto out;
2785 }
2786
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002787 trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002788
2789 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002790 ret = btrfs_del_sys_chunk(fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002791 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002792 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002793 goto out;
2794 }
2795 }
2796
Nikolay Borisov5a98ec02018-06-20 15:48:56 +03002797 ret = btrfs_remove_block_group(trans, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002798 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002799 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002800 goto out;
2801 }
2802
Josef Bacik47ab2a62014-09-18 11:20:02 -04002803out:
2804 /* once for us */
2805 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002806 return ret;
2807}
2808
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002809static int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002810{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002811 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason19c4d2f2016-10-10 13:43:31 -07002812 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002813 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002814
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002815 /*
2816 * Prevent races with automatic removal of unused block groups.
2817 * After we relocate and before we remove the chunk with offset
2818 * chunk_offset, automatic removal of the block group can kick in,
2819 * resulting in a failure when calling btrfs_remove_chunk() below.
2820 *
2821 * Make sure to acquire this mutex before doing a tree search (dev
2822 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2823 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2824 * we release the path used to search the chunk/dev tree and before
2825 * the current task acquires this mutex and calls us.
2826 */
David Sterbaa32bf9a2018-03-16 02:21:22 +01002827 lockdep_assert_held(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002828
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002829 ret = btrfs_can_relocate(fs_info, chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002830 if (ret)
2831 return -ENOSPC;
2832
Chris Mason8f18cf12008-04-25 16:53:30 -04002833 /* step one, relocate all the extents inside this chunk */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002834 btrfs_scrub_pause(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002835 ret = btrfs_relocate_block_group(fs_info, chunk_offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002836 btrfs_scrub_continue(fs_info);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002837 if (ret)
2838 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002839
Jeff Mahoney75cb3792018-03-20 15:25:26 -04002840 /*
2841 * We add the kobjects here (and after forcing data chunk creation)
2842 * since relocation is the only place we'll create chunks of a new
2843 * type at runtime. The only place where we'll remove the last
2844 * chunk of a type is the call immediately below this one. Even
2845 * so, we're protected against races with the cleaner thread since
2846 * we're covered by the delete_unused_bgs_mutex.
2847 */
2848 btrfs_add_raid_kobjects(fs_info);
2849
Chris Mason19c4d2f2016-10-10 13:43:31 -07002850 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2851 chunk_offset);
2852 if (IS_ERR(trans)) {
2853 ret = PTR_ERR(trans);
2854 btrfs_handle_fs_error(root->fs_info, ret, NULL);
2855 return ret;
2856 }
Naohiro Aota5d8eb6f2016-09-02 16:46:32 +09002857
Chris Mason19c4d2f2016-10-10 13:43:31 -07002858 /*
2859 * step two, delete the device extents and the
2860 * chunk tree entries
2861 */
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002862 ret = btrfs_remove_chunk(trans, fs_info, chunk_offset);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002863 btrfs_end_transaction(trans);
Chris Mason19c4d2f2016-10-10 13:43:31 -07002864 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002865}
2866
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002867static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002868{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002869 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002870 struct btrfs_path *path;
2871 struct extent_buffer *leaf;
2872 struct btrfs_chunk *chunk;
2873 struct btrfs_key key;
2874 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05002875 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002876 bool retried = false;
2877 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002878 int ret;
2879
2880 path = btrfs_alloc_path();
2881 if (!path)
2882 return -ENOMEM;
2883
Josef Bacikba1bf482009-09-11 16:11:19 -04002884again:
Yan Zheng2b820322008-11-17 21:11:30 -05002885 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2886 key.offset = (u64)-1;
2887 key.type = BTRFS_CHUNK_ITEM_KEY;
2888
2889 while (1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002890 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002891 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002892 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002893 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002894 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002895 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002896 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002897
2898 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2899 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002900 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002901 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002902 if (ret < 0)
2903 goto error;
2904 if (ret > 0)
2905 break;
2906
2907 leaf = path->nodes[0];
2908 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2909
2910 chunk = btrfs_item_ptr(leaf, path->slots[0],
2911 struct btrfs_chunk);
2912 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002913 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002914
2915 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002916 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002917 if (ret == -ENOSPC)
2918 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05302919 else
2920 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05002921 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002922 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002923
2924 if (found_key.offset == 0)
2925 break;
2926 key.offset = found_key.offset - 1;
2927 }
2928 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002929 if (failed && !retried) {
2930 failed = 0;
2931 retried = true;
2932 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302933 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04002934 ret = -ENOSPC;
2935 }
Yan Zheng2b820322008-11-17 21:11:30 -05002936error:
2937 btrfs_free_path(path);
2938 return ret;
2939}
2940
Liu Boa6f93c72017-11-15 16:28:11 -07002941/*
2942 * return 1 : allocate a data chunk successfully,
2943 * return <0: errors during allocating a data chunk,
2944 * return 0 : no need to allocate a data chunk.
2945 */
2946static int btrfs_may_alloc_data_chunk(struct btrfs_fs_info *fs_info,
2947 u64 chunk_offset)
2948{
2949 struct btrfs_block_group_cache *cache;
2950 u64 bytes_used;
2951 u64 chunk_type;
2952
2953 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
2954 ASSERT(cache);
2955 chunk_type = cache->flags;
2956 btrfs_put_block_group(cache);
2957
2958 if (chunk_type & BTRFS_BLOCK_GROUP_DATA) {
2959 spin_lock(&fs_info->data_sinfo->lock);
2960 bytes_used = fs_info->data_sinfo->bytes_used;
2961 spin_unlock(&fs_info->data_sinfo->lock);
2962
2963 if (!bytes_used) {
2964 struct btrfs_trans_handle *trans;
2965 int ret;
2966
2967 trans = btrfs_join_transaction(fs_info->tree_root);
2968 if (IS_ERR(trans))
2969 return PTR_ERR(trans);
2970
Nikolay Borisov43a7e992018-06-20 15:49:15 +03002971 ret = btrfs_force_chunk_alloc(trans,
Liu Boa6f93c72017-11-15 16:28:11 -07002972 BTRFS_BLOCK_GROUP_DATA);
2973 btrfs_end_transaction(trans);
2974 if (ret < 0)
2975 return ret;
2976
Jeff Mahoney75cb3792018-03-20 15:25:26 -04002977 btrfs_add_raid_kobjects(fs_info);
2978
Liu Boa6f93c72017-11-15 16:28:11 -07002979 return 1;
2980 }
2981 }
2982 return 0;
2983}
2984
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002985static int insert_balance_item(struct btrfs_fs_info *fs_info,
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002986 struct btrfs_balance_control *bctl)
2987{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002988 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002989 struct btrfs_trans_handle *trans;
2990 struct btrfs_balance_item *item;
2991 struct btrfs_disk_balance_args disk_bargs;
2992 struct btrfs_path *path;
2993 struct extent_buffer *leaf;
2994 struct btrfs_key key;
2995 int ret, err;
2996
2997 path = btrfs_alloc_path();
2998 if (!path)
2999 return -ENOMEM;
3000
3001 trans = btrfs_start_transaction(root, 0);
3002 if (IS_ERR(trans)) {
3003 btrfs_free_path(path);
3004 return PTR_ERR(trans);
3005 }
3006
3007 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003008 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003009 key.offset = 0;
3010
3011 ret = btrfs_insert_empty_item(trans, root, path, &key,
3012 sizeof(*item));
3013 if (ret)
3014 goto out;
3015
3016 leaf = path->nodes[0];
3017 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3018
David Sterbab159fa22016-11-08 18:09:03 +01003019 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003020
3021 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
3022 btrfs_set_balance_data(leaf, item, &disk_bargs);
3023 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
3024 btrfs_set_balance_meta(leaf, item, &disk_bargs);
3025 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
3026 btrfs_set_balance_sys(leaf, item, &disk_bargs);
3027
3028 btrfs_set_balance_flags(leaf, item, bctl->flags);
3029
3030 btrfs_mark_buffer_dirty(leaf);
3031out:
3032 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003033 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003034 if (err && !ret)
3035 ret = err;
3036 return ret;
3037}
3038
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003039static int del_balance_item(struct btrfs_fs_info *fs_info)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003040{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003041 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003042 struct btrfs_trans_handle *trans;
3043 struct btrfs_path *path;
3044 struct btrfs_key key;
3045 int ret, err;
3046
3047 path = btrfs_alloc_path();
3048 if (!path)
3049 return -ENOMEM;
3050
3051 trans = btrfs_start_transaction(root, 0);
3052 if (IS_ERR(trans)) {
3053 btrfs_free_path(path);
3054 return PTR_ERR(trans);
3055 }
3056
3057 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003058 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003059 key.offset = 0;
3060
3061 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3062 if (ret < 0)
3063 goto out;
3064 if (ret > 0) {
3065 ret = -ENOENT;
3066 goto out;
3067 }
3068
3069 ret = btrfs_del_item(trans, root, path);
3070out:
3071 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003072 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003073 if (err && !ret)
3074 ret = err;
3075 return ret;
3076}
3077
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003078/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003079 * This is a heuristic used to reduce the number of chunks balanced on
3080 * resume after balance was interrupted.
3081 */
3082static void update_balance_args(struct btrfs_balance_control *bctl)
3083{
3084 /*
3085 * Turn on soft mode for chunk types that were being converted.
3086 */
3087 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3088 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3089 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3090 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3091 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3092 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3093
3094 /*
3095 * Turn on usage filter if is not already used. The idea is
3096 * that chunks that we have already balanced should be
3097 * reasonably full. Don't do it for chunks that are being
3098 * converted - that will keep us from relocating unconverted
3099 * (albeit full) chunks.
3100 */
3101 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003102 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003103 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3104 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3105 bctl->data.usage = 90;
3106 }
3107 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003108 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003109 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3110 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3111 bctl->sys.usage = 90;
3112 }
3113 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003114 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003115 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3116 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3117 bctl->meta.usage = 90;
3118 }
3119}
3120
3121/*
David Sterba149196a2018-03-20 20:23:09 +01003122 * Clear the balance status in fs_info and delete the balance item from disk.
3123 */
3124static void reset_balance_state(struct btrfs_fs_info *fs_info)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003125{
3126 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
David Sterba149196a2018-03-20 20:23:09 +01003127 int ret;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003128
3129 BUG_ON(!fs_info->balance_ctl);
3130
3131 spin_lock(&fs_info->balance_lock);
3132 fs_info->balance_ctl = NULL;
3133 spin_unlock(&fs_info->balance_lock);
3134
3135 kfree(bctl);
David Sterba149196a2018-03-20 20:23:09 +01003136 ret = del_balance_item(fs_info);
3137 if (ret)
3138 btrfs_handle_fs_error(fs_info, ret, NULL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003139}
3140
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003141/*
3142 * Balance filters. Return 1 if chunk should be filtered out
3143 * (should not be balanced).
3144 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003145static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003146 struct btrfs_balance_args *bargs)
3147{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003148 chunk_type = chunk_to_extended(chunk_type) &
3149 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003150
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003151 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003152 return 0;
3153
3154 return 1;
3155}
3156
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003157static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003158 struct btrfs_balance_args *bargs)
3159{
3160 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003161 u64 chunk_used;
3162 u64 user_thresh_min;
3163 u64 user_thresh_max;
3164 int ret = 1;
3165
3166 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3167 chunk_used = btrfs_block_group_used(&cache->item);
3168
3169 if (bargs->usage_min == 0)
3170 user_thresh_min = 0;
3171 else
3172 user_thresh_min = div_factor_fine(cache->key.offset,
3173 bargs->usage_min);
3174
3175 if (bargs->usage_max == 0)
3176 user_thresh_max = 1;
3177 else if (bargs->usage_max > 100)
3178 user_thresh_max = cache->key.offset;
3179 else
3180 user_thresh_max = div_factor_fine(cache->key.offset,
3181 bargs->usage_max);
3182
3183 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3184 ret = 0;
3185
3186 btrfs_put_block_group(cache);
3187 return ret;
3188}
3189
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003190static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003191 u64 chunk_offset, struct btrfs_balance_args *bargs)
3192{
3193 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003194 u64 chunk_used, user_thresh;
3195 int ret = 1;
3196
3197 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3198 chunk_used = btrfs_block_group_used(&cache->item);
3199
David Sterbabc309462015-10-20 18:22:13 +02003200 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003201 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003202 else if (bargs->usage > 100)
3203 user_thresh = cache->key.offset;
3204 else
3205 user_thresh = div_factor_fine(cache->key.offset,
3206 bargs->usage);
3207
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003208 if (chunk_used < user_thresh)
3209 ret = 0;
3210
3211 btrfs_put_block_group(cache);
3212 return ret;
3213}
3214
Ilya Dryomov409d4042012-01-16 22:04:47 +02003215static int chunk_devid_filter(struct extent_buffer *leaf,
3216 struct btrfs_chunk *chunk,
3217 struct btrfs_balance_args *bargs)
3218{
3219 struct btrfs_stripe *stripe;
3220 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3221 int i;
3222
3223 for (i = 0; i < num_stripes; i++) {
3224 stripe = btrfs_stripe_nr(chunk, i);
3225 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3226 return 0;
3227 }
3228
3229 return 1;
3230}
3231
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003232/* [pstart, pend) */
3233static int chunk_drange_filter(struct extent_buffer *leaf,
3234 struct btrfs_chunk *chunk,
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003235 struct btrfs_balance_args *bargs)
3236{
3237 struct btrfs_stripe *stripe;
3238 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3239 u64 stripe_offset;
3240 u64 stripe_length;
3241 int factor;
3242 int i;
3243
3244 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3245 return 0;
3246
3247 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003248 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3249 factor = num_stripes / 2;
3250 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3251 factor = num_stripes - 1;
3252 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3253 factor = num_stripes - 2;
3254 } else {
3255 factor = num_stripes;
3256 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003257
3258 for (i = 0; i < num_stripes; i++) {
3259 stripe = btrfs_stripe_nr(chunk, i);
3260 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3261 continue;
3262
3263 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3264 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003265 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003266
3267 if (stripe_offset < bargs->pend &&
3268 stripe_offset + stripe_length > bargs->pstart)
3269 return 0;
3270 }
3271
3272 return 1;
3273}
3274
Ilya Dryomovea671762012-01-16 22:04:48 +02003275/* [vstart, vend) */
3276static int chunk_vrange_filter(struct extent_buffer *leaf,
3277 struct btrfs_chunk *chunk,
3278 u64 chunk_offset,
3279 struct btrfs_balance_args *bargs)
3280{
3281 if (chunk_offset < bargs->vend &&
3282 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3283 /* at least part of the chunk is inside this vrange */
3284 return 0;
3285
3286 return 1;
3287}
3288
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003289static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3290 struct btrfs_chunk *chunk,
3291 struct btrfs_balance_args *bargs)
3292{
3293 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3294
3295 if (bargs->stripes_min <= num_stripes
3296 && num_stripes <= bargs->stripes_max)
3297 return 0;
3298
3299 return 1;
3300}
3301
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003302static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003303 struct btrfs_balance_args *bargs)
3304{
3305 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3306 return 0;
3307
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003308 chunk_type = chunk_to_extended(chunk_type) &
3309 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003310
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003311 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003312 return 1;
3313
3314 return 0;
3315}
3316
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003317static int should_balance_chunk(struct btrfs_fs_info *fs_info,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003318 struct extent_buffer *leaf,
3319 struct btrfs_chunk *chunk, u64 chunk_offset)
3320{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003321 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003322 struct btrfs_balance_args *bargs = NULL;
3323 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3324
3325 /* type filter */
3326 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3327 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3328 return 0;
3329 }
3330
3331 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3332 bargs = &bctl->data;
3333 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3334 bargs = &bctl->sys;
3335 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3336 bargs = &bctl->meta;
3337
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003338 /* profiles filter */
3339 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3340 chunk_profiles_filter(chunk_type, bargs)) {
3341 return 0;
3342 }
3343
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003344 /* usage filter */
3345 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003346 chunk_usage_filter(fs_info, chunk_offset, bargs)) {
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003347 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003348 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003349 chunk_usage_range_filter(fs_info, chunk_offset, bargs)) {
David Sterbabc309462015-10-20 18:22:13 +02003350 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003351 }
3352
Ilya Dryomov409d4042012-01-16 22:04:47 +02003353 /* devid filter */
3354 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3355 chunk_devid_filter(leaf, chunk, bargs)) {
3356 return 0;
3357 }
3358
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003359 /* drange filter, makes sense only with devid filter */
3360 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03003361 chunk_drange_filter(leaf, chunk, bargs)) {
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003362 return 0;
3363 }
3364
Ilya Dryomovea671762012-01-16 22:04:48 +02003365 /* vrange filter */
3366 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3367 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3368 return 0;
3369 }
3370
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003371 /* stripes filter */
3372 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3373 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3374 return 0;
3375 }
3376
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003377 /* soft profile changing mode */
3378 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3379 chunk_soft_convert_filter(chunk_type, bargs)) {
3380 return 0;
3381 }
3382
David Sterba7d824b62014-05-07 17:37:51 +02003383 /*
3384 * limited by count, must be the last filter
3385 */
3386 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3387 if (bargs->limit == 0)
3388 return 0;
3389 else
3390 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003391 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3392 /*
3393 * Same logic as the 'limit' filter; the minimum cannot be
Nicholas D Steeves01327612016-05-19 21:18:45 -04003394 * determined here because we do not have the global information
David Sterba12907fc2015-10-10 17:16:50 +02003395 * about the count of all chunks that satisfy the filters.
3396 */
3397 if (bargs->limit_max == 0)
3398 return 0;
3399 else
3400 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003401 }
3402
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003403 return 1;
3404}
3405
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003406static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003407{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003408 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003409 struct btrfs_root *chunk_root = fs_info->chunk_root;
3410 struct btrfs_root *dev_root = fs_info->dev_root;
3411 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003412 struct btrfs_device *device;
3413 u64 old_size;
3414 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003415 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003416 struct btrfs_chunk *chunk;
Liu Bo5a488b92016-07-12 11:24:21 -07003417 struct btrfs_path *path = NULL;
Chris Masonec44a352008-04-28 15:29:52 -04003418 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003419 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003420 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003421 struct extent_buffer *leaf;
3422 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003423 int ret;
3424 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003425 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003426 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003427 u64 limit_data = bctl->data.limit;
3428 u64 limit_meta = bctl->meta.limit;
3429 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003430 u32 count_data = 0;
3431 u32 count_meta = 0;
3432 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003433 int chunk_reserved = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003434
Chris Masonec44a352008-04-28 15:29:52 -04003435 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003436 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003437 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003438 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003439 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003440 size_to_free = min_t(u64, size_to_free, SZ_1M);
Anand Jainebbede42017-12-04 12:54:52 +08003441 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003442 btrfs_device_get_total_bytes(device) -
3443 btrfs_device_get_bytes_used(device) > size_to_free ||
Anand Jain401e29c2017-12-04 12:54:55 +08003444 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Chris Masonec44a352008-04-28 15:29:52 -04003445 continue;
3446
3447 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003448 if (ret == -ENOSPC)
3449 break;
Liu Bo5a488b92016-07-12 11:24:21 -07003450 if (ret) {
3451 /* btrfs_shrink_device never returns ret > 0 */
3452 WARN_ON(ret > 0);
3453 goto error;
3454 }
Chris Masonec44a352008-04-28 15:29:52 -04003455
Yan, Zhenga22285a2010-05-16 10:48:46 -04003456 trans = btrfs_start_transaction(dev_root, 0);
Liu Bo5a488b92016-07-12 11:24:21 -07003457 if (IS_ERR(trans)) {
3458 ret = PTR_ERR(trans);
3459 btrfs_info_in_rcu(fs_info,
3460 "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu",
3461 rcu_str_deref(device->name), ret,
3462 old_size, old_size - size_to_free);
3463 goto error;
3464 }
Chris Masonec44a352008-04-28 15:29:52 -04003465
3466 ret = btrfs_grow_device(trans, device, old_size);
Liu Bo5a488b92016-07-12 11:24:21 -07003467 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003468 btrfs_end_transaction(trans);
Liu Bo5a488b92016-07-12 11:24:21 -07003469 /* btrfs_grow_device never returns ret > 0 */
3470 WARN_ON(ret > 0);
3471 btrfs_info_in_rcu(fs_info,
3472 "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu",
3473 rcu_str_deref(device->name), ret,
3474 old_size, old_size - size_to_free);
3475 goto error;
3476 }
Chris Masonec44a352008-04-28 15:29:52 -04003477
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003478 btrfs_end_transaction(trans);
Chris Masonec44a352008-04-28 15:29:52 -04003479 }
3480
3481 /* step two, relocate all the chunks */
3482 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003483 if (!path) {
3484 ret = -ENOMEM;
3485 goto error;
3486 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003487
3488 /* zero out stat counters */
3489 spin_lock(&fs_info->balance_lock);
3490 memset(&bctl->stat, 0, sizeof(bctl->stat));
3491 spin_unlock(&fs_info->balance_lock);
3492again:
David Sterba7d824b62014-05-07 17:37:51 +02003493 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003494 /*
3495 * The single value limit and min/max limits use the same bytes
3496 * in the
3497 */
David Sterba7d824b62014-05-07 17:37:51 +02003498 bctl->data.limit = limit_data;
3499 bctl->meta.limit = limit_meta;
3500 bctl->sys.limit = limit_sys;
3501 }
Chris Masonec44a352008-04-28 15:29:52 -04003502 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3503 key.offset = (u64)-1;
3504 key.type = BTRFS_CHUNK_ITEM_KEY;
3505
Chris Masond3977122009-01-05 21:25:51 -05003506 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003507 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003508 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003509 ret = -ECANCELED;
3510 goto error;
3511 }
3512
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003513 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003514 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003515 if (ret < 0) {
3516 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003517 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003518 }
Chris Masonec44a352008-04-28 15:29:52 -04003519
3520 /*
3521 * this shouldn't happen, it means the last relocate
3522 * failed
3523 */
3524 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003525 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003526
3527 ret = btrfs_previous_item(chunk_root, path, 0,
3528 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003529 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003530 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003531 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003532 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003533 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003534
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003535 leaf = path->nodes[0];
3536 slot = path->slots[0];
3537 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3538
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003539 if (found_key.objectid != key.objectid) {
3540 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003541 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003542 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003543
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003544 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003545 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003546
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003547 if (!counting) {
3548 spin_lock(&fs_info->balance_lock);
3549 bctl->stat.considered++;
3550 spin_unlock(&fs_info->balance_lock);
3551 }
3552
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003553 ret = should_balance_chunk(fs_info, leaf, chunk,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003554 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003555
David Sterbab3b4aa72011-04-21 01:20:15 +02003556 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003557 if (!ret) {
3558 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003559 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003560 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003561
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003562 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003563 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003564 spin_lock(&fs_info->balance_lock);
3565 bctl->stat.expected++;
3566 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003567
3568 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3569 count_data++;
3570 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3571 count_sys++;
3572 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3573 count_meta++;
3574
3575 goto loop;
3576 }
3577
3578 /*
3579 * Apply limit_min filter, no need to check if the LIMITS
3580 * filter is used, limit_min is 0 by default
3581 */
3582 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3583 count_data < bctl->data.limit_min)
3584 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3585 count_meta < bctl->meta.limit_min)
3586 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3587 count_sys < bctl->sys.limit_min)) {
3588 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003589 goto loop;
3590 }
3591
Liu Boa6f93c72017-11-15 16:28:11 -07003592 if (!chunk_reserved) {
3593 /*
3594 * We may be relocating the only data chunk we have,
3595 * which could potentially end up with losing data's
3596 * raid profile, so lets allocate an empty one in
3597 * advance.
3598 */
3599 ret = btrfs_may_alloc_data_chunk(fs_info,
3600 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003601 if (ret < 0) {
3602 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3603 goto error;
Liu Boa6f93c72017-11-15 16:28:11 -07003604 } else if (ret == 1) {
3605 chunk_reserved = 1;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003606 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003607 }
3608
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003609 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003610 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003611 if (ret && ret != -ENOSPC)
3612 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003613 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003614 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003615 } else {
3616 spin_lock(&fs_info->balance_lock);
3617 bctl->stat.completed++;
3618 spin_unlock(&fs_info->balance_lock);
3619 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003620loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003621 if (found_key.offset == 0)
3622 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003623 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003624 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003625
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003626 if (counting) {
3627 btrfs_release_path(path);
3628 counting = false;
3629 goto again;
3630 }
Chris Masonec44a352008-04-28 15:29:52 -04003631error:
3632 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003633 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003634 btrfs_info(fs_info, "%d enospc errors during balance",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003635 enospc_errors);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003636 if (!ret)
3637 ret = -ENOSPC;
3638 }
3639
Chris Masonec44a352008-04-28 15:29:52 -04003640 return ret;
3641}
3642
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003643/**
3644 * alloc_profile_is_valid - see if a given profile is valid and reduced
3645 * @flags: profile to validate
3646 * @extended: if true @flags is treated as an extended profile
3647 */
3648static int alloc_profile_is_valid(u64 flags, int extended)
3649{
3650 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3651 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3652
3653 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3654
3655 /* 1) check that all other bits are zeroed */
3656 if (flags & ~mask)
3657 return 0;
3658
3659 /* 2) see if profile is reduced */
3660 if (flags == 0)
3661 return !extended; /* "0" is valid for usual profiles */
3662
3663 /* true if exactly one bit set */
3664 return (flags & (flags - 1)) == 0;
3665}
3666
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003667static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3668{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003669 /* cancel requested || normal exit path */
3670 return atomic_read(&fs_info->balance_cancel_req) ||
3671 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3672 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003673}
3674
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003675/* Non-zero return value signifies invalidity */
3676static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3677 u64 allowed)
3678{
3679 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3680 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3681 (bctl_arg->target & ~allowed)));
3682}
3683
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003684/*
David Sterbadccdb072018-03-21 00:20:05 +01003685 * Should be called with balance mutexe held
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003686 */
David Sterba6fcf6e22018-05-07 17:44:03 +02003687int btrfs_balance(struct btrfs_fs_info *fs_info,
3688 struct btrfs_balance_control *bctl,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003689 struct btrfs_ioctl_balance_args *bargs)
3690{
Adam Borowski14506122017-03-07 23:34:44 +01003691 u64 meta_target, data_target;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003692 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003693 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003694 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003695 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003696 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003697
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003698 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003699 atomic_read(&fs_info->balance_pause_req) ||
3700 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003701 ret = -EINVAL;
3702 goto out;
3703 }
3704
Ilya Dryomove4837f82012-03-27 17:09:17 +03003705 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3706 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3707 mixed = 1;
3708
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003709 /*
3710 * In case of mixed groups both data and meta should be picked,
3711 * and identical options should be given for both of them.
3712 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003713 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3714 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003715 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3716 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3717 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003718 btrfs_err(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08003719 "balance: mixed groups data and metadata options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003720 ret = -EINVAL;
3721 goto out;
3722 }
3723 }
3724
Stefan Behrens8dabb742012-11-06 13:15:27 +01003725 num_devices = fs_info->fs_devices->num_devices;
David Sterba7e79cb82018-03-24 02:11:38 +01003726 btrfs_dev_replace_read_lock(&fs_info->dev_replace);
Stefan Behrens8dabb742012-11-06 13:15:27 +01003727 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3728 BUG_ON(num_devices < 1);
3729 num_devices--;
3730 }
David Sterba7e79cb82018-03-24 02:11:38 +01003731 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
Austin S. Hemmelgarn88be1592016-03-23 14:22:59 -04003732 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP;
3733 if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003734 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003735 if (num_devices > 2)
3736 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3737 if (num_devices > 3)
3738 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3739 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003740 if (validate_convert_profile(&bctl->data, allowed)) {
Anand Jain6dac13f2018-05-16 10:51:26 +08003741 int index = btrfs_bg_flags_to_raid_index(bctl->data.target);
3742
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003743 btrfs_err(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08003744 "balance: invalid convert data profile %s",
3745 get_raid_name(index));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003746 ret = -EINVAL;
3747 goto out;
3748 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003749 if (validate_convert_profile(&bctl->meta, allowed)) {
Anand Jain6dac13f2018-05-16 10:51:26 +08003750 int index = btrfs_bg_flags_to_raid_index(bctl->meta.target);
3751
Frank Holtonefe120a2013-12-20 11:37:06 -05003752 btrfs_err(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08003753 "balance: invalid convert metadata profile %s",
3754 get_raid_name(index));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003755 ret = -EINVAL;
3756 goto out;
3757 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003758 if (validate_convert_profile(&bctl->sys, allowed)) {
Anand Jain6dac13f2018-05-16 10:51:26 +08003759 int index = btrfs_bg_flags_to_raid_index(bctl->sys.target);
3760
Frank Holtonefe120a2013-12-20 11:37:06 -05003761 btrfs_err(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08003762 "balance: invalid convert system profile %s",
3763 get_raid_name(index));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003764 ret = -EINVAL;
3765 goto out;
3766 }
3767
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003768 /* allow to reduce meta or sys integrity only if force set */
3769 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003770 BTRFS_BLOCK_GROUP_RAID10 |
3771 BTRFS_BLOCK_GROUP_RAID5 |
3772 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003773 do {
3774 seq = read_seqbegin(&fs_info->profiles_lock);
3775
3776 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3777 (fs_info->avail_system_alloc_bits & allowed) &&
3778 !(bctl->sys.target & allowed)) ||
3779 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3780 (fs_info->avail_metadata_alloc_bits & allowed) &&
3781 !(bctl->meta.target & allowed))) {
3782 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003783 btrfs_info(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08003784 "balance: force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003785 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003786 btrfs_err(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08003787 "balance: reduces metadata integrity, use --force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003788 ret = -EINVAL;
3789 goto out;
3790 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003791 }
Miao Xiede98ced2013-01-29 10:13:12 +00003792 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003793
Adam Borowski14506122017-03-07 23:34:44 +01003794 /* if we're not converting, the target field is uninitialized */
3795 meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3796 bctl->meta.target : fs_info->avail_metadata_alloc_bits;
3797 data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3798 bctl->data.target : fs_info->avail_data_alloc_bits;
3799 if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) <
3800 btrfs_get_num_tolerated_disk_barrier_failures(data_target)) {
Anand Jain6dac13f2018-05-16 10:51:26 +08003801 int meta_index = btrfs_bg_flags_to_raid_index(meta_target);
3802 int data_index = btrfs_bg_flags_to_raid_index(data_target);
3803
Sam Tygieree592d02016-01-06 08:46:12 +00003804 btrfs_warn(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08003805 "balance: metadata profile %s has lower redundancy than data profile %s",
3806 get_raid_name(meta_index), get_raid_name(data_index));
Sam Tygieree592d02016-01-06 08:46:12 +00003807 }
3808
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003809 ret = insert_balance_item(fs_info, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003810 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003811 goto out;
3812
Ilya Dryomov59641012012-01-16 22:04:48 +02003813 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3814 BUG_ON(ret == -EEXIST);
David Sterba833aae12018-03-21 02:41:30 +01003815 BUG_ON(fs_info->balance_ctl);
3816 spin_lock(&fs_info->balance_lock);
3817 fs_info->balance_ctl = bctl;
3818 spin_unlock(&fs_info->balance_lock);
Ilya Dryomov59641012012-01-16 22:04:48 +02003819 } else {
3820 BUG_ON(ret != -EEXIST);
3821 spin_lock(&fs_info->balance_lock);
3822 update_balance_args(bctl);
3823 spin_unlock(&fs_info->balance_lock);
3824 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003825
David Sterba3009a622018-03-21 01:31:04 +01003826 ASSERT(!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
3827 set_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003828 mutex_unlock(&fs_info->balance_mutex);
3829
3830 ret = __btrfs_balance(fs_info);
3831
3832 mutex_lock(&fs_info->balance_mutex);
David Sterba3009a622018-03-21 01:31:04 +01003833 clear_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003834
3835 if (bargs) {
3836 memset(bargs, 0, sizeof(*bargs));
David Sterba008ef092018-03-21 02:05:27 +01003837 btrfs_update_ioctl_balance_args(fs_info, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003838 }
3839
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003840 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3841 balance_need_close(fs_info)) {
David Sterba149196a2018-03-20 20:23:09 +01003842 reset_balance_state(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01003843 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003844 }
3845
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003846 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003847
3848 return ret;
3849out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003850 if (bctl->flags & BTRFS_BALANCE_RESUME)
David Sterba149196a2018-03-20 20:23:09 +01003851 reset_balance_state(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01003852 else
Ilya Dryomov59641012012-01-16 22:04:48 +02003853 kfree(bctl);
David Sterbaa17c95d2018-03-20 17:28:05 +01003854 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
3855
Ilya Dryomov59641012012-01-16 22:04:48 +02003856 return ret;
3857}
3858
3859static int balance_kthread(void *data)
3860{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003861 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003862 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003863
Ilya Dryomov59641012012-01-16 22:04:48 +02003864 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003865 if (fs_info->balance_ctl) {
Anand Jain6dac13f2018-05-16 10:51:26 +08003866 btrfs_info(fs_info, "balance: resuming");
David Sterba6fcf6e22018-05-07 17:44:03 +02003867 ret = btrfs_balance(fs_info, fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003868 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003869 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003870
Ilya Dryomov59641012012-01-16 22:04:48 +02003871 return ret;
3872}
3873
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003874int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3875{
3876 struct task_struct *tsk;
3877
David Sterba1354e1a2018-03-21 02:29:13 +01003878 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003879 if (!fs_info->balance_ctl) {
David Sterba1354e1a2018-03-21 02:29:13 +01003880 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003881 return 0;
3882 }
David Sterba1354e1a2018-03-21 02:29:13 +01003883 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003884
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003885 if (btrfs_test_opt(fs_info, SKIP_BALANCE)) {
Anand Jain6dac13f2018-05-16 10:51:26 +08003886 btrfs_info(fs_info, "balance: resume skipped");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003887 return 0;
3888 }
3889
Anand Jain02ee6542018-05-17 15:16:51 +08003890 /*
3891 * A ro->rw remount sequence should continue with the paused balance
3892 * regardless of who pauses it, system or the user as of now, so set
3893 * the resume flag.
3894 */
3895 spin_lock(&fs_info->balance_lock);
3896 fs_info->balance_ctl->flags |= BTRFS_BALANCE_RESUME;
3897 spin_unlock(&fs_info->balance_lock);
3898
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003899 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303900 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003901}
3902
Ilya Dryomov68310a52012-06-22 12:24:12 -06003903int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003904{
Ilya Dryomov59641012012-01-16 22:04:48 +02003905 struct btrfs_balance_control *bctl;
3906 struct btrfs_balance_item *item;
3907 struct btrfs_disk_balance_args disk_bargs;
3908 struct btrfs_path *path;
3909 struct extent_buffer *leaf;
3910 struct btrfs_key key;
3911 int ret;
3912
3913 path = btrfs_alloc_path();
3914 if (!path)
3915 return -ENOMEM;
3916
Ilya Dryomov68310a52012-06-22 12:24:12 -06003917 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003918 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06003919 key.offset = 0;
3920
3921 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3922 if (ret < 0)
3923 goto out;
3924 if (ret > 0) { /* ret = -ENOENT; */
3925 ret = 0;
3926 goto out;
3927 }
3928
Ilya Dryomov59641012012-01-16 22:04:48 +02003929 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3930 if (!bctl) {
3931 ret = -ENOMEM;
3932 goto out;
3933 }
3934
Ilya Dryomov59641012012-01-16 22:04:48 +02003935 leaf = path->nodes[0];
3936 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3937
Ilya Dryomov68310a52012-06-22 12:24:12 -06003938 bctl->flags = btrfs_balance_flags(leaf, item);
3939 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02003940
3941 btrfs_balance_data(leaf, item, &disk_bargs);
3942 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3943 btrfs_balance_meta(leaf, item, &disk_bargs);
3944 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3945 btrfs_balance_sys(leaf, item, &disk_bargs);
3946 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3947
David Sterbaeee95e32018-03-20 20:07:58 +01003948 /*
3949 * This should never happen, as the paused balance state is recovered
3950 * during mount without any chance of other exclusive ops to collide.
3951 *
3952 * This gives the exclusive op status to balance and keeps in paused
3953 * state until user intervention (cancel or umount). If the ownership
3954 * cannot be assigned, show a message but do not fail. The balance
3955 * is in a paused state and must have fs_info::balance_ctl properly
3956 * set up.
3957 */
3958 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags))
3959 btrfs_warn(fs_info,
Anand Jain6dac13f2018-05-16 10:51:26 +08003960 "balance: cannot set exclusive op status, resume manually");
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003961
Ilya Dryomov68310a52012-06-22 12:24:12 -06003962 mutex_lock(&fs_info->balance_mutex);
David Sterba833aae12018-03-21 02:41:30 +01003963 BUG_ON(fs_info->balance_ctl);
3964 spin_lock(&fs_info->balance_lock);
3965 fs_info->balance_ctl = bctl;
3966 spin_unlock(&fs_info->balance_lock);
Ilya Dryomov68310a52012-06-22 12:24:12 -06003967 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003968out:
3969 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003970 return ret;
3971}
3972
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003973int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3974{
3975 int ret = 0;
3976
3977 mutex_lock(&fs_info->balance_mutex);
3978 if (!fs_info->balance_ctl) {
3979 mutex_unlock(&fs_info->balance_mutex);
3980 return -ENOTCONN;
3981 }
3982
David Sterba3009a622018-03-21 01:31:04 +01003983 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003984 atomic_inc(&fs_info->balance_pause_req);
3985 mutex_unlock(&fs_info->balance_mutex);
3986
3987 wait_event(fs_info->balance_wait_q,
David Sterba3009a622018-03-21 01:31:04 +01003988 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003989
3990 mutex_lock(&fs_info->balance_mutex);
3991 /* we are good with balance_ctl ripped off from under us */
David Sterba3009a622018-03-21 01:31:04 +01003992 BUG_ON(test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003993 atomic_dec(&fs_info->balance_pause_req);
3994 } else {
3995 ret = -ENOTCONN;
3996 }
3997
3998 mutex_unlock(&fs_info->balance_mutex);
3999 return ret;
4000}
4001
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004002int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
4003{
4004 mutex_lock(&fs_info->balance_mutex);
4005 if (!fs_info->balance_ctl) {
4006 mutex_unlock(&fs_info->balance_mutex);
4007 return -ENOTCONN;
4008 }
4009
David Sterbacf7d20f2018-03-21 01:45:32 +01004010 /*
4011 * A paused balance with the item stored on disk can be resumed at
4012 * mount time if the mount is read-write. Otherwise it's still paused
4013 * and we must not allow cancelling as it deletes the item.
4014 */
4015 if (sb_rdonly(fs_info->sb)) {
4016 mutex_unlock(&fs_info->balance_mutex);
4017 return -EROFS;
4018 }
4019
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004020 atomic_inc(&fs_info->balance_cancel_req);
4021 /*
4022 * if we are running just wait and return, balance item is
4023 * deleted in btrfs_balance in this case
4024 */
David Sterba3009a622018-03-21 01:31:04 +01004025 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004026 mutex_unlock(&fs_info->balance_mutex);
4027 wait_event(fs_info->balance_wait_q,
David Sterba3009a622018-03-21 01:31:04 +01004028 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004029 mutex_lock(&fs_info->balance_mutex);
4030 } else {
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004031 mutex_unlock(&fs_info->balance_mutex);
David Sterbadccdb072018-03-21 00:20:05 +01004032 /*
4033 * Lock released to allow other waiters to continue, we'll
4034 * reexamine the status again.
4035 */
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004036 mutex_lock(&fs_info->balance_mutex);
4037
David Sterbaa17c95d2018-03-20 17:28:05 +01004038 if (fs_info->balance_ctl) {
David Sterba149196a2018-03-20 20:23:09 +01004039 reset_balance_state(fs_info);
David Sterbaa17c95d2018-03-20 17:28:05 +01004040 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Anand Jain6dac13f2018-05-16 10:51:26 +08004041 btrfs_info(fs_info, "balance: canceled");
David Sterbaa17c95d2018-03-20 17:28:05 +01004042 }
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004043 }
4044
David Sterba3009a622018-03-21 01:31:04 +01004045 BUG_ON(fs_info->balance_ctl ||
4046 test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags));
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004047 atomic_dec(&fs_info->balance_cancel_req);
4048 mutex_unlock(&fs_info->balance_mutex);
4049 return 0;
4050}
4051
Stefan Behrens803b2f52013-08-15 17:11:21 +02004052static int btrfs_uuid_scan_kthread(void *data)
4053{
4054 struct btrfs_fs_info *fs_info = data;
4055 struct btrfs_root *root = fs_info->tree_root;
4056 struct btrfs_key key;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004057 struct btrfs_path *path = NULL;
4058 int ret = 0;
4059 struct extent_buffer *eb;
4060 int slot;
4061 struct btrfs_root_item root_item;
4062 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004063 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004064
4065 path = btrfs_alloc_path();
4066 if (!path) {
4067 ret = -ENOMEM;
4068 goto out;
4069 }
4070
4071 key.objectid = 0;
4072 key.type = BTRFS_ROOT_ITEM_KEY;
4073 key.offset = 0;
4074
Stefan Behrens803b2f52013-08-15 17:11:21 +02004075 while (1) {
Anand Jain7c829b72018-03-07 17:29:18 +08004076 ret = btrfs_search_forward(root, &key, path,
4077 BTRFS_OLDEST_GENERATION);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004078 if (ret) {
4079 if (ret > 0)
4080 ret = 0;
4081 break;
4082 }
4083
4084 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4085 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4086 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4087 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4088 goto skip;
4089
4090 eb = path->nodes[0];
4091 slot = path->slots[0];
4092 item_size = btrfs_item_size_nr(eb, slot);
4093 if (item_size < sizeof(root_item))
4094 goto skip;
4095
Stefan Behrens803b2f52013-08-15 17:11:21 +02004096 read_extent_buffer(eb, &root_item,
4097 btrfs_item_ptr_offset(eb, slot),
4098 (int)sizeof(root_item));
4099 if (btrfs_root_refs(&root_item) == 0)
4100 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004101
4102 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4103 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4104 if (trans)
4105 goto update_tree;
4106
4107 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004108 /*
4109 * 1 - subvol uuid item
4110 * 1 - received_subvol uuid item
4111 */
4112 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4113 if (IS_ERR(trans)) {
4114 ret = PTR_ERR(trans);
4115 break;
4116 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004117 continue;
4118 } else {
4119 goto skip;
4120 }
4121update_tree:
4122 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Lu Fengqicdb345a2018-05-29 15:01:53 +08004123 ret = btrfs_uuid_tree_add(trans, root_item.uuid,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004124 BTRFS_UUID_KEY_SUBVOL,
4125 key.objectid);
4126 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004127 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004128 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004129 break;
4130 }
4131 }
4132
4133 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Lu Fengqicdb345a2018-05-29 15:01:53 +08004134 ret = btrfs_uuid_tree_add(trans,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004135 root_item.received_uuid,
4136 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4137 key.objectid);
4138 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004139 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004140 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004141 break;
4142 }
4143 }
4144
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004145skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004146 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004147 ret = btrfs_end_transaction(trans);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004148 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004149 if (ret)
4150 break;
4151 }
4152
Stefan Behrens803b2f52013-08-15 17:11:21 +02004153 btrfs_release_path(path);
4154 if (key.offset < (u64)-1) {
4155 key.offset++;
4156 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4157 key.offset = 0;
4158 key.type = BTRFS_ROOT_ITEM_KEY;
4159 } else if (key.objectid < (u64)-1) {
4160 key.offset = 0;
4161 key.type = BTRFS_ROOT_ITEM_KEY;
4162 key.objectid++;
4163 } else {
4164 break;
4165 }
4166 cond_resched();
4167 }
4168
4169out:
4170 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004171 if (trans && !IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004172 btrfs_end_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004173 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004174 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004175 else
Josef Bacikafcdd122016-09-02 15:40:02 -04004176 set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004177 up(&fs_info->uuid_tree_rescan_sem);
4178 return 0;
4179}
4180
Stefan Behrens70f80172013-08-15 17:11:23 +02004181/*
4182 * Callback for btrfs_uuid_tree_iterate().
4183 * returns:
4184 * 0 check succeeded, the entry is not outdated.
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08004185 * < 0 if an error occurred.
Stefan Behrens70f80172013-08-15 17:11:23 +02004186 * > 0 if the check failed, which means the caller shall remove the entry.
4187 */
4188static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4189 u8 *uuid, u8 type, u64 subid)
4190{
4191 struct btrfs_key key;
4192 int ret = 0;
4193 struct btrfs_root *subvol_root;
4194
4195 if (type != BTRFS_UUID_KEY_SUBVOL &&
4196 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4197 goto out;
4198
4199 key.objectid = subid;
4200 key.type = BTRFS_ROOT_ITEM_KEY;
4201 key.offset = (u64)-1;
4202 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4203 if (IS_ERR(subvol_root)) {
4204 ret = PTR_ERR(subvol_root);
4205 if (ret == -ENOENT)
4206 ret = 1;
4207 goto out;
4208 }
4209
4210 switch (type) {
4211 case BTRFS_UUID_KEY_SUBVOL:
4212 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4213 ret = 1;
4214 break;
4215 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4216 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4217 BTRFS_UUID_SIZE))
4218 ret = 1;
4219 break;
4220 }
4221
4222out:
4223 return ret;
4224}
4225
4226static int btrfs_uuid_rescan_kthread(void *data)
4227{
4228 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4229 int ret;
4230
4231 /*
4232 * 1st step is to iterate through the existing UUID tree and
4233 * to delete all entries that contain outdated data.
4234 * 2nd step is to add all missing entries to the UUID tree.
4235 */
4236 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4237 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004238 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004239 up(&fs_info->uuid_tree_rescan_sem);
4240 return ret;
4241 }
4242 return btrfs_uuid_scan_kthread(data);
4243}
4244
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004245int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4246{
4247 struct btrfs_trans_handle *trans;
4248 struct btrfs_root *tree_root = fs_info->tree_root;
4249 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004250 struct task_struct *task;
4251 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004252
4253 /*
4254 * 1 - root node
4255 * 1 - root item
4256 */
4257 trans = btrfs_start_transaction(tree_root, 2);
4258 if (IS_ERR(trans))
4259 return PTR_ERR(trans);
4260
4261 uuid_root = btrfs_create_tree(trans, fs_info,
4262 BTRFS_UUID_TREE_OBJECTID);
4263 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004264 ret = PTR_ERR(uuid_root);
Jeff Mahoney66642832016-06-10 18:19:25 -04004265 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004266 btrfs_end_transaction(trans);
David Sterba6d13f542015-04-24 19:12:01 +02004267 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004268 }
4269
4270 fs_info->uuid_root = uuid_root;
4271
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004272 ret = btrfs_commit_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004273 if (ret)
4274 return ret;
4275
4276 down(&fs_info->uuid_tree_rescan_sem);
4277 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4278 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004279 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004280 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004281 up(&fs_info->uuid_tree_rescan_sem);
4282 return PTR_ERR(task);
4283 }
4284
4285 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004286}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004287
Stefan Behrens70f80172013-08-15 17:11:23 +02004288int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4289{
4290 struct task_struct *task;
4291
4292 down(&fs_info->uuid_tree_rescan_sem);
4293 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4294 if (IS_ERR(task)) {
4295 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004296 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004297 up(&fs_info->uuid_tree_rescan_sem);
4298 return PTR_ERR(task);
4299 }
4300
4301 return 0;
4302}
4303
Chris Mason8f18cf12008-04-25 16:53:30 -04004304/*
4305 * shrinking a device means finding all of the device extents past
4306 * the new size, and then following the back refs to the chunks.
4307 * The chunk relocation code actually frees the device extent
4308 */
4309int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4310{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004311 struct btrfs_fs_info *fs_info = device->fs_info;
4312 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04004313 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04004314 struct btrfs_dev_extent *dev_extent = NULL;
4315 struct btrfs_path *path;
4316 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004317 u64 chunk_offset;
4318 int ret;
4319 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004320 int failed = 0;
4321 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004322 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004323 struct extent_buffer *l;
4324 struct btrfs_key key;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004325 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004326 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004327 u64 old_size = btrfs_device_get_total_bytes(device);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004328 u64 diff;
4329
4330 new_size = round_down(new_size, fs_info->sectorsize);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03004331 diff = round_down(old_size - new_size, fs_info->sectorsize);
Chris Mason8f18cf12008-04-25 16:53:30 -04004332
Anand Jain401e29c2017-12-04 12:54:55 +08004333 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Stefan Behrens63a212a2012-11-05 18:29:28 +01004334 return -EINVAL;
4335
Chris Mason8f18cf12008-04-25 16:53:30 -04004336 path = btrfs_alloc_path();
4337 if (!path)
4338 return -ENOMEM;
4339
Gu Jinxiang0338dff2018-04-27 16:22:07 +08004340 path->reada = READA_BACK;
Chris Mason8f18cf12008-04-25 16:53:30 -04004341
David Sterba34441362016-10-04 19:34:27 +02004342 mutex_lock(&fs_info->chunk_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04004343
Miao Xie7cc8e582014-09-03 21:35:38 +08004344 btrfs_device_set_total_bytes(device, new_size);
Anand Jainebbede42017-12-04 12:54:52 +08004345 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05004346 device->fs_devices->total_rw_bytes -= diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004347 atomic64_sub(diff, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04004348 }
David Sterba34441362016-10-04 19:34:27 +02004349 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004350
Josef Bacikba1bf482009-09-11 16:11:19 -04004351again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004352 key.objectid = device->devid;
4353 key.offset = (u64)-1;
4354 key.type = BTRFS_DEV_EXTENT_KEY;
4355
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004356 do {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004357 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004358 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004359 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004360 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004361 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004362 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004363
4364 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004365 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004366 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004367 if (ret < 0)
4368 goto done;
4369 if (ret) {
4370 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004371 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004372 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004373 }
4374
4375 l = path->nodes[0];
4376 slot = path->slots[0];
4377 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4378
Josef Bacikba1bf482009-09-11 16:11:19 -04004379 if (key.objectid != device->devid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004380 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004381 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004382 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004383 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004384
4385 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4386 length = btrfs_dev_extent_length(l, dev_extent);
4387
Josef Bacikba1bf482009-09-11 16:11:19 -04004388 if (key.offset + length <= new_size) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004389 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004390 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004391 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004392 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004393
Chris Mason8f18cf12008-04-25 16:53:30 -04004394 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004395 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004396
Liu Boa6f93c72017-11-15 16:28:11 -07004397 /*
4398 * We may be relocating the only data chunk we have,
4399 * which could potentially end up with losing data's
4400 * raid profile, so lets allocate an empty one in
4401 * advance.
4402 */
4403 ret = btrfs_may_alloc_data_chunk(fs_info, chunk_offset);
4404 if (ret < 0) {
4405 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
4406 goto done;
4407 }
4408
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004409 ret = btrfs_relocate_chunk(fs_info, chunk_offset);
4410 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004411 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004412 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004413 if (ret == -ENOSPC)
4414 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004415 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004416
4417 if (failed && !retried) {
4418 failed = 0;
4419 retried = true;
4420 goto again;
4421 } else if (failed && retried) {
4422 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004423 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004424 }
4425
Chris Balld6397ba2009-04-27 07:29:03 -04004426 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004427 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004428 if (IS_ERR(trans)) {
4429 ret = PTR_ERR(trans);
4430 goto done;
4431 }
4432
David Sterba34441362016-10-04 19:34:27 +02004433 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004434
4435 /*
4436 * We checked in the above loop all device extents that were already in
4437 * the device tree. However before we have updated the device's
4438 * total_bytes to the new size, we might have had chunk allocations that
4439 * have not complete yet (new block groups attached to transaction
4440 * handles), and therefore their device extents were not yet in the
4441 * device tree and we missed them in the loop above. So if we have any
4442 * pending chunk using a device extent that overlaps the device range
4443 * that we can not use anymore, commit the current transaction and
4444 * repeat the search on the device tree - this way we guarantee we will
4445 * not have chunks using device extents that end beyond 'new_size'.
4446 */
4447 if (!checked_pending_chunks) {
4448 u64 start = new_size;
4449 u64 len = old_size - new_size;
4450
Jeff Mahoney499f3772015-06-15 09:41:17 -04004451 if (contains_pending_extent(trans->transaction, device,
4452 &start, len)) {
David Sterba34441362016-10-04 19:34:27 +02004453 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004454 checked_pending_chunks = true;
4455 failed = 0;
4456 retried = false;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004457 ret = btrfs_commit_transaction(trans);
Filipe Manana53e489b2015-06-02 14:43:21 +01004458 if (ret)
4459 goto done;
4460 goto again;
4461 }
4462 }
4463
Miao Xie7cc8e582014-09-03 21:35:38 +08004464 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004465 if (list_empty(&device->resized_list))
4466 list_add_tail(&device->resized_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004467 &fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004468
Chris Balld6397ba2009-04-27 07:29:03 -04004469 WARN_ON(diff > old_total);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004470 btrfs_set_super_total_bytes(super_copy,
4471 round_down(old_total - diff, fs_info->sectorsize));
David Sterba34441362016-10-04 19:34:27 +02004472 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08004473
4474 /* Now btrfs_update_device() will change the on-disk size. */
4475 ret = btrfs_update_device(trans, device);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004476 btrfs_end_transaction(trans);
Chris Mason8f18cf12008-04-25 16:53:30 -04004477done:
4478 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004479 if (ret) {
David Sterba34441362016-10-04 19:34:27 +02004480 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004481 btrfs_device_set_total_bytes(device, old_size);
Anand Jainebbede42017-12-04 12:54:52 +08004482 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Filipe Manana53e489b2015-06-02 14:43:21 +01004483 device->fs_devices->total_rw_bytes += diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004484 atomic64_add(diff, &fs_info->free_chunk_space);
David Sterba34441362016-10-04 19:34:27 +02004485 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004486 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004487 return ret;
4488}
4489
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004490static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04004491 struct btrfs_key *key,
4492 struct btrfs_chunk *chunk, int item_size)
4493{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004494 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004495 struct btrfs_disk_key disk_key;
4496 u32 array_size;
4497 u8 *ptr;
4498
David Sterba34441362016-10-04 19:34:27 +02004499 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004500 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004501 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004502 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
David Sterba34441362016-10-04 19:34:27 +02004503 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004504 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004505 }
Chris Mason0b86a832008-03-24 15:01:56 -04004506
4507 ptr = super_copy->sys_chunk_array + array_size;
4508 btrfs_cpu_key_to_disk(&disk_key, key);
4509 memcpy(ptr, &disk_key, sizeof(disk_key));
4510 ptr += sizeof(disk_key);
4511 memcpy(ptr, chunk, item_size);
4512 item_size += sizeof(disk_key);
4513 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
David Sterba34441362016-10-04 19:34:27 +02004514 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004515
Chris Mason0b86a832008-03-24 15:01:56 -04004516 return 0;
4517}
4518
Miao Xieb2117a32011-01-05 10:07:28 +00004519/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004520 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004521 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004522static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004523{
Arne Jansen73c5de02011-04-12 12:07:57 +02004524 const struct btrfs_device_info *di_a = a;
4525 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004526
Arne Jansen73c5de02011-04-12 12:07:57 +02004527 if (di_a->max_avail > di_b->max_avail)
4528 return -1;
4529 if (di_a->max_avail < di_b->max_avail)
4530 return 1;
4531 if (di_a->total_avail > di_b->total_avail)
4532 return -1;
4533 if (di_a->total_avail < di_b->total_avail)
4534 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004535 return 0;
4536}
4537
David Woodhouse53b381b2013-01-29 18:40:14 -05004538static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4539{
Zhao Leiffe2d202015-01-20 15:11:44 +08004540 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004541 return;
4542
Miao Xieceda0862013-04-11 10:30:16 +00004543 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004544}
4545
Qu Wenruo062d4d12018-01-30 18:20:46 +08004546#define BTRFS_MAX_DEVS(info) ((BTRFS_MAX_ITEM_SIZE(info) \
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004547 - sizeof(struct btrfs_chunk)) \
4548 / sizeof(struct btrfs_stripe) + 1)
4549
4550#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4551 - 2 * sizeof(struct btrfs_disk_key) \
4552 - 2 * sizeof(struct btrfs_chunk)) \
4553 / sizeof(struct btrfs_stripe) + 1)
4554
Miao Xieb2117a32011-01-05 10:07:28 +00004555static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
David Sterba72b468c2017-02-10 19:46:27 +01004556 u64 start, u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004557{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004558 struct btrfs_fs_info *info = trans->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004559 struct btrfs_fs_devices *fs_devices = info->fs_devices;
Nikolay Borisovebcc9302017-06-27 10:02:24 +03004560 struct btrfs_device *device;
Arne Jansen73c5de02011-04-12 12:07:57 +02004561 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004562 struct extent_map_tree *em_tree;
4563 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004564 struct btrfs_device_info *devices_info = NULL;
4565 u64 total_avail;
4566 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004567 int data_stripes; /* number of stripes that count for
4568 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004569 int sub_stripes; /* sub_stripes info for map */
4570 int dev_stripes; /* stripes per dev */
4571 int devs_max; /* max devs to use */
4572 int devs_min; /* min devs needed */
4573 int devs_increment; /* ndevs has to be a multiple of this */
4574 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004575 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004576 u64 max_stripe_size;
4577 u64 max_chunk_size;
4578 u64 stripe_size;
4579 u64 num_bytes;
4580 int ndevs;
4581 int i;
4582 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004583 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004584
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004585 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004586
Qu Wenruo4117f202018-01-22 13:50:54 +08004587 if (list_empty(&fs_devices->alloc_list)) {
4588 if (btrfs_test_opt(info, ENOSPC_DEBUG))
4589 btrfs_debug(info, "%s: no writable device", __func__);
Miao Xieb2117a32011-01-05 10:07:28 +00004590 return -ENOSPC;
Qu Wenruo4117f202018-01-22 13:50:54 +08004591 }
Miao Xieb2117a32011-01-05 10:07:28 +00004592
Qu Wenruo3e72ee82018-01-30 18:20:45 +08004593 index = btrfs_bg_flags_to_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004594
Liu Bo31e50222012-11-21 14:18:10 +00004595 sub_stripes = btrfs_raid_array[index].sub_stripes;
4596 dev_stripes = btrfs_raid_array[index].dev_stripes;
4597 devs_max = btrfs_raid_array[index].devs_max;
4598 devs_min = btrfs_raid_array[index].devs_min;
4599 devs_increment = btrfs_raid_array[index].devs_increment;
4600 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004601
4602 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004603 max_stripe_size = SZ_1G;
Qu Wenruofce466e2018-07-03 17:10:05 +08004604 max_chunk_size = BTRFS_MAX_DATA_CHUNK_SIZE;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004605 if (!devs_max)
Qu Wenruo062d4d12018-01-30 18:20:46 +08004606 devs_max = BTRFS_MAX_DEVS(info);
Arne Jansen73c5de02011-04-12 12:07:57 +02004607 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004608 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004609 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4610 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004611 else
Byongho Leeee221842015-12-15 01:42:10 +09004612 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004613 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004614 if (!devs_max)
Qu Wenruo062d4d12018-01-30 18:20:46 +08004615 devs_max = BTRFS_MAX_DEVS(info);
Arne Jansen73c5de02011-04-12 12:07:57 +02004616 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004617 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004618 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004619 if (!devs_max)
4620 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004621 } else {
David Sterba351fd352014-05-15 16:48:20 +02004622 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004623 type);
4624 BUG_ON(1);
4625 }
4626
4627 /* we don't want a chunk larger than 10% of writeable space */
4628 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4629 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004630
David Sterba31e818f2015-02-20 18:00:26 +01004631 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004632 GFP_NOFS);
4633 if (!devices_info)
4634 return -ENOMEM;
4635
Arne Jansen73c5de02011-04-12 12:07:57 +02004636 /*
4637 * in the first pass through the devices list, we gather information
4638 * about the available holes on each device.
4639 */
4640 ndevs = 0;
Nikolay Borisovebcc9302017-06-27 10:02:24 +03004641 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Arne Jansen73c5de02011-04-12 12:07:57 +02004642 u64 max_avail;
4643 u64 dev_offset;
4644
Anand Jainebbede42017-12-04 12:54:52 +08004645 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004646 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004647 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004648 continue;
4649 }
4650
Anand Jaine12c9622017-12-04 12:54:53 +08004651 if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
4652 &device->dev_state) ||
Anand Jain401e29c2017-12-04 12:54:55 +08004653 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
Arne Jansen73c5de02011-04-12 12:07:57 +02004654 continue;
4655
4656 if (device->total_bytes > device->bytes_used)
4657 total_avail = device->total_bytes - device->bytes_used;
4658 else
4659 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004660
4661 /* If there is no space on this device, skip it. */
4662 if (total_avail == 0)
4663 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004664
Josef Bacik6df9a952013-06-27 13:22:46 -04004665 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004666 max_stripe_size * dev_stripes,
4667 &dev_offset, &max_avail);
4668 if (ret && ret != -ENOSPC)
4669 goto error;
4670
4671 if (ret == 0)
4672 max_avail = max_stripe_size * dev_stripes;
4673
Qu Wenruo4117f202018-01-22 13:50:54 +08004674 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes) {
4675 if (btrfs_test_opt(info, ENOSPC_DEBUG))
4676 btrfs_debug(info,
4677 "%s: devid %llu has no free space, have=%llu want=%u",
4678 __func__, device->devid, max_avail,
4679 BTRFS_STRIPE_LEN * dev_stripes);
Arne Jansen73c5de02011-04-12 12:07:57 +02004680 continue;
Qu Wenruo4117f202018-01-22 13:50:54 +08004681 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004682
Eric Sandeen063d0062013-01-31 00:55:01 +00004683 if (ndevs == fs_devices->rw_devices) {
4684 WARN(1, "%s: found more than %llu devices\n",
4685 __func__, fs_devices->rw_devices);
4686 break;
4687 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004688 devices_info[ndevs].dev_offset = dev_offset;
4689 devices_info[ndevs].max_avail = max_avail;
4690 devices_info[ndevs].total_avail = total_avail;
4691 devices_info[ndevs].dev = device;
4692 ++ndevs;
4693 }
4694
4695 /*
4696 * now sort the devices by hole size / available space
4697 */
4698 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4699 btrfs_cmp_device_info, NULL);
4700
4701 /* round down to number of usable stripes */
Nikolay Borisove5600fd2017-06-27 10:02:25 +03004702 ndevs = round_down(ndevs, devs_increment);
Arne Jansen73c5de02011-04-12 12:07:57 +02004703
Qu Wenruoba89b802018-01-31 13:56:15 +08004704 if (ndevs < devs_min) {
Arne Jansen73c5de02011-04-12 12:07:57 +02004705 ret = -ENOSPC;
Qu Wenruo4117f202018-01-22 13:50:54 +08004706 if (btrfs_test_opt(info, ENOSPC_DEBUG)) {
4707 btrfs_debug(info,
4708 "%s: not enough devices with free space: have=%d minimum required=%d",
Qu Wenruoba89b802018-01-31 13:56:15 +08004709 __func__, ndevs, devs_min);
Qu Wenruo4117f202018-01-22 13:50:54 +08004710 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004711 goto error;
4712 }
4713
Nikolay Borisovf148ef42017-06-27 10:02:26 +03004714 ndevs = min(ndevs, devs_max);
4715
Arne Jansen73c5de02011-04-12 12:07:57 +02004716 /*
Hans van Kranenburg92e222d2018-02-05 17:45:11 +01004717 * The primary goal is to maximize the number of stripes, so use as
4718 * many devices as possible, even if the stripes are not maximum sized.
4719 *
4720 * The DUP profile stores more than one stripe per device, the
4721 * max_avail is the total size so we have to adjust.
Arne Jansen73c5de02011-04-12 12:07:57 +02004722 */
Hans van Kranenburg92e222d2018-02-05 17:45:11 +01004723 stripe_size = div_u64(devices_info[ndevs - 1].max_avail, dev_stripes);
Arne Jansen73c5de02011-04-12 12:07:57 +02004724 num_stripes = ndevs * dev_stripes;
4725
David Woodhouse53b381b2013-01-29 18:40:14 -05004726 /*
4727 * this will have to be fixed for RAID1 and RAID10 over
4728 * more drives
4729 */
4730 data_stripes = num_stripes / ncopies;
4731
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004732 if (type & BTRFS_BLOCK_GROUP_RAID5)
David Woodhouse53b381b2013-01-29 18:40:14 -05004733 data_stripes = num_stripes - 1;
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004734
4735 if (type & BTRFS_BLOCK_GROUP_RAID6)
David Woodhouse53b381b2013-01-29 18:40:14 -05004736 data_stripes = num_stripes - 2;
Chris Mason86db2572013-02-20 16:23:40 -05004737
4738 /*
4739 * Use the number of data stripes to figure out how big this chunk
4740 * is really going to be in terms of logical address space,
4741 * and compare that answer with the max chunk size
4742 */
4743 if (stripe_size * data_stripes > max_chunk_size) {
David Sterbab8b93ad2015-01-16 17:26:13 +01004744 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004745
4746 /* bump the answer up to a 16MB boundary */
Qu Wenruo793ff2c2018-01-31 14:16:34 +08004747 stripe_size = round_up(stripe_size, SZ_16M);
Chris Mason86db2572013-02-20 16:23:40 -05004748
Qu Wenruo793ff2c2018-01-31 14:16:34 +08004749 /*
4750 * But don't go higher than the limits we found while searching
4751 * for free extents
Chris Mason86db2572013-02-20 16:23:40 -05004752 */
Qu Wenruo793ff2c2018-01-31 14:16:34 +08004753 stripe_size = min(devices_info[ndevs - 1].max_avail,
4754 stripe_size);
Chris Mason86db2572013-02-20 16:23:40 -05004755 }
4756
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004757 /* align to BTRFS_STRIPE_LEN */
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004758 stripe_size = round_down(stripe_size, BTRFS_STRIPE_LEN);
Arne Jansen73c5de02011-04-12 12:07:57 +02004759
Miao Xieb2117a32011-01-05 10:07:28 +00004760 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4761 if (!map) {
4762 ret = -ENOMEM;
4763 goto error;
4764 }
4765 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004766
Arne Jansen73c5de02011-04-12 12:07:57 +02004767 for (i = 0; i < ndevs; ++i) {
4768 for (j = 0; j < dev_stripes; ++j) {
4769 int s = i * dev_stripes + j;
4770 map->stripes[s].dev = devices_info[i].dev;
4771 map->stripes[s].physical = devices_info[i].dev_offset +
4772 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004773 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004774 }
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004775 map->stripe_len = BTRFS_STRIPE_LEN;
4776 map->io_align = BTRFS_STRIPE_LEN;
4777 map->io_width = BTRFS_STRIPE_LEN;
Chris Mason593060d2008-03-25 16:50:33 -04004778 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004779 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004780
David Woodhouse53b381b2013-01-29 18:40:14 -05004781 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004782
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004783 trace_btrfs_chunk_alloc(info, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004784
David Sterba172ddd62011-04-21 00:48:27 +02004785 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004786 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004787 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004788 ret = -ENOMEM;
4789 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004790 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004791 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004792 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004793 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004794 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004795 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004796 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004797 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004798
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004799 em_tree = &info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004800 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004801 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004802 if (ret) {
Nikolay Borisov1efb72a2017-08-21 12:43:49 +03004803 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004804 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004805 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004806 }
Yan Zheng2b820322008-11-17 21:11:30 -05004807
Nikolay Borisov1efb72a2017-08-21 12:43:49 +03004808 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4809 refcount_inc(&em->refs);
4810 write_unlock(&em_tree->lock);
4811
Nikolay Borisove7e02092018-06-20 15:48:55 +03004812 ret = btrfs_make_block_group(trans, 0, type, start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004813 if (ret)
4814 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004815
Miao Xie7cc8e582014-09-03 21:35:38 +08004816 for (i = 0; i < map->num_stripes; i++) {
4817 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4818 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4819 }
Miao Xie43530c42014-09-03 21:35:36 +08004820
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004821 atomic64_sub(stripe_size * map->num_stripes, &info->free_chunk_space);
Miao Xie1c116182014-09-03 21:35:37 +08004822
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004823 free_extent_map(em);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004824 check_raid56_incompat_flag(info, type);
David Woodhouse53b381b2013-01-29 18:40:14 -05004825
Miao Xieb2117a32011-01-05 10:07:28 +00004826 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004827 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004828
Josef Bacik6df9a952013-06-27 13:22:46 -04004829error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004830 write_lock(&em_tree->lock);
4831 remove_extent_mapping(em_tree, em);
4832 write_unlock(&em_tree->lock);
4833
4834 /* One for our allocation */
4835 free_extent_map(em);
4836 /* One for the tree reference */
4837 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004838 /* One for the pending_chunks list reference */
4839 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004840error:
Miao Xieb2117a32011-01-05 10:07:28 +00004841 kfree(devices_info);
4842 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004843}
4844
Josef Bacik6df9a952013-06-27 13:22:46 -04004845int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004846 struct btrfs_fs_info *fs_info,
Josef Bacik6df9a952013-06-27 13:22:46 -04004847 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004848{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004849 struct btrfs_root *extent_root = fs_info->extent_root;
4850 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05004851 struct btrfs_key key;
Yan Zheng2b820322008-11-17 21:11:30 -05004852 struct btrfs_device *device;
4853 struct btrfs_chunk *chunk;
4854 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004855 struct extent_map *em;
4856 struct map_lookup *map;
4857 size_t item_size;
4858 u64 dev_offset;
4859 u64 stripe_size;
4860 int i = 0;
Chris Mason140e6392015-12-23 13:30:51 -08004861 int ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004862
Liu Bo592d92e2017-03-14 13:33:55 -07004863 em = get_chunk_map(fs_info, chunk_offset, chunk_size);
4864 if (IS_ERR(em))
4865 return PTR_ERR(em);
Josef Bacik6df9a952013-06-27 13:22:46 -04004866
Jeff Mahoney95617d62015-06-03 10:55:48 -04004867 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004868 item_size = btrfs_chunk_item_size(map->num_stripes);
4869 stripe_size = em->orig_block_len;
4870
4871 chunk = kzalloc(item_size, GFP_NOFS);
4872 if (!chunk) {
4873 ret = -ENOMEM;
4874 goto out;
4875 }
4876
Filipe Manana50460e32015-11-20 10:42:47 +00004877 /*
4878 * Take the device list mutex to prevent races with the final phase of
4879 * a device replace operation that replaces the device object associated
4880 * with the map's stripes, because the device object's id can change
4881 * at any time during that final phase of the device replace operation
4882 * (dev-replace.c:btrfs_dev_replace_finishing()).
4883 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004884 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04004885 for (i = 0; i < map->num_stripes; i++) {
4886 device = map->stripes[i].dev;
4887 dev_offset = map->stripes[i].physical;
4888
Yan Zheng2b820322008-11-17 21:11:30 -05004889 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004890 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004891 break;
Nikolay Borisovb5d90712017-08-18 17:58:23 +03004892 ret = btrfs_alloc_dev_extent(trans, device, chunk_offset,
4893 dev_offset, stripe_size);
Josef Bacik6df9a952013-06-27 13:22:46 -04004894 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004895 break;
4896 }
4897 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004898 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe Manana50460e32015-11-20 10:42:47 +00004899 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004900 }
4901
Yan Zheng2b820322008-11-17 21:11:30 -05004902 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004903 for (i = 0; i < map->num_stripes; i++) {
4904 device = map->stripes[i].dev;
4905 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004906
4907 btrfs_set_stack_stripe_devid(stripe, device->devid);
4908 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4909 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4910 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004911 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004912 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05004913
4914 btrfs_set_stack_chunk_length(chunk, chunk_size);
4915 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4916 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4917 btrfs_set_stack_chunk_type(chunk, map->type);
4918 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4919 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4920 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004921 btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize);
Yan Zheng2b820322008-11-17 21:11:30 -05004922 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4923
4924 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4925 key.type = BTRFS_CHUNK_ITEM_KEY;
4926 key.offset = chunk_offset;
4927
4928 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004929 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4930 /*
4931 * TODO: Cleanup of inserted chunk root in case of
4932 * failure.
4933 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004934 ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004935 }
liubo1abe9b82011-03-24 11:18:59 +00004936
Josef Bacik6df9a952013-06-27 13:22:46 -04004937out:
Yan Zheng2b820322008-11-17 21:11:30 -05004938 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004939 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004940 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004941}
4942
4943/*
4944 * Chunk allocation falls into two parts. The first part does works
4945 * that make the new allocated chunk useable, but not do any operation
4946 * that modifies the chunk tree. The second part does the works that
4947 * require modifying the chunk tree. This division is important for the
4948 * bootstrap process of adding storage to a seed btrfs.
4949 */
Nikolay Borisovc216b202018-06-20 15:49:06 +03004950int btrfs_alloc_chunk(struct btrfs_trans_handle *trans, u64 type)
Yan Zheng2b820322008-11-17 21:11:30 -05004951{
4952 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004953
Nikolay Borisovc216b202018-06-20 15:49:06 +03004954 lockdep_assert_held(&trans->fs_info->chunk_mutex);
4955 chunk_offset = find_next_chunk(trans->fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01004956 return __btrfs_alloc_chunk(trans, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05004957}
4958
Chris Masond3977122009-01-05 21:25:51 -05004959static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +01004960 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05004961{
4962 u64 chunk_offset;
4963 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004964 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05004965 int ret;
4966
Josef Bacik6df9a952013-06-27 13:22:46 -04004967 chunk_offset = find_next_chunk(fs_info);
Jeff Mahoney1b868262017-05-17 11:38:35 -04004968 alloc_profile = btrfs_metadata_alloc_profile(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01004969 ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004970 if (ret)
4971 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004972
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004973 sys_chunk_offset = find_next_chunk(fs_info);
Jeff Mahoney1b868262017-05-17 11:38:35 -04004974 alloc_profile = btrfs_system_alloc_profile(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01004975 ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004976 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004977}
4978
Miao Xied20983b2014-07-03 18:22:13 +08004979static inline int btrfs_chunk_max_errors(struct map_lookup *map)
4980{
4981 int max_errors;
4982
4983 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
4984 BTRFS_BLOCK_GROUP_RAID10 |
4985 BTRFS_BLOCK_GROUP_RAID5 |
4986 BTRFS_BLOCK_GROUP_DUP)) {
4987 max_errors = 1;
4988 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
4989 max_errors = 2;
4990 } else {
4991 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004992 }
4993
Miao Xied20983b2014-07-03 18:22:13 +08004994 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05004995}
4996
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004997int btrfs_chunk_readonly(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Yan Zheng2b820322008-11-17 21:11:30 -05004998{
4999 struct extent_map *em;
5000 struct map_lookup *map;
Yan Zheng2b820322008-11-17 21:11:30 -05005001 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08005002 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005003 int i;
5004
Liu Bo592d92e2017-03-14 13:33:55 -07005005 em = get_chunk_map(fs_info, chunk_offset, 1);
5006 if (IS_ERR(em))
Yan Zheng2b820322008-11-17 21:11:30 -05005007 return 1;
5008
Jeff Mahoney95617d62015-06-03 10:55:48 -04005009 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05005010 for (i = 0; i < map->num_stripes; i++) {
Anand Jaine6e674b2017-12-04 12:54:54 +08005011 if (test_bit(BTRFS_DEV_STATE_MISSING,
5012 &map->stripes[i].dev->dev_state)) {
Miao Xied20983b2014-07-03 18:22:13 +08005013 miss_ndevs++;
5014 continue;
5015 }
Anand Jainebbede42017-12-04 12:54:52 +08005016 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE,
5017 &map->stripes[i].dev->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05005018 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08005019 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05005020 }
5021 }
Miao Xied20983b2014-07-03 18:22:13 +08005022
5023 /*
5024 * If the number of missing devices is larger than max errors,
5025 * we can not write the data into that chunk successfully, so
5026 * set it readonly.
5027 */
5028 if (miss_ndevs > btrfs_chunk_max_errors(map))
5029 readonly = 1;
5030end:
Yan Zheng2b820322008-11-17 21:11:30 -05005031 free_extent_map(em);
5032 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04005033}
5034
5035void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
5036{
David Sterbaa8067e02011-04-21 00:34:43 +02005037 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04005038}
5039
5040void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
5041{
5042 struct extent_map *em;
5043
Chris Masond3977122009-01-05 21:25:51 -05005044 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04005045 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005046 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
5047 if (em)
5048 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04005049 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005050 if (!em)
5051 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005052 /* once for us */
5053 free_extent_map(em);
5054 /* once for the tree */
5055 free_extent_map(em);
5056 }
5057}
5058
Stefan Behrens5d964052012-11-05 14:59:07 +01005059int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005060{
5061 struct extent_map *em;
5062 struct map_lookup *map;
Chris Masonf1885912008-04-09 16:28:12 -04005063 int ret;
5064
Liu Bo592d92e2017-03-14 13:33:55 -07005065 em = get_chunk_map(fs_info, logical, len);
5066 if (IS_ERR(em))
5067 /*
5068 * We could return errors for these cases, but that could get
5069 * ugly and we'd probably do the same thing which is just not do
5070 * anything else and exit, so return 1 so the callers don't try
5071 * to use other copies.
5072 */
Josef Bacikfb7669b2013-04-23 10:53:18 -04005073 return 1;
Josef Bacikfb7669b2013-04-23 10:53:18 -04005074
Jeff Mahoney95617d62015-06-03 10:55:48 -04005075 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005076 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5077 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005078 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5079 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005080 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5081 ret = 2;
5082 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
Liu Bo8810f752018-01-02 13:36:41 -07005083 /*
5084 * There could be two corrupted data stripes, we need
5085 * to loop retry in order to rebuild the correct data.
Nikolay Borisove7e02092018-06-20 15:48:55 +03005086 *
Liu Bo8810f752018-01-02 13:36:41 -07005087 * Fail a stripe at a time on every retry except the
5088 * stripe under reconstruction.
5089 */
5090 ret = map->num_stripes;
Chris Masonf1885912008-04-09 16:28:12 -04005091 else
5092 ret = 1;
5093 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005094
David Sterba7e79cb82018-03-24 02:11:38 +01005095 btrfs_dev_replace_read_lock(&fs_info->dev_replace);
Liu Bo6fad8232017-03-14 13:33:59 -07005096 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) &&
5097 fs_info->dev_replace.tgtdev)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005098 ret++;
David Sterba7e79cb82018-03-24 02:11:38 +01005099 btrfs_dev_replace_read_unlock(&fs_info->dev_replace);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005100
Chris Masonf1885912008-04-09 16:28:12 -04005101 return ret;
5102}
5103
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005104unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005105 u64 logical)
5106{
5107 struct extent_map *em;
5108 struct map_lookup *map;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005109 unsigned long len = fs_info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05005110
Liu Bo592d92e2017-03-14 13:33:55 -07005111 em = get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005112
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005113 if (!WARN_ON(IS_ERR(em))) {
5114 map = em->map_lookup;
5115 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5116 len = map->stripe_len * nr_data_stripes(map);
5117 free_extent_map(em);
5118 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005119 return len;
5120}
5121
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03005122int btrfs_is_parity_mirror(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
David Woodhouse53b381b2013-01-29 18:40:14 -05005123{
5124 struct extent_map *em;
5125 struct map_lookup *map;
David Woodhouse53b381b2013-01-29 18:40:14 -05005126 int ret = 0;
5127
Liu Bo592d92e2017-03-14 13:33:55 -07005128 em = get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005129
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005130 if(!WARN_ON(IS_ERR(em))) {
5131 map = em->map_lookup;
5132 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5133 ret = 1;
5134 free_extent_map(em);
5135 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005136 return ret;
5137}
5138
Stefan Behrens30d98612012-11-06 14:52:18 +01005139static int find_live_mirror(struct btrfs_fs_info *fs_info,
Anand Jain99f92a72018-03-14 16:29:12 +08005140 struct map_lookup *map, int first,
Anand Jain8ba0ae72018-03-14 16:29:13 +08005141 int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005142{
5143 int i;
Anand Jain99f92a72018-03-14 16:29:12 +08005144 int num_stripes;
Anand Jain8ba0ae72018-03-14 16:29:13 +08005145 int preferred_mirror;
Stefan Behrens30d98612012-11-06 14:52:18 +01005146 int tolerance;
5147 struct btrfs_device *srcdev;
5148
Anand Jain99f92a72018-03-14 16:29:12 +08005149 ASSERT((map->type &
5150 (BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)));
5151
5152 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5153 num_stripes = map->sub_stripes;
5154 else
5155 num_stripes = map->num_stripes;
5156
Anand Jain8ba0ae72018-03-14 16:29:13 +08005157 preferred_mirror = first + current->pid % num_stripes;
5158
Stefan Behrens30d98612012-11-06 14:52:18 +01005159 if (dev_replace_is_ongoing &&
5160 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5161 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5162 srcdev = fs_info->dev_replace.srcdev;
5163 else
5164 srcdev = NULL;
5165
5166 /*
5167 * try to avoid the drive that is the source drive for a
5168 * dev-replace procedure, only choose it if no other non-missing
5169 * mirror is available
5170 */
5171 for (tolerance = 0; tolerance < 2; tolerance++) {
Anand Jain8ba0ae72018-03-14 16:29:13 +08005172 if (map->stripes[preferred_mirror].dev->bdev &&
5173 (tolerance || map->stripes[preferred_mirror].dev != srcdev))
5174 return preferred_mirror;
Anand Jain99f92a72018-03-14 16:29:12 +08005175 for (i = first; i < first + num_stripes; i++) {
Stefan Behrens30d98612012-11-06 14:52:18 +01005176 if (map->stripes[i].dev->bdev &&
5177 (tolerance || map->stripes[i].dev != srcdev))
5178 return i;
5179 }
Chris Masondfe25022008-05-13 13:46:40 -04005180 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005181
Chris Masondfe25022008-05-13 13:46:40 -04005182 /* we couldn't find one that doesn't fail. Just return something
5183 * and the io error handling code will clean up eventually
5184 */
Anand Jain8ba0ae72018-03-14 16:29:13 +08005185 return preferred_mirror;
Chris Masondfe25022008-05-13 13:46:40 -04005186}
5187
David Woodhouse53b381b2013-01-29 18:40:14 -05005188static inline int parity_smaller(u64 a, u64 b)
5189{
5190 return a > b;
5191}
5192
5193/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005194static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005195{
5196 struct btrfs_bio_stripe s;
5197 int i;
5198 u64 l;
5199 int again = 1;
5200
5201 while (again) {
5202 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005203 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005204 if (parity_smaller(bbio->raid_map[i],
5205 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005206 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005207 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005208 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005209 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005210 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005211 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005212
David Woodhouse53b381b2013-01-29 18:40:14 -05005213 again = 1;
5214 }
5215 }
5216 }
5217}
5218
Zhao Lei6e9606d2015-01-20 15:11:34 +08005219static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5220{
5221 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005222 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005223 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005224 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005225 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005226 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005227 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005228 /*
5229 * plus the raid_map, which includes both the tgt dev
5230 * and the stripes
5231 */
5232 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005233 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005234
5235 atomic_set(&bbio->error, 0);
Elena Reshetova140475a2017-03-03 10:55:10 +02005236 refcount_set(&bbio->refs, 1);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005237
5238 return bbio;
5239}
5240
5241void btrfs_get_bbio(struct btrfs_bio *bbio)
5242{
Elena Reshetova140475a2017-03-03 10:55:10 +02005243 WARN_ON(!refcount_read(&bbio->refs));
5244 refcount_inc(&bbio->refs);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005245}
5246
5247void btrfs_put_bbio(struct btrfs_bio *bbio)
5248{
5249 if (!bbio)
5250 return;
Elena Reshetova140475a2017-03-03 10:55:10 +02005251 if (refcount_dec_and_test(&bbio->refs))
Zhao Lei6e9606d2015-01-20 15:11:34 +08005252 kfree(bbio);
5253}
5254
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005255/* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */
5256/*
5257 * Please note that, discard won't be sent to target device of device
5258 * replace.
5259 */
5260static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info,
5261 u64 logical, u64 length,
5262 struct btrfs_bio **bbio_ret)
5263{
5264 struct extent_map *em;
5265 struct map_lookup *map;
5266 struct btrfs_bio *bbio;
5267 u64 offset;
5268 u64 stripe_nr;
5269 u64 stripe_nr_end;
5270 u64 stripe_end_offset;
5271 u64 stripe_cnt;
5272 u64 stripe_len;
5273 u64 stripe_offset;
5274 u64 num_stripes;
5275 u32 stripe_index;
5276 u32 factor = 0;
5277 u32 sub_stripes = 0;
5278 u64 stripes_per_dev = 0;
5279 u32 remaining_stripes = 0;
5280 u32 last_stripe = 0;
5281 int ret = 0;
5282 int i;
5283
5284 /* discard always return a bbio */
5285 ASSERT(bbio_ret);
5286
5287 em = get_chunk_map(fs_info, logical, length);
5288 if (IS_ERR(em))
5289 return PTR_ERR(em);
5290
5291 map = em->map_lookup;
5292 /* we don't discard raid56 yet */
5293 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
5294 ret = -EOPNOTSUPP;
5295 goto out;
5296 }
5297
5298 offset = logical - em->start;
5299 length = min_t(u64, em->len - offset, length);
5300
5301 stripe_len = map->stripe_len;
5302 /*
5303 * stripe_nr counts the total number of stripes we have to stride
5304 * to get to this block
5305 */
5306 stripe_nr = div64_u64(offset, stripe_len);
5307
5308 /* stripe_offset is the offset of this block in its stripe */
5309 stripe_offset = offset - stripe_nr * stripe_len;
5310
5311 stripe_nr_end = round_up(offset + length, map->stripe_len);
Liu Bo42c61ab2017-04-03 13:45:24 -07005312 stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005313 stripe_cnt = stripe_nr_end - stripe_nr;
5314 stripe_end_offset = stripe_nr_end * map->stripe_len -
5315 (offset + length);
5316 /*
5317 * after this, stripe_nr is the number of stripes on this
5318 * device we have to walk to find the data, and stripe_index is
5319 * the number of our device in the stripe array
5320 */
5321 num_stripes = 1;
5322 stripe_index = 0;
5323 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5324 BTRFS_BLOCK_GROUP_RAID10)) {
5325 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5326 sub_stripes = 1;
5327 else
5328 sub_stripes = map->sub_stripes;
5329
5330 factor = map->num_stripes / sub_stripes;
5331 num_stripes = min_t(u64, map->num_stripes,
5332 sub_stripes * stripe_cnt);
5333 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
5334 stripe_index *= sub_stripes;
5335 stripes_per_dev = div_u64_rem(stripe_cnt, factor,
5336 &remaining_stripes);
5337 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5338 last_stripe *= sub_stripes;
5339 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5340 BTRFS_BLOCK_GROUP_DUP)) {
5341 num_stripes = map->num_stripes;
5342 } else {
5343 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5344 &stripe_index);
5345 }
5346
5347 bbio = alloc_btrfs_bio(num_stripes, 0);
5348 if (!bbio) {
5349 ret = -ENOMEM;
5350 goto out;
5351 }
5352
5353 for (i = 0; i < num_stripes; i++) {
5354 bbio->stripes[i].physical =
5355 map->stripes[stripe_index].physical +
5356 stripe_offset + stripe_nr * map->stripe_len;
5357 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
5358
5359 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5360 BTRFS_BLOCK_GROUP_RAID10)) {
5361 bbio->stripes[i].length = stripes_per_dev *
5362 map->stripe_len;
5363
5364 if (i / sub_stripes < remaining_stripes)
5365 bbio->stripes[i].length +=
5366 map->stripe_len;
5367
5368 /*
5369 * Special for the first stripe and
5370 * the last stripe:
5371 *
5372 * |-------|...|-------|
5373 * |----------|
5374 * off end_off
5375 */
5376 if (i < sub_stripes)
5377 bbio->stripes[i].length -=
5378 stripe_offset;
5379
5380 if (stripe_index >= last_stripe &&
5381 stripe_index <= (last_stripe +
5382 sub_stripes - 1))
5383 bbio->stripes[i].length -=
5384 stripe_end_offset;
5385
5386 if (i == sub_stripes - 1)
5387 stripe_offset = 0;
5388 } else {
5389 bbio->stripes[i].length = length;
5390 }
5391
5392 stripe_index++;
5393 if (stripe_index == map->num_stripes) {
5394 stripe_index = 0;
5395 stripe_nr++;
5396 }
5397 }
5398
5399 *bbio_ret = bbio;
5400 bbio->map_type = map->type;
5401 bbio->num_stripes = num_stripes;
5402out:
5403 free_extent_map(em);
5404 return ret;
5405}
5406
Liu Bo5ab56092017-03-14 13:33:57 -07005407/*
5408 * In dev-replace case, for repair case (that's the only case where the mirror
5409 * is selected explicitly when calling btrfs_map_block), blocks left of the
5410 * left cursor can also be read from the target drive.
5411 *
5412 * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the
5413 * array of stripes.
5414 * For READ, it also needs to be supported using the same mirror number.
5415 *
5416 * If the requested block is not left of the left cursor, EIO is returned. This
5417 * can happen because btrfs_num_copies() returns one more in the dev-replace
5418 * case.
5419 */
5420static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info,
5421 u64 logical, u64 length,
5422 u64 srcdev_devid, int *mirror_num,
5423 u64 *physical)
5424{
5425 struct btrfs_bio *bbio = NULL;
5426 int num_stripes;
5427 int index_srcdev = 0;
5428 int found = 0;
5429 u64 physical_of_found = 0;
5430 int i;
5431 int ret = 0;
5432
5433 ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
5434 logical, &length, &bbio, 0, 0);
5435 if (ret) {
5436 ASSERT(bbio == NULL);
5437 return ret;
5438 }
5439
5440 num_stripes = bbio->num_stripes;
5441 if (*mirror_num > num_stripes) {
5442 /*
5443 * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror,
5444 * that means that the requested area is not left of the left
5445 * cursor
5446 */
5447 btrfs_put_bbio(bbio);
5448 return -EIO;
5449 }
5450
5451 /*
5452 * process the rest of the function using the mirror_num of the source
5453 * drive. Therefore look it up first. At the end, patch the device
5454 * pointer to the one of the target drive.
5455 */
5456 for (i = 0; i < num_stripes; i++) {
5457 if (bbio->stripes[i].dev->devid != srcdev_devid)
5458 continue;
5459
5460 /*
5461 * In case of DUP, in order to keep it simple, only add the
5462 * mirror with the lowest physical address
5463 */
5464 if (found &&
5465 physical_of_found <= bbio->stripes[i].physical)
5466 continue;
5467
5468 index_srcdev = i;
5469 found = 1;
5470 physical_of_found = bbio->stripes[i].physical;
5471 }
5472
5473 btrfs_put_bbio(bbio);
5474
5475 ASSERT(found);
5476 if (!found)
5477 return -EIO;
5478
5479 *mirror_num = index_srcdev + 1;
5480 *physical = physical_of_found;
5481 return ret;
5482}
5483
Liu Bo73c0f222017-03-14 13:33:58 -07005484static void handle_ops_on_dev_replace(enum btrfs_map_op op,
5485 struct btrfs_bio **bbio_ret,
5486 struct btrfs_dev_replace *dev_replace,
5487 int *num_stripes_ret, int *max_errors_ret)
5488{
5489 struct btrfs_bio *bbio = *bbio_ret;
5490 u64 srcdev_devid = dev_replace->srcdev->devid;
5491 int tgtdev_indexes = 0;
5492 int num_stripes = *num_stripes_ret;
5493 int max_errors = *max_errors_ret;
5494 int i;
5495
5496 if (op == BTRFS_MAP_WRITE) {
5497 int index_where_to_add;
5498
5499 /*
5500 * duplicate the write operations while the dev replace
5501 * procedure is running. Since the copying of the old disk to
5502 * the new disk takes place at run time while the filesystem is
5503 * mounted writable, the regular write operations to the old
5504 * disk have to be duplicated to go to the new disk as well.
5505 *
5506 * Note that device->missing is handled by the caller, and that
5507 * the write to the old disk is already set up in the stripes
5508 * array.
5509 */
5510 index_where_to_add = num_stripes;
5511 for (i = 0; i < num_stripes; i++) {
5512 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5513 /* write to new disk, too */
5514 struct btrfs_bio_stripe *new =
5515 bbio->stripes + index_where_to_add;
5516 struct btrfs_bio_stripe *old =
5517 bbio->stripes + i;
5518
5519 new->physical = old->physical;
5520 new->length = old->length;
5521 new->dev = dev_replace->tgtdev;
5522 bbio->tgtdev_map[i] = index_where_to_add;
5523 index_where_to_add++;
5524 max_errors++;
5525 tgtdev_indexes++;
5526 }
5527 }
5528 num_stripes = index_where_to_add;
5529 } else if (op == BTRFS_MAP_GET_READ_MIRRORS) {
5530 int index_srcdev = 0;
5531 int found = 0;
5532 u64 physical_of_found = 0;
5533
5534 /*
5535 * During the dev-replace procedure, the target drive can also
5536 * be used to read data in case it is needed to repair a corrupt
5537 * block elsewhere. This is possible if the requested area is
5538 * left of the left cursor. In this area, the target drive is a
5539 * full copy of the source drive.
5540 */
5541 for (i = 0; i < num_stripes; i++) {
5542 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5543 /*
5544 * In case of DUP, in order to keep it simple,
5545 * only add the mirror with the lowest physical
5546 * address
5547 */
5548 if (found &&
5549 physical_of_found <=
5550 bbio->stripes[i].physical)
5551 continue;
5552 index_srcdev = i;
5553 found = 1;
5554 physical_of_found = bbio->stripes[i].physical;
5555 }
5556 }
5557 if (found) {
5558 struct btrfs_bio_stripe *tgtdev_stripe =
5559 bbio->stripes + num_stripes;
5560
5561 tgtdev_stripe->physical = physical_of_found;
5562 tgtdev_stripe->length =
5563 bbio->stripes[index_srcdev].length;
5564 tgtdev_stripe->dev = dev_replace->tgtdev;
5565 bbio->tgtdev_map[index_srcdev] = num_stripes;
5566
5567 tgtdev_indexes++;
5568 num_stripes++;
5569 }
5570 }
5571
5572 *num_stripes_ret = num_stripes;
5573 *max_errors_ret = max_errors;
5574 bbio->num_tgtdevs = tgtdev_indexes;
5575 *bbio_ret = bbio;
5576}
5577
Liu Bo2b19a1f2017-03-14 13:34:00 -07005578static bool need_full_stripe(enum btrfs_map_op op)
5579{
5580 return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS);
5581}
5582
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005583static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
5584 enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005585 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005586 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005587 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005588{
5589 struct extent_map *em;
5590 struct map_lookup *map;
Chris Mason0b86a832008-03-24 15:01:56 -04005591 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005592 u64 stripe_offset;
5593 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005594 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005595 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005596 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005597 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005598 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005599 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005600 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005601 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005602 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5603 int dev_replace_is_ongoing = 0;
5604 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005605 int patch_the_first_stripe_for_dev_replace = 0;
5606 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005607 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005608
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005609 if (op == BTRFS_MAP_DISCARD)
5610 return __btrfs_map_block_for_discard(fs_info, logical,
5611 *length, bbio_ret);
5612
Liu Bo592d92e2017-03-14 13:33:55 -07005613 em = get_chunk_map(fs_info, logical, *length);
5614 if (IS_ERR(em))
5615 return PTR_ERR(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005616
Jeff Mahoney95617d62015-06-03 10:55:48 -04005617 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005618 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005619
David Woodhouse53b381b2013-01-29 18:40:14 -05005620 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005621 stripe_nr = offset;
5622 /*
5623 * stripe_nr counts the total number of stripes we have to stride
5624 * to get to this block
5625 */
David Sterba47c57132015-02-20 18:43:47 +01005626 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005627
David Woodhouse53b381b2013-01-29 18:40:14 -05005628 stripe_offset = stripe_nr * stripe_len;
Josef Bacike042d1e2016-04-12 12:54:40 -04005629 if (offset < stripe_offset) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005630 btrfs_crit(fs_info,
5631 "stripe math has gone wrong, stripe_offset=%llu, offset=%llu, start=%llu, logical=%llu, stripe_len=%llu",
Josef Bacike042d1e2016-04-12 12:54:40 -04005632 stripe_offset, offset, em->start, logical,
5633 stripe_len);
5634 free_extent_map(em);
5635 return -EINVAL;
5636 }
Chris Mason593060d2008-03-25 16:50:33 -04005637
5638 /* stripe_offset is the offset of this block in its stripe*/
5639 stripe_offset = offset - stripe_offset;
5640
David Woodhouse53b381b2013-01-29 18:40:14 -05005641 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005642 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005643 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5644 raid56_full_stripe_start = offset;
5645
5646 /* allow a write of a full stripe, but make sure we don't
5647 * allow straddling of stripes
5648 */
David Sterba47c57132015-02-20 18:43:47 +01005649 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5650 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005651 raid56_full_stripe_start *= full_stripe_len;
5652 }
5653
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005654 if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005655 u64 max_len;
5656 /* For writes to RAID[56], allow a full stripeset across all disks.
5657 For other RAID types and for RAID[56] reads, just allow a single
5658 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005659 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005660 (op == BTRFS_MAP_WRITE)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005661 max_len = stripe_len * nr_data_stripes(map) -
5662 (offset - raid56_full_stripe_start);
5663 } else {
5664 /* we limit the length of each bio to what fits in a stripe */
5665 max_len = stripe_len - stripe_offset;
5666 }
5667 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005668 } else {
5669 *length = em->len - offset;
5670 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005671
David Woodhouse53b381b2013-01-29 18:40:14 -05005672 /* This is for when we're called from btrfs_merge_bio_hook() and all
5673 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005674 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005675 goto out;
5676
David Sterba7e79cb82018-03-24 02:11:38 +01005677 btrfs_dev_replace_read_lock(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005678 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5679 if (!dev_replace_is_ongoing)
David Sterba7e79cb82018-03-24 02:11:38 +01005680 btrfs_dev_replace_read_unlock(dev_replace);
Liu Bo73beece2015-07-17 16:49:19 +08005681 else
5682 btrfs_dev_replace_set_lock_blocking(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005683
Stefan Behrensad6d6202012-11-06 15:06:47 +01005684 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005685 !need_full_stripe(op) && dev_replace->tgtdev != NULL) {
Liu Bo5ab56092017-03-14 13:33:57 -07005686 ret = get_extra_mirror_from_replace(fs_info, logical, *length,
5687 dev_replace->srcdev->devid,
5688 &mirror_num,
5689 &physical_to_patch_in_first_stripe);
5690 if (ret)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005691 goto out;
Liu Bo5ab56092017-03-14 13:33:57 -07005692 else
5693 patch_the_first_stripe_for_dev_replace = 1;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005694 } else if (mirror_num > map->num_stripes) {
5695 mirror_num = 0;
5696 }
5697
Chris Masonf2d8d742008-04-21 10:03:05 -04005698 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005699 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005700 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
David Sterba47c57132015-02-20 18:43:47 +01005701 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5702 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08005703 if (!need_full_stripe(op))
Miao Xie28e1cc72014-09-12 18:44:02 +08005704 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005705 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Anand Jainde483732017-10-12 16:43:00 +08005706 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04005707 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005708 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005709 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005710 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005711 stripe_index = find_live_mirror(fs_info, map, 0,
Stefan Behrens30d98612012-11-06 14:52:18 +01005712 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005713 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005714 }
Chris Mason2fff7342008-04-29 14:12:09 -04005715
Chris Mason611f0e02008-04-03 16:29:03 -04005716 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Anand Jainde483732017-10-12 16:43:00 +08005717 if (need_full_stripe(op)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005718 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005719 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005720 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005721 } else {
5722 mirror_num = 1;
5723 }
Chris Mason2fff7342008-04-29 14:12:09 -04005724
Chris Mason321aecc2008-04-16 10:49:51 -04005725 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005726 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005727
David Sterba47c57132015-02-20 18:43:47 +01005728 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005729 stripe_index *= map->sub_stripes;
5730
Anand Jainde483732017-10-12 16:43:00 +08005731 if (need_full_stripe(op))
Chris Masonf2d8d742008-04-21 10:03:05 -04005732 num_stripes = map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005733 else if (mirror_num)
5734 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005735 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005736 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005737 stripe_index = find_live_mirror(fs_info, map,
5738 stripe_index,
Stefan Behrens30d98612012-11-06 14:52:18 +01005739 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005740 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005741 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005742
Zhao Leiffe2d202015-01-20 15:11:44 +08005743 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Anand Jainde483732017-10-12 16:43:00 +08005744 if (need_raid_map && (need_full_stripe(op) || mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005745 /* push stripe_nr back to the start of the full stripe */
Liu Bo42c61ab2017-04-03 13:45:24 -07005746 stripe_nr = div64_u64(raid56_full_stripe_start,
David Sterbab8b93ad2015-01-16 17:26:13 +01005747 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005748
5749 /* RAID[56] write or recovery. Return all stripes */
5750 num_stripes = map->num_stripes;
5751 max_errors = nr_parity_stripes(map);
5752
David Woodhouse53b381b2013-01-29 18:40:14 -05005753 *length = map->stripe_len;
5754 stripe_index = 0;
5755 stripe_offset = 0;
5756 } else {
5757 /*
5758 * Mirror #0 or #1 means the original data block.
5759 * Mirror #2 is RAID5 parity block.
5760 * Mirror #3 is RAID6 Q block.
5761 */
David Sterba47c57132015-02-20 18:43:47 +01005762 stripe_nr = div_u64_rem(stripe_nr,
5763 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005764 if (mirror_num > 1)
5765 stripe_index = nr_data_stripes(map) +
5766 mirror_num - 2;
5767
5768 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005769 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5770 &stripe_index);
Anand Jainde483732017-10-12 16:43:00 +08005771 if (!need_full_stripe(op) && mirror_num <= 1)
Miao Xie28e1cc72014-09-12 18:44:02 +08005772 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005773 }
Chris Mason8790d502008-04-03 16:29:03 -04005774 } else {
5775 /*
David Sterba47c57132015-02-20 18:43:47 +01005776 * after this, stripe_nr is the number of stripes on this
5777 * device we have to walk to find the data, and stripe_index is
5778 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005779 */
David Sterba47c57132015-02-20 18:43:47 +01005780 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5781 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005782 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005783 }
Josef Bacike042d1e2016-04-12 12:54:40 -04005784 if (stripe_index >= map->num_stripes) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005785 btrfs_crit(fs_info,
5786 "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u",
Josef Bacike042d1e2016-04-12 12:54:40 -04005787 stripe_index, map->num_stripes);
5788 ret = -EINVAL;
5789 goto out;
5790 }
Chris Mason593060d2008-03-25 16:50:33 -04005791
Stefan Behrens472262f2012-11-06 14:43:46 +01005792 num_alloc_stripes = num_stripes;
Liu Bo6fad8232017-03-14 13:33:59 -07005793 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005794 if (op == BTRFS_MAP_WRITE)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005795 num_alloc_stripes <<= 1;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005796 if (op == BTRFS_MAP_GET_READ_MIRRORS)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005797 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005798 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005799 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005800
Zhao Lei6e9606d2015-01-20 15:11:34 +08005801 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005802 if (!bbio) {
5803 ret = -ENOMEM;
5804 goto out;
5805 }
Liu Bo6fad8232017-03-14 13:33:59 -07005806 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL)
Miao Xie2c8cdd62014-11-14 16:06:25 +08005807 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005808
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005809 /* build raid_map */
Liu Bo2b19a1f2017-03-14 13:34:00 -07005810 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map &&
5811 (need_full_stripe(op) || mirror_num > 1)) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005812 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005813 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005814
5815 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5816 sizeof(struct btrfs_bio_stripe) *
5817 num_alloc_stripes +
5818 sizeof(int) * tgtdev_indexes);
5819
5820 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005821 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005822
5823 /* Fill in the logical address of each stripe */
5824 tmp = stripe_nr * nr_data_stripes(map);
5825 for (i = 0; i < nr_data_stripes(map); i++)
5826 bbio->raid_map[(i+rot) % num_stripes] =
5827 em->start + (tmp + i) * map->stripe_len;
5828
5829 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5830 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5831 bbio->raid_map[(i+rot+1) % num_stripes] =
5832 RAID6_Q_STRIPE;
5833 }
5834
Li Zefanec9ef7a2011-12-01 14:06:42 +08005835
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005836 for (i = 0; i < num_stripes; i++) {
5837 bbio->stripes[i].physical =
5838 map->stripes[stripe_index].physical +
5839 stripe_offset +
5840 stripe_nr * map->stripe_len;
5841 bbio->stripes[i].dev =
5842 map->stripes[stripe_index].dev;
5843 stripe_index++;
Chris Mason593060d2008-03-25 16:50:33 -04005844 }
Li Zefande11cc12011-12-01 12:55:47 +08005845
Liu Bo2b19a1f2017-03-14 13:34:00 -07005846 if (need_full_stripe(op))
Miao Xied20983b2014-07-03 18:22:13 +08005847 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005848
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005849 if (bbio->raid_map)
5850 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005851
Liu Bo73c0f222017-03-14 13:33:58 -07005852 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005853 need_full_stripe(op)) {
Liu Bo73c0f222017-03-14 13:33:58 -07005854 handle_ops_on_dev_replace(op, &bbio, dev_replace, &num_stripes,
5855 &max_errors);
Stefan Behrens472262f2012-11-06 14:43:46 +01005856 }
5857
Li Zefande11cc12011-12-01 12:55:47 +08005858 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005859 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005860 bbio->num_stripes = num_stripes;
5861 bbio->max_errors = max_errors;
5862 bbio->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005863
5864 /*
5865 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5866 * mirror_num == num_stripes + 1 && dev_replace target drive is
5867 * available as a mirror
5868 */
5869 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5870 WARN_ON(num_stripes > 1);
5871 bbio->stripes[0].dev = dev_replace->tgtdev;
5872 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5873 bbio->mirror_num = map->num_stripes + 1;
5874 }
Chris Masoncea9e442008-04-09 16:28:12 -04005875out:
Liu Bo73beece2015-07-17 16:49:19 +08005876 if (dev_replace_is_ongoing) {
5877 btrfs_dev_replace_clear_lock_blocking(dev_replace);
David Sterba7e79cb82018-03-24 02:11:38 +01005878 btrfs_dev_replace_read_unlock(dev_replace);
Liu Bo73beece2015-07-17 16:49:19 +08005879 }
Chris Mason0b86a832008-03-24 15:01:56 -04005880 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005881 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005882}
5883
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005884int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005885 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005886 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005887{
Mike Christieb3d3fa52016-06-05 14:31:53 -05005888 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005889 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005890}
5891
Miao Xieaf8e2d12014-10-23 14:42:50 +08005892/* For Scrub/replace */
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005893int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Miao Xieaf8e2d12014-10-23 14:42:50 +08005894 u64 logical, u64 *length,
David Sterba825ad4c2017-03-28 14:45:22 +02005895 struct btrfs_bio **bbio_ret)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005896{
David Sterba825ad4c2017-03-28 14:45:22 +02005897 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, 0, 1);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005898}
5899
Nikolay Borisov63a9c7b2018-05-04 10:53:05 +03005900int btrfs_rmap_block(struct btrfs_fs_info *fs_info, u64 chunk_start,
5901 u64 physical, u64 **logical, int *naddrs, int *stripe_len)
Yan Zhenga512bbf2008-12-08 16:46:26 -05005902{
Yan Zhenga512bbf2008-12-08 16:46:26 -05005903 struct extent_map *em;
5904 struct map_lookup *map;
5905 u64 *buf;
5906 u64 bytenr;
5907 u64 length;
5908 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005909 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005910 int i, j, nr = 0;
5911
Liu Bo592d92e2017-03-14 13:33:55 -07005912 em = get_chunk_map(fs_info, chunk_start, 1);
5913 if (IS_ERR(em))
Josef Bacik835d9742013-03-19 12:13:25 -04005914 return -EIO;
Josef Bacik835d9742013-03-19 12:13:25 -04005915
Jeff Mahoney95617d62015-06-03 10:55:48 -04005916 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005917 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005918 rmap_len = map->stripe_len;
5919
Yan Zhenga512bbf2008-12-08 16:46:26 -05005920 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01005921 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005922 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01005923 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08005924 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01005925 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005926 rmap_len = map->stripe_len * nr_data_stripes(map);
5927 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005928
David Sterba31e818f2015-02-20 18:00:26 +01005929 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005930 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005931
5932 for (i = 0; i < map->num_stripes; i++) {
Yan Zhenga512bbf2008-12-08 16:46:26 -05005933 if (map->stripes[i].physical > physical ||
5934 map->stripes[i].physical + length <= physical)
5935 continue;
5936
5937 stripe_nr = physical - map->stripes[i].physical;
Liu Bo42c61ab2017-04-03 13:45:24 -07005938 stripe_nr = div64_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005939
5940 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5941 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01005942 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005943 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5944 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005945 } /* else if RAID[56], multiply by nr_data_stripes().
5946 * Alternatively, just use rmap_len below instead of
5947 * map->stripe_len */
5948
5949 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005950 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005951 for (j = 0; j < nr; j++) {
5952 if (buf[j] == bytenr)
5953 break;
5954 }
Chris Mason934d3752008-12-08 16:43:10 -05005955 if (j == nr) {
5956 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005957 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005958 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005959 }
5960
Yan Zhenga512bbf2008-12-08 16:46:26 -05005961 *logical = buf;
5962 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005963 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005964
5965 free_extent_map(em);
5966 return 0;
5967}
5968
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005969static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08005970{
Mike Snitzer326e1db2015-05-22 09:14:03 -04005971 bio->bi_private = bbio->private;
5972 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005973 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04005974
Zhao Lei6e9606d2015-01-20 15:11:34 +08005975 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08005976}
5977
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005978static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04005979{
Chris Mason9be33952013-05-17 18:30:14 -04005980 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005981 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005982
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02005983 if (bio->bi_status) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005984 atomic_inc(&bbio->error);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02005985 if (bio->bi_status == BLK_STS_IOERR ||
5986 bio->bi_status == BLK_STS_TARGET) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02005987 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04005988 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08005989 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02005990
5991 BUG_ON(stripe_index >= bbio->num_stripes);
5992 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02005993 if (dev->bdev) {
Mike Christie37226b22016-06-05 14:31:52 -05005994 if (bio_op(bio) == REQ_OP_WRITE)
Anand Jain1cb34c82017-10-21 01:45:33 +08005995 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02005996 BTRFS_DEV_STAT_WRITE_ERRS);
5997 else
Anand Jain1cb34c82017-10-21 01:45:33 +08005998 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02005999 BTRFS_DEV_STAT_READ_ERRS);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06006000 if (bio->bi_opf & REQ_PREFLUSH)
Anand Jain1cb34c82017-10-21 01:45:33 +08006001 btrfs_dev_stat_inc_and_print(dev,
Stefan Behrens597a60f2012-06-14 16:42:31 +02006002 BTRFS_DEV_STAT_FLUSH_ERRS);
Stefan Behrens597a60f2012-06-14 16:42:31 +02006003 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02006004 }
6005 }
Chris Mason8790d502008-04-03 16:29:03 -04006006
Jan Schmidta1d3c472011-08-04 17:15:33 +02006007 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04006008 is_orig_bio = 1;
6009
Miao Xiec404e0d2014-01-30 16:46:55 +08006010 btrfs_bio_counter_dec(bbio->fs_info);
6011
Jan Schmidta1d3c472011-08-04 17:15:33 +02006012 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04006013 if (!is_orig_bio) {
6014 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006015 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006016 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07006017
Chris Mason9be33952013-05-17 18:30:14 -04006018 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04006019 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05006020 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04006021 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02006022 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006023 bio->bi_status = BLK_STS_IOERR;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05006024 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04006025 /*
6026 * this bio is actually up to date, we didn't
6027 * go over the max number of errors
6028 */
Anand Jain2dbe0c72017-10-14 08:35:56 +08006029 bio->bi_status = BLK_STS_OK;
Chris Mason1259ab72008-05-12 13:39:03 -04006030 }
Miao Xiec55f1392014-06-19 10:42:54 +08006031
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006032 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04006033 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04006034 bio_put(bio);
6035 }
Chris Mason8790d502008-04-03 16:29:03 -04006036}
6037
Chris Mason8b712842008-06-11 16:50:36 -04006038/*
6039 * see run_scheduled_bios for a description of why bios are collected for
6040 * async submit.
6041 *
6042 * This will add one bio to the pending list for a device and make sure
6043 * the work struct is scheduled.
6044 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006045static noinline void btrfs_schedule_bio(struct btrfs_device *device,
Mike Christie4e49ea42016-06-05 14:31:41 -05006046 struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04006047{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006048 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -04006049 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04006050 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006051
Anand Jaine6e674b2017-12-04 12:54:54 +08006052 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state) ||
6053 !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006054 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05006055 return;
6056 }
6057
Chris Mason8b712842008-06-11 16:50:36 -04006058 /* don't bother with additional async steps for reads, right now */
Mike Christie37226b22016-06-05 14:31:52 -05006059 if (bio_op(bio) == REQ_OP_READ) {
Mike Christie4e49ea42016-06-05 14:31:41 -05006060 btrfsic_submit_bio(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01006061 return;
Chris Mason8b712842008-06-11 16:50:36 -04006062 }
6063
Chris Mason492bb6de2008-07-31 16:29:02 -04006064 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04006065 bio->bi_next = NULL;
Chris Mason8b712842008-06-11 16:50:36 -04006066
6067 spin_lock(&device->io_lock);
Christoph Hellwig67f055c2016-11-01 07:40:06 -06006068 if (op_is_sync(bio->bi_opf))
Chris Masonffbd5172009-04-20 15:50:09 -04006069 pending_bios = &device->pending_sync_bios;
6070 else
6071 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006072
Chris Masonffbd5172009-04-20 15:50:09 -04006073 if (pending_bios->tail)
6074 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006075
Chris Masonffbd5172009-04-20 15:50:09 -04006076 pending_bios->tail = bio;
6077 if (!pending_bios->head)
6078 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006079 if (device->running_pending)
6080 should_queue = 0;
6081
6082 spin_unlock(&device->io_lock);
6083
6084 if (should_queue)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006085 btrfs_queue_work(fs_info->submit_workers, &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04006086}
6087
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006088static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio,
6089 u64 physical, int dev_nr, int async)
Josef Bacikde1ee922012-10-19 16:50:56 -04006090{
6091 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006092 struct btrfs_fs_info *fs_info = bbio->fs_info;
Josef Bacikde1ee922012-10-19 16:50:56 -04006093
6094 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04006095 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04006096 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006097 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04006098#ifdef DEBUG
6099 {
6100 struct rcu_string *name;
6101
6102 rcu_read_lock();
6103 name = rcu_dereference(dev->name);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006104 btrfs_debug(fs_info,
6105 "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u",
6106 bio_op(bio), bio->bi_opf,
6107 (u64)bio->bi_iter.bi_sector,
6108 (u_long)dev->bdev->bd_dev, name->str, dev->devid,
6109 bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006110 rcu_read_unlock();
6111 }
6112#endif
Christoph Hellwig74d46992017-08-23 19:10:32 +02006113 bio_set_dev(bio, dev->bdev);
Miao Xiec404e0d2014-01-30 16:46:55 +08006114
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006115 btrfs_bio_counter_inc_noblocked(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006116
Josef Bacikde1ee922012-10-19 16:50:56 -04006117 if (async)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006118 btrfs_schedule_bio(dev, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006119 else
Mike Christie4e49ea42016-06-05 14:31:41 -05006120 btrfsic_submit_bio(bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006121}
6122
Josef Bacikde1ee922012-10-19 16:50:56 -04006123static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6124{
6125 atomic_inc(&bbio->error);
6126 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Nicholas D Steeves01327612016-05-19 21:18:45 -04006127 /* Should be the original bio. */
Miao Xie8408c712014-06-19 10:42:55 +08006128 WARN_ON(bio != bbio->orig_bio);
6129
Chris Mason9be33952013-05-17 18:30:14 -04006130 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006131 bio->bi_iter.bi_sector = logical >> 9;
Anand Jain102ed2c2017-10-14 08:34:02 +08006132 if (atomic_read(&bbio->error) > bbio->max_errors)
6133 bio->bi_status = BLK_STS_IOERR;
6134 else
6135 bio->bi_status = BLK_STS_OK;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006136 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006137 }
6138}
6139
Omar Sandoval58efbc92017-08-22 23:45:59 -07006140blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
6141 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006142{
Chris Mason0b86a832008-03-24 15:01:56 -04006143 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006144 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006145 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006146 u64 length = 0;
6147 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006148 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006149 int dev_nr;
6150 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006151 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006152
Kent Overstreet4f024f32013-10-11 15:44:27 -07006153 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006154 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006155
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006156 btrfs_bio_counter_inc_blocked(fs_info);
Liu Bobd7d63c2017-09-19 17:50:09 -06006157 ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical,
Mike Christie37226b22016-06-05 14:31:52 -05006158 &map_length, &bbio, mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006159 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006160 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006161 return errno_to_blk_status(ret);
Miao Xiec404e0d2014-01-30 16:46:55 +08006162 }
Chris Masoncea9e442008-04-09 16:28:12 -04006163
Jan Schmidta1d3c472011-08-04 17:15:33 +02006164 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006165 bbio->orig_bio = first_bio;
6166 bbio->private = first_bio->bi_private;
6167 bbio->end_io = first_bio->bi_end_io;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006168 bbio->fs_info = fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006169 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6170
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006171 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Mike Christie37226b22016-06-05 14:31:52 -05006172 ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006173 /* In this case, map_length has been set to the length of
6174 a single stripe; not the whole write */
Mike Christie37226b22016-06-05 14:31:52 -05006175 if (bio_op(bio) == REQ_OP_WRITE) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006176 ret = raid56_parity_write(fs_info, bio, bbio,
6177 map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006178 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006179 ret = raid56_parity_recover(fs_info, bio, bbio,
6180 map_length, mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006181 }
Miao Xie42452152014-11-25 16:39:28 +08006182
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006183 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006184 return errno_to_blk_status(ret);
David Woodhouse53b381b2013-01-29 18:40:14 -05006185 }
6186
Chris Masoncea9e442008-04-09 16:28:12 -04006187 if (map_length < length) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006188 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006189 "mapping failed logical %llu bio len %llu len %llu",
6190 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006191 BUG();
6192 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006193
Zhao Lei08da7572015-02-12 15:42:16 +08006194 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006195 dev = bbio->stripes[dev_nr].dev;
Mike Christie37226b22016-06-05 14:31:52 -05006196 if (!dev || !dev->bdev ||
Anand Jainebbede42017-12-04 12:54:52 +08006197 (bio_op(first_bio) == REQ_OP_WRITE &&
6198 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006199 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006200 continue;
6201 }
6202
David Sterba3aa8e072017-06-02 17:38:30 +02006203 if (dev_nr < total_devs - 1)
David Sterba8b6c1d52017-06-02 17:48:13 +02006204 bio = btrfs_bio_clone(first_bio);
David Sterba3aa8e072017-06-02 17:38:30 +02006205 else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006206 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006207
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006208 submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical,
6209 dev_nr, async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006210 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006211 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006212 return BLK_STS_OK;
Chris Mason0b86a832008-03-24 15:01:56 -04006213}
6214
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006215struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006216 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006217{
Yan Zheng2b820322008-11-17 21:11:30 -05006218 struct btrfs_device *device;
6219 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006220
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006221 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006222 while (cur_devices) {
6223 if (!fsid ||
Anand Jain44880fd2017-07-29 17:50:09 +08006224 !memcmp(cur_devices->fsid, fsid, BTRFS_FSID_SIZE)) {
David Sterba35c70102017-06-15 19:51:51 +02006225 device = find_device(cur_devices, devid, uuid);
Yan Zheng2b820322008-11-17 21:11:30 -05006226 if (device)
6227 return device;
6228 }
6229 cur_devices = cur_devices->seed;
6230 }
6231 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006232}
6233
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006234static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006235 u64 devid, u8 *dev_uuid)
6236{
6237 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006238
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006239 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6240 if (IS_ERR(device))
Anand Jainadfb69a2017-10-11 12:46:18 +08006241 return device;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006242
6243 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006244 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006245 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006246
Anand Jaine6e674b2017-12-04 12:54:54 +08006247 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Chris Masoncd02dca2010-12-13 14:56:23 -05006248 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006249
Chris Masondfe25022008-05-13 13:46:40 -04006250 return device;
6251}
6252
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006253/**
6254 * btrfs_alloc_device - allocate struct btrfs_device
6255 * @fs_info: used only for generating a new devid, can be NULL if
6256 * devid is provided (i.e. @devid != NULL).
6257 * @devid: a pointer to devid for this device. If NULL a new devid
6258 * is generated.
6259 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6260 * is generated.
6261 *
6262 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
David Sterba48dae9c2017-10-30 18:10:25 +01006263 * on error. Returned struct is not linked onto any lists and must be
David Sterbaa425f9d2018-03-20 15:47:33 +01006264 * destroyed with btrfs_free_device.
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006265 */
6266struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6267 const u64 *devid,
6268 const u8 *uuid)
6269{
6270 struct btrfs_device *dev;
6271 u64 tmp;
6272
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306273 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006274 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006275
6276 dev = __alloc_device();
6277 if (IS_ERR(dev))
6278 return dev;
6279
6280 if (devid)
6281 tmp = *devid;
6282 else {
6283 int ret;
6284
6285 ret = find_next_devid(fs_info, &tmp);
6286 if (ret) {
David Sterbaa425f9d2018-03-20 15:47:33 +01006287 btrfs_free_device(dev);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006288 return ERR_PTR(ret);
6289 }
6290 }
6291 dev->devid = tmp;
6292
6293 if (uuid)
6294 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6295 else
6296 generate_random_uuid(dev->uuid);
6297
Liu Bo9e0af232014-08-15 23:36:53 +08006298 btrfs_init_work(&dev->work, btrfs_submit_helper,
6299 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006300
6301 return dev;
6302}
6303
Liu Boe06cd3d2016-06-03 12:05:15 -07006304/* Return -EIO if any error, otherwise return 0. */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006305static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006306 struct extent_buffer *leaf,
6307 struct btrfs_chunk *chunk, u64 logical)
6308{
6309 u64 length;
6310 u64 stripe_len;
6311 u16 num_stripes;
6312 u16 sub_stripes;
6313 u64 type;
Gu Jinxiang315409b2018-07-04 18:16:39 +08006314 u64 features;
6315 bool mixed = false;
Liu Boe06cd3d2016-06-03 12:05:15 -07006316
6317 length = btrfs_chunk_length(leaf, chunk);
6318 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6319 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6320 sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
6321 type = btrfs_chunk_type(leaf, chunk);
6322
6323 if (!num_stripes) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006324 btrfs_err(fs_info, "invalid chunk num_stripes: %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006325 num_stripes);
6326 return -EIO;
6327 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006328 if (!IS_ALIGNED(logical, fs_info->sectorsize)) {
6329 btrfs_err(fs_info, "invalid chunk logical %llu", logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006330 return -EIO;
6331 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006332 if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) {
6333 btrfs_err(fs_info, "invalid chunk sectorsize %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006334 btrfs_chunk_sector_size(leaf, chunk));
6335 return -EIO;
6336 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006337 if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) {
6338 btrfs_err(fs_info, "invalid chunk length %llu", length);
Liu Boe06cd3d2016-06-03 12:05:15 -07006339 return -EIO;
6340 }
6341 if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006342 btrfs_err(fs_info, "invalid chunk stripe length: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006343 stripe_len);
6344 return -EIO;
6345 }
6346 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6347 type) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006348 btrfs_err(fs_info, "unrecognized chunk type: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006349 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6350 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6351 btrfs_chunk_type(leaf, chunk));
6352 return -EIO;
6353 }
Gu Jinxiang315409b2018-07-04 18:16:39 +08006354
6355 if ((type & BTRFS_BLOCK_GROUP_TYPE_MASK) == 0) {
6356 btrfs_err(fs_info, "missing chunk type flag: 0x%llx", type);
6357 return -EIO;
6358 }
6359
6360 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) &&
6361 (type & (BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA))) {
6362 btrfs_err(fs_info,
6363 "system chunk with data or metadata type: 0x%llx", type);
6364 return -EIO;
6365 }
6366
6367 features = btrfs_super_incompat_flags(fs_info->super_copy);
6368 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
6369 mixed = true;
6370
6371 if (!mixed) {
6372 if ((type & BTRFS_BLOCK_GROUP_METADATA) &&
6373 (type & BTRFS_BLOCK_GROUP_DATA)) {
6374 btrfs_err(fs_info,
6375 "mixed chunk type in non-mixed mode: 0x%llx", type);
6376 return -EIO;
6377 }
6378 }
6379
Liu Boe06cd3d2016-06-03 12:05:15 -07006380 if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) ||
6381 (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) ||
6382 (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) ||
6383 (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) ||
6384 (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) ||
6385 ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 &&
6386 num_stripes != 1)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006387 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006388 "invalid num_stripes:sub_stripes %u:%u for profile %llu",
6389 num_stripes, sub_stripes,
6390 type & BTRFS_BLOCK_GROUP_PROFILE_MASK);
6391 return -EIO;
6392 }
6393
6394 return 0;
6395}
6396
Anand Jain5a2b8e62017-10-09 11:07:45 +08006397static void btrfs_report_missing_device(struct btrfs_fs_info *fs_info,
Anand Jain2b902df2017-10-09 11:07:46 +08006398 u64 devid, u8 *uuid, bool error)
Anand Jain5a2b8e62017-10-09 11:07:45 +08006399{
Anand Jain2b902df2017-10-09 11:07:46 +08006400 if (error)
6401 btrfs_err_rl(fs_info, "devid %llu uuid %pU is missing",
6402 devid, uuid);
6403 else
6404 btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing",
6405 devid, uuid);
Anand Jain5a2b8e62017-10-09 11:07:45 +08006406}
6407
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006408static int read_one_chunk(struct btrfs_fs_info *fs_info, struct btrfs_key *key,
Chris Mason0b86a832008-03-24 15:01:56 -04006409 struct extent_buffer *leaf,
6410 struct btrfs_chunk *chunk)
6411{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006412 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04006413 struct map_lookup *map;
6414 struct extent_map *em;
6415 u64 logical;
6416 u64 length;
6417 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006418 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006419 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006420 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006421 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006422
Chris Masone17cade2008-04-15 15:41:47 -04006423 logical = key->offset;
6424 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006425 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
Liu Boe06cd3d2016-06-03 12:05:15 -07006426
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006427 ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006428 if (ret)
6429 return ret;
Chris Masona061fc82008-05-07 11:43:44 -04006430
Chris Mason890871b2009-09-02 16:24:52 -04006431 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006432 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006433 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006434
6435 /* already mapped? */
6436 if (em && em->start <= logical && em->start + em->len > logical) {
6437 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006438 return 0;
6439 } else if (em) {
6440 free_extent_map(em);
6441 }
Chris Mason0b86a832008-03-24 15:01:56 -04006442
David Sterba172ddd62011-04-21 00:48:27 +02006443 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006444 if (!em)
6445 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006446 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006447 if (!map) {
6448 free_extent_map(em);
6449 return -ENOMEM;
6450 }
6451
Wang Shilong298a8f92014-06-19 10:42:52 +08006452 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006453 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006454 em->start = logical;
6455 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006456 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006457 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006458 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006459
Chris Mason593060d2008-03-25 16:50:33 -04006460 map->num_stripes = num_stripes;
6461 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6462 map->io_align = btrfs_chunk_io_align(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006463 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6464 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006465 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006466 for (i = 0; i < num_stripes; i++) {
6467 map->stripes[i].physical =
6468 btrfs_stripe_offset_nr(leaf, chunk, i);
6469 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006470 read_extent_buffer(leaf, uuid, (unsigned long)
6471 btrfs_stripe_dev_uuid_nr(chunk, i),
6472 BTRFS_UUID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006473 map->stripes[i].dev = btrfs_find_device(fs_info, devid,
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006474 uuid, NULL);
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006475 if (!map->stripes[i].dev &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006476 !btrfs_test_opt(fs_info, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006477 free_extent_map(em);
Anand Jain2b902df2017-10-09 11:07:46 +08006478 btrfs_report_missing_device(fs_info, devid, uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006479 return -ENOENT;
Chris Mason593060d2008-03-25 16:50:33 -04006480 }
Chris Masondfe25022008-05-13 13:46:40 -04006481 if (!map->stripes[i].dev) {
6482 map->stripes[i].dev =
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006483 add_missing_dev(fs_info->fs_devices, devid,
6484 uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08006485 if (IS_ERR(map->stripes[i].dev)) {
Chris Masondfe25022008-05-13 13:46:40 -04006486 free_extent_map(em);
Anand Jainadfb69a2017-10-11 12:46:18 +08006487 btrfs_err(fs_info,
6488 "failed to init missing dev %llu: %ld",
6489 devid, PTR_ERR(map->stripes[i].dev));
6490 return PTR_ERR(map->stripes[i].dev);
Chris Masondfe25022008-05-13 13:46:40 -04006491 }
Anand Jain2b902df2017-10-09 11:07:46 +08006492 btrfs_report_missing_device(fs_info, devid, uuid, false);
Chris Masondfe25022008-05-13 13:46:40 -04006493 }
Anand Jaine12c9622017-12-04 12:54:53 +08006494 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
6495 &(map->stripes[i].dev->dev_state));
6496
Chris Mason0b86a832008-03-24 15:01:56 -04006497 }
6498
Chris Mason890871b2009-09-02 16:24:52 -04006499 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006500 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006501 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006502 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006503 free_extent_map(em);
6504
6505 return 0;
6506}
6507
Jeff Mahoney143bede2012-03-01 14:56:26 +01006508static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006509 struct btrfs_dev_item *dev_item,
6510 struct btrfs_device *device)
6511{
6512 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006513
6514 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006515 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6516 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006517 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006518 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006519 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006520 device->type = btrfs_device_type(leaf, dev_item);
6521 device->io_align = btrfs_device_io_align(leaf, dev_item);
6522 device->io_width = btrfs_device_io_width(leaf, dev_item);
6523 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006524 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Anand Jain401e29c2017-12-04 12:54:55 +08006525 clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state);
Chris Mason0b86a832008-03-24 15:01:56 -04006526
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006527 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006528 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006529}
6530
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006531static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info,
Miao Xie5f375832014-09-03 21:35:46 +08006532 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006533{
6534 struct btrfs_fs_devices *fs_devices;
6535 int ret;
6536
David Sterbaa32bf9a2018-03-16 02:21:22 +01006537 lockdep_assert_held(&uuid_mutex);
David Sterba2dfeca92017-06-14 02:48:07 +02006538 ASSERT(fsid);
Yan Zheng2b820322008-11-17 21:11:30 -05006539
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006540 fs_devices = fs_info->fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05006541 while (fs_devices) {
Anand Jain44880fd2017-07-29 17:50:09 +08006542 if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE))
Miao Xie5f375832014-09-03 21:35:46 +08006543 return fs_devices;
6544
Yan Zheng2b820322008-11-17 21:11:30 -05006545 fs_devices = fs_devices->seed;
6546 }
6547
6548 fs_devices = find_fsid(fsid);
6549 if (!fs_devices) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006550 if (!btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08006551 return ERR_PTR(-ENOENT);
6552
6553 fs_devices = alloc_fs_devices(fsid);
6554 if (IS_ERR(fs_devices))
6555 return fs_devices;
6556
6557 fs_devices->seeding = 1;
6558 fs_devices->opened = 1;
6559 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006560 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006561
6562 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006563 if (IS_ERR(fs_devices))
6564 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006565
Anand Jain897fb572018-04-12 10:29:28 +08006566 ret = open_fs_devices(fs_devices, FMODE_READ, fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006567 if (ret) {
6568 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006569 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006570 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006571 }
Yan Zheng2b820322008-11-17 21:11:30 -05006572
6573 if (!fs_devices->seeding) {
Anand Jain0226e0e2018-04-12 10:29:27 +08006574 close_fs_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006575 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006576 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006577 goto out;
6578 }
6579
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006580 fs_devices->seed = fs_info->fs_devices->seed;
6581 fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006582out:
Miao Xie5f375832014-09-03 21:35:46 +08006583 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006584}
6585
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006586static int read_one_dev(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04006587 struct extent_buffer *leaf,
6588 struct btrfs_dev_item *dev_item)
6589{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006590 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006591 struct btrfs_device *device;
6592 u64 devid;
6593 int ret;
Anand Jain44880fd2017-07-29 17:50:09 +08006594 u8 fs_uuid[BTRFS_FSID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006595 u8 dev_uuid[BTRFS_UUID_SIZE];
6596
Chris Mason0b86a832008-03-24 15:01:56 -04006597 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006598 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006599 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006600 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08006601 BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05006602
Anand Jain44880fd2017-07-29 17:50:09 +08006603 if (memcmp(fs_uuid, fs_info->fsid, BTRFS_FSID_SIZE)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006604 fs_devices = open_seed_devices(fs_info, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006605 if (IS_ERR(fs_devices))
6606 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006607 }
6608
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006609 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006610 if (!device) {
Qu Wenruoc5502452017-03-09 09:34:42 +08006611 if (!btrfs_test_opt(fs_info, DEGRADED)) {
Anand Jain2b902df2017-10-09 11:07:46 +08006612 btrfs_report_missing_device(fs_info, devid,
6613 dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006614 return -ENOENT;
Qu Wenruoc5502452017-03-09 09:34:42 +08006615 }
Yan Zheng2b820322008-11-17 21:11:30 -05006616
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006617 device = add_missing_dev(fs_devices, devid, dev_uuid);
Anand Jainadfb69a2017-10-11 12:46:18 +08006618 if (IS_ERR(device)) {
6619 btrfs_err(fs_info,
6620 "failed to add missing dev %llu: %ld",
6621 devid, PTR_ERR(device));
6622 return PTR_ERR(device);
6623 }
Anand Jain2b902df2017-10-09 11:07:46 +08006624 btrfs_report_missing_device(fs_info, devid, dev_uuid, false);
Miao Xie5f375832014-09-03 21:35:46 +08006625 } else {
Qu Wenruoc5502452017-03-09 09:34:42 +08006626 if (!device->bdev) {
Anand Jain2b902df2017-10-09 11:07:46 +08006627 if (!btrfs_test_opt(fs_info, DEGRADED)) {
6628 btrfs_report_missing_device(fs_info,
6629 devid, dev_uuid, true);
Anand Jain45dbdbc2017-10-09 11:07:44 +08006630 return -ENOENT;
Anand Jain2b902df2017-10-09 11:07:46 +08006631 }
6632 btrfs_report_missing_device(fs_info, devid,
6633 dev_uuid, false);
Qu Wenruoc5502452017-03-09 09:34:42 +08006634 }
Miao Xie5f375832014-09-03 21:35:46 +08006635
Anand Jaine6e674b2017-12-04 12:54:54 +08006636 if (!device->bdev &&
6637 !test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006638 /*
6639 * this happens when a device that was properly setup
6640 * in the device info lists suddenly goes bad.
6641 * device->bdev is NULL, and so we have to set
6642 * device->missing to one here
6643 */
Miao Xie5f375832014-09-03 21:35:46 +08006644 device->fs_devices->missing_devices++;
Anand Jaine6e674b2017-12-04 12:54:54 +08006645 set_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state);
Yan Zheng2b820322008-11-17 21:11:30 -05006646 }
Miao Xie5f375832014-09-03 21:35:46 +08006647
6648 /* Move the device to its own fs_devices */
6649 if (device->fs_devices != fs_devices) {
Anand Jaine6e674b2017-12-04 12:54:54 +08006650 ASSERT(test_bit(BTRFS_DEV_STATE_MISSING,
6651 &device->dev_state));
Miao Xie5f375832014-09-03 21:35:46 +08006652
6653 list_move(&device->dev_list, &fs_devices->devices);
6654 device->fs_devices->num_devices--;
6655 fs_devices->num_devices++;
6656
6657 device->fs_devices->missing_devices--;
6658 fs_devices->missing_devices++;
6659
6660 device->fs_devices = fs_devices;
6661 }
Yan Zheng2b820322008-11-17 21:11:30 -05006662 }
6663
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006664 if (device->fs_devices != fs_info->fs_devices) {
Anand Jainebbede42017-12-04 12:54:52 +08006665 BUG_ON(test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state));
Yan Zheng2b820322008-11-17 21:11:30 -05006666 if (device->generation !=
6667 btrfs_device_generation(leaf, dev_item))
6668 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006669 }
Chris Mason0b86a832008-03-24 15:01:56 -04006670
6671 fill_device_from_item(leaf, dev_item, device);
Anand Jaine12c9622017-12-04 12:54:53 +08006672 set_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state);
Anand Jainebbede42017-12-04 12:54:52 +08006673 if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state) &&
Anand Jain401e29c2017-12-04 12:54:55 +08006674 !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Yan Zheng2b820322008-11-17 21:11:30 -05006675 device->fs_devices->total_rw_bytes += device->total_bytes;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03006676 atomic64_add(device->total_bytes - device->bytes_used,
6677 &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04006678 }
Chris Mason0b86a832008-03-24 15:01:56 -04006679 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006680 return ret;
6681}
6682
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006683int btrfs_read_sys_array(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006684{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006685 struct btrfs_root *root = fs_info->tree_root;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006686 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006687 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006688 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006689 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006690 u8 *array_ptr;
6691 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006692 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006693 u32 num_stripes;
6694 u32 array_size;
6695 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006696 u32 cur_offset;
Liu Boe06cd3d2016-06-03 12:05:15 -07006697 u64 type;
Chris Mason84eed902008-04-25 09:04:37 -04006698 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006699
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006700 ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize);
David Sterbaa83fffb2014-06-15 02:39:54 +02006701 /*
6702 * This will create extent buffer of nodesize, superblock size is
6703 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6704 * overallocate but we can keep it as-is, only the first page is used.
6705 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006706 sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET);
Liu Boc871b0f2016-06-06 12:01:23 -07006707 if (IS_ERR(sb))
6708 return PTR_ERR(sb);
David Sterba4db8c522015-12-03 13:06:46 +01006709 set_extent_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006710 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006711 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006712 * The sb extent buffer is artificial and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01006713 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02006714 * pages up-to-date when the page is larger: extent does not cover the
6715 * whole page and consequently check_page_uptodate does not find all
6716 * the page's extents up-to-date (the hole beyond sb),
6717 * write_extent_buffer then triggers a WARN_ON.
6718 *
6719 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6720 * but sb spans only this function. Add an explicit SetPageUptodate call
6721 * to silence the warning eg. on PowerPC 64.
6722 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006723 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006724 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006725
Chris Masona061fc82008-05-07 11:43:44 -04006726 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006727 array_size = btrfs_super_sys_array_size(super_copy);
6728
David Sterba1ffb22c2014-10-31 19:02:42 +01006729 array_ptr = super_copy->sys_chunk_array;
6730 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6731 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006732
David Sterba1ffb22c2014-10-31 19:02:42 +01006733 while (cur_offset < array_size) {
6734 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006735 len = sizeof(*disk_key);
6736 if (cur_offset + len > array_size)
6737 goto out_short_read;
6738
Chris Mason0b86a832008-03-24 15:01:56 -04006739 btrfs_disk_key_to_cpu(&key, disk_key);
6740
David Sterba1ffb22c2014-10-31 19:02:42 +01006741 array_ptr += len;
6742 sb_array_offset += len;
6743 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006744
Chris Mason0d81ba52008-03-24 15:02:07 -04006745 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006746 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006747 /*
6748 * At least one btrfs_chunk with one stripe must be
6749 * present, exact stripe count check comes afterwards
6750 */
6751 len = btrfs_chunk_item_size(1);
6752 if (cur_offset + len > array_size)
6753 goto out_short_read;
6754
6755 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006756 if (!num_stripes) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006757 btrfs_err(fs_info,
6758 "invalid number of stripes %u in sys_array at offset %u",
David Sterbaf5cdedd2015-11-30 17:27:06 +01006759 num_stripes, cur_offset);
6760 ret = -EIO;
6761 break;
6762 }
6763
Liu Boe06cd3d2016-06-03 12:05:15 -07006764 type = btrfs_chunk_type(sb, chunk);
6765 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006766 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006767 "invalid chunk type %llu in sys_array at offset %u",
6768 type, cur_offset);
6769 ret = -EIO;
6770 break;
6771 }
6772
David Sterbae3540ea2014-11-05 15:24:51 +01006773 len = btrfs_chunk_item_size(num_stripes);
6774 if (cur_offset + len > array_size)
6775 goto out_short_read;
6776
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006777 ret = read_one_chunk(fs_info, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006778 if (ret)
6779 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006780 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006781 btrfs_err(fs_info,
6782 "unexpected item type %u in sys_array at offset %u",
6783 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006784 ret = -EIO;
6785 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006786 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006787 array_ptr += len;
6788 sb_array_offset += len;
6789 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006790 }
Liu Bod8651772016-06-03 17:41:42 -07006791 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006792 free_extent_buffer_stale(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006793 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006794
6795out_short_read:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006796 btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u",
David Sterbae3540ea2014-11-05 15:24:51 +01006797 len, cur_offset);
Liu Bod8651772016-06-03 17:41:42 -07006798 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006799 free_extent_buffer_stale(sb);
David Sterbae3540ea2014-11-05 15:24:51 +01006800 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006801}
6802
Qu Wenruo21634a12017-03-09 09:34:36 +08006803/*
6804 * Check if all chunks in the fs are OK for read-write degraded mount
6805 *
Anand Jain6528b992017-12-18 17:08:59 +08006806 * If the @failing_dev is specified, it's accounted as missing.
6807 *
Qu Wenruo21634a12017-03-09 09:34:36 +08006808 * Return true if all chunks meet the minimal RW mount requirements.
6809 * Return false if any chunk doesn't meet the minimal RW mount requirements.
6810 */
Anand Jain6528b992017-12-18 17:08:59 +08006811bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info,
6812 struct btrfs_device *failing_dev)
Qu Wenruo21634a12017-03-09 09:34:36 +08006813{
6814 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
6815 struct extent_map *em;
6816 u64 next_start = 0;
6817 bool ret = true;
6818
6819 read_lock(&map_tree->map_tree.lock);
6820 em = lookup_extent_mapping(&map_tree->map_tree, 0, (u64)-1);
6821 read_unlock(&map_tree->map_tree.lock);
6822 /* No chunk at all? Return false anyway */
6823 if (!em) {
6824 ret = false;
6825 goto out;
6826 }
6827 while (em) {
6828 struct map_lookup *map;
6829 int missing = 0;
6830 int max_tolerated;
6831 int i;
6832
6833 map = em->map_lookup;
6834 max_tolerated =
6835 btrfs_get_num_tolerated_disk_barrier_failures(
6836 map->type);
6837 for (i = 0; i < map->num_stripes; i++) {
6838 struct btrfs_device *dev = map->stripes[i].dev;
6839
Anand Jaine6e674b2017-12-04 12:54:54 +08006840 if (!dev || !dev->bdev ||
6841 test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state) ||
Qu Wenruo21634a12017-03-09 09:34:36 +08006842 dev->last_flush_error)
6843 missing++;
Anand Jain6528b992017-12-18 17:08:59 +08006844 else if (failing_dev && failing_dev == dev)
6845 missing++;
Qu Wenruo21634a12017-03-09 09:34:36 +08006846 }
6847 if (missing > max_tolerated) {
Anand Jain6528b992017-12-18 17:08:59 +08006848 if (!failing_dev)
6849 btrfs_warn(fs_info,
Qu Wenruo21634a12017-03-09 09:34:36 +08006850 "chunk %llu missing %d devices, max tolerance is %d for writeable mount",
6851 em->start, missing, max_tolerated);
6852 free_extent_map(em);
6853 ret = false;
6854 goto out;
6855 }
6856 next_start = extent_map_end(em);
6857 free_extent_map(em);
6858
6859 read_lock(&map_tree->map_tree.lock);
6860 em = lookup_extent_mapping(&map_tree->map_tree, next_start,
6861 (u64)(-1) - next_start);
6862 read_unlock(&map_tree->map_tree.lock);
6863 }
6864out:
6865 return ret;
6866}
6867
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006868int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006869{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006870 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04006871 struct btrfs_path *path;
6872 struct extent_buffer *leaf;
6873 struct btrfs_key key;
6874 struct btrfs_key found_key;
6875 int ret;
6876 int slot;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006877 u64 total_dev = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006878
Chris Mason0b86a832008-03-24 15:01:56 -04006879 path = btrfs_alloc_path();
6880 if (!path)
6881 return -ENOMEM;
6882
Anand Jain3dd0f7a2018-04-12 10:29:32 +08006883 /*
6884 * uuid_mutex is needed only if we are mounting a sprout FS
6885 * otherwise we don't need it.
6886 */
Li Zefanb367e472011-12-07 11:38:24 +08006887 mutex_lock(&uuid_mutex);
David Sterba34441362016-10-04 19:34:27 +02006888 mutex_lock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006889
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006890 /*
6891 * Read all device items, and then all the chunk items. All
6892 * device items are found before any chunk item (their object id
6893 * is smaller than the lowest possible object id for a chunk
6894 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006895 */
6896 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6897 key.offset = 0;
6898 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006899 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006900 if (ret < 0)
6901 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006902 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006903 leaf = path->nodes[0];
6904 slot = path->slots[0];
6905 if (slot >= btrfs_header_nritems(leaf)) {
6906 ret = btrfs_next_leaf(root, path);
6907 if (ret == 0)
6908 continue;
6909 if (ret < 0)
6910 goto error;
6911 break;
6912 }
6913 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006914 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6915 struct btrfs_dev_item *dev_item;
6916 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006917 struct btrfs_dev_item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006918 ret = read_one_dev(fs_info, leaf, dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006919 if (ret)
6920 goto error;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006921 total_dev++;
Chris Mason0b86a832008-03-24 15:01:56 -04006922 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6923 struct btrfs_chunk *chunk;
6924 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006925 ret = read_one_chunk(fs_info, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006926 if (ret)
6927 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006928 }
6929 path->slots[0]++;
6930 }
Liu Bo99e3ecf2016-06-03 12:05:14 -07006931
6932 /*
6933 * After loading chunk tree, we've got all device information,
6934 * do another round of validation checks.
6935 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006936 if (total_dev != fs_info->fs_devices->total_devices) {
6937 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07006938 "super_num_devices %llu mismatch with num_devices %llu found here",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006939 btrfs_super_num_devices(fs_info->super_copy),
Liu Bo99e3ecf2016-06-03 12:05:14 -07006940 total_dev);
6941 ret = -EINVAL;
6942 goto error;
6943 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006944 if (btrfs_super_total_bytes(fs_info->super_copy) <
6945 fs_info->fs_devices->total_rw_bytes) {
6946 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07006947 "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006948 btrfs_super_total_bytes(fs_info->super_copy),
6949 fs_info->fs_devices->total_rw_bytes);
Liu Bo99e3ecf2016-06-03 12:05:14 -07006950 ret = -EINVAL;
6951 goto error;
6952 }
Chris Mason0b86a832008-03-24 15:01:56 -04006953 ret = 0;
6954error:
David Sterba34441362016-10-04 19:34:27 +02006955 mutex_unlock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006956 mutex_unlock(&uuid_mutex);
6957
Yan Zheng2b820322008-11-17 21:11:30 -05006958 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006959 return ret;
6960}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006961
Miao Xiecb517ea2013-05-15 07:48:19 +00006962void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6963{
6964 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6965 struct btrfs_device *device;
6966
Liu Bo29cc83f2014-05-11 23:14:59 +08006967 while (fs_devices) {
6968 mutex_lock(&fs_devices->device_list_mutex);
6969 list_for_each_entry(device, &fs_devices->devices, dev_list)
Jeff Mahoneyfb456252016-06-22 18:54:56 -04006970 device->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08006971 mutex_unlock(&fs_devices->device_list_mutex);
6972
6973 fs_devices = fs_devices->seed;
6974 }
Miao Xiecb517ea2013-05-15 07:48:19 +00006975}
6976
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006977static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6978{
6979 int i;
6980
6981 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6982 btrfs_dev_stat_reset(dev, i);
6983}
6984
6985int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6986{
6987 struct btrfs_key key;
6988 struct btrfs_key found_key;
6989 struct btrfs_root *dev_root = fs_info->dev_root;
6990 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6991 struct extent_buffer *eb;
6992 int slot;
6993 int ret = 0;
6994 struct btrfs_device *device;
6995 struct btrfs_path *path = NULL;
6996 int i;
6997
6998 path = btrfs_alloc_path();
6999 if (!path) {
7000 ret = -ENOMEM;
7001 goto out;
7002 }
7003
7004 mutex_lock(&fs_devices->device_list_mutex);
7005 list_for_each_entry(device, &fs_devices->devices, dev_list) {
7006 int item_size;
7007 struct btrfs_dev_stats_item *ptr;
7008
David Sterba242e2952016-01-25 17:51:31 +01007009 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7010 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007011 key.offset = device->devid;
7012 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
7013 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007014 __btrfs_reset_dev_stats(device);
7015 device->dev_stats_valid = 1;
7016 btrfs_release_path(path);
7017 continue;
7018 }
7019 slot = path->slots[0];
7020 eb = path->nodes[0];
7021 btrfs_item_key_to_cpu(eb, &found_key, slot);
7022 item_size = btrfs_item_size_nr(eb, slot);
7023
7024 ptr = btrfs_item_ptr(eb, slot,
7025 struct btrfs_dev_stats_item);
7026
7027 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7028 if (item_size >= (1 + i) * sizeof(__le64))
7029 btrfs_dev_stat_set(device, i,
7030 btrfs_dev_stats_value(eb, ptr, i));
7031 else
7032 btrfs_dev_stat_reset(device, i);
7033 }
7034
7035 device->dev_stats_valid = 1;
7036 btrfs_dev_stat_print_on_load(device);
7037 btrfs_release_path(path);
7038 }
7039 mutex_unlock(&fs_devices->device_list_mutex);
7040
7041out:
7042 btrfs_free_path(path);
7043 return ret < 0 ? ret : 0;
7044}
7045
7046static int update_dev_stat_item(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007047 struct btrfs_fs_info *fs_info,
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007048 struct btrfs_device *device)
7049{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007050 struct btrfs_root *dev_root = fs_info->dev_root;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007051 struct btrfs_path *path;
7052 struct btrfs_key key;
7053 struct extent_buffer *eb;
7054 struct btrfs_dev_stats_item *ptr;
7055 int ret;
7056 int i;
7057
David Sterba242e2952016-01-25 17:51:31 +01007058 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7059 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007060 key.offset = device->devid;
7061
7062 path = btrfs_alloc_path();
David Sterbafa252992017-02-15 09:35:01 +01007063 if (!path)
7064 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007065 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
7066 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007067 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007068 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04007069 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007070 goto out;
7071 }
7072
7073 if (ret == 0 &&
7074 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
7075 /* need to delete old one and insert a new one */
7076 ret = btrfs_del_item(trans, dev_root, path);
7077 if (ret != 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007078 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007079 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04007080 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007081 goto out;
7082 }
7083 ret = 1;
7084 }
7085
7086 if (ret == 1) {
7087 /* need to insert a new item */
7088 btrfs_release_path(path);
7089 ret = btrfs_insert_empty_item(trans, dev_root, path,
7090 &key, sizeof(*ptr));
7091 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007092 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007093 "insert dev_stats item for device %s failed %d",
7094 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007095 goto out;
7096 }
7097 }
7098
7099 eb = path->nodes[0];
7100 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
7101 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7102 btrfs_set_dev_stats_value(eb, ptr, i,
7103 btrfs_dev_stat_read(device, i));
7104 btrfs_mark_buffer_dirty(eb);
7105
7106out:
7107 btrfs_free_path(path);
7108 return ret;
7109}
7110
7111/*
7112 * called from commit_transaction. Writes all changed device stats to disk.
7113 */
7114int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
7115 struct btrfs_fs_info *fs_info)
7116{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007117 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7118 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08007119 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007120 int ret = 0;
7121
7122 mutex_lock(&fs_devices->device_list_mutex);
7123 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Nikolay Borisov9deae962017-10-24 13:47:37 +03007124 stats_cnt = atomic_read(&device->dev_stats_ccnt);
7125 if (!device->dev_stats_valid || stats_cnt == 0)
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007126 continue;
7127
Nikolay Borisov9deae962017-10-24 13:47:37 +03007128
7129 /*
7130 * There is a LOAD-LOAD control dependency between the value of
7131 * dev_stats_ccnt and updating the on-disk values which requires
7132 * reading the in-memory counters. Such control dependencies
7133 * require explicit read memory barriers.
7134 *
7135 * This memory barriers pairs with smp_mb__before_atomic in
7136 * btrfs_dev_stat_inc/btrfs_dev_stat_set and with the full
7137 * barrier implied by atomic_xchg in
7138 * btrfs_dev_stats_read_and_reset
7139 */
7140 smp_rmb();
7141
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007142 ret = update_dev_stat_item(trans, fs_info, device);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007143 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08007144 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007145 }
7146 mutex_unlock(&fs_devices->device_list_mutex);
7147
7148 return ret;
7149}
7150
Stefan Behrens442a4f62012-05-25 16:06:08 +02007151void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
7152{
7153 btrfs_dev_stat_inc(dev, index);
7154 btrfs_dev_stat_print_on_error(dev);
7155}
7156
Eric Sandeen48a3b632013-04-25 20:41:01 +00007157static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02007158{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007159 if (!dev->dev_stats_valid)
7160 return;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007161 btrfs_err_rl_in_rcu(dev->fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02007162 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007163 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02007164 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7165 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7166 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05007167 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7168 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02007169}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007170
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007171static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
7172{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06007173 int i;
7174
7175 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7176 if (btrfs_dev_stat_read(dev, i) != 0)
7177 break;
7178 if (i == BTRFS_DEV_STAT_VALUES_MAX)
7179 return; /* all values == 0, suppress message */
7180
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007181 btrfs_info_in_rcu(dev->fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007182 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007183 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007184 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7185 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7186 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
7187 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7188 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
7189}
7190
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007191int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06007192 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007193{
7194 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007195 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007196 int i;
7197
7198 mutex_lock(&fs_devices->device_list_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007199 dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007200 mutex_unlock(&fs_devices->device_list_mutex);
7201
7202 if (!dev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007203 btrfs_warn(fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007204 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007205 } else if (!dev->dev_stats_valid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007206 btrfs_warn(fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007207 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06007208 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007209 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7210 if (stats->nr_items > i)
7211 stats->values[i] =
7212 btrfs_dev_stat_read_and_reset(dev, i);
7213 else
7214 btrfs_dev_stat_reset(dev, i);
7215 }
7216 } else {
7217 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7218 if (stats->nr_items > i)
7219 stats->values[i] = btrfs_dev_stat_read(dev, i);
7220 }
7221 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
7222 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
7223 return 0;
7224}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007225
David Sterbada353f62017-02-14 17:55:53 +01007226void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007227{
7228 struct buffer_head *bh;
7229 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08007230 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007231
Anand Jain12b1c262015-08-14 18:32:59 +08007232 if (!bdev)
7233 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007234
Anand Jain12b1c262015-08-14 18:32:59 +08007235 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
7236 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007237
Anand Jain12b1c262015-08-14 18:32:59 +08007238 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
7239 continue;
7240
7241 disk_super = (struct btrfs_super_block *)bh->b_data;
7242
7243 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
7244 set_buffer_dirty(bh);
7245 sync_dirty_buffer(bh);
7246 brelse(bh);
7247 }
7248
7249 /* Notify udev that device has changed */
7250 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
7251
7252 /* Update ctime/mtime for device path for libblkid */
7253 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007254}
Miao Xie935e5cc2014-09-03 21:35:33 +08007255
7256/*
7257 * Update the size of all devices, which is used for writing out the
7258 * super blocks.
7259 */
7260void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
7261{
7262 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7263 struct btrfs_device *curr, *next;
7264
7265 if (list_empty(&fs_devices->resized_devices))
7266 return;
7267
7268 mutex_lock(&fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02007269 mutex_lock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007270 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
7271 resized_list) {
7272 list_del_init(&curr->resized_list);
7273 curr->commit_total_bytes = curr->disk_total_bytes;
7274 }
David Sterba34441362016-10-04 19:34:27 +02007275 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007276 mutex_unlock(&fs_devices->device_list_mutex);
7277}
Miao Xiece7213c2014-09-03 21:35:34 +08007278
7279/* Must be invoked during the transaction commit */
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007280void btrfs_update_commit_device_bytes_used(struct btrfs_transaction *trans)
Miao Xiece7213c2014-09-03 21:35:34 +08007281{
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007282 struct btrfs_fs_info *fs_info = trans->fs_info;
Miao Xiece7213c2014-09-03 21:35:34 +08007283 struct extent_map *em;
7284 struct map_lookup *map;
7285 struct btrfs_device *dev;
7286 int i;
7287
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007288 if (list_empty(&trans->pending_chunks))
Miao Xiece7213c2014-09-03 21:35:34 +08007289 return;
7290
7291 /* In order to kick the device replace finish process */
David Sterba34441362016-10-04 19:34:27 +02007292 mutex_lock(&fs_info->chunk_mutex);
Nikolay Borisove9b919b2018-02-07 17:55:49 +02007293 list_for_each_entry(em, &trans->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04007294 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08007295
7296 for (i = 0; i < map->num_stripes; i++) {
7297 dev = map->stripes[i].dev;
7298 dev->commit_bytes_used = dev->bytes_used;
7299 }
7300 }
David Sterba34441362016-10-04 19:34:27 +02007301 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007302}
Anand Jain5a13f432015-03-10 06:38:31 +08007303
7304void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
7305{
7306 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7307 while (fs_devices) {
7308 fs_devices->fs_info = fs_info;
7309 fs_devices = fs_devices->seed;
7310 }
7311}
7312
7313void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
7314{
7315 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7316 while (fs_devices) {
7317 fs_devices->fs_info = NULL;
7318 fs_devices = fs_devices->seed;
7319 }
7320}
David Sterba46df06b2018-07-13 20:46:30 +02007321
7322/*
7323 * Multiplicity factor for simple profiles: DUP, RAID1-like and RAID10.
7324 */
7325int btrfs_bg_type_to_factor(u64 flags)
7326{
7327 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
7328 BTRFS_BLOCK_GROUP_RAID10))
7329 return 2;
7330 return 1;
7331}