blob: da997eabde3b35d3ac3344ba919bf9a59242cb40 [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
David Sterbae0ae9992017-06-06 17:06:06 +0200245 /*
246 * Preallocate a bio that's always going to be used for flushing device
247 * barriers and matches the device lifespan
248 */
249 dev->flush_bio = bio_alloc_bioset(GFP_KERNEL, 0, NULL);
250 if (!dev->flush_bio) {
251 kfree(dev);
252 return ERR_PTR(-ENOMEM);
253 }
254 bio_get(dev->flush_bio);
255
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300256 INIT_LIST_HEAD(&dev->dev_list);
257 INIT_LIST_HEAD(&dev->dev_alloc_list);
Miao Xie935e5cc2014-09-03 21:35:33 +0800258 INIT_LIST_HEAD(&dev->resized_list);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300259
260 spin_lock_init(&dev->io_lock);
261
262 spin_lock_init(&dev->reada_lock);
263 atomic_set(&dev->reada_in_flight, 0);
Miao Xieaddc3fa2014-07-24 11:37:11 +0800264 atomic_set(&dev->dev_stats_ccnt, 0);
Sebastian Andrzej Siewior546bed62016-01-15 14:37:15 +0100265 btrfs_device_data_ordered_init(dev);
Chris Mason9bcaaea2017-05-04 16:08:08 -0700266 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Mel Gormand0164ad2015-11-06 16:28:21 -0800267 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300268
269 return dev;
270}
271
Chris Masona1b32a52008-09-05 16:09:51 -0400272static noinline struct btrfs_device *__find_device(struct list_head *head,
273 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400274{
275 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400276
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500277 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400278 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400279 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400280 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400281 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400282 }
283 return NULL;
284}
285
Chris Masona1b32a52008-09-05 16:09:51 -0400286static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400287{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400288 struct btrfs_fs_devices *fs_devices;
289
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500290 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400291 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
292 return fs_devices;
293 }
294 return NULL;
295}
296
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100297static int
298btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
299 int flush, struct block_device **bdev,
300 struct buffer_head **bh)
301{
302 int ret;
303
304 *bdev = blkdev_get_by_path(device_path, flags, holder);
305
306 if (IS_ERR(*bdev)) {
307 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100308 goto error;
309 }
310
311 if (flush)
312 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
313 ret = set_blocksize(*bdev, 4096);
314 if (ret) {
315 blkdev_put(*bdev, flags);
316 goto error;
317 }
318 invalidate_bdev(*bdev);
319 *bh = btrfs_read_dev_super(*bdev);
Anand Jain92fc03f2015-08-14 18:32:51 +0800320 if (IS_ERR(*bh)) {
321 ret = PTR_ERR(*bh);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100322 blkdev_put(*bdev, flags);
323 goto error;
324 }
325
326 return 0;
327
328error:
329 *bdev = NULL;
330 *bh = NULL;
331 return ret;
332}
333
Chris Masonffbd5172009-04-20 15:50:09 -0400334static void requeue_list(struct btrfs_pending_bios *pending_bios,
335 struct bio *head, struct bio *tail)
336{
337
338 struct bio *old_head;
339
340 old_head = pending_bios->head;
341 pending_bios->head = head;
342 if (pending_bios->tail)
343 tail->bi_next = old_head;
344 else
345 pending_bios->tail = tail;
346}
347
Chris Mason8b712842008-06-11 16:50:36 -0400348/*
349 * we try to collect pending bios for a device so we don't get a large
350 * number of procs sending bios down to the same device. This greatly
351 * improves the schedulers ability to collect and merge the bios.
352 *
353 * But, it also turns into a long list of bios to process and that is sure
354 * to eventually make the worker thread block. The solution here is to
355 * make some progress and then put this work struct back at the end of
356 * the list if the block device is congested. This way, multiple devices
357 * can make progress from a single worker thread.
358 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100359static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400360{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400361 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -0400362 struct bio *pending;
363 struct backing_dev_info *bdi;
Chris Masonffbd5172009-04-20 15:50:09 -0400364 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400365 struct bio *tail;
366 struct bio *cur;
367 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400368 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400369 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400370 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400371 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400372 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000373 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400374 struct blk_plug plug;
375
376 /*
377 * this function runs all the bios we've collected for
378 * a particular device. We don't want to wander off to
379 * another device without first sending all of these down.
380 * So, setup a plug here and finish it off before we return
381 */
382 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400383
Jan Karaefa7c9f2017-02-02 15:56:53 +0100384 bdi = device->bdev->bd_bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400385 limit = btrfs_async_submit_limit(fs_info);
386 limit = limit * 2 / 3;
387
Chris Mason8b712842008-06-11 16:50:36 -0400388loop:
389 spin_lock(&device->io_lock);
390
Chris Masona6837052009-02-04 09:19:41 -0500391loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400392 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400393
Chris Mason8b712842008-06-11 16:50:36 -0400394 /* take all the bios off the list at once and process them
395 * later on (without the lock held). But, remember the
396 * tail and other pointers so the bios can be properly reinserted
397 * into the list if we hit congestion
398 */
Chris Masond84275c2009-06-09 15:39:08 -0400399 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400400 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400401 force_reg = 1;
402 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400403 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400404 force_reg = 0;
405 }
Chris Masonffbd5172009-04-20 15:50:09 -0400406
407 pending = pending_bios->head;
408 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400409 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400410
411 /*
412 * if pending was null this time around, no bios need processing
413 * at all and we can stop. Otherwise it'll loop back up again
414 * and do an additional check so no bios are missed.
415 *
416 * device->running_pending is used to synchronize with the
417 * schedule_bio code.
418 */
Chris Masonffbd5172009-04-20 15:50:09 -0400419 if (device->pending_sync_bios.head == NULL &&
420 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400421 again = 0;
422 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400423 } else {
424 again = 1;
425 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400426 }
Chris Masonffbd5172009-04-20 15:50:09 -0400427
428 pending_bios->head = NULL;
429 pending_bios->tail = NULL;
430
Chris Mason8b712842008-06-11 16:50:36 -0400431 spin_unlock(&device->io_lock);
432
Chris Masond3977122009-01-05 21:25:51 -0500433 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400434
435 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400436 /* we want to work on both lists, but do more bios on the
437 * sync list than the regular list
438 */
439 if ((num_run > 32 &&
440 pending_bios != &device->pending_sync_bios &&
441 device->pending_sync_bios.head) ||
442 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
443 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400444 spin_lock(&device->io_lock);
445 requeue_list(pending_bios, pending, tail);
446 goto loop_lock;
447 }
448
Chris Mason8b712842008-06-11 16:50:36 -0400449 cur = pending;
450 pending = pending->bi_next;
451 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400452
David Sterbaee863952015-02-16 19:41:40 +0100453 /*
454 * atomic_dec_return implies a barrier for waitqueue_active
455 */
Josef Bacik66657b32012-08-01 15:36:24 -0400456 if (atomic_dec_return(&fs_info->nr_async_bios) < limit &&
Chris Masonb64a2852008-08-20 13:39:41 -0400457 waitqueue_active(&fs_info->async_submit_wait))
458 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400459
Jens Axboedac56212015-04-17 16:23:59 -0600460 BUG_ON(atomic_read(&cur->__bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400461
Chris Mason2ab1ba62011-08-04 14:28:36 -0400462 /*
463 * if we're doing the sync list, record that our
464 * plug has some sync requests on it
465 *
466 * If we're doing the regular list and there are
467 * sync requests sitting around, unplug before
468 * we add more
469 */
470 if (pending_bios == &device->pending_sync_bios) {
471 sync_pending = 1;
472 } else if (sync_pending) {
473 blk_finish_plug(&plug);
474 blk_start_plug(&plug);
475 sync_pending = 0;
476 }
477
Mike Christie4e49ea42016-06-05 14:31:41 -0500478 btrfsic_submit_bio(cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400479 num_run++;
480 batch_run++;
David Sterba853d8ec2015-01-08 15:15:19 +0100481
482 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400483
484 /*
485 * we made progress, there is more work to do and the bdi
486 * is now congested. Back off and let other work structs
487 * run instead
488 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400489 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500490 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400491 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400492
Chris Masonb765ead2009-04-03 10:27:10 -0400493 ioc = current->io_context;
494
495 /*
496 * the main goal here is that we don't want to
497 * block if we're going to be able to submit
498 * more requests without blocking.
499 *
500 * This code does two great things, it pokes into
501 * the elevator code from a filesystem _and_
502 * it makes assumptions about how batching works.
503 */
504 if (ioc && ioc->nr_batch_requests > 0 &&
505 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
506 (last_waited == 0 ||
507 ioc->last_waited == last_waited)) {
508 /*
509 * we want to go through our batch of
510 * requests and stop. So, we copy out
511 * the ioc->last_waited time and test
512 * against it before looping
513 */
514 last_waited = ioc->last_waited;
David Sterba853d8ec2015-01-08 15:15:19 +0100515 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400516 continue;
517 }
Chris Mason8b712842008-06-11 16:50:36 -0400518 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400519 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500520 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400521
522 spin_unlock(&device->io_lock);
Qu Wenruoa8c93d42014-02-28 10:46:08 +0800523 btrfs_queue_work(fs_info->submit_workers,
524 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -0400525 goto done;
526 }
Chris Masond85c8a6f2011-12-15 15:38:41 -0500527 /* unplug every 64 requests just for good measure */
528 if (batch_run % 64 == 0) {
529 blk_finish_plug(&plug);
530 blk_start_plug(&plug);
531 sync_pending = 0;
532 }
Chris Mason8b712842008-06-11 16:50:36 -0400533 }
Chris Masonffbd5172009-04-20 15:50:09 -0400534
Chris Mason51684082010-03-10 15:33:32 -0500535 cond_resched();
536 if (again)
537 goto loop;
538
539 spin_lock(&device->io_lock);
540 if (device->pending_bios.head || device->pending_sync_bios.head)
541 goto loop_lock;
542 spin_unlock(&device->io_lock);
543
Chris Mason8b712842008-06-11 16:50:36 -0400544done:
Chris Mason211588a2011-04-19 20:12:40 -0400545 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400546}
547
Christoph Hellwigb2950862008-12-02 09:54:17 -0500548static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400549{
550 struct btrfs_device *device;
551
552 device = container_of(work, struct btrfs_device, work);
553 run_scheduled_bios(device);
554}
555
Anand Jain4fde46f2015-06-17 21:10:48 +0800556
557void btrfs_free_stale_device(struct btrfs_device *cur_dev)
558{
559 struct btrfs_fs_devices *fs_devs;
560 struct btrfs_device *dev;
561
562 if (!cur_dev->name)
563 return;
564
565 list_for_each_entry(fs_devs, &fs_uuids, list) {
566 int del = 1;
567
568 if (fs_devs->opened)
569 continue;
570 if (fs_devs->seeding)
571 continue;
572
573 list_for_each_entry(dev, &fs_devs->devices, dev_list) {
574
575 if (dev == cur_dev)
576 continue;
577 if (!dev->name)
578 continue;
579
580 /*
581 * Todo: This won't be enough. What if the same device
582 * comes back (with new uuid and) with its mapper path?
583 * But for now, this does help as mostly an admin will
584 * either use mapper or non mapper path throughout.
585 */
586 rcu_read_lock();
587 del = strcmp(rcu_str_deref(dev->name),
588 rcu_str_deref(cur_dev->name));
589 rcu_read_unlock();
590 if (!del)
591 break;
592 }
593
594 if (!del) {
595 /* delete the stale device */
596 if (fs_devs->num_devices == 1) {
597 btrfs_sysfs_remove_fsid(fs_devs);
598 list_del(&fs_devs->list);
599 free_fs_devices(fs_devs);
600 } else {
601 fs_devs->num_devices--;
602 list_del(&dev->dev_list);
603 rcu_string_free(dev->name);
604 kfree(dev);
605 }
606 break;
607 }
608 }
609}
610
David Sterba60999ca2014-03-26 18:26:36 +0100611/*
612 * Add new device to list of registered devices
613 *
614 * Returns:
615 * 1 - first time device is seen
616 * 0 - device already known
617 * < 0 - error
618 */
Chris Masona1b32a52008-09-05 16:09:51 -0400619static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400620 struct btrfs_super_block *disk_super,
621 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
622{
623 struct btrfs_device *device;
624 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400625 struct rcu_string *name;
David Sterba60999ca2014-03-26 18:26:36 +0100626 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400627 u64 found_transid = btrfs_super_generation(disk_super);
628
629 fs_devices = find_fsid(disk_super->fsid);
630 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300631 fs_devices = alloc_fs_devices(disk_super->fsid);
632 if (IS_ERR(fs_devices))
633 return PTR_ERR(fs_devices);
634
Chris Mason8a4b83c2008-03-24 15:02:07 -0400635 list_add(&fs_devices->list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300636
Chris Mason8a4b83c2008-03-24 15:02:07 -0400637 device = NULL;
638 } else {
Chris Masona4437552008-04-18 10:29:38 -0400639 device = __find_device(&fs_devices->devices, devid,
640 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400641 }
Miao Xie443f24f2014-07-24 11:37:15 +0800642
Chris Mason8a4b83c2008-03-24 15:02:07 -0400643 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500644 if (fs_devices->opened)
645 return -EBUSY;
646
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300647 device = btrfs_alloc_device(NULL, &devid,
648 disk_super->dev_item.uuid);
649 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400650 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300651 return PTR_ERR(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400652 }
Josef Bacik606686e2012-06-04 14:03:51 -0400653
654 name = rcu_string_strdup(path, GFP_NOFS);
655 if (!name) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400656 kfree(device);
657 return -ENOMEM;
658 }
Josef Bacik606686e2012-06-04 14:03:51 -0400659 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200660
Chris Masone5e9a522009-06-10 15:17:02 -0400661 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000662 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100663 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400664 mutex_unlock(&fs_devices->device_list_mutex);
665
David Sterba60999ca2014-03-26 18:26:36 +0100666 ret = 1;
Yan Zheng2b820322008-11-17 21:11:30 -0500667 device->fs_devices = fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400668 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800669 /*
670 * When FS is already mounted.
671 * 1. If you are here and if the device->name is NULL that
672 * means this device was missing at time of FS mount.
673 * 2. If you are here and if the device->name is different
674 * from 'path' that means either
675 * a. The same device disappeared and reappeared with
676 * different name. or
677 * b. The missing-disk-which-was-replaced, has
678 * reappeared now.
679 *
680 * We must allow 1 and 2a above. But 2b would be a spurious
681 * and unintentional.
682 *
683 * Further in case of 1 and 2a above, the disk at 'path'
684 * would have missed some transaction when it was away and
685 * in case of 2a the stale bdev has to be updated as well.
686 * 2b must not be allowed at all time.
687 */
688
689 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700690 * For now, we do allow update to btrfs_fs_device through the
691 * btrfs dev scan cli after FS has been mounted. We're still
692 * tracking a problem where systems fail mount by subvolume id
693 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800694 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700695 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800696 /*
697 * That is if the FS is _not_ mounted and if you
698 * are here, that means there is more than one
699 * disk with same uuid and devid.We keep the one
700 * with larger generation number or the last-in if
701 * generation are equal.
702 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700703 return -EEXIST;
Anand Jain77bdae42014-07-03 18:22:06 +0800704 }
Anand Jainb96de002014-07-03 18:22:05 +0800705
Josef Bacik606686e2012-06-04 14:03:51 -0400706 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000707 if (!name)
708 return -ENOMEM;
Josef Bacik606686e2012-06-04 14:03:51 -0400709 rcu_string_free(device->name);
710 rcu_assign_pointer(device->name, name);
Chris Masoncd02dca2010-12-13 14:56:23 -0500711 if (device->missing) {
712 fs_devices->missing_devices--;
713 device->missing = 0;
714 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400715 }
716
Anand Jain77bdae42014-07-03 18:22:06 +0800717 /*
718 * Unmount does not free the btrfs_device struct but would zero
719 * generation along with most of the other members. So just update
720 * it back. We need it to pick the disk with largest generation
721 * (as above).
722 */
723 if (!fs_devices->opened)
724 device->generation = found_transid;
725
Anand Jain4fde46f2015-06-17 21:10:48 +0800726 /*
727 * if there is new btrfs on an already registered device,
728 * then remove the stale device entry.
729 */
Anand Jain02feae32016-02-13 10:01:40 +0800730 if (ret > 0)
731 btrfs_free_stale_device(device);
Anand Jain4fde46f2015-06-17 21:10:48 +0800732
Chris Mason8a4b83c2008-03-24 15:02:07 -0400733 *fs_devices_ret = fs_devices;
David Sterba60999ca2014-03-26 18:26:36 +0100734
735 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400736}
737
Yan Zhenge4404d62008-12-12 10:03:26 -0500738static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
739{
740 struct btrfs_fs_devices *fs_devices;
741 struct btrfs_device *device;
742 struct btrfs_device *orig_dev;
743
Ilya Dryomov2208a372013-08-12 14:33:03 +0300744 fs_devices = alloc_fs_devices(orig->fsid);
745 if (IS_ERR(fs_devices))
746 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500747
Miao Xieadbbb862014-09-03 21:35:42 +0800748 mutex_lock(&orig->device_list_mutex);
Josef Bacik02db0842012-06-21 16:03:58 -0400749 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500750
Xiao Guangrong46224702011-04-20 10:08:47 +0000751 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500752 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400753 struct rcu_string *name;
754
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300755 device = btrfs_alloc_device(NULL, &orig_dev->devid,
756 orig_dev->uuid);
757 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500758 goto error;
759
Josef Bacik606686e2012-06-04 14:03:51 -0400760 /*
761 * This is ok to do without rcu read locked because we hold the
762 * uuid mutex so nothing we touch in here is going to disappear.
763 */
Anand Jaine755f782014-06-30 17:12:47 +0800764 if (orig_dev->name) {
David Sterba78f2c9e2016-02-11 14:25:38 +0100765 name = rcu_string_strdup(orig_dev->name->str,
766 GFP_KERNEL);
Anand Jaine755f782014-06-30 17:12:47 +0800767 if (!name) {
768 kfree(device);
769 goto error;
770 }
771 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400772 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500773
Yan Zhenge4404d62008-12-12 10:03:26 -0500774 list_add(&device->dev_list, &fs_devices->devices);
775 device->fs_devices = fs_devices;
776 fs_devices->num_devices++;
777 }
Miao Xieadbbb862014-09-03 21:35:42 +0800778 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500779 return fs_devices;
780error:
Miao Xieadbbb862014-09-03 21:35:42 +0800781 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500782 free_fs_devices(fs_devices);
783 return ERR_PTR(-ENOMEM);
784}
785
Eric Sandeen9eaed212014-08-01 18:12:35 -0500786void btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400787{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500788 struct btrfs_device *device, *next;
Miao Xie443f24f2014-07-24 11:37:15 +0800789 struct btrfs_device *latest_dev = NULL;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500790
Chris Masondfe25022008-05-13 13:46:40 -0400791 mutex_lock(&uuid_mutex);
792again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000793 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500794 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500795 if (device->in_fs_metadata) {
Stefan Behrens63a212a2012-11-05 18:29:28 +0100796 if (!device->is_tgtdev_for_dev_replace &&
Miao Xie443f24f2014-07-24 11:37:15 +0800797 (!latest_dev ||
798 device->generation > latest_dev->generation)) {
799 latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500800 }
Yan Zheng2b820322008-11-17 21:11:30 -0500801 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500802 }
Yan Zheng2b820322008-11-17 21:11:30 -0500803
Stefan Behrens8dabb742012-11-06 13:15:27 +0100804 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
805 /*
806 * In the first step, keep the device which has
807 * the correct fsid and the devid that is used
808 * for the dev_replace procedure.
809 * In the second step, the dev_replace state is
810 * read from the device tree and it is known
811 * whether the procedure is really active or
812 * not, which means whether this device is
813 * used or whether it should be removed.
814 */
815 if (step == 0 || device->is_tgtdev_for_dev_replace) {
816 continue;
817 }
818 }
Yan Zheng2b820322008-11-17 21:11:30 -0500819 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100820 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500821 device->bdev = NULL;
822 fs_devices->open_devices--;
823 }
824 if (device->writeable) {
825 list_del_init(&device->dev_alloc_list);
826 device->writeable = 0;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100827 if (!device->is_tgtdev_for_dev_replace)
828 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500829 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500830 list_del_init(&device->dev_list);
831 fs_devices->num_devices--;
Josef Bacik606686e2012-06-04 14:03:51 -0400832 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500833 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400834 }
Yan Zheng2b820322008-11-17 21:11:30 -0500835
836 if (fs_devices->seed) {
837 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500838 goto again;
839 }
840
Miao Xie443f24f2014-07-24 11:37:15 +0800841 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500842
Chris Masondfe25022008-05-13 13:46:40 -0400843 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400844}
Chris Masona0af4692008-05-13 16:03:06 -0400845
Xiao Guangrong1f781602011-04-20 10:09:16 +0000846static void __free_device(struct work_struct *work)
847{
848 struct btrfs_device *device;
849
850 device = container_of(work, struct btrfs_device, rcu_work);
Josef Bacik606686e2012-06-04 14:03:51 -0400851 rcu_string_free(device->name);
David Sterbae0ae9992017-06-06 17:06:06 +0200852 bio_put(device->flush_bio);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000853 kfree(device);
854}
855
856static void free_device(struct rcu_head *head)
857{
858 struct btrfs_device *device;
859
860 device = container_of(head, struct btrfs_device, rcu);
861
862 INIT_WORK(&device->rcu_work, __free_device);
863 schedule_work(&device->rcu_work);
864}
865
Anand Jain14238812016-07-22 06:04:53 +0800866static void btrfs_close_bdev(struct btrfs_device *device)
867{
868 if (device->bdev && device->writeable) {
869 sync_blockdev(device->bdev);
870 invalidate_bdev(device->bdev);
871 }
872
873 if (device->bdev)
874 blkdev_put(device->bdev, device->mode);
875}
876
Anand Jain0ccd0522016-09-22 12:56:13 +0800877static void btrfs_prepare_close_one_device(struct btrfs_device *device)
Anand Jainf4483412016-06-14 18:55:25 +0800878{
879 struct btrfs_fs_devices *fs_devices = device->fs_devices;
880 struct btrfs_device *new_device;
881 struct rcu_string *name;
882
883 if (device->bdev)
884 fs_devices->open_devices--;
885
886 if (device->writeable &&
887 device->devid != BTRFS_DEV_REPLACE_DEVID) {
888 list_del_init(&device->dev_alloc_list);
889 fs_devices->rw_devices--;
890 }
891
892 if (device->missing)
893 fs_devices->missing_devices--;
894
895 new_device = btrfs_alloc_device(NULL, &device->devid,
896 device->uuid);
897 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
898
899 /* Safe because we are under uuid_mutex */
900 if (device->name) {
901 name = rcu_string_strdup(device->name->str, GFP_NOFS);
902 BUG_ON(!name); /* -ENOMEM */
903 rcu_assign_pointer(new_device->name, name);
904 }
905
906 list_replace_rcu(&device->dev_list, &new_device->dev_list);
907 new_device->fs_devices = device->fs_devices;
Anand Jainf4483412016-06-14 18:55:25 +0800908}
909
Yan Zheng2b820322008-11-17 21:11:30 -0500910static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400911{
Sasha Levin2037a092015-05-12 19:31:37 -0400912 struct btrfs_device *device, *tmp;
Anand Jain0ccd0522016-09-22 12:56:13 +0800913 struct list_head pending_put;
914
915 INIT_LIST_HEAD(&pending_put);
Yan Zhenge4404d62008-12-12 10:03:26 -0500916
Yan Zheng2b820322008-11-17 21:11:30 -0500917 if (--fs_devices->opened > 0)
918 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400919
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000920 mutex_lock(&fs_devices->device_list_mutex);
Sasha Levin2037a092015-05-12 19:31:37 -0400921 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
Anand Jain0ccd0522016-09-22 12:56:13 +0800922 btrfs_prepare_close_one_device(device);
923 list_add(&device->dev_list, &pending_put);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400924 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000925 mutex_unlock(&fs_devices->device_list_mutex);
926
Anand Jain0ccd0522016-09-22 12:56:13 +0800927 /*
928 * btrfs_show_devname() is using the device_list_mutex,
929 * sometimes call to blkdev_put() leads vfs calling
930 * into this func. So do put outside of device_list_mutex,
931 * as of now.
932 */
933 while (!list_empty(&pending_put)) {
934 device = list_first_entry(&pending_put,
935 struct btrfs_device, dev_list);
936 list_del(&device->dev_list);
937 btrfs_close_bdev(device);
938 call_rcu(&device->rcu, free_device);
939 }
940
Yan Zhenge4404d62008-12-12 10:03:26 -0500941 WARN_ON(fs_devices->open_devices);
942 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500943 fs_devices->opened = 0;
944 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500945
Chris Mason8a4b83c2008-03-24 15:02:07 -0400946 return 0;
947}
948
Yan Zheng2b820322008-11-17 21:11:30 -0500949int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
950{
Yan Zhenge4404d62008-12-12 10:03:26 -0500951 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500952 int ret;
953
954 mutex_lock(&uuid_mutex);
955 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500956 if (!fs_devices->opened) {
957 seed_devices = fs_devices->seed;
958 fs_devices->seed = NULL;
959 }
Yan Zheng2b820322008-11-17 21:11:30 -0500960 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500961
962 while (seed_devices) {
963 fs_devices = seed_devices;
964 seed_devices = fs_devices->seed;
965 __btrfs_close_devices(fs_devices);
966 free_fs_devices(fs_devices);
967 }
Eric Sandeenbc178622013-03-09 15:18:39 +0000968 /*
969 * Wait for rcu kworkers under __btrfs_close_devices
970 * to finish all blkdev_puts so device is really
971 * free when umount is done.
972 */
973 rcu_barrier();
Yan Zheng2b820322008-11-17 21:11:30 -0500974 return ret;
975}
976
Yan Zhenge4404d62008-12-12 10:03:26 -0500977static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
978 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400979{
Josef Bacikd5e20032011-08-04 14:52:27 +0000980 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400981 struct block_device *bdev;
982 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400983 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +0800984 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -0400985 struct buffer_head *bh;
986 struct btrfs_super_block *disk_super;
Chris Masona0af4692008-05-13 16:03:06 -0400987 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500988 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400989 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400990
Tejun Heod4d77622010-11-13 11:55:18 +0100991 flags |= FMODE_EXCL;
992
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500993 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400994 if (device->bdev)
995 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400996 if (!device->name)
997 continue;
998
Eric Sandeenf63e0cc2013-04-04 20:45:08 +0000999 /* Just open everything we can; ignore failures here */
1000 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
1001 &bdev, &bh))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001002 continue;
Chris Masona0af4692008-05-13 16:03:06 -04001003
1004 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +00001005 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -04001006 if (devid != device->devid)
1007 goto error_brelse;
1008
Yan Zheng2b820322008-11-17 21:11:30 -05001009 if (memcmp(device->uuid, disk_super->dev_item.uuid,
1010 BTRFS_UUID_SIZE))
1011 goto error_brelse;
1012
1013 device->generation = btrfs_super_generation(disk_super);
Miao Xie443f24f2014-07-24 11:37:15 +08001014 if (!latest_dev ||
1015 device->generation > latest_dev->generation)
1016 latest_dev = device;
Chris Masona0af4692008-05-13 16:03:06 -04001017
Yan Zheng2b820322008-11-17 21:11:30 -05001018 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
1019 device->writeable = 0;
1020 } else {
1021 device->writeable = !bdev_read_only(bdev);
1022 seeding = 0;
1023 }
1024
Josef Bacikd5e20032011-08-04 14:52:27 +00001025 q = bdev_get_queue(bdev);
Miao Xie90180da2014-09-03 21:35:30 +08001026 if (blk_queue_discard(q))
Josef Bacikd5e20032011-08-04 14:52:27 +00001027 device->can_discard = 1;
Anand Jaine884f4f2017-04-04 18:40:19 +08001028 if (!blk_queue_nonrot(q))
1029 fs_devices->rotating = 1;
Josef Bacikd5e20032011-08-04 14:52:27 +00001030
Chris Mason8a4b83c2008-03-24 15:02:07 -04001031 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001032 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -05001033 device->mode = flags;
1034
Chris Masona0af4692008-05-13 16:03:06 -04001035 fs_devices->open_devices++;
Ilya Dryomov55e50e42013-09-01 18:56:44 +03001036 if (device->writeable &&
1037 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Yan Zheng2b820322008-11-17 21:11:30 -05001038 fs_devices->rw_devices++;
1039 list_add(&device->dev_alloc_list,
1040 &fs_devices->alloc_list);
1041 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +00001042 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -04001043 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001044
Chris Masona0af4692008-05-13 16:03:06 -04001045error_brelse:
1046 brelse(bh);
Tejun Heod4d77622010-11-13 11:55:18 +01001047 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -04001048 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001049 }
Chris Masona0af4692008-05-13 16:03:06 -04001050 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +03001051 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -04001052 goto out;
1053 }
Yan Zheng2b820322008-11-17 21:11:30 -05001054 fs_devices->seeding = seeding;
1055 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +08001056 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -05001057 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -04001058out:
Yan Zheng2b820322008-11-17 21:11:30 -05001059 return ret;
1060}
1061
1062int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -05001063 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -05001064{
1065 int ret;
1066
1067 mutex_lock(&uuid_mutex);
1068 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001069 fs_devices->opened++;
1070 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001071 } else {
Chris Mason15916de2008-11-19 21:17:22 -05001072 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -05001073 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001074 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001075 return ret;
1076}
1077
Anand Jain6cf86a002016-02-13 10:01:29 +08001078void btrfs_release_disk_super(struct page *page)
1079{
1080 kunmap(page);
1081 put_page(page);
1082}
1083
1084int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr,
1085 struct page **page, struct btrfs_super_block **disk_super)
1086{
1087 void *p;
1088 pgoff_t index;
1089
1090 /* make sure our super fits in the device */
1091 if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode))
1092 return 1;
1093
1094 /* make sure our super fits in the page */
1095 if (sizeof(**disk_super) > PAGE_SIZE)
1096 return 1;
1097
1098 /* make sure our super doesn't straddle pages on disk */
1099 index = bytenr >> PAGE_SHIFT;
1100 if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index)
1101 return 1;
1102
1103 /* pull in the page with our super */
1104 *page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1105 index, GFP_KERNEL);
1106
1107 if (IS_ERR_OR_NULL(*page))
1108 return 1;
1109
1110 p = kmap(*page);
1111
1112 /* align our pointer to the offset of the super block */
1113 *disk_super = p + (bytenr & ~PAGE_MASK);
1114
1115 if (btrfs_super_bytenr(*disk_super) != bytenr ||
1116 btrfs_super_magic(*disk_super) != BTRFS_MAGIC) {
1117 btrfs_release_disk_super(*page);
1118 return 1;
1119 }
1120
1121 if ((*disk_super)->label[0] &&
1122 (*disk_super)->label[BTRFS_LABEL_SIZE - 1])
1123 (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0';
1124
1125 return 0;
1126}
1127
David Sterba6f60cbd2013-02-15 11:31:02 -07001128/*
1129 * Look for a btrfs signature on a device. This may be called out of the mount path
1130 * and we are not allowed to call set_blocksize during the scan. The superblock
1131 * is read via pagecache
1132 */
Christoph Hellwig97288f22008-12-02 06:36:09 -05001133int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001134 struct btrfs_fs_devices **fs_devices_ret)
1135{
1136 struct btrfs_super_block *disk_super;
1137 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -07001138 struct page *page;
David Sterba6f60cbd2013-02-15 11:31:02 -07001139 int ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001140 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -04001141 u64 transid;
Josef Bacik02db0842012-06-21 16:03:58 -04001142 u64 total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001143 u64 bytenr;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001144
David Sterba6f60cbd2013-02-15 11:31:02 -07001145 /*
1146 * we would like to check all the supers, but that would make
1147 * a btrfs mount succeed after a mkfs from a different FS.
1148 * So, we need to add a special mount option to scan for
1149 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1150 */
1151 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +01001152 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -05001153 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -07001154
1155 bdev = blkdev_get_by_path(path, flags, holder);
David Sterba6f60cbd2013-02-15 11:31:02 -07001156 if (IS_ERR(bdev)) {
1157 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001158 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -07001159 }
1160
Anand Jain6cf86a002016-02-13 10:01:29 +08001161 if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super))
David Sterba6f60cbd2013-02-15 11:31:02 -07001162 goto error_bdev_put;
1163
Xiao Guangronga3438322010-01-06 11:48:18 +00001164 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -04001165 transid = btrfs_super_generation(disk_super);
Josef Bacik02db0842012-06-21 16:03:58 -04001166 total_devices = btrfs_super_num_devices(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001167
Chris Mason8a4b83c2008-03-24 15:02:07 -04001168 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
David Sterba60999ca2014-03-26 18:26:36 +01001169 if (ret > 0) {
1170 if (disk_super->label[0]) {
Jeff Mahoney62e85572016-09-20 10:05:01 -04001171 pr_info("BTRFS: device label %s ", disk_super->label);
David Sterba60999ca2014-03-26 18:26:36 +01001172 } else {
Jeff Mahoney62e85572016-09-20 10:05:01 -04001173 pr_info("BTRFS: device fsid %pU ", disk_super->fsid);
David Sterba60999ca2014-03-26 18:26:36 +01001174 }
1175
Jeff Mahoney62e85572016-09-20 10:05:01 -04001176 pr_cont("devid %llu transid %llu %s\n", devid, transid, path);
David Sterba60999ca2014-03-26 18:26:36 +01001177 ret = 0;
1178 }
Josef Bacik02db0842012-06-21 16:03:58 -04001179 if (!ret && fs_devices_ret)
1180 (*fs_devices_ret)->total_devices = total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001181
Anand Jain6cf86a002016-02-13 10:01:29 +08001182 btrfs_release_disk_super(page);
David Sterba6f60cbd2013-02-15 11:31:02 -07001183
1184error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001185 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001186error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001187 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001188 return ret;
1189}
Chris Mason0b86a832008-03-24 15:01:56 -04001190
Miao Xie6d07bce2011-01-05 10:07:31 +00001191/* helper to account the used device space in the range */
1192int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
1193 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -04001194{
1195 struct btrfs_key key;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001196 struct btrfs_root *root = device->fs_info->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +00001197 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001198 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +00001199 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001200 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +00001201 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001202 struct extent_buffer *l;
1203
Miao Xie6d07bce2011-01-05 10:07:31 +00001204 *length = 0;
1205
Stefan Behrens63a212a2012-11-05 18:29:28 +01001206 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
Miao Xie6d07bce2011-01-05 10:07:31 +00001207 return 0;
1208
Yan Zheng2b820322008-11-17 21:11:30 -05001209 path = btrfs_alloc_path();
1210 if (!path)
1211 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01001212 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04001213
Chris Mason0b86a832008-03-24 15:01:56 -04001214 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001215 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001216 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +00001217
1218 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001219 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001220 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001221 if (ret > 0) {
1222 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1223 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001224 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001225 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001226
Chris Mason0b86a832008-03-24 15:01:56 -04001227 while (1) {
1228 l = path->nodes[0];
1229 slot = path->slots[0];
1230 if (slot >= btrfs_header_nritems(l)) {
1231 ret = btrfs_next_leaf(root, path);
1232 if (ret == 0)
1233 continue;
1234 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001235 goto out;
1236
1237 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001238 }
1239 btrfs_item_key_to_cpu(l, &key, slot);
1240
1241 if (key.objectid < device->devid)
1242 goto next;
1243
1244 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +00001245 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001246
David Sterba962a2982014-06-04 18:41:45 +02001247 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001248 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001249
Chris Mason0b86a832008-03-24 15:01:56 -04001250 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +00001251 extent_end = key.offset + btrfs_dev_extent_length(l,
1252 dev_extent);
1253 if (key.offset <= start && extent_end > end) {
1254 *length = end - start + 1;
1255 break;
1256 } else if (key.offset <= start && extent_end > start)
1257 *length += extent_end - start;
1258 else if (key.offset > start && extent_end <= end)
1259 *length += extent_end - key.offset;
1260 else if (key.offset > start && key.offset <= end) {
1261 *length += end - key.offset + 1;
1262 break;
1263 } else if (key.offset > end)
1264 break;
1265
1266next:
1267 path->slots[0]++;
1268 }
1269 ret = 0;
1270out:
1271 btrfs_free_path(path);
1272 return ret;
1273}
1274
Jeff Mahoney499f3772015-06-15 09:41:17 -04001275static int contains_pending_extent(struct btrfs_transaction *transaction,
Josef Bacik6df9a952013-06-27 13:22:46 -04001276 struct btrfs_device *device,
1277 u64 *start, u64 len)
1278{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001279 struct btrfs_fs_info *fs_info = device->fs_info;
Josef Bacik6df9a952013-06-27 13:22:46 -04001280 struct extent_map *em;
Jeff Mahoney499f3772015-06-15 09:41:17 -04001281 struct list_head *search_list = &fs_info->pinned_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001282 int ret = 0;
Forrest Liu1b984502015-02-09 17:30:47 +08001283 u64 physical_start = *start;
Josef Bacik6df9a952013-06-27 13:22:46 -04001284
Jeff Mahoney499f3772015-06-15 09:41:17 -04001285 if (transaction)
1286 search_list = &transaction->pending_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001287again:
1288 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001289 struct map_lookup *map;
1290 int i;
1291
Jeff Mahoney95617d62015-06-03 10:55:48 -04001292 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04001293 for (i = 0; i < map->num_stripes; i++) {
Filipe Mananac152b632015-05-14 10:46:03 +01001294 u64 end;
1295
Josef Bacik6df9a952013-06-27 13:22:46 -04001296 if (map->stripes[i].dev != device)
1297 continue;
Forrest Liu1b984502015-02-09 17:30:47 +08001298 if (map->stripes[i].physical >= physical_start + len ||
Josef Bacik6df9a952013-06-27 13:22:46 -04001299 map->stripes[i].physical + em->orig_block_len <=
Forrest Liu1b984502015-02-09 17:30:47 +08001300 physical_start)
Josef Bacik6df9a952013-06-27 13:22:46 -04001301 continue;
Filipe Mananac152b632015-05-14 10:46:03 +01001302 /*
1303 * Make sure that while processing the pinned list we do
1304 * not override our *start with a lower value, because
1305 * we can have pinned chunks that fall within this
1306 * device hole and that have lower physical addresses
1307 * than the pending chunks we processed before. If we
1308 * do not take this special care we can end up getting
1309 * 2 pending chunks that start at the same physical
1310 * device offsets because the end offset of a pinned
1311 * chunk can be equal to the start offset of some
1312 * pending chunk.
1313 */
1314 end = map->stripes[i].physical + em->orig_block_len;
1315 if (end > *start) {
1316 *start = end;
1317 ret = 1;
1318 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001319 }
1320 }
Jeff Mahoney499f3772015-06-15 09:41:17 -04001321 if (search_list != &fs_info->pinned_chunks) {
1322 search_list = &fs_info->pinned_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001323 goto again;
1324 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001325
1326 return ret;
1327}
1328
1329
Chris Mason0b86a832008-03-24 15:01:56 -04001330/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001331 * find_free_dev_extent_start - find free space in the specified device
1332 * @device: the device which we search the free space in
1333 * @num_bytes: the size of the free space that we need
1334 * @search_start: the position from which to begin the search
1335 * @start: store the start of the free space.
1336 * @len: the size of the free space. that we find, or the size
1337 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001338 *
Chris Mason0b86a832008-03-24 15:01:56 -04001339 * this uses a pretty simple search, the expectation is that it is
1340 * called very infrequently and that a given device has a small number
1341 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001342 *
1343 * @start is used to store the start of the free space if we find. But if we
1344 * don't find suitable free space, it will be used to store the start position
1345 * of the max free space.
1346 *
1347 * @len is used to store the size of the free space that we find.
1348 * But if we don't find suitable free space, it is used to store the size of
1349 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001350 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001351int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1352 struct btrfs_device *device, u64 num_bytes,
1353 u64 search_start, u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001354{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001355 struct btrfs_fs_info *fs_info = device->fs_info;
1356 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001357 struct btrfs_key key;
Miao Xie7bfc8372011-01-05 10:07:26 +00001358 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001359 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001360 u64 hole_size;
1361 u64 max_hole_start;
1362 u64 max_hole_size;
1363 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001364 u64 search_end = device->total_bytes;
1365 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001366 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001367 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001368
1369 /*
1370 * We don't want to overwrite the superblock on the drive nor any area
1371 * used by the boot loader (grub for example), so we make sure to start
1372 * at an offset of at least 1MB.
1373 */
David Sterba0d0c71b2017-06-15 01:30:06 +02001374 search_start = max_t(u64, search_start, SZ_1M);
Chris Mason0b86a832008-03-24 15:01:56 -04001375
Josef Bacik6df9a952013-06-27 13:22:46 -04001376 path = btrfs_alloc_path();
1377 if (!path)
1378 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001379
Miao Xie7bfc8372011-01-05 10:07:26 +00001380 max_hole_start = search_start;
1381 max_hole_size = 0;
1382
Zhao Leif2ab7612015-02-16 18:52:17 +08001383again:
Stefan Behrens63a212a2012-11-05 18:29:28 +01001384 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001385 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001386 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001387 }
1388
David Sterbae4058b52015-11-27 16:31:35 +01001389 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001390 path->search_commit_root = 1;
1391 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001392
Chris Mason0b86a832008-03-24 15:01:56 -04001393 key.objectid = device->devid;
1394 key.offset = search_start;
1395 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001396
Li Zefan125ccb02011-12-08 15:07:24 +08001397 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001398 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001399 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001400 if (ret > 0) {
1401 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1402 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001403 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001404 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001405
Chris Mason0b86a832008-03-24 15:01:56 -04001406 while (1) {
1407 l = path->nodes[0];
1408 slot = path->slots[0];
1409 if (slot >= btrfs_header_nritems(l)) {
1410 ret = btrfs_next_leaf(root, path);
1411 if (ret == 0)
1412 continue;
1413 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001414 goto out;
1415
1416 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001417 }
1418 btrfs_item_key_to_cpu(l, &key, slot);
1419
1420 if (key.objectid < device->devid)
1421 goto next;
1422
1423 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001424 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001425
David Sterba962a2982014-06-04 18:41:45 +02001426 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001427 goto next;
1428
Miao Xie7bfc8372011-01-05 10:07:26 +00001429 if (key.offset > search_start) {
1430 hole_size = key.offset - search_start;
1431
Josef Bacik6df9a952013-06-27 13:22:46 -04001432 /*
1433 * Have to check before we set max_hole_start, otherwise
1434 * we could end up sending back this offset anyway.
1435 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001436 if (contains_pending_extent(transaction, device,
Josef Bacik6df9a952013-06-27 13:22:46 -04001437 &search_start,
Forrest Liu1b984502015-02-09 17:30:47 +08001438 hole_size)) {
1439 if (key.offset >= search_start) {
1440 hole_size = key.offset - search_start;
1441 } else {
1442 WARN_ON_ONCE(1);
1443 hole_size = 0;
1444 }
1445 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001446
Miao Xie7bfc8372011-01-05 10:07:26 +00001447 if (hole_size > max_hole_size) {
1448 max_hole_start = search_start;
1449 max_hole_size = hole_size;
1450 }
1451
1452 /*
1453 * If this free space is greater than which we need,
1454 * it must be the max free space that we have found
1455 * until now, so max_hole_start must point to the start
1456 * of this free space and the length of this free space
1457 * is stored in max_hole_size. Thus, we return
1458 * max_hole_start and max_hole_size and go back to the
1459 * caller.
1460 */
1461 if (hole_size >= num_bytes) {
1462 ret = 0;
1463 goto out;
1464 }
1465 }
1466
Chris Mason0b86a832008-03-24 15:01:56 -04001467 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001468 extent_end = key.offset + btrfs_dev_extent_length(l,
1469 dev_extent);
1470 if (extent_end > search_start)
1471 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001472next:
1473 path->slots[0]++;
1474 cond_resched();
1475 }
Chris Mason0b86a832008-03-24 15:01:56 -04001476
liubo38c01b92011-08-02 02:39:03 +00001477 /*
1478 * At this point, search_start should be the end of
1479 * allocated dev extents, and when shrinking the device,
1480 * search_end may be smaller than search_start.
1481 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001482 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001483 hole_size = search_end - search_start;
1484
Jeff Mahoney499f3772015-06-15 09:41:17 -04001485 if (contains_pending_extent(transaction, device, &search_start,
Zhao Leif2ab7612015-02-16 18:52:17 +08001486 hole_size)) {
1487 btrfs_release_path(path);
1488 goto again;
1489 }
Chris Mason0b86a832008-03-24 15:01:56 -04001490
Zhao Leif2ab7612015-02-16 18:52:17 +08001491 if (hole_size > max_hole_size) {
1492 max_hole_start = search_start;
1493 max_hole_size = hole_size;
1494 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001495 }
1496
Miao Xie7bfc8372011-01-05 10:07:26 +00001497 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001498 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001499 ret = -ENOSPC;
1500 else
1501 ret = 0;
1502
1503out:
Yan Zheng2b820322008-11-17 21:11:30 -05001504 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001505 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001506 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001507 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001508 return ret;
1509}
1510
Jeff Mahoney499f3772015-06-15 09:41:17 -04001511int find_free_dev_extent(struct btrfs_trans_handle *trans,
1512 struct btrfs_device *device, u64 num_bytes,
1513 u64 *start, u64 *len)
1514{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001515 /* FIXME use last free of some kind */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001516 return find_free_dev_extent_start(trans->transaction, device,
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001517 num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001518}
1519
Christoph Hellwigb2950862008-12-02 09:54:17 -05001520static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001521 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001522 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001523{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001524 struct btrfs_fs_info *fs_info = device->fs_info;
1525 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001526 int ret;
1527 struct btrfs_path *path;
Chris Mason8f18cf12008-04-25 16:53:30 -04001528 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001529 struct btrfs_key found_key;
1530 struct extent_buffer *leaf = NULL;
1531 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001532
1533 path = btrfs_alloc_path();
1534 if (!path)
1535 return -ENOMEM;
1536
1537 key.objectid = device->devid;
1538 key.offset = start;
1539 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001540again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001541 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001542 if (ret > 0) {
1543 ret = btrfs_previous_item(root, path, key.objectid,
1544 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001545 if (ret)
1546 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001547 leaf = path->nodes[0];
1548 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1549 extent = btrfs_item_ptr(leaf, path->slots[0],
1550 struct btrfs_dev_extent);
1551 BUG_ON(found_key.offset > start || found_key.offset +
1552 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001553 key = found_key;
1554 btrfs_release_path(path);
1555 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001556 } else if (ret == 0) {
1557 leaf = path->nodes[0];
1558 extent = btrfs_item_ptr(leaf, path->slots[0],
1559 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001560 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001561 btrfs_handle_fs_error(fs_info, ret, "Slot search failed");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001562 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001563 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001564
Miao Xie2196d6e2014-09-03 21:35:41 +08001565 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1566
Chris Mason8f18cf12008-04-25 16:53:30 -04001567 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001568 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001569 btrfs_handle_fs_error(fs_info, ret,
1570 "Failed to remove dev extent item");
Zhao Lei13212b52015-02-12 14:18:17 +08001571 } else {
Josef Bacik3204d332015-09-24 10:46:10 -04001572 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001573 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001574out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001575 btrfs_free_path(path);
1576 return ret;
1577}
1578
Eric Sandeen48a3b632013-04-25 20:41:01 +00001579static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1580 struct btrfs_device *device,
1581 u64 chunk_tree, u64 chunk_objectid,
1582 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001583{
1584 int ret;
1585 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001586 struct btrfs_fs_info *fs_info = device->fs_info;
1587 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001588 struct btrfs_dev_extent *extent;
1589 struct extent_buffer *leaf;
1590 struct btrfs_key key;
1591
Chris Masondfe25022008-05-13 13:46:40 -04001592 WARN_ON(!device->in_fs_metadata);
Stefan Behrens63a212a2012-11-05 18:29:28 +01001593 WARN_ON(device->is_tgtdev_for_dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04001594 path = btrfs_alloc_path();
1595 if (!path)
1596 return -ENOMEM;
1597
Chris Mason0b86a832008-03-24 15:01:56 -04001598 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001599 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001600 key.type = BTRFS_DEV_EXTENT_KEY;
1601 ret = btrfs_insert_empty_item(trans, root, path, &key,
1602 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001603 if (ret)
1604 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001605
1606 leaf = path->nodes[0];
1607 extent = btrfs_item_ptr(leaf, path->slots[0],
1608 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001609 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1610 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1611 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1612
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001613 write_extent_buffer_chunk_tree_uuid(leaf, fs_info->chunk_tree_uuid);
Chris Masone17cade2008-04-15 15:41:47 -04001614
Chris Mason0b86a832008-03-24 15:01:56 -04001615 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1616 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001617out:
Chris Mason0b86a832008-03-24 15:01:56 -04001618 btrfs_free_path(path);
1619 return ret;
1620}
1621
Josef Bacik6df9a952013-06-27 13:22:46 -04001622static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001623{
Josef Bacik6df9a952013-06-27 13:22:46 -04001624 struct extent_map_tree *em_tree;
1625 struct extent_map *em;
1626 struct rb_node *n;
1627 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001628
Josef Bacik6df9a952013-06-27 13:22:46 -04001629 em_tree = &fs_info->mapping_tree.map_tree;
1630 read_lock(&em_tree->lock);
1631 n = rb_last(&em_tree->map);
1632 if (n) {
1633 em = rb_entry(n, struct extent_map, rb_node);
1634 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001635 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001636 read_unlock(&em_tree->lock);
1637
Chris Mason0b86a832008-03-24 15:01:56 -04001638 return ret;
1639}
1640
Ilya Dryomov53f10652013-08-12 14:33:01 +03001641static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1642 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001643{
1644 int ret;
1645 struct btrfs_key key;
1646 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001647 struct btrfs_path *path;
1648
Yan Zheng2b820322008-11-17 21:11:30 -05001649 path = btrfs_alloc_path();
1650 if (!path)
1651 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001652
1653 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1654 key.type = BTRFS_DEV_ITEM_KEY;
1655 key.offset = (u64)-1;
1656
Ilya Dryomov53f10652013-08-12 14:33:01 +03001657 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001658 if (ret < 0)
1659 goto error;
1660
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001661 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001662
Ilya Dryomov53f10652013-08-12 14:33:01 +03001663 ret = btrfs_previous_item(fs_info->chunk_root, path,
1664 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001665 BTRFS_DEV_ITEM_KEY);
1666 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001667 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001668 } else {
1669 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1670 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001671 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001672 }
1673 ret = 0;
1674error:
Yan Zheng2b820322008-11-17 21:11:30 -05001675 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001676 return ret;
1677}
1678
1679/*
1680 * the device information is stored in the chunk root
1681 * the btrfs_device struct should be fully filled in
1682 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001683static int btrfs_add_device(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001684 struct btrfs_fs_info *fs_info,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001685 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001686{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001687 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001688 int ret;
1689 struct btrfs_path *path;
1690 struct btrfs_dev_item *dev_item;
1691 struct extent_buffer *leaf;
1692 struct btrfs_key key;
1693 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001694
Chris Mason0b86a832008-03-24 15:01:56 -04001695 path = btrfs_alloc_path();
1696 if (!path)
1697 return -ENOMEM;
1698
Chris Mason0b86a832008-03-24 15:01:56 -04001699 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1700 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001701 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001702
1703 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001704 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001705 if (ret)
1706 goto out;
1707
1708 leaf = path->nodes[0];
1709 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1710
1711 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001712 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001713 btrfs_set_device_type(leaf, dev_item, device->type);
1714 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1715 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1716 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001717 btrfs_set_device_total_bytes(leaf, dev_item,
1718 btrfs_device_get_disk_total_bytes(device));
1719 btrfs_set_device_bytes_used(leaf, dev_item,
1720 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001721 btrfs_set_device_group(leaf, dev_item, 0);
1722 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1723 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001724 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001725
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001726 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001727 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001728 ptr = btrfs_device_fsid(dev_item);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001729 write_extent_buffer(leaf, fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001730 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001731
Yan Zheng2b820322008-11-17 21:11:30 -05001732 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001733out:
1734 btrfs_free_path(path);
1735 return ret;
1736}
Chris Mason8f18cf12008-04-25 16:53:30 -04001737
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001738/*
1739 * Function to update ctime/mtime for a given device path.
1740 * Mainly used for ctime/mtime based probe like libblkid.
1741 */
David Sterbada353f62017-02-14 17:55:53 +01001742static void update_dev_time(const char *path_name)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001743{
1744 struct file *filp;
1745
1746 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001747 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001748 return;
1749 file_update_time(filp);
1750 filp_close(filp, NULL);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001751}
1752
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001753static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info,
Chris Masona061fc82008-05-07 11:43:44 -04001754 struct btrfs_device *device)
1755{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001756 struct btrfs_root *root = fs_info->chunk_root;
Chris Masona061fc82008-05-07 11:43:44 -04001757 int ret;
1758 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001759 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001760 struct btrfs_trans_handle *trans;
1761
Chris Masona061fc82008-05-07 11:43:44 -04001762 path = btrfs_alloc_path();
1763 if (!path)
1764 return -ENOMEM;
1765
Yan, Zhenga22285a2010-05-16 10:48:46 -04001766 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001767 if (IS_ERR(trans)) {
1768 btrfs_free_path(path);
1769 return PTR_ERR(trans);
1770 }
Chris Masona061fc82008-05-07 11:43:44 -04001771 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1772 key.type = BTRFS_DEV_ITEM_KEY;
1773 key.offset = device->devid;
1774
1775 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1776 if (ret < 0)
1777 goto out;
1778
1779 if (ret > 0) {
1780 ret = -ENOENT;
1781 goto out;
1782 }
1783
1784 ret = btrfs_del_item(trans, root, path);
1785 if (ret)
1786 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001787out:
1788 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001789 btrfs_commit_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001790 return ret;
1791}
1792
David Sterba3cc31a02016-02-15 16:00:26 +01001793/*
1794 * Verify that @num_devices satisfies the RAID profile constraints in the whole
1795 * filesystem. It's up to the caller to adjust that number regarding eg. device
1796 * replace.
1797 */
1798static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info,
1799 u64 num_devices)
Chris Masona061fc82008-05-07 11:43:44 -04001800{
Chris Masona061fc82008-05-07 11:43:44 -04001801 u64 all_avail;
Miao Xiede98ced2013-01-29 10:13:12 +00001802 unsigned seq;
David Sterba418775a2016-02-15 16:28:14 +01001803 int i;
Chris Masona061fc82008-05-07 11:43:44 -04001804
Miao Xiede98ced2013-01-29 10:13:12 +00001805 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001806 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00001807
Anand Jainbd45ffb2016-02-13 10:01:34 +08001808 all_avail = fs_info->avail_data_alloc_bits |
1809 fs_info->avail_system_alloc_bits |
1810 fs_info->avail_metadata_alloc_bits;
1811 } while (read_seqretry(&fs_info->profiles_lock, seq));
Anand Jainf1fa7f22016-02-13 10:01:33 +08001812
David Sterba418775a2016-02-15 16:28:14 +01001813 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
1814 if (!(all_avail & btrfs_raid_group[i]))
1815 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001816
David Sterba418775a2016-02-15 16:28:14 +01001817 if (num_devices < btrfs_raid_array[i].devs_min) {
1818 int ret = btrfs_raid_mindev_error[i];
Chris Masona061fc82008-05-07 11:43:44 -04001819
David Sterba418775a2016-02-15 16:28:14 +01001820 if (ret)
1821 return ret;
1822 }
Anand Jainbd45ffb2016-02-13 10:01:34 +08001823 }
1824
1825 return 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001826}
1827
Anand Jain88acff62016-05-03 17:44:43 +08001828struct btrfs_device *btrfs_find_next_active_device(struct btrfs_fs_devices *fs_devs,
1829 struct btrfs_device *device)
1830{
1831 struct btrfs_device *next_device;
1832
1833 list_for_each_entry(next_device, &fs_devs->devices, dev_list) {
1834 if (next_device != device &&
1835 !next_device->missing && next_device->bdev)
1836 return next_device;
1837 }
1838
1839 return NULL;
1840}
1841
1842/*
1843 * Helper function to check if the given device is part of s_bdev / latest_bdev
1844 * and replace it with the provided or the next active device, in the context
1845 * where this function called, there should be always be another device (or
1846 * this_dev) which is active.
1847 */
1848void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info,
1849 struct btrfs_device *device, struct btrfs_device *this_dev)
1850{
1851 struct btrfs_device *next_device;
1852
1853 if (this_dev)
1854 next_device = this_dev;
1855 else
1856 next_device = btrfs_find_next_active_device(fs_info->fs_devices,
1857 device);
1858 ASSERT(next_device);
1859
1860 if (fs_info->sb->s_bdev &&
1861 (fs_info->sb->s_bdev == device->bdev))
1862 fs_info->sb->s_bdev = next_device->bdev;
1863
1864 if (fs_info->fs_devices->latest_bdev == device->bdev)
1865 fs_info->fs_devices->latest_bdev = next_device->bdev;
1866}
1867
David Sterbada353f62017-02-14 17:55:53 +01001868int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path,
1869 u64 devid)
Anand Jainf1fa7f22016-02-13 10:01:33 +08001870{
1871 struct btrfs_device *device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001872 struct btrfs_fs_devices *cur_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001873 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001874 int ret = 0;
1875 bool clear_super = false;
1876
1877 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001878
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001879 num_devices = fs_info->fs_devices->num_devices;
1880 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
1881 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
Chris Masona061fc82008-05-07 11:43:44 -04001882 WARN_ON(num_devices < 1);
1883 num_devices--;
1884 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001885 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Chris Masona061fc82008-05-07 11:43:44 -04001886
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001887 ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001888 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001889 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001890
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001891 ret = btrfs_find_device_by_devspec(fs_info, devid, device_path,
1892 &device);
Anand Jain24fc5722016-02-13 10:01:36 +08001893 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001894 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001895
Stefan Behrens63a212a2012-11-05 18:29:28 +01001896 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001897 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08001898 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001899 }
1900
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001901 if (device->writeable && fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001902 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08001903 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001904 }
1905
1906 if (device->writeable) {
David Sterba34441362016-10-04 19:34:27 +02001907 mutex_lock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001908 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001909 device->fs_devices->rw_devices--;
David Sterba34441362016-10-04 19:34:27 +02001910 mutex_unlock(&fs_info->chunk_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001911 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001912 }
Chris Masona061fc82008-05-07 11:43:44 -04001913
Carey Underwoodd7901552013-03-04 16:37:06 -06001914 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001915 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001916 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001917 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001918 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001919
Stefan Behrens63a212a2012-11-05 18:29:28 +01001920 /*
1921 * TODO: the superblock still includes this device in its num_devices
1922 * counter although write_all_supers() is not locked out. This
1923 * could give a filesystem state which requires a degraded mount.
1924 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001925 ret = btrfs_rm_dev_item(fs_info, device);
Chris Masona061fc82008-05-07 11:43:44 -04001926 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001927 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001928
Yan Zheng2b820322008-11-17 21:11:30 -05001929 device->in_fs_metadata = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001930 btrfs_scrub_cancel_dev(fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001931
1932 /*
1933 * the device list mutex makes sure that we don't change
1934 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001935 * the device supers. Whoever is writing all supers, should
1936 * lock the device list mutex before getting the number of
1937 * devices in the super block (super_copy). Conversely,
1938 * whoever updates the number of devices in the super block
1939 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001940 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001941
1942 cur_devices = device->fs_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001943 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001944 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001945
Yan Zhenge4404d62008-12-12 10:03:26 -05001946 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001947 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001948
Chris Masoncd02dca2010-12-13 14:56:23 -05001949 if (device->missing)
Miao Xie3a7d55c2014-07-16 18:38:01 +08001950 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001951
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001952 btrfs_assign_next_active_device(fs_info, device, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05001953
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001954 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001955 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001956 /* remove sysfs entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001957 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001958 }
Anand Jain99994cd2014-06-03 11:36:00 +08001959
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001960 num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1;
1961 btrfs_set_super_num_devices(fs_info->super_copy, num_devices);
1962 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001963
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04001964 /*
1965 * at this point, the device is zero sized and detached from
1966 * the devices list. All that's left is to zero out the old
1967 * supers and free the device.
1968 */
1969 if (device->writeable)
1970 btrfs_scratch_superblocks(device->bdev, device->name->str);
1971
1972 btrfs_close_bdev(device);
1973 call_rcu(&device->rcu, free_device);
1974
Xiao Guangrong1f781602011-04-20 10:09:16 +00001975 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001976 struct btrfs_fs_devices *fs_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001977 fs_devices = fs_info->fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001978 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001979 if (fs_devices->seed == cur_devices) {
1980 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05001981 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001982 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001983 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001984 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001985 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001986 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001987 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001988 }
1989
Chris Masona061fc82008-05-07 11:43:44 -04001990out:
1991 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001992 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08001993
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001994error_undo:
1995 if (device->writeable) {
David Sterba34441362016-10-04 19:34:27 +02001996 mutex_lock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001997 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001998 &fs_info->fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001999 device->fs_devices->rw_devices++;
David Sterba34441362016-10-04 19:34:27 +02002000 mutex_unlock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00002001 }
Anand Jain24fc5722016-02-13 10:01:36 +08002002 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04002003}
2004
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002005void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
2006 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002007{
Anand Jaind51908c2014-08-13 14:24:19 +08002008 struct btrfs_fs_devices *fs_devices;
2009
Stefan Behrense93c89c2012-11-05 17:33:06 +01002010 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03002011
Anand Jain25e8e912014-08-20 10:56:56 +08002012 /*
2013 * in case of fs with no seed, srcdev->fs_devices will point
2014 * to fs_devices of fs_info. However when the dev being replaced is
2015 * a seed dev it will point to the seed's local fs_devices. In short
2016 * srcdev will have its correct fs_devices in both the cases.
2017 */
2018 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08002019
Stefan Behrense93c89c2012-11-05 17:33:06 +01002020 list_del_rcu(&srcdev->dev_list);
2021 list_del_rcu(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08002022 fs_devices->num_devices--;
Miao Xie82372bc2014-09-03 21:35:44 +08002023 if (srcdev->missing)
Anand Jaind51908c2014-08-13 14:24:19 +08002024 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002025
Anand Jain48b3b9d2016-04-12 21:36:16 +08002026 if (srcdev->writeable)
Miao Xie82372bc2014-09-03 21:35:44 +08002027 fs_devices->rw_devices--;
Ilya Dryomov13572722013-10-02 20:41:01 +03002028
Miao Xie82372bc2014-09-03 21:35:44 +08002029 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08002030 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002031}
2032
2033void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
2034 struct btrfs_device *srcdev)
2035{
2036 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002037
Anand Jain48b3b9d2016-04-12 21:36:16 +08002038 if (srcdev->writeable) {
2039 /* zero out the old super if it is writable */
2040 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
2041 }
Anand Jain14238812016-07-22 06:04:53 +08002042
2043 btrfs_close_bdev(srcdev);
2044
Stefan Behrense93c89c2012-11-05 17:33:06 +01002045 call_rcu(&srcdev->rcu, free_device);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002046
2047 /*
2048 * unless fs_devices is seed fs, num_devices shouldn't go
2049 * zero
2050 */
2051 BUG_ON(!fs_devices->num_devices && !fs_devices->seeding);
2052
2053 /* if this is no devs we rather delete the fs_devices */
2054 if (!fs_devices->num_devices) {
2055 struct btrfs_fs_devices *tmp_fs_devices;
2056
2057 tmp_fs_devices = fs_info->fs_devices;
2058 while (tmp_fs_devices) {
2059 if (tmp_fs_devices->seed == fs_devices) {
2060 tmp_fs_devices->seed = fs_devices->seed;
2061 break;
2062 }
2063 tmp_fs_devices = tmp_fs_devices->seed;
2064 }
2065 fs_devices->seed = NULL;
Anand Jain8bef8402014-08-13 14:24:23 +08002066 __btrfs_close_devices(fs_devices);
2067 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002068 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002069}
2070
2071void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2072 struct btrfs_device *tgtdev)
2073{
Miao Xie67a2c452014-09-03 21:35:43 +08002074 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002075 WARN_ON(!tgtdev);
2076 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002077
Anand Jain32576042015-08-14 18:32:49 +08002078 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002079
Anand Jain779bf3f2016-04-18 16:51:23 +08002080 if (tgtdev->bdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002081 fs_info->fs_devices->open_devices--;
Anand Jain779bf3f2016-04-18 16:51:23 +08002082
Stefan Behrense93c89c2012-11-05 17:33:06 +01002083 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002084
Anand Jain88acff62016-05-03 17:44:43 +08002085 btrfs_assign_next_active_device(fs_info, tgtdev, NULL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002086
Stefan Behrense93c89c2012-11-05 17:33:06 +01002087 list_del_rcu(&tgtdev->dev_list);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002088
2089 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002090 mutex_unlock(&uuid_mutex);
Anand Jain779bf3f2016-04-18 16:51:23 +08002091
2092 /*
2093 * The update_dev_time() with in btrfs_scratch_superblocks()
2094 * may lead to a call to btrfs_show_devname() which will try
2095 * to hold device_list_mutex. And here this device
2096 * is already out of device list, so we don't have to hold
2097 * the device_list_mutex lock.
2098 */
2099 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Anand Jain14238812016-07-22 06:04:53 +08002100
2101 btrfs_close_bdev(tgtdev);
Anand Jain779bf3f2016-04-18 16:51:23 +08002102 call_rcu(&tgtdev->rcu, free_device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002103}
2104
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002105static int btrfs_find_device_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002106 const char *device_path,
Eric Sandeen48a3b632013-04-25 20:41:01 +00002107 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002108{
2109 int ret = 0;
2110 struct btrfs_super_block *disk_super;
2111 u64 devid;
2112 u8 *dev_uuid;
2113 struct block_device *bdev;
2114 struct buffer_head *bh;
2115
2116 *device = NULL;
2117 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002118 fs_info->bdev_holder, 0, &bdev, &bh);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002119 if (ret)
2120 return ret;
2121 disk_super = (struct btrfs_super_block *)bh->b_data;
2122 devid = btrfs_stack_device_id(&disk_super->dev_item);
2123 dev_uuid = disk_super->dev_item.uuid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002124 *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002125 brelse(bh);
2126 if (!*device)
2127 ret = -ENOENT;
2128 blkdev_put(bdev, FMODE_READ);
2129 return ret;
2130}
2131
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002132int btrfs_find_device_missing_or_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002133 const char *device_path,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002134 struct btrfs_device **device)
2135{
2136 *device = NULL;
2137 if (strcmp(device_path, "missing") == 0) {
2138 struct list_head *devices;
2139 struct btrfs_device *tmp;
2140
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002141 devices = &fs_info->fs_devices->devices;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002142 /*
2143 * It is safe to read the devices since the volume_mutex
2144 * is held by the caller.
2145 */
2146 list_for_each_entry(tmp, devices, dev_list) {
2147 if (tmp->in_fs_metadata && !tmp->bdev) {
2148 *device = tmp;
2149 break;
2150 }
2151 }
2152
Anand Jaind74a6252015-08-14 18:32:56 +08002153 if (!*device)
2154 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002155
2156 return 0;
2157 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002158 return btrfs_find_device_by_path(fs_info, device_path, device);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002159 }
2160}
2161
Yan Zheng2b820322008-11-17 21:11:30 -05002162/*
David Sterba5c5c0df2016-02-15 16:39:55 +01002163 * Lookup a device given by device id, or the path if the id is 0.
2164 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002165int btrfs_find_device_by_devspec(struct btrfs_fs_info *fs_info, u64 devid,
David Sterbada353f62017-02-14 17:55:53 +01002166 const char *devpath,
2167 struct btrfs_device **device)
Anand Jain24e04742016-02-13 10:01:35 +08002168{
2169 int ret;
2170
David Sterba5c5c0df2016-02-15 16:39:55 +01002171 if (devid) {
Anand Jain24e04742016-02-13 10:01:35 +08002172 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002173 *device = btrfs_find_device(fs_info, devid, NULL, NULL);
Anand Jain24e04742016-02-13 10:01:35 +08002174 if (!*device)
2175 ret = -ENOENT;
2176 } else {
David Sterba5c5c0df2016-02-15 16:39:55 +01002177 if (!devpath || !devpath[0])
Anand Jainb3d1b152016-02-13 10:01:37 +08002178 return -EINVAL;
2179
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002180 ret = btrfs_find_device_missing_or_by_path(fs_info, devpath,
Anand Jain24e04742016-02-13 10:01:35 +08002181 device);
2182 }
2183 return ret;
2184}
2185
Yan Zheng2b820322008-11-17 21:11:30 -05002186/*
2187 * does all the dirty work required for changing file system's UUID.
2188 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002189static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002190{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002191 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002192 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002193 struct btrfs_fs_devices *seed_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002194 struct btrfs_super_block *disk_super = fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002195 struct btrfs_device *device;
2196 u64 super_flags;
2197
2198 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05002199 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002200 return -EINVAL;
2201
Ilya Dryomov2208a372013-08-12 14:33:03 +03002202 seed_devices = __alloc_fs_devices();
2203 if (IS_ERR(seed_devices))
2204 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002205
Yan Zhenge4404d62008-12-12 10:03:26 -05002206 old_devices = clone_fs_devices(fs_devices);
2207 if (IS_ERR(old_devices)) {
2208 kfree(seed_devices);
2209 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002210 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002211
Yan Zheng2b820322008-11-17 21:11:30 -05002212 list_add(&old_devices->list, &fs_uuids);
2213
Yan Zhenge4404d62008-12-12 10:03:26 -05002214 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2215 seed_devices->opened = 1;
2216 INIT_LIST_HEAD(&seed_devices->devices);
2217 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002218 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002219
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002220 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002221 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2222 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002223 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002224 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002225
David Sterba34441362016-10-04 19:34:27 +02002226 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002227 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
David Sterba34441362016-10-04 19:34:27 +02002228 mutex_unlock(&fs_info->chunk_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002229
Yan Zheng2b820322008-11-17 21:11:30 -05002230 fs_devices->seeding = 0;
2231 fs_devices->num_devices = 0;
2232 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002233 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002234 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002235 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002236
2237 generate_random_uuid(fs_devices->fsid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002238 memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002239 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002240 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002241
Yan Zheng2b820322008-11-17 21:11:30 -05002242 super_flags = btrfs_super_flags(disk_super) &
2243 ~BTRFS_SUPER_FLAG_SEEDING;
2244 btrfs_set_super_flags(disk_super, super_flags);
2245
2246 return 0;
2247}
2248
2249/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002250 * Store the expected generation for seed devices in device items.
Yan Zheng2b820322008-11-17 21:11:30 -05002251 */
2252static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002253 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002254{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002255 struct btrfs_root *root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002256 struct btrfs_path *path;
2257 struct extent_buffer *leaf;
2258 struct btrfs_dev_item *dev_item;
2259 struct btrfs_device *device;
2260 struct btrfs_key key;
2261 u8 fs_uuid[BTRFS_UUID_SIZE];
2262 u8 dev_uuid[BTRFS_UUID_SIZE];
2263 u64 devid;
2264 int ret;
2265
2266 path = btrfs_alloc_path();
2267 if (!path)
2268 return -ENOMEM;
2269
Yan Zheng2b820322008-11-17 21:11:30 -05002270 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2271 key.offset = 0;
2272 key.type = BTRFS_DEV_ITEM_KEY;
2273
2274 while (1) {
2275 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2276 if (ret < 0)
2277 goto error;
2278
2279 leaf = path->nodes[0];
2280next_slot:
2281 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2282 ret = btrfs_next_leaf(root, path);
2283 if (ret > 0)
2284 break;
2285 if (ret < 0)
2286 goto error;
2287 leaf = path->nodes[0];
2288 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002289 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002290 continue;
2291 }
2292
2293 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2294 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2295 key.type != BTRFS_DEV_ITEM_KEY)
2296 break;
2297
2298 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2299 struct btrfs_dev_item);
2300 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002301 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002302 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002303 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002304 BTRFS_UUID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002305 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002306 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002307
2308 if (device->fs_devices->seeding) {
2309 btrfs_set_device_generation(leaf, dev_item,
2310 device->generation);
2311 btrfs_mark_buffer_dirty(leaf);
2312 }
2313
2314 path->slots[0]++;
2315 goto next_slot;
2316 }
2317 ret = 0;
2318error:
2319 btrfs_free_path(path);
2320 return ret;
2321}
2322
David Sterbada353f62017-02-14 17:55:53 +01002323int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path)
Chris Mason788f20e2008-04-28 15:29:42 -04002324{
Jeff Mahoney5112feb2016-06-21 20:16:08 -04002325 struct btrfs_root *root = fs_info->dev_root;
Josef Bacikd5e20032011-08-04 14:52:27 +00002326 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002327 struct btrfs_trans_handle *trans;
2328 struct btrfs_device *device;
2329 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002330 struct list_head *devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002331 struct super_block *sb = fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002332 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002333 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002334 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002335 int ret = 0;
2336
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002337 if ((sb->s_flags & MS_RDONLY) && !fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002338 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002339
Li Zefana5d16332011-12-07 20:08:40 -05002340 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002341 fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002342 if (IS_ERR(bdev))
2343 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002344
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002345 if (fs_info->fs_devices->seeding) {
Yan Zheng2b820322008-11-17 21:11:30 -05002346 seeding_dev = 1;
2347 down_write(&sb->s_umount);
2348 mutex_lock(&uuid_mutex);
2349 }
2350
Chris Mason8c8bee12008-09-29 11:19:10 -04002351 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002352
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002353 devices = &fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002354
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002355 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002356 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002357 if (device->bdev == bdev) {
2358 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002359 mutex_unlock(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002360 &fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002361 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002362 }
2363 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002364 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002365
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002366 device = btrfs_alloc_device(fs_info, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002367 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002368 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002369 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002370 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002371 }
2372
David Sterba78f2c9e2016-02-11 14:25:38 +01002373 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002374 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002375 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002376 ret = -ENOMEM;
2377 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002378 }
Josef Bacik606686e2012-06-04 14:03:51 -04002379 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002380
Yan, Zhenga22285a2010-05-16 10:48:46 -04002381 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002382 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002383 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002384 kfree(device);
2385 ret = PTR_ERR(trans);
2386 goto error;
2387 }
2388
Josef Bacikd5e20032011-08-04 14:52:27 +00002389 q = bdev_get_queue(bdev);
2390 if (blk_queue_discard(q))
2391 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002392 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002393 device->generation = trans->transid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002394 device->io_width = fs_info->sectorsize;
2395 device->io_align = fs_info->sectorsize;
2396 device->sector_size = fs_info->sectorsize;
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002397 device->total_bytes = round_down(i_size_read(bdev->bd_inode),
2398 fs_info->sectorsize);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002399 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002400 device->commit_total_bytes = device->total_bytes;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002401 device->fs_info = fs_info;
Chris Mason788f20e2008-04-28 15:29:42 -04002402 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002403 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002404 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002405 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002406 device->dev_stats_valid = 1;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002407 set_blocksize(device->bdev, 4096);
2408
Yan Zheng2b820322008-11-17 21:11:30 -05002409 if (seeding_dev) {
2410 sb->s_flags &= ~MS_RDONLY;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002411 ret = btrfs_prepare_sprout(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002412 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002413 }
2414
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002415 device->fs_devices = fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002416
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002417 mutex_lock(&fs_info->fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02002418 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002419 list_add_rcu(&device->dev_list, &fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002420 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002421 &fs_info->fs_devices->alloc_list);
2422 fs_info->fs_devices->num_devices++;
2423 fs_info->fs_devices->open_devices++;
2424 fs_info->fs_devices->rw_devices++;
2425 fs_info->fs_devices->total_devices++;
2426 fs_info->fs_devices->total_rw_bytes += device->total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05002427
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002428 atomic64_add(device->total_bytes, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04002429
Anand Jaine884f4f2017-04-04 18:40:19 +08002430 if (!blk_queue_nonrot(q))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002431 fs_info->fs_devices->rotating = 1;
Chris Masonc2898112009-06-10 09:51:32 -04002432
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002433 tmp = btrfs_super_total_bytes(fs_info->super_copy);
2434 btrfs_set_super_total_bytes(fs_info->super_copy,
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002435 round_down(tmp + device->total_bytes, fs_info->sectorsize));
Chris Mason788f20e2008-04-28 15:29:42 -04002436
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002437 tmp = btrfs_super_num_devices(fs_info->super_copy);
2438 btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002439
2440 /* add sysfs device entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002441 btrfs_sysfs_add_device_link(fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002442
Miao Xie2196d6e2014-09-03 21:35:41 +08002443 /*
2444 * we've got more storage, clear any full flags on the space
2445 * infos
2446 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002447 btrfs_clear_space_info_full(fs_info);
Miao Xie2196d6e2014-09-03 21:35:41 +08002448
David Sterba34441362016-10-04 19:34:27 +02002449 mutex_unlock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002450 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002451
Yan Zheng2b820322008-11-17 21:11:30 -05002452 if (seeding_dev) {
David Sterba34441362016-10-04 19:34:27 +02002453 mutex_lock(&fs_info->chunk_mutex);
David Sterbae4a4dce2017-02-10 19:49:01 +01002454 ret = init_first_rw_device(trans, fs_info);
David Sterba34441362016-10-04 19:34:27 +02002455 mutex_unlock(&fs_info->chunk_mutex);
David Sterba005d6422012-09-18 07:52:32 -06002456 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002457 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002458 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002459 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002460 }
2461
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002462 ret = btrfs_add_device(trans, fs_info, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002463 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002464 btrfs_abort_transaction(trans, ret);
Miao Xie2196d6e2014-09-03 21:35:41 +08002465 goto error_trans;
2466 }
2467
2468 if (seeding_dev) {
2469 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2470
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002471 ret = btrfs_finish_sprout(trans, fs_info);
David Sterba005d6422012-09-18 07:52:32 -06002472 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002473 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002474 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002475 }
Anand Jainb2373f22014-06-03 11:36:03 +08002476
2477 /* Sprouting would change fsid of the mounted root,
2478 * so rename the fsid on the sysfs
2479 */
2480 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002481 fs_info->fsid);
2482 if (kobject_rename(&fs_info->fs_devices->fsid_kobj, fsid_buf))
2483 btrfs_warn(fs_info,
2484 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002485 }
2486
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002487 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002488
2489 if (seeding_dev) {
2490 mutex_unlock(&uuid_mutex);
2491 up_write(&sb->s_umount);
2492
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002493 if (ret) /* transaction commit */
2494 return ret;
2495
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002496 ret = btrfs_relocate_sys_chunks(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002497 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002498 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002499 "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002500 trans = btrfs_attach_transaction(root);
2501 if (IS_ERR(trans)) {
2502 if (PTR_ERR(trans) == -ENOENT)
2503 return 0;
2504 return PTR_ERR(trans);
2505 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002506 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002507 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002508
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002509 /* Update ctime/mtime for libblkid */
2510 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002511 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002512
2513error_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002514 btrfs_end_transaction(trans);
Josef Bacik606686e2012-06-04 14:03:51 -04002515 rcu_string_free(device->name);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002516 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002517 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002518error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002519 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002520 if (seeding_dev) {
2521 mutex_unlock(&uuid_mutex);
2522 up_write(&sb->s_umount);
2523 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002524 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002525}
2526
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002527int btrfs_init_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002528 const char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002529 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002530 struct btrfs_device **device_out)
2531{
2532 struct request_queue *q;
2533 struct btrfs_device *device;
2534 struct block_device *bdev;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002535 struct list_head *devices;
2536 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002537 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002538 int ret = 0;
2539
2540 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002541 if (fs_info->fs_devices->seeding) {
2542 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002543 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002544 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002545
2546 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2547 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002548 if (IS_ERR(bdev)) {
2549 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002550 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002551 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002552
2553 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2554
2555 devices = &fs_info->fs_devices->devices;
2556 list_for_each_entry(device, devices, dev_list) {
2557 if (device->bdev == bdev) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002558 btrfs_err(fs_info,
2559 "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002560 ret = -EEXIST;
2561 goto error;
2562 }
2563 }
2564
Miao Xie1c433662014-09-03 21:35:32 +08002565
Miao Xie7cc8e582014-09-03 21:35:38 +08002566 if (i_size_read(bdev->bd_inode) <
2567 btrfs_device_get_total_bytes(srcdev)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002568 btrfs_err(fs_info,
2569 "target device is smaller than source device!");
Miao Xie1c433662014-09-03 21:35:32 +08002570 ret = -EINVAL;
2571 goto error;
2572 }
2573
2574
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002575 device = btrfs_alloc_device(NULL, &devid, NULL);
2576 if (IS_ERR(device)) {
2577 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002578 goto error;
2579 }
2580
David Sterba61655722017-06-15 17:16:43 +02002581 name = rcu_string_strdup(device_path, GFP_KERNEL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002582 if (!name) {
2583 kfree(device);
2584 ret = -ENOMEM;
2585 goto error;
2586 }
2587 rcu_assign_pointer(device->name, name);
2588
2589 q = bdev_get_queue(bdev);
2590 if (blk_queue_discard(q))
2591 device->can_discard = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002592 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002593 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002594 device->generation = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002595 device->io_width = fs_info->sectorsize;
2596 device->io_align = fs_info->sectorsize;
2597 device->sector_size = fs_info->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002598 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2599 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2600 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002601 ASSERT(list_empty(&srcdev->resized_list));
2602 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002603 device->commit_bytes_used = device->bytes_used;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002604 device->fs_info = fs_info;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002605 device->bdev = bdev;
2606 device->in_fs_metadata = 1;
2607 device->is_tgtdev_for_dev_replace = 1;
2608 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002609 device->dev_stats_valid = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002610 set_blocksize(device->bdev, 4096);
2611 device->fs_devices = fs_info->fs_devices;
2612 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2613 fs_info->fs_devices->num_devices++;
2614 fs_info->fs_devices->open_devices++;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002615 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002616
2617 *device_out = device;
2618 return ret;
2619
2620error:
2621 blkdev_put(bdev, FMODE_EXCL);
2622 return ret;
2623}
2624
2625void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2626 struct btrfs_device *tgtdev)
2627{
Jeff Mahoneyda170662016-06-15 09:22:56 -04002628 u32 sectorsize = fs_info->sectorsize;
2629
Stefan Behrense93c89c2012-11-05 17:33:06 +01002630 WARN_ON(fs_info->fs_devices->rw_devices == 0);
Jeff Mahoneyda170662016-06-15 09:22:56 -04002631 tgtdev->io_width = sectorsize;
2632 tgtdev->io_align = sectorsize;
2633 tgtdev->sector_size = sectorsize;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002634 tgtdev->fs_info = fs_info;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002635 tgtdev->in_fs_metadata = 1;
2636}
2637
Chris Masond3977122009-01-05 21:25:51 -05002638static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2639 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002640{
2641 int ret;
2642 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002643 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002644 struct btrfs_dev_item *dev_item;
2645 struct extent_buffer *leaf;
2646 struct btrfs_key key;
2647
Chris Mason0b86a832008-03-24 15:01:56 -04002648 path = btrfs_alloc_path();
2649 if (!path)
2650 return -ENOMEM;
2651
2652 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2653 key.type = BTRFS_DEV_ITEM_KEY;
2654 key.offset = device->devid;
2655
2656 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2657 if (ret < 0)
2658 goto out;
2659
2660 if (ret > 0) {
2661 ret = -ENOENT;
2662 goto out;
2663 }
2664
2665 leaf = path->nodes[0];
2666 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2667
2668 btrfs_set_device_id(leaf, dev_item, device->devid);
2669 btrfs_set_device_type(leaf, dev_item, device->type);
2670 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2671 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2672 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002673 btrfs_set_device_total_bytes(leaf, dev_item,
2674 btrfs_device_get_disk_total_bytes(device));
2675 btrfs_set_device_bytes_used(leaf, dev_item,
2676 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002677 btrfs_mark_buffer_dirty(leaf);
2678
2679out:
2680 btrfs_free_path(path);
2681 return ret;
2682}
2683
Miao Xie2196d6e2014-09-03 21:35:41 +08002684int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002685 struct btrfs_device *device, u64 new_size)
2686{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002687 struct btrfs_fs_info *fs_info = device->fs_info;
2688 struct btrfs_super_block *super_copy = fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002689 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002690 u64 old_total;
2691 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002692
Yan Zheng2b820322008-11-17 21:11:30 -05002693 if (!device->writeable)
2694 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002695
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002696 new_size = round_down(new_size, fs_info->sectorsize);
2697
David Sterba34441362016-10-04 19:34:27 +02002698 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002699 old_total = btrfs_super_total_bytes(super_copy);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03002700 diff = round_down(new_size - device->total_bytes, fs_info->sectorsize);
Miao Xie2196d6e2014-09-03 21:35:41 +08002701
Stefan Behrens63a212a2012-11-05 18:29:28 +01002702 if (new_size <= device->total_bytes ||
Miao Xie2196d6e2014-09-03 21:35:41 +08002703 device->is_tgtdev_for_dev_replace) {
David Sterba34441362016-10-04 19:34:27 +02002704 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002705 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002706 }
Yan Zheng2b820322008-11-17 21:11:30 -05002707
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002708 fs_devices = fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002709
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002710 btrfs_set_super_total_bytes(super_copy,
2711 round_down(old_total + diff, fs_info->sectorsize));
Yan Zheng2b820322008-11-17 21:11:30 -05002712 device->fs_devices->total_rw_bytes += diff;
2713
Miao Xie7cc8e582014-09-03 21:35:38 +08002714 btrfs_device_set_total_bytes(device, new_size);
2715 btrfs_device_set_disk_total_bytes(device, new_size);
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002716 btrfs_clear_space_info_full(device->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002717 if (list_empty(&device->resized_list))
2718 list_add_tail(&device->resized_list,
2719 &fs_devices->resized_devices);
David Sterba34441362016-10-04 19:34:27 +02002720 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason4184ea72009-03-10 12:39:20 -04002721
Chris Mason8f18cf12008-04-25 16:53:30 -04002722 return btrfs_update_device(trans, device);
2723}
2724
2725static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002726 struct btrfs_fs_info *fs_info, u64 chunk_objectid,
Chris Mason8f18cf12008-04-25 16:53:30 -04002727 u64 chunk_offset)
2728{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002729 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002730 int ret;
2731 struct btrfs_path *path;
2732 struct btrfs_key key;
2733
Chris Mason8f18cf12008-04-25 16:53:30 -04002734 path = btrfs_alloc_path();
2735 if (!path)
2736 return -ENOMEM;
2737
2738 key.objectid = chunk_objectid;
2739 key.offset = chunk_offset;
2740 key.type = BTRFS_CHUNK_ITEM_KEY;
2741
2742 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002743 if (ret < 0)
2744 goto out;
2745 else if (ret > 0) { /* Logic error or corruption */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002746 btrfs_handle_fs_error(fs_info, -ENOENT,
2747 "Failed lookup while freeing chunk.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002748 ret = -ENOENT;
2749 goto out;
2750 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002751
2752 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002753 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002754 btrfs_handle_fs_error(fs_info, ret,
2755 "Failed to delete chunk item.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002756out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002757 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002758 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002759}
2760
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002761static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info,
2762 u64 chunk_objectid, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002763{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002764 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002765 struct btrfs_disk_key *disk_key;
2766 struct btrfs_chunk *chunk;
2767 u8 *ptr;
2768 int ret = 0;
2769 u32 num_stripes;
2770 u32 array_size;
2771 u32 len = 0;
2772 u32 cur;
2773 struct btrfs_key key;
2774
David Sterba34441362016-10-04 19:34:27 +02002775 mutex_lock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002776 array_size = btrfs_super_sys_array_size(super_copy);
2777
2778 ptr = super_copy->sys_chunk_array;
2779 cur = 0;
2780
2781 while (cur < array_size) {
2782 disk_key = (struct btrfs_disk_key *)ptr;
2783 btrfs_disk_key_to_cpu(&key, disk_key);
2784
2785 len = sizeof(*disk_key);
2786
2787 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2788 chunk = (struct btrfs_chunk *)(ptr + len);
2789 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2790 len += btrfs_chunk_item_size(num_stripes);
2791 } else {
2792 ret = -EIO;
2793 break;
2794 }
2795 if (key.objectid == chunk_objectid &&
2796 key.offset == chunk_offset) {
2797 memmove(ptr, ptr + len, array_size - (cur + len));
2798 array_size -= len;
2799 btrfs_set_super_sys_array_size(super_copy, array_size);
2800 } else {
2801 ptr += len;
2802 cur += len;
2803 }
2804 }
David Sterba34441362016-10-04 19:34:27 +02002805 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002806 return ret;
2807}
2808
Liu Bo592d92e2017-03-14 13:33:55 -07002809static struct extent_map *get_chunk_map(struct btrfs_fs_info *fs_info,
2810 u64 logical, u64 length)
2811{
2812 struct extent_map_tree *em_tree;
2813 struct extent_map *em;
2814
2815 em_tree = &fs_info->mapping_tree.map_tree;
2816 read_lock(&em_tree->lock);
2817 em = lookup_extent_mapping(em_tree, logical, length);
2818 read_unlock(&em_tree->lock);
2819
2820 if (!em) {
2821 btrfs_crit(fs_info, "unable to find logical %llu length %llu",
2822 logical, length);
2823 return ERR_PTR(-EINVAL);
2824 }
2825
2826 if (em->start > logical || em->start + em->len < logical) {
2827 btrfs_crit(fs_info,
2828 "found a bad mapping, wanted %llu-%llu, found %llu-%llu",
2829 logical, length, em->start, em->start + em->len);
2830 free_extent_map(em);
2831 return ERR_PTR(-EINVAL);
2832 }
2833
2834 /* callers are responsible for dropping em's ref. */
2835 return em;
2836}
2837
Josef Bacik47ab2a62014-09-18 11:20:02 -04002838int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002839 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Josef Bacik47ab2a62014-09-18 11:20:02 -04002840{
Josef Bacik47ab2a62014-09-18 11:20:02 -04002841 struct extent_map *em;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002842 struct map_lookup *map;
2843 u64 dev_extent_len = 0;
2844 u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002845 int i, ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002846 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002847
Liu Bo592d92e2017-03-14 13:33:55 -07002848 em = get_chunk_map(fs_info, chunk_offset, 1);
2849 if (IS_ERR(em)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -04002850 /*
2851 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002852 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04002853 * do anything we still error out.
2854 */
2855 ASSERT(0);
Liu Bo592d92e2017-03-14 13:33:55 -07002856 return PTR_ERR(em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002857 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002858 map = em->map_lookup;
David Sterba34441362016-10-04 19:34:27 +02002859 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002860 check_system_chunk(trans, fs_info, map->type);
David Sterba34441362016-10-04 19:34:27 +02002861 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002862
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002863 /*
2864 * Take the device list mutex to prevent races with the final phase of
2865 * a device replace operation that replaces the device object associated
2866 * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()).
2867 */
2868 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002869 for (i = 0; i < map->num_stripes; i++) {
2870 struct btrfs_device *device = map->stripes[i].dev;
2871 ret = btrfs_free_dev_extent(trans, device,
2872 map->stripes[i].physical,
2873 &dev_extent_len);
2874 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002875 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002876 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002877 goto out;
2878 }
2879
2880 if (device->bytes_used > 0) {
David Sterba34441362016-10-04 19:34:27 +02002881 mutex_lock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002882 btrfs_device_set_bytes_used(device,
2883 device->bytes_used - dev_extent_len);
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002884 atomic64_add(dev_extent_len, &fs_info->free_chunk_space);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002885 btrfs_clear_space_info_full(fs_info);
David Sterba34441362016-10-04 19:34:27 +02002886 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002887 }
2888
2889 if (map->stripes[i].dev) {
2890 ret = btrfs_update_device(trans, map->stripes[i].dev);
2891 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002892 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002893 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002894 goto out;
2895 }
2896 }
2897 }
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002898 mutex_unlock(&fs_devices->device_list_mutex);
2899
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002900 ret = btrfs_free_chunk(trans, fs_info, chunk_objectid, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002901 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002902 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002903 goto out;
2904 }
2905
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002906 trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002907
2908 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002909 ret = btrfs_del_sys_chunk(fs_info, chunk_objectid,
2910 chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002911 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002912 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002913 goto out;
2914 }
2915 }
2916
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002917 ret = btrfs_remove_block_group(trans, fs_info, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002918 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002919 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002920 goto out;
2921 }
2922
Josef Bacik47ab2a62014-09-18 11:20:02 -04002923out:
2924 /* once for us */
2925 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002926 return ret;
2927}
2928
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002929static int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002930{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002931 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason19c4d2f2016-10-10 13:43:31 -07002932 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002933 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002934
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002935 /*
2936 * Prevent races with automatic removal of unused block groups.
2937 * After we relocate and before we remove the chunk with offset
2938 * chunk_offset, automatic removal of the block group can kick in,
2939 * resulting in a failure when calling btrfs_remove_chunk() below.
2940 *
2941 * Make sure to acquire this mutex before doing a tree search (dev
2942 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2943 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2944 * we release the path used to search the chunk/dev tree and before
2945 * the current task acquires this mutex and calls us.
2946 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002947 ASSERT(mutex_is_locked(&fs_info->delete_unused_bgs_mutex));
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002948
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002949 ret = btrfs_can_relocate(fs_info, chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002950 if (ret)
2951 return -ENOSPC;
2952
Chris Mason8f18cf12008-04-25 16:53:30 -04002953 /* step one, relocate all the extents inside this chunk */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002954 btrfs_scrub_pause(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002955 ret = btrfs_relocate_block_group(fs_info, chunk_offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002956 btrfs_scrub_continue(fs_info);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002957 if (ret)
2958 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002959
Chris Mason19c4d2f2016-10-10 13:43:31 -07002960 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2961 chunk_offset);
2962 if (IS_ERR(trans)) {
2963 ret = PTR_ERR(trans);
2964 btrfs_handle_fs_error(root->fs_info, ret, NULL);
2965 return ret;
2966 }
Naohiro Aota5d8eb6f2016-09-02 16:46:32 +09002967
Chris Mason19c4d2f2016-10-10 13:43:31 -07002968 /*
2969 * step two, delete the device extents and the
2970 * chunk tree entries
2971 */
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002972 ret = btrfs_remove_chunk(trans, fs_info, chunk_offset);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002973 btrfs_end_transaction(trans);
Chris Mason19c4d2f2016-10-10 13:43:31 -07002974 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002975}
2976
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002977static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002978{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002979 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002980 struct btrfs_path *path;
2981 struct extent_buffer *leaf;
2982 struct btrfs_chunk *chunk;
2983 struct btrfs_key key;
2984 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05002985 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002986 bool retried = false;
2987 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002988 int ret;
2989
2990 path = btrfs_alloc_path();
2991 if (!path)
2992 return -ENOMEM;
2993
Josef Bacikba1bf482009-09-11 16:11:19 -04002994again:
Yan Zheng2b820322008-11-17 21:11:30 -05002995 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2996 key.offset = (u64)-1;
2997 key.type = BTRFS_CHUNK_ITEM_KEY;
2998
2999 while (1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003000 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003001 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003002 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003003 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003004 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003005 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003006 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05003007
3008 ret = btrfs_previous_item(chunk_root, path, key.objectid,
3009 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003010 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003011 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003012 if (ret < 0)
3013 goto error;
3014 if (ret > 0)
3015 break;
3016
3017 leaf = path->nodes[0];
3018 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3019
3020 chunk = btrfs_item_ptr(leaf, path->slots[0],
3021 struct btrfs_chunk);
3022 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02003023 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05003024
3025 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003026 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003027 if (ret == -ENOSPC)
3028 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05303029 else
3030 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05003031 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003032 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003033
3034 if (found_key.offset == 0)
3035 break;
3036 key.offset = found_key.offset - 1;
3037 }
3038 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04003039 if (failed && !retried) {
3040 failed = 0;
3041 retried = true;
3042 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303043 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04003044 ret = -ENOSPC;
3045 }
Yan Zheng2b820322008-11-17 21:11:30 -05003046error:
3047 btrfs_free_path(path);
3048 return ret;
3049}
3050
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003051static int insert_balance_item(struct btrfs_fs_info *fs_info,
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003052 struct btrfs_balance_control *bctl)
3053{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003054 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003055 struct btrfs_trans_handle *trans;
3056 struct btrfs_balance_item *item;
3057 struct btrfs_disk_balance_args disk_bargs;
3058 struct btrfs_path *path;
3059 struct extent_buffer *leaf;
3060 struct btrfs_key key;
3061 int ret, err;
3062
3063 path = btrfs_alloc_path();
3064 if (!path)
3065 return -ENOMEM;
3066
3067 trans = btrfs_start_transaction(root, 0);
3068 if (IS_ERR(trans)) {
3069 btrfs_free_path(path);
3070 return PTR_ERR(trans);
3071 }
3072
3073 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003074 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003075 key.offset = 0;
3076
3077 ret = btrfs_insert_empty_item(trans, root, path, &key,
3078 sizeof(*item));
3079 if (ret)
3080 goto out;
3081
3082 leaf = path->nodes[0];
3083 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3084
David Sterbab159fa22016-11-08 18:09:03 +01003085 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003086
3087 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
3088 btrfs_set_balance_data(leaf, item, &disk_bargs);
3089 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
3090 btrfs_set_balance_meta(leaf, item, &disk_bargs);
3091 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
3092 btrfs_set_balance_sys(leaf, item, &disk_bargs);
3093
3094 btrfs_set_balance_flags(leaf, item, bctl->flags);
3095
3096 btrfs_mark_buffer_dirty(leaf);
3097out:
3098 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003099 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003100 if (err && !ret)
3101 ret = err;
3102 return ret;
3103}
3104
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003105static int del_balance_item(struct btrfs_fs_info *fs_info)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003106{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003107 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003108 struct btrfs_trans_handle *trans;
3109 struct btrfs_path *path;
3110 struct btrfs_key key;
3111 int ret, err;
3112
3113 path = btrfs_alloc_path();
3114 if (!path)
3115 return -ENOMEM;
3116
3117 trans = btrfs_start_transaction(root, 0);
3118 if (IS_ERR(trans)) {
3119 btrfs_free_path(path);
3120 return PTR_ERR(trans);
3121 }
3122
3123 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003124 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003125 key.offset = 0;
3126
3127 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3128 if (ret < 0)
3129 goto out;
3130 if (ret > 0) {
3131 ret = -ENOENT;
3132 goto out;
3133 }
3134
3135 ret = btrfs_del_item(trans, root, path);
3136out:
3137 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003138 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003139 if (err && !ret)
3140 ret = err;
3141 return ret;
3142}
3143
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003144/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003145 * This is a heuristic used to reduce the number of chunks balanced on
3146 * resume after balance was interrupted.
3147 */
3148static void update_balance_args(struct btrfs_balance_control *bctl)
3149{
3150 /*
3151 * Turn on soft mode for chunk types that were being converted.
3152 */
3153 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3154 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3155 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3156 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3157 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3158 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3159
3160 /*
3161 * Turn on usage filter if is not already used. The idea is
3162 * that chunks that we have already balanced should be
3163 * reasonably full. Don't do it for chunks that are being
3164 * converted - that will keep us from relocating unconverted
3165 * (albeit full) chunks.
3166 */
3167 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003168 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003169 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3170 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3171 bctl->data.usage = 90;
3172 }
3173 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003174 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003175 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3176 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3177 bctl->sys.usage = 90;
3178 }
3179 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003180 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003181 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3182 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3183 bctl->meta.usage = 90;
3184 }
3185}
3186
3187/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003188 * Should be called with both balance and volume mutexes held to
3189 * serialize other volume operations (add_dev/rm_dev/resize) with
3190 * restriper. Same goes for unset_balance_control.
3191 */
3192static void set_balance_control(struct btrfs_balance_control *bctl)
3193{
3194 struct btrfs_fs_info *fs_info = bctl->fs_info;
3195
3196 BUG_ON(fs_info->balance_ctl);
3197
3198 spin_lock(&fs_info->balance_lock);
3199 fs_info->balance_ctl = bctl;
3200 spin_unlock(&fs_info->balance_lock);
3201}
3202
3203static void unset_balance_control(struct btrfs_fs_info *fs_info)
3204{
3205 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3206
3207 BUG_ON(!fs_info->balance_ctl);
3208
3209 spin_lock(&fs_info->balance_lock);
3210 fs_info->balance_ctl = NULL;
3211 spin_unlock(&fs_info->balance_lock);
3212
3213 kfree(bctl);
3214}
3215
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003216/*
3217 * Balance filters. Return 1 if chunk should be filtered out
3218 * (should not be balanced).
3219 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003220static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003221 struct btrfs_balance_args *bargs)
3222{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003223 chunk_type = chunk_to_extended(chunk_type) &
3224 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003225
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003226 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003227 return 0;
3228
3229 return 1;
3230}
3231
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003232static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003233 struct btrfs_balance_args *bargs)
3234{
3235 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003236 u64 chunk_used;
3237 u64 user_thresh_min;
3238 u64 user_thresh_max;
3239 int ret = 1;
3240
3241 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3242 chunk_used = btrfs_block_group_used(&cache->item);
3243
3244 if (bargs->usage_min == 0)
3245 user_thresh_min = 0;
3246 else
3247 user_thresh_min = div_factor_fine(cache->key.offset,
3248 bargs->usage_min);
3249
3250 if (bargs->usage_max == 0)
3251 user_thresh_max = 1;
3252 else if (bargs->usage_max > 100)
3253 user_thresh_max = cache->key.offset;
3254 else
3255 user_thresh_max = div_factor_fine(cache->key.offset,
3256 bargs->usage_max);
3257
3258 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3259 ret = 0;
3260
3261 btrfs_put_block_group(cache);
3262 return ret;
3263}
3264
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003265static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003266 u64 chunk_offset, struct btrfs_balance_args *bargs)
3267{
3268 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003269 u64 chunk_used, user_thresh;
3270 int ret = 1;
3271
3272 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3273 chunk_used = btrfs_block_group_used(&cache->item);
3274
David Sterbabc309462015-10-20 18:22:13 +02003275 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003276 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003277 else if (bargs->usage > 100)
3278 user_thresh = cache->key.offset;
3279 else
3280 user_thresh = div_factor_fine(cache->key.offset,
3281 bargs->usage);
3282
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003283 if (chunk_used < user_thresh)
3284 ret = 0;
3285
3286 btrfs_put_block_group(cache);
3287 return ret;
3288}
3289
Ilya Dryomov409d4042012-01-16 22:04:47 +02003290static int chunk_devid_filter(struct extent_buffer *leaf,
3291 struct btrfs_chunk *chunk,
3292 struct btrfs_balance_args *bargs)
3293{
3294 struct btrfs_stripe *stripe;
3295 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3296 int i;
3297
3298 for (i = 0; i < num_stripes; i++) {
3299 stripe = btrfs_stripe_nr(chunk, i);
3300 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3301 return 0;
3302 }
3303
3304 return 1;
3305}
3306
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003307/* [pstart, pend) */
3308static int chunk_drange_filter(struct extent_buffer *leaf,
3309 struct btrfs_chunk *chunk,
3310 u64 chunk_offset,
3311 struct btrfs_balance_args *bargs)
3312{
3313 struct btrfs_stripe *stripe;
3314 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3315 u64 stripe_offset;
3316 u64 stripe_length;
3317 int factor;
3318 int i;
3319
3320 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3321 return 0;
3322
3323 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003324 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3325 factor = num_stripes / 2;
3326 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3327 factor = num_stripes - 1;
3328 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3329 factor = num_stripes - 2;
3330 } else {
3331 factor = num_stripes;
3332 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003333
3334 for (i = 0; i < num_stripes; i++) {
3335 stripe = btrfs_stripe_nr(chunk, i);
3336 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3337 continue;
3338
3339 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3340 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003341 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003342
3343 if (stripe_offset < bargs->pend &&
3344 stripe_offset + stripe_length > bargs->pstart)
3345 return 0;
3346 }
3347
3348 return 1;
3349}
3350
Ilya Dryomovea671762012-01-16 22:04:48 +02003351/* [vstart, vend) */
3352static int chunk_vrange_filter(struct extent_buffer *leaf,
3353 struct btrfs_chunk *chunk,
3354 u64 chunk_offset,
3355 struct btrfs_balance_args *bargs)
3356{
3357 if (chunk_offset < bargs->vend &&
3358 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3359 /* at least part of the chunk is inside this vrange */
3360 return 0;
3361
3362 return 1;
3363}
3364
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003365static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3366 struct btrfs_chunk *chunk,
3367 struct btrfs_balance_args *bargs)
3368{
3369 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3370
3371 if (bargs->stripes_min <= num_stripes
3372 && num_stripes <= bargs->stripes_max)
3373 return 0;
3374
3375 return 1;
3376}
3377
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003378static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003379 struct btrfs_balance_args *bargs)
3380{
3381 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3382 return 0;
3383
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003384 chunk_type = chunk_to_extended(chunk_type) &
3385 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003386
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003387 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003388 return 1;
3389
3390 return 0;
3391}
3392
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003393static int should_balance_chunk(struct btrfs_fs_info *fs_info,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003394 struct extent_buffer *leaf,
3395 struct btrfs_chunk *chunk, u64 chunk_offset)
3396{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003397 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003398 struct btrfs_balance_args *bargs = NULL;
3399 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3400
3401 /* type filter */
3402 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3403 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3404 return 0;
3405 }
3406
3407 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3408 bargs = &bctl->data;
3409 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3410 bargs = &bctl->sys;
3411 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3412 bargs = &bctl->meta;
3413
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003414 /* profiles filter */
3415 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3416 chunk_profiles_filter(chunk_type, bargs)) {
3417 return 0;
3418 }
3419
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003420 /* usage filter */
3421 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003422 chunk_usage_filter(fs_info, chunk_offset, bargs)) {
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003423 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003424 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003425 chunk_usage_range_filter(fs_info, chunk_offset, bargs)) {
David Sterbabc309462015-10-20 18:22:13 +02003426 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003427 }
3428
Ilya Dryomov409d4042012-01-16 22:04:47 +02003429 /* devid filter */
3430 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3431 chunk_devid_filter(leaf, chunk, bargs)) {
3432 return 0;
3433 }
3434
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003435 /* drange filter, makes sense only with devid filter */
3436 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
3437 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
3438 return 0;
3439 }
3440
Ilya Dryomovea671762012-01-16 22:04:48 +02003441 /* vrange filter */
3442 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3443 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3444 return 0;
3445 }
3446
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003447 /* stripes filter */
3448 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3449 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3450 return 0;
3451 }
3452
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003453 /* soft profile changing mode */
3454 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3455 chunk_soft_convert_filter(chunk_type, bargs)) {
3456 return 0;
3457 }
3458
David Sterba7d824b62014-05-07 17:37:51 +02003459 /*
3460 * limited by count, must be the last filter
3461 */
3462 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3463 if (bargs->limit == 0)
3464 return 0;
3465 else
3466 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003467 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3468 /*
3469 * Same logic as the 'limit' filter; the minimum cannot be
Nicholas D Steeves01327612016-05-19 21:18:45 -04003470 * determined here because we do not have the global information
David Sterba12907fc2015-10-10 17:16:50 +02003471 * about the count of all chunks that satisfy the filters.
3472 */
3473 if (bargs->limit_max == 0)
3474 return 0;
3475 else
3476 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003477 }
3478
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003479 return 1;
3480}
3481
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003482static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003483{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003484 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003485 struct btrfs_root *chunk_root = fs_info->chunk_root;
3486 struct btrfs_root *dev_root = fs_info->dev_root;
3487 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003488 struct btrfs_device *device;
3489 u64 old_size;
3490 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003491 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003492 struct btrfs_chunk *chunk;
Liu Bo5a488b92016-07-12 11:24:21 -07003493 struct btrfs_path *path = NULL;
Chris Masonec44a352008-04-28 15:29:52 -04003494 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003495 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003496 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003497 struct extent_buffer *leaf;
3498 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003499 int ret;
3500 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003501 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003502 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003503 u64 limit_data = bctl->data.limit;
3504 u64 limit_meta = bctl->meta.limit;
3505 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003506 u32 count_data = 0;
3507 u32 count_meta = 0;
3508 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003509 int chunk_reserved = 0;
Liu Bocf25ce52015-12-14 18:29:32 -08003510 u64 bytes_used = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003511
Chris Masonec44a352008-04-28 15:29:52 -04003512 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003513 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003514 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003515 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003516 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003517 size_to_free = min_t(u64, size_to_free, SZ_1M);
Yan Zheng2b820322008-11-17 21:11:30 -05003518 if (!device->writeable ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003519 btrfs_device_get_total_bytes(device) -
3520 btrfs_device_get_bytes_used(device) > size_to_free ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01003521 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04003522 continue;
3523
3524 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003525 if (ret == -ENOSPC)
3526 break;
Liu Bo5a488b92016-07-12 11:24:21 -07003527 if (ret) {
3528 /* btrfs_shrink_device never returns ret > 0 */
3529 WARN_ON(ret > 0);
3530 goto error;
3531 }
Chris Masonec44a352008-04-28 15:29:52 -04003532
Yan, Zhenga22285a2010-05-16 10:48:46 -04003533 trans = btrfs_start_transaction(dev_root, 0);
Liu Bo5a488b92016-07-12 11:24:21 -07003534 if (IS_ERR(trans)) {
3535 ret = PTR_ERR(trans);
3536 btrfs_info_in_rcu(fs_info,
3537 "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu",
3538 rcu_str_deref(device->name), ret,
3539 old_size, old_size - size_to_free);
3540 goto error;
3541 }
Chris Masonec44a352008-04-28 15:29:52 -04003542
3543 ret = btrfs_grow_device(trans, device, old_size);
Liu Bo5a488b92016-07-12 11:24:21 -07003544 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003545 btrfs_end_transaction(trans);
Liu Bo5a488b92016-07-12 11:24:21 -07003546 /* btrfs_grow_device never returns ret > 0 */
3547 WARN_ON(ret > 0);
3548 btrfs_info_in_rcu(fs_info,
3549 "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu",
3550 rcu_str_deref(device->name), ret,
3551 old_size, old_size - size_to_free);
3552 goto error;
3553 }
Chris Masonec44a352008-04-28 15:29:52 -04003554
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003555 btrfs_end_transaction(trans);
Chris Masonec44a352008-04-28 15:29:52 -04003556 }
3557
3558 /* step two, relocate all the chunks */
3559 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003560 if (!path) {
3561 ret = -ENOMEM;
3562 goto error;
3563 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003564
3565 /* zero out stat counters */
3566 spin_lock(&fs_info->balance_lock);
3567 memset(&bctl->stat, 0, sizeof(bctl->stat));
3568 spin_unlock(&fs_info->balance_lock);
3569again:
David Sterba7d824b62014-05-07 17:37:51 +02003570 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003571 /*
3572 * The single value limit and min/max limits use the same bytes
3573 * in the
3574 */
David Sterba7d824b62014-05-07 17:37:51 +02003575 bctl->data.limit = limit_data;
3576 bctl->meta.limit = limit_meta;
3577 bctl->sys.limit = limit_sys;
3578 }
Chris Masonec44a352008-04-28 15:29:52 -04003579 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3580 key.offset = (u64)-1;
3581 key.type = BTRFS_CHUNK_ITEM_KEY;
3582
Chris Masond3977122009-01-05 21:25:51 -05003583 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003584 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003585 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003586 ret = -ECANCELED;
3587 goto error;
3588 }
3589
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003590 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003591 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003592 if (ret < 0) {
3593 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003594 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003595 }
Chris Masonec44a352008-04-28 15:29:52 -04003596
3597 /*
3598 * this shouldn't happen, it means the last relocate
3599 * failed
3600 */
3601 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003602 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003603
3604 ret = btrfs_previous_item(chunk_root, path, 0,
3605 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003606 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003607 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003608 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003609 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003610 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003611
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003612 leaf = path->nodes[0];
3613 slot = path->slots[0];
3614 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3615
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003616 if (found_key.objectid != key.objectid) {
3617 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003618 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003619 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003620
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003621 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003622 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003623
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003624 if (!counting) {
3625 spin_lock(&fs_info->balance_lock);
3626 bctl->stat.considered++;
3627 spin_unlock(&fs_info->balance_lock);
3628 }
3629
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003630 ret = should_balance_chunk(fs_info, leaf, chunk,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003631 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003632
David Sterbab3b4aa72011-04-21 01:20:15 +02003633 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003634 if (!ret) {
3635 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003636 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003637 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003638
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003639 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003640 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003641 spin_lock(&fs_info->balance_lock);
3642 bctl->stat.expected++;
3643 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003644
3645 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3646 count_data++;
3647 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3648 count_sys++;
3649 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3650 count_meta++;
3651
3652 goto loop;
3653 }
3654
3655 /*
3656 * Apply limit_min filter, no need to check if the LIMITS
3657 * filter is used, limit_min is 0 by default
3658 */
3659 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3660 count_data < bctl->data.limit_min)
3661 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3662 count_meta < bctl->meta.limit_min)
3663 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3664 count_sys < bctl->sys.limit_min)) {
3665 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003666 goto loop;
3667 }
3668
Liu Bocf25ce52015-12-14 18:29:32 -08003669 ASSERT(fs_info->data_sinfo);
3670 spin_lock(&fs_info->data_sinfo->lock);
3671 bytes_used = fs_info->data_sinfo->bytes_used;
3672 spin_unlock(&fs_info->data_sinfo->lock);
3673
3674 if ((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3675 !chunk_reserved && !bytes_used) {
Zhao Lei2c9fe832015-11-09 11:51:32 +08003676 trans = btrfs_start_transaction(chunk_root, 0);
3677 if (IS_ERR(trans)) {
3678 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3679 ret = PTR_ERR(trans);
3680 goto error;
3681 }
3682
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003683 ret = btrfs_force_chunk_alloc(trans, fs_info,
Zhao Lei2c9fe832015-11-09 11:51:32 +08003684 BTRFS_BLOCK_GROUP_DATA);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003685 btrfs_end_transaction(trans);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003686 if (ret < 0) {
3687 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3688 goto error;
3689 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003690 chunk_reserved = 1;
3691 }
3692
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003693 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003694 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003695 if (ret && ret != -ENOSPC)
3696 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003697 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003698 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003699 } else {
3700 spin_lock(&fs_info->balance_lock);
3701 bctl->stat.completed++;
3702 spin_unlock(&fs_info->balance_lock);
3703 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003704loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003705 if (found_key.offset == 0)
3706 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003707 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003708 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003709
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003710 if (counting) {
3711 btrfs_release_path(path);
3712 counting = false;
3713 goto again;
3714 }
Chris Masonec44a352008-04-28 15:29:52 -04003715error:
3716 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003717 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003718 btrfs_info(fs_info, "%d enospc errors during balance",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003719 enospc_errors);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003720 if (!ret)
3721 ret = -ENOSPC;
3722 }
3723
Chris Masonec44a352008-04-28 15:29:52 -04003724 return ret;
3725}
3726
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003727/**
3728 * alloc_profile_is_valid - see if a given profile is valid and reduced
3729 * @flags: profile to validate
3730 * @extended: if true @flags is treated as an extended profile
3731 */
3732static int alloc_profile_is_valid(u64 flags, int extended)
3733{
3734 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3735 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3736
3737 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3738
3739 /* 1) check that all other bits are zeroed */
3740 if (flags & ~mask)
3741 return 0;
3742
3743 /* 2) see if profile is reduced */
3744 if (flags == 0)
3745 return !extended; /* "0" is valid for usual profiles */
3746
3747 /* true if exactly one bit set */
3748 return (flags & (flags - 1)) == 0;
3749}
3750
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003751static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3752{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003753 /* cancel requested || normal exit path */
3754 return atomic_read(&fs_info->balance_cancel_req) ||
3755 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3756 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003757}
3758
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003759static void __cancel_balance(struct btrfs_fs_info *fs_info)
3760{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003761 int ret;
3762
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003763 unset_balance_control(fs_info);
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003764 ret = del_balance_item(fs_info);
Liu Bo0f788c52013-03-04 16:25:40 +00003765 if (ret)
Anand Jain34d97002016-03-16 16:43:06 +08003766 btrfs_handle_fs_error(fs_info, ret, NULL);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003767
David Sterba171938e2017-03-28 14:44:21 +02003768 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003769}
3770
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003771/* Non-zero return value signifies invalidity */
3772static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3773 u64 allowed)
3774{
3775 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3776 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3777 (bctl_arg->target & ~allowed)));
3778}
3779
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003780/*
3781 * Should be called with both balance and volume mutexes held
3782 */
3783int btrfs_balance(struct btrfs_balance_control *bctl,
3784 struct btrfs_ioctl_balance_args *bargs)
3785{
3786 struct btrfs_fs_info *fs_info = bctl->fs_info;
Adam Borowski14506122017-03-07 23:34:44 +01003787 u64 meta_target, data_target;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003788 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003789 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003790 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003791 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003792 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003793
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003794 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003795 atomic_read(&fs_info->balance_pause_req) ||
3796 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003797 ret = -EINVAL;
3798 goto out;
3799 }
3800
Ilya Dryomove4837f82012-03-27 17:09:17 +03003801 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3802 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3803 mixed = 1;
3804
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003805 /*
3806 * In case of mixed groups both data and meta should be picked,
3807 * and identical options should be given for both of them.
3808 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003809 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3810 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003811 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3812 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3813 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003814 btrfs_err(fs_info,
3815 "with mixed groups data and metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003816 ret = -EINVAL;
3817 goto out;
3818 }
3819 }
3820
Stefan Behrens8dabb742012-11-06 13:15:27 +01003821 num_devices = fs_info->fs_devices->num_devices;
Liu Bo73beece2015-07-17 16:49:19 +08003822 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrens8dabb742012-11-06 13:15:27 +01003823 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3824 BUG_ON(num_devices < 1);
3825 num_devices--;
3826 }
Liu Bo73beece2015-07-17 16:49:19 +08003827 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Austin S. Hemmelgarn88be1592016-03-23 14:22:59 -04003828 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP;
3829 if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003830 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003831 if (num_devices > 2)
3832 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3833 if (num_devices > 3)
3834 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3835 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003836 if (validate_convert_profile(&bctl->data, allowed)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003837 btrfs_err(fs_info,
3838 "unable to start balance with target data profile %llu",
3839 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003840 ret = -EINVAL;
3841 goto out;
3842 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003843 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003844 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003845 "unable to start balance with target metadata profile %llu",
3846 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003847 ret = -EINVAL;
3848 goto out;
3849 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003850 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003851 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003852 "unable to start balance with target system profile %llu",
3853 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003854 ret = -EINVAL;
3855 goto out;
3856 }
3857
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003858 /* allow to reduce meta or sys integrity only if force set */
3859 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003860 BTRFS_BLOCK_GROUP_RAID10 |
3861 BTRFS_BLOCK_GROUP_RAID5 |
3862 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003863 do {
3864 seq = read_seqbegin(&fs_info->profiles_lock);
3865
3866 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3867 (fs_info->avail_system_alloc_bits & allowed) &&
3868 !(bctl->sys.target & allowed)) ||
3869 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3870 (fs_info->avail_metadata_alloc_bits & allowed) &&
3871 !(bctl->meta.target & allowed))) {
3872 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003873 btrfs_info(fs_info,
3874 "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003875 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003876 btrfs_err(fs_info,
3877 "balance will reduce metadata integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003878 ret = -EINVAL;
3879 goto out;
3880 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003881 }
Miao Xiede98ced2013-01-29 10:13:12 +00003882 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003883
Adam Borowski14506122017-03-07 23:34:44 +01003884 /* if we're not converting, the target field is uninitialized */
3885 meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3886 bctl->meta.target : fs_info->avail_metadata_alloc_bits;
3887 data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3888 bctl->data.target : fs_info->avail_data_alloc_bits;
3889 if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) <
3890 btrfs_get_num_tolerated_disk_barrier_failures(data_target)) {
Sam Tygieree592d02016-01-06 08:46:12 +00003891 btrfs_warn(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003892 "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
Adam Borowski14506122017-03-07 23:34:44 +01003893 meta_target, data_target);
Sam Tygieree592d02016-01-06 08:46:12 +00003894 }
3895
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003896 ret = insert_balance_item(fs_info, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003897 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003898 goto out;
3899
Ilya Dryomov59641012012-01-16 22:04:48 +02003900 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3901 BUG_ON(ret == -EEXIST);
3902 set_balance_control(bctl);
3903 } else {
3904 BUG_ON(ret != -EEXIST);
3905 spin_lock(&fs_info->balance_lock);
3906 update_balance_args(bctl);
3907 spin_unlock(&fs_info->balance_lock);
3908 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003909
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003910 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003911 mutex_unlock(&fs_info->balance_mutex);
3912
3913 ret = __btrfs_balance(fs_info);
3914
3915 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003916 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003917
3918 if (bargs) {
3919 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003920 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003921 }
3922
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003923 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3924 balance_need_close(fs_info)) {
3925 __cancel_balance(fs_info);
3926 }
3927
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003928 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003929
3930 return ret;
3931out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003932 if (bctl->flags & BTRFS_BALANCE_RESUME)
3933 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003934 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003935 kfree(bctl);
David Sterba171938e2017-03-28 14:44:21 +02003936 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003937 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003938 return ret;
3939}
3940
3941static int balance_kthread(void *data)
3942{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003943 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003944 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003945
3946 mutex_lock(&fs_info->volume_mutex);
3947 mutex_lock(&fs_info->balance_mutex);
3948
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003949 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003950 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003951 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003952 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003953
3954 mutex_unlock(&fs_info->balance_mutex);
3955 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003956
Ilya Dryomov59641012012-01-16 22:04:48 +02003957 return ret;
3958}
3959
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003960int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3961{
3962 struct task_struct *tsk;
3963
3964 spin_lock(&fs_info->balance_lock);
3965 if (!fs_info->balance_ctl) {
3966 spin_unlock(&fs_info->balance_lock);
3967 return 0;
3968 }
3969 spin_unlock(&fs_info->balance_lock);
3970
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003971 if (btrfs_test_opt(fs_info, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003972 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003973 return 0;
3974 }
3975
3976 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303977 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003978}
3979
Ilya Dryomov68310a52012-06-22 12:24:12 -06003980int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003981{
Ilya Dryomov59641012012-01-16 22:04:48 +02003982 struct btrfs_balance_control *bctl;
3983 struct btrfs_balance_item *item;
3984 struct btrfs_disk_balance_args disk_bargs;
3985 struct btrfs_path *path;
3986 struct extent_buffer *leaf;
3987 struct btrfs_key key;
3988 int ret;
3989
3990 path = btrfs_alloc_path();
3991 if (!path)
3992 return -ENOMEM;
3993
Ilya Dryomov68310a52012-06-22 12:24:12 -06003994 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003995 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06003996 key.offset = 0;
3997
3998 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3999 if (ret < 0)
4000 goto out;
4001 if (ret > 0) { /* ret = -ENOENT; */
4002 ret = 0;
4003 goto out;
4004 }
4005
Ilya Dryomov59641012012-01-16 22:04:48 +02004006 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4007 if (!bctl) {
4008 ret = -ENOMEM;
4009 goto out;
4010 }
4011
Ilya Dryomov59641012012-01-16 22:04:48 +02004012 leaf = path->nodes[0];
4013 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
4014
Ilya Dryomov68310a52012-06-22 12:24:12 -06004015 bctl->fs_info = fs_info;
4016 bctl->flags = btrfs_balance_flags(leaf, item);
4017 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02004018
4019 btrfs_balance_data(leaf, item, &disk_bargs);
4020 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
4021 btrfs_balance_meta(leaf, item, &disk_bargs);
4022 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
4023 btrfs_balance_sys(leaf, item, &disk_bargs);
4024 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
4025
David Sterba171938e2017-03-28 14:44:21 +02004026 WARN_ON(test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004027
Ilya Dryomov68310a52012-06-22 12:24:12 -06004028 mutex_lock(&fs_info->volume_mutex);
4029 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004030
Ilya Dryomov68310a52012-06-22 12:24:12 -06004031 set_balance_control(bctl);
4032
4033 mutex_unlock(&fs_info->balance_mutex);
4034 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004035out:
4036 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004037 return ret;
4038}
4039
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004040int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
4041{
4042 int ret = 0;
4043
4044 mutex_lock(&fs_info->balance_mutex);
4045 if (!fs_info->balance_ctl) {
4046 mutex_unlock(&fs_info->balance_mutex);
4047 return -ENOTCONN;
4048 }
4049
4050 if (atomic_read(&fs_info->balance_running)) {
4051 atomic_inc(&fs_info->balance_pause_req);
4052 mutex_unlock(&fs_info->balance_mutex);
4053
4054 wait_event(fs_info->balance_wait_q,
4055 atomic_read(&fs_info->balance_running) == 0);
4056
4057 mutex_lock(&fs_info->balance_mutex);
4058 /* we are good with balance_ctl ripped off from under us */
4059 BUG_ON(atomic_read(&fs_info->balance_running));
4060 atomic_dec(&fs_info->balance_pause_req);
4061 } else {
4062 ret = -ENOTCONN;
4063 }
4064
4065 mutex_unlock(&fs_info->balance_mutex);
4066 return ret;
4067}
4068
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004069int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
4070{
Ilya Dryomove649e582013-10-10 20:40:21 +03004071 if (fs_info->sb->s_flags & MS_RDONLY)
4072 return -EROFS;
4073
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004074 mutex_lock(&fs_info->balance_mutex);
4075 if (!fs_info->balance_ctl) {
4076 mutex_unlock(&fs_info->balance_mutex);
4077 return -ENOTCONN;
4078 }
4079
4080 atomic_inc(&fs_info->balance_cancel_req);
4081 /*
4082 * if we are running just wait and return, balance item is
4083 * deleted in btrfs_balance in this case
4084 */
4085 if (atomic_read(&fs_info->balance_running)) {
4086 mutex_unlock(&fs_info->balance_mutex);
4087 wait_event(fs_info->balance_wait_q,
4088 atomic_read(&fs_info->balance_running) == 0);
4089 mutex_lock(&fs_info->balance_mutex);
4090 } else {
4091 /* __cancel_balance needs volume_mutex */
4092 mutex_unlock(&fs_info->balance_mutex);
4093 mutex_lock(&fs_info->volume_mutex);
4094 mutex_lock(&fs_info->balance_mutex);
4095
4096 if (fs_info->balance_ctl)
4097 __cancel_balance(fs_info);
4098
4099 mutex_unlock(&fs_info->volume_mutex);
4100 }
4101
4102 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
4103 atomic_dec(&fs_info->balance_cancel_req);
4104 mutex_unlock(&fs_info->balance_mutex);
4105 return 0;
4106}
4107
Stefan Behrens803b2f52013-08-15 17:11:21 +02004108static int btrfs_uuid_scan_kthread(void *data)
4109{
4110 struct btrfs_fs_info *fs_info = data;
4111 struct btrfs_root *root = fs_info->tree_root;
4112 struct btrfs_key key;
4113 struct btrfs_key max_key;
4114 struct btrfs_path *path = NULL;
4115 int ret = 0;
4116 struct extent_buffer *eb;
4117 int slot;
4118 struct btrfs_root_item root_item;
4119 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004120 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004121
4122 path = btrfs_alloc_path();
4123 if (!path) {
4124 ret = -ENOMEM;
4125 goto out;
4126 }
4127
4128 key.objectid = 0;
4129 key.type = BTRFS_ROOT_ITEM_KEY;
4130 key.offset = 0;
4131
4132 max_key.objectid = (u64)-1;
4133 max_key.type = BTRFS_ROOT_ITEM_KEY;
4134 max_key.offset = (u64)-1;
4135
Stefan Behrens803b2f52013-08-15 17:11:21 +02004136 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004137 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004138 if (ret) {
4139 if (ret > 0)
4140 ret = 0;
4141 break;
4142 }
4143
4144 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4145 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4146 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4147 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4148 goto skip;
4149
4150 eb = path->nodes[0];
4151 slot = path->slots[0];
4152 item_size = btrfs_item_size_nr(eb, slot);
4153 if (item_size < sizeof(root_item))
4154 goto skip;
4155
Stefan Behrens803b2f52013-08-15 17:11:21 +02004156 read_extent_buffer(eb, &root_item,
4157 btrfs_item_ptr_offset(eb, slot),
4158 (int)sizeof(root_item));
4159 if (btrfs_root_refs(&root_item) == 0)
4160 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004161
4162 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4163 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4164 if (trans)
4165 goto update_tree;
4166
4167 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004168 /*
4169 * 1 - subvol uuid item
4170 * 1 - received_subvol uuid item
4171 */
4172 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4173 if (IS_ERR(trans)) {
4174 ret = PTR_ERR(trans);
4175 break;
4176 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004177 continue;
4178 } else {
4179 goto skip;
4180 }
4181update_tree:
4182 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004183 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004184 root_item.uuid,
4185 BTRFS_UUID_KEY_SUBVOL,
4186 key.objectid);
4187 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004188 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004189 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004190 break;
4191 }
4192 }
4193
4194 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004195 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004196 root_item.received_uuid,
4197 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4198 key.objectid);
4199 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004200 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004201 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004202 break;
4203 }
4204 }
4205
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004206skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004207 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004208 ret = btrfs_end_transaction(trans);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004209 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004210 if (ret)
4211 break;
4212 }
4213
Stefan Behrens803b2f52013-08-15 17:11:21 +02004214 btrfs_release_path(path);
4215 if (key.offset < (u64)-1) {
4216 key.offset++;
4217 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4218 key.offset = 0;
4219 key.type = BTRFS_ROOT_ITEM_KEY;
4220 } else if (key.objectid < (u64)-1) {
4221 key.offset = 0;
4222 key.type = BTRFS_ROOT_ITEM_KEY;
4223 key.objectid++;
4224 } else {
4225 break;
4226 }
4227 cond_resched();
4228 }
4229
4230out:
4231 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004232 if (trans && !IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004233 btrfs_end_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004234 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004235 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004236 else
Josef Bacikafcdd122016-09-02 15:40:02 -04004237 set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004238 up(&fs_info->uuid_tree_rescan_sem);
4239 return 0;
4240}
4241
Stefan Behrens70f80172013-08-15 17:11:23 +02004242/*
4243 * Callback for btrfs_uuid_tree_iterate().
4244 * returns:
4245 * 0 check succeeded, the entry is not outdated.
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08004246 * < 0 if an error occurred.
Stefan Behrens70f80172013-08-15 17:11:23 +02004247 * > 0 if the check failed, which means the caller shall remove the entry.
4248 */
4249static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4250 u8 *uuid, u8 type, u64 subid)
4251{
4252 struct btrfs_key key;
4253 int ret = 0;
4254 struct btrfs_root *subvol_root;
4255
4256 if (type != BTRFS_UUID_KEY_SUBVOL &&
4257 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4258 goto out;
4259
4260 key.objectid = subid;
4261 key.type = BTRFS_ROOT_ITEM_KEY;
4262 key.offset = (u64)-1;
4263 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4264 if (IS_ERR(subvol_root)) {
4265 ret = PTR_ERR(subvol_root);
4266 if (ret == -ENOENT)
4267 ret = 1;
4268 goto out;
4269 }
4270
4271 switch (type) {
4272 case BTRFS_UUID_KEY_SUBVOL:
4273 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4274 ret = 1;
4275 break;
4276 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4277 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4278 BTRFS_UUID_SIZE))
4279 ret = 1;
4280 break;
4281 }
4282
4283out:
4284 return ret;
4285}
4286
4287static int btrfs_uuid_rescan_kthread(void *data)
4288{
4289 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4290 int ret;
4291
4292 /*
4293 * 1st step is to iterate through the existing UUID tree and
4294 * to delete all entries that contain outdated data.
4295 * 2nd step is to add all missing entries to the UUID tree.
4296 */
4297 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4298 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004299 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004300 up(&fs_info->uuid_tree_rescan_sem);
4301 return ret;
4302 }
4303 return btrfs_uuid_scan_kthread(data);
4304}
4305
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004306int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4307{
4308 struct btrfs_trans_handle *trans;
4309 struct btrfs_root *tree_root = fs_info->tree_root;
4310 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004311 struct task_struct *task;
4312 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004313
4314 /*
4315 * 1 - root node
4316 * 1 - root item
4317 */
4318 trans = btrfs_start_transaction(tree_root, 2);
4319 if (IS_ERR(trans))
4320 return PTR_ERR(trans);
4321
4322 uuid_root = btrfs_create_tree(trans, fs_info,
4323 BTRFS_UUID_TREE_OBJECTID);
4324 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004325 ret = PTR_ERR(uuid_root);
Jeff Mahoney66642832016-06-10 18:19:25 -04004326 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004327 btrfs_end_transaction(trans);
David Sterba6d13f542015-04-24 19:12:01 +02004328 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004329 }
4330
4331 fs_info->uuid_root = uuid_root;
4332
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004333 ret = btrfs_commit_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004334 if (ret)
4335 return ret;
4336
4337 down(&fs_info->uuid_tree_rescan_sem);
4338 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4339 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004340 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004341 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004342 up(&fs_info->uuid_tree_rescan_sem);
4343 return PTR_ERR(task);
4344 }
4345
4346 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004347}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004348
Stefan Behrens70f80172013-08-15 17:11:23 +02004349int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4350{
4351 struct task_struct *task;
4352
4353 down(&fs_info->uuid_tree_rescan_sem);
4354 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4355 if (IS_ERR(task)) {
4356 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004357 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004358 up(&fs_info->uuid_tree_rescan_sem);
4359 return PTR_ERR(task);
4360 }
4361
4362 return 0;
4363}
4364
Chris Mason8f18cf12008-04-25 16:53:30 -04004365/*
4366 * shrinking a device means finding all of the device extents past
4367 * the new size, and then following the back refs to the chunks.
4368 * The chunk relocation code actually frees the device extent
4369 */
4370int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4371{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004372 struct btrfs_fs_info *fs_info = device->fs_info;
4373 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04004374 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04004375 struct btrfs_dev_extent *dev_extent = NULL;
4376 struct btrfs_path *path;
4377 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004378 u64 chunk_offset;
4379 int ret;
4380 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004381 int failed = 0;
4382 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004383 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004384 struct extent_buffer *l;
4385 struct btrfs_key key;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004386 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004387 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004388 u64 old_size = btrfs_device_get_total_bytes(device);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004389 u64 diff;
4390
4391 new_size = round_down(new_size, fs_info->sectorsize);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03004392 diff = round_down(old_size - new_size, fs_info->sectorsize);
Chris Mason8f18cf12008-04-25 16:53:30 -04004393
Stefan Behrens63a212a2012-11-05 18:29:28 +01004394 if (device->is_tgtdev_for_dev_replace)
4395 return -EINVAL;
4396
Chris Mason8f18cf12008-04-25 16:53:30 -04004397 path = btrfs_alloc_path();
4398 if (!path)
4399 return -ENOMEM;
4400
David Sterbae4058b52015-11-27 16:31:35 +01004401 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04004402
David Sterba34441362016-10-04 19:34:27 +02004403 mutex_lock(&fs_info->chunk_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04004404
Miao Xie7cc8e582014-09-03 21:35:38 +08004405 btrfs_device_set_total_bytes(device, new_size);
Josef Bacik2bf64752011-09-26 17:12:22 -04004406 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05004407 device->fs_devices->total_rw_bytes -= diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004408 atomic64_sub(diff, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04004409 }
David Sterba34441362016-10-04 19:34:27 +02004410 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004411
Josef Bacikba1bf482009-09-11 16:11:19 -04004412again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004413 key.objectid = device->devid;
4414 key.offset = (u64)-1;
4415 key.type = BTRFS_DEV_EXTENT_KEY;
4416
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004417 do {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004418 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004419 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004420 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004421 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004422 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004423 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004424
4425 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004426 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004427 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004428 if (ret < 0)
4429 goto done;
4430 if (ret) {
4431 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004432 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004433 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004434 }
4435
4436 l = path->nodes[0];
4437 slot = path->slots[0];
4438 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4439
Josef Bacikba1bf482009-09-11 16:11:19 -04004440 if (key.objectid != device->devid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004441 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004442 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004443 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004444 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004445
4446 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4447 length = btrfs_dev_extent_length(l, dev_extent);
4448
Josef Bacikba1bf482009-09-11 16:11:19 -04004449 if (key.offset + length <= new_size) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004450 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004451 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004452 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004453 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004454
Chris Mason8f18cf12008-04-25 16:53:30 -04004455 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004456 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004457
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004458 ret = btrfs_relocate_chunk(fs_info, chunk_offset);
4459 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004460 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004461 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004462 if (ret == -ENOSPC)
4463 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004464 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004465
4466 if (failed && !retried) {
4467 failed = 0;
4468 retried = true;
4469 goto again;
4470 } else if (failed && retried) {
4471 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004472 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004473 }
4474
Chris Balld6397ba2009-04-27 07:29:03 -04004475 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004476 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004477 if (IS_ERR(trans)) {
4478 ret = PTR_ERR(trans);
4479 goto done;
4480 }
4481
David Sterba34441362016-10-04 19:34:27 +02004482 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004483
4484 /*
4485 * We checked in the above loop all device extents that were already in
4486 * the device tree. However before we have updated the device's
4487 * total_bytes to the new size, we might have had chunk allocations that
4488 * have not complete yet (new block groups attached to transaction
4489 * handles), and therefore their device extents were not yet in the
4490 * device tree and we missed them in the loop above. So if we have any
4491 * pending chunk using a device extent that overlaps the device range
4492 * that we can not use anymore, commit the current transaction and
4493 * repeat the search on the device tree - this way we guarantee we will
4494 * not have chunks using device extents that end beyond 'new_size'.
4495 */
4496 if (!checked_pending_chunks) {
4497 u64 start = new_size;
4498 u64 len = old_size - new_size;
4499
Jeff Mahoney499f3772015-06-15 09:41:17 -04004500 if (contains_pending_extent(trans->transaction, device,
4501 &start, len)) {
David Sterba34441362016-10-04 19:34:27 +02004502 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004503 checked_pending_chunks = true;
4504 failed = 0;
4505 retried = false;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004506 ret = btrfs_commit_transaction(trans);
Filipe Manana53e489b2015-06-02 14:43:21 +01004507 if (ret)
4508 goto done;
4509 goto again;
4510 }
4511 }
4512
Miao Xie7cc8e582014-09-03 21:35:38 +08004513 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004514 if (list_empty(&device->resized_list))
4515 list_add_tail(&device->resized_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004516 &fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004517
Chris Balld6397ba2009-04-27 07:29:03 -04004518 WARN_ON(diff > old_total);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004519 btrfs_set_super_total_bytes(super_copy,
4520 round_down(old_total - diff, fs_info->sectorsize));
David Sterba34441362016-10-04 19:34:27 +02004521 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08004522
4523 /* Now btrfs_update_device() will change the on-disk size. */
4524 ret = btrfs_update_device(trans, device);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004525 btrfs_end_transaction(trans);
Chris Mason8f18cf12008-04-25 16:53:30 -04004526done:
4527 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004528 if (ret) {
David Sterba34441362016-10-04 19:34:27 +02004529 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004530 btrfs_device_set_total_bytes(device, old_size);
4531 if (device->writeable)
4532 device->fs_devices->total_rw_bytes += diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004533 atomic64_add(diff, &fs_info->free_chunk_space);
David Sterba34441362016-10-04 19:34:27 +02004534 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004535 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004536 return ret;
4537}
4538
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004539static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04004540 struct btrfs_key *key,
4541 struct btrfs_chunk *chunk, int item_size)
4542{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004543 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004544 struct btrfs_disk_key disk_key;
4545 u32 array_size;
4546 u8 *ptr;
4547
David Sterba34441362016-10-04 19:34:27 +02004548 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004549 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004550 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004551 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
David Sterba34441362016-10-04 19:34:27 +02004552 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004553 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004554 }
Chris Mason0b86a832008-03-24 15:01:56 -04004555
4556 ptr = super_copy->sys_chunk_array + array_size;
4557 btrfs_cpu_key_to_disk(&disk_key, key);
4558 memcpy(ptr, &disk_key, sizeof(disk_key));
4559 ptr += sizeof(disk_key);
4560 memcpy(ptr, chunk, item_size);
4561 item_size += sizeof(disk_key);
4562 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
David Sterba34441362016-10-04 19:34:27 +02004563 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004564
Chris Mason0b86a832008-03-24 15:01:56 -04004565 return 0;
4566}
4567
Miao Xieb2117a32011-01-05 10:07:28 +00004568/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004569 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004570 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004571static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004572{
Arne Jansen73c5de02011-04-12 12:07:57 +02004573 const struct btrfs_device_info *di_a = a;
4574 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004575
Arne Jansen73c5de02011-04-12 12:07:57 +02004576 if (di_a->max_avail > di_b->max_avail)
4577 return -1;
4578 if (di_a->max_avail < di_b->max_avail)
4579 return 1;
4580 if (di_a->total_avail > di_b->total_avail)
4581 return -1;
4582 if (di_a->total_avail < di_b->total_avail)
4583 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004584 return 0;
4585}
4586
David Woodhouse53b381b2013-01-29 18:40:14 -05004587static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
4588{
4589 /* TODO allow them to set a preferred stripe size */
Byongho Leeee221842015-12-15 01:42:10 +09004590 return SZ_64K;
David Woodhouse53b381b2013-01-29 18:40:14 -05004591}
4592
4593static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4594{
Zhao Leiffe2d202015-01-20 15:11:44 +08004595 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004596 return;
4597
Miao Xieceda0862013-04-11 10:30:16 +00004598 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004599}
4600
Jeff Mahoneyda170662016-06-15 09:22:56 -04004601#define BTRFS_MAX_DEVS(r) ((BTRFS_MAX_ITEM_SIZE(r->fs_info) \
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004602 - sizeof(struct btrfs_chunk)) \
4603 / sizeof(struct btrfs_stripe) + 1)
4604
4605#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4606 - 2 * sizeof(struct btrfs_disk_key) \
4607 - 2 * sizeof(struct btrfs_chunk)) \
4608 / sizeof(struct btrfs_stripe) + 1)
4609
Miao Xieb2117a32011-01-05 10:07:28 +00004610static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
David Sterba72b468c2017-02-10 19:46:27 +01004611 u64 start, u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004612{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004613 struct btrfs_fs_info *info = trans->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004614 struct btrfs_fs_devices *fs_devices = info->fs_devices;
Nikolay Borisovebcc9302017-06-27 10:02:24 +03004615 struct btrfs_device *device;
Arne Jansen73c5de02011-04-12 12:07:57 +02004616 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004617 struct extent_map_tree *em_tree;
4618 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004619 struct btrfs_device_info *devices_info = NULL;
4620 u64 total_avail;
4621 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004622 int data_stripes; /* number of stripes that count for
4623 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004624 int sub_stripes; /* sub_stripes info for map */
4625 int dev_stripes; /* stripes per dev */
4626 int devs_max; /* max devs to use */
4627 int devs_min; /* min devs needed */
4628 int devs_increment; /* ndevs has to be a multiple of this */
4629 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004630 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004631 u64 max_stripe_size;
4632 u64 max_chunk_size;
4633 u64 stripe_size;
4634 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004635 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02004636 int ndevs;
4637 int i;
4638 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004639 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004640
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004641 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004642
Miao Xieb2117a32011-01-05 10:07:28 +00004643 if (list_empty(&fs_devices->alloc_list))
4644 return -ENOSPC;
4645
Liu Bo31e50222012-11-21 14:18:10 +00004646 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004647
Liu Bo31e50222012-11-21 14:18:10 +00004648 sub_stripes = btrfs_raid_array[index].sub_stripes;
4649 dev_stripes = btrfs_raid_array[index].dev_stripes;
4650 devs_max = btrfs_raid_array[index].devs_max;
4651 devs_min = btrfs_raid_array[index].devs_min;
4652 devs_increment = btrfs_raid_array[index].devs_increment;
4653 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004654
4655 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004656 max_stripe_size = SZ_1G;
Arne Jansen73c5de02011-04-12 12:07:57 +02004657 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004658 if (!devs_max)
4659 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004660 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004661 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004662 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4663 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004664 else
Byongho Leeee221842015-12-15 01:42:10 +09004665 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004666 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004667 if (!devs_max)
4668 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004669 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004670 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004671 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004672 if (!devs_max)
4673 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004674 } else {
David Sterba351fd352014-05-15 16:48:20 +02004675 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004676 type);
4677 BUG_ON(1);
4678 }
4679
4680 /* we don't want a chunk larger than 10% of writeable space */
4681 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4682 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004683
David Sterba31e818f2015-02-20 18:00:26 +01004684 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004685 GFP_NOFS);
4686 if (!devices_info)
4687 return -ENOMEM;
4688
Arne Jansen73c5de02011-04-12 12:07:57 +02004689 /*
4690 * in the first pass through the devices list, we gather information
4691 * about the available holes on each device.
4692 */
4693 ndevs = 0;
Nikolay Borisovebcc9302017-06-27 10:02:24 +03004694 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Arne Jansen73c5de02011-04-12 12:07:57 +02004695 u64 max_avail;
4696 u64 dev_offset;
4697
Arne Jansen73c5de02011-04-12 12:07:57 +02004698 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004699 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004700 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004701 continue;
4702 }
4703
Stefan Behrens63a212a2012-11-05 18:29:28 +01004704 if (!device->in_fs_metadata ||
4705 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004706 continue;
4707
4708 if (device->total_bytes > device->bytes_used)
4709 total_avail = device->total_bytes - device->bytes_used;
4710 else
4711 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004712
4713 /* If there is no space on this device, skip it. */
4714 if (total_avail == 0)
4715 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004716
Josef Bacik6df9a952013-06-27 13:22:46 -04004717 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004718 max_stripe_size * dev_stripes,
4719 &dev_offset, &max_avail);
4720 if (ret && ret != -ENOSPC)
4721 goto error;
4722
4723 if (ret == 0)
4724 max_avail = max_stripe_size * dev_stripes;
4725
4726 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4727 continue;
4728
Eric Sandeen063d0062013-01-31 00:55:01 +00004729 if (ndevs == fs_devices->rw_devices) {
4730 WARN(1, "%s: found more than %llu devices\n",
4731 __func__, fs_devices->rw_devices);
4732 break;
4733 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004734 devices_info[ndevs].dev_offset = dev_offset;
4735 devices_info[ndevs].max_avail = max_avail;
4736 devices_info[ndevs].total_avail = total_avail;
4737 devices_info[ndevs].dev = device;
4738 ++ndevs;
4739 }
4740
4741 /*
4742 * now sort the devices by hole size / available space
4743 */
4744 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4745 btrfs_cmp_device_info, NULL);
4746
4747 /* round down to number of usable stripes */
Nikolay Borisove5600fd2017-06-27 10:02:25 +03004748 ndevs = round_down(ndevs, devs_increment);
Arne Jansen73c5de02011-04-12 12:07:57 +02004749
4750 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4751 ret = -ENOSPC;
4752 goto error;
4753 }
4754
Nikolay Borisovf148ef42017-06-27 10:02:26 +03004755 ndevs = min(ndevs, devs_max);
4756
Arne Jansen73c5de02011-04-12 12:07:57 +02004757 /*
4758 * the primary goal is to maximize the number of stripes, so use as many
4759 * devices as possible, even if the stripes are not maximum sized.
4760 */
4761 stripe_size = devices_info[ndevs-1].max_avail;
4762 num_stripes = ndevs * dev_stripes;
4763
David Woodhouse53b381b2013-01-29 18:40:14 -05004764 /*
4765 * this will have to be fixed for RAID1 and RAID10 over
4766 * more drives
4767 */
4768 data_stripes = num_stripes / ncopies;
4769
David Woodhouse53b381b2013-01-29 18:40:14 -05004770 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4771 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004772 info->stripesize);
David Woodhouse53b381b2013-01-29 18:40:14 -05004773 data_stripes = num_stripes - 1;
4774 }
4775 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4776 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004777 info->stripesize);
David Woodhouse53b381b2013-01-29 18:40:14 -05004778 data_stripes = num_stripes - 2;
4779 }
Chris Mason86db2572013-02-20 16:23:40 -05004780
4781 /*
4782 * Use the number of data stripes to figure out how big this chunk
4783 * is really going to be in terms of logical address space,
4784 * and compare that answer with the max chunk size
4785 */
4786 if (stripe_size * data_stripes > max_chunk_size) {
4787 u64 mask = (1ULL << 24) - 1;
David Sterbab8b93ad2015-01-16 17:26:13 +01004788
4789 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004790
4791 /* bump the answer up to a 16MB boundary */
4792 stripe_size = (stripe_size + mask) & ~mask;
4793
4794 /* but don't go higher than the limits we found
4795 * while searching for free extents
4796 */
4797 if (stripe_size > devices_info[ndevs-1].max_avail)
4798 stripe_size = devices_info[ndevs-1].max_avail;
4799 }
4800
David Sterbab8b93ad2015-01-16 17:26:13 +01004801 stripe_size = div_u64(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004802
4803 /* align to BTRFS_STRIPE_LEN */
Liu Bo42c61ab2017-04-03 13:45:24 -07004804 stripe_size = div64_u64(stripe_size, raid_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05004805 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004806
Miao Xieb2117a32011-01-05 10:07:28 +00004807 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4808 if (!map) {
4809 ret = -ENOMEM;
4810 goto error;
4811 }
4812 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004813
Arne Jansen73c5de02011-04-12 12:07:57 +02004814 for (i = 0; i < ndevs; ++i) {
4815 for (j = 0; j < dev_stripes; ++j) {
4816 int s = i * dev_stripes + j;
4817 map->stripes[s].dev = devices_info[i].dev;
4818 map->stripes[s].physical = devices_info[i].dev_offset +
4819 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004820 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004821 }
Jeff Mahoneyda170662016-06-15 09:22:56 -04004822 map->sector_size = info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004823 map->stripe_len = raid_stripe_len;
4824 map->io_align = raid_stripe_len;
4825 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004826 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004827 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004828
David Woodhouse53b381b2013-01-29 18:40:14 -05004829 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004830
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004831 trace_btrfs_chunk_alloc(info, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004832
David Sterba172ddd62011-04-21 00:48:27 +02004833 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004834 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004835 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004836 ret = -ENOMEM;
4837 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004838 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004839 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004840 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004841 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004842 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004843 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004844 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004845 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004846
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004847 em_tree = &info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004848 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004849 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004850 if (!ret) {
4851 list_add_tail(&em->list, &trans->transaction->pending_chunks);
Elena Reshetova490b54d2017-03-03 10:55:12 +02004852 refcount_inc(&em->refs);
Josef Bacik6df9a952013-06-27 13:22:46 -04004853 }
Chris Mason890871b2009-09-02 16:24:52 -04004854 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004855 if (ret) {
4856 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004857 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004858 }
Yan Zheng2b820322008-11-17 21:11:30 -05004859
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004860 ret = btrfs_make_block_group(trans, info, 0, type,
Josef Bacik04487482013-01-29 15:03:37 -05004861 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4862 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004863 if (ret)
4864 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004865
Miao Xie7cc8e582014-09-03 21:35:38 +08004866 for (i = 0; i < map->num_stripes; i++) {
4867 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4868 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4869 }
Miao Xie43530c42014-09-03 21:35:36 +08004870
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004871 atomic64_sub(stripe_size * map->num_stripes, &info->free_chunk_space);
Miao Xie1c116182014-09-03 21:35:37 +08004872
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004873 free_extent_map(em);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004874 check_raid56_incompat_flag(info, type);
David Woodhouse53b381b2013-01-29 18:40:14 -05004875
Miao Xieb2117a32011-01-05 10:07:28 +00004876 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004877 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004878
Josef Bacik6df9a952013-06-27 13:22:46 -04004879error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004880 write_lock(&em_tree->lock);
4881 remove_extent_mapping(em_tree, em);
4882 write_unlock(&em_tree->lock);
4883
4884 /* One for our allocation */
4885 free_extent_map(em);
4886 /* One for the tree reference */
4887 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004888 /* One for the pending_chunks list reference */
4889 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004890error:
Miao Xieb2117a32011-01-05 10:07:28 +00004891 kfree(devices_info);
4892 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004893}
4894
Josef Bacik6df9a952013-06-27 13:22:46 -04004895int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004896 struct btrfs_fs_info *fs_info,
Josef Bacik6df9a952013-06-27 13:22:46 -04004897 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004898{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004899 struct btrfs_root *extent_root = fs_info->extent_root;
4900 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05004901 struct btrfs_key key;
Yan Zheng2b820322008-11-17 21:11:30 -05004902 struct btrfs_device *device;
4903 struct btrfs_chunk *chunk;
4904 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004905 struct extent_map *em;
4906 struct map_lookup *map;
4907 size_t item_size;
4908 u64 dev_offset;
4909 u64 stripe_size;
4910 int i = 0;
Chris Mason140e6392015-12-23 13:30:51 -08004911 int ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004912
Liu Bo592d92e2017-03-14 13:33:55 -07004913 em = get_chunk_map(fs_info, chunk_offset, chunk_size);
4914 if (IS_ERR(em))
4915 return PTR_ERR(em);
Josef Bacik6df9a952013-06-27 13:22:46 -04004916
Jeff Mahoney95617d62015-06-03 10:55:48 -04004917 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004918 item_size = btrfs_chunk_item_size(map->num_stripes);
4919 stripe_size = em->orig_block_len;
4920
4921 chunk = kzalloc(item_size, GFP_NOFS);
4922 if (!chunk) {
4923 ret = -ENOMEM;
4924 goto out;
4925 }
4926
Filipe Manana50460e32015-11-20 10:42:47 +00004927 /*
4928 * Take the device list mutex to prevent races with the final phase of
4929 * a device replace operation that replaces the device object associated
4930 * with the map's stripes, because the device object's id can change
4931 * at any time during that final phase of the device replace operation
4932 * (dev-replace.c:btrfs_dev_replace_finishing()).
4933 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004934 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04004935 for (i = 0; i < map->num_stripes; i++) {
4936 device = map->stripes[i].dev;
4937 dev_offset = map->stripes[i].physical;
4938
Yan Zheng2b820322008-11-17 21:11:30 -05004939 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004940 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004941 break;
Josef Bacik6df9a952013-06-27 13:22:46 -04004942 ret = btrfs_alloc_dev_extent(trans, device,
4943 chunk_root->root_key.objectid,
4944 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4945 chunk_offset, dev_offset,
4946 stripe_size);
4947 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004948 break;
4949 }
4950 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004951 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe Manana50460e32015-11-20 10:42:47 +00004952 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004953 }
4954
Yan Zheng2b820322008-11-17 21:11:30 -05004955 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004956 for (i = 0; i < map->num_stripes; i++) {
4957 device = map->stripes[i].dev;
4958 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004959
4960 btrfs_set_stack_stripe_devid(stripe, device->devid);
4961 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4962 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4963 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004964 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004965 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05004966
4967 btrfs_set_stack_chunk_length(chunk, chunk_size);
4968 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4969 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4970 btrfs_set_stack_chunk_type(chunk, map->type);
4971 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4972 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4973 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004974 btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize);
Yan Zheng2b820322008-11-17 21:11:30 -05004975 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4976
4977 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4978 key.type = BTRFS_CHUNK_ITEM_KEY;
4979 key.offset = chunk_offset;
4980
4981 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004982 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4983 /*
4984 * TODO: Cleanup of inserted chunk root in case of
4985 * failure.
4986 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004987 ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004988 }
liubo1abe9b82011-03-24 11:18:59 +00004989
Josef Bacik6df9a952013-06-27 13:22:46 -04004990out:
Yan Zheng2b820322008-11-17 21:11:30 -05004991 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004992 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004993 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004994}
4995
4996/*
4997 * Chunk allocation falls into two parts. The first part does works
4998 * that make the new allocated chunk useable, but not do any operation
4999 * that modifies the chunk tree. The second part does the works that
5000 * require modifying the chunk tree. This division is important for the
5001 * bootstrap process of adding storage to a seed btrfs.
5002 */
5003int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005004 struct btrfs_fs_info *fs_info, u64 type)
Yan Zheng2b820322008-11-17 21:11:30 -05005005{
5006 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005007
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005008 ASSERT(mutex_is_locked(&fs_info->chunk_mutex));
5009 chunk_offset = find_next_chunk(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005010 return __btrfs_alloc_chunk(trans, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05005011}
5012
Chris Masond3977122009-01-05 21:25:51 -05005013static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +01005014 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05005015{
5016 u64 chunk_offset;
5017 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005018 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05005019 int ret;
5020
Josef Bacik6df9a952013-06-27 13:22:46 -04005021 chunk_offset = find_next_chunk(fs_info);
Jeff Mahoney1b868262017-05-17 11:38:35 -04005022 alloc_profile = btrfs_metadata_alloc_profile(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005023 ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005024 if (ret)
5025 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005026
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005027 sys_chunk_offset = find_next_chunk(fs_info);
Jeff Mahoney1b868262017-05-17 11:38:35 -04005028 alloc_profile = btrfs_system_alloc_profile(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005029 ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005030 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005031}
5032
Miao Xied20983b2014-07-03 18:22:13 +08005033static inline int btrfs_chunk_max_errors(struct map_lookup *map)
5034{
5035 int max_errors;
5036
5037 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5038 BTRFS_BLOCK_GROUP_RAID10 |
5039 BTRFS_BLOCK_GROUP_RAID5 |
5040 BTRFS_BLOCK_GROUP_DUP)) {
5041 max_errors = 1;
5042 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
5043 max_errors = 2;
5044 } else {
5045 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005046 }
5047
Miao Xied20983b2014-07-03 18:22:13 +08005048 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05005049}
5050
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005051int btrfs_chunk_readonly(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Yan Zheng2b820322008-11-17 21:11:30 -05005052{
5053 struct extent_map *em;
5054 struct map_lookup *map;
Yan Zheng2b820322008-11-17 21:11:30 -05005055 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08005056 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005057 int i;
5058
Liu Bo592d92e2017-03-14 13:33:55 -07005059 em = get_chunk_map(fs_info, chunk_offset, 1);
5060 if (IS_ERR(em))
Yan Zheng2b820322008-11-17 21:11:30 -05005061 return 1;
5062
Jeff Mahoney95617d62015-06-03 10:55:48 -04005063 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05005064 for (i = 0; i < map->num_stripes; i++) {
Miao Xied20983b2014-07-03 18:22:13 +08005065 if (map->stripes[i].dev->missing) {
5066 miss_ndevs++;
5067 continue;
5068 }
5069
Yan Zheng2b820322008-11-17 21:11:30 -05005070 if (!map->stripes[i].dev->writeable) {
5071 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08005072 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05005073 }
5074 }
Miao Xied20983b2014-07-03 18:22:13 +08005075
5076 /*
5077 * If the number of missing devices is larger than max errors,
5078 * we can not write the data into that chunk successfully, so
5079 * set it readonly.
5080 */
5081 if (miss_ndevs > btrfs_chunk_max_errors(map))
5082 readonly = 1;
5083end:
Yan Zheng2b820322008-11-17 21:11:30 -05005084 free_extent_map(em);
5085 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04005086}
5087
5088void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
5089{
David Sterbaa8067e02011-04-21 00:34:43 +02005090 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04005091}
5092
5093void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
5094{
5095 struct extent_map *em;
5096
Chris Masond3977122009-01-05 21:25:51 -05005097 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04005098 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005099 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
5100 if (em)
5101 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04005102 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005103 if (!em)
5104 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005105 /* once for us */
5106 free_extent_map(em);
5107 /* once for the tree */
5108 free_extent_map(em);
5109 }
5110}
5111
Stefan Behrens5d964052012-11-05 14:59:07 +01005112int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005113{
5114 struct extent_map *em;
5115 struct map_lookup *map;
Chris Masonf1885912008-04-09 16:28:12 -04005116 int ret;
5117
Liu Bo592d92e2017-03-14 13:33:55 -07005118 em = get_chunk_map(fs_info, logical, len);
5119 if (IS_ERR(em))
5120 /*
5121 * We could return errors for these cases, but that could get
5122 * ugly and we'd probably do the same thing which is just not do
5123 * anything else and exit, so return 1 so the callers don't try
5124 * to use other copies.
5125 */
Josef Bacikfb7669b2013-04-23 10:53:18 -04005126 return 1;
Josef Bacikfb7669b2013-04-23 10:53:18 -04005127
Jeff Mahoney95617d62015-06-03 10:55:48 -04005128 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005129 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5130 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005131 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5132 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005133 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5134 ret = 2;
5135 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5136 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04005137 else
5138 ret = 1;
5139 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005140
Liu Bo73beece2015-07-17 16:49:19 +08005141 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Liu Bo6fad8232017-03-14 13:33:59 -07005142 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) &&
5143 fs_info->dev_replace.tgtdev)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005144 ret++;
Liu Bo73beece2015-07-17 16:49:19 +08005145 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005146
Chris Masonf1885912008-04-09 16:28:12 -04005147 return ret;
5148}
5149
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005150unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005151 struct btrfs_mapping_tree *map_tree,
5152 u64 logical)
5153{
5154 struct extent_map *em;
5155 struct map_lookup *map;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005156 unsigned long len = fs_info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05005157
Liu Bo592d92e2017-03-14 13:33:55 -07005158 em = get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005159
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005160 if (!WARN_ON(IS_ERR(em))) {
5161 map = em->map_lookup;
5162 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5163 len = map->stripe_len * nr_data_stripes(map);
5164 free_extent_map(em);
5165 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005166 return len;
5167}
5168
Liu Bo592d92e2017-03-14 13:33:55 -07005169int btrfs_is_parity_mirror(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005170 u64 logical, u64 len, int mirror_num)
5171{
5172 struct extent_map *em;
5173 struct map_lookup *map;
David Woodhouse53b381b2013-01-29 18:40:14 -05005174 int ret = 0;
5175
Liu Bo592d92e2017-03-14 13:33:55 -07005176 em = get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005177
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005178 if(!WARN_ON(IS_ERR(em))) {
5179 map = em->map_lookup;
5180 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5181 ret = 1;
5182 free_extent_map(em);
5183 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005184 return ret;
5185}
5186
Stefan Behrens30d98612012-11-06 14:52:18 +01005187static int find_live_mirror(struct btrfs_fs_info *fs_info,
5188 struct map_lookup *map, int first, int num,
5189 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005190{
5191 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01005192 int tolerance;
5193 struct btrfs_device *srcdev;
5194
5195 if (dev_replace_is_ongoing &&
5196 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5197 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5198 srcdev = fs_info->dev_replace.srcdev;
5199 else
5200 srcdev = NULL;
5201
5202 /*
5203 * try to avoid the drive that is the source drive for a
5204 * dev-replace procedure, only choose it if no other non-missing
5205 * mirror is available
5206 */
5207 for (tolerance = 0; tolerance < 2; tolerance++) {
5208 if (map->stripes[optimal].dev->bdev &&
5209 (tolerance || map->stripes[optimal].dev != srcdev))
5210 return optimal;
5211 for (i = first; i < first + num; i++) {
5212 if (map->stripes[i].dev->bdev &&
5213 (tolerance || map->stripes[i].dev != srcdev))
5214 return i;
5215 }
Chris Masondfe25022008-05-13 13:46:40 -04005216 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005217
Chris Masondfe25022008-05-13 13:46:40 -04005218 /* we couldn't find one that doesn't fail. Just return something
5219 * and the io error handling code will clean up eventually
5220 */
5221 return optimal;
5222}
5223
David Woodhouse53b381b2013-01-29 18:40:14 -05005224static inline int parity_smaller(u64 a, u64 b)
5225{
5226 return a > b;
5227}
5228
5229/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005230static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005231{
5232 struct btrfs_bio_stripe s;
5233 int i;
5234 u64 l;
5235 int again = 1;
5236
5237 while (again) {
5238 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005239 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005240 if (parity_smaller(bbio->raid_map[i],
5241 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005242 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005243 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005244 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005245 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005246 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005247 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005248
David Woodhouse53b381b2013-01-29 18:40:14 -05005249 again = 1;
5250 }
5251 }
5252 }
5253}
5254
Zhao Lei6e9606d2015-01-20 15:11:34 +08005255static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5256{
5257 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005258 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005259 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005260 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005261 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005262 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005263 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005264 /*
5265 * plus the raid_map, which includes both the tgt dev
5266 * and the stripes
5267 */
5268 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005269 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005270
5271 atomic_set(&bbio->error, 0);
Elena Reshetova140475a2017-03-03 10:55:10 +02005272 refcount_set(&bbio->refs, 1);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005273
5274 return bbio;
5275}
5276
5277void btrfs_get_bbio(struct btrfs_bio *bbio)
5278{
Elena Reshetova140475a2017-03-03 10:55:10 +02005279 WARN_ON(!refcount_read(&bbio->refs));
5280 refcount_inc(&bbio->refs);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005281}
5282
5283void btrfs_put_bbio(struct btrfs_bio *bbio)
5284{
5285 if (!bbio)
5286 return;
Elena Reshetova140475a2017-03-03 10:55:10 +02005287 if (refcount_dec_and_test(&bbio->refs))
Zhao Lei6e9606d2015-01-20 15:11:34 +08005288 kfree(bbio);
5289}
5290
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005291/* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */
5292/*
5293 * Please note that, discard won't be sent to target device of device
5294 * replace.
5295 */
5296static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info,
5297 u64 logical, u64 length,
5298 struct btrfs_bio **bbio_ret)
5299{
5300 struct extent_map *em;
5301 struct map_lookup *map;
5302 struct btrfs_bio *bbio;
5303 u64 offset;
5304 u64 stripe_nr;
5305 u64 stripe_nr_end;
5306 u64 stripe_end_offset;
5307 u64 stripe_cnt;
5308 u64 stripe_len;
5309 u64 stripe_offset;
5310 u64 num_stripes;
5311 u32 stripe_index;
5312 u32 factor = 0;
5313 u32 sub_stripes = 0;
5314 u64 stripes_per_dev = 0;
5315 u32 remaining_stripes = 0;
5316 u32 last_stripe = 0;
5317 int ret = 0;
5318 int i;
5319
5320 /* discard always return a bbio */
5321 ASSERT(bbio_ret);
5322
5323 em = get_chunk_map(fs_info, logical, length);
5324 if (IS_ERR(em))
5325 return PTR_ERR(em);
5326
5327 map = em->map_lookup;
5328 /* we don't discard raid56 yet */
5329 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
5330 ret = -EOPNOTSUPP;
5331 goto out;
5332 }
5333
5334 offset = logical - em->start;
5335 length = min_t(u64, em->len - offset, length);
5336
5337 stripe_len = map->stripe_len;
5338 /*
5339 * stripe_nr counts the total number of stripes we have to stride
5340 * to get to this block
5341 */
5342 stripe_nr = div64_u64(offset, stripe_len);
5343
5344 /* stripe_offset is the offset of this block in its stripe */
5345 stripe_offset = offset - stripe_nr * stripe_len;
5346
5347 stripe_nr_end = round_up(offset + length, map->stripe_len);
Liu Bo42c61ab2017-04-03 13:45:24 -07005348 stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005349 stripe_cnt = stripe_nr_end - stripe_nr;
5350 stripe_end_offset = stripe_nr_end * map->stripe_len -
5351 (offset + length);
5352 /*
5353 * after this, stripe_nr is the number of stripes on this
5354 * device we have to walk to find the data, and stripe_index is
5355 * the number of our device in the stripe array
5356 */
5357 num_stripes = 1;
5358 stripe_index = 0;
5359 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5360 BTRFS_BLOCK_GROUP_RAID10)) {
5361 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5362 sub_stripes = 1;
5363 else
5364 sub_stripes = map->sub_stripes;
5365
5366 factor = map->num_stripes / sub_stripes;
5367 num_stripes = min_t(u64, map->num_stripes,
5368 sub_stripes * stripe_cnt);
5369 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
5370 stripe_index *= sub_stripes;
5371 stripes_per_dev = div_u64_rem(stripe_cnt, factor,
5372 &remaining_stripes);
5373 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5374 last_stripe *= sub_stripes;
5375 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5376 BTRFS_BLOCK_GROUP_DUP)) {
5377 num_stripes = map->num_stripes;
5378 } else {
5379 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5380 &stripe_index);
5381 }
5382
5383 bbio = alloc_btrfs_bio(num_stripes, 0);
5384 if (!bbio) {
5385 ret = -ENOMEM;
5386 goto out;
5387 }
5388
5389 for (i = 0; i < num_stripes; i++) {
5390 bbio->stripes[i].physical =
5391 map->stripes[stripe_index].physical +
5392 stripe_offset + stripe_nr * map->stripe_len;
5393 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
5394
5395 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5396 BTRFS_BLOCK_GROUP_RAID10)) {
5397 bbio->stripes[i].length = stripes_per_dev *
5398 map->stripe_len;
5399
5400 if (i / sub_stripes < remaining_stripes)
5401 bbio->stripes[i].length +=
5402 map->stripe_len;
5403
5404 /*
5405 * Special for the first stripe and
5406 * the last stripe:
5407 *
5408 * |-------|...|-------|
5409 * |----------|
5410 * off end_off
5411 */
5412 if (i < sub_stripes)
5413 bbio->stripes[i].length -=
5414 stripe_offset;
5415
5416 if (stripe_index >= last_stripe &&
5417 stripe_index <= (last_stripe +
5418 sub_stripes - 1))
5419 bbio->stripes[i].length -=
5420 stripe_end_offset;
5421
5422 if (i == sub_stripes - 1)
5423 stripe_offset = 0;
5424 } else {
5425 bbio->stripes[i].length = length;
5426 }
5427
5428 stripe_index++;
5429 if (stripe_index == map->num_stripes) {
5430 stripe_index = 0;
5431 stripe_nr++;
5432 }
5433 }
5434
5435 *bbio_ret = bbio;
5436 bbio->map_type = map->type;
5437 bbio->num_stripes = num_stripes;
5438out:
5439 free_extent_map(em);
5440 return ret;
5441}
5442
Liu Bo5ab56092017-03-14 13:33:57 -07005443/*
5444 * In dev-replace case, for repair case (that's the only case where the mirror
5445 * is selected explicitly when calling btrfs_map_block), blocks left of the
5446 * left cursor can also be read from the target drive.
5447 *
5448 * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the
5449 * array of stripes.
5450 * For READ, it also needs to be supported using the same mirror number.
5451 *
5452 * If the requested block is not left of the left cursor, EIO is returned. This
5453 * can happen because btrfs_num_copies() returns one more in the dev-replace
5454 * case.
5455 */
5456static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info,
5457 u64 logical, u64 length,
5458 u64 srcdev_devid, int *mirror_num,
5459 u64 *physical)
5460{
5461 struct btrfs_bio *bbio = NULL;
5462 int num_stripes;
5463 int index_srcdev = 0;
5464 int found = 0;
5465 u64 physical_of_found = 0;
5466 int i;
5467 int ret = 0;
5468
5469 ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
5470 logical, &length, &bbio, 0, 0);
5471 if (ret) {
5472 ASSERT(bbio == NULL);
5473 return ret;
5474 }
5475
5476 num_stripes = bbio->num_stripes;
5477 if (*mirror_num > num_stripes) {
5478 /*
5479 * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror,
5480 * that means that the requested area is not left of the left
5481 * cursor
5482 */
5483 btrfs_put_bbio(bbio);
5484 return -EIO;
5485 }
5486
5487 /*
5488 * process the rest of the function using the mirror_num of the source
5489 * drive. Therefore look it up first. At the end, patch the device
5490 * pointer to the one of the target drive.
5491 */
5492 for (i = 0; i < num_stripes; i++) {
5493 if (bbio->stripes[i].dev->devid != srcdev_devid)
5494 continue;
5495
5496 /*
5497 * In case of DUP, in order to keep it simple, only add the
5498 * mirror with the lowest physical address
5499 */
5500 if (found &&
5501 physical_of_found <= bbio->stripes[i].physical)
5502 continue;
5503
5504 index_srcdev = i;
5505 found = 1;
5506 physical_of_found = bbio->stripes[i].physical;
5507 }
5508
5509 btrfs_put_bbio(bbio);
5510
5511 ASSERT(found);
5512 if (!found)
5513 return -EIO;
5514
5515 *mirror_num = index_srcdev + 1;
5516 *physical = physical_of_found;
5517 return ret;
5518}
5519
Liu Bo73c0f222017-03-14 13:33:58 -07005520static void handle_ops_on_dev_replace(enum btrfs_map_op op,
5521 struct btrfs_bio **bbio_ret,
5522 struct btrfs_dev_replace *dev_replace,
5523 int *num_stripes_ret, int *max_errors_ret)
5524{
5525 struct btrfs_bio *bbio = *bbio_ret;
5526 u64 srcdev_devid = dev_replace->srcdev->devid;
5527 int tgtdev_indexes = 0;
5528 int num_stripes = *num_stripes_ret;
5529 int max_errors = *max_errors_ret;
5530 int i;
5531
5532 if (op == BTRFS_MAP_WRITE) {
5533 int index_where_to_add;
5534
5535 /*
5536 * duplicate the write operations while the dev replace
5537 * procedure is running. Since the copying of the old disk to
5538 * the new disk takes place at run time while the filesystem is
5539 * mounted writable, the regular write operations to the old
5540 * disk have to be duplicated to go to the new disk as well.
5541 *
5542 * Note that device->missing is handled by the caller, and that
5543 * the write to the old disk is already set up in the stripes
5544 * array.
5545 */
5546 index_where_to_add = num_stripes;
5547 for (i = 0; i < num_stripes; i++) {
5548 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5549 /* write to new disk, too */
5550 struct btrfs_bio_stripe *new =
5551 bbio->stripes + index_where_to_add;
5552 struct btrfs_bio_stripe *old =
5553 bbio->stripes + i;
5554
5555 new->physical = old->physical;
5556 new->length = old->length;
5557 new->dev = dev_replace->tgtdev;
5558 bbio->tgtdev_map[i] = index_where_to_add;
5559 index_where_to_add++;
5560 max_errors++;
5561 tgtdev_indexes++;
5562 }
5563 }
5564 num_stripes = index_where_to_add;
5565 } else if (op == BTRFS_MAP_GET_READ_MIRRORS) {
5566 int index_srcdev = 0;
5567 int found = 0;
5568 u64 physical_of_found = 0;
5569
5570 /*
5571 * During the dev-replace procedure, the target drive can also
5572 * be used to read data in case it is needed to repair a corrupt
5573 * block elsewhere. This is possible if the requested area is
5574 * left of the left cursor. In this area, the target drive is a
5575 * full copy of the source drive.
5576 */
5577 for (i = 0; i < num_stripes; i++) {
5578 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5579 /*
5580 * In case of DUP, in order to keep it simple,
5581 * only add the mirror with the lowest physical
5582 * address
5583 */
5584 if (found &&
5585 physical_of_found <=
5586 bbio->stripes[i].physical)
5587 continue;
5588 index_srcdev = i;
5589 found = 1;
5590 physical_of_found = bbio->stripes[i].physical;
5591 }
5592 }
5593 if (found) {
5594 struct btrfs_bio_stripe *tgtdev_stripe =
5595 bbio->stripes + num_stripes;
5596
5597 tgtdev_stripe->physical = physical_of_found;
5598 tgtdev_stripe->length =
5599 bbio->stripes[index_srcdev].length;
5600 tgtdev_stripe->dev = dev_replace->tgtdev;
5601 bbio->tgtdev_map[index_srcdev] = num_stripes;
5602
5603 tgtdev_indexes++;
5604 num_stripes++;
5605 }
5606 }
5607
5608 *num_stripes_ret = num_stripes;
5609 *max_errors_ret = max_errors;
5610 bbio->num_tgtdevs = tgtdev_indexes;
5611 *bbio_ret = bbio;
5612}
5613
Liu Bo2b19a1f2017-03-14 13:34:00 -07005614static bool need_full_stripe(enum btrfs_map_op op)
5615{
5616 return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS);
5617}
5618
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005619static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
5620 enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005621 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005622 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005623 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005624{
5625 struct extent_map *em;
5626 struct map_lookup *map;
Chris Mason0b86a832008-03-24 15:01:56 -04005627 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005628 u64 stripe_offset;
5629 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005630 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005631 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005632 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005633 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005634 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005635 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005636 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005637 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005638 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5639 int dev_replace_is_ongoing = 0;
5640 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005641 int patch_the_first_stripe_for_dev_replace = 0;
5642 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005643 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005644
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005645 if (op == BTRFS_MAP_DISCARD)
5646 return __btrfs_map_block_for_discard(fs_info, logical,
5647 *length, bbio_ret);
5648
Liu Bo592d92e2017-03-14 13:33:55 -07005649 em = get_chunk_map(fs_info, logical, *length);
5650 if (IS_ERR(em))
5651 return PTR_ERR(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005652
Jeff Mahoney95617d62015-06-03 10:55:48 -04005653 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005654 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005655
David Woodhouse53b381b2013-01-29 18:40:14 -05005656 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005657 stripe_nr = offset;
5658 /*
5659 * stripe_nr counts the total number of stripes we have to stride
5660 * to get to this block
5661 */
David Sterba47c57132015-02-20 18:43:47 +01005662 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005663
David Woodhouse53b381b2013-01-29 18:40:14 -05005664 stripe_offset = stripe_nr * stripe_len;
Josef Bacike042d1e2016-04-12 12:54:40 -04005665 if (offset < stripe_offset) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005666 btrfs_crit(fs_info,
5667 "stripe math has gone wrong, stripe_offset=%llu, offset=%llu, start=%llu, logical=%llu, stripe_len=%llu",
Josef Bacike042d1e2016-04-12 12:54:40 -04005668 stripe_offset, offset, em->start, logical,
5669 stripe_len);
5670 free_extent_map(em);
5671 return -EINVAL;
5672 }
Chris Mason593060d2008-03-25 16:50:33 -04005673
5674 /* stripe_offset is the offset of this block in its stripe*/
5675 stripe_offset = offset - stripe_offset;
5676
David Woodhouse53b381b2013-01-29 18:40:14 -05005677 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005678 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005679 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5680 raid56_full_stripe_start = offset;
5681
5682 /* allow a write of a full stripe, but make sure we don't
5683 * allow straddling of stripes
5684 */
David Sterba47c57132015-02-20 18:43:47 +01005685 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5686 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005687 raid56_full_stripe_start *= full_stripe_len;
5688 }
5689
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005690 if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005691 u64 max_len;
5692 /* For writes to RAID[56], allow a full stripeset across all disks.
5693 For other RAID types and for RAID[56] reads, just allow a single
5694 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005695 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005696 (op == BTRFS_MAP_WRITE)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005697 max_len = stripe_len * nr_data_stripes(map) -
5698 (offset - raid56_full_stripe_start);
5699 } else {
5700 /* we limit the length of each bio to what fits in a stripe */
5701 max_len = stripe_len - stripe_offset;
5702 }
5703 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005704 } else {
5705 *length = em->len - offset;
5706 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005707
David Woodhouse53b381b2013-01-29 18:40:14 -05005708 /* This is for when we're called from btrfs_merge_bio_hook() and all
5709 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005710 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005711 goto out;
5712
Liu Bo73beece2015-07-17 16:49:19 +08005713 btrfs_dev_replace_lock(dev_replace, 0);
Stefan Behrens472262f2012-11-06 14:43:46 +01005714 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5715 if (!dev_replace_is_ongoing)
Liu Bo73beece2015-07-17 16:49:19 +08005716 btrfs_dev_replace_unlock(dev_replace, 0);
5717 else
5718 btrfs_dev_replace_set_lock_blocking(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005719
Stefan Behrensad6d6202012-11-06 15:06:47 +01005720 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005721 !need_full_stripe(op) && dev_replace->tgtdev != NULL) {
Liu Bo5ab56092017-03-14 13:33:57 -07005722 ret = get_extra_mirror_from_replace(fs_info, logical, *length,
5723 dev_replace->srcdev->devid,
5724 &mirror_num,
5725 &physical_to_patch_in_first_stripe);
5726 if (ret)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005727 goto out;
Liu Bo5ab56092017-03-14 13:33:57 -07005728 else
5729 patch_the_first_stripe_for_dev_replace = 1;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005730 } else if (mirror_num > map->num_stripes) {
5731 mirror_num = 0;
5732 }
5733
Chris Masonf2d8d742008-04-21 10:03:05 -04005734 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005735 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005736 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
David Sterba47c57132015-02-20 18:43:47 +01005737 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5738 &stripe_index);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005739 if (op != BTRFS_MAP_WRITE && op != BTRFS_MAP_GET_READ_MIRRORS)
Miao Xie28e1cc72014-09-12 18:44:02 +08005740 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005741 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005742 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS)
Chris Masonf2d8d742008-04-21 10:03:05 -04005743 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005744 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005745 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005746 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005747 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005748 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005749 current->pid % map->num_stripes,
5750 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005751 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005752 }
Chris Mason2fff7342008-04-29 14:12:09 -04005753
Chris Mason611f0e02008-04-03 16:29:03 -04005754 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005755 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005756 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005757 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005758 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005759 } else {
5760 mirror_num = 1;
5761 }
Chris Mason2fff7342008-04-29 14:12:09 -04005762
Chris Mason321aecc2008-04-16 10:49:51 -04005763 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005764 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005765
David Sterba47c57132015-02-20 18:43:47 +01005766 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005767 stripe_index *= map->sub_stripes;
5768
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005769 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS)
Chris Masonf2d8d742008-04-21 10:03:05 -04005770 num_stripes = map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005771 else if (mirror_num)
5772 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005773 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005774 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005775 stripe_index = find_live_mirror(fs_info, map,
5776 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005777 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005778 current->pid % map->sub_stripes,
5779 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005780 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005781 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005782
Zhao Leiffe2d202015-01-20 15:11:44 +08005783 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005784 if (need_raid_map &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005785 (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS ||
Miao Xieaf8e2d12014-10-23 14:42:50 +08005786 mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005787 /* push stripe_nr back to the start of the full stripe */
Liu Bo42c61ab2017-04-03 13:45:24 -07005788 stripe_nr = div64_u64(raid56_full_stripe_start,
David Sterbab8b93ad2015-01-16 17:26:13 +01005789 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005790
5791 /* RAID[56] write or recovery. Return all stripes */
5792 num_stripes = map->num_stripes;
5793 max_errors = nr_parity_stripes(map);
5794
David Woodhouse53b381b2013-01-29 18:40:14 -05005795 *length = map->stripe_len;
5796 stripe_index = 0;
5797 stripe_offset = 0;
5798 } else {
5799 /*
5800 * Mirror #0 or #1 means the original data block.
5801 * Mirror #2 is RAID5 parity block.
5802 * Mirror #3 is RAID6 Q block.
5803 */
David Sterba47c57132015-02-20 18:43:47 +01005804 stripe_nr = div_u64_rem(stripe_nr,
5805 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005806 if (mirror_num > 1)
5807 stripe_index = nr_data_stripes(map) +
5808 mirror_num - 2;
5809
5810 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005811 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5812 &stripe_index);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005813 if ((op != BTRFS_MAP_WRITE &&
5814 op != BTRFS_MAP_GET_READ_MIRRORS) &&
5815 mirror_num <= 1)
Miao Xie28e1cc72014-09-12 18:44:02 +08005816 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005817 }
Chris Mason8790d502008-04-03 16:29:03 -04005818 } else {
5819 /*
David Sterba47c57132015-02-20 18:43:47 +01005820 * after this, stripe_nr is the number of stripes on this
5821 * device we have to walk to find the data, and stripe_index is
5822 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005823 */
David Sterba47c57132015-02-20 18:43:47 +01005824 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5825 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005826 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005827 }
Josef Bacike042d1e2016-04-12 12:54:40 -04005828 if (stripe_index >= map->num_stripes) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005829 btrfs_crit(fs_info,
5830 "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u",
Josef Bacike042d1e2016-04-12 12:54:40 -04005831 stripe_index, map->num_stripes);
5832 ret = -EINVAL;
5833 goto out;
5834 }
Chris Mason593060d2008-03-25 16:50:33 -04005835
Stefan Behrens472262f2012-11-06 14:43:46 +01005836 num_alloc_stripes = num_stripes;
Liu Bo6fad8232017-03-14 13:33:59 -07005837 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005838 if (op == BTRFS_MAP_WRITE)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005839 num_alloc_stripes <<= 1;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005840 if (op == BTRFS_MAP_GET_READ_MIRRORS)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005841 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005842 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005843 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005844
Zhao Lei6e9606d2015-01-20 15:11:34 +08005845 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005846 if (!bbio) {
5847 ret = -ENOMEM;
5848 goto out;
5849 }
Liu Bo6fad8232017-03-14 13:33:59 -07005850 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL)
Miao Xie2c8cdd62014-11-14 16:06:25 +08005851 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005852
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005853 /* build raid_map */
Liu Bo2b19a1f2017-03-14 13:34:00 -07005854 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map &&
5855 (need_full_stripe(op) || mirror_num > 1)) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005856 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005857 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005858
5859 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5860 sizeof(struct btrfs_bio_stripe) *
5861 num_alloc_stripes +
5862 sizeof(int) * tgtdev_indexes);
5863
5864 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005865 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005866
5867 /* Fill in the logical address of each stripe */
5868 tmp = stripe_nr * nr_data_stripes(map);
5869 for (i = 0; i < nr_data_stripes(map); i++)
5870 bbio->raid_map[(i+rot) % num_stripes] =
5871 em->start + (tmp + i) * map->stripe_len;
5872
5873 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5874 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5875 bbio->raid_map[(i+rot+1) % num_stripes] =
5876 RAID6_Q_STRIPE;
5877 }
5878
Li Zefanec9ef7a2011-12-01 14:06:42 +08005879
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005880 for (i = 0; i < num_stripes; i++) {
5881 bbio->stripes[i].physical =
5882 map->stripes[stripe_index].physical +
5883 stripe_offset +
5884 stripe_nr * map->stripe_len;
5885 bbio->stripes[i].dev =
5886 map->stripes[stripe_index].dev;
5887 stripe_index++;
Chris Mason593060d2008-03-25 16:50:33 -04005888 }
Li Zefande11cc12011-12-01 12:55:47 +08005889
Liu Bo2b19a1f2017-03-14 13:34:00 -07005890 if (need_full_stripe(op))
Miao Xied20983b2014-07-03 18:22:13 +08005891 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005892
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005893 if (bbio->raid_map)
5894 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005895
Liu Bo73c0f222017-03-14 13:33:58 -07005896 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005897 need_full_stripe(op)) {
Liu Bo73c0f222017-03-14 13:33:58 -07005898 handle_ops_on_dev_replace(op, &bbio, dev_replace, &num_stripes,
5899 &max_errors);
Stefan Behrens472262f2012-11-06 14:43:46 +01005900 }
5901
Li Zefande11cc12011-12-01 12:55:47 +08005902 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005903 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005904 bbio->num_stripes = num_stripes;
5905 bbio->max_errors = max_errors;
5906 bbio->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005907
5908 /*
5909 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5910 * mirror_num == num_stripes + 1 && dev_replace target drive is
5911 * available as a mirror
5912 */
5913 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5914 WARN_ON(num_stripes > 1);
5915 bbio->stripes[0].dev = dev_replace->tgtdev;
5916 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5917 bbio->mirror_num = map->num_stripes + 1;
5918 }
Chris Masoncea9e442008-04-09 16:28:12 -04005919out:
Liu Bo73beece2015-07-17 16:49:19 +08005920 if (dev_replace_is_ongoing) {
5921 btrfs_dev_replace_clear_lock_blocking(dev_replace);
5922 btrfs_dev_replace_unlock(dev_replace, 0);
5923 }
Chris Mason0b86a832008-03-24 15:01:56 -04005924 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005925 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005926}
5927
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005928int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005929 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005930 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005931{
Mike Christieb3d3fa52016-06-05 14:31:53 -05005932 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005933 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005934}
5935
Miao Xieaf8e2d12014-10-23 14:42:50 +08005936/* For Scrub/replace */
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005937int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Miao Xieaf8e2d12014-10-23 14:42:50 +08005938 u64 logical, u64 *length,
David Sterba825ad4c2017-03-28 14:45:22 +02005939 struct btrfs_bio **bbio_ret)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005940{
David Sterba825ad4c2017-03-28 14:45:22 +02005941 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, 0, 1);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005942}
5943
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04005944int btrfs_rmap_block(struct btrfs_fs_info *fs_info,
Yan Zhenga512bbf2008-12-08 16:46:26 -05005945 u64 chunk_start, u64 physical, u64 devid,
5946 u64 **logical, int *naddrs, int *stripe_len)
5947{
Yan Zhenga512bbf2008-12-08 16:46:26 -05005948 struct extent_map *em;
5949 struct map_lookup *map;
5950 u64 *buf;
5951 u64 bytenr;
5952 u64 length;
5953 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005954 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005955 int i, j, nr = 0;
5956
Liu Bo592d92e2017-03-14 13:33:55 -07005957 em = get_chunk_map(fs_info, chunk_start, 1);
5958 if (IS_ERR(em))
Josef Bacik835d9742013-03-19 12:13:25 -04005959 return -EIO;
Josef Bacik835d9742013-03-19 12:13:25 -04005960
Jeff Mahoney95617d62015-06-03 10:55:48 -04005961 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005962 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005963 rmap_len = map->stripe_len;
5964
Yan Zhenga512bbf2008-12-08 16:46:26 -05005965 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01005966 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005967 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01005968 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08005969 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01005970 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005971 rmap_len = map->stripe_len * nr_data_stripes(map);
5972 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005973
David Sterba31e818f2015-02-20 18:00:26 +01005974 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005975 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005976
5977 for (i = 0; i < map->num_stripes; i++) {
5978 if (devid && map->stripes[i].dev->devid != devid)
5979 continue;
5980 if (map->stripes[i].physical > physical ||
5981 map->stripes[i].physical + length <= physical)
5982 continue;
5983
5984 stripe_nr = physical - map->stripes[i].physical;
Liu Bo42c61ab2017-04-03 13:45:24 -07005985 stripe_nr = div64_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005986
5987 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5988 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01005989 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005990 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5991 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005992 } /* else if RAID[56], multiply by nr_data_stripes().
5993 * Alternatively, just use rmap_len below instead of
5994 * map->stripe_len */
5995
5996 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005997 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005998 for (j = 0; j < nr; j++) {
5999 if (buf[j] == bytenr)
6000 break;
6001 }
Chris Mason934d3752008-12-08 16:43:10 -05006002 if (j == nr) {
6003 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05006004 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05006005 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05006006 }
6007
Yan Zhenga512bbf2008-12-08 16:46:26 -05006008 *logical = buf;
6009 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05006010 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05006011
6012 free_extent_map(em);
6013 return 0;
6014}
6015
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006016static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08006017{
Mike Snitzer326e1db2015-05-22 09:14:03 -04006018 bio->bi_private = bbio->private;
6019 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006020 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04006021
Zhao Lei6e9606d2015-01-20 15:11:34 +08006022 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08006023}
6024
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006025static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04006026{
Chris Mason9be33952013-05-17 18:30:14 -04006027 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006028 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04006029
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006030 if (bio->bi_status) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02006031 atomic_inc(&bbio->error);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006032 if (bio->bi_status == BLK_STS_IOERR ||
6033 bio->bi_status == BLK_STS_TARGET) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02006034 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04006035 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08006036 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02006037
6038 BUG_ON(stripe_index >= bbio->num_stripes);
6039 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02006040 if (dev->bdev) {
Mike Christie37226b22016-06-05 14:31:52 -05006041 if (bio_op(bio) == REQ_OP_WRITE)
Stefan Behrens597a60f2012-06-14 16:42:31 +02006042 btrfs_dev_stat_inc(dev,
6043 BTRFS_DEV_STAT_WRITE_ERRS);
6044 else
6045 btrfs_dev_stat_inc(dev,
6046 BTRFS_DEV_STAT_READ_ERRS);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06006047 if (bio->bi_opf & REQ_PREFLUSH)
Stefan Behrens597a60f2012-06-14 16:42:31 +02006048 btrfs_dev_stat_inc(dev,
6049 BTRFS_DEV_STAT_FLUSH_ERRS);
6050 btrfs_dev_stat_print_on_error(dev);
6051 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02006052 }
6053 }
Chris Mason8790d502008-04-03 16:29:03 -04006054
Jan Schmidta1d3c472011-08-04 17:15:33 +02006055 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04006056 is_orig_bio = 1;
6057
Miao Xiec404e0d2014-01-30 16:46:55 +08006058 btrfs_bio_counter_dec(bbio->fs_info);
6059
Jan Schmidta1d3c472011-08-04 17:15:33 +02006060 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04006061 if (!is_orig_bio) {
6062 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006063 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006064 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07006065
Chris Mason9be33952013-05-17 18:30:14 -04006066 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04006067 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05006068 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04006069 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02006070 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006071 bio->bi_status = BLK_STS_IOERR;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05006072 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04006073 /*
6074 * this bio is actually up to date, we didn't
6075 * go over the max number of errors
6076 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006077 bio->bi_status = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04006078 }
Miao Xiec55f1392014-06-19 10:42:54 +08006079
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006080 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04006081 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04006082 bio_put(bio);
6083 }
Chris Mason8790d502008-04-03 16:29:03 -04006084}
6085
Chris Mason8b712842008-06-11 16:50:36 -04006086/*
6087 * see run_scheduled_bios for a description of why bios are collected for
6088 * async submit.
6089 *
6090 * This will add one bio to the pending list for a device and make sure
6091 * the work struct is scheduled.
6092 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006093static noinline void btrfs_schedule_bio(struct btrfs_device *device,
Mike Christie4e49ea42016-06-05 14:31:41 -05006094 struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04006095{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006096 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -04006097 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04006098 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006099
David Woodhouse53b381b2013-01-29 18:40:14 -05006100 if (device->missing || !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006101 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05006102 return;
6103 }
6104
Chris Mason8b712842008-06-11 16:50:36 -04006105 /* don't bother with additional async steps for reads, right now */
Mike Christie37226b22016-06-05 14:31:52 -05006106 if (bio_op(bio) == REQ_OP_READ) {
Chris Mason492bb6de2008-07-31 16:29:02 -04006107 bio_get(bio);
Mike Christie4e49ea42016-06-05 14:31:41 -05006108 btrfsic_submit_bio(bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04006109 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01006110 return;
Chris Mason8b712842008-06-11 16:50:36 -04006111 }
6112
6113 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04006114 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04006115 * higher layers. Otherwise, the async bio makes it appear we have
6116 * made progress against dirty pages when we've really just put it
6117 * on a queue for later
6118 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006119 atomic_inc(&fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04006120 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04006121 bio->bi_next = NULL;
Chris Mason8b712842008-06-11 16:50:36 -04006122
6123 spin_lock(&device->io_lock);
Christoph Hellwig67f055c2016-11-01 07:40:06 -06006124 if (op_is_sync(bio->bi_opf))
Chris Masonffbd5172009-04-20 15:50:09 -04006125 pending_bios = &device->pending_sync_bios;
6126 else
6127 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006128
Chris Masonffbd5172009-04-20 15:50:09 -04006129 if (pending_bios->tail)
6130 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006131
Chris Masonffbd5172009-04-20 15:50:09 -04006132 pending_bios->tail = bio;
6133 if (!pending_bios->head)
6134 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006135 if (device->running_pending)
6136 should_queue = 0;
6137
6138 spin_unlock(&device->io_lock);
6139
6140 if (should_queue)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006141 btrfs_queue_work(fs_info->submit_workers, &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04006142}
6143
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006144static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio,
6145 u64 physical, int dev_nr, int async)
Josef Bacikde1ee922012-10-19 16:50:56 -04006146{
6147 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006148 struct btrfs_fs_info *fs_info = bbio->fs_info;
Josef Bacikde1ee922012-10-19 16:50:56 -04006149
6150 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04006151 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04006152 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006153 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04006154#ifdef DEBUG
6155 {
6156 struct rcu_string *name;
6157
6158 rcu_read_lock();
6159 name = rcu_dereference(dev->name);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006160 btrfs_debug(fs_info,
6161 "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u",
6162 bio_op(bio), bio->bi_opf,
6163 (u64)bio->bi_iter.bi_sector,
6164 (u_long)dev->bdev->bd_dev, name->str, dev->devid,
6165 bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006166 rcu_read_unlock();
6167 }
6168#endif
6169 bio->bi_bdev = dev->bdev;
Miao Xiec404e0d2014-01-30 16:46:55 +08006170
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006171 btrfs_bio_counter_inc_noblocked(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006172
Josef Bacikde1ee922012-10-19 16:50:56 -04006173 if (async)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006174 btrfs_schedule_bio(dev, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006175 else
Mike Christie4e49ea42016-06-05 14:31:41 -05006176 btrfsic_submit_bio(bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006177}
6178
Josef Bacikde1ee922012-10-19 16:50:56 -04006179static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6180{
6181 atomic_inc(&bbio->error);
6182 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Nicholas D Steeves01327612016-05-19 21:18:45 -04006183 /* Should be the original bio. */
Miao Xie8408c712014-06-19 10:42:55 +08006184 WARN_ON(bio != bbio->orig_bio);
6185
Chris Mason9be33952013-05-17 18:30:14 -04006186 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006187 bio->bi_iter.bi_sector = logical >> 9;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006188 bio->bi_status = BLK_STS_IOERR;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006189 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006190 }
6191}
6192
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006193int btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04006194 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006195{
Chris Mason0b86a832008-03-24 15:01:56 -04006196 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006197 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006198 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006199 u64 length = 0;
6200 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006201 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006202 int dev_nr;
6203 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006204 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006205
Kent Overstreet4f024f32013-10-11 15:44:27 -07006206 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006207 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006208
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006209 btrfs_bio_counter_inc_blocked(fs_info);
6210 ret = __btrfs_map_block(fs_info, bio_op(bio), logical,
Mike Christie37226b22016-06-05 14:31:52 -05006211 &map_length, &bbio, mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006212 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006213 btrfs_bio_counter_dec(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006214 return ret;
Miao Xiec404e0d2014-01-30 16:46:55 +08006215 }
Chris Masoncea9e442008-04-09 16:28:12 -04006216
Jan Schmidta1d3c472011-08-04 17:15:33 +02006217 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006218 bbio->orig_bio = first_bio;
6219 bbio->private = first_bio->bi_private;
6220 bbio->end_io = first_bio->bi_end_io;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006221 bbio->fs_info = fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006222 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6223
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006224 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Mike Christie37226b22016-06-05 14:31:52 -05006225 ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006226 /* In this case, map_length has been set to the length of
6227 a single stripe; not the whole write */
Mike Christie37226b22016-06-05 14:31:52 -05006228 if (bio_op(bio) == REQ_OP_WRITE) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006229 ret = raid56_parity_write(fs_info, bio, bbio,
6230 map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006231 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006232 ret = raid56_parity_recover(fs_info, bio, bbio,
6233 map_length, mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006234 }
Miao Xie42452152014-11-25 16:39:28 +08006235
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006236 btrfs_bio_counter_dec(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006237 return ret;
David Woodhouse53b381b2013-01-29 18:40:14 -05006238 }
6239
Chris Masoncea9e442008-04-09 16:28:12 -04006240 if (map_length < length) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006241 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006242 "mapping failed logical %llu bio len %llu len %llu",
6243 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006244 BUG();
6245 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006246
Zhao Lei08da7572015-02-12 15:42:16 +08006247 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006248 dev = bbio->stripes[dev_nr].dev;
Mike Christie37226b22016-06-05 14:31:52 -05006249 if (!dev || !dev->bdev ||
Liu Boa967efb2017-04-10 12:36:26 -07006250 (bio_op(first_bio) == REQ_OP_WRITE && !dev->writeable)) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006251 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006252 continue;
6253 }
6254
David Sterba3aa8e072017-06-02 17:38:30 +02006255 if (dev_nr < total_devs - 1)
David Sterba8b6c1d52017-06-02 17:48:13 +02006256 bio = btrfs_bio_clone(first_bio);
David Sterba3aa8e072017-06-02 17:38:30 +02006257 else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006258 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006259
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006260 submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical,
6261 dev_nr, async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006262 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006263 btrfs_bio_counter_dec(fs_info);
Chris Mason0b86a832008-03-24 15:01:56 -04006264 return 0;
6265}
6266
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006267struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006268 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006269{
Yan Zheng2b820322008-11-17 21:11:30 -05006270 struct btrfs_device *device;
6271 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006272
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006273 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006274 while (cur_devices) {
6275 if (!fsid ||
6276 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
6277 device = __find_device(&cur_devices->devices,
6278 devid, uuid);
6279 if (device)
6280 return device;
6281 }
6282 cur_devices = cur_devices->seed;
6283 }
6284 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006285}
6286
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006287static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006288 u64 devid, u8 *dev_uuid)
6289{
6290 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006291
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006292 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6293 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05006294 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006295
6296 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006297 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006298 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006299
6300 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05006301 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006302
Chris Masondfe25022008-05-13 13:46:40 -04006303 return device;
6304}
6305
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006306/**
6307 * btrfs_alloc_device - allocate struct btrfs_device
6308 * @fs_info: used only for generating a new devid, can be NULL if
6309 * devid is provided (i.e. @devid != NULL).
6310 * @devid: a pointer to devid for this device. If NULL a new devid
6311 * is generated.
6312 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6313 * is generated.
6314 *
6315 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
6316 * on error. Returned struct is not linked onto any lists and can be
6317 * destroyed with kfree() right away.
6318 */
6319struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6320 const u64 *devid,
6321 const u8 *uuid)
6322{
6323 struct btrfs_device *dev;
6324 u64 tmp;
6325
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306326 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006327 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006328
6329 dev = __alloc_device();
6330 if (IS_ERR(dev))
6331 return dev;
6332
6333 if (devid)
6334 tmp = *devid;
6335 else {
6336 int ret;
6337
6338 ret = find_next_devid(fs_info, &tmp);
6339 if (ret) {
6340 kfree(dev);
6341 return ERR_PTR(ret);
6342 }
6343 }
6344 dev->devid = tmp;
6345
6346 if (uuid)
6347 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6348 else
6349 generate_random_uuid(dev->uuid);
6350
Liu Bo9e0af232014-08-15 23:36:53 +08006351 btrfs_init_work(&dev->work, btrfs_submit_helper,
6352 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006353
6354 return dev;
6355}
6356
Liu Boe06cd3d2016-06-03 12:05:15 -07006357/* Return -EIO if any error, otherwise return 0. */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006358static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006359 struct extent_buffer *leaf,
6360 struct btrfs_chunk *chunk, u64 logical)
6361{
6362 u64 length;
6363 u64 stripe_len;
6364 u16 num_stripes;
6365 u16 sub_stripes;
6366 u64 type;
6367
6368 length = btrfs_chunk_length(leaf, chunk);
6369 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6370 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6371 sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
6372 type = btrfs_chunk_type(leaf, chunk);
6373
6374 if (!num_stripes) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006375 btrfs_err(fs_info, "invalid chunk num_stripes: %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006376 num_stripes);
6377 return -EIO;
6378 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006379 if (!IS_ALIGNED(logical, fs_info->sectorsize)) {
6380 btrfs_err(fs_info, "invalid chunk logical %llu", logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006381 return -EIO;
6382 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006383 if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) {
6384 btrfs_err(fs_info, "invalid chunk sectorsize %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006385 btrfs_chunk_sector_size(leaf, chunk));
6386 return -EIO;
6387 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006388 if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) {
6389 btrfs_err(fs_info, "invalid chunk length %llu", length);
Liu Boe06cd3d2016-06-03 12:05:15 -07006390 return -EIO;
6391 }
6392 if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006393 btrfs_err(fs_info, "invalid chunk stripe length: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006394 stripe_len);
6395 return -EIO;
6396 }
6397 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6398 type) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006399 btrfs_err(fs_info, "unrecognized chunk type: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006400 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6401 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6402 btrfs_chunk_type(leaf, chunk));
6403 return -EIO;
6404 }
6405 if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) ||
6406 (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) ||
6407 (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) ||
6408 (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) ||
6409 (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) ||
6410 ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 &&
6411 num_stripes != 1)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006412 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006413 "invalid num_stripes:sub_stripes %u:%u for profile %llu",
6414 num_stripes, sub_stripes,
6415 type & BTRFS_BLOCK_GROUP_PROFILE_MASK);
6416 return -EIO;
6417 }
6418
6419 return 0;
6420}
6421
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006422static int read_one_chunk(struct btrfs_fs_info *fs_info, struct btrfs_key *key,
Chris Mason0b86a832008-03-24 15:01:56 -04006423 struct extent_buffer *leaf,
6424 struct btrfs_chunk *chunk)
6425{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006426 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04006427 struct map_lookup *map;
6428 struct extent_map *em;
6429 u64 logical;
6430 u64 length;
Qu Wenruof04b7722015-12-15 09:14:37 +08006431 u64 stripe_len;
Chris Mason0b86a832008-03-24 15:01:56 -04006432 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006433 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006434 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006435 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006436 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006437
Chris Masone17cade2008-04-15 15:41:47 -04006438 logical = key->offset;
6439 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006440 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6441 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
Liu Boe06cd3d2016-06-03 12:05:15 -07006442
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006443 ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006444 if (ret)
6445 return ret;
Chris Masona061fc82008-05-07 11:43:44 -04006446
Chris Mason890871b2009-09-02 16:24:52 -04006447 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006448 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006449 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006450
6451 /* already mapped? */
6452 if (em && em->start <= logical && em->start + em->len > logical) {
6453 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006454 return 0;
6455 } else if (em) {
6456 free_extent_map(em);
6457 }
Chris Mason0b86a832008-03-24 15:01:56 -04006458
David Sterba172ddd62011-04-21 00:48:27 +02006459 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006460 if (!em)
6461 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006462 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006463 if (!map) {
6464 free_extent_map(em);
6465 return -ENOMEM;
6466 }
6467
Wang Shilong298a8f92014-06-19 10:42:52 +08006468 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006469 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006470 em->start = logical;
6471 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006472 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006473 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006474 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006475
Chris Mason593060d2008-03-25 16:50:33 -04006476 map->num_stripes = num_stripes;
6477 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6478 map->io_align = btrfs_chunk_io_align(leaf, chunk);
6479 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
6480 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6481 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006482 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006483 for (i = 0; i < num_stripes; i++) {
6484 map->stripes[i].physical =
6485 btrfs_stripe_offset_nr(leaf, chunk, i);
6486 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006487 read_extent_buffer(leaf, uuid, (unsigned long)
6488 btrfs_stripe_dev_uuid_nr(chunk, i),
6489 BTRFS_UUID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006490 map->stripes[i].dev = btrfs_find_device(fs_info, devid,
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006491 uuid, NULL);
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006492 if (!map->stripes[i].dev &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006493 !btrfs_test_opt(fs_info, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006494 free_extent_map(em);
Qu Wenruoc5502452017-03-09 09:34:42 +08006495 btrfs_report_missing_device(fs_info, devid, uuid);
Chris Mason593060d2008-03-25 16:50:33 -04006496 return -EIO;
6497 }
Chris Masondfe25022008-05-13 13:46:40 -04006498 if (!map->stripes[i].dev) {
6499 map->stripes[i].dev =
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006500 add_missing_dev(fs_info->fs_devices, devid,
6501 uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006502 if (!map->stripes[i].dev) {
Chris Masondfe25022008-05-13 13:46:40 -04006503 free_extent_map(em);
6504 return -EIO;
6505 }
Qu Wenruoc5502452017-03-09 09:34:42 +08006506 btrfs_report_missing_device(fs_info, devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006507 }
6508 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04006509 }
6510
Chris Mason890871b2009-09-02 16:24:52 -04006511 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006512 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006513 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006514 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006515 free_extent_map(em);
6516
6517 return 0;
6518}
6519
Jeff Mahoney143bede2012-03-01 14:56:26 +01006520static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006521 struct btrfs_dev_item *dev_item,
6522 struct btrfs_device *device)
6523{
6524 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006525
6526 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006527 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6528 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006529 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006530 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006531 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006532 device->type = btrfs_device_type(leaf, dev_item);
6533 device->io_align = btrfs_device_io_align(leaf, dev_item);
6534 device->io_width = btrfs_device_io_width(leaf, dev_item);
6535 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006536 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01006537 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006538
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006539 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006540 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006541}
6542
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006543static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info,
Miao Xie5f375832014-09-03 21:35:46 +08006544 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006545{
6546 struct btrfs_fs_devices *fs_devices;
6547 int ret;
6548
Li Zefanb367e472011-12-07 11:38:24 +08006549 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05006550
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006551 fs_devices = fs_info->fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05006552 while (fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006553 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE))
6554 return fs_devices;
6555
Yan Zheng2b820322008-11-17 21:11:30 -05006556 fs_devices = fs_devices->seed;
6557 }
6558
6559 fs_devices = find_fsid(fsid);
6560 if (!fs_devices) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006561 if (!btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08006562 return ERR_PTR(-ENOENT);
6563
6564 fs_devices = alloc_fs_devices(fsid);
6565 if (IS_ERR(fs_devices))
6566 return fs_devices;
6567
6568 fs_devices->seeding = 1;
6569 fs_devices->opened = 1;
6570 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006571 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006572
6573 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006574 if (IS_ERR(fs_devices))
6575 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006576
Christoph Hellwig97288f22008-12-02 06:36:09 -05006577 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006578 fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006579 if (ret) {
6580 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006581 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006582 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006583 }
Yan Zheng2b820322008-11-17 21:11:30 -05006584
6585 if (!fs_devices->seeding) {
6586 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006587 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006588 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006589 goto out;
6590 }
6591
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006592 fs_devices->seed = fs_info->fs_devices->seed;
6593 fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006594out:
Miao Xie5f375832014-09-03 21:35:46 +08006595 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006596}
6597
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006598static int read_one_dev(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04006599 struct extent_buffer *leaf,
6600 struct btrfs_dev_item *dev_item)
6601{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006602 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006603 struct btrfs_device *device;
6604 u64 devid;
6605 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05006606 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006607 u8 dev_uuid[BTRFS_UUID_SIZE];
6608
Chris Mason0b86a832008-03-24 15:01:56 -04006609 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006610 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006611 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006612 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05006613 BTRFS_UUID_SIZE);
6614
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006615 if (memcmp(fs_uuid, fs_info->fsid, BTRFS_UUID_SIZE)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006616 fs_devices = open_seed_devices(fs_info, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006617 if (IS_ERR(fs_devices))
6618 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006619 }
6620
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006621 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006622 if (!device) {
Qu Wenruoc5502452017-03-09 09:34:42 +08006623 if (!btrfs_test_opt(fs_info, DEGRADED)) {
6624 btrfs_report_missing_device(fs_info, devid, dev_uuid);
Yan Zheng2b820322008-11-17 21:11:30 -05006625 return -EIO;
Qu Wenruoc5502452017-03-09 09:34:42 +08006626 }
Yan Zheng2b820322008-11-17 21:11:30 -05006627
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006628 device = add_missing_dev(fs_devices, devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006629 if (!device)
6630 return -ENOMEM;
Qu Wenruoc5502452017-03-09 09:34:42 +08006631 btrfs_report_missing_device(fs_info, devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006632 } else {
Qu Wenruoc5502452017-03-09 09:34:42 +08006633 if (!device->bdev) {
6634 btrfs_report_missing_device(fs_info, devid, dev_uuid);
6635 if (!btrfs_test_opt(fs_info, DEGRADED))
6636 return -EIO;
6637 }
Miao Xie5f375832014-09-03 21:35:46 +08006638
6639 if(!device->bdev && !device->missing) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006640 /*
6641 * this happens when a device that was properly setup
6642 * in the device info lists suddenly goes bad.
6643 * device->bdev is NULL, and so we have to set
6644 * device->missing to one here
6645 */
Miao Xie5f375832014-09-03 21:35:46 +08006646 device->fs_devices->missing_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05006647 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05006648 }
Miao Xie5f375832014-09-03 21:35:46 +08006649
6650 /* Move the device to its own fs_devices */
6651 if (device->fs_devices != fs_devices) {
6652 ASSERT(device->missing);
6653
6654 list_move(&device->dev_list, &fs_devices->devices);
6655 device->fs_devices->num_devices--;
6656 fs_devices->num_devices++;
6657
6658 device->fs_devices->missing_devices--;
6659 fs_devices->missing_devices++;
6660
6661 device->fs_devices = fs_devices;
6662 }
Yan Zheng2b820322008-11-17 21:11:30 -05006663 }
6664
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006665 if (device->fs_devices != fs_info->fs_devices) {
Yan Zheng2b820322008-11-17 21:11:30 -05006666 BUG_ON(device->writeable);
6667 if (device->generation !=
6668 btrfs_device_generation(leaf, dev_item))
6669 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006670 }
Chris Mason0b86a832008-03-24 15:01:56 -04006671
6672 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04006673 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01006674 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05006675 device->fs_devices->total_rw_bytes += device->total_bytes;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03006676 atomic64_add(device->total_bytes - device->bytes_used,
6677 &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04006678 }
Chris Mason0b86a832008-03-24 15:01:56 -04006679 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006680 return ret;
6681}
6682
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006683int btrfs_read_sys_array(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006684{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006685 struct btrfs_root *root = fs_info->tree_root;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006686 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006687 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006688 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006689 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006690 u8 *array_ptr;
6691 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006692 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006693 u32 num_stripes;
6694 u32 array_size;
6695 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006696 u32 cur_offset;
Liu Boe06cd3d2016-06-03 12:05:15 -07006697 u64 type;
Chris Mason84eed902008-04-25 09:04:37 -04006698 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006699
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006700 ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize);
David Sterbaa83fffb2014-06-15 02:39:54 +02006701 /*
6702 * This will create extent buffer of nodesize, superblock size is
6703 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6704 * overallocate but we can keep it as-is, only the first page is used.
6705 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006706 sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET);
Liu Boc871b0f2016-06-06 12:01:23 -07006707 if (IS_ERR(sb))
6708 return PTR_ERR(sb);
David Sterba4db8c522015-12-03 13:06:46 +01006709 set_extent_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006710 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006711 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006712 * The sb extent buffer is artificial and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01006713 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02006714 * pages up-to-date when the page is larger: extent does not cover the
6715 * whole page and consequently check_page_uptodate does not find all
6716 * the page's extents up-to-date (the hole beyond sb),
6717 * write_extent_buffer then triggers a WARN_ON.
6718 *
6719 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6720 * but sb spans only this function. Add an explicit SetPageUptodate call
6721 * to silence the warning eg. on PowerPC 64.
6722 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006723 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006724 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006725
Chris Masona061fc82008-05-07 11:43:44 -04006726 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006727 array_size = btrfs_super_sys_array_size(super_copy);
6728
David Sterba1ffb22c2014-10-31 19:02:42 +01006729 array_ptr = super_copy->sys_chunk_array;
6730 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6731 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006732
David Sterba1ffb22c2014-10-31 19:02:42 +01006733 while (cur_offset < array_size) {
6734 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006735 len = sizeof(*disk_key);
6736 if (cur_offset + len > array_size)
6737 goto out_short_read;
6738
Chris Mason0b86a832008-03-24 15:01:56 -04006739 btrfs_disk_key_to_cpu(&key, disk_key);
6740
David Sterba1ffb22c2014-10-31 19:02:42 +01006741 array_ptr += len;
6742 sb_array_offset += len;
6743 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006744
Chris Mason0d81ba52008-03-24 15:02:07 -04006745 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006746 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006747 /*
6748 * At least one btrfs_chunk with one stripe must be
6749 * present, exact stripe count check comes afterwards
6750 */
6751 len = btrfs_chunk_item_size(1);
6752 if (cur_offset + len > array_size)
6753 goto out_short_read;
6754
6755 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006756 if (!num_stripes) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006757 btrfs_err(fs_info,
6758 "invalid number of stripes %u in sys_array at offset %u",
David Sterbaf5cdedd2015-11-30 17:27:06 +01006759 num_stripes, cur_offset);
6760 ret = -EIO;
6761 break;
6762 }
6763
Liu Boe06cd3d2016-06-03 12:05:15 -07006764 type = btrfs_chunk_type(sb, chunk);
6765 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006766 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006767 "invalid chunk type %llu in sys_array at offset %u",
6768 type, cur_offset);
6769 ret = -EIO;
6770 break;
6771 }
6772
David Sterbae3540ea2014-11-05 15:24:51 +01006773 len = btrfs_chunk_item_size(num_stripes);
6774 if (cur_offset + len > array_size)
6775 goto out_short_read;
6776
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006777 ret = read_one_chunk(fs_info, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006778 if (ret)
6779 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006780 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006781 btrfs_err(fs_info,
6782 "unexpected item type %u in sys_array at offset %u",
6783 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006784 ret = -EIO;
6785 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006786 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006787 array_ptr += len;
6788 sb_array_offset += len;
6789 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006790 }
Liu Bod8651772016-06-03 17:41:42 -07006791 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006792 free_extent_buffer_stale(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006793 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006794
6795out_short_read:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006796 btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u",
David Sterbae3540ea2014-11-05 15:24:51 +01006797 len, cur_offset);
Liu Bod8651772016-06-03 17:41:42 -07006798 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006799 free_extent_buffer_stale(sb);
David Sterbae3540ea2014-11-05 15:24:51 +01006800 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006801}
6802
Qu Wenruoc5502452017-03-09 09:34:42 +08006803void btrfs_report_missing_device(struct btrfs_fs_info *fs_info, u64 devid,
6804 u8 *uuid)
6805{
6806 btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing", devid, uuid);
6807}
6808
Qu Wenruo21634a12017-03-09 09:34:36 +08006809/*
6810 * Check if all chunks in the fs are OK for read-write degraded mount
6811 *
6812 * Return true if all chunks meet the minimal RW mount requirements.
6813 * Return false if any chunk doesn't meet the minimal RW mount requirements.
6814 */
6815bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info)
6816{
6817 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
6818 struct extent_map *em;
6819 u64 next_start = 0;
6820 bool ret = true;
6821
6822 read_lock(&map_tree->map_tree.lock);
6823 em = lookup_extent_mapping(&map_tree->map_tree, 0, (u64)-1);
6824 read_unlock(&map_tree->map_tree.lock);
6825 /* No chunk at all? Return false anyway */
6826 if (!em) {
6827 ret = false;
6828 goto out;
6829 }
6830 while (em) {
6831 struct map_lookup *map;
6832 int missing = 0;
6833 int max_tolerated;
6834 int i;
6835
6836 map = em->map_lookup;
6837 max_tolerated =
6838 btrfs_get_num_tolerated_disk_barrier_failures(
6839 map->type);
6840 for (i = 0; i < map->num_stripes; i++) {
6841 struct btrfs_device *dev = map->stripes[i].dev;
6842
6843 if (!dev || !dev->bdev || dev->missing ||
6844 dev->last_flush_error)
6845 missing++;
6846 }
6847 if (missing > max_tolerated) {
6848 btrfs_warn(fs_info,
6849 "chunk %llu missing %d devices, max tolerance is %d for writeable mount",
6850 em->start, missing, max_tolerated);
6851 free_extent_map(em);
6852 ret = false;
6853 goto out;
6854 }
6855 next_start = extent_map_end(em);
6856 free_extent_map(em);
6857
6858 read_lock(&map_tree->map_tree.lock);
6859 em = lookup_extent_mapping(&map_tree->map_tree, next_start,
6860 (u64)(-1) - next_start);
6861 read_unlock(&map_tree->map_tree.lock);
6862 }
6863out:
6864 return ret;
6865}
6866
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006867int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006868{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006869 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04006870 struct btrfs_path *path;
6871 struct extent_buffer *leaf;
6872 struct btrfs_key key;
6873 struct btrfs_key found_key;
6874 int ret;
6875 int slot;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006876 u64 total_dev = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006877
Chris Mason0b86a832008-03-24 15:01:56 -04006878 path = btrfs_alloc_path();
6879 if (!path)
6880 return -ENOMEM;
6881
Li Zefanb367e472011-12-07 11:38:24 +08006882 mutex_lock(&uuid_mutex);
David Sterba34441362016-10-04 19:34:27 +02006883 mutex_lock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006884
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006885 /*
6886 * Read all device items, and then all the chunk items. All
6887 * device items are found before any chunk item (their object id
6888 * is smaller than the lowest possible object id for a chunk
6889 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006890 */
6891 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6892 key.offset = 0;
6893 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006894 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006895 if (ret < 0)
6896 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006897 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006898 leaf = path->nodes[0];
6899 slot = path->slots[0];
6900 if (slot >= btrfs_header_nritems(leaf)) {
6901 ret = btrfs_next_leaf(root, path);
6902 if (ret == 0)
6903 continue;
6904 if (ret < 0)
6905 goto error;
6906 break;
6907 }
6908 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006909 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6910 struct btrfs_dev_item *dev_item;
6911 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006912 struct btrfs_dev_item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006913 ret = read_one_dev(fs_info, leaf, dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006914 if (ret)
6915 goto error;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006916 total_dev++;
Chris Mason0b86a832008-03-24 15:01:56 -04006917 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6918 struct btrfs_chunk *chunk;
6919 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006920 ret = read_one_chunk(fs_info, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006921 if (ret)
6922 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006923 }
6924 path->slots[0]++;
6925 }
Liu Bo99e3ecf2016-06-03 12:05:14 -07006926
6927 /*
6928 * After loading chunk tree, we've got all device information,
6929 * do another round of validation checks.
6930 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006931 if (total_dev != fs_info->fs_devices->total_devices) {
6932 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07006933 "super_num_devices %llu mismatch with num_devices %llu found here",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006934 btrfs_super_num_devices(fs_info->super_copy),
Liu Bo99e3ecf2016-06-03 12:05:14 -07006935 total_dev);
6936 ret = -EINVAL;
6937 goto error;
6938 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006939 if (btrfs_super_total_bytes(fs_info->super_copy) <
6940 fs_info->fs_devices->total_rw_bytes) {
6941 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07006942 "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006943 btrfs_super_total_bytes(fs_info->super_copy),
6944 fs_info->fs_devices->total_rw_bytes);
Liu Bo99e3ecf2016-06-03 12:05:14 -07006945 ret = -EINVAL;
6946 goto error;
6947 }
Chris Mason0b86a832008-03-24 15:01:56 -04006948 ret = 0;
6949error:
David Sterba34441362016-10-04 19:34:27 +02006950 mutex_unlock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006951 mutex_unlock(&uuid_mutex);
6952
Yan Zheng2b820322008-11-17 21:11:30 -05006953 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006954 return ret;
6955}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006956
Miao Xiecb517ea2013-05-15 07:48:19 +00006957void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6958{
6959 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6960 struct btrfs_device *device;
6961
Liu Bo29cc83f2014-05-11 23:14:59 +08006962 while (fs_devices) {
6963 mutex_lock(&fs_devices->device_list_mutex);
6964 list_for_each_entry(device, &fs_devices->devices, dev_list)
Jeff Mahoneyfb456252016-06-22 18:54:56 -04006965 device->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08006966 mutex_unlock(&fs_devices->device_list_mutex);
6967
6968 fs_devices = fs_devices->seed;
6969 }
Miao Xiecb517ea2013-05-15 07:48:19 +00006970}
6971
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006972static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6973{
6974 int i;
6975
6976 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6977 btrfs_dev_stat_reset(dev, i);
6978}
6979
6980int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6981{
6982 struct btrfs_key key;
6983 struct btrfs_key found_key;
6984 struct btrfs_root *dev_root = fs_info->dev_root;
6985 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6986 struct extent_buffer *eb;
6987 int slot;
6988 int ret = 0;
6989 struct btrfs_device *device;
6990 struct btrfs_path *path = NULL;
6991 int i;
6992
6993 path = btrfs_alloc_path();
6994 if (!path) {
6995 ret = -ENOMEM;
6996 goto out;
6997 }
6998
6999 mutex_lock(&fs_devices->device_list_mutex);
7000 list_for_each_entry(device, &fs_devices->devices, dev_list) {
7001 int item_size;
7002 struct btrfs_dev_stats_item *ptr;
7003
David Sterba242e2952016-01-25 17:51:31 +01007004 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7005 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007006 key.offset = device->devid;
7007 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
7008 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007009 __btrfs_reset_dev_stats(device);
7010 device->dev_stats_valid = 1;
7011 btrfs_release_path(path);
7012 continue;
7013 }
7014 slot = path->slots[0];
7015 eb = path->nodes[0];
7016 btrfs_item_key_to_cpu(eb, &found_key, slot);
7017 item_size = btrfs_item_size_nr(eb, slot);
7018
7019 ptr = btrfs_item_ptr(eb, slot,
7020 struct btrfs_dev_stats_item);
7021
7022 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7023 if (item_size >= (1 + i) * sizeof(__le64))
7024 btrfs_dev_stat_set(device, i,
7025 btrfs_dev_stats_value(eb, ptr, i));
7026 else
7027 btrfs_dev_stat_reset(device, i);
7028 }
7029
7030 device->dev_stats_valid = 1;
7031 btrfs_dev_stat_print_on_load(device);
7032 btrfs_release_path(path);
7033 }
7034 mutex_unlock(&fs_devices->device_list_mutex);
7035
7036out:
7037 btrfs_free_path(path);
7038 return ret < 0 ? ret : 0;
7039}
7040
7041static int update_dev_stat_item(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007042 struct btrfs_fs_info *fs_info,
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007043 struct btrfs_device *device)
7044{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007045 struct btrfs_root *dev_root = fs_info->dev_root;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007046 struct btrfs_path *path;
7047 struct btrfs_key key;
7048 struct extent_buffer *eb;
7049 struct btrfs_dev_stats_item *ptr;
7050 int ret;
7051 int i;
7052
David Sterba242e2952016-01-25 17:51:31 +01007053 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7054 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007055 key.offset = device->devid;
7056
7057 path = btrfs_alloc_path();
David Sterbafa252992017-02-15 09:35:01 +01007058 if (!path)
7059 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007060 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
7061 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007062 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007063 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04007064 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007065 goto out;
7066 }
7067
7068 if (ret == 0 &&
7069 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
7070 /* need to delete old one and insert a new one */
7071 ret = btrfs_del_item(trans, dev_root, path);
7072 if (ret != 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007073 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007074 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04007075 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007076 goto out;
7077 }
7078 ret = 1;
7079 }
7080
7081 if (ret == 1) {
7082 /* need to insert a new item */
7083 btrfs_release_path(path);
7084 ret = btrfs_insert_empty_item(trans, dev_root, path,
7085 &key, sizeof(*ptr));
7086 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007087 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007088 "insert dev_stats item for device %s failed %d",
7089 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007090 goto out;
7091 }
7092 }
7093
7094 eb = path->nodes[0];
7095 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
7096 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7097 btrfs_set_dev_stats_value(eb, ptr, i,
7098 btrfs_dev_stat_read(device, i));
7099 btrfs_mark_buffer_dirty(eb);
7100
7101out:
7102 btrfs_free_path(path);
7103 return ret;
7104}
7105
7106/*
7107 * called from commit_transaction. Writes all changed device stats to disk.
7108 */
7109int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
7110 struct btrfs_fs_info *fs_info)
7111{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007112 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7113 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08007114 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007115 int ret = 0;
7116
7117 mutex_lock(&fs_devices->device_list_mutex);
7118 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Miao Xieaddc3fa2014-07-24 11:37:11 +08007119 if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device))
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007120 continue;
7121
Miao Xieaddc3fa2014-07-24 11:37:11 +08007122 stats_cnt = atomic_read(&device->dev_stats_ccnt);
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007123 ret = update_dev_stat_item(trans, fs_info, device);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007124 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08007125 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007126 }
7127 mutex_unlock(&fs_devices->device_list_mutex);
7128
7129 return ret;
7130}
7131
Stefan Behrens442a4f62012-05-25 16:06:08 +02007132void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
7133{
7134 btrfs_dev_stat_inc(dev, index);
7135 btrfs_dev_stat_print_on_error(dev);
7136}
7137
Eric Sandeen48a3b632013-04-25 20:41:01 +00007138static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02007139{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007140 if (!dev->dev_stats_valid)
7141 return;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007142 btrfs_err_rl_in_rcu(dev->fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02007143 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007144 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02007145 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7146 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7147 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05007148 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7149 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02007150}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007151
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007152static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
7153{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06007154 int i;
7155
7156 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7157 if (btrfs_dev_stat_read(dev, i) != 0)
7158 break;
7159 if (i == BTRFS_DEV_STAT_VALUES_MAX)
7160 return; /* all values == 0, suppress message */
7161
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007162 btrfs_info_in_rcu(dev->fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007163 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007164 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007165 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7166 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7167 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
7168 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7169 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
7170}
7171
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007172int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06007173 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007174{
7175 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007176 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007177 int i;
7178
7179 mutex_lock(&fs_devices->device_list_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007180 dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007181 mutex_unlock(&fs_devices->device_list_mutex);
7182
7183 if (!dev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007184 btrfs_warn(fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007185 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007186 } else if (!dev->dev_stats_valid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007187 btrfs_warn(fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007188 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06007189 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007190 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7191 if (stats->nr_items > i)
7192 stats->values[i] =
7193 btrfs_dev_stat_read_and_reset(dev, i);
7194 else
7195 btrfs_dev_stat_reset(dev, i);
7196 }
7197 } else {
7198 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7199 if (stats->nr_items > i)
7200 stats->values[i] = btrfs_dev_stat_read(dev, i);
7201 }
7202 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
7203 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
7204 return 0;
7205}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007206
David Sterbada353f62017-02-14 17:55:53 +01007207void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007208{
7209 struct buffer_head *bh;
7210 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08007211 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007212
Anand Jain12b1c262015-08-14 18:32:59 +08007213 if (!bdev)
7214 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007215
Anand Jain12b1c262015-08-14 18:32:59 +08007216 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
7217 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007218
Anand Jain12b1c262015-08-14 18:32:59 +08007219 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
7220 continue;
7221
7222 disk_super = (struct btrfs_super_block *)bh->b_data;
7223
7224 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
7225 set_buffer_dirty(bh);
7226 sync_dirty_buffer(bh);
7227 brelse(bh);
7228 }
7229
7230 /* Notify udev that device has changed */
7231 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
7232
7233 /* Update ctime/mtime for device path for libblkid */
7234 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007235}
Miao Xie935e5cc2014-09-03 21:35:33 +08007236
7237/*
7238 * Update the size of all devices, which is used for writing out the
7239 * super blocks.
7240 */
7241void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
7242{
7243 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7244 struct btrfs_device *curr, *next;
7245
7246 if (list_empty(&fs_devices->resized_devices))
7247 return;
7248
7249 mutex_lock(&fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02007250 mutex_lock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007251 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
7252 resized_list) {
7253 list_del_init(&curr->resized_list);
7254 curr->commit_total_bytes = curr->disk_total_bytes;
7255 }
David Sterba34441362016-10-04 19:34:27 +02007256 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007257 mutex_unlock(&fs_devices->device_list_mutex);
7258}
Miao Xiece7213c2014-09-03 21:35:34 +08007259
7260/* Must be invoked during the transaction commit */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007261void btrfs_update_commit_device_bytes_used(struct btrfs_fs_info *fs_info,
Miao Xiece7213c2014-09-03 21:35:34 +08007262 struct btrfs_transaction *transaction)
7263{
7264 struct extent_map *em;
7265 struct map_lookup *map;
7266 struct btrfs_device *dev;
7267 int i;
7268
7269 if (list_empty(&transaction->pending_chunks))
7270 return;
7271
7272 /* In order to kick the device replace finish process */
David Sterba34441362016-10-04 19:34:27 +02007273 mutex_lock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007274 list_for_each_entry(em, &transaction->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04007275 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08007276
7277 for (i = 0; i < map->num_stripes; i++) {
7278 dev = map->stripes[i].dev;
7279 dev->commit_bytes_used = dev->bytes_used;
7280 }
7281 }
David Sterba34441362016-10-04 19:34:27 +02007282 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007283}
Anand Jain5a13f432015-03-10 06:38:31 +08007284
7285void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
7286{
7287 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7288 while (fs_devices) {
7289 fs_devices->fs_info = fs_info;
7290 fs_devices = fs_devices->seed;
7291 }
7292}
7293
7294void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
7295{
7296 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7297 while (fs_devices) {
7298 fs_devices->fs_info = NULL;
7299 fs_devices = fs_devices->seed;
7300 }
7301}