blob: 017b67daa3bbf375919019e5c089b94f97d3e2a5 [file] [log] [blame]
Chris Mason0b86a832008-03-24 15:01:56 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18#include <linux/sched.h>
19#include <linux/bio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason8a4b83c2008-03-24 15:02:07 -040021#include <linux/buffer_head.h>
Chris Masonf2d8d742008-04-21 10:03:05 -040022#include <linux/blkdev.h>
Chris Masonb765ead2009-04-03 10:27:10 -040023#include <linux/iocontext.h>
Ben Hutchings6f88a442010-12-29 14:55:03 +000024#include <linux/capability.h>
Stefan Behrens442a4f62012-05-25 16:06:08 +020025#include <linux/ratelimit.h>
Ilya Dryomov59641012012-01-16 22:04:48 +020026#include <linux/kthread.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050027#include <linux/raid/pq.h>
Stefan Behrens803b2f52013-08-15 17:11:21 +020028#include <linux/semaphore.h>
Andy Shevchenko8da4b8c2016-05-20 17:01:00 -070029#include <linux/uuid.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050030#include <asm/div64.h>
Chris Mason0b86a832008-03-24 15:01:56 -040031#include "ctree.h"
32#include "extent_map.h"
33#include "disk-io.h"
34#include "transaction.h"
35#include "print-tree.h"
36#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050037#include "raid56.h"
Chris Mason8b712842008-06-11 16:50:36 -040038#include "async-thread.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010039#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040040#include "rcu-string.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060041#include "math.h"
Stefan Behrens8dabb742012-11-06 13:15:27 +010042#include "dev-replace.h"
Anand Jain99994cd2014-06-03 11:36:00 +080043#include "sysfs.h"
Chris Mason0b86a832008-03-24 15:01:56 -040044
Zhao Leiaf902042015-09-15 21:08:06 +080045const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
46 [BTRFS_RAID_RAID10] = {
47 .sub_stripes = 2,
48 .dev_stripes = 1,
49 .devs_max = 0, /* 0 == as many as possible */
50 .devs_min = 4,
Zhao Lei8789f4f2015-09-15 21:08:07 +080051 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080052 .devs_increment = 2,
53 .ncopies = 2,
54 },
55 [BTRFS_RAID_RAID1] = {
56 .sub_stripes = 1,
57 .dev_stripes = 1,
58 .devs_max = 2,
59 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080060 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080061 .devs_increment = 2,
62 .ncopies = 2,
63 },
64 [BTRFS_RAID_DUP] = {
65 .sub_stripes = 1,
66 .dev_stripes = 2,
67 .devs_max = 1,
68 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +080069 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080070 .devs_increment = 1,
71 .ncopies = 2,
72 },
73 [BTRFS_RAID_RAID0] = {
74 .sub_stripes = 1,
75 .dev_stripes = 1,
76 .devs_max = 0,
77 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080078 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080079 .devs_increment = 1,
80 .ncopies = 1,
81 },
82 [BTRFS_RAID_SINGLE] = {
83 .sub_stripes = 1,
84 .dev_stripes = 1,
85 .devs_max = 1,
86 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +080087 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080088 .devs_increment = 1,
89 .ncopies = 1,
90 },
91 [BTRFS_RAID_RAID5] = {
92 .sub_stripes = 1,
93 .dev_stripes = 1,
94 .devs_max = 0,
95 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080096 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080097 .devs_increment = 1,
98 .ncopies = 2,
99 },
100 [BTRFS_RAID_RAID6] = {
101 .sub_stripes = 1,
102 .dev_stripes = 1,
103 .devs_max = 0,
104 .devs_min = 3,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800105 .tolerated_failures = 2,
Zhao Leiaf902042015-09-15 21:08:06 +0800106 .devs_increment = 1,
107 .ncopies = 3,
108 },
109};
110
Colin Ian Kingfb75d852016-01-19 00:05:28 +0000111const u64 btrfs_raid_group[BTRFS_NR_RAID_TYPES] = {
Zhao Leiaf902042015-09-15 21:08:06 +0800112 [BTRFS_RAID_RAID10] = BTRFS_BLOCK_GROUP_RAID10,
113 [BTRFS_RAID_RAID1] = BTRFS_BLOCK_GROUP_RAID1,
114 [BTRFS_RAID_DUP] = BTRFS_BLOCK_GROUP_DUP,
115 [BTRFS_RAID_RAID0] = BTRFS_BLOCK_GROUP_RAID0,
116 [BTRFS_RAID_SINGLE] = 0,
117 [BTRFS_RAID_RAID5] = BTRFS_BLOCK_GROUP_RAID5,
118 [BTRFS_RAID_RAID6] = BTRFS_BLOCK_GROUP_RAID6,
119};
120
David Sterba621292b2016-02-15 16:28:03 +0100121/*
122 * Table to convert BTRFS_RAID_* to the error code if minimum number of devices
123 * condition is not met. Zero means there's no corresponding
124 * BTRFS_ERROR_DEV_*_NOT_MET value.
125 */
126const int btrfs_raid_mindev_error[BTRFS_NR_RAID_TYPES] = {
127 [BTRFS_RAID_RAID10] = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET,
128 [BTRFS_RAID_RAID1] = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET,
129 [BTRFS_RAID_DUP] = 0,
130 [BTRFS_RAID_RAID0] = 0,
131 [BTRFS_RAID_SINGLE] = 0,
132 [BTRFS_RAID_RAID5] = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET,
133 [BTRFS_RAID_RAID6] = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET,
134};
135
Yan Zheng2b820322008-11-17 21:11:30 -0500136static int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +0100137 struct btrfs_fs_info *fs_info);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400138static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200139static void __btrfs_reset_dev_stats(struct btrfs_device *dev);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000140static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200141static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
Liu Bo5ab56092017-03-14 13:33:57 -0700142static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
143 enum btrfs_map_op op,
144 u64 logical, u64 *length,
145 struct btrfs_bio **bbio_ret,
146 int mirror_num, int need_raid_map);
Yan Zheng2b820322008-11-17 21:11:30 -0500147
Miao Xie67a2c452014-09-03 21:35:43 +0800148DEFINE_MUTEX(uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400149static LIST_HEAD(fs_uuids);
Anand Jainc73eccf2015-03-10 06:38:30 +0800150struct list_head *btrfs_get_fs_uuids(void)
151{
152 return &fs_uuids;
153}
Chris Mason8a4b83c2008-03-24 15:02:07 -0400154
Ilya Dryomov2208a372013-08-12 14:33:03 +0300155static struct btrfs_fs_devices *__alloc_fs_devices(void)
156{
157 struct btrfs_fs_devices *fs_devs;
158
David Sterba78f2c9e2016-02-11 14:25:38 +0100159 fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300160 if (!fs_devs)
161 return ERR_PTR(-ENOMEM);
162
163 mutex_init(&fs_devs->device_list_mutex);
164
165 INIT_LIST_HEAD(&fs_devs->devices);
Miao Xie935e5cc2014-09-03 21:35:33 +0800166 INIT_LIST_HEAD(&fs_devs->resized_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300167 INIT_LIST_HEAD(&fs_devs->alloc_list);
168 INIT_LIST_HEAD(&fs_devs->list);
169
170 return fs_devs;
171}
172
173/**
174 * alloc_fs_devices - allocate struct btrfs_fs_devices
175 * @fsid: a pointer to UUID for this FS. If NULL a new UUID is
176 * generated.
177 *
178 * Return: a pointer to a new &struct btrfs_fs_devices on success;
179 * ERR_PTR() on error. Returned struct is not linked onto any lists and
180 * can be destroyed with kfree() right away.
181 */
182static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
183{
184 struct btrfs_fs_devices *fs_devs;
185
186 fs_devs = __alloc_fs_devices();
187 if (IS_ERR(fs_devs))
188 return fs_devs;
189
190 if (fsid)
191 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
192 else
193 generate_random_uuid(fs_devs->fsid);
194
195 return fs_devs;
196}
197
Yan Zhenge4404d62008-12-12 10:03:26 -0500198static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
199{
200 struct btrfs_device *device;
201 WARN_ON(fs_devices->opened);
202 while (!list_empty(&fs_devices->devices)) {
203 device = list_entry(fs_devices->devices.next,
204 struct btrfs_device, dev_list);
205 list_del(&device->dev_list);
Josef Bacik606686e2012-06-04 14:03:51 -0400206 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500207 kfree(device);
208 }
209 kfree(fs_devices);
210}
211
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000212static void btrfs_kobject_uevent(struct block_device *bdev,
213 enum kobject_action action)
214{
215 int ret;
216
217 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
218 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -0500219 pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n",
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000220 action,
221 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
222 &disk_to_dev(bdev->bd_disk)->kobj);
223}
224
Jeff Mahoney143bede2012-03-01 14:56:26 +0100225void btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400226{
227 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400228
Yan Zheng2b820322008-11-17 21:11:30 -0500229 while (!list_empty(&fs_uuids)) {
230 fs_devices = list_entry(fs_uuids.next,
231 struct btrfs_fs_devices, list);
232 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500233 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400234 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400235}
236
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300237static struct btrfs_device *__alloc_device(void)
238{
239 struct btrfs_device *dev;
240
David Sterba78f2c9e2016-02-11 14:25:38 +0100241 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300242 if (!dev)
243 return ERR_PTR(-ENOMEM);
244
245 INIT_LIST_HEAD(&dev->dev_list);
246 INIT_LIST_HEAD(&dev->dev_alloc_list);
Miao Xie935e5cc2014-09-03 21:35:33 +0800247 INIT_LIST_HEAD(&dev->resized_list);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300248
249 spin_lock_init(&dev->io_lock);
250
251 spin_lock_init(&dev->reada_lock);
252 atomic_set(&dev->reada_in_flight, 0);
Miao Xieaddc3fa2014-07-24 11:37:11 +0800253 atomic_set(&dev->dev_stats_ccnt, 0);
Sebastian Andrzej Siewior546bed62016-01-15 14:37:15 +0100254 btrfs_device_data_ordered_init(dev);
Chris Mason9bcaaea2017-05-04 16:08:08 -0700255 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Mel Gormand0164ad2015-11-06 16:28:21 -0800256 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300257
258 return dev;
259}
260
Chris Masona1b32a52008-09-05 16:09:51 -0400261static noinline struct btrfs_device *__find_device(struct list_head *head,
262 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400263{
264 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400265
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500266 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400267 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400268 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400269 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400270 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400271 }
272 return NULL;
273}
274
Chris Masona1b32a52008-09-05 16:09:51 -0400275static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400276{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400277 struct btrfs_fs_devices *fs_devices;
278
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500279 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400280 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
281 return fs_devices;
282 }
283 return NULL;
284}
285
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100286static int
287btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
288 int flush, struct block_device **bdev,
289 struct buffer_head **bh)
290{
291 int ret;
292
293 *bdev = blkdev_get_by_path(device_path, flags, holder);
294
295 if (IS_ERR(*bdev)) {
296 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100297 goto error;
298 }
299
300 if (flush)
301 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
302 ret = set_blocksize(*bdev, 4096);
303 if (ret) {
304 blkdev_put(*bdev, flags);
305 goto error;
306 }
307 invalidate_bdev(*bdev);
308 *bh = btrfs_read_dev_super(*bdev);
Anand Jain92fc03f2015-08-14 18:32:51 +0800309 if (IS_ERR(*bh)) {
310 ret = PTR_ERR(*bh);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100311 blkdev_put(*bdev, flags);
312 goto error;
313 }
314
315 return 0;
316
317error:
318 *bdev = NULL;
319 *bh = NULL;
320 return ret;
321}
322
Chris Masonffbd5172009-04-20 15:50:09 -0400323static void requeue_list(struct btrfs_pending_bios *pending_bios,
324 struct bio *head, struct bio *tail)
325{
326
327 struct bio *old_head;
328
329 old_head = pending_bios->head;
330 pending_bios->head = head;
331 if (pending_bios->tail)
332 tail->bi_next = old_head;
333 else
334 pending_bios->tail = tail;
335}
336
Chris Mason8b712842008-06-11 16:50:36 -0400337/*
338 * we try to collect pending bios for a device so we don't get a large
339 * number of procs sending bios down to the same device. This greatly
340 * improves the schedulers ability to collect and merge the bios.
341 *
342 * But, it also turns into a long list of bios to process and that is sure
343 * to eventually make the worker thread block. The solution here is to
344 * make some progress and then put this work struct back at the end of
345 * the list if the block device is congested. This way, multiple devices
346 * can make progress from a single worker thread.
347 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100348static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400349{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400350 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -0400351 struct bio *pending;
352 struct backing_dev_info *bdi;
Chris Masonffbd5172009-04-20 15:50:09 -0400353 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400354 struct bio *tail;
355 struct bio *cur;
356 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400357 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400358 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400359 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400360 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400361 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000362 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400363 struct blk_plug plug;
364
365 /*
366 * this function runs all the bios we've collected for
367 * a particular device. We don't want to wander off to
368 * another device without first sending all of these down.
369 * So, setup a plug here and finish it off before we return
370 */
371 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400372
Jan Karaefa7c9f2017-02-02 15:56:53 +0100373 bdi = device->bdev->bd_bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400374 limit = btrfs_async_submit_limit(fs_info);
375 limit = limit * 2 / 3;
376
Chris Mason8b712842008-06-11 16:50:36 -0400377loop:
378 spin_lock(&device->io_lock);
379
Chris Masona6837052009-02-04 09:19:41 -0500380loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400381 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400382
Chris Mason8b712842008-06-11 16:50:36 -0400383 /* take all the bios off the list at once and process them
384 * later on (without the lock held). But, remember the
385 * tail and other pointers so the bios can be properly reinserted
386 * into the list if we hit congestion
387 */
Chris Masond84275c2009-06-09 15:39:08 -0400388 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400389 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400390 force_reg = 1;
391 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400392 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400393 force_reg = 0;
394 }
Chris Masonffbd5172009-04-20 15:50:09 -0400395
396 pending = pending_bios->head;
397 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400398 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400399
400 /*
401 * if pending was null this time around, no bios need processing
402 * at all and we can stop. Otherwise it'll loop back up again
403 * and do an additional check so no bios are missed.
404 *
405 * device->running_pending is used to synchronize with the
406 * schedule_bio code.
407 */
Chris Masonffbd5172009-04-20 15:50:09 -0400408 if (device->pending_sync_bios.head == NULL &&
409 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400410 again = 0;
411 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400412 } else {
413 again = 1;
414 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400415 }
Chris Masonffbd5172009-04-20 15:50:09 -0400416
417 pending_bios->head = NULL;
418 pending_bios->tail = NULL;
419
Chris Mason8b712842008-06-11 16:50:36 -0400420 spin_unlock(&device->io_lock);
421
Chris Masond3977122009-01-05 21:25:51 -0500422 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400423
424 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400425 /* we want to work on both lists, but do more bios on the
426 * sync list than the regular list
427 */
428 if ((num_run > 32 &&
429 pending_bios != &device->pending_sync_bios &&
430 device->pending_sync_bios.head) ||
431 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
432 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400433 spin_lock(&device->io_lock);
434 requeue_list(pending_bios, pending, tail);
435 goto loop_lock;
436 }
437
Chris Mason8b712842008-06-11 16:50:36 -0400438 cur = pending;
439 pending = pending->bi_next;
440 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400441
David Sterbaee863952015-02-16 19:41:40 +0100442 /*
443 * atomic_dec_return implies a barrier for waitqueue_active
444 */
Josef Bacik66657b32012-08-01 15:36:24 -0400445 if (atomic_dec_return(&fs_info->nr_async_bios) < limit &&
Chris Masonb64a2852008-08-20 13:39:41 -0400446 waitqueue_active(&fs_info->async_submit_wait))
447 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400448
Jens Axboedac56212015-04-17 16:23:59 -0600449 BUG_ON(atomic_read(&cur->__bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400450
Chris Mason2ab1ba62011-08-04 14:28:36 -0400451 /*
452 * if we're doing the sync list, record that our
453 * plug has some sync requests on it
454 *
455 * If we're doing the regular list and there are
456 * sync requests sitting around, unplug before
457 * we add more
458 */
459 if (pending_bios == &device->pending_sync_bios) {
460 sync_pending = 1;
461 } else if (sync_pending) {
462 blk_finish_plug(&plug);
463 blk_start_plug(&plug);
464 sync_pending = 0;
465 }
466
Mike Christie4e49ea42016-06-05 14:31:41 -0500467 btrfsic_submit_bio(cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400468 num_run++;
469 batch_run++;
David Sterba853d8ec2015-01-08 15:15:19 +0100470
471 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400472
473 /*
474 * we made progress, there is more work to do and the bdi
475 * is now congested. Back off and let other work structs
476 * run instead
477 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400478 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500479 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400480 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400481
Chris Masonb765ead2009-04-03 10:27:10 -0400482 ioc = current->io_context;
483
484 /*
485 * the main goal here is that we don't want to
486 * block if we're going to be able to submit
487 * more requests without blocking.
488 *
489 * This code does two great things, it pokes into
490 * the elevator code from a filesystem _and_
491 * it makes assumptions about how batching works.
492 */
493 if (ioc && ioc->nr_batch_requests > 0 &&
494 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
495 (last_waited == 0 ||
496 ioc->last_waited == last_waited)) {
497 /*
498 * we want to go through our batch of
499 * requests and stop. So, we copy out
500 * the ioc->last_waited time and test
501 * against it before looping
502 */
503 last_waited = ioc->last_waited;
David Sterba853d8ec2015-01-08 15:15:19 +0100504 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400505 continue;
506 }
Chris Mason8b712842008-06-11 16:50:36 -0400507 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400508 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500509 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400510
511 spin_unlock(&device->io_lock);
Qu Wenruoa8c93d42014-02-28 10:46:08 +0800512 btrfs_queue_work(fs_info->submit_workers,
513 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -0400514 goto done;
515 }
Chris Masond85c8a6f2011-12-15 15:38:41 -0500516 /* unplug every 64 requests just for good measure */
517 if (batch_run % 64 == 0) {
518 blk_finish_plug(&plug);
519 blk_start_plug(&plug);
520 sync_pending = 0;
521 }
Chris Mason8b712842008-06-11 16:50:36 -0400522 }
Chris Masonffbd5172009-04-20 15:50:09 -0400523
Chris Mason51684082010-03-10 15:33:32 -0500524 cond_resched();
525 if (again)
526 goto loop;
527
528 spin_lock(&device->io_lock);
529 if (device->pending_bios.head || device->pending_sync_bios.head)
530 goto loop_lock;
531 spin_unlock(&device->io_lock);
532
Chris Mason8b712842008-06-11 16:50:36 -0400533done:
Chris Mason211588a2011-04-19 20:12:40 -0400534 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400535}
536
Christoph Hellwigb2950862008-12-02 09:54:17 -0500537static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400538{
539 struct btrfs_device *device;
540
541 device = container_of(work, struct btrfs_device, work);
542 run_scheduled_bios(device);
543}
544
Anand Jain4fde46f2015-06-17 21:10:48 +0800545
546void btrfs_free_stale_device(struct btrfs_device *cur_dev)
547{
548 struct btrfs_fs_devices *fs_devs;
549 struct btrfs_device *dev;
550
551 if (!cur_dev->name)
552 return;
553
554 list_for_each_entry(fs_devs, &fs_uuids, list) {
555 int del = 1;
556
557 if (fs_devs->opened)
558 continue;
559 if (fs_devs->seeding)
560 continue;
561
562 list_for_each_entry(dev, &fs_devs->devices, dev_list) {
563
564 if (dev == cur_dev)
565 continue;
566 if (!dev->name)
567 continue;
568
569 /*
570 * Todo: This won't be enough. What if the same device
571 * comes back (with new uuid and) with its mapper path?
572 * But for now, this does help as mostly an admin will
573 * either use mapper or non mapper path throughout.
574 */
575 rcu_read_lock();
576 del = strcmp(rcu_str_deref(dev->name),
577 rcu_str_deref(cur_dev->name));
578 rcu_read_unlock();
579 if (!del)
580 break;
581 }
582
583 if (!del) {
584 /* delete the stale device */
585 if (fs_devs->num_devices == 1) {
586 btrfs_sysfs_remove_fsid(fs_devs);
587 list_del(&fs_devs->list);
588 free_fs_devices(fs_devs);
589 } else {
590 fs_devs->num_devices--;
591 list_del(&dev->dev_list);
592 rcu_string_free(dev->name);
593 kfree(dev);
594 }
595 break;
596 }
597 }
598}
599
David Sterba60999ca2014-03-26 18:26:36 +0100600/*
601 * Add new device to list of registered devices
602 *
603 * Returns:
604 * 1 - first time device is seen
605 * 0 - device already known
606 * < 0 - error
607 */
Chris Masona1b32a52008-09-05 16:09:51 -0400608static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400609 struct btrfs_super_block *disk_super,
610 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
611{
612 struct btrfs_device *device;
613 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400614 struct rcu_string *name;
David Sterba60999ca2014-03-26 18:26:36 +0100615 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400616 u64 found_transid = btrfs_super_generation(disk_super);
617
618 fs_devices = find_fsid(disk_super->fsid);
619 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300620 fs_devices = alloc_fs_devices(disk_super->fsid);
621 if (IS_ERR(fs_devices))
622 return PTR_ERR(fs_devices);
623
Chris Mason8a4b83c2008-03-24 15:02:07 -0400624 list_add(&fs_devices->list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300625
Chris Mason8a4b83c2008-03-24 15:02:07 -0400626 device = NULL;
627 } else {
Chris Masona4437552008-04-18 10:29:38 -0400628 device = __find_device(&fs_devices->devices, devid,
629 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400630 }
Miao Xie443f24f2014-07-24 11:37:15 +0800631
Chris Mason8a4b83c2008-03-24 15:02:07 -0400632 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500633 if (fs_devices->opened)
634 return -EBUSY;
635
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300636 device = btrfs_alloc_device(NULL, &devid,
637 disk_super->dev_item.uuid);
638 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400639 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300640 return PTR_ERR(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400641 }
Josef Bacik606686e2012-06-04 14:03:51 -0400642
643 name = rcu_string_strdup(path, GFP_NOFS);
644 if (!name) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400645 kfree(device);
646 return -ENOMEM;
647 }
Josef Bacik606686e2012-06-04 14:03:51 -0400648 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200649
Chris Masone5e9a522009-06-10 15:17:02 -0400650 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000651 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100652 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400653 mutex_unlock(&fs_devices->device_list_mutex);
654
David Sterba60999ca2014-03-26 18:26:36 +0100655 ret = 1;
Yan Zheng2b820322008-11-17 21:11:30 -0500656 device->fs_devices = fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400657 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800658 /*
659 * When FS is already mounted.
660 * 1. If you are here and if the device->name is NULL that
661 * means this device was missing at time of FS mount.
662 * 2. If you are here and if the device->name is different
663 * from 'path' that means either
664 * a. The same device disappeared and reappeared with
665 * different name. or
666 * b. The missing-disk-which-was-replaced, has
667 * reappeared now.
668 *
669 * We must allow 1 and 2a above. But 2b would be a spurious
670 * and unintentional.
671 *
672 * Further in case of 1 and 2a above, the disk at 'path'
673 * would have missed some transaction when it was away and
674 * in case of 2a the stale bdev has to be updated as well.
675 * 2b must not be allowed at all time.
676 */
677
678 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700679 * For now, we do allow update to btrfs_fs_device through the
680 * btrfs dev scan cli after FS has been mounted. We're still
681 * tracking a problem where systems fail mount by subvolume id
682 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800683 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700684 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800685 /*
686 * That is if the FS is _not_ mounted and if you
687 * are here, that means there is more than one
688 * disk with same uuid and devid.We keep the one
689 * with larger generation number or the last-in if
690 * generation are equal.
691 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700692 return -EEXIST;
Anand Jain77bdae42014-07-03 18:22:06 +0800693 }
Anand Jainb96de002014-07-03 18:22:05 +0800694
Josef Bacik606686e2012-06-04 14:03:51 -0400695 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000696 if (!name)
697 return -ENOMEM;
Josef Bacik606686e2012-06-04 14:03:51 -0400698 rcu_string_free(device->name);
699 rcu_assign_pointer(device->name, name);
Chris Masoncd02dca2010-12-13 14:56:23 -0500700 if (device->missing) {
701 fs_devices->missing_devices--;
702 device->missing = 0;
703 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400704 }
705
Anand Jain77bdae42014-07-03 18:22:06 +0800706 /*
707 * Unmount does not free the btrfs_device struct but would zero
708 * generation along with most of the other members. So just update
709 * it back. We need it to pick the disk with largest generation
710 * (as above).
711 */
712 if (!fs_devices->opened)
713 device->generation = found_transid;
714
Anand Jain4fde46f2015-06-17 21:10:48 +0800715 /*
716 * if there is new btrfs on an already registered device,
717 * then remove the stale device entry.
718 */
Anand Jain02feae32016-02-13 10:01:40 +0800719 if (ret > 0)
720 btrfs_free_stale_device(device);
Anand Jain4fde46f2015-06-17 21:10:48 +0800721
Chris Mason8a4b83c2008-03-24 15:02:07 -0400722 *fs_devices_ret = fs_devices;
David Sterba60999ca2014-03-26 18:26:36 +0100723
724 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400725}
726
Yan Zhenge4404d62008-12-12 10:03:26 -0500727static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
728{
729 struct btrfs_fs_devices *fs_devices;
730 struct btrfs_device *device;
731 struct btrfs_device *orig_dev;
732
Ilya Dryomov2208a372013-08-12 14:33:03 +0300733 fs_devices = alloc_fs_devices(orig->fsid);
734 if (IS_ERR(fs_devices))
735 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500736
Miao Xieadbbb862014-09-03 21:35:42 +0800737 mutex_lock(&orig->device_list_mutex);
Josef Bacik02db0842012-06-21 16:03:58 -0400738 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500739
Xiao Guangrong46224702011-04-20 10:08:47 +0000740 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500741 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400742 struct rcu_string *name;
743
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300744 device = btrfs_alloc_device(NULL, &orig_dev->devid,
745 orig_dev->uuid);
746 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500747 goto error;
748
Josef Bacik606686e2012-06-04 14:03:51 -0400749 /*
750 * This is ok to do without rcu read locked because we hold the
751 * uuid mutex so nothing we touch in here is going to disappear.
752 */
Anand Jaine755f782014-06-30 17:12:47 +0800753 if (orig_dev->name) {
David Sterba78f2c9e2016-02-11 14:25:38 +0100754 name = rcu_string_strdup(orig_dev->name->str,
755 GFP_KERNEL);
Anand Jaine755f782014-06-30 17:12:47 +0800756 if (!name) {
757 kfree(device);
758 goto error;
759 }
760 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400761 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500762
Yan Zhenge4404d62008-12-12 10:03:26 -0500763 list_add(&device->dev_list, &fs_devices->devices);
764 device->fs_devices = fs_devices;
765 fs_devices->num_devices++;
766 }
Miao Xieadbbb862014-09-03 21:35:42 +0800767 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500768 return fs_devices;
769error:
Miao Xieadbbb862014-09-03 21:35:42 +0800770 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500771 free_fs_devices(fs_devices);
772 return ERR_PTR(-ENOMEM);
773}
774
Eric Sandeen9eaed212014-08-01 18:12:35 -0500775void btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400776{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500777 struct btrfs_device *device, *next;
Miao Xie443f24f2014-07-24 11:37:15 +0800778 struct btrfs_device *latest_dev = NULL;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500779
Chris Masondfe25022008-05-13 13:46:40 -0400780 mutex_lock(&uuid_mutex);
781again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000782 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500783 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500784 if (device->in_fs_metadata) {
Stefan Behrens63a212a2012-11-05 18:29:28 +0100785 if (!device->is_tgtdev_for_dev_replace &&
Miao Xie443f24f2014-07-24 11:37:15 +0800786 (!latest_dev ||
787 device->generation > latest_dev->generation)) {
788 latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500789 }
Yan Zheng2b820322008-11-17 21:11:30 -0500790 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500791 }
Yan Zheng2b820322008-11-17 21:11:30 -0500792
Stefan Behrens8dabb742012-11-06 13:15:27 +0100793 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
794 /*
795 * In the first step, keep the device which has
796 * the correct fsid and the devid that is used
797 * for the dev_replace procedure.
798 * In the second step, the dev_replace state is
799 * read from the device tree and it is known
800 * whether the procedure is really active or
801 * not, which means whether this device is
802 * used or whether it should be removed.
803 */
804 if (step == 0 || device->is_tgtdev_for_dev_replace) {
805 continue;
806 }
807 }
Yan Zheng2b820322008-11-17 21:11:30 -0500808 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100809 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500810 device->bdev = NULL;
811 fs_devices->open_devices--;
812 }
813 if (device->writeable) {
814 list_del_init(&device->dev_alloc_list);
815 device->writeable = 0;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100816 if (!device->is_tgtdev_for_dev_replace)
817 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500818 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500819 list_del_init(&device->dev_list);
820 fs_devices->num_devices--;
Josef Bacik606686e2012-06-04 14:03:51 -0400821 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500822 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400823 }
Yan Zheng2b820322008-11-17 21:11:30 -0500824
825 if (fs_devices->seed) {
826 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500827 goto again;
828 }
829
Miao Xie443f24f2014-07-24 11:37:15 +0800830 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500831
Chris Masondfe25022008-05-13 13:46:40 -0400832 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400833}
Chris Masona0af4692008-05-13 16:03:06 -0400834
Xiao Guangrong1f781602011-04-20 10:09:16 +0000835static void __free_device(struct work_struct *work)
836{
837 struct btrfs_device *device;
838
839 device = container_of(work, struct btrfs_device, rcu_work);
Josef Bacik606686e2012-06-04 14:03:51 -0400840 rcu_string_free(device->name);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000841 kfree(device);
842}
843
844static void free_device(struct rcu_head *head)
845{
846 struct btrfs_device *device;
847
848 device = container_of(head, struct btrfs_device, rcu);
849
850 INIT_WORK(&device->rcu_work, __free_device);
851 schedule_work(&device->rcu_work);
852}
853
Anand Jain14238812016-07-22 06:04:53 +0800854static void btrfs_close_bdev(struct btrfs_device *device)
855{
856 if (device->bdev && device->writeable) {
857 sync_blockdev(device->bdev);
858 invalidate_bdev(device->bdev);
859 }
860
861 if (device->bdev)
862 blkdev_put(device->bdev, device->mode);
863}
864
Anand Jain0ccd0522016-09-22 12:56:13 +0800865static void btrfs_prepare_close_one_device(struct btrfs_device *device)
Anand Jainf4483412016-06-14 18:55:25 +0800866{
867 struct btrfs_fs_devices *fs_devices = device->fs_devices;
868 struct btrfs_device *new_device;
869 struct rcu_string *name;
870
871 if (device->bdev)
872 fs_devices->open_devices--;
873
874 if (device->writeable &&
875 device->devid != BTRFS_DEV_REPLACE_DEVID) {
876 list_del_init(&device->dev_alloc_list);
877 fs_devices->rw_devices--;
878 }
879
880 if (device->missing)
881 fs_devices->missing_devices--;
882
883 new_device = btrfs_alloc_device(NULL, &device->devid,
884 device->uuid);
885 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
886
887 /* Safe because we are under uuid_mutex */
888 if (device->name) {
889 name = rcu_string_strdup(device->name->str, GFP_NOFS);
890 BUG_ON(!name); /* -ENOMEM */
891 rcu_assign_pointer(new_device->name, name);
892 }
893
894 list_replace_rcu(&device->dev_list, &new_device->dev_list);
895 new_device->fs_devices = device->fs_devices;
Anand Jainf4483412016-06-14 18:55:25 +0800896}
897
Yan Zheng2b820322008-11-17 21:11:30 -0500898static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400899{
Sasha Levin2037a092015-05-12 19:31:37 -0400900 struct btrfs_device *device, *tmp;
Anand Jain0ccd0522016-09-22 12:56:13 +0800901 struct list_head pending_put;
902
903 INIT_LIST_HEAD(&pending_put);
Yan Zhenge4404d62008-12-12 10:03:26 -0500904
Yan Zheng2b820322008-11-17 21:11:30 -0500905 if (--fs_devices->opened > 0)
906 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400907
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000908 mutex_lock(&fs_devices->device_list_mutex);
Sasha Levin2037a092015-05-12 19:31:37 -0400909 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
Anand Jain0ccd0522016-09-22 12:56:13 +0800910 btrfs_prepare_close_one_device(device);
911 list_add(&device->dev_list, &pending_put);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400912 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000913 mutex_unlock(&fs_devices->device_list_mutex);
914
Anand Jain0ccd0522016-09-22 12:56:13 +0800915 /*
916 * btrfs_show_devname() is using the device_list_mutex,
917 * sometimes call to blkdev_put() leads vfs calling
918 * into this func. So do put outside of device_list_mutex,
919 * as of now.
920 */
921 while (!list_empty(&pending_put)) {
922 device = list_first_entry(&pending_put,
923 struct btrfs_device, dev_list);
924 list_del(&device->dev_list);
925 btrfs_close_bdev(device);
926 call_rcu(&device->rcu, free_device);
927 }
928
Yan Zhenge4404d62008-12-12 10:03:26 -0500929 WARN_ON(fs_devices->open_devices);
930 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500931 fs_devices->opened = 0;
932 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500933
Chris Mason8a4b83c2008-03-24 15:02:07 -0400934 return 0;
935}
936
Yan Zheng2b820322008-11-17 21:11:30 -0500937int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
938{
Yan Zhenge4404d62008-12-12 10:03:26 -0500939 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500940 int ret;
941
942 mutex_lock(&uuid_mutex);
943 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500944 if (!fs_devices->opened) {
945 seed_devices = fs_devices->seed;
946 fs_devices->seed = NULL;
947 }
Yan Zheng2b820322008-11-17 21:11:30 -0500948 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500949
950 while (seed_devices) {
951 fs_devices = seed_devices;
952 seed_devices = fs_devices->seed;
953 __btrfs_close_devices(fs_devices);
954 free_fs_devices(fs_devices);
955 }
Eric Sandeenbc178622013-03-09 15:18:39 +0000956 /*
957 * Wait for rcu kworkers under __btrfs_close_devices
958 * to finish all blkdev_puts so device is really
959 * free when umount is done.
960 */
961 rcu_barrier();
Yan Zheng2b820322008-11-17 21:11:30 -0500962 return ret;
963}
964
Yan Zhenge4404d62008-12-12 10:03:26 -0500965static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
966 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400967{
Josef Bacikd5e20032011-08-04 14:52:27 +0000968 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400969 struct block_device *bdev;
970 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400971 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +0800972 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -0400973 struct buffer_head *bh;
974 struct btrfs_super_block *disk_super;
Chris Masona0af4692008-05-13 16:03:06 -0400975 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500976 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400977 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400978
Tejun Heod4d77622010-11-13 11:55:18 +0100979 flags |= FMODE_EXCL;
980
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500981 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400982 if (device->bdev)
983 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400984 if (!device->name)
985 continue;
986
Eric Sandeenf63e0cc2013-04-04 20:45:08 +0000987 /* Just open everything we can; ignore failures here */
988 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
989 &bdev, &bh))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100990 continue;
Chris Masona0af4692008-05-13 16:03:06 -0400991
992 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000993 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400994 if (devid != device->devid)
995 goto error_brelse;
996
Yan Zheng2b820322008-11-17 21:11:30 -0500997 if (memcmp(device->uuid, disk_super->dev_item.uuid,
998 BTRFS_UUID_SIZE))
999 goto error_brelse;
1000
1001 device->generation = btrfs_super_generation(disk_super);
Miao Xie443f24f2014-07-24 11:37:15 +08001002 if (!latest_dev ||
1003 device->generation > latest_dev->generation)
1004 latest_dev = device;
Chris Masona0af4692008-05-13 16:03:06 -04001005
Yan Zheng2b820322008-11-17 21:11:30 -05001006 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
1007 device->writeable = 0;
1008 } else {
1009 device->writeable = !bdev_read_only(bdev);
1010 seeding = 0;
1011 }
1012
Josef Bacikd5e20032011-08-04 14:52:27 +00001013 q = bdev_get_queue(bdev);
Miao Xie90180da2014-09-03 21:35:30 +08001014 if (blk_queue_discard(q))
Josef Bacikd5e20032011-08-04 14:52:27 +00001015 device->can_discard = 1;
Anand Jaine884f4f2017-04-04 18:40:19 +08001016 if (!blk_queue_nonrot(q))
1017 fs_devices->rotating = 1;
Josef Bacikd5e20032011-08-04 14:52:27 +00001018
Chris Mason8a4b83c2008-03-24 15:02:07 -04001019 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001020 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -05001021 device->mode = flags;
1022
Chris Masona0af4692008-05-13 16:03:06 -04001023 fs_devices->open_devices++;
Ilya Dryomov55e50e42013-09-01 18:56:44 +03001024 if (device->writeable &&
1025 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Yan Zheng2b820322008-11-17 21:11:30 -05001026 fs_devices->rw_devices++;
1027 list_add(&device->dev_alloc_list,
1028 &fs_devices->alloc_list);
1029 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +00001030 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -04001031 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001032
Chris Masona0af4692008-05-13 16:03:06 -04001033error_brelse:
1034 brelse(bh);
Tejun Heod4d77622010-11-13 11:55:18 +01001035 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -04001036 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001037 }
Chris Masona0af4692008-05-13 16:03:06 -04001038 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +03001039 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -04001040 goto out;
1041 }
Yan Zheng2b820322008-11-17 21:11:30 -05001042 fs_devices->seeding = seeding;
1043 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +08001044 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -05001045 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -04001046out:
Yan Zheng2b820322008-11-17 21:11:30 -05001047 return ret;
1048}
1049
1050int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -05001051 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -05001052{
1053 int ret;
1054
1055 mutex_lock(&uuid_mutex);
1056 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001057 fs_devices->opened++;
1058 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001059 } else {
Chris Mason15916de2008-11-19 21:17:22 -05001060 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -05001061 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001062 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001063 return ret;
1064}
1065
Anand Jain6cf86a002016-02-13 10:01:29 +08001066void btrfs_release_disk_super(struct page *page)
1067{
1068 kunmap(page);
1069 put_page(page);
1070}
1071
1072int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr,
1073 struct page **page, struct btrfs_super_block **disk_super)
1074{
1075 void *p;
1076 pgoff_t index;
1077
1078 /* make sure our super fits in the device */
1079 if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode))
1080 return 1;
1081
1082 /* make sure our super fits in the page */
1083 if (sizeof(**disk_super) > PAGE_SIZE)
1084 return 1;
1085
1086 /* make sure our super doesn't straddle pages on disk */
1087 index = bytenr >> PAGE_SHIFT;
1088 if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index)
1089 return 1;
1090
1091 /* pull in the page with our super */
1092 *page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1093 index, GFP_KERNEL);
1094
1095 if (IS_ERR_OR_NULL(*page))
1096 return 1;
1097
1098 p = kmap(*page);
1099
1100 /* align our pointer to the offset of the super block */
1101 *disk_super = p + (bytenr & ~PAGE_MASK);
1102
1103 if (btrfs_super_bytenr(*disk_super) != bytenr ||
1104 btrfs_super_magic(*disk_super) != BTRFS_MAGIC) {
1105 btrfs_release_disk_super(*page);
1106 return 1;
1107 }
1108
1109 if ((*disk_super)->label[0] &&
1110 (*disk_super)->label[BTRFS_LABEL_SIZE - 1])
1111 (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0';
1112
1113 return 0;
1114}
1115
David Sterba6f60cbd2013-02-15 11:31:02 -07001116/*
1117 * Look for a btrfs signature on a device. This may be called out of the mount path
1118 * and we are not allowed to call set_blocksize during the scan. The superblock
1119 * is read via pagecache
1120 */
Christoph Hellwig97288f22008-12-02 06:36:09 -05001121int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001122 struct btrfs_fs_devices **fs_devices_ret)
1123{
1124 struct btrfs_super_block *disk_super;
1125 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -07001126 struct page *page;
David Sterba6f60cbd2013-02-15 11:31:02 -07001127 int ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001128 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -04001129 u64 transid;
Josef Bacik02db0842012-06-21 16:03:58 -04001130 u64 total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001131 u64 bytenr;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001132
David Sterba6f60cbd2013-02-15 11:31:02 -07001133 /*
1134 * we would like to check all the supers, but that would make
1135 * a btrfs mount succeed after a mkfs from a different FS.
1136 * So, we need to add a special mount option to scan for
1137 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1138 */
1139 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +01001140 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -05001141 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -07001142
1143 bdev = blkdev_get_by_path(path, flags, holder);
David Sterba6f60cbd2013-02-15 11:31:02 -07001144 if (IS_ERR(bdev)) {
1145 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001146 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -07001147 }
1148
Anand Jain6cf86a002016-02-13 10:01:29 +08001149 if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super))
David Sterba6f60cbd2013-02-15 11:31:02 -07001150 goto error_bdev_put;
1151
Xiao Guangronga3438322010-01-06 11:48:18 +00001152 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -04001153 transid = btrfs_super_generation(disk_super);
Josef Bacik02db0842012-06-21 16:03:58 -04001154 total_devices = btrfs_super_num_devices(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001155
Chris Mason8a4b83c2008-03-24 15:02:07 -04001156 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
David Sterba60999ca2014-03-26 18:26:36 +01001157 if (ret > 0) {
1158 if (disk_super->label[0]) {
Jeff Mahoney62e85572016-09-20 10:05:01 -04001159 pr_info("BTRFS: device label %s ", disk_super->label);
David Sterba60999ca2014-03-26 18:26:36 +01001160 } else {
Jeff Mahoney62e85572016-09-20 10:05:01 -04001161 pr_info("BTRFS: device fsid %pU ", disk_super->fsid);
David Sterba60999ca2014-03-26 18:26:36 +01001162 }
1163
Jeff Mahoney62e85572016-09-20 10:05:01 -04001164 pr_cont("devid %llu transid %llu %s\n", devid, transid, path);
David Sterba60999ca2014-03-26 18:26:36 +01001165 ret = 0;
1166 }
Josef Bacik02db0842012-06-21 16:03:58 -04001167 if (!ret && fs_devices_ret)
1168 (*fs_devices_ret)->total_devices = total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001169
Anand Jain6cf86a002016-02-13 10:01:29 +08001170 btrfs_release_disk_super(page);
David Sterba6f60cbd2013-02-15 11:31:02 -07001171
1172error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001173 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001174error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001175 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001176 return ret;
1177}
Chris Mason0b86a832008-03-24 15:01:56 -04001178
Miao Xie6d07bce2011-01-05 10:07:31 +00001179/* helper to account the used device space in the range */
1180int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
1181 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -04001182{
1183 struct btrfs_key key;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001184 struct btrfs_root *root = device->fs_info->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +00001185 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001186 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +00001187 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001188 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +00001189 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001190 struct extent_buffer *l;
1191
Miao Xie6d07bce2011-01-05 10:07:31 +00001192 *length = 0;
1193
Stefan Behrens63a212a2012-11-05 18:29:28 +01001194 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
Miao Xie6d07bce2011-01-05 10:07:31 +00001195 return 0;
1196
Yan Zheng2b820322008-11-17 21:11:30 -05001197 path = btrfs_alloc_path();
1198 if (!path)
1199 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01001200 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04001201
Chris Mason0b86a832008-03-24 15:01:56 -04001202 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001203 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001204 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +00001205
1206 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001207 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001208 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001209 if (ret > 0) {
1210 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1211 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001212 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001213 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001214
Chris Mason0b86a832008-03-24 15:01:56 -04001215 while (1) {
1216 l = path->nodes[0];
1217 slot = path->slots[0];
1218 if (slot >= btrfs_header_nritems(l)) {
1219 ret = btrfs_next_leaf(root, path);
1220 if (ret == 0)
1221 continue;
1222 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001223 goto out;
1224
1225 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001226 }
1227 btrfs_item_key_to_cpu(l, &key, slot);
1228
1229 if (key.objectid < device->devid)
1230 goto next;
1231
1232 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +00001233 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001234
David Sterba962a2982014-06-04 18:41:45 +02001235 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001236 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001237
Chris Mason0b86a832008-03-24 15:01:56 -04001238 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +00001239 extent_end = key.offset + btrfs_dev_extent_length(l,
1240 dev_extent);
1241 if (key.offset <= start && extent_end > end) {
1242 *length = end - start + 1;
1243 break;
1244 } else if (key.offset <= start && extent_end > start)
1245 *length += extent_end - start;
1246 else if (key.offset > start && extent_end <= end)
1247 *length += extent_end - key.offset;
1248 else if (key.offset > start && key.offset <= end) {
1249 *length += end - key.offset + 1;
1250 break;
1251 } else if (key.offset > end)
1252 break;
1253
1254next:
1255 path->slots[0]++;
1256 }
1257 ret = 0;
1258out:
1259 btrfs_free_path(path);
1260 return ret;
1261}
1262
Jeff Mahoney499f3772015-06-15 09:41:17 -04001263static int contains_pending_extent(struct btrfs_transaction *transaction,
Josef Bacik6df9a952013-06-27 13:22:46 -04001264 struct btrfs_device *device,
1265 u64 *start, u64 len)
1266{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001267 struct btrfs_fs_info *fs_info = device->fs_info;
Josef Bacik6df9a952013-06-27 13:22:46 -04001268 struct extent_map *em;
Jeff Mahoney499f3772015-06-15 09:41:17 -04001269 struct list_head *search_list = &fs_info->pinned_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001270 int ret = 0;
Forrest Liu1b984502015-02-09 17:30:47 +08001271 u64 physical_start = *start;
Josef Bacik6df9a952013-06-27 13:22:46 -04001272
Jeff Mahoney499f3772015-06-15 09:41:17 -04001273 if (transaction)
1274 search_list = &transaction->pending_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001275again:
1276 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001277 struct map_lookup *map;
1278 int i;
1279
Jeff Mahoney95617d62015-06-03 10:55:48 -04001280 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04001281 for (i = 0; i < map->num_stripes; i++) {
Filipe Mananac152b632015-05-14 10:46:03 +01001282 u64 end;
1283
Josef Bacik6df9a952013-06-27 13:22:46 -04001284 if (map->stripes[i].dev != device)
1285 continue;
Forrest Liu1b984502015-02-09 17:30:47 +08001286 if (map->stripes[i].physical >= physical_start + len ||
Josef Bacik6df9a952013-06-27 13:22:46 -04001287 map->stripes[i].physical + em->orig_block_len <=
Forrest Liu1b984502015-02-09 17:30:47 +08001288 physical_start)
Josef Bacik6df9a952013-06-27 13:22:46 -04001289 continue;
Filipe Mananac152b632015-05-14 10:46:03 +01001290 /*
1291 * Make sure that while processing the pinned list we do
1292 * not override our *start with a lower value, because
1293 * we can have pinned chunks that fall within this
1294 * device hole and that have lower physical addresses
1295 * than the pending chunks we processed before. If we
1296 * do not take this special care we can end up getting
1297 * 2 pending chunks that start at the same physical
1298 * device offsets because the end offset of a pinned
1299 * chunk can be equal to the start offset of some
1300 * pending chunk.
1301 */
1302 end = map->stripes[i].physical + em->orig_block_len;
1303 if (end > *start) {
1304 *start = end;
1305 ret = 1;
1306 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001307 }
1308 }
Jeff Mahoney499f3772015-06-15 09:41:17 -04001309 if (search_list != &fs_info->pinned_chunks) {
1310 search_list = &fs_info->pinned_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001311 goto again;
1312 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001313
1314 return ret;
1315}
1316
1317
Chris Mason0b86a832008-03-24 15:01:56 -04001318/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001319 * find_free_dev_extent_start - find free space in the specified device
1320 * @device: the device which we search the free space in
1321 * @num_bytes: the size of the free space that we need
1322 * @search_start: the position from which to begin the search
1323 * @start: store the start of the free space.
1324 * @len: the size of the free space. that we find, or the size
1325 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001326 *
Chris Mason0b86a832008-03-24 15:01:56 -04001327 * this uses a pretty simple search, the expectation is that it is
1328 * called very infrequently and that a given device has a small number
1329 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001330 *
1331 * @start is used to store the start of the free space if we find. But if we
1332 * don't find suitable free space, it will be used to store the start position
1333 * of the max free space.
1334 *
1335 * @len is used to store the size of the free space that we find.
1336 * But if we don't find suitable free space, it is used to store the size of
1337 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001338 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001339int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1340 struct btrfs_device *device, u64 num_bytes,
1341 u64 search_start, u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001342{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001343 struct btrfs_fs_info *fs_info = device->fs_info;
1344 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001345 struct btrfs_key key;
Miao Xie7bfc8372011-01-05 10:07:26 +00001346 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001347 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001348 u64 hole_size;
1349 u64 max_hole_start;
1350 u64 max_hole_size;
1351 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001352 u64 search_end = device->total_bytes;
1353 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001354 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001355 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001356 u64 min_search_start;
1357
1358 /*
1359 * We don't want to overwrite the superblock on the drive nor any area
1360 * used by the boot loader (grub for example), so we make sure to start
1361 * at an offset of at least 1MB.
1362 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001363 min_search_start = max(fs_info->alloc_start, 1024ull * 1024);
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001364 search_start = max(search_start, min_search_start);
Chris Mason0b86a832008-03-24 15:01:56 -04001365
Josef Bacik6df9a952013-06-27 13:22:46 -04001366 path = btrfs_alloc_path();
1367 if (!path)
1368 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001369
Miao Xie7bfc8372011-01-05 10:07:26 +00001370 max_hole_start = search_start;
1371 max_hole_size = 0;
1372
Zhao Leif2ab7612015-02-16 18:52:17 +08001373again:
Stefan Behrens63a212a2012-11-05 18:29:28 +01001374 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001375 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001376 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001377 }
1378
David Sterbae4058b52015-11-27 16:31:35 +01001379 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001380 path->search_commit_root = 1;
1381 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001382
Chris Mason0b86a832008-03-24 15:01:56 -04001383 key.objectid = device->devid;
1384 key.offset = search_start;
1385 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001386
Li Zefan125ccb02011-12-08 15:07:24 +08001387 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001388 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001389 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001390 if (ret > 0) {
1391 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1392 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001393 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001394 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001395
Chris Mason0b86a832008-03-24 15:01:56 -04001396 while (1) {
1397 l = path->nodes[0];
1398 slot = path->slots[0];
1399 if (slot >= btrfs_header_nritems(l)) {
1400 ret = btrfs_next_leaf(root, path);
1401 if (ret == 0)
1402 continue;
1403 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001404 goto out;
1405
1406 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001407 }
1408 btrfs_item_key_to_cpu(l, &key, slot);
1409
1410 if (key.objectid < device->devid)
1411 goto next;
1412
1413 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001414 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001415
David Sterba962a2982014-06-04 18:41:45 +02001416 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001417 goto next;
1418
Miao Xie7bfc8372011-01-05 10:07:26 +00001419 if (key.offset > search_start) {
1420 hole_size = key.offset - search_start;
1421
Josef Bacik6df9a952013-06-27 13:22:46 -04001422 /*
1423 * Have to check before we set max_hole_start, otherwise
1424 * we could end up sending back this offset anyway.
1425 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001426 if (contains_pending_extent(transaction, device,
Josef Bacik6df9a952013-06-27 13:22:46 -04001427 &search_start,
Forrest Liu1b984502015-02-09 17:30:47 +08001428 hole_size)) {
1429 if (key.offset >= search_start) {
1430 hole_size = key.offset - search_start;
1431 } else {
1432 WARN_ON_ONCE(1);
1433 hole_size = 0;
1434 }
1435 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001436
Miao Xie7bfc8372011-01-05 10:07:26 +00001437 if (hole_size > max_hole_size) {
1438 max_hole_start = search_start;
1439 max_hole_size = hole_size;
1440 }
1441
1442 /*
1443 * If this free space is greater than which we need,
1444 * it must be the max free space that we have found
1445 * until now, so max_hole_start must point to the start
1446 * of this free space and the length of this free space
1447 * is stored in max_hole_size. Thus, we return
1448 * max_hole_start and max_hole_size and go back to the
1449 * caller.
1450 */
1451 if (hole_size >= num_bytes) {
1452 ret = 0;
1453 goto out;
1454 }
1455 }
1456
Chris Mason0b86a832008-03-24 15:01:56 -04001457 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001458 extent_end = key.offset + btrfs_dev_extent_length(l,
1459 dev_extent);
1460 if (extent_end > search_start)
1461 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001462next:
1463 path->slots[0]++;
1464 cond_resched();
1465 }
Chris Mason0b86a832008-03-24 15:01:56 -04001466
liubo38c01b92011-08-02 02:39:03 +00001467 /*
1468 * At this point, search_start should be the end of
1469 * allocated dev extents, and when shrinking the device,
1470 * search_end may be smaller than search_start.
1471 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001472 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001473 hole_size = search_end - search_start;
1474
Jeff Mahoney499f3772015-06-15 09:41:17 -04001475 if (contains_pending_extent(transaction, device, &search_start,
Zhao Leif2ab7612015-02-16 18:52:17 +08001476 hole_size)) {
1477 btrfs_release_path(path);
1478 goto again;
1479 }
Chris Mason0b86a832008-03-24 15:01:56 -04001480
Zhao Leif2ab7612015-02-16 18:52:17 +08001481 if (hole_size > max_hole_size) {
1482 max_hole_start = search_start;
1483 max_hole_size = hole_size;
1484 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001485 }
1486
Miao Xie7bfc8372011-01-05 10:07:26 +00001487 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001488 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001489 ret = -ENOSPC;
1490 else
1491 ret = 0;
1492
1493out:
Yan Zheng2b820322008-11-17 21:11:30 -05001494 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001495 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001496 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001497 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001498 return ret;
1499}
1500
Jeff Mahoney499f3772015-06-15 09:41:17 -04001501int find_free_dev_extent(struct btrfs_trans_handle *trans,
1502 struct btrfs_device *device, u64 num_bytes,
1503 u64 *start, u64 *len)
1504{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001505 /* FIXME use last free of some kind */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001506 return find_free_dev_extent_start(trans->transaction, device,
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001507 num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001508}
1509
Christoph Hellwigb2950862008-12-02 09:54:17 -05001510static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001511 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001512 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001513{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001514 struct btrfs_fs_info *fs_info = device->fs_info;
1515 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001516 int ret;
1517 struct btrfs_path *path;
Chris Mason8f18cf12008-04-25 16:53:30 -04001518 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001519 struct btrfs_key found_key;
1520 struct extent_buffer *leaf = NULL;
1521 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001522
1523 path = btrfs_alloc_path();
1524 if (!path)
1525 return -ENOMEM;
1526
1527 key.objectid = device->devid;
1528 key.offset = start;
1529 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001530again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001531 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001532 if (ret > 0) {
1533 ret = btrfs_previous_item(root, path, key.objectid,
1534 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001535 if (ret)
1536 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001537 leaf = path->nodes[0];
1538 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1539 extent = btrfs_item_ptr(leaf, path->slots[0],
1540 struct btrfs_dev_extent);
1541 BUG_ON(found_key.offset > start || found_key.offset +
1542 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001543 key = found_key;
1544 btrfs_release_path(path);
1545 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001546 } else if (ret == 0) {
1547 leaf = path->nodes[0];
1548 extent = btrfs_item_ptr(leaf, path->slots[0],
1549 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001550 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001551 btrfs_handle_fs_error(fs_info, ret, "Slot search failed");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001552 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001553 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001554
Miao Xie2196d6e2014-09-03 21:35:41 +08001555 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1556
Chris Mason8f18cf12008-04-25 16:53:30 -04001557 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001558 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001559 btrfs_handle_fs_error(fs_info, ret,
1560 "Failed to remove dev extent item");
Zhao Lei13212b52015-02-12 14:18:17 +08001561 } else {
Josef Bacik3204d332015-09-24 10:46:10 -04001562 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001563 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001564out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001565 btrfs_free_path(path);
1566 return ret;
1567}
1568
Eric Sandeen48a3b632013-04-25 20:41:01 +00001569static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1570 struct btrfs_device *device,
1571 u64 chunk_tree, u64 chunk_objectid,
1572 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001573{
1574 int ret;
1575 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001576 struct btrfs_fs_info *fs_info = device->fs_info;
1577 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001578 struct btrfs_dev_extent *extent;
1579 struct extent_buffer *leaf;
1580 struct btrfs_key key;
1581
Chris Masondfe25022008-05-13 13:46:40 -04001582 WARN_ON(!device->in_fs_metadata);
Stefan Behrens63a212a2012-11-05 18:29:28 +01001583 WARN_ON(device->is_tgtdev_for_dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04001584 path = btrfs_alloc_path();
1585 if (!path)
1586 return -ENOMEM;
1587
Chris Mason0b86a832008-03-24 15:01:56 -04001588 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001589 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001590 key.type = BTRFS_DEV_EXTENT_KEY;
1591 ret = btrfs_insert_empty_item(trans, root, path, &key,
1592 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001593 if (ret)
1594 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001595
1596 leaf = path->nodes[0];
1597 extent = btrfs_item_ptr(leaf, path->slots[0],
1598 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001599 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1600 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1601 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1602
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001603 write_extent_buffer_chunk_tree_uuid(leaf, fs_info->chunk_tree_uuid);
Chris Masone17cade2008-04-15 15:41:47 -04001604
Chris Mason0b86a832008-03-24 15:01:56 -04001605 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1606 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001607out:
Chris Mason0b86a832008-03-24 15:01:56 -04001608 btrfs_free_path(path);
1609 return ret;
1610}
1611
Josef Bacik6df9a952013-06-27 13:22:46 -04001612static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001613{
Josef Bacik6df9a952013-06-27 13:22:46 -04001614 struct extent_map_tree *em_tree;
1615 struct extent_map *em;
1616 struct rb_node *n;
1617 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001618
Josef Bacik6df9a952013-06-27 13:22:46 -04001619 em_tree = &fs_info->mapping_tree.map_tree;
1620 read_lock(&em_tree->lock);
1621 n = rb_last(&em_tree->map);
1622 if (n) {
1623 em = rb_entry(n, struct extent_map, rb_node);
1624 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001625 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001626 read_unlock(&em_tree->lock);
1627
Chris Mason0b86a832008-03-24 15:01:56 -04001628 return ret;
1629}
1630
Ilya Dryomov53f10652013-08-12 14:33:01 +03001631static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1632 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001633{
1634 int ret;
1635 struct btrfs_key key;
1636 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001637 struct btrfs_path *path;
1638
Yan Zheng2b820322008-11-17 21:11:30 -05001639 path = btrfs_alloc_path();
1640 if (!path)
1641 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001642
1643 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1644 key.type = BTRFS_DEV_ITEM_KEY;
1645 key.offset = (u64)-1;
1646
Ilya Dryomov53f10652013-08-12 14:33:01 +03001647 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001648 if (ret < 0)
1649 goto error;
1650
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001651 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001652
Ilya Dryomov53f10652013-08-12 14:33:01 +03001653 ret = btrfs_previous_item(fs_info->chunk_root, path,
1654 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001655 BTRFS_DEV_ITEM_KEY);
1656 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001657 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001658 } else {
1659 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1660 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001661 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001662 }
1663 ret = 0;
1664error:
Yan Zheng2b820322008-11-17 21:11:30 -05001665 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001666 return ret;
1667}
1668
1669/*
1670 * the device information is stored in the chunk root
1671 * the btrfs_device struct should be fully filled in
1672 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001673static int btrfs_add_device(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001674 struct btrfs_fs_info *fs_info,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001675 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001676{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001677 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001678 int ret;
1679 struct btrfs_path *path;
1680 struct btrfs_dev_item *dev_item;
1681 struct extent_buffer *leaf;
1682 struct btrfs_key key;
1683 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001684
Chris Mason0b86a832008-03-24 15:01:56 -04001685 path = btrfs_alloc_path();
1686 if (!path)
1687 return -ENOMEM;
1688
Chris Mason0b86a832008-03-24 15:01:56 -04001689 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1690 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001691 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001692
1693 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001694 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001695 if (ret)
1696 goto out;
1697
1698 leaf = path->nodes[0];
1699 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1700
1701 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001702 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001703 btrfs_set_device_type(leaf, dev_item, device->type);
1704 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1705 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1706 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001707 btrfs_set_device_total_bytes(leaf, dev_item,
1708 btrfs_device_get_disk_total_bytes(device));
1709 btrfs_set_device_bytes_used(leaf, dev_item,
1710 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001711 btrfs_set_device_group(leaf, dev_item, 0);
1712 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1713 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001714 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001715
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001716 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001717 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001718 ptr = btrfs_device_fsid(dev_item);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001719 write_extent_buffer(leaf, fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001720 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001721
Yan Zheng2b820322008-11-17 21:11:30 -05001722 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001723out:
1724 btrfs_free_path(path);
1725 return ret;
1726}
Chris Mason8f18cf12008-04-25 16:53:30 -04001727
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001728/*
1729 * Function to update ctime/mtime for a given device path.
1730 * Mainly used for ctime/mtime based probe like libblkid.
1731 */
David Sterbada353f62017-02-14 17:55:53 +01001732static void update_dev_time(const char *path_name)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001733{
1734 struct file *filp;
1735
1736 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001737 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001738 return;
1739 file_update_time(filp);
1740 filp_close(filp, NULL);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001741}
1742
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001743static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info,
Chris Masona061fc82008-05-07 11:43:44 -04001744 struct btrfs_device *device)
1745{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001746 struct btrfs_root *root = fs_info->chunk_root;
Chris Masona061fc82008-05-07 11:43:44 -04001747 int ret;
1748 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001749 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001750 struct btrfs_trans_handle *trans;
1751
Chris Masona061fc82008-05-07 11:43:44 -04001752 path = btrfs_alloc_path();
1753 if (!path)
1754 return -ENOMEM;
1755
Yan, Zhenga22285a2010-05-16 10:48:46 -04001756 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001757 if (IS_ERR(trans)) {
1758 btrfs_free_path(path);
1759 return PTR_ERR(trans);
1760 }
Chris Masona061fc82008-05-07 11:43:44 -04001761 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1762 key.type = BTRFS_DEV_ITEM_KEY;
1763 key.offset = device->devid;
1764
1765 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1766 if (ret < 0)
1767 goto out;
1768
1769 if (ret > 0) {
1770 ret = -ENOENT;
1771 goto out;
1772 }
1773
1774 ret = btrfs_del_item(trans, root, path);
1775 if (ret)
1776 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001777out:
1778 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001779 btrfs_commit_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001780 return ret;
1781}
1782
David Sterba3cc31a02016-02-15 16:00:26 +01001783/*
1784 * Verify that @num_devices satisfies the RAID profile constraints in the whole
1785 * filesystem. It's up to the caller to adjust that number regarding eg. device
1786 * replace.
1787 */
1788static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info,
1789 u64 num_devices)
Chris Masona061fc82008-05-07 11:43:44 -04001790{
Chris Masona061fc82008-05-07 11:43:44 -04001791 u64 all_avail;
Miao Xiede98ced2013-01-29 10:13:12 +00001792 unsigned seq;
David Sterba418775a2016-02-15 16:28:14 +01001793 int i;
Chris Masona061fc82008-05-07 11:43:44 -04001794
Miao Xiede98ced2013-01-29 10:13:12 +00001795 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001796 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00001797
Anand Jainbd45ffb2016-02-13 10:01:34 +08001798 all_avail = fs_info->avail_data_alloc_bits |
1799 fs_info->avail_system_alloc_bits |
1800 fs_info->avail_metadata_alloc_bits;
1801 } while (read_seqretry(&fs_info->profiles_lock, seq));
Anand Jainf1fa7f22016-02-13 10:01:33 +08001802
David Sterba418775a2016-02-15 16:28:14 +01001803 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
1804 if (!(all_avail & btrfs_raid_group[i]))
1805 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001806
David Sterba418775a2016-02-15 16:28:14 +01001807 if (num_devices < btrfs_raid_array[i].devs_min) {
1808 int ret = btrfs_raid_mindev_error[i];
Chris Masona061fc82008-05-07 11:43:44 -04001809
David Sterba418775a2016-02-15 16:28:14 +01001810 if (ret)
1811 return ret;
1812 }
Anand Jainbd45ffb2016-02-13 10:01:34 +08001813 }
1814
1815 return 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001816}
1817
Anand Jain88acff62016-05-03 17:44:43 +08001818struct btrfs_device *btrfs_find_next_active_device(struct btrfs_fs_devices *fs_devs,
1819 struct btrfs_device *device)
1820{
1821 struct btrfs_device *next_device;
1822
1823 list_for_each_entry(next_device, &fs_devs->devices, dev_list) {
1824 if (next_device != device &&
1825 !next_device->missing && next_device->bdev)
1826 return next_device;
1827 }
1828
1829 return NULL;
1830}
1831
1832/*
1833 * Helper function to check if the given device is part of s_bdev / latest_bdev
1834 * and replace it with the provided or the next active device, in the context
1835 * where this function called, there should be always be another device (or
1836 * this_dev) which is active.
1837 */
1838void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info,
1839 struct btrfs_device *device, struct btrfs_device *this_dev)
1840{
1841 struct btrfs_device *next_device;
1842
1843 if (this_dev)
1844 next_device = this_dev;
1845 else
1846 next_device = btrfs_find_next_active_device(fs_info->fs_devices,
1847 device);
1848 ASSERT(next_device);
1849
1850 if (fs_info->sb->s_bdev &&
1851 (fs_info->sb->s_bdev == device->bdev))
1852 fs_info->sb->s_bdev = next_device->bdev;
1853
1854 if (fs_info->fs_devices->latest_bdev == device->bdev)
1855 fs_info->fs_devices->latest_bdev = next_device->bdev;
1856}
1857
David Sterbada353f62017-02-14 17:55:53 +01001858int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path,
1859 u64 devid)
Anand Jainf1fa7f22016-02-13 10:01:33 +08001860{
1861 struct btrfs_device *device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001862 struct btrfs_fs_devices *cur_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001863 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001864 int ret = 0;
1865 bool clear_super = false;
1866
1867 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001868
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001869 num_devices = fs_info->fs_devices->num_devices;
1870 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
1871 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
Chris Masona061fc82008-05-07 11:43:44 -04001872 WARN_ON(num_devices < 1);
1873 num_devices--;
1874 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001875 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Chris Masona061fc82008-05-07 11:43:44 -04001876
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001877 ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001878 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001879 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001880
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001881 ret = btrfs_find_device_by_devspec(fs_info, devid, device_path,
1882 &device);
Anand Jain24fc5722016-02-13 10:01:36 +08001883 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001884 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001885
Stefan Behrens63a212a2012-11-05 18:29:28 +01001886 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001887 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08001888 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001889 }
1890
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001891 if (device->writeable && fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001892 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08001893 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001894 }
1895
1896 if (device->writeable) {
David Sterba34441362016-10-04 19:34:27 +02001897 mutex_lock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001898 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001899 device->fs_devices->rw_devices--;
David Sterba34441362016-10-04 19:34:27 +02001900 mutex_unlock(&fs_info->chunk_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001901 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001902 }
Chris Masona061fc82008-05-07 11:43:44 -04001903
Carey Underwoodd7901552013-03-04 16:37:06 -06001904 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001905 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001906 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001907 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001908 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001909
Stefan Behrens63a212a2012-11-05 18:29:28 +01001910 /*
1911 * TODO: the superblock still includes this device in its num_devices
1912 * counter although write_all_supers() is not locked out. This
1913 * could give a filesystem state which requires a degraded mount.
1914 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001915 ret = btrfs_rm_dev_item(fs_info, device);
Chris Masona061fc82008-05-07 11:43:44 -04001916 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001917 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001918
Yan Zheng2b820322008-11-17 21:11:30 -05001919 device->in_fs_metadata = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001920 btrfs_scrub_cancel_dev(fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001921
1922 /*
1923 * the device list mutex makes sure that we don't change
1924 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001925 * the device supers. Whoever is writing all supers, should
1926 * lock the device list mutex before getting the number of
1927 * devices in the super block (super_copy). Conversely,
1928 * whoever updates the number of devices in the super block
1929 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001930 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001931
1932 cur_devices = device->fs_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001933 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001934 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001935
Yan Zhenge4404d62008-12-12 10:03:26 -05001936 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001937 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001938
Chris Masoncd02dca2010-12-13 14:56:23 -05001939 if (device->missing)
Miao Xie3a7d55c2014-07-16 18:38:01 +08001940 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001941
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001942 btrfs_assign_next_active_device(fs_info, device, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05001943
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001944 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001945 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001946 /* remove sysfs entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001947 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001948 }
Anand Jain99994cd2014-06-03 11:36:00 +08001949
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001950 num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1;
1951 btrfs_set_super_num_devices(fs_info->super_copy, num_devices);
1952 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001953
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04001954 /*
1955 * at this point, the device is zero sized and detached from
1956 * the devices list. All that's left is to zero out the old
1957 * supers and free the device.
1958 */
1959 if (device->writeable)
1960 btrfs_scratch_superblocks(device->bdev, device->name->str);
1961
1962 btrfs_close_bdev(device);
1963 call_rcu(&device->rcu, free_device);
1964
Xiao Guangrong1f781602011-04-20 10:09:16 +00001965 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001966 struct btrfs_fs_devices *fs_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001967 fs_devices = fs_info->fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001968 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001969 if (fs_devices->seed == cur_devices) {
1970 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05001971 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001972 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001973 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001974 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001975 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001976 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001977 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001978 }
1979
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001980 fs_info->num_tolerated_disk_barrier_failures =
1981 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001982
Chris Masona061fc82008-05-07 11:43:44 -04001983out:
1984 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001985 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08001986
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001987error_undo:
1988 if (device->writeable) {
David Sterba34441362016-10-04 19:34:27 +02001989 mutex_lock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001990 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001991 &fs_info->fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001992 device->fs_devices->rw_devices++;
David Sterba34441362016-10-04 19:34:27 +02001993 mutex_unlock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001994 }
Anand Jain24fc5722016-02-13 10:01:36 +08001995 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001996}
1997
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001998void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
1999 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002000{
Anand Jaind51908c2014-08-13 14:24:19 +08002001 struct btrfs_fs_devices *fs_devices;
2002
Stefan Behrense93c89c2012-11-05 17:33:06 +01002003 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03002004
Anand Jain25e8e912014-08-20 10:56:56 +08002005 /*
2006 * in case of fs with no seed, srcdev->fs_devices will point
2007 * to fs_devices of fs_info. However when the dev being replaced is
2008 * a seed dev it will point to the seed's local fs_devices. In short
2009 * srcdev will have its correct fs_devices in both the cases.
2010 */
2011 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08002012
Stefan Behrense93c89c2012-11-05 17:33:06 +01002013 list_del_rcu(&srcdev->dev_list);
2014 list_del_rcu(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08002015 fs_devices->num_devices--;
Miao Xie82372bc2014-09-03 21:35:44 +08002016 if (srcdev->missing)
Anand Jaind51908c2014-08-13 14:24:19 +08002017 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002018
Anand Jain48b3b9d2016-04-12 21:36:16 +08002019 if (srcdev->writeable)
Miao Xie82372bc2014-09-03 21:35:44 +08002020 fs_devices->rw_devices--;
Ilya Dryomov13572722013-10-02 20:41:01 +03002021
Miao Xie82372bc2014-09-03 21:35:44 +08002022 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08002023 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002024}
2025
2026void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
2027 struct btrfs_device *srcdev)
2028{
2029 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002030
Anand Jain48b3b9d2016-04-12 21:36:16 +08002031 if (srcdev->writeable) {
2032 /* zero out the old super if it is writable */
2033 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
2034 }
Anand Jain14238812016-07-22 06:04:53 +08002035
2036 btrfs_close_bdev(srcdev);
2037
Stefan Behrense93c89c2012-11-05 17:33:06 +01002038 call_rcu(&srcdev->rcu, free_device);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002039
2040 /*
2041 * unless fs_devices is seed fs, num_devices shouldn't go
2042 * zero
2043 */
2044 BUG_ON(!fs_devices->num_devices && !fs_devices->seeding);
2045
2046 /* if this is no devs we rather delete the fs_devices */
2047 if (!fs_devices->num_devices) {
2048 struct btrfs_fs_devices *tmp_fs_devices;
2049
2050 tmp_fs_devices = fs_info->fs_devices;
2051 while (tmp_fs_devices) {
2052 if (tmp_fs_devices->seed == fs_devices) {
2053 tmp_fs_devices->seed = fs_devices->seed;
2054 break;
2055 }
2056 tmp_fs_devices = tmp_fs_devices->seed;
2057 }
2058 fs_devices->seed = NULL;
Anand Jain8bef8402014-08-13 14:24:23 +08002059 __btrfs_close_devices(fs_devices);
2060 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002061 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002062}
2063
2064void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2065 struct btrfs_device *tgtdev)
2066{
Miao Xie67a2c452014-09-03 21:35:43 +08002067 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002068 WARN_ON(!tgtdev);
2069 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002070
Anand Jain32576042015-08-14 18:32:49 +08002071 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002072
Anand Jain779bf3f2016-04-18 16:51:23 +08002073 if (tgtdev->bdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002074 fs_info->fs_devices->open_devices--;
Anand Jain779bf3f2016-04-18 16:51:23 +08002075
Stefan Behrense93c89c2012-11-05 17:33:06 +01002076 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002077
Anand Jain88acff62016-05-03 17:44:43 +08002078 btrfs_assign_next_active_device(fs_info, tgtdev, NULL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002079
Stefan Behrense93c89c2012-11-05 17:33:06 +01002080 list_del_rcu(&tgtdev->dev_list);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002081
2082 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002083 mutex_unlock(&uuid_mutex);
Anand Jain779bf3f2016-04-18 16:51:23 +08002084
2085 /*
2086 * The update_dev_time() with in btrfs_scratch_superblocks()
2087 * may lead to a call to btrfs_show_devname() which will try
2088 * to hold device_list_mutex. And here this device
2089 * is already out of device list, so we don't have to hold
2090 * the device_list_mutex lock.
2091 */
2092 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Anand Jain14238812016-07-22 06:04:53 +08002093
2094 btrfs_close_bdev(tgtdev);
Anand Jain779bf3f2016-04-18 16:51:23 +08002095 call_rcu(&tgtdev->rcu, free_device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002096}
2097
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002098static int btrfs_find_device_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002099 const char *device_path,
Eric Sandeen48a3b632013-04-25 20:41:01 +00002100 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002101{
2102 int ret = 0;
2103 struct btrfs_super_block *disk_super;
2104 u64 devid;
2105 u8 *dev_uuid;
2106 struct block_device *bdev;
2107 struct buffer_head *bh;
2108
2109 *device = NULL;
2110 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002111 fs_info->bdev_holder, 0, &bdev, &bh);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002112 if (ret)
2113 return ret;
2114 disk_super = (struct btrfs_super_block *)bh->b_data;
2115 devid = btrfs_stack_device_id(&disk_super->dev_item);
2116 dev_uuid = disk_super->dev_item.uuid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002117 *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002118 brelse(bh);
2119 if (!*device)
2120 ret = -ENOENT;
2121 blkdev_put(bdev, FMODE_READ);
2122 return ret;
2123}
2124
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002125int btrfs_find_device_missing_or_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002126 const char *device_path,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002127 struct btrfs_device **device)
2128{
2129 *device = NULL;
2130 if (strcmp(device_path, "missing") == 0) {
2131 struct list_head *devices;
2132 struct btrfs_device *tmp;
2133
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002134 devices = &fs_info->fs_devices->devices;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002135 /*
2136 * It is safe to read the devices since the volume_mutex
2137 * is held by the caller.
2138 */
2139 list_for_each_entry(tmp, devices, dev_list) {
2140 if (tmp->in_fs_metadata && !tmp->bdev) {
2141 *device = tmp;
2142 break;
2143 }
2144 }
2145
Anand Jaind74a6252015-08-14 18:32:56 +08002146 if (!*device)
2147 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002148
2149 return 0;
2150 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002151 return btrfs_find_device_by_path(fs_info, device_path, device);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002152 }
2153}
2154
Yan Zheng2b820322008-11-17 21:11:30 -05002155/*
David Sterba5c5c0df2016-02-15 16:39:55 +01002156 * Lookup a device given by device id, or the path if the id is 0.
2157 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002158int btrfs_find_device_by_devspec(struct btrfs_fs_info *fs_info, u64 devid,
David Sterbada353f62017-02-14 17:55:53 +01002159 const char *devpath,
2160 struct btrfs_device **device)
Anand Jain24e04742016-02-13 10:01:35 +08002161{
2162 int ret;
2163
David Sterba5c5c0df2016-02-15 16:39:55 +01002164 if (devid) {
Anand Jain24e04742016-02-13 10:01:35 +08002165 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002166 *device = btrfs_find_device(fs_info, devid, NULL, NULL);
Anand Jain24e04742016-02-13 10:01:35 +08002167 if (!*device)
2168 ret = -ENOENT;
2169 } else {
David Sterba5c5c0df2016-02-15 16:39:55 +01002170 if (!devpath || !devpath[0])
Anand Jainb3d1b152016-02-13 10:01:37 +08002171 return -EINVAL;
2172
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002173 ret = btrfs_find_device_missing_or_by_path(fs_info, devpath,
Anand Jain24e04742016-02-13 10:01:35 +08002174 device);
2175 }
2176 return ret;
2177}
2178
Yan Zheng2b820322008-11-17 21:11:30 -05002179/*
2180 * does all the dirty work required for changing file system's UUID.
2181 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002182static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002183{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002184 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002185 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002186 struct btrfs_fs_devices *seed_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002187 struct btrfs_super_block *disk_super = fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002188 struct btrfs_device *device;
2189 u64 super_flags;
2190
2191 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05002192 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002193 return -EINVAL;
2194
Ilya Dryomov2208a372013-08-12 14:33:03 +03002195 seed_devices = __alloc_fs_devices();
2196 if (IS_ERR(seed_devices))
2197 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002198
Yan Zhenge4404d62008-12-12 10:03:26 -05002199 old_devices = clone_fs_devices(fs_devices);
2200 if (IS_ERR(old_devices)) {
2201 kfree(seed_devices);
2202 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002203 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002204
Yan Zheng2b820322008-11-17 21:11:30 -05002205 list_add(&old_devices->list, &fs_uuids);
2206
Yan Zhenge4404d62008-12-12 10:03:26 -05002207 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2208 seed_devices->opened = 1;
2209 INIT_LIST_HEAD(&seed_devices->devices);
2210 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002211 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002212
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002213 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002214 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2215 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002216 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002217 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002218
David Sterba34441362016-10-04 19:34:27 +02002219 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002220 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
David Sterba34441362016-10-04 19:34:27 +02002221 mutex_unlock(&fs_info->chunk_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002222
Yan Zheng2b820322008-11-17 21:11:30 -05002223 fs_devices->seeding = 0;
2224 fs_devices->num_devices = 0;
2225 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002226 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002227 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002228 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002229
2230 generate_random_uuid(fs_devices->fsid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002231 memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002232 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002233 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002234
Yan Zheng2b820322008-11-17 21:11:30 -05002235 super_flags = btrfs_super_flags(disk_super) &
2236 ~BTRFS_SUPER_FLAG_SEEDING;
2237 btrfs_set_super_flags(disk_super, super_flags);
2238
2239 return 0;
2240}
2241
2242/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002243 * Store the expected generation for seed devices in device items.
Yan Zheng2b820322008-11-17 21:11:30 -05002244 */
2245static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002246 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002247{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002248 struct btrfs_root *root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002249 struct btrfs_path *path;
2250 struct extent_buffer *leaf;
2251 struct btrfs_dev_item *dev_item;
2252 struct btrfs_device *device;
2253 struct btrfs_key key;
2254 u8 fs_uuid[BTRFS_UUID_SIZE];
2255 u8 dev_uuid[BTRFS_UUID_SIZE];
2256 u64 devid;
2257 int ret;
2258
2259 path = btrfs_alloc_path();
2260 if (!path)
2261 return -ENOMEM;
2262
Yan Zheng2b820322008-11-17 21:11:30 -05002263 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2264 key.offset = 0;
2265 key.type = BTRFS_DEV_ITEM_KEY;
2266
2267 while (1) {
2268 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2269 if (ret < 0)
2270 goto error;
2271
2272 leaf = path->nodes[0];
2273next_slot:
2274 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2275 ret = btrfs_next_leaf(root, path);
2276 if (ret > 0)
2277 break;
2278 if (ret < 0)
2279 goto error;
2280 leaf = path->nodes[0];
2281 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002282 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002283 continue;
2284 }
2285
2286 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2287 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2288 key.type != BTRFS_DEV_ITEM_KEY)
2289 break;
2290
2291 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2292 struct btrfs_dev_item);
2293 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002294 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002295 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002296 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002297 BTRFS_UUID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002298 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002299 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002300
2301 if (device->fs_devices->seeding) {
2302 btrfs_set_device_generation(leaf, dev_item,
2303 device->generation);
2304 btrfs_mark_buffer_dirty(leaf);
2305 }
2306
2307 path->slots[0]++;
2308 goto next_slot;
2309 }
2310 ret = 0;
2311error:
2312 btrfs_free_path(path);
2313 return ret;
2314}
2315
David Sterbada353f62017-02-14 17:55:53 +01002316int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path)
Chris Mason788f20e2008-04-28 15:29:42 -04002317{
Jeff Mahoney5112feb2016-06-21 20:16:08 -04002318 struct btrfs_root *root = fs_info->dev_root;
Josef Bacikd5e20032011-08-04 14:52:27 +00002319 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002320 struct btrfs_trans_handle *trans;
2321 struct btrfs_device *device;
2322 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002323 struct list_head *devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002324 struct super_block *sb = fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002325 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002326 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002327 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002328 int ret = 0;
2329
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002330 if ((sb->s_flags & MS_RDONLY) && !fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002331 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002332
Li Zefana5d16332011-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
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002338 if (fs_info->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
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002346 devices = &fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002347
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002348 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002349 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002350 if (device->bdev == bdev) {
2351 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002352 mutex_unlock(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002353 &fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002354 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002355 }
2356 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002357 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002358
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002359 device = btrfs_alloc_device(fs_info, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002360 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002361 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002362 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002363 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002364 }
2365
David Sterba78f2c9e2016-02-11 14:25:38 +01002366 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002367 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002368 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002369 ret = -ENOMEM;
2370 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002371 }
Josef Bacik606686e2012-06-04 14:03:51 -04002372 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002373
Yan, Zhenga22285a2010-05-16 10:48:46 -04002374 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002375 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002376 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002377 kfree(device);
2378 ret = PTR_ERR(trans);
2379 goto error;
2380 }
2381
Josef Bacikd5e20032011-08-04 14:52:27 +00002382 q = bdev_get_queue(bdev);
2383 if (blk_queue_discard(q))
2384 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002385 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002386 device->generation = trans->transid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002387 device->io_width = fs_info->sectorsize;
2388 device->io_align = fs_info->sectorsize;
2389 device->sector_size = fs_info->sectorsize;
Chris Mason788f20e2008-04-28 15:29:42 -04002390 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002391 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002392 device->commit_total_bytes = device->total_bytes;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002393 device->fs_info = fs_info;
Chris Mason788f20e2008-04-28 15:29:42 -04002394 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002395 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002396 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002397 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002398 device->dev_stats_valid = 1;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002399 set_blocksize(device->bdev, 4096);
2400
Yan Zheng2b820322008-11-17 21:11:30 -05002401 if (seeding_dev) {
2402 sb->s_flags &= ~MS_RDONLY;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002403 ret = btrfs_prepare_sprout(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002404 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002405 }
2406
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002407 device->fs_devices = fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002408
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002409 mutex_lock(&fs_info->fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02002410 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002411 list_add_rcu(&device->dev_list, &fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002412 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002413 &fs_info->fs_devices->alloc_list);
2414 fs_info->fs_devices->num_devices++;
2415 fs_info->fs_devices->open_devices++;
2416 fs_info->fs_devices->rw_devices++;
2417 fs_info->fs_devices->total_devices++;
2418 fs_info->fs_devices->total_rw_bytes += device->total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05002419
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002420 spin_lock(&fs_info->free_chunk_lock);
2421 fs_info->free_chunk_space += device->total_bytes;
2422 spin_unlock(&fs_info->free_chunk_lock);
Josef Bacik2bf64752011-09-26 17:12:22 -04002423
Anand Jaine884f4f2017-04-04 18:40:19 +08002424 if (!blk_queue_nonrot(q))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002425 fs_info->fs_devices->rotating = 1;
Chris Masonc2898112009-06-10 09:51:32 -04002426
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002427 tmp = btrfs_super_total_bytes(fs_info->super_copy);
2428 btrfs_set_super_total_bytes(fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002429 tmp + device->total_bytes);
Chris Mason788f20e2008-04-28 15:29:42 -04002430
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002431 tmp = btrfs_super_num_devices(fs_info->super_copy);
2432 btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002433
2434 /* add sysfs device entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002435 btrfs_sysfs_add_device_link(fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002436
Miao Xie2196d6e2014-09-03 21:35:41 +08002437 /*
2438 * we've got more storage, clear any full flags on the space
2439 * infos
2440 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002441 btrfs_clear_space_info_full(fs_info);
Miao Xie2196d6e2014-09-03 21:35:41 +08002442
David Sterba34441362016-10-04 19:34:27 +02002443 mutex_unlock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002444 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002445
Yan Zheng2b820322008-11-17 21:11:30 -05002446 if (seeding_dev) {
David Sterba34441362016-10-04 19:34:27 +02002447 mutex_lock(&fs_info->chunk_mutex);
David Sterbae4a4dce2017-02-10 19:49:01 +01002448 ret = init_first_rw_device(trans, fs_info);
David Sterba34441362016-10-04 19:34:27 +02002449 mutex_unlock(&fs_info->chunk_mutex);
David Sterba005d6422012-09-18 07:52:32 -06002450 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002451 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002452 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002453 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002454 }
2455
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002456 ret = btrfs_add_device(trans, fs_info, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002457 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002458 btrfs_abort_transaction(trans, ret);
Miao Xie2196d6e2014-09-03 21:35:41 +08002459 goto error_trans;
2460 }
2461
2462 if (seeding_dev) {
2463 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2464
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002465 ret = btrfs_finish_sprout(trans, fs_info);
David Sterba005d6422012-09-18 07:52:32 -06002466 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002467 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002468 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002469 }
Anand Jainb2373f22014-06-03 11:36:03 +08002470
2471 /* Sprouting would change fsid of the mounted root,
2472 * so rename the fsid on the sysfs
2473 */
2474 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002475 fs_info->fsid);
2476 if (kobject_rename(&fs_info->fs_devices->fsid_kobj, fsid_buf))
2477 btrfs_warn(fs_info,
2478 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002479 }
2480
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002481 fs_info->num_tolerated_disk_barrier_failures =
2482 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002483 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002484
2485 if (seeding_dev) {
2486 mutex_unlock(&uuid_mutex);
2487 up_write(&sb->s_umount);
2488
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002489 if (ret) /* transaction commit */
2490 return ret;
2491
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002492 ret = btrfs_relocate_sys_chunks(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002493 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002494 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002495 "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002496 trans = btrfs_attach_transaction(root);
2497 if (IS_ERR(trans)) {
2498 if (PTR_ERR(trans) == -ENOENT)
2499 return 0;
2500 return PTR_ERR(trans);
2501 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002502 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002503 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002504
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002505 /* Update ctime/mtime for libblkid */
2506 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002507 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002508
2509error_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002510 btrfs_end_transaction(trans);
Josef Bacik606686e2012-06-04 14:03:51 -04002511 rcu_string_free(device->name);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002512 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002513 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002514error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002515 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002516 if (seeding_dev) {
2517 mutex_unlock(&uuid_mutex);
2518 up_write(&sb->s_umount);
2519 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002520 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002521}
2522
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002523int btrfs_init_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002524 const char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002525 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002526 struct btrfs_device **device_out)
2527{
2528 struct request_queue *q;
2529 struct btrfs_device *device;
2530 struct block_device *bdev;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002531 struct list_head *devices;
2532 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002533 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002534 int ret = 0;
2535
2536 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002537 if (fs_info->fs_devices->seeding) {
2538 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002539 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002540 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002541
2542 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2543 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002544 if (IS_ERR(bdev)) {
2545 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002546 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002547 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002548
2549 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2550
2551 devices = &fs_info->fs_devices->devices;
2552 list_for_each_entry(device, devices, dev_list) {
2553 if (device->bdev == bdev) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002554 btrfs_err(fs_info,
2555 "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002556 ret = -EEXIST;
2557 goto error;
2558 }
2559 }
2560
Miao Xie1c433662014-09-03 21:35:32 +08002561
Miao Xie7cc8e582014-09-03 21:35:38 +08002562 if (i_size_read(bdev->bd_inode) <
2563 btrfs_device_get_total_bytes(srcdev)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002564 btrfs_err(fs_info,
2565 "target device is smaller than source device!");
Miao Xie1c433662014-09-03 21:35:32 +08002566 ret = -EINVAL;
2567 goto error;
2568 }
2569
2570
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002571 device = btrfs_alloc_device(NULL, &devid, NULL);
2572 if (IS_ERR(device)) {
2573 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002574 goto error;
2575 }
2576
2577 name = rcu_string_strdup(device_path, GFP_NOFS);
2578 if (!name) {
2579 kfree(device);
2580 ret = -ENOMEM;
2581 goto error;
2582 }
2583 rcu_assign_pointer(device->name, name);
2584
2585 q = bdev_get_queue(bdev);
2586 if (blk_queue_discard(q))
2587 device->can_discard = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002588 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002589 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002590 device->generation = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002591 device->io_width = fs_info->sectorsize;
2592 device->io_align = fs_info->sectorsize;
2593 device->sector_size = fs_info->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002594 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2595 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2596 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002597 ASSERT(list_empty(&srcdev->resized_list));
2598 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002599 device->commit_bytes_used = device->bytes_used;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002600 device->fs_info = fs_info;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002601 device->bdev = bdev;
2602 device->in_fs_metadata = 1;
2603 device->is_tgtdev_for_dev_replace = 1;
2604 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002605 device->dev_stats_valid = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002606 set_blocksize(device->bdev, 4096);
2607 device->fs_devices = fs_info->fs_devices;
2608 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2609 fs_info->fs_devices->num_devices++;
2610 fs_info->fs_devices->open_devices++;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002611 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002612
2613 *device_out = device;
2614 return ret;
2615
2616error:
2617 blkdev_put(bdev, FMODE_EXCL);
2618 return ret;
2619}
2620
2621void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2622 struct btrfs_device *tgtdev)
2623{
Jeff Mahoneyda170662016-06-15 09:22:56 -04002624 u32 sectorsize = fs_info->sectorsize;
2625
Stefan Behrense93c89c2012-11-05 17:33:06 +01002626 WARN_ON(fs_info->fs_devices->rw_devices == 0);
Jeff Mahoneyda170662016-06-15 09:22:56 -04002627 tgtdev->io_width = sectorsize;
2628 tgtdev->io_align = sectorsize;
2629 tgtdev->sector_size = sectorsize;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002630 tgtdev->fs_info = fs_info;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002631 tgtdev->in_fs_metadata = 1;
2632}
2633
Chris Masond3977122009-01-05 21:25:51 -05002634static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2635 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002636{
2637 int ret;
2638 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002639 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002640 struct btrfs_dev_item *dev_item;
2641 struct extent_buffer *leaf;
2642 struct btrfs_key key;
2643
Chris Mason0b86a832008-03-24 15:01:56 -04002644 path = btrfs_alloc_path();
2645 if (!path)
2646 return -ENOMEM;
2647
2648 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2649 key.type = BTRFS_DEV_ITEM_KEY;
2650 key.offset = device->devid;
2651
2652 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2653 if (ret < 0)
2654 goto out;
2655
2656 if (ret > 0) {
2657 ret = -ENOENT;
2658 goto out;
2659 }
2660
2661 leaf = path->nodes[0];
2662 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2663
2664 btrfs_set_device_id(leaf, dev_item, device->devid);
2665 btrfs_set_device_type(leaf, dev_item, device->type);
2666 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2667 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2668 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002669 btrfs_set_device_total_bytes(leaf, dev_item,
2670 btrfs_device_get_disk_total_bytes(device));
2671 btrfs_set_device_bytes_used(leaf, dev_item,
2672 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002673 btrfs_mark_buffer_dirty(leaf);
2674
2675out:
2676 btrfs_free_path(path);
2677 return ret;
2678}
2679
Miao Xie2196d6e2014-09-03 21:35:41 +08002680int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002681 struct btrfs_device *device, u64 new_size)
2682{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002683 struct btrfs_fs_info *fs_info = device->fs_info;
2684 struct btrfs_super_block *super_copy = fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002685 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002686 u64 old_total;
2687 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002688
Yan Zheng2b820322008-11-17 21:11:30 -05002689 if (!device->writeable)
2690 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002691
David Sterba34441362016-10-04 19:34:27 +02002692 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002693 old_total = btrfs_super_total_bytes(super_copy);
2694 diff = new_size - device->total_bytes;
2695
Stefan Behrens63a212a2012-11-05 18:29:28 +01002696 if (new_size <= device->total_bytes ||
Miao Xie2196d6e2014-09-03 21:35:41 +08002697 device->is_tgtdev_for_dev_replace) {
David Sterba34441362016-10-04 19:34:27 +02002698 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002699 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002700 }
Yan Zheng2b820322008-11-17 21:11:30 -05002701
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002702 fs_devices = fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002703
2704 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002705 device->fs_devices->total_rw_bytes += diff;
2706
Miao Xie7cc8e582014-09-03 21:35:38 +08002707 btrfs_device_set_total_bytes(device, new_size);
2708 btrfs_device_set_disk_total_bytes(device, new_size);
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002709 btrfs_clear_space_info_full(device->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002710 if (list_empty(&device->resized_list))
2711 list_add_tail(&device->resized_list,
2712 &fs_devices->resized_devices);
David Sterba34441362016-10-04 19:34:27 +02002713 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason4184ea72009-03-10 12:39:20 -04002714
Chris Mason8f18cf12008-04-25 16:53:30 -04002715 return btrfs_update_device(trans, device);
2716}
2717
2718static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002719 struct btrfs_fs_info *fs_info, u64 chunk_objectid,
Chris Mason8f18cf12008-04-25 16:53:30 -04002720 u64 chunk_offset)
2721{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002722 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002723 int ret;
2724 struct btrfs_path *path;
2725 struct btrfs_key key;
2726
Chris Mason8f18cf12008-04-25 16:53:30 -04002727 path = btrfs_alloc_path();
2728 if (!path)
2729 return -ENOMEM;
2730
2731 key.objectid = chunk_objectid;
2732 key.offset = chunk_offset;
2733 key.type = BTRFS_CHUNK_ITEM_KEY;
2734
2735 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002736 if (ret < 0)
2737 goto out;
2738 else if (ret > 0) { /* Logic error or corruption */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002739 btrfs_handle_fs_error(fs_info, -ENOENT,
2740 "Failed lookup while freeing chunk.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002741 ret = -ENOENT;
2742 goto out;
2743 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002744
2745 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002746 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002747 btrfs_handle_fs_error(fs_info, ret,
2748 "Failed to delete chunk item.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002749out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002750 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002751 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002752}
2753
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002754static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info,
2755 u64 chunk_objectid, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002756{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002757 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002758 struct btrfs_disk_key *disk_key;
2759 struct btrfs_chunk *chunk;
2760 u8 *ptr;
2761 int ret = 0;
2762 u32 num_stripes;
2763 u32 array_size;
2764 u32 len = 0;
2765 u32 cur;
2766 struct btrfs_key key;
2767
David Sterba34441362016-10-04 19:34:27 +02002768 mutex_lock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002769 array_size = btrfs_super_sys_array_size(super_copy);
2770
2771 ptr = super_copy->sys_chunk_array;
2772 cur = 0;
2773
2774 while (cur < array_size) {
2775 disk_key = (struct btrfs_disk_key *)ptr;
2776 btrfs_disk_key_to_cpu(&key, disk_key);
2777
2778 len = sizeof(*disk_key);
2779
2780 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2781 chunk = (struct btrfs_chunk *)(ptr + len);
2782 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2783 len += btrfs_chunk_item_size(num_stripes);
2784 } else {
2785 ret = -EIO;
2786 break;
2787 }
2788 if (key.objectid == chunk_objectid &&
2789 key.offset == chunk_offset) {
2790 memmove(ptr, ptr + len, array_size - (cur + len));
2791 array_size -= len;
2792 btrfs_set_super_sys_array_size(super_copy, array_size);
2793 } else {
2794 ptr += len;
2795 cur += len;
2796 }
2797 }
David Sterba34441362016-10-04 19:34:27 +02002798 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002799 return ret;
2800}
2801
Liu Bo592d92e2017-03-14 13:33:55 -07002802static struct extent_map *get_chunk_map(struct btrfs_fs_info *fs_info,
2803 u64 logical, u64 length)
2804{
2805 struct extent_map_tree *em_tree;
2806 struct extent_map *em;
2807
2808 em_tree = &fs_info->mapping_tree.map_tree;
2809 read_lock(&em_tree->lock);
2810 em = lookup_extent_mapping(em_tree, logical, length);
2811 read_unlock(&em_tree->lock);
2812
2813 if (!em) {
2814 btrfs_crit(fs_info, "unable to find logical %llu length %llu",
2815 logical, length);
2816 return ERR_PTR(-EINVAL);
2817 }
2818
2819 if (em->start > logical || em->start + em->len < logical) {
2820 btrfs_crit(fs_info,
2821 "found a bad mapping, wanted %llu-%llu, found %llu-%llu",
2822 logical, length, em->start, em->start + em->len);
2823 free_extent_map(em);
2824 return ERR_PTR(-EINVAL);
2825 }
2826
2827 /* callers are responsible for dropping em's ref. */
2828 return em;
2829}
2830
Josef Bacik47ab2a62014-09-18 11:20:02 -04002831int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002832 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Josef Bacik47ab2a62014-09-18 11:20:02 -04002833{
Josef Bacik47ab2a62014-09-18 11:20:02 -04002834 struct extent_map *em;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002835 struct map_lookup *map;
2836 u64 dev_extent_len = 0;
2837 u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002838 int i, ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002839 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002840
Liu Bo592d92e2017-03-14 13:33:55 -07002841 em = get_chunk_map(fs_info, chunk_offset, 1);
2842 if (IS_ERR(em)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -04002843 /*
2844 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002845 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04002846 * do anything we still error out.
2847 */
2848 ASSERT(0);
Liu Bo592d92e2017-03-14 13:33:55 -07002849 return PTR_ERR(em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002850 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002851 map = em->map_lookup;
David Sterba34441362016-10-04 19:34:27 +02002852 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002853 check_system_chunk(trans, fs_info, map->type);
David Sterba34441362016-10-04 19:34:27 +02002854 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002855
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002856 /*
2857 * Take the device list mutex to prevent races with the final phase of
2858 * a device replace operation that replaces the device object associated
2859 * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()).
2860 */
2861 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002862 for (i = 0; i < map->num_stripes; i++) {
2863 struct btrfs_device *device = map->stripes[i].dev;
2864 ret = btrfs_free_dev_extent(trans, device,
2865 map->stripes[i].physical,
2866 &dev_extent_len);
2867 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002868 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002869 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002870 goto out;
2871 }
2872
2873 if (device->bytes_used > 0) {
David Sterba34441362016-10-04 19:34:27 +02002874 mutex_lock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002875 btrfs_device_set_bytes_used(device,
2876 device->bytes_used - dev_extent_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002877 spin_lock(&fs_info->free_chunk_lock);
2878 fs_info->free_chunk_space += dev_extent_len;
2879 spin_unlock(&fs_info->free_chunk_lock);
2880 btrfs_clear_space_info_full(fs_info);
David Sterba34441362016-10-04 19:34:27 +02002881 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002882 }
2883
2884 if (map->stripes[i].dev) {
2885 ret = btrfs_update_device(trans, map->stripes[i].dev);
2886 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002887 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002888 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002889 goto out;
2890 }
2891 }
2892 }
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002893 mutex_unlock(&fs_devices->device_list_mutex);
2894
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002895 ret = btrfs_free_chunk(trans, fs_info, chunk_objectid, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002896 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002897 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002898 goto out;
2899 }
2900
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002901 trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002902
2903 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002904 ret = btrfs_del_sys_chunk(fs_info, chunk_objectid,
2905 chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002906 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002907 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002908 goto out;
2909 }
2910 }
2911
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002912 ret = btrfs_remove_block_group(trans, fs_info, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002913 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002914 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002915 goto out;
2916 }
2917
Josef Bacik47ab2a62014-09-18 11:20:02 -04002918out:
2919 /* once for us */
2920 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002921 return ret;
2922}
2923
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002924static int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002925{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002926 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason19c4d2f2016-10-10 13:43:31 -07002927 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002928 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002929
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002930 /*
2931 * Prevent races with automatic removal of unused block groups.
2932 * After we relocate and before we remove the chunk with offset
2933 * chunk_offset, automatic removal of the block group can kick in,
2934 * resulting in a failure when calling btrfs_remove_chunk() below.
2935 *
2936 * Make sure to acquire this mutex before doing a tree search (dev
2937 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2938 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2939 * we release the path used to search the chunk/dev tree and before
2940 * the current task acquires this mutex and calls us.
2941 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002942 ASSERT(mutex_is_locked(&fs_info->delete_unused_bgs_mutex));
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002943
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002944 ret = btrfs_can_relocate(fs_info, chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002945 if (ret)
2946 return -ENOSPC;
2947
Chris Mason8f18cf12008-04-25 16:53:30 -04002948 /* step one, relocate all the extents inside this chunk */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002949 btrfs_scrub_pause(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002950 ret = btrfs_relocate_block_group(fs_info, chunk_offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002951 btrfs_scrub_continue(fs_info);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002952 if (ret)
2953 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002954
Chris Mason19c4d2f2016-10-10 13:43:31 -07002955 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2956 chunk_offset);
2957 if (IS_ERR(trans)) {
2958 ret = PTR_ERR(trans);
2959 btrfs_handle_fs_error(root->fs_info, ret, NULL);
2960 return ret;
2961 }
Naohiro Aota5d8eb6f2016-09-02 16:46:32 +09002962
Chris Mason19c4d2f2016-10-10 13:43:31 -07002963 /*
2964 * step two, delete the device extents and the
2965 * chunk tree entries
2966 */
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002967 ret = btrfs_remove_chunk(trans, fs_info, chunk_offset);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002968 btrfs_end_transaction(trans);
Chris Mason19c4d2f2016-10-10 13:43:31 -07002969 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002970}
2971
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002972static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002973{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002974 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002975 struct btrfs_path *path;
2976 struct extent_buffer *leaf;
2977 struct btrfs_chunk *chunk;
2978 struct btrfs_key key;
2979 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05002980 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002981 bool retried = false;
2982 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002983 int ret;
2984
2985 path = btrfs_alloc_path();
2986 if (!path)
2987 return -ENOMEM;
2988
Josef Bacikba1bf482009-09-11 16:11:19 -04002989again:
Yan Zheng2b820322008-11-17 21:11:30 -05002990 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2991 key.offset = (u64)-1;
2992 key.type = BTRFS_CHUNK_ITEM_KEY;
2993
2994 while (1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002995 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002996 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002997 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002998 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002999 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003000 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003001 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05003002
3003 ret = btrfs_previous_item(chunk_root, path, key.objectid,
3004 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003005 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003006 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003007 if (ret < 0)
3008 goto error;
3009 if (ret > 0)
3010 break;
3011
3012 leaf = path->nodes[0];
3013 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3014
3015 chunk = btrfs_item_ptr(leaf, path->slots[0],
3016 struct btrfs_chunk);
3017 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02003018 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05003019
3020 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003021 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003022 if (ret == -ENOSPC)
3023 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05303024 else
3025 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05003026 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003027 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003028
3029 if (found_key.offset == 0)
3030 break;
3031 key.offset = found_key.offset - 1;
3032 }
3033 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04003034 if (failed && !retried) {
3035 failed = 0;
3036 retried = true;
3037 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303038 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04003039 ret = -ENOSPC;
3040 }
Yan Zheng2b820322008-11-17 21:11:30 -05003041error:
3042 btrfs_free_path(path);
3043 return ret;
3044}
3045
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003046static int insert_balance_item(struct btrfs_fs_info *fs_info,
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003047 struct btrfs_balance_control *bctl)
3048{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003049 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003050 struct btrfs_trans_handle *trans;
3051 struct btrfs_balance_item *item;
3052 struct btrfs_disk_balance_args disk_bargs;
3053 struct btrfs_path *path;
3054 struct extent_buffer *leaf;
3055 struct btrfs_key key;
3056 int ret, err;
3057
3058 path = btrfs_alloc_path();
3059 if (!path)
3060 return -ENOMEM;
3061
3062 trans = btrfs_start_transaction(root, 0);
3063 if (IS_ERR(trans)) {
3064 btrfs_free_path(path);
3065 return PTR_ERR(trans);
3066 }
3067
3068 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003069 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003070 key.offset = 0;
3071
3072 ret = btrfs_insert_empty_item(trans, root, path, &key,
3073 sizeof(*item));
3074 if (ret)
3075 goto out;
3076
3077 leaf = path->nodes[0];
3078 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3079
David Sterbab159fa22016-11-08 18:09:03 +01003080 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003081
3082 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
3083 btrfs_set_balance_data(leaf, item, &disk_bargs);
3084 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
3085 btrfs_set_balance_meta(leaf, item, &disk_bargs);
3086 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
3087 btrfs_set_balance_sys(leaf, item, &disk_bargs);
3088
3089 btrfs_set_balance_flags(leaf, item, bctl->flags);
3090
3091 btrfs_mark_buffer_dirty(leaf);
3092out:
3093 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003094 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003095 if (err && !ret)
3096 ret = err;
3097 return ret;
3098}
3099
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003100static int del_balance_item(struct btrfs_fs_info *fs_info)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003101{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003102 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003103 struct btrfs_trans_handle *trans;
3104 struct btrfs_path *path;
3105 struct btrfs_key key;
3106 int ret, err;
3107
3108 path = btrfs_alloc_path();
3109 if (!path)
3110 return -ENOMEM;
3111
3112 trans = btrfs_start_transaction(root, 0);
3113 if (IS_ERR(trans)) {
3114 btrfs_free_path(path);
3115 return PTR_ERR(trans);
3116 }
3117
3118 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003119 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003120 key.offset = 0;
3121
3122 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3123 if (ret < 0)
3124 goto out;
3125 if (ret > 0) {
3126 ret = -ENOENT;
3127 goto out;
3128 }
3129
3130 ret = btrfs_del_item(trans, root, path);
3131out:
3132 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003133 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003134 if (err && !ret)
3135 ret = err;
3136 return ret;
3137}
3138
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003139/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003140 * This is a heuristic used to reduce the number of chunks balanced on
3141 * resume after balance was interrupted.
3142 */
3143static void update_balance_args(struct btrfs_balance_control *bctl)
3144{
3145 /*
3146 * Turn on soft mode for chunk types that were being converted.
3147 */
3148 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3149 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3150 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3151 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3152 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3153 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3154
3155 /*
3156 * Turn on usage filter if is not already used. The idea is
3157 * that chunks that we have already balanced should be
3158 * reasonably full. Don't do it for chunks that are being
3159 * converted - that will keep us from relocating unconverted
3160 * (albeit full) chunks.
3161 */
3162 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003163 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003164 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3165 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3166 bctl->data.usage = 90;
3167 }
3168 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003169 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003170 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3171 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3172 bctl->sys.usage = 90;
3173 }
3174 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003175 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003176 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3177 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3178 bctl->meta.usage = 90;
3179 }
3180}
3181
3182/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003183 * Should be called with both balance and volume mutexes held to
3184 * serialize other volume operations (add_dev/rm_dev/resize) with
3185 * restriper. Same goes for unset_balance_control.
3186 */
3187static void set_balance_control(struct btrfs_balance_control *bctl)
3188{
3189 struct btrfs_fs_info *fs_info = bctl->fs_info;
3190
3191 BUG_ON(fs_info->balance_ctl);
3192
3193 spin_lock(&fs_info->balance_lock);
3194 fs_info->balance_ctl = bctl;
3195 spin_unlock(&fs_info->balance_lock);
3196}
3197
3198static void unset_balance_control(struct btrfs_fs_info *fs_info)
3199{
3200 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3201
3202 BUG_ON(!fs_info->balance_ctl);
3203
3204 spin_lock(&fs_info->balance_lock);
3205 fs_info->balance_ctl = NULL;
3206 spin_unlock(&fs_info->balance_lock);
3207
3208 kfree(bctl);
3209}
3210
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003211/*
3212 * Balance filters. Return 1 if chunk should be filtered out
3213 * (should not be balanced).
3214 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003215static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003216 struct btrfs_balance_args *bargs)
3217{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003218 chunk_type = chunk_to_extended(chunk_type) &
3219 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003220
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003221 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003222 return 0;
3223
3224 return 1;
3225}
3226
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003227static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003228 struct btrfs_balance_args *bargs)
3229{
3230 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003231 u64 chunk_used;
3232 u64 user_thresh_min;
3233 u64 user_thresh_max;
3234 int ret = 1;
3235
3236 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3237 chunk_used = btrfs_block_group_used(&cache->item);
3238
3239 if (bargs->usage_min == 0)
3240 user_thresh_min = 0;
3241 else
3242 user_thresh_min = div_factor_fine(cache->key.offset,
3243 bargs->usage_min);
3244
3245 if (bargs->usage_max == 0)
3246 user_thresh_max = 1;
3247 else if (bargs->usage_max > 100)
3248 user_thresh_max = cache->key.offset;
3249 else
3250 user_thresh_max = div_factor_fine(cache->key.offset,
3251 bargs->usage_max);
3252
3253 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3254 ret = 0;
3255
3256 btrfs_put_block_group(cache);
3257 return ret;
3258}
3259
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003260static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003261 u64 chunk_offset, struct btrfs_balance_args *bargs)
3262{
3263 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003264 u64 chunk_used, user_thresh;
3265 int ret = 1;
3266
3267 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3268 chunk_used = btrfs_block_group_used(&cache->item);
3269
David Sterbabc309462015-10-20 18:22:13 +02003270 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003271 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003272 else if (bargs->usage > 100)
3273 user_thresh = cache->key.offset;
3274 else
3275 user_thresh = div_factor_fine(cache->key.offset,
3276 bargs->usage);
3277
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003278 if (chunk_used < user_thresh)
3279 ret = 0;
3280
3281 btrfs_put_block_group(cache);
3282 return ret;
3283}
3284
Ilya Dryomov409d4042012-01-16 22:04:47 +02003285static int chunk_devid_filter(struct extent_buffer *leaf,
3286 struct btrfs_chunk *chunk,
3287 struct btrfs_balance_args *bargs)
3288{
3289 struct btrfs_stripe *stripe;
3290 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3291 int i;
3292
3293 for (i = 0; i < num_stripes; i++) {
3294 stripe = btrfs_stripe_nr(chunk, i);
3295 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3296 return 0;
3297 }
3298
3299 return 1;
3300}
3301
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003302/* [pstart, pend) */
3303static int chunk_drange_filter(struct extent_buffer *leaf,
3304 struct btrfs_chunk *chunk,
3305 u64 chunk_offset,
3306 struct btrfs_balance_args *bargs)
3307{
3308 struct btrfs_stripe *stripe;
3309 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3310 u64 stripe_offset;
3311 u64 stripe_length;
3312 int factor;
3313 int i;
3314
3315 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3316 return 0;
3317
3318 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003319 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3320 factor = num_stripes / 2;
3321 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3322 factor = num_stripes - 1;
3323 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3324 factor = num_stripes - 2;
3325 } else {
3326 factor = num_stripes;
3327 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003328
3329 for (i = 0; i < num_stripes; i++) {
3330 stripe = btrfs_stripe_nr(chunk, i);
3331 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3332 continue;
3333
3334 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3335 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003336 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003337
3338 if (stripe_offset < bargs->pend &&
3339 stripe_offset + stripe_length > bargs->pstart)
3340 return 0;
3341 }
3342
3343 return 1;
3344}
3345
Ilya Dryomovea671762012-01-16 22:04:48 +02003346/* [vstart, vend) */
3347static int chunk_vrange_filter(struct extent_buffer *leaf,
3348 struct btrfs_chunk *chunk,
3349 u64 chunk_offset,
3350 struct btrfs_balance_args *bargs)
3351{
3352 if (chunk_offset < bargs->vend &&
3353 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3354 /* at least part of the chunk is inside this vrange */
3355 return 0;
3356
3357 return 1;
3358}
3359
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003360static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3361 struct btrfs_chunk *chunk,
3362 struct btrfs_balance_args *bargs)
3363{
3364 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3365
3366 if (bargs->stripes_min <= num_stripes
3367 && num_stripes <= bargs->stripes_max)
3368 return 0;
3369
3370 return 1;
3371}
3372
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003373static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003374 struct btrfs_balance_args *bargs)
3375{
3376 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3377 return 0;
3378
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003379 chunk_type = chunk_to_extended(chunk_type) &
3380 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003381
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003382 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003383 return 1;
3384
3385 return 0;
3386}
3387
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003388static int should_balance_chunk(struct btrfs_fs_info *fs_info,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003389 struct extent_buffer *leaf,
3390 struct btrfs_chunk *chunk, u64 chunk_offset)
3391{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003392 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003393 struct btrfs_balance_args *bargs = NULL;
3394 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3395
3396 /* type filter */
3397 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3398 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3399 return 0;
3400 }
3401
3402 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3403 bargs = &bctl->data;
3404 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3405 bargs = &bctl->sys;
3406 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3407 bargs = &bctl->meta;
3408
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003409 /* profiles filter */
3410 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3411 chunk_profiles_filter(chunk_type, bargs)) {
3412 return 0;
3413 }
3414
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003415 /* usage filter */
3416 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003417 chunk_usage_filter(fs_info, chunk_offset, bargs)) {
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003418 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003419 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003420 chunk_usage_range_filter(fs_info, chunk_offset, bargs)) {
David Sterbabc309462015-10-20 18:22:13 +02003421 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003422 }
3423
Ilya Dryomov409d4042012-01-16 22:04:47 +02003424 /* devid filter */
3425 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3426 chunk_devid_filter(leaf, chunk, bargs)) {
3427 return 0;
3428 }
3429
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003430 /* drange filter, makes sense only with devid filter */
3431 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
3432 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
3433 return 0;
3434 }
3435
Ilya Dryomovea671762012-01-16 22:04:48 +02003436 /* vrange filter */
3437 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3438 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3439 return 0;
3440 }
3441
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003442 /* stripes filter */
3443 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3444 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3445 return 0;
3446 }
3447
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003448 /* soft profile changing mode */
3449 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3450 chunk_soft_convert_filter(chunk_type, bargs)) {
3451 return 0;
3452 }
3453
David Sterba7d824b62014-05-07 17:37:51 +02003454 /*
3455 * limited by count, must be the last filter
3456 */
3457 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3458 if (bargs->limit == 0)
3459 return 0;
3460 else
3461 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003462 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3463 /*
3464 * Same logic as the 'limit' filter; the minimum cannot be
Nicholas D Steeves01327612016-05-19 21:18:45 -04003465 * determined here because we do not have the global information
David Sterba12907fc2015-10-10 17:16:50 +02003466 * about the count of all chunks that satisfy the filters.
3467 */
3468 if (bargs->limit_max == 0)
3469 return 0;
3470 else
3471 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003472 }
3473
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003474 return 1;
3475}
3476
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003477static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003478{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003479 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003480 struct btrfs_root *chunk_root = fs_info->chunk_root;
3481 struct btrfs_root *dev_root = fs_info->dev_root;
3482 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003483 struct btrfs_device *device;
3484 u64 old_size;
3485 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003486 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003487 struct btrfs_chunk *chunk;
Liu Bo5a488b92016-07-12 11:24:21 -07003488 struct btrfs_path *path = NULL;
Chris Masonec44a352008-04-28 15:29:52 -04003489 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003490 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003491 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003492 struct extent_buffer *leaf;
3493 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003494 int ret;
3495 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003496 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003497 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003498 u64 limit_data = bctl->data.limit;
3499 u64 limit_meta = bctl->meta.limit;
3500 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003501 u32 count_data = 0;
3502 u32 count_meta = 0;
3503 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003504 int chunk_reserved = 0;
Liu Bocf25ce52015-12-14 18:29:32 -08003505 u64 bytes_used = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003506
Chris Masonec44a352008-04-28 15:29:52 -04003507 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003508 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003509 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003510 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003511 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003512 size_to_free = min_t(u64, size_to_free, SZ_1M);
Yan Zheng2b820322008-11-17 21:11:30 -05003513 if (!device->writeable ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003514 btrfs_device_get_total_bytes(device) -
3515 btrfs_device_get_bytes_used(device) > size_to_free ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01003516 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04003517 continue;
3518
3519 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003520 if (ret == -ENOSPC)
3521 break;
Liu Bo5a488b92016-07-12 11:24:21 -07003522 if (ret) {
3523 /* btrfs_shrink_device never returns ret > 0 */
3524 WARN_ON(ret > 0);
3525 goto error;
3526 }
Chris Masonec44a352008-04-28 15:29:52 -04003527
Yan, Zhenga22285a2010-05-16 10:48:46 -04003528 trans = btrfs_start_transaction(dev_root, 0);
Liu Bo5a488b92016-07-12 11:24:21 -07003529 if (IS_ERR(trans)) {
3530 ret = PTR_ERR(trans);
3531 btrfs_info_in_rcu(fs_info,
3532 "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu",
3533 rcu_str_deref(device->name), ret,
3534 old_size, old_size - size_to_free);
3535 goto error;
3536 }
Chris Masonec44a352008-04-28 15:29:52 -04003537
3538 ret = btrfs_grow_device(trans, device, old_size);
Liu Bo5a488b92016-07-12 11:24:21 -07003539 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003540 btrfs_end_transaction(trans);
Liu Bo5a488b92016-07-12 11:24:21 -07003541 /* btrfs_grow_device never returns ret > 0 */
3542 WARN_ON(ret > 0);
3543 btrfs_info_in_rcu(fs_info,
3544 "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu",
3545 rcu_str_deref(device->name), ret,
3546 old_size, old_size - size_to_free);
3547 goto error;
3548 }
Chris Masonec44a352008-04-28 15:29:52 -04003549
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003550 btrfs_end_transaction(trans);
Chris Masonec44a352008-04-28 15:29:52 -04003551 }
3552
3553 /* step two, relocate all the chunks */
3554 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003555 if (!path) {
3556 ret = -ENOMEM;
3557 goto error;
3558 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003559
3560 /* zero out stat counters */
3561 spin_lock(&fs_info->balance_lock);
3562 memset(&bctl->stat, 0, sizeof(bctl->stat));
3563 spin_unlock(&fs_info->balance_lock);
3564again:
David Sterba7d824b62014-05-07 17:37:51 +02003565 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003566 /*
3567 * The single value limit and min/max limits use the same bytes
3568 * in the
3569 */
David Sterba7d824b62014-05-07 17:37:51 +02003570 bctl->data.limit = limit_data;
3571 bctl->meta.limit = limit_meta;
3572 bctl->sys.limit = limit_sys;
3573 }
Chris Masonec44a352008-04-28 15:29:52 -04003574 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3575 key.offset = (u64)-1;
3576 key.type = BTRFS_CHUNK_ITEM_KEY;
3577
Chris Masond3977122009-01-05 21:25:51 -05003578 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003579 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003580 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003581 ret = -ECANCELED;
3582 goto error;
3583 }
3584
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003585 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003586 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003587 if (ret < 0) {
3588 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003589 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003590 }
Chris Masonec44a352008-04-28 15:29:52 -04003591
3592 /*
3593 * this shouldn't happen, it means the last relocate
3594 * failed
3595 */
3596 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003597 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003598
3599 ret = btrfs_previous_item(chunk_root, path, 0,
3600 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003601 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003602 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003603 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003604 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003605 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003606
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003607 leaf = path->nodes[0];
3608 slot = path->slots[0];
3609 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3610
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003611 if (found_key.objectid != key.objectid) {
3612 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003613 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003614 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003615
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003616 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003617 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003618
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003619 if (!counting) {
3620 spin_lock(&fs_info->balance_lock);
3621 bctl->stat.considered++;
3622 spin_unlock(&fs_info->balance_lock);
3623 }
3624
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003625 ret = should_balance_chunk(fs_info, leaf, chunk,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003626 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003627
David Sterbab3b4aa72011-04-21 01:20:15 +02003628 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003629 if (!ret) {
3630 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003631 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003632 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003633
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003634 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003635 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003636 spin_lock(&fs_info->balance_lock);
3637 bctl->stat.expected++;
3638 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003639
3640 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3641 count_data++;
3642 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3643 count_sys++;
3644 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3645 count_meta++;
3646
3647 goto loop;
3648 }
3649
3650 /*
3651 * Apply limit_min filter, no need to check if the LIMITS
3652 * filter is used, limit_min is 0 by default
3653 */
3654 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3655 count_data < bctl->data.limit_min)
3656 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3657 count_meta < bctl->meta.limit_min)
3658 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3659 count_sys < bctl->sys.limit_min)) {
3660 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003661 goto loop;
3662 }
3663
Liu Bocf25ce52015-12-14 18:29:32 -08003664 ASSERT(fs_info->data_sinfo);
3665 spin_lock(&fs_info->data_sinfo->lock);
3666 bytes_used = fs_info->data_sinfo->bytes_used;
3667 spin_unlock(&fs_info->data_sinfo->lock);
3668
3669 if ((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3670 !chunk_reserved && !bytes_used) {
Zhao Lei2c9fe832015-11-09 11:51:32 +08003671 trans = btrfs_start_transaction(chunk_root, 0);
3672 if (IS_ERR(trans)) {
3673 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3674 ret = PTR_ERR(trans);
3675 goto error;
3676 }
3677
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003678 ret = btrfs_force_chunk_alloc(trans, fs_info,
Zhao Lei2c9fe832015-11-09 11:51:32 +08003679 BTRFS_BLOCK_GROUP_DATA);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003680 btrfs_end_transaction(trans);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003681 if (ret < 0) {
3682 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3683 goto error;
3684 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003685 chunk_reserved = 1;
3686 }
3687
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003688 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003689 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003690 if (ret && ret != -ENOSPC)
3691 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003692 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003693 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003694 } else {
3695 spin_lock(&fs_info->balance_lock);
3696 bctl->stat.completed++;
3697 spin_unlock(&fs_info->balance_lock);
3698 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003699loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003700 if (found_key.offset == 0)
3701 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003702 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003703 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003704
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003705 if (counting) {
3706 btrfs_release_path(path);
3707 counting = false;
3708 goto again;
3709 }
Chris Masonec44a352008-04-28 15:29:52 -04003710error:
3711 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003712 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003713 btrfs_info(fs_info, "%d enospc errors during balance",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003714 enospc_errors);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003715 if (!ret)
3716 ret = -ENOSPC;
3717 }
3718
Chris Masonec44a352008-04-28 15:29:52 -04003719 return ret;
3720}
3721
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003722/**
3723 * alloc_profile_is_valid - see if a given profile is valid and reduced
3724 * @flags: profile to validate
3725 * @extended: if true @flags is treated as an extended profile
3726 */
3727static int alloc_profile_is_valid(u64 flags, int extended)
3728{
3729 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3730 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3731
3732 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3733
3734 /* 1) check that all other bits are zeroed */
3735 if (flags & ~mask)
3736 return 0;
3737
3738 /* 2) see if profile is reduced */
3739 if (flags == 0)
3740 return !extended; /* "0" is valid for usual profiles */
3741
3742 /* true if exactly one bit set */
3743 return (flags & (flags - 1)) == 0;
3744}
3745
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003746static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3747{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003748 /* cancel requested || normal exit path */
3749 return atomic_read(&fs_info->balance_cancel_req) ||
3750 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3751 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003752}
3753
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003754static void __cancel_balance(struct btrfs_fs_info *fs_info)
3755{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003756 int ret;
3757
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003758 unset_balance_control(fs_info);
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003759 ret = del_balance_item(fs_info);
Liu Bo0f788c52013-03-04 16:25:40 +00003760 if (ret)
Anand Jain34d97002016-03-16 16:43:06 +08003761 btrfs_handle_fs_error(fs_info, ret, NULL);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003762
David Sterba171938e2017-03-28 14:44:21 +02003763 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003764}
3765
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003766/* Non-zero return value signifies invalidity */
3767static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3768 u64 allowed)
3769{
3770 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3771 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3772 (bctl_arg->target & ~allowed)));
3773}
3774
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003775/*
3776 * Should be called with both balance and volume mutexes held
3777 */
3778int btrfs_balance(struct btrfs_balance_control *bctl,
3779 struct btrfs_ioctl_balance_args *bargs)
3780{
3781 struct btrfs_fs_info *fs_info = bctl->fs_info;
Adam Borowski14506122017-03-07 23:34:44 +01003782 u64 meta_target, data_target;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003783 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003784 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003785 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003786 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003787 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003788
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003789 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003790 atomic_read(&fs_info->balance_pause_req) ||
3791 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003792 ret = -EINVAL;
3793 goto out;
3794 }
3795
Ilya Dryomove4837f82012-03-27 17:09:17 +03003796 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3797 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3798 mixed = 1;
3799
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003800 /*
3801 * In case of mixed groups both data and meta should be picked,
3802 * and identical options should be given for both of them.
3803 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003804 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3805 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003806 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3807 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3808 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003809 btrfs_err(fs_info,
3810 "with mixed groups data and metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003811 ret = -EINVAL;
3812 goto out;
3813 }
3814 }
3815
Stefan Behrens8dabb742012-11-06 13:15:27 +01003816 num_devices = fs_info->fs_devices->num_devices;
Liu Bo73beece2015-07-17 16:49:19 +08003817 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrens8dabb742012-11-06 13:15:27 +01003818 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3819 BUG_ON(num_devices < 1);
3820 num_devices--;
3821 }
Liu Bo73beece2015-07-17 16:49:19 +08003822 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Austin S. Hemmelgarn88be1592016-03-23 14:22:59 -04003823 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP;
3824 if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003825 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003826 if (num_devices > 2)
3827 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3828 if (num_devices > 3)
3829 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3830 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003831 if (validate_convert_profile(&bctl->data, allowed)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003832 btrfs_err(fs_info,
3833 "unable to start balance with target data profile %llu",
3834 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003835 ret = -EINVAL;
3836 goto out;
3837 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003838 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003839 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003840 "unable to start balance with target metadata profile %llu",
3841 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003842 ret = -EINVAL;
3843 goto out;
3844 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003845 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003846 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003847 "unable to start balance with target system profile %llu",
3848 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003849 ret = -EINVAL;
3850 goto out;
3851 }
3852
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003853 /* allow to reduce meta or sys integrity only if force set */
3854 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003855 BTRFS_BLOCK_GROUP_RAID10 |
3856 BTRFS_BLOCK_GROUP_RAID5 |
3857 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003858 do {
3859 seq = read_seqbegin(&fs_info->profiles_lock);
3860
3861 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3862 (fs_info->avail_system_alloc_bits & allowed) &&
3863 !(bctl->sys.target & allowed)) ||
3864 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3865 (fs_info->avail_metadata_alloc_bits & allowed) &&
3866 !(bctl->meta.target & allowed))) {
3867 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003868 btrfs_info(fs_info,
3869 "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003870 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003871 btrfs_err(fs_info,
3872 "balance will reduce metadata integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003873 ret = -EINVAL;
3874 goto out;
3875 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003876 }
Miao Xiede98ced2013-01-29 10:13:12 +00003877 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003878
Adam Borowski14506122017-03-07 23:34:44 +01003879 /* if we're not converting, the target field is uninitialized */
3880 meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3881 bctl->meta.target : fs_info->avail_metadata_alloc_bits;
3882 data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3883 bctl->data.target : fs_info->avail_data_alloc_bits;
3884 if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) <
3885 btrfs_get_num_tolerated_disk_barrier_failures(data_target)) {
Sam Tygieree592d02016-01-06 08:46:12 +00003886 btrfs_warn(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003887 "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
Adam Borowski14506122017-03-07 23:34:44 +01003888 meta_target, data_target);
Sam Tygieree592d02016-01-06 08:46:12 +00003889 }
3890
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003891 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
Zhao Lei943c6e92015-08-19 15:54:15 +08003892 fs_info->num_tolerated_disk_barrier_failures = min(
3893 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info),
3894 btrfs_get_num_tolerated_disk_barrier_failures(
3895 bctl->sys.target));
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003896 }
3897
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003898 ret = insert_balance_item(fs_info, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003899 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003900 goto out;
3901
Ilya Dryomov59641012012-01-16 22:04:48 +02003902 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3903 BUG_ON(ret == -EEXIST);
3904 set_balance_control(bctl);
3905 } else {
3906 BUG_ON(ret != -EEXIST);
3907 spin_lock(&fs_info->balance_lock);
3908 update_balance_args(bctl);
3909 spin_unlock(&fs_info->balance_lock);
3910 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003911
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003912 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003913 mutex_unlock(&fs_info->balance_mutex);
3914
3915 ret = __btrfs_balance(fs_info);
3916
3917 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003918 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003919
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003920 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3921 fs_info->num_tolerated_disk_barrier_failures =
3922 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3923 }
3924
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003925 if (bargs) {
3926 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003927 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003928 }
3929
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003930 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3931 balance_need_close(fs_info)) {
3932 __cancel_balance(fs_info);
3933 }
3934
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003935 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003936
3937 return ret;
3938out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003939 if (bctl->flags & BTRFS_BALANCE_RESUME)
3940 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003941 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003942 kfree(bctl);
David Sterba171938e2017-03-28 14:44:21 +02003943 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003944 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003945 return ret;
3946}
3947
3948static int balance_kthread(void *data)
3949{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003950 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003951 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003952
3953 mutex_lock(&fs_info->volume_mutex);
3954 mutex_lock(&fs_info->balance_mutex);
3955
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003956 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003957 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003958 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003959 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003960
3961 mutex_unlock(&fs_info->balance_mutex);
3962 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003963
Ilya Dryomov59641012012-01-16 22:04:48 +02003964 return ret;
3965}
3966
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003967int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3968{
3969 struct task_struct *tsk;
3970
3971 spin_lock(&fs_info->balance_lock);
3972 if (!fs_info->balance_ctl) {
3973 spin_unlock(&fs_info->balance_lock);
3974 return 0;
3975 }
3976 spin_unlock(&fs_info->balance_lock);
3977
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003978 if (btrfs_test_opt(fs_info, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003979 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003980 return 0;
3981 }
3982
3983 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303984 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003985}
3986
Ilya Dryomov68310a52012-06-22 12:24:12 -06003987int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003988{
Ilya Dryomov59641012012-01-16 22:04:48 +02003989 struct btrfs_balance_control *bctl;
3990 struct btrfs_balance_item *item;
3991 struct btrfs_disk_balance_args disk_bargs;
3992 struct btrfs_path *path;
3993 struct extent_buffer *leaf;
3994 struct btrfs_key key;
3995 int ret;
3996
3997 path = btrfs_alloc_path();
3998 if (!path)
3999 return -ENOMEM;
4000
Ilya Dryomov68310a52012-06-22 12:24:12 -06004001 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01004002 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06004003 key.offset = 0;
4004
4005 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
4006 if (ret < 0)
4007 goto out;
4008 if (ret > 0) { /* ret = -ENOENT; */
4009 ret = 0;
4010 goto out;
4011 }
4012
Ilya Dryomov59641012012-01-16 22:04:48 +02004013 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4014 if (!bctl) {
4015 ret = -ENOMEM;
4016 goto out;
4017 }
4018
Ilya Dryomov59641012012-01-16 22:04:48 +02004019 leaf = path->nodes[0];
4020 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
4021
Ilya Dryomov68310a52012-06-22 12:24:12 -06004022 bctl->fs_info = fs_info;
4023 bctl->flags = btrfs_balance_flags(leaf, item);
4024 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02004025
4026 btrfs_balance_data(leaf, item, &disk_bargs);
4027 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
4028 btrfs_balance_meta(leaf, item, &disk_bargs);
4029 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
4030 btrfs_balance_sys(leaf, item, &disk_bargs);
4031 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
4032
David Sterba171938e2017-03-28 14:44:21 +02004033 WARN_ON(test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004034
Ilya Dryomov68310a52012-06-22 12:24:12 -06004035 mutex_lock(&fs_info->volume_mutex);
4036 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004037
Ilya Dryomov68310a52012-06-22 12:24:12 -06004038 set_balance_control(bctl);
4039
4040 mutex_unlock(&fs_info->balance_mutex);
4041 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004042out:
4043 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004044 return ret;
4045}
4046
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004047int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
4048{
4049 int ret = 0;
4050
4051 mutex_lock(&fs_info->balance_mutex);
4052 if (!fs_info->balance_ctl) {
4053 mutex_unlock(&fs_info->balance_mutex);
4054 return -ENOTCONN;
4055 }
4056
4057 if (atomic_read(&fs_info->balance_running)) {
4058 atomic_inc(&fs_info->balance_pause_req);
4059 mutex_unlock(&fs_info->balance_mutex);
4060
4061 wait_event(fs_info->balance_wait_q,
4062 atomic_read(&fs_info->balance_running) == 0);
4063
4064 mutex_lock(&fs_info->balance_mutex);
4065 /* we are good with balance_ctl ripped off from under us */
4066 BUG_ON(atomic_read(&fs_info->balance_running));
4067 atomic_dec(&fs_info->balance_pause_req);
4068 } else {
4069 ret = -ENOTCONN;
4070 }
4071
4072 mutex_unlock(&fs_info->balance_mutex);
4073 return ret;
4074}
4075
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004076int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
4077{
Ilya Dryomove649e582013-10-10 20:40:21 +03004078 if (fs_info->sb->s_flags & MS_RDONLY)
4079 return -EROFS;
4080
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004081 mutex_lock(&fs_info->balance_mutex);
4082 if (!fs_info->balance_ctl) {
4083 mutex_unlock(&fs_info->balance_mutex);
4084 return -ENOTCONN;
4085 }
4086
4087 atomic_inc(&fs_info->balance_cancel_req);
4088 /*
4089 * if we are running just wait and return, balance item is
4090 * deleted in btrfs_balance in this case
4091 */
4092 if (atomic_read(&fs_info->balance_running)) {
4093 mutex_unlock(&fs_info->balance_mutex);
4094 wait_event(fs_info->balance_wait_q,
4095 atomic_read(&fs_info->balance_running) == 0);
4096 mutex_lock(&fs_info->balance_mutex);
4097 } else {
4098 /* __cancel_balance needs volume_mutex */
4099 mutex_unlock(&fs_info->balance_mutex);
4100 mutex_lock(&fs_info->volume_mutex);
4101 mutex_lock(&fs_info->balance_mutex);
4102
4103 if (fs_info->balance_ctl)
4104 __cancel_balance(fs_info);
4105
4106 mutex_unlock(&fs_info->volume_mutex);
4107 }
4108
4109 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
4110 atomic_dec(&fs_info->balance_cancel_req);
4111 mutex_unlock(&fs_info->balance_mutex);
4112 return 0;
4113}
4114
Stefan Behrens803b2f52013-08-15 17:11:21 +02004115static int btrfs_uuid_scan_kthread(void *data)
4116{
4117 struct btrfs_fs_info *fs_info = data;
4118 struct btrfs_root *root = fs_info->tree_root;
4119 struct btrfs_key key;
4120 struct btrfs_key max_key;
4121 struct btrfs_path *path = NULL;
4122 int ret = 0;
4123 struct extent_buffer *eb;
4124 int slot;
4125 struct btrfs_root_item root_item;
4126 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004127 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004128
4129 path = btrfs_alloc_path();
4130 if (!path) {
4131 ret = -ENOMEM;
4132 goto out;
4133 }
4134
4135 key.objectid = 0;
4136 key.type = BTRFS_ROOT_ITEM_KEY;
4137 key.offset = 0;
4138
4139 max_key.objectid = (u64)-1;
4140 max_key.type = BTRFS_ROOT_ITEM_KEY;
4141 max_key.offset = (u64)-1;
4142
Stefan Behrens803b2f52013-08-15 17:11:21 +02004143 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004144 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004145 if (ret) {
4146 if (ret > 0)
4147 ret = 0;
4148 break;
4149 }
4150
4151 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4152 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4153 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4154 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4155 goto skip;
4156
4157 eb = path->nodes[0];
4158 slot = path->slots[0];
4159 item_size = btrfs_item_size_nr(eb, slot);
4160 if (item_size < sizeof(root_item))
4161 goto skip;
4162
Stefan Behrens803b2f52013-08-15 17:11:21 +02004163 read_extent_buffer(eb, &root_item,
4164 btrfs_item_ptr_offset(eb, slot),
4165 (int)sizeof(root_item));
4166 if (btrfs_root_refs(&root_item) == 0)
4167 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004168
4169 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4170 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4171 if (trans)
4172 goto update_tree;
4173
4174 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004175 /*
4176 * 1 - subvol uuid item
4177 * 1 - received_subvol uuid item
4178 */
4179 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4180 if (IS_ERR(trans)) {
4181 ret = PTR_ERR(trans);
4182 break;
4183 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004184 continue;
4185 } else {
4186 goto skip;
4187 }
4188update_tree:
4189 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004190 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004191 root_item.uuid,
4192 BTRFS_UUID_KEY_SUBVOL,
4193 key.objectid);
4194 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004195 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004196 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004197 break;
4198 }
4199 }
4200
4201 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004202 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004203 root_item.received_uuid,
4204 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4205 key.objectid);
4206 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004207 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004208 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004209 break;
4210 }
4211 }
4212
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004213skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004214 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004215 ret = btrfs_end_transaction(trans);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004216 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004217 if (ret)
4218 break;
4219 }
4220
Stefan Behrens803b2f52013-08-15 17:11:21 +02004221 btrfs_release_path(path);
4222 if (key.offset < (u64)-1) {
4223 key.offset++;
4224 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4225 key.offset = 0;
4226 key.type = BTRFS_ROOT_ITEM_KEY;
4227 } else if (key.objectid < (u64)-1) {
4228 key.offset = 0;
4229 key.type = BTRFS_ROOT_ITEM_KEY;
4230 key.objectid++;
4231 } else {
4232 break;
4233 }
4234 cond_resched();
4235 }
4236
4237out:
4238 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004239 if (trans && !IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004240 btrfs_end_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004241 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004242 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004243 else
Josef Bacikafcdd122016-09-02 15:40:02 -04004244 set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004245 up(&fs_info->uuid_tree_rescan_sem);
4246 return 0;
4247}
4248
Stefan Behrens70f80172013-08-15 17:11:23 +02004249/*
4250 * Callback for btrfs_uuid_tree_iterate().
4251 * returns:
4252 * 0 check succeeded, the entry is not outdated.
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08004253 * < 0 if an error occurred.
Stefan Behrens70f80172013-08-15 17:11:23 +02004254 * > 0 if the check failed, which means the caller shall remove the entry.
4255 */
4256static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4257 u8 *uuid, u8 type, u64 subid)
4258{
4259 struct btrfs_key key;
4260 int ret = 0;
4261 struct btrfs_root *subvol_root;
4262
4263 if (type != BTRFS_UUID_KEY_SUBVOL &&
4264 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4265 goto out;
4266
4267 key.objectid = subid;
4268 key.type = BTRFS_ROOT_ITEM_KEY;
4269 key.offset = (u64)-1;
4270 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4271 if (IS_ERR(subvol_root)) {
4272 ret = PTR_ERR(subvol_root);
4273 if (ret == -ENOENT)
4274 ret = 1;
4275 goto out;
4276 }
4277
4278 switch (type) {
4279 case BTRFS_UUID_KEY_SUBVOL:
4280 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4281 ret = 1;
4282 break;
4283 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4284 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4285 BTRFS_UUID_SIZE))
4286 ret = 1;
4287 break;
4288 }
4289
4290out:
4291 return ret;
4292}
4293
4294static int btrfs_uuid_rescan_kthread(void *data)
4295{
4296 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4297 int ret;
4298
4299 /*
4300 * 1st step is to iterate through the existing UUID tree and
4301 * to delete all entries that contain outdated data.
4302 * 2nd step is to add all missing entries to the UUID tree.
4303 */
4304 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4305 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004306 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004307 up(&fs_info->uuid_tree_rescan_sem);
4308 return ret;
4309 }
4310 return btrfs_uuid_scan_kthread(data);
4311}
4312
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004313int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4314{
4315 struct btrfs_trans_handle *trans;
4316 struct btrfs_root *tree_root = fs_info->tree_root;
4317 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004318 struct task_struct *task;
4319 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004320
4321 /*
4322 * 1 - root node
4323 * 1 - root item
4324 */
4325 trans = btrfs_start_transaction(tree_root, 2);
4326 if (IS_ERR(trans))
4327 return PTR_ERR(trans);
4328
4329 uuid_root = btrfs_create_tree(trans, fs_info,
4330 BTRFS_UUID_TREE_OBJECTID);
4331 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004332 ret = PTR_ERR(uuid_root);
Jeff Mahoney66642832016-06-10 18:19:25 -04004333 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004334 btrfs_end_transaction(trans);
David Sterba6d13f542015-04-24 19:12:01 +02004335 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004336 }
4337
4338 fs_info->uuid_root = uuid_root;
4339
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004340 ret = btrfs_commit_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004341 if (ret)
4342 return ret;
4343
4344 down(&fs_info->uuid_tree_rescan_sem);
4345 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4346 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004347 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004348 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004349 up(&fs_info->uuid_tree_rescan_sem);
4350 return PTR_ERR(task);
4351 }
4352
4353 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004354}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004355
Stefan Behrens70f80172013-08-15 17:11:23 +02004356int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4357{
4358 struct task_struct *task;
4359
4360 down(&fs_info->uuid_tree_rescan_sem);
4361 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4362 if (IS_ERR(task)) {
4363 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004364 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004365 up(&fs_info->uuid_tree_rescan_sem);
4366 return PTR_ERR(task);
4367 }
4368
4369 return 0;
4370}
4371
Chris Mason8f18cf12008-04-25 16:53:30 -04004372/*
4373 * shrinking a device means finding all of the device extents past
4374 * the new size, and then following the back refs to the chunks.
4375 * The chunk relocation code actually frees the device extent
4376 */
4377int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4378{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004379 struct btrfs_fs_info *fs_info = device->fs_info;
4380 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04004381 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04004382 struct btrfs_dev_extent *dev_extent = NULL;
4383 struct btrfs_path *path;
4384 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004385 u64 chunk_offset;
4386 int ret;
4387 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004388 int failed = 0;
4389 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004390 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004391 struct extent_buffer *l;
4392 struct btrfs_key key;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004393 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004394 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004395 u64 old_size = btrfs_device_get_total_bytes(device);
4396 u64 diff = old_size - new_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04004397
Stefan Behrens63a212a2012-11-05 18:29:28 +01004398 if (device->is_tgtdev_for_dev_replace)
4399 return -EINVAL;
4400
Chris Mason8f18cf12008-04-25 16:53:30 -04004401 path = btrfs_alloc_path();
4402 if (!path)
4403 return -ENOMEM;
4404
David Sterbae4058b52015-11-27 16:31:35 +01004405 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04004406
David Sterba34441362016-10-04 19:34:27 +02004407 mutex_lock(&fs_info->chunk_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04004408
Miao Xie7cc8e582014-09-03 21:35:38 +08004409 btrfs_device_set_total_bytes(device, new_size);
Josef Bacik2bf64752011-09-26 17:12:22 -04004410 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05004411 device->fs_devices->total_rw_bytes -= diff;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004412 spin_lock(&fs_info->free_chunk_lock);
4413 fs_info->free_chunk_space -= diff;
4414 spin_unlock(&fs_info->free_chunk_lock);
Josef Bacik2bf64752011-09-26 17:12:22 -04004415 }
David Sterba34441362016-10-04 19:34:27 +02004416 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004417
Josef Bacikba1bf482009-09-11 16:11:19 -04004418again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004419 key.objectid = device->devid;
4420 key.offset = (u64)-1;
4421 key.type = BTRFS_DEV_EXTENT_KEY;
4422
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004423 do {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004424 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004425 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004426 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004427 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004428 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004429 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004430
4431 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004432 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004433 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004434 if (ret < 0)
4435 goto done;
4436 if (ret) {
4437 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004438 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004439 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004440 }
4441
4442 l = path->nodes[0];
4443 slot = path->slots[0];
4444 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4445
Josef Bacikba1bf482009-09-11 16:11:19 -04004446 if (key.objectid != device->devid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004447 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004448 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004449 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004450 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004451
4452 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4453 length = btrfs_dev_extent_length(l, dev_extent);
4454
Josef Bacikba1bf482009-09-11 16:11:19 -04004455 if (key.offset + length <= new_size) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004456 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004457 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004458 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004459 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004460
Chris Mason8f18cf12008-04-25 16:53:30 -04004461 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004462 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004463
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004464 ret = btrfs_relocate_chunk(fs_info, chunk_offset);
4465 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004466 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004467 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004468 if (ret == -ENOSPC)
4469 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004470 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004471
4472 if (failed && !retried) {
4473 failed = 0;
4474 retried = true;
4475 goto again;
4476 } else if (failed && retried) {
4477 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004478 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004479 }
4480
Chris Balld6397ba2009-04-27 07:29:03 -04004481 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004482 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004483 if (IS_ERR(trans)) {
4484 ret = PTR_ERR(trans);
4485 goto done;
4486 }
4487
David Sterba34441362016-10-04 19:34:27 +02004488 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004489
4490 /*
4491 * We checked in the above loop all device extents that were already in
4492 * the device tree. However before we have updated the device's
4493 * total_bytes to the new size, we might have had chunk allocations that
4494 * have not complete yet (new block groups attached to transaction
4495 * handles), and therefore their device extents were not yet in the
4496 * device tree and we missed them in the loop above. So if we have any
4497 * pending chunk using a device extent that overlaps the device range
4498 * that we can not use anymore, commit the current transaction and
4499 * repeat the search on the device tree - this way we guarantee we will
4500 * not have chunks using device extents that end beyond 'new_size'.
4501 */
4502 if (!checked_pending_chunks) {
4503 u64 start = new_size;
4504 u64 len = old_size - new_size;
4505
Jeff Mahoney499f3772015-06-15 09:41:17 -04004506 if (contains_pending_extent(trans->transaction, device,
4507 &start, len)) {
David Sterba34441362016-10-04 19:34:27 +02004508 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004509 checked_pending_chunks = true;
4510 failed = 0;
4511 retried = false;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004512 ret = btrfs_commit_transaction(trans);
Filipe Manana53e489b2015-06-02 14:43:21 +01004513 if (ret)
4514 goto done;
4515 goto again;
4516 }
4517 }
4518
Miao Xie7cc8e582014-09-03 21:35:38 +08004519 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004520 if (list_empty(&device->resized_list))
4521 list_add_tail(&device->resized_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004522 &fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004523
Chris Balld6397ba2009-04-27 07:29:03 -04004524 WARN_ON(diff > old_total);
4525 btrfs_set_super_total_bytes(super_copy, old_total - diff);
David Sterba34441362016-10-04 19:34:27 +02004526 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08004527
4528 /* Now btrfs_update_device() will change the on-disk size. */
4529 ret = btrfs_update_device(trans, device);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004530 btrfs_end_transaction(trans);
Chris Mason8f18cf12008-04-25 16:53:30 -04004531done:
4532 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004533 if (ret) {
David Sterba34441362016-10-04 19:34:27 +02004534 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004535 btrfs_device_set_total_bytes(device, old_size);
4536 if (device->writeable)
4537 device->fs_devices->total_rw_bytes += diff;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004538 spin_lock(&fs_info->free_chunk_lock);
4539 fs_info->free_chunk_space += diff;
4540 spin_unlock(&fs_info->free_chunk_lock);
David Sterba34441362016-10-04 19:34:27 +02004541 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004542 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004543 return ret;
4544}
4545
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004546static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04004547 struct btrfs_key *key,
4548 struct btrfs_chunk *chunk, int item_size)
4549{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004550 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004551 struct btrfs_disk_key disk_key;
4552 u32 array_size;
4553 u8 *ptr;
4554
David Sterba34441362016-10-04 19:34:27 +02004555 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004556 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004557 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004558 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
David Sterba34441362016-10-04 19:34:27 +02004559 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004560 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004561 }
Chris Mason0b86a832008-03-24 15:01:56 -04004562
4563 ptr = super_copy->sys_chunk_array + array_size;
4564 btrfs_cpu_key_to_disk(&disk_key, key);
4565 memcpy(ptr, &disk_key, sizeof(disk_key));
4566 ptr += sizeof(disk_key);
4567 memcpy(ptr, chunk, item_size);
4568 item_size += sizeof(disk_key);
4569 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
David Sterba34441362016-10-04 19:34:27 +02004570 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004571
Chris Mason0b86a832008-03-24 15:01:56 -04004572 return 0;
4573}
4574
Miao Xieb2117a32011-01-05 10:07:28 +00004575/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004576 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004577 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004578static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004579{
Arne Jansen73c5de02011-04-12 12:07:57 +02004580 const struct btrfs_device_info *di_a = a;
4581 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004582
Arne Jansen73c5de02011-04-12 12:07:57 +02004583 if (di_a->max_avail > di_b->max_avail)
4584 return -1;
4585 if (di_a->max_avail < di_b->max_avail)
4586 return 1;
4587 if (di_a->total_avail > di_b->total_avail)
4588 return -1;
4589 if (di_a->total_avail < di_b->total_avail)
4590 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004591 return 0;
4592}
4593
David Woodhouse53b381b2013-01-29 18:40:14 -05004594static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
4595{
4596 /* TODO allow them to set a preferred stripe size */
Byongho Leeee221842015-12-15 01:42:10 +09004597 return SZ_64K;
David Woodhouse53b381b2013-01-29 18:40:14 -05004598}
4599
4600static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4601{
Zhao Leiffe2d202015-01-20 15:11:44 +08004602 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004603 return;
4604
Miao Xieceda0862013-04-11 10:30:16 +00004605 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004606}
4607
Jeff Mahoneyda170662016-06-15 09:22:56 -04004608#define BTRFS_MAX_DEVS(r) ((BTRFS_MAX_ITEM_SIZE(r->fs_info) \
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004609 - sizeof(struct btrfs_chunk)) \
4610 / sizeof(struct btrfs_stripe) + 1)
4611
4612#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4613 - 2 * sizeof(struct btrfs_disk_key) \
4614 - 2 * sizeof(struct btrfs_chunk)) \
4615 / sizeof(struct btrfs_stripe) + 1)
4616
Miao Xieb2117a32011-01-05 10:07:28 +00004617static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
David Sterba72b468c2017-02-10 19:46:27 +01004618 u64 start, u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004619{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004620 struct btrfs_fs_info *info = trans->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004621 struct btrfs_fs_devices *fs_devices = info->fs_devices;
4622 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02004623 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004624 struct extent_map_tree *em_tree;
4625 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004626 struct btrfs_device_info *devices_info = NULL;
4627 u64 total_avail;
4628 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004629 int data_stripes; /* number of stripes that count for
4630 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004631 int sub_stripes; /* sub_stripes info for map */
4632 int dev_stripes; /* stripes per dev */
4633 int devs_max; /* max devs to use */
4634 int devs_min; /* min devs needed */
4635 int devs_increment; /* ndevs has to be a multiple of this */
4636 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004637 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004638 u64 max_stripe_size;
4639 u64 max_chunk_size;
4640 u64 stripe_size;
4641 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004642 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02004643 int ndevs;
4644 int i;
4645 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004646 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004647
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004648 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004649
Miao Xieb2117a32011-01-05 10:07:28 +00004650 if (list_empty(&fs_devices->alloc_list))
4651 return -ENOSPC;
4652
Liu Bo31e50222012-11-21 14:18:10 +00004653 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004654
Liu Bo31e50222012-11-21 14:18:10 +00004655 sub_stripes = btrfs_raid_array[index].sub_stripes;
4656 dev_stripes = btrfs_raid_array[index].dev_stripes;
4657 devs_max = btrfs_raid_array[index].devs_max;
4658 devs_min = btrfs_raid_array[index].devs_min;
4659 devs_increment = btrfs_raid_array[index].devs_increment;
4660 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004661
4662 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004663 max_stripe_size = SZ_1G;
Arne Jansen73c5de02011-04-12 12:07:57 +02004664 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004665 if (!devs_max)
4666 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004667 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004668 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004669 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4670 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004671 else
Byongho Leeee221842015-12-15 01:42:10 +09004672 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004673 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004674 if (!devs_max)
4675 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004676 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004677 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004678 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004679 if (!devs_max)
4680 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004681 } else {
David Sterba351fd352014-05-15 16:48:20 +02004682 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004683 type);
4684 BUG_ON(1);
4685 }
4686
4687 /* we don't want a chunk larger than 10% of writeable space */
4688 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4689 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004690
David Sterba31e818f2015-02-20 18:00:26 +01004691 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004692 GFP_NOFS);
4693 if (!devices_info)
4694 return -ENOMEM;
4695
Arne Jansen73c5de02011-04-12 12:07:57 +02004696 cur = fs_devices->alloc_list.next;
4697
4698 /*
4699 * in the first pass through the devices list, we gather information
4700 * about the available holes on each device.
4701 */
4702 ndevs = 0;
4703 while (cur != &fs_devices->alloc_list) {
4704 struct btrfs_device *device;
4705 u64 max_avail;
4706 u64 dev_offset;
4707
4708 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4709
4710 cur = cur->next;
4711
4712 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004713 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004714 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004715 continue;
4716 }
4717
Stefan Behrens63a212a2012-11-05 18:29:28 +01004718 if (!device->in_fs_metadata ||
4719 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004720 continue;
4721
4722 if (device->total_bytes > device->bytes_used)
4723 total_avail = device->total_bytes - device->bytes_used;
4724 else
4725 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004726
4727 /* If there is no space on this device, skip it. */
4728 if (total_avail == 0)
4729 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004730
Josef Bacik6df9a952013-06-27 13:22:46 -04004731 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004732 max_stripe_size * dev_stripes,
4733 &dev_offset, &max_avail);
4734 if (ret && ret != -ENOSPC)
4735 goto error;
4736
4737 if (ret == 0)
4738 max_avail = max_stripe_size * dev_stripes;
4739
4740 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4741 continue;
4742
Eric Sandeen063d0062013-01-31 00:55:01 +00004743 if (ndevs == fs_devices->rw_devices) {
4744 WARN(1, "%s: found more than %llu devices\n",
4745 __func__, fs_devices->rw_devices);
4746 break;
4747 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004748 devices_info[ndevs].dev_offset = dev_offset;
4749 devices_info[ndevs].max_avail = max_avail;
4750 devices_info[ndevs].total_avail = total_avail;
4751 devices_info[ndevs].dev = device;
4752 ++ndevs;
4753 }
4754
4755 /*
4756 * now sort the devices by hole size / available space
4757 */
4758 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4759 btrfs_cmp_device_info, NULL);
4760
4761 /* round down to number of usable stripes */
4762 ndevs -= ndevs % devs_increment;
4763
4764 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4765 ret = -ENOSPC;
4766 goto error;
4767 }
4768
4769 if (devs_max && ndevs > devs_max)
4770 ndevs = devs_max;
4771 /*
4772 * the primary goal is to maximize the number of stripes, so use as many
4773 * devices as possible, even if the stripes are not maximum sized.
4774 */
4775 stripe_size = devices_info[ndevs-1].max_avail;
4776 num_stripes = ndevs * dev_stripes;
4777
David Woodhouse53b381b2013-01-29 18:40:14 -05004778 /*
4779 * this will have to be fixed for RAID1 and RAID10 over
4780 * more drives
4781 */
4782 data_stripes = num_stripes / ncopies;
4783
David Woodhouse53b381b2013-01-29 18:40:14 -05004784 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4785 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004786 info->stripesize);
David Woodhouse53b381b2013-01-29 18:40:14 -05004787 data_stripes = num_stripes - 1;
4788 }
4789 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4790 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004791 info->stripesize);
David Woodhouse53b381b2013-01-29 18:40:14 -05004792 data_stripes = num_stripes - 2;
4793 }
Chris Mason86db2572013-02-20 16:23:40 -05004794
4795 /*
4796 * Use the number of data stripes to figure out how big this chunk
4797 * is really going to be in terms of logical address space,
4798 * and compare that answer with the max chunk size
4799 */
4800 if (stripe_size * data_stripes > max_chunk_size) {
4801 u64 mask = (1ULL << 24) - 1;
David Sterbab8b93ad2015-01-16 17:26:13 +01004802
4803 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004804
4805 /* bump the answer up to a 16MB boundary */
4806 stripe_size = (stripe_size + mask) & ~mask;
4807
4808 /* but don't go higher than the limits we found
4809 * while searching for free extents
4810 */
4811 if (stripe_size > devices_info[ndevs-1].max_avail)
4812 stripe_size = devices_info[ndevs-1].max_avail;
4813 }
4814
David Sterbab8b93ad2015-01-16 17:26:13 +01004815 stripe_size = div_u64(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004816
4817 /* align to BTRFS_STRIPE_LEN */
Liu Bo42c61ab2017-04-03 13:45:24 -07004818 stripe_size = div64_u64(stripe_size, raid_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05004819 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004820
Miao Xieb2117a32011-01-05 10:07:28 +00004821 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4822 if (!map) {
4823 ret = -ENOMEM;
4824 goto error;
4825 }
4826 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004827
Arne Jansen73c5de02011-04-12 12:07:57 +02004828 for (i = 0; i < ndevs; ++i) {
4829 for (j = 0; j < dev_stripes; ++j) {
4830 int s = i * dev_stripes + j;
4831 map->stripes[s].dev = devices_info[i].dev;
4832 map->stripes[s].physical = devices_info[i].dev_offset +
4833 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004834 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004835 }
Jeff Mahoneyda170662016-06-15 09:22:56 -04004836 map->sector_size = info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004837 map->stripe_len = raid_stripe_len;
4838 map->io_align = raid_stripe_len;
4839 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004840 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004841 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004842
David Woodhouse53b381b2013-01-29 18:40:14 -05004843 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004844
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004845 trace_btrfs_chunk_alloc(info, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004846
David Sterba172ddd62011-04-21 00:48:27 +02004847 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004848 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004849 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004850 ret = -ENOMEM;
4851 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004852 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004853 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004854 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004855 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004856 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004857 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004858 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004859 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004860
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004861 em_tree = &info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004862 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004863 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004864 if (!ret) {
4865 list_add_tail(&em->list, &trans->transaction->pending_chunks);
Elena Reshetova490b54d2017-03-03 10:55:12 +02004866 refcount_inc(&em->refs);
Josef Bacik6df9a952013-06-27 13:22:46 -04004867 }
Chris Mason890871b2009-09-02 16:24:52 -04004868 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004869 if (ret) {
4870 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004871 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004872 }
Yan Zheng2b820322008-11-17 21:11:30 -05004873
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004874 ret = btrfs_make_block_group(trans, info, 0, type,
Josef Bacik04487482013-01-29 15:03:37 -05004875 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4876 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004877 if (ret)
4878 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004879
Miao Xie7cc8e582014-09-03 21:35:38 +08004880 for (i = 0; i < map->num_stripes; i++) {
4881 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4882 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4883 }
Miao Xie43530c42014-09-03 21:35:36 +08004884
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004885 spin_lock(&info->free_chunk_lock);
4886 info->free_chunk_space -= (stripe_size * map->num_stripes);
4887 spin_unlock(&info->free_chunk_lock);
Miao Xie1c116182014-09-03 21:35:37 +08004888
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004889 free_extent_map(em);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004890 check_raid56_incompat_flag(info, type);
David Woodhouse53b381b2013-01-29 18:40:14 -05004891
Miao Xieb2117a32011-01-05 10:07:28 +00004892 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004893 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004894
Josef Bacik6df9a952013-06-27 13:22:46 -04004895error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004896 write_lock(&em_tree->lock);
4897 remove_extent_mapping(em_tree, em);
4898 write_unlock(&em_tree->lock);
4899
4900 /* One for our allocation */
4901 free_extent_map(em);
4902 /* One for the tree reference */
4903 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004904 /* One for the pending_chunks list reference */
4905 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004906error:
Miao Xieb2117a32011-01-05 10:07:28 +00004907 kfree(devices_info);
4908 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004909}
4910
Josef Bacik6df9a952013-06-27 13:22:46 -04004911int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004912 struct btrfs_fs_info *fs_info,
Josef Bacik6df9a952013-06-27 13:22:46 -04004913 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004914{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004915 struct btrfs_root *extent_root = fs_info->extent_root;
4916 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05004917 struct btrfs_key key;
Yan Zheng2b820322008-11-17 21:11:30 -05004918 struct btrfs_device *device;
4919 struct btrfs_chunk *chunk;
4920 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004921 struct extent_map *em;
4922 struct map_lookup *map;
4923 size_t item_size;
4924 u64 dev_offset;
4925 u64 stripe_size;
4926 int i = 0;
Chris Mason140e6392015-12-23 13:30:51 -08004927 int ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004928
Liu Bo592d92e2017-03-14 13:33:55 -07004929 em = get_chunk_map(fs_info, chunk_offset, chunk_size);
4930 if (IS_ERR(em))
4931 return PTR_ERR(em);
Josef Bacik6df9a952013-06-27 13:22:46 -04004932
Jeff Mahoney95617d62015-06-03 10:55:48 -04004933 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004934 item_size = btrfs_chunk_item_size(map->num_stripes);
4935 stripe_size = em->orig_block_len;
4936
4937 chunk = kzalloc(item_size, GFP_NOFS);
4938 if (!chunk) {
4939 ret = -ENOMEM;
4940 goto out;
4941 }
4942
Filipe Manana50460e32015-11-20 10:42:47 +00004943 /*
4944 * Take the device list mutex to prevent races with the final phase of
4945 * a device replace operation that replaces the device object associated
4946 * with the map's stripes, because the device object's id can change
4947 * at any time during that final phase of the device replace operation
4948 * (dev-replace.c:btrfs_dev_replace_finishing()).
4949 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004950 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04004951 for (i = 0; i < map->num_stripes; i++) {
4952 device = map->stripes[i].dev;
4953 dev_offset = map->stripes[i].physical;
4954
Yan Zheng2b820322008-11-17 21:11:30 -05004955 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004956 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004957 break;
Josef Bacik6df9a952013-06-27 13:22:46 -04004958 ret = btrfs_alloc_dev_extent(trans, device,
4959 chunk_root->root_key.objectid,
4960 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4961 chunk_offset, dev_offset,
4962 stripe_size);
4963 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004964 break;
4965 }
4966 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004967 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe Manana50460e32015-11-20 10:42:47 +00004968 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004969 }
4970
Yan Zheng2b820322008-11-17 21:11:30 -05004971 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004972 for (i = 0; i < map->num_stripes; i++) {
4973 device = map->stripes[i].dev;
4974 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004975
4976 btrfs_set_stack_stripe_devid(stripe, device->devid);
4977 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4978 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4979 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004980 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004981 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05004982
4983 btrfs_set_stack_chunk_length(chunk, chunk_size);
4984 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4985 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4986 btrfs_set_stack_chunk_type(chunk, map->type);
4987 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4988 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4989 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004990 btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize);
Yan Zheng2b820322008-11-17 21:11:30 -05004991 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4992
4993 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4994 key.type = BTRFS_CHUNK_ITEM_KEY;
4995 key.offset = chunk_offset;
4996
4997 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004998 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4999 /*
5000 * TODO: Cleanup of inserted chunk root in case of
5001 * failure.
5002 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005003 ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05005004 }
liubo1abe9b82011-03-24 11:18:59 +00005005
Josef Bacik6df9a952013-06-27 13:22:46 -04005006out:
Yan Zheng2b820322008-11-17 21:11:30 -05005007 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04005008 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07005009 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005010}
5011
5012/*
5013 * Chunk allocation falls into two parts. The first part does works
5014 * that make the new allocated chunk useable, but not do any operation
5015 * that modifies the chunk tree. The second part does the works that
5016 * require modifying the chunk tree. This division is important for the
5017 * bootstrap process of adding storage to a seed btrfs.
5018 */
5019int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005020 struct btrfs_fs_info *fs_info, u64 type)
Yan Zheng2b820322008-11-17 21:11:30 -05005021{
5022 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005023
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005024 ASSERT(mutex_is_locked(&fs_info->chunk_mutex));
5025 chunk_offset = find_next_chunk(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005026 return __btrfs_alloc_chunk(trans, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05005027}
5028
Chris Masond3977122009-01-05 21:25:51 -05005029static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +01005030 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05005031{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005032 struct btrfs_root *extent_root = fs_info->extent_root;
Yan Zheng2b820322008-11-17 21:11:30 -05005033 u64 chunk_offset;
5034 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005035 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05005036 int ret;
5037
Josef Bacik6df9a952013-06-27 13:22:46 -04005038 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00005039 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
David Sterba72b468c2017-02-10 19:46:27 +01005040 ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005041 if (ret)
5042 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005043
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005044 sys_chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00005045 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
David Sterba72b468c2017-02-10 19:46:27 +01005046 ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005047 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005048}
5049
Miao Xied20983b2014-07-03 18:22:13 +08005050static inline int btrfs_chunk_max_errors(struct map_lookup *map)
5051{
5052 int max_errors;
5053
5054 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5055 BTRFS_BLOCK_GROUP_RAID10 |
5056 BTRFS_BLOCK_GROUP_RAID5 |
5057 BTRFS_BLOCK_GROUP_DUP)) {
5058 max_errors = 1;
5059 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
5060 max_errors = 2;
5061 } else {
5062 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005063 }
5064
Miao Xied20983b2014-07-03 18:22:13 +08005065 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05005066}
5067
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005068int btrfs_chunk_readonly(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Yan Zheng2b820322008-11-17 21:11:30 -05005069{
5070 struct extent_map *em;
5071 struct map_lookup *map;
Yan Zheng2b820322008-11-17 21:11:30 -05005072 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08005073 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005074 int i;
5075
Liu Bo592d92e2017-03-14 13:33:55 -07005076 em = get_chunk_map(fs_info, chunk_offset, 1);
5077 if (IS_ERR(em))
Yan Zheng2b820322008-11-17 21:11:30 -05005078 return 1;
5079
Jeff Mahoney95617d62015-06-03 10:55:48 -04005080 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05005081 for (i = 0; i < map->num_stripes; i++) {
Miao Xied20983b2014-07-03 18:22:13 +08005082 if (map->stripes[i].dev->missing) {
5083 miss_ndevs++;
5084 continue;
5085 }
5086
Yan Zheng2b820322008-11-17 21:11:30 -05005087 if (!map->stripes[i].dev->writeable) {
5088 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08005089 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05005090 }
5091 }
Miao Xied20983b2014-07-03 18:22:13 +08005092
5093 /*
5094 * If the number of missing devices is larger than max errors,
5095 * we can not write the data into that chunk successfully, so
5096 * set it readonly.
5097 */
5098 if (miss_ndevs > btrfs_chunk_max_errors(map))
5099 readonly = 1;
5100end:
Yan Zheng2b820322008-11-17 21:11:30 -05005101 free_extent_map(em);
5102 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04005103}
5104
5105void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
5106{
David Sterbaa8067e02011-04-21 00:34:43 +02005107 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04005108}
5109
5110void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
5111{
5112 struct extent_map *em;
5113
Chris Masond3977122009-01-05 21:25:51 -05005114 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04005115 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005116 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
5117 if (em)
5118 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04005119 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005120 if (!em)
5121 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005122 /* once for us */
5123 free_extent_map(em);
5124 /* once for the tree */
5125 free_extent_map(em);
5126 }
5127}
5128
Stefan Behrens5d964052012-11-05 14:59:07 +01005129int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005130{
5131 struct extent_map *em;
5132 struct map_lookup *map;
Chris Masonf1885912008-04-09 16:28:12 -04005133 int ret;
5134
Liu Bo592d92e2017-03-14 13:33:55 -07005135 em = get_chunk_map(fs_info, logical, len);
5136 if (IS_ERR(em))
5137 /*
5138 * We could return errors for these cases, but that could get
5139 * ugly and we'd probably do the same thing which is just not do
5140 * anything else and exit, so return 1 so the callers don't try
5141 * to use other copies.
5142 */
Josef Bacikfb7669b2013-04-23 10:53:18 -04005143 return 1;
Josef Bacikfb7669b2013-04-23 10:53:18 -04005144
Jeff Mahoney95617d62015-06-03 10:55:48 -04005145 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005146 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5147 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005148 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5149 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005150 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5151 ret = 2;
5152 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5153 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04005154 else
5155 ret = 1;
5156 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005157
Liu Bo73beece2015-07-17 16:49:19 +08005158 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Liu Bo6fad8232017-03-14 13:33:59 -07005159 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) &&
5160 fs_info->dev_replace.tgtdev)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005161 ret++;
Liu Bo73beece2015-07-17 16:49:19 +08005162 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005163
Chris Masonf1885912008-04-09 16:28:12 -04005164 return ret;
5165}
5166
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005167unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005168 struct btrfs_mapping_tree *map_tree,
5169 u64 logical)
5170{
5171 struct extent_map *em;
5172 struct map_lookup *map;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005173 unsigned long len = fs_info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05005174
Liu Bo592d92e2017-03-14 13:33:55 -07005175 em = get_chunk_map(fs_info, logical, len);
Liu Bo539b50d2017-03-14 13:34:01 -07005176 WARN_ON(IS_ERR(em));
David Woodhouse53b381b2013-01-29 18:40:14 -05005177
Jeff Mahoney95617d62015-06-03 10:55:48 -04005178 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005179 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005180 len = map->stripe_len * nr_data_stripes(map);
David Woodhouse53b381b2013-01-29 18:40:14 -05005181 free_extent_map(em);
5182 return len;
5183}
5184
Liu Bo592d92e2017-03-14 13:33:55 -07005185int btrfs_is_parity_mirror(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005186 u64 logical, u64 len, int mirror_num)
5187{
5188 struct extent_map *em;
5189 struct map_lookup *map;
David Woodhouse53b381b2013-01-29 18:40:14 -05005190 int ret = 0;
5191
Liu Bo592d92e2017-03-14 13:33:55 -07005192 em = get_chunk_map(fs_info, logical, len);
Liu Bo539b50d2017-03-14 13:34:01 -07005193 WARN_ON(IS_ERR(em));
David Woodhouse53b381b2013-01-29 18:40:14 -05005194
Jeff Mahoney95617d62015-06-03 10:55:48 -04005195 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005196 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005197 ret = 1;
5198 free_extent_map(em);
5199 return ret;
5200}
5201
Stefan Behrens30d98612012-11-06 14:52:18 +01005202static int find_live_mirror(struct btrfs_fs_info *fs_info,
5203 struct map_lookup *map, int first, int num,
5204 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005205{
5206 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01005207 int tolerance;
5208 struct btrfs_device *srcdev;
5209
5210 if (dev_replace_is_ongoing &&
5211 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5212 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5213 srcdev = fs_info->dev_replace.srcdev;
5214 else
5215 srcdev = NULL;
5216
5217 /*
5218 * try to avoid the drive that is the source drive for a
5219 * dev-replace procedure, only choose it if no other non-missing
5220 * mirror is available
5221 */
5222 for (tolerance = 0; tolerance < 2; tolerance++) {
5223 if (map->stripes[optimal].dev->bdev &&
5224 (tolerance || map->stripes[optimal].dev != srcdev))
5225 return optimal;
5226 for (i = first; i < first + num; i++) {
5227 if (map->stripes[i].dev->bdev &&
5228 (tolerance || map->stripes[i].dev != srcdev))
5229 return i;
5230 }
Chris Masondfe25022008-05-13 13:46:40 -04005231 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005232
Chris Masondfe25022008-05-13 13:46:40 -04005233 /* we couldn't find one that doesn't fail. Just return something
5234 * and the io error handling code will clean up eventually
5235 */
5236 return optimal;
5237}
5238
David Woodhouse53b381b2013-01-29 18:40:14 -05005239static inline int parity_smaller(u64 a, u64 b)
5240{
5241 return a > b;
5242}
5243
5244/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005245static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005246{
5247 struct btrfs_bio_stripe s;
5248 int i;
5249 u64 l;
5250 int again = 1;
5251
5252 while (again) {
5253 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005254 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005255 if (parity_smaller(bbio->raid_map[i],
5256 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005257 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005258 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005259 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005260 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005261 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005262 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005263
David Woodhouse53b381b2013-01-29 18:40:14 -05005264 again = 1;
5265 }
5266 }
5267 }
5268}
5269
Zhao Lei6e9606d2015-01-20 15:11:34 +08005270static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5271{
5272 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005273 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005274 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005275 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005276 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005277 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005278 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005279 /*
5280 * plus the raid_map, which includes both the tgt dev
5281 * and the stripes
5282 */
5283 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005284 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005285
5286 atomic_set(&bbio->error, 0);
Elena Reshetova140475a2017-03-03 10:55:10 +02005287 refcount_set(&bbio->refs, 1);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005288
5289 return bbio;
5290}
5291
5292void btrfs_get_bbio(struct btrfs_bio *bbio)
5293{
Elena Reshetova140475a2017-03-03 10:55:10 +02005294 WARN_ON(!refcount_read(&bbio->refs));
5295 refcount_inc(&bbio->refs);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005296}
5297
5298void btrfs_put_bbio(struct btrfs_bio *bbio)
5299{
5300 if (!bbio)
5301 return;
Elena Reshetova140475a2017-03-03 10:55:10 +02005302 if (refcount_dec_and_test(&bbio->refs))
Zhao Lei6e9606d2015-01-20 15:11:34 +08005303 kfree(bbio);
5304}
5305
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005306/* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */
5307/*
5308 * Please note that, discard won't be sent to target device of device
5309 * replace.
5310 */
5311static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info,
5312 u64 logical, u64 length,
5313 struct btrfs_bio **bbio_ret)
5314{
5315 struct extent_map *em;
5316 struct map_lookup *map;
5317 struct btrfs_bio *bbio;
5318 u64 offset;
5319 u64 stripe_nr;
5320 u64 stripe_nr_end;
5321 u64 stripe_end_offset;
5322 u64 stripe_cnt;
5323 u64 stripe_len;
5324 u64 stripe_offset;
5325 u64 num_stripes;
5326 u32 stripe_index;
5327 u32 factor = 0;
5328 u32 sub_stripes = 0;
5329 u64 stripes_per_dev = 0;
5330 u32 remaining_stripes = 0;
5331 u32 last_stripe = 0;
5332 int ret = 0;
5333 int i;
5334
5335 /* discard always return a bbio */
5336 ASSERT(bbio_ret);
5337
5338 em = get_chunk_map(fs_info, logical, length);
5339 if (IS_ERR(em))
5340 return PTR_ERR(em);
5341
5342 map = em->map_lookup;
5343 /* we don't discard raid56 yet */
5344 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
5345 ret = -EOPNOTSUPP;
5346 goto out;
5347 }
5348
5349 offset = logical - em->start;
5350 length = min_t(u64, em->len - offset, length);
5351
5352 stripe_len = map->stripe_len;
5353 /*
5354 * stripe_nr counts the total number of stripes we have to stride
5355 * to get to this block
5356 */
5357 stripe_nr = div64_u64(offset, stripe_len);
5358
5359 /* stripe_offset is the offset of this block in its stripe */
5360 stripe_offset = offset - stripe_nr * stripe_len;
5361
5362 stripe_nr_end = round_up(offset + length, map->stripe_len);
Liu Bo42c61ab2017-04-03 13:45:24 -07005363 stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005364 stripe_cnt = stripe_nr_end - stripe_nr;
5365 stripe_end_offset = stripe_nr_end * map->stripe_len -
5366 (offset + length);
5367 /*
5368 * after this, stripe_nr is the number of stripes on this
5369 * device we have to walk to find the data, and stripe_index is
5370 * the number of our device in the stripe array
5371 */
5372 num_stripes = 1;
5373 stripe_index = 0;
5374 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5375 BTRFS_BLOCK_GROUP_RAID10)) {
5376 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5377 sub_stripes = 1;
5378 else
5379 sub_stripes = map->sub_stripes;
5380
5381 factor = map->num_stripes / sub_stripes;
5382 num_stripes = min_t(u64, map->num_stripes,
5383 sub_stripes * stripe_cnt);
5384 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
5385 stripe_index *= sub_stripes;
5386 stripes_per_dev = div_u64_rem(stripe_cnt, factor,
5387 &remaining_stripes);
5388 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5389 last_stripe *= sub_stripes;
5390 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5391 BTRFS_BLOCK_GROUP_DUP)) {
5392 num_stripes = map->num_stripes;
5393 } else {
5394 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5395 &stripe_index);
5396 }
5397
5398 bbio = alloc_btrfs_bio(num_stripes, 0);
5399 if (!bbio) {
5400 ret = -ENOMEM;
5401 goto out;
5402 }
5403
5404 for (i = 0; i < num_stripes; i++) {
5405 bbio->stripes[i].physical =
5406 map->stripes[stripe_index].physical +
5407 stripe_offset + stripe_nr * map->stripe_len;
5408 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
5409
5410 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5411 BTRFS_BLOCK_GROUP_RAID10)) {
5412 bbio->stripes[i].length = stripes_per_dev *
5413 map->stripe_len;
5414
5415 if (i / sub_stripes < remaining_stripes)
5416 bbio->stripes[i].length +=
5417 map->stripe_len;
5418
5419 /*
5420 * Special for the first stripe and
5421 * the last stripe:
5422 *
5423 * |-------|...|-------|
5424 * |----------|
5425 * off end_off
5426 */
5427 if (i < sub_stripes)
5428 bbio->stripes[i].length -=
5429 stripe_offset;
5430
5431 if (stripe_index >= last_stripe &&
5432 stripe_index <= (last_stripe +
5433 sub_stripes - 1))
5434 bbio->stripes[i].length -=
5435 stripe_end_offset;
5436
5437 if (i == sub_stripes - 1)
5438 stripe_offset = 0;
5439 } else {
5440 bbio->stripes[i].length = length;
5441 }
5442
5443 stripe_index++;
5444 if (stripe_index == map->num_stripes) {
5445 stripe_index = 0;
5446 stripe_nr++;
5447 }
5448 }
5449
5450 *bbio_ret = bbio;
5451 bbio->map_type = map->type;
5452 bbio->num_stripes = num_stripes;
5453out:
5454 free_extent_map(em);
5455 return ret;
5456}
5457
Liu Bo5ab56092017-03-14 13:33:57 -07005458/*
5459 * In dev-replace case, for repair case (that's the only case where the mirror
5460 * is selected explicitly when calling btrfs_map_block), blocks left of the
5461 * left cursor can also be read from the target drive.
5462 *
5463 * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the
5464 * array of stripes.
5465 * For READ, it also needs to be supported using the same mirror number.
5466 *
5467 * If the requested block is not left of the left cursor, EIO is returned. This
5468 * can happen because btrfs_num_copies() returns one more in the dev-replace
5469 * case.
5470 */
5471static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info,
5472 u64 logical, u64 length,
5473 u64 srcdev_devid, int *mirror_num,
5474 u64 *physical)
5475{
5476 struct btrfs_bio *bbio = NULL;
5477 int num_stripes;
5478 int index_srcdev = 0;
5479 int found = 0;
5480 u64 physical_of_found = 0;
5481 int i;
5482 int ret = 0;
5483
5484 ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
5485 logical, &length, &bbio, 0, 0);
5486 if (ret) {
5487 ASSERT(bbio == NULL);
5488 return ret;
5489 }
5490
5491 num_stripes = bbio->num_stripes;
5492 if (*mirror_num > num_stripes) {
5493 /*
5494 * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror,
5495 * that means that the requested area is not left of the left
5496 * cursor
5497 */
5498 btrfs_put_bbio(bbio);
5499 return -EIO;
5500 }
5501
5502 /*
5503 * process the rest of the function using the mirror_num of the source
5504 * drive. Therefore look it up first. At the end, patch the device
5505 * pointer to the one of the target drive.
5506 */
5507 for (i = 0; i < num_stripes; i++) {
5508 if (bbio->stripes[i].dev->devid != srcdev_devid)
5509 continue;
5510
5511 /*
5512 * In case of DUP, in order to keep it simple, only add the
5513 * mirror with the lowest physical address
5514 */
5515 if (found &&
5516 physical_of_found <= bbio->stripes[i].physical)
5517 continue;
5518
5519 index_srcdev = i;
5520 found = 1;
5521 physical_of_found = bbio->stripes[i].physical;
5522 }
5523
5524 btrfs_put_bbio(bbio);
5525
5526 ASSERT(found);
5527 if (!found)
5528 return -EIO;
5529
5530 *mirror_num = index_srcdev + 1;
5531 *physical = physical_of_found;
5532 return ret;
5533}
5534
Liu Bo73c0f222017-03-14 13:33:58 -07005535static void handle_ops_on_dev_replace(enum btrfs_map_op op,
5536 struct btrfs_bio **bbio_ret,
5537 struct btrfs_dev_replace *dev_replace,
5538 int *num_stripes_ret, int *max_errors_ret)
5539{
5540 struct btrfs_bio *bbio = *bbio_ret;
5541 u64 srcdev_devid = dev_replace->srcdev->devid;
5542 int tgtdev_indexes = 0;
5543 int num_stripes = *num_stripes_ret;
5544 int max_errors = *max_errors_ret;
5545 int i;
5546
5547 if (op == BTRFS_MAP_WRITE) {
5548 int index_where_to_add;
5549
5550 /*
5551 * duplicate the write operations while the dev replace
5552 * procedure is running. Since the copying of the old disk to
5553 * the new disk takes place at run time while the filesystem is
5554 * mounted writable, the regular write operations to the old
5555 * disk have to be duplicated to go to the new disk as well.
5556 *
5557 * Note that device->missing is handled by the caller, and that
5558 * the write to the old disk is already set up in the stripes
5559 * array.
5560 */
5561 index_where_to_add = num_stripes;
5562 for (i = 0; i < num_stripes; i++) {
5563 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5564 /* write to new disk, too */
5565 struct btrfs_bio_stripe *new =
5566 bbio->stripes + index_where_to_add;
5567 struct btrfs_bio_stripe *old =
5568 bbio->stripes + i;
5569
5570 new->physical = old->physical;
5571 new->length = old->length;
5572 new->dev = dev_replace->tgtdev;
5573 bbio->tgtdev_map[i] = index_where_to_add;
5574 index_where_to_add++;
5575 max_errors++;
5576 tgtdev_indexes++;
5577 }
5578 }
5579 num_stripes = index_where_to_add;
5580 } else if (op == BTRFS_MAP_GET_READ_MIRRORS) {
5581 int index_srcdev = 0;
5582 int found = 0;
5583 u64 physical_of_found = 0;
5584
5585 /*
5586 * During the dev-replace procedure, the target drive can also
5587 * be used to read data in case it is needed to repair a corrupt
5588 * block elsewhere. This is possible if the requested area is
5589 * left of the left cursor. In this area, the target drive is a
5590 * full copy of the source drive.
5591 */
5592 for (i = 0; i < num_stripes; i++) {
5593 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5594 /*
5595 * In case of DUP, in order to keep it simple,
5596 * only add the mirror with the lowest physical
5597 * address
5598 */
5599 if (found &&
5600 physical_of_found <=
5601 bbio->stripes[i].physical)
5602 continue;
5603 index_srcdev = i;
5604 found = 1;
5605 physical_of_found = bbio->stripes[i].physical;
5606 }
5607 }
5608 if (found) {
5609 struct btrfs_bio_stripe *tgtdev_stripe =
5610 bbio->stripes + num_stripes;
5611
5612 tgtdev_stripe->physical = physical_of_found;
5613 tgtdev_stripe->length =
5614 bbio->stripes[index_srcdev].length;
5615 tgtdev_stripe->dev = dev_replace->tgtdev;
5616 bbio->tgtdev_map[index_srcdev] = num_stripes;
5617
5618 tgtdev_indexes++;
5619 num_stripes++;
5620 }
5621 }
5622
5623 *num_stripes_ret = num_stripes;
5624 *max_errors_ret = max_errors;
5625 bbio->num_tgtdevs = tgtdev_indexes;
5626 *bbio_ret = bbio;
5627}
5628
Liu Bo2b19a1f2017-03-14 13:34:00 -07005629static bool need_full_stripe(enum btrfs_map_op op)
5630{
5631 return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS);
5632}
5633
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005634static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
5635 enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005636 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005637 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005638 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005639{
5640 struct extent_map *em;
5641 struct map_lookup *map;
Chris Mason0b86a832008-03-24 15:01:56 -04005642 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005643 u64 stripe_offset;
5644 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005645 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005646 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005647 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005648 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005649 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005650 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005651 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005652 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005653 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5654 int dev_replace_is_ongoing = 0;
5655 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005656 int patch_the_first_stripe_for_dev_replace = 0;
5657 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005658 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005659
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005660 if (op == BTRFS_MAP_DISCARD)
5661 return __btrfs_map_block_for_discard(fs_info, logical,
5662 *length, bbio_ret);
5663
Liu Bo592d92e2017-03-14 13:33:55 -07005664 em = get_chunk_map(fs_info, logical, *length);
5665 if (IS_ERR(em))
5666 return PTR_ERR(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005667
Jeff Mahoney95617d62015-06-03 10:55:48 -04005668 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005669 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005670
David Woodhouse53b381b2013-01-29 18:40:14 -05005671 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005672 stripe_nr = offset;
5673 /*
5674 * stripe_nr counts the total number of stripes we have to stride
5675 * to get to this block
5676 */
David Sterba47c57132015-02-20 18:43:47 +01005677 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005678
David Woodhouse53b381b2013-01-29 18:40:14 -05005679 stripe_offset = stripe_nr * stripe_len;
Josef Bacike042d1e2016-04-12 12:54:40 -04005680 if (offset < stripe_offset) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005681 btrfs_crit(fs_info,
5682 "stripe math has gone wrong, stripe_offset=%llu, offset=%llu, start=%llu, logical=%llu, stripe_len=%llu",
Josef Bacike042d1e2016-04-12 12:54:40 -04005683 stripe_offset, offset, em->start, logical,
5684 stripe_len);
5685 free_extent_map(em);
5686 return -EINVAL;
5687 }
Chris Mason593060d2008-03-25 16:50:33 -04005688
5689 /* stripe_offset is the offset of this block in its stripe*/
5690 stripe_offset = offset - stripe_offset;
5691
David Woodhouse53b381b2013-01-29 18:40:14 -05005692 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005693 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005694 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5695 raid56_full_stripe_start = offset;
5696
5697 /* allow a write of a full stripe, but make sure we don't
5698 * allow straddling of stripes
5699 */
David Sterba47c57132015-02-20 18:43:47 +01005700 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5701 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005702 raid56_full_stripe_start *= full_stripe_len;
5703 }
5704
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005705 if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005706 u64 max_len;
5707 /* For writes to RAID[56], allow a full stripeset across all disks.
5708 For other RAID types and for RAID[56] reads, just allow a single
5709 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005710 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005711 (op == BTRFS_MAP_WRITE)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005712 max_len = stripe_len * nr_data_stripes(map) -
5713 (offset - raid56_full_stripe_start);
5714 } else {
5715 /* we limit the length of each bio to what fits in a stripe */
5716 max_len = stripe_len - stripe_offset;
5717 }
5718 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005719 } else {
5720 *length = em->len - offset;
5721 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005722
David Woodhouse53b381b2013-01-29 18:40:14 -05005723 /* This is for when we're called from btrfs_merge_bio_hook() and all
5724 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005725 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005726 goto out;
5727
Liu Bo73beece2015-07-17 16:49:19 +08005728 btrfs_dev_replace_lock(dev_replace, 0);
Stefan Behrens472262f2012-11-06 14:43:46 +01005729 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5730 if (!dev_replace_is_ongoing)
Liu Bo73beece2015-07-17 16:49:19 +08005731 btrfs_dev_replace_unlock(dev_replace, 0);
5732 else
5733 btrfs_dev_replace_set_lock_blocking(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005734
Stefan Behrensad6d6202012-11-06 15:06:47 +01005735 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005736 !need_full_stripe(op) && dev_replace->tgtdev != NULL) {
Liu Bo5ab56092017-03-14 13:33:57 -07005737 ret = get_extra_mirror_from_replace(fs_info, logical, *length,
5738 dev_replace->srcdev->devid,
5739 &mirror_num,
5740 &physical_to_patch_in_first_stripe);
5741 if (ret)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005742 goto out;
Liu Bo5ab56092017-03-14 13:33:57 -07005743 else
5744 patch_the_first_stripe_for_dev_replace = 1;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005745 } else if (mirror_num > map->num_stripes) {
5746 mirror_num = 0;
5747 }
5748
Chris Masonf2d8d742008-04-21 10:03:05 -04005749 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005750 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005751 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
David Sterba47c57132015-02-20 18:43:47 +01005752 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5753 &stripe_index);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005754 if (op != BTRFS_MAP_WRITE && op != BTRFS_MAP_GET_READ_MIRRORS)
Miao Xie28e1cc72014-09-12 18:44:02 +08005755 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005756 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005757 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS)
Chris Masonf2d8d742008-04-21 10:03:05 -04005758 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005759 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005760 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005761 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005762 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005763 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005764 current->pid % map->num_stripes,
5765 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005766 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005767 }
Chris Mason2fff7342008-04-29 14:12:09 -04005768
Chris Mason611f0e02008-04-03 16:29:03 -04005769 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005770 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005771 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005772 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005773 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005774 } else {
5775 mirror_num = 1;
5776 }
Chris Mason2fff7342008-04-29 14:12:09 -04005777
Chris Mason321aecc2008-04-16 10:49:51 -04005778 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005779 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005780
David Sterba47c57132015-02-20 18:43:47 +01005781 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005782 stripe_index *= map->sub_stripes;
5783
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005784 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS)
Chris Masonf2d8d742008-04-21 10:03:05 -04005785 num_stripes = map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005786 else if (mirror_num)
5787 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005788 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005789 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005790 stripe_index = find_live_mirror(fs_info, map,
5791 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005792 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005793 current->pid % map->sub_stripes,
5794 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005795 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005796 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005797
Zhao Leiffe2d202015-01-20 15:11:44 +08005798 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005799 if (need_raid_map &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005800 (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS ||
Miao Xieaf8e2d12014-10-23 14:42:50 +08005801 mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005802 /* push stripe_nr back to the start of the full stripe */
Liu Bo42c61ab2017-04-03 13:45:24 -07005803 stripe_nr = div64_u64(raid56_full_stripe_start,
David Sterbab8b93ad2015-01-16 17:26:13 +01005804 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005805
5806 /* RAID[56] write or recovery. Return all stripes */
5807 num_stripes = map->num_stripes;
5808 max_errors = nr_parity_stripes(map);
5809
David Woodhouse53b381b2013-01-29 18:40:14 -05005810 *length = map->stripe_len;
5811 stripe_index = 0;
5812 stripe_offset = 0;
5813 } else {
5814 /*
5815 * Mirror #0 or #1 means the original data block.
5816 * Mirror #2 is RAID5 parity block.
5817 * Mirror #3 is RAID6 Q block.
5818 */
David Sterba47c57132015-02-20 18:43:47 +01005819 stripe_nr = div_u64_rem(stripe_nr,
5820 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005821 if (mirror_num > 1)
5822 stripe_index = nr_data_stripes(map) +
5823 mirror_num - 2;
5824
5825 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005826 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5827 &stripe_index);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005828 if ((op != BTRFS_MAP_WRITE &&
5829 op != BTRFS_MAP_GET_READ_MIRRORS) &&
5830 mirror_num <= 1)
Miao Xie28e1cc72014-09-12 18:44:02 +08005831 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005832 }
Chris Mason8790d502008-04-03 16:29:03 -04005833 } else {
5834 /*
David Sterba47c57132015-02-20 18:43:47 +01005835 * after this, stripe_nr is the number of stripes on this
5836 * device we have to walk to find the data, and stripe_index is
5837 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005838 */
David Sterba47c57132015-02-20 18:43:47 +01005839 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5840 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005841 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005842 }
Josef Bacike042d1e2016-04-12 12:54:40 -04005843 if (stripe_index >= map->num_stripes) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005844 btrfs_crit(fs_info,
5845 "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u",
Josef Bacike042d1e2016-04-12 12:54:40 -04005846 stripe_index, map->num_stripes);
5847 ret = -EINVAL;
5848 goto out;
5849 }
Chris Mason593060d2008-03-25 16:50:33 -04005850
Stefan Behrens472262f2012-11-06 14:43:46 +01005851 num_alloc_stripes = num_stripes;
Liu Bo6fad8232017-03-14 13:33:59 -07005852 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005853 if (op == BTRFS_MAP_WRITE)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005854 num_alloc_stripes <<= 1;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005855 if (op == BTRFS_MAP_GET_READ_MIRRORS)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005856 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005857 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005858 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005859
Zhao Lei6e9606d2015-01-20 15:11:34 +08005860 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005861 if (!bbio) {
5862 ret = -ENOMEM;
5863 goto out;
5864 }
Liu Bo6fad8232017-03-14 13:33:59 -07005865 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL)
Miao Xie2c8cdd62014-11-14 16:06:25 +08005866 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005867
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005868 /* build raid_map */
Liu Bo2b19a1f2017-03-14 13:34:00 -07005869 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map &&
5870 (need_full_stripe(op) || mirror_num > 1)) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005871 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005872 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005873
5874 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5875 sizeof(struct btrfs_bio_stripe) *
5876 num_alloc_stripes +
5877 sizeof(int) * tgtdev_indexes);
5878
5879 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005880 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005881
5882 /* Fill in the logical address of each stripe */
5883 tmp = stripe_nr * nr_data_stripes(map);
5884 for (i = 0; i < nr_data_stripes(map); i++)
5885 bbio->raid_map[(i+rot) % num_stripes] =
5886 em->start + (tmp + i) * map->stripe_len;
5887
5888 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5889 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5890 bbio->raid_map[(i+rot+1) % num_stripes] =
5891 RAID6_Q_STRIPE;
5892 }
5893
Li Zefanec9ef7a2011-12-01 14:06:42 +08005894
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005895 for (i = 0; i < num_stripes; i++) {
5896 bbio->stripes[i].physical =
5897 map->stripes[stripe_index].physical +
5898 stripe_offset +
5899 stripe_nr * map->stripe_len;
5900 bbio->stripes[i].dev =
5901 map->stripes[stripe_index].dev;
5902 stripe_index++;
Chris Mason593060d2008-03-25 16:50:33 -04005903 }
Li Zefande11cc12011-12-01 12:55:47 +08005904
Liu Bo2b19a1f2017-03-14 13:34:00 -07005905 if (need_full_stripe(op))
Miao Xied20983b2014-07-03 18:22:13 +08005906 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005907
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005908 if (bbio->raid_map)
5909 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005910
Liu Bo73c0f222017-03-14 13:33:58 -07005911 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005912 need_full_stripe(op)) {
Liu Bo73c0f222017-03-14 13:33:58 -07005913 handle_ops_on_dev_replace(op, &bbio, dev_replace, &num_stripes,
5914 &max_errors);
Stefan Behrens472262f2012-11-06 14:43:46 +01005915 }
5916
Li Zefande11cc12011-12-01 12:55:47 +08005917 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005918 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005919 bbio->num_stripes = num_stripes;
5920 bbio->max_errors = max_errors;
5921 bbio->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005922
5923 /*
5924 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5925 * mirror_num == num_stripes + 1 && dev_replace target drive is
5926 * available as a mirror
5927 */
5928 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5929 WARN_ON(num_stripes > 1);
5930 bbio->stripes[0].dev = dev_replace->tgtdev;
5931 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5932 bbio->mirror_num = map->num_stripes + 1;
5933 }
Chris Masoncea9e442008-04-09 16:28:12 -04005934out:
Liu Bo73beece2015-07-17 16:49:19 +08005935 if (dev_replace_is_ongoing) {
5936 btrfs_dev_replace_clear_lock_blocking(dev_replace);
5937 btrfs_dev_replace_unlock(dev_replace, 0);
5938 }
Chris Mason0b86a832008-03-24 15:01:56 -04005939 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005940 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005941}
5942
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005943int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005944 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005945 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005946{
Mike Christieb3d3fa52016-06-05 14:31:53 -05005947 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005948 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005949}
5950
Miao Xieaf8e2d12014-10-23 14:42:50 +08005951/* For Scrub/replace */
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005952int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Miao Xieaf8e2d12014-10-23 14:42:50 +08005953 u64 logical, u64 *length,
David Sterba825ad4c2017-03-28 14:45:22 +02005954 struct btrfs_bio **bbio_ret)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005955{
David Sterba825ad4c2017-03-28 14:45:22 +02005956 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, 0, 1);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005957}
5958
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04005959int btrfs_rmap_block(struct btrfs_fs_info *fs_info,
Yan Zhenga512bbf2008-12-08 16:46:26 -05005960 u64 chunk_start, u64 physical, u64 devid,
5961 u64 **logical, int *naddrs, int *stripe_len)
5962{
Yan Zhenga512bbf2008-12-08 16:46:26 -05005963 struct extent_map *em;
5964 struct map_lookup *map;
5965 u64 *buf;
5966 u64 bytenr;
5967 u64 length;
5968 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005969 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005970 int i, j, nr = 0;
5971
Liu Bo592d92e2017-03-14 13:33:55 -07005972 em = get_chunk_map(fs_info, chunk_start, 1);
5973 if (IS_ERR(em))
Josef Bacik835d9742013-03-19 12:13:25 -04005974 return -EIO;
Josef Bacik835d9742013-03-19 12:13:25 -04005975
Jeff Mahoney95617d62015-06-03 10:55:48 -04005976 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005977 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005978 rmap_len = map->stripe_len;
5979
Yan Zhenga512bbf2008-12-08 16:46:26 -05005980 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01005981 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005982 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01005983 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08005984 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01005985 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005986 rmap_len = map->stripe_len * nr_data_stripes(map);
5987 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005988
David Sterba31e818f2015-02-20 18:00:26 +01005989 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005990 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005991
5992 for (i = 0; i < map->num_stripes; i++) {
5993 if (devid && map->stripes[i].dev->devid != devid)
5994 continue;
5995 if (map->stripes[i].physical > physical ||
5996 map->stripes[i].physical + length <= physical)
5997 continue;
5998
5999 stripe_nr = physical - map->stripes[i].physical;
Liu Bo42c61ab2017-04-03 13:45:24 -07006000 stripe_nr = div64_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006001
6002 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
6003 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01006004 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006005 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
6006 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05006007 } /* else if RAID[56], multiply by nr_data_stripes().
6008 * Alternatively, just use rmap_len below instead of
6009 * map->stripe_len */
6010
6011 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05006012 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006013 for (j = 0; j < nr; j++) {
6014 if (buf[j] == bytenr)
6015 break;
6016 }
Chris Mason934d3752008-12-08 16:43:10 -05006017 if (j == nr) {
6018 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006019 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05006020 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05006021 }
6022
Yan Zhenga512bbf2008-12-08 16:46:26 -05006023 *logical = buf;
6024 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05006025 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05006026
6027 free_extent_map(em);
6028 return 0;
6029}
6030
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006031static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08006032{
Mike Snitzer326e1db2015-05-22 09:14:03 -04006033 bio->bi_private = bbio->private;
6034 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006035 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04006036
Zhao Lei6e9606d2015-01-20 15:11:34 +08006037 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08006038}
6039
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006040static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04006041{
Chris Mason9be33952013-05-17 18:30:14 -04006042 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006043 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04006044
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006045 if (bio->bi_error) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02006046 atomic_inc(&bbio->error);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006047 if (bio->bi_error == -EIO || bio->bi_error == -EREMOTEIO) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02006048 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04006049 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08006050 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02006051
6052 BUG_ON(stripe_index >= bbio->num_stripes);
6053 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02006054 if (dev->bdev) {
Mike Christie37226b22016-06-05 14:31:52 -05006055 if (bio_op(bio) == REQ_OP_WRITE)
Stefan Behrens597a60f2012-06-14 16:42:31 +02006056 btrfs_dev_stat_inc(dev,
6057 BTRFS_DEV_STAT_WRITE_ERRS);
6058 else
6059 btrfs_dev_stat_inc(dev,
6060 BTRFS_DEV_STAT_READ_ERRS);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06006061 if (bio->bi_opf & REQ_PREFLUSH)
Stefan Behrens597a60f2012-06-14 16:42:31 +02006062 btrfs_dev_stat_inc(dev,
6063 BTRFS_DEV_STAT_FLUSH_ERRS);
6064 btrfs_dev_stat_print_on_error(dev);
6065 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02006066 }
6067 }
Chris Mason8790d502008-04-03 16:29:03 -04006068
Jan Schmidta1d3c472011-08-04 17:15:33 +02006069 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04006070 is_orig_bio = 1;
6071
Miao Xiec404e0d2014-01-30 16:46:55 +08006072 btrfs_bio_counter_dec(bbio->fs_info);
6073
Jan Schmidta1d3c472011-08-04 17:15:33 +02006074 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04006075 if (!is_orig_bio) {
6076 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006077 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006078 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07006079
Chris Mason9be33952013-05-17 18:30:14 -04006080 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04006081 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05006082 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04006083 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02006084 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006085 bio->bi_error = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05006086 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04006087 /*
6088 * this bio is actually up to date, we didn't
6089 * go over the max number of errors
6090 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006091 bio->bi_error = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04006092 }
Miao Xiec55f1392014-06-19 10:42:54 +08006093
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006094 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04006095 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04006096 bio_put(bio);
6097 }
Chris Mason8790d502008-04-03 16:29:03 -04006098}
6099
Chris Mason8b712842008-06-11 16:50:36 -04006100/*
6101 * see run_scheduled_bios for a description of why bios are collected for
6102 * async submit.
6103 *
6104 * This will add one bio to the pending list for a device and make sure
6105 * the work struct is scheduled.
6106 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006107static noinline void btrfs_schedule_bio(struct btrfs_device *device,
Mike Christie4e49ea42016-06-05 14:31:41 -05006108 struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04006109{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006110 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -04006111 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04006112 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006113
David Woodhouse53b381b2013-01-29 18:40:14 -05006114 if (device->missing || !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006115 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05006116 return;
6117 }
6118
Chris Mason8b712842008-06-11 16:50:36 -04006119 /* don't bother with additional async steps for reads, right now */
Mike Christie37226b22016-06-05 14:31:52 -05006120 if (bio_op(bio) == REQ_OP_READ) {
Chris Mason492bb6de2008-07-31 16:29:02 -04006121 bio_get(bio);
Mike Christie4e49ea42016-06-05 14:31:41 -05006122 btrfsic_submit_bio(bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04006123 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01006124 return;
Chris Mason8b712842008-06-11 16:50:36 -04006125 }
6126
6127 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04006128 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04006129 * higher layers. Otherwise, the async bio makes it appear we have
6130 * made progress against dirty pages when we've really just put it
6131 * on a queue for later
6132 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006133 atomic_inc(&fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04006134 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04006135 bio->bi_next = NULL;
Chris Mason8b712842008-06-11 16:50:36 -04006136
6137 spin_lock(&device->io_lock);
Christoph Hellwig67f055c2016-11-01 07:40:06 -06006138 if (op_is_sync(bio->bi_opf))
Chris Masonffbd5172009-04-20 15:50:09 -04006139 pending_bios = &device->pending_sync_bios;
6140 else
6141 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006142
Chris Masonffbd5172009-04-20 15:50:09 -04006143 if (pending_bios->tail)
6144 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006145
Chris Masonffbd5172009-04-20 15:50:09 -04006146 pending_bios->tail = bio;
6147 if (!pending_bios->head)
6148 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006149 if (device->running_pending)
6150 should_queue = 0;
6151
6152 spin_unlock(&device->io_lock);
6153
6154 if (should_queue)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006155 btrfs_queue_work(fs_info->submit_workers, &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04006156}
6157
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006158static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio,
6159 u64 physical, int dev_nr, int async)
Josef Bacikde1ee922012-10-19 16:50:56 -04006160{
6161 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006162 struct btrfs_fs_info *fs_info = bbio->fs_info;
Josef Bacikde1ee922012-10-19 16:50:56 -04006163
6164 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04006165 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04006166 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006167 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04006168#ifdef DEBUG
6169 {
6170 struct rcu_string *name;
6171
6172 rcu_read_lock();
6173 name = rcu_dereference(dev->name);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006174 btrfs_debug(fs_info,
6175 "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u",
6176 bio_op(bio), bio->bi_opf,
6177 (u64)bio->bi_iter.bi_sector,
6178 (u_long)dev->bdev->bd_dev, name->str, dev->devid,
6179 bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006180 rcu_read_unlock();
6181 }
6182#endif
6183 bio->bi_bdev = dev->bdev;
Miao Xiec404e0d2014-01-30 16:46:55 +08006184
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006185 btrfs_bio_counter_inc_noblocked(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006186
Josef Bacikde1ee922012-10-19 16:50:56 -04006187 if (async)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006188 btrfs_schedule_bio(dev, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006189 else
Mike Christie4e49ea42016-06-05 14:31:41 -05006190 btrfsic_submit_bio(bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006191}
6192
Josef Bacikde1ee922012-10-19 16:50:56 -04006193static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6194{
6195 atomic_inc(&bbio->error);
6196 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Nicholas D Steeves01327612016-05-19 21:18:45 -04006197 /* Should be the original bio. */
Miao Xie8408c712014-06-19 10:42:55 +08006198 WARN_ON(bio != bbio->orig_bio);
6199
Chris Mason9be33952013-05-17 18:30:14 -04006200 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006201 bio->bi_iter.bi_sector = logical >> 9;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006202 bio->bi_error = -EIO;
6203 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006204 }
6205}
6206
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006207int btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04006208 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006209{
Chris Mason0b86a832008-03-24 15:01:56 -04006210 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006211 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006212 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006213 u64 length = 0;
6214 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006215 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006216 int dev_nr;
6217 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006218 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006219
Kent Overstreet4f024f32013-10-11 15:44:27 -07006220 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006221 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006222
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006223 btrfs_bio_counter_inc_blocked(fs_info);
6224 ret = __btrfs_map_block(fs_info, bio_op(bio), logical,
Mike Christie37226b22016-06-05 14:31:52 -05006225 &map_length, &bbio, mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006226 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006227 btrfs_bio_counter_dec(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006228 return ret;
Miao Xiec404e0d2014-01-30 16:46:55 +08006229 }
Chris Masoncea9e442008-04-09 16:28:12 -04006230
Jan Schmidta1d3c472011-08-04 17:15:33 +02006231 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006232 bbio->orig_bio = first_bio;
6233 bbio->private = first_bio->bi_private;
6234 bbio->end_io = first_bio->bi_end_io;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006235 bbio->fs_info = fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006236 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6237
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006238 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Mike Christie37226b22016-06-05 14:31:52 -05006239 ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006240 /* In this case, map_length has been set to the length of
6241 a single stripe; not the whole write */
Mike Christie37226b22016-06-05 14:31:52 -05006242 if (bio_op(bio) == REQ_OP_WRITE) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006243 ret = raid56_parity_write(fs_info, bio, bbio,
6244 map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006245 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006246 ret = raid56_parity_recover(fs_info, bio, bbio,
6247 map_length, mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006248 }
Miao Xie42452152014-11-25 16:39:28 +08006249
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006250 btrfs_bio_counter_dec(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006251 return ret;
David Woodhouse53b381b2013-01-29 18:40:14 -05006252 }
6253
Chris Masoncea9e442008-04-09 16:28:12 -04006254 if (map_length < length) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006255 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006256 "mapping failed logical %llu bio len %llu len %llu",
6257 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006258 BUG();
6259 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006260
Zhao Lei08da7572015-02-12 15:42:16 +08006261 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006262 dev = bbio->stripes[dev_nr].dev;
Mike Christie37226b22016-06-05 14:31:52 -05006263 if (!dev || !dev->bdev ||
Liu Boa967efb2017-04-10 12:36:26 -07006264 (bio_op(first_bio) == REQ_OP_WRITE && !dev->writeable)) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006265 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006266 continue;
6267 }
6268
Jan Schmidta1d3c472011-08-04 17:15:33 +02006269 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04006270 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006271 BUG_ON(!bio); /* -ENOMEM */
Mike Snitzer326e1db2015-05-22 09:14:03 -04006272 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006273 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006274
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006275 submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical,
6276 dev_nr, async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006277 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006278 btrfs_bio_counter_dec(fs_info);
Chris Mason0b86a832008-03-24 15:01:56 -04006279 return 0;
6280}
6281
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006282struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006283 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006284{
Yan Zheng2b820322008-11-17 21:11:30 -05006285 struct btrfs_device *device;
6286 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006287
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006288 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006289 while (cur_devices) {
6290 if (!fsid ||
6291 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
6292 device = __find_device(&cur_devices->devices,
6293 devid, uuid);
6294 if (device)
6295 return device;
6296 }
6297 cur_devices = cur_devices->seed;
6298 }
6299 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006300}
6301
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006302static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006303 u64 devid, u8 *dev_uuid)
6304{
6305 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006306
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006307 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6308 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05006309 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006310
6311 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006312 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006313 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006314
6315 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05006316 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006317
Chris Masondfe25022008-05-13 13:46:40 -04006318 return device;
6319}
6320
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006321/**
6322 * btrfs_alloc_device - allocate struct btrfs_device
6323 * @fs_info: used only for generating a new devid, can be NULL if
6324 * devid is provided (i.e. @devid != NULL).
6325 * @devid: a pointer to devid for this device. If NULL a new devid
6326 * is generated.
6327 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6328 * is generated.
6329 *
6330 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
6331 * on error. Returned struct is not linked onto any lists and can be
6332 * destroyed with kfree() right away.
6333 */
6334struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6335 const u64 *devid,
6336 const u8 *uuid)
6337{
6338 struct btrfs_device *dev;
6339 u64 tmp;
6340
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306341 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006342 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006343
6344 dev = __alloc_device();
6345 if (IS_ERR(dev))
6346 return dev;
6347
6348 if (devid)
6349 tmp = *devid;
6350 else {
6351 int ret;
6352
6353 ret = find_next_devid(fs_info, &tmp);
6354 if (ret) {
6355 kfree(dev);
6356 return ERR_PTR(ret);
6357 }
6358 }
6359 dev->devid = tmp;
6360
6361 if (uuid)
6362 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6363 else
6364 generate_random_uuid(dev->uuid);
6365
Liu Bo9e0af232014-08-15 23:36:53 +08006366 btrfs_init_work(&dev->work, btrfs_submit_helper,
6367 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006368
6369 return dev;
6370}
6371
Liu Boe06cd3d2016-06-03 12:05:15 -07006372/* Return -EIO if any error, otherwise return 0. */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006373static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006374 struct extent_buffer *leaf,
6375 struct btrfs_chunk *chunk, u64 logical)
6376{
6377 u64 length;
6378 u64 stripe_len;
6379 u16 num_stripes;
6380 u16 sub_stripes;
6381 u64 type;
6382
6383 length = btrfs_chunk_length(leaf, chunk);
6384 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6385 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6386 sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
6387 type = btrfs_chunk_type(leaf, chunk);
6388
6389 if (!num_stripes) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006390 btrfs_err(fs_info, "invalid chunk num_stripes: %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006391 num_stripes);
6392 return -EIO;
6393 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006394 if (!IS_ALIGNED(logical, fs_info->sectorsize)) {
6395 btrfs_err(fs_info, "invalid chunk logical %llu", logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006396 return -EIO;
6397 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006398 if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) {
6399 btrfs_err(fs_info, "invalid chunk sectorsize %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006400 btrfs_chunk_sector_size(leaf, chunk));
6401 return -EIO;
6402 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006403 if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) {
6404 btrfs_err(fs_info, "invalid chunk length %llu", length);
Liu Boe06cd3d2016-06-03 12:05:15 -07006405 return -EIO;
6406 }
6407 if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006408 btrfs_err(fs_info, "invalid chunk stripe length: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006409 stripe_len);
6410 return -EIO;
6411 }
6412 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6413 type) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006414 btrfs_err(fs_info, "unrecognized chunk type: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006415 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6416 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6417 btrfs_chunk_type(leaf, chunk));
6418 return -EIO;
6419 }
6420 if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) ||
6421 (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) ||
6422 (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) ||
6423 (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) ||
6424 (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) ||
6425 ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 &&
6426 num_stripes != 1)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006427 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006428 "invalid num_stripes:sub_stripes %u:%u for profile %llu",
6429 num_stripes, sub_stripes,
6430 type & BTRFS_BLOCK_GROUP_PROFILE_MASK);
6431 return -EIO;
6432 }
6433
6434 return 0;
6435}
6436
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006437static int read_one_chunk(struct btrfs_fs_info *fs_info, struct btrfs_key *key,
Chris Mason0b86a832008-03-24 15:01:56 -04006438 struct extent_buffer *leaf,
6439 struct btrfs_chunk *chunk)
6440{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006441 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04006442 struct map_lookup *map;
6443 struct extent_map *em;
6444 u64 logical;
6445 u64 length;
Qu Wenruof04b7722015-12-15 09:14:37 +08006446 u64 stripe_len;
Chris Mason0b86a832008-03-24 15:01:56 -04006447 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006448 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006449 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006450 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006451 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006452
Chris Masone17cade2008-04-15 15:41:47 -04006453 logical = key->offset;
6454 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006455 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6456 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
Liu Boe06cd3d2016-06-03 12:05:15 -07006457
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006458 ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006459 if (ret)
6460 return ret;
Chris Masona061fc82008-05-07 11:43:44 -04006461
Chris Mason890871b2009-09-02 16:24:52 -04006462 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006463 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006464 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006465
6466 /* already mapped? */
6467 if (em && em->start <= logical && em->start + em->len > logical) {
6468 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006469 return 0;
6470 } else if (em) {
6471 free_extent_map(em);
6472 }
Chris Mason0b86a832008-03-24 15:01:56 -04006473
David Sterba172ddd62011-04-21 00:48:27 +02006474 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006475 if (!em)
6476 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006477 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006478 if (!map) {
6479 free_extent_map(em);
6480 return -ENOMEM;
6481 }
6482
Wang Shilong298a8f92014-06-19 10:42:52 +08006483 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006484 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006485 em->start = logical;
6486 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006487 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006488 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006489 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006490
Chris Mason593060d2008-03-25 16:50:33 -04006491 map->num_stripes = num_stripes;
6492 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6493 map->io_align = btrfs_chunk_io_align(leaf, chunk);
6494 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
6495 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6496 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006497 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006498 for (i = 0; i < num_stripes; i++) {
6499 map->stripes[i].physical =
6500 btrfs_stripe_offset_nr(leaf, chunk, i);
6501 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006502 read_extent_buffer(leaf, uuid, (unsigned long)
6503 btrfs_stripe_dev_uuid_nr(chunk, i),
6504 BTRFS_UUID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006505 map->stripes[i].dev = btrfs_find_device(fs_info, devid,
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006506 uuid, NULL);
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006507 if (!map->stripes[i].dev &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006508 !btrfs_test_opt(fs_info, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006509 free_extent_map(em);
6510 return -EIO;
6511 }
Chris Masondfe25022008-05-13 13:46:40 -04006512 if (!map->stripes[i].dev) {
6513 map->stripes[i].dev =
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006514 add_missing_dev(fs_info->fs_devices, devid,
6515 uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006516 if (!map->stripes[i].dev) {
Chris Masondfe25022008-05-13 13:46:40 -04006517 free_extent_map(em);
6518 return -EIO;
6519 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006520 btrfs_warn(fs_info, "devid %llu uuid %pU is missing",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006521 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006522 }
6523 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04006524 }
6525
Chris Mason890871b2009-09-02 16:24:52 -04006526 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006527 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006528 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006529 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006530 free_extent_map(em);
6531
6532 return 0;
6533}
6534
Jeff Mahoney143bede2012-03-01 14:56:26 +01006535static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006536 struct btrfs_dev_item *dev_item,
6537 struct btrfs_device *device)
6538{
6539 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006540
6541 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006542 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6543 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006544 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006545 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006546 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006547 device->type = btrfs_device_type(leaf, dev_item);
6548 device->io_align = btrfs_device_io_align(leaf, dev_item);
6549 device->io_width = btrfs_device_io_width(leaf, dev_item);
6550 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006551 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01006552 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006553
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006554 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006555 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006556}
6557
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006558static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info,
Miao Xie5f375832014-09-03 21:35:46 +08006559 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006560{
6561 struct btrfs_fs_devices *fs_devices;
6562 int ret;
6563
Li Zefanb367e472011-12-07 11:38:24 +08006564 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05006565
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006566 fs_devices = fs_info->fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05006567 while (fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006568 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE))
6569 return fs_devices;
6570
Yan Zheng2b820322008-11-17 21:11:30 -05006571 fs_devices = fs_devices->seed;
6572 }
6573
6574 fs_devices = find_fsid(fsid);
6575 if (!fs_devices) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006576 if (!btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08006577 return ERR_PTR(-ENOENT);
6578
6579 fs_devices = alloc_fs_devices(fsid);
6580 if (IS_ERR(fs_devices))
6581 return fs_devices;
6582
6583 fs_devices->seeding = 1;
6584 fs_devices->opened = 1;
6585 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006586 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006587
6588 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006589 if (IS_ERR(fs_devices))
6590 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006591
Christoph Hellwig97288f22008-12-02 06:36:09 -05006592 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006593 fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006594 if (ret) {
6595 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006596 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006597 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006598 }
Yan Zheng2b820322008-11-17 21:11:30 -05006599
6600 if (!fs_devices->seeding) {
6601 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006602 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006603 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006604 goto out;
6605 }
6606
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006607 fs_devices->seed = fs_info->fs_devices->seed;
6608 fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006609out:
Miao Xie5f375832014-09-03 21:35:46 +08006610 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006611}
6612
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006613static int read_one_dev(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04006614 struct extent_buffer *leaf,
6615 struct btrfs_dev_item *dev_item)
6616{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006617 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006618 struct btrfs_device *device;
6619 u64 devid;
6620 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05006621 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006622 u8 dev_uuid[BTRFS_UUID_SIZE];
6623
Chris Mason0b86a832008-03-24 15:01:56 -04006624 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006625 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006626 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006627 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05006628 BTRFS_UUID_SIZE);
6629
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006630 if (memcmp(fs_uuid, fs_info->fsid, BTRFS_UUID_SIZE)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006631 fs_devices = open_seed_devices(fs_info, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006632 if (IS_ERR(fs_devices))
6633 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006634 }
6635
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006636 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006637 if (!device) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006638 if (!btrfs_test_opt(fs_info, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05006639 return -EIO;
6640
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006641 device = add_missing_dev(fs_devices, devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006642 if (!device)
6643 return -ENOMEM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006644 btrfs_warn(fs_info, "devid %llu uuid %pU missing",
Anand Jain33b97e42015-05-08 04:34:35 +08006645 devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006646 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006647 if (!device->bdev && !btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08006648 return -EIO;
6649
6650 if(!device->bdev && !device->missing) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006651 /*
6652 * this happens when a device that was properly setup
6653 * in the device info lists suddenly goes bad.
6654 * device->bdev is NULL, and so we have to set
6655 * device->missing to one here
6656 */
Miao Xie5f375832014-09-03 21:35:46 +08006657 device->fs_devices->missing_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05006658 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05006659 }
Miao Xie5f375832014-09-03 21:35:46 +08006660
6661 /* Move the device to its own fs_devices */
6662 if (device->fs_devices != fs_devices) {
6663 ASSERT(device->missing);
6664
6665 list_move(&device->dev_list, &fs_devices->devices);
6666 device->fs_devices->num_devices--;
6667 fs_devices->num_devices++;
6668
6669 device->fs_devices->missing_devices--;
6670 fs_devices->missing_devices++;
6671
6672 device->fs_devices = fs_devices;
6673 }
Yan Zheng2b820322008-11-17 21:11:30 -05006674 }
6675
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006676 if (device->fs_devices != fs_info->fs_devices) {
Yan Zheng2b820322008-11-17 21:11:30 -05006677 BUG_ON(device->writeable);
6678 if (device->generation !=
6679 btrfs_device_generation(leaf, dev_item))
6680 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006681 }
Chris Mason0b86a832008-03-24 15:01:56 -04006682
6683 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04006684 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01006685 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05006686 device->fs_devices->total_rw_bytes += device->total_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006687 spin_lock(&fs_info->free_chunk_lock);
6688 fs_info->free_chunk_space += device->total_bytes -
Josef Bacik2bf64752011-09-26 17:12:22 -04006689 device->bytes_used;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006690 spin_unlock(&fs_info->free_chunk_lock);
Josef Bacik2bf64752011-09-26 17:12:22 -04006691 }
Chris Mason0b86a832008-03-24 15:01:56 -04006692 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006693 return ret;
6694}
6695
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006696int btrfs_read_sys_array(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006697{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006698 struct btrfs_root *root = fs_info->tree_root;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006699 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006700 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006701 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006702 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006703 u8 *array_ptr;
6704 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006705 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006706 u32 num_stripes;
6707 u32 array_size;
6708 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006709 u32 cur_offset;
Liu Boe06cd3d2016-06-03 12:05:15 -07006710 u64 type;
Chris Mason84eed902008-04-25 09:04:37 -04006711 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006712
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006713 ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize);
David Sterbaa83fffb2014-06-15 02:39:54 +02006714 /*
6715 * This will create extent buffer of nodesize, superblock size is
6716 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6717 * overallocate but we can keep it as-is, only the first page is used.
6718 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006719 sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET);
Liu Boc871b0f2016-06-06 12:01:23 -07006720 if (IS_ERR(sb))
6721 return PTR_ERR(sb);
David Sterba4db8c522015-12-03 13:06:46 +01006722 set_extent_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006723 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006724 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006725 * The sb extent buffer is artificial and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01006726 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02006727 * pages up-to-date when the page is larger: extent does not cover the
6728 * whole page and consequently check_page_uptodate does not find all
6729 * the page's extents up-to-date (the hole beyond sb),
6730 * write_extent_buffer then triggers a WARN_ON.
6731 *
6732 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6733 * but sb spans only this function. Add an explicit SetPageUptodate call
6734 * to silence the warning eg. on PowerPC 64.
6735 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006736 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006737 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006738
Chris Masona061fc82008-05-07 11:43:44 -04006739 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006740 array_size = btrfs_super_sys_array_size(super_copy);
6741
David Sterba1ffb22c2014-10-31 19:02:42 +01006742 array_ptr = super_copy->sys_chunk_array;
6743 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6744 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006745
David Sterba1ffb22c2014-10-31 19:02:42 +01006746 while (cur_offset < array_size) {
6747 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006748 len = sizeof(*disk_key);
6749 if (cur_offset + len > array_size)
6750 goto out_short_read;
6751
Chris Mason0b86a832008-03-24 15:01:56 -04006752 btrfs_disk_key_to_cpu(&key, disk_key);
6753
David Sterba1ffb22c2014-10-31 19:02:42 +01006754 array_ptr += len;
6755 sb_array_offset += len;
6756 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006757
Chris Mason0d81ba52008-03-24 15:02:07 -04006758 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006759 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006760 /*
6761 * At least one btrfs_chunk with one stripe must be
6762 * present, exact stripe count check comes afterwards
6763 */
6764 len = btrfs_chunk_item_size(1);
6765 if (cur_offset + len > array_size)
6766 goto out_short_read;
6767
6768 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006769 if (!num_stripes) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006770 btrfs_err(fs_info,
6771 "invalid number of stripes %u in sys_array at offset %u",
David Sterbaf5cdedd2015-11-30 17:27:06 +01006772 num_stripes, cur_offset);
6773 ret = -EIO;
6774 break;
6775 }
6776
Liu Boe06cd3d2016-06-03 12:05:15 -07006777 type = btrfs_chunk_type(sb, chunk);
6778 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006779 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006780 "invalid chunk type %llu in sys_array at offset %u",
6781 type, cur_offset);
6782 ret = -EIO;
6783 break;
6784 }
6785
David Sterbae3540ea2014-11-05 15:24:51 +01006786 len = btrfs_chunk_item_size(num_stripes);
6787 if (cur_offset + len > array_size)
6788 goto out_short_read;
6789
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006790 ret = read_one_chunk(fs_info, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006791 if (ret)
6792 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006793 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006794 btrfs_err(fs_info,
6795 "unexpected item type %u in sys_array at offset %u",
6796 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006797 ret = -EIO;
6798 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006799 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006800 array_ptr += len;
6801 sb_array_offset += len;
6802 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006803 }
Liu Bod8651772016-06-03 17:41:42 -07006804 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006805 free_extent_buffer_stale(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006806 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006807
6808out_short_read:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006809 btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u",
David Sterbae3540ea2014-11-05 15:24:51 +01006810 len, cur_offset);
Liu Bod8651772016-06-03 17:41:42 -07006811 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006812 free_extent_buffer_stale(sb);
David Sterbae3540ea2014-11-05 15:24:51 +01006813 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006814}
6815
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006816int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006817{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006818 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04006819 struct btrfs_path *path;
6820 struct extent_buffer *leaf;
6821 struct btrfs_key key;
6822 struct btrfs_key found_key;
6823 int ret;
6824 int slot;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006825 u64 total_dev = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006826
Chris Mason0b86a832008-03-24 15:01:56 -04006827 path = btrfs_alloc_path();
6828 if (!path)
6829 return -ENOMEM;
6830
Li Zefanb367e472011-12-07 11:38:24 +08006831 mutex_lock(&uuid_mutex);
David Sterba34441362016-10-04 19:34:27 +02006832 mutex_lock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006833
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006834 /*
6835 * Read all device items, and then all the chunk items. All
6836 * device items are found before any chunk item (their object id
6837 * is smaller than the lowest possible object id for a chunk
6838 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006839 */
6840 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6841 key.offset = 0;
6842 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006843 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006844 if (ret < 0)
6845 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006846 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006847 leaf = path->nodes[0];
6848 slot = path->slots[0];
6849 if (slot >= btrfs_header_nritems(leaf)) {
6850 ret = btrfs_next_leaf(root, path);
6851 if (ret == 0)
6852 continue;
6853 if (ret < 0)
6854 goto error;
6855 break;
6856 }
6857 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006858 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6859 struct btrfs_dev_item *dev_item;
6860 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006861 struct btrfs_dev_item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006862 ret = read_one_dev(fs_info, leaf, dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006863 if (ret)
6864 goto error;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006865 total_dev++;
Chris Mason0b86a832008-03-24 15:01:56 -04006866 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6867 struct btrfs_chunk *chunk;
6868 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006869 ret = read_one_chunk(fs_info, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006870 if (ret)
6871 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006872 }
6873 path->slots[0]++;
6874 }
Liu Bo99e3ecf2016-06-03 12:05:14 -07006875
6876 /*
6877 * After loading chunk tree, we've got all device information,
6878 * do another round of validation checks.
6879 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006880 if (total_dev != fs_info->fs_devices->total_devices) {
6881 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07006882 "super_num_devices %llu mismatch with num_devices %llu found here",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006883 btrfs_super_num_devices(fs_info->super_copy),
Liu Bo99e3ecf2016-06-03 12:05:14 -07006884 total_dev);
6885 ret = -EINVAL;
6886 goto error;
6887 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006888 if (btrfs_super_total_bytes(fs_info->super_copy) <
6889 fs_info->fs_devices->total_rw_bytes) {
6890 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07006891 "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006892 btrfs_super_total_bytes(fs_info->super_copy),
6893 fs_info->fs_devices->total_rw_bytes);
Liu Bo99e3ecf2016-06-03 12:05:14 -07006894 ret = -EINVAL;
6895 goto error;
6896 }
Chris Mason0b86a832008-03-24 15:01:56 -04006897 ret = 0;
6898error:
David Sterba34441362016-10-04 19:34:27 +02006899 mutex_unlock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006900 mutex_unlock(&uuid_mutex);
6901
Yan Zheng2b820322008-11-17 21:11:30 -05006902 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006903 return ret;
6904}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006905
Miao Xiecb517ea2013-05-15 07:48:19 +00006906void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6907{
6908 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6909 struct btrfs_device *device;
6910
Liu Bo29cc83f2014-05-11 23:14:59 +08006911 while (fs_devices) {
6912 mutex_lock(&fs_devices->device_list_mutex);
6913 list_for_each_entry(device, &fs_devices->devices, dev_list)
Jeff Mahoneyfb456252016-06-22 18:54:56 -04006914 device->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08006915 mutex_unlock(&fs_devices->device_list_mutex);
6916
6917 fs_devices = fs_devices->seed;
6918 }
Miao Xiecb517ea2013-05-15 07:48:19 +00006919}
6920
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006921static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6922{
6923 int i;
6924
6925 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6926 btrfs_dev_stat_reset(dev, i);
6927}
6928
6929int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6930{
6931 struct btrfs_key key;
6932 struct btrfs_key found_key;
6933 struct btrfs_root *dev_root = fs_info->dev_root;
6934 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6935 struct extent_buffer *eb;
6936 int slot;
6937 int ret = 0;
6938 struct btrfs_device *device;
6939 struct btrfs_path *path = NULL;
6940 int i;
6941
6942 path = btrfs_alloc_path();
6943 if (!path) {
6944 ret = -ENOMEM;
6945 goto out;
6946 }
6947
6948 mutex_lock(&fs_devices->device_list_mutex);
6949 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6950 int item_size;
6951 struct btrfs_dev_stats_item *ptr;
6952
David Sterba242e2952016-01-25 17:51:31 +01006953 key.objectid = BTRFS_DEV_STATS_OBJECTID;
6954 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006955 key.offset = device->devid;
6956 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6957 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006958 __btrfs_reset_dev_stats(device);
6959 device->dev_stats_valid = 1;
6960 btrfs_release_path(path);
6961 continue;
6962 }
6963 slot = path->slots[0];
6964 eb = path->nodes[0];
6965 btrfs_item_key_to_cpu(eb, &found_key, slot);
6966 item_size = btrfs_item_size_nr(eb, slot);
6967
6968 ptr = btrfs_item_ptr(eb, slot,
6969 struct btrfs_dev_stats_item);
6970
6971 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6972 if (item_size >= (1 + i) * sizeof(__le64))
6973 btrfs_dev_stat_set(device, i,
6974 btrfs_dev_stats_value(eb, ptr, i));
6975 else
6976 btrfs_dev_stat_reset(device, i);
6977 }
6978
6979 device->dev_stats_valid = 1;
6980 btrfs_dev_stat_print_on_load(device);
6981 btrfs_release_path(path);
6982 }
6983 mutex_unlock(&fs_devices->device_list_mutex);
6984
6985out:
6986 btrfs_free_path(path);
6987 return ret < 0 ? ret : 0;
6988}
6989
6990static int update_dev_stat_item(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006991 struct btrfs_fs_info *fs_info,
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006992 struct btrfs_device *device)
6993{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006994 struct btrfs_root *dev_root = fs_info->dev_root;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006995 struct btrfs_path *path;
6996 struct btrfs_key key;
6997 struct extent_buffer *eb;
6998 struct btrfs_dev_stats_item *ptr;
6999 int ret;
7000 int i;
7001
David Sterba242e2952016-01-25 17:51:31 +01007002 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7003 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007004 key.offset = device->devid;
7005
7006 path = btrfs_alloc_path();
David Sterbafa252992017-02-15 09:35:01 +01007007 if (!path)
7008 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007009 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
7010 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007011 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007012 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04007013 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007014 goto out;
7015 }
7016
7017 if (ret == 0 &&
7018 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
7019 /* need to delete old one and insert a new one */
7020 ret = btrfs_del_item(trans, dev_root, path);
7021 if (ret != 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007022 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007023 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04007024 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007025 goto out;
7026 }
7027 ret = 1;
7028 }
7029
7030 if (ret == 1) {
7031 /* need to insert a new item */
7032 btrfs_release_path(path);
7033 ret = btrfs_insert_empty_item(trans, dev_root, path,
7034 &key, sizeof(*ptr));
7035 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007036 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007037 "insert dev_stats item for device %s failed %d",
7038 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007039 goto out;
7040 }
7041 }
7042
7043 eb = path->nodes[0];
7044 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
7045 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7046 btrfs_set_dev_stats_value(eb, ptr, i,
7047 btrfs_dev_stat_read(device, i));
7048 btrfs_mark_buffer_dirty(eb);
7049
7050out:
7051 btrfs_free_path(path);
7052 return ret;
7053}
7054
7055/*
7056 * called from commit_transaction. Writes all changed device stats to disk.
7057 */
7058int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
7059 struct btrfs_fs_info *fs_info)
7060{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007061 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7062 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08007063 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007064 int ret = 0;
7065
7066 mutex_lock(&fs_devices->device_list_mutex);
7067 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Miao Xieaddc3fa2014-07-24 11:37:11 +08007068 if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device))
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007069 continue;
7070
Miao Xieaddc3fa2014-07-24 11:37:11 +08007071 stats_cnt = atomic_read(&device->dev_stats_ccnt);
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007072 ret = update_dev_stat_item(trans, fs_info, device);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007073 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08007074 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007075 }
7076 mutex_unlock(&fs_devices->device_list_mutex);
7077
7078 return ret;
7079}
7080
Stefan Behrens442a4f62012-05-25 16:06:08 +02007081void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
7082{
7083 btrfs_dev_stat_inc(dev, index);
7084 btrfs_dev_stat_print_on_error(dev);
7085}
7086
Eric Sandeen48a3b632013-04-25 20:41:01 +00007087static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02007088{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007089 if (!dev->dev_stats_valid)
7090 return;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007091 btrfs_err_rl_in_rcu(dev->fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02007092 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007093 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02007094 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7095 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7096 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05007097 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7098 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02007099}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007100
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007101static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
7102{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06007103 int i;
7104
7105 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7106 if (btrfs_dev_stat_read(dev, i) != 0)
7107 break;
7108 if (i == BTRFS_DEV_STAT_VALUES_MAX)
7109 return; /* all values == 0, suppress message */
7110
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007111 btrfs_info_in_rcu(dev->fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007112 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007113 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007114 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7115 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7116 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
7117 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7118 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
7119}
7120
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007121int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06007122 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007123{
7124 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007125 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007126 int i;
7127
7128 mutex_lock(&fs_devices->device_list_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007129 dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007130 mutex_unlock(&fs_devices->device_list_mutex);
7131
7132 if (!dev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007133 btrfs_warn(fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007134 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007135 } else if (!dev->dev_stats_valid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007136 btrfs_warn(fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007137 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06007138 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007139 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7140 if (stats->nr_items > i)
7141 stats->values[i] =
7142 btrfs_dev_stat_read_and_reset(dev, i);
7143 else
7144 btrfs_dev_stat_reset(dev, i);
7145 }
7146 } else {
7147 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7148 if (stats->nr_items > i)
7149 stats->values[i] = btrfs_dev_stat_read(dev, i);
7150 }
7151 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
7152 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
7153 return 0;
7154}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007155
David Sterbada353f62017-02-14 17:55:53 +01007156void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007157{
7158 struct buffer_head *bh;
7159 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08007160 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007161
Anand Jain12b1c262015-08-14 18:32:59 +08007162 if (!bdev)
7163 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007164
Anand Jain12b1c262015-08-14 18:32:59 +08007165 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
7166 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007167
Anand Jain12b1c262015-08-14 18:32:59 +08007168 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
7169 continue;
7170
7171 disk_super = (struct btrfs_super_block *)bh->b_data;
7172
7173 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
7174 set_buffer_dirty(bh);
7175 sync_dirty_buffer(bh);
7176 brelse(bh);
7177 }
7178
7179 /* Notify udev that device has changed */
7180 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
7181
7182 /* Update ctime/mtime for device path for libblkid */
7183 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007184}
Miao Xie935e5cc2014-09-03 21:35:33 +08007185
7186/*
7187 * Update the size of all devices, which is used for writing out the
7188 * super blocks.
7189 */
7190void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
7191{
7192 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7193 struct btrfs_device *curr, *next;
7194
7195 if (list_empty(&fs_devices->resized_devices))
7196 return;
7197
7198 mutex_lock(&fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02007199 mutex_lock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007200 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
7201 resized_list) {
7202 list_del_init(&curr->resized_list);
7203 curr->commit_total_bytes = curr->disk_total_bytes;
7204 }
David Sterba34441362016-10-04 19:34:27 +02007205 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007206 mutex_unlock(&fs_devices->device_list_mutex);
7207}
Miao Xiece7213c2014-09-03 21:35:34 +08007208
7209/* Must be invoked during the transaction commit */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007210void btrfs_update_commit_device_bytes_used(struct btrfs_fs_info *fs_info,
Miao Xiece7213c2014-09-03 21:35:34 +08007211 struct btrfs_transaction *transaction)
7212{
7213 struct extent_map *em;
7214 struct map_lookup *map;
7215 struct btrfs_device *dev;
7216 int i;
7217
7218 if (list_empty(&transaction->pending_chunks))
7219 return;
7220
7221 /* In order to kick the device replace finish process */
David Sterba34441362016-10-04 19:34:27 +02007222 mutex_lock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007223 list_for_each_entry(em, &transaction->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04007224 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08007225
7226 for (i = 0; i < map->num_stripes; i++) {
7227 dev = map->stripes[i].dev;
7228 dev->commit_bytes_used = dev->bytes_used;
7229 }
7230 }
David Sterba34441362016-10-04 19:34:27 +02007231 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007232}
Anand Jain5a13f432015-03-10 06:38:31 +08007233
7234void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
7235{
7236 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7237 while (fs_devices) {
7238 fs_devices->fs_info = fs_info;
7239 fs_devices = fs_devices->seed;
7240 }
7241}
7242
7243void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
7244{
7245 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7246 while (fs_devices) {
7247 fs_devices->fs_info = NULL;
7248 fs_devices = fs_devices->seed;
7249 }
7250}