blob: 9f26c576911fecc72dbe7944a7f0e5c58d50c315 [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
David Sterba2dfeca92017-06-14 02:48:07 +0200155/*
156 * alloc_fs_devices - allocate struct btrfs_fs_devices
157 * @fsid: if not NULL, copy the uuid to fs_devices::fsid
158 *
159 * Return a pointer to a new struct btrfs_fs_devices on success, or ERR_PTR().
160 * The returned struct is not linked onto any lists and can be destroyed with
161 * kfree() right away.
162 */
163static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
Ilya Dryomov2208a372013-08-12 14:33:03 +0300164{
165 struct btrfs_fs_devices *fs_devs;
166
David Sterba78f2c9e2016-02-11 14:25:38 +0100167 fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300168 if (!fs_devs)
169 return ERR_PTR(-ENOMEM);
170
171 mutex_init(&fs_devs->device_list_mutex);
172
173 INIT_LIST_HEAD(&fs_devs->devices);
Miao Xie935e5cc2014-09-03 21:35:33 +0800174 INIT_LIST_HEAD(&fs_devs->resized_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300175 INIT_LIST_HEAD(&fs_devs->alloc_list);
176 INIT_LIST_HEAD(&fs_devs->list);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300177 if (fsid)
178 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300179
180 return fs_devs;
181}
182
Yan Zhenge4404d62008-12-12 10:03:26 -0500183static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
184{
185 struct btrfs_device *device;
186 WARN_ON(fs_devices->opened);
187 while (!list_empty(&fs_devices->devices)) {
188 device = list_entry(fs_devices->devices.next,
189 struct btrfs_device, dev_list);
190 list_del(&device->dev_list);
Josef Bacik606686e2012-06-04 14:03:51 -0400191 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500192 kfree(device);
193 }
194 kfree(fs_devices);
195}
196
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000197static void btrfs_kobject_uevent(struct block_device *bdev,
198 enum kobject_action action)
199{
200 int ret;
201
202 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
203 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -0500204 pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n",
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000205 action,
206 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
207 &disk_to_dev(bdev->bd_disk)->kobj);
208}
209
Jeff Mahoney143bede2012-03-01 14:56:26 +0100210void btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400211{
212 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400213
Yan Zheng2b820322008-11-17 21:11:30 -0500214 while (!list_empty(&fs_uuids)) {
215 fs_devices = list_entry(fs_uuids.next,
216 struct btrfs_fs_devices, list);
217 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500218 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400219 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400220}
221
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300222static struct btrfs_device *__alloc_device(void)
223{
224 struct btrfs_device *dev;
225
David Sterba78f2c9e2016-02-11 14:25:38 +0100226 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300227 if (!dev)
228 return ERR_PTR(-ENOMEM);
229
David Sterbae0ae9992017-06-06 17:06:06 +0200230 /*
231 * Preallocate a bio that's always going to be used for flushing device
232 * barriers and matches the device lifespan
233 */
234 dev->flush_bio = bio_alloc_bioset(GFP_KERNEL, 0, NULL);
235 if (!dev->flush_bio) {
236 kfree(dev);
237 return ERR_PTR(-ENOMEM);
238 }
239 bio_get(dev->flush_bio);
240
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300241 INIT_LIST_HEAD(&dev->dev_list);
242 INIT_LIST_HEAD(&dev->dev_alloc_list);
Miao Xie935e5cc2014-09-03 21:35:33 +0800243 INIT_LIST_HEAD(&dev->resized_list);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300244
245 spin_lock_init(&dev->io_lock);
246
247 spin_lock_init(&dev->reada_lock);
248 atomic_set(&dev->reada_in_flight, 0);
Miao Xieaddc3fa2014-07-24 11:37:11 +0800249 atomic_set(&dev->dev_stats_ccnt, 0);
Sebastian Andrzej Siewior546bed62016-01-15 14:37:15 +0100250 btrfs_device_data_ordered_init(dev);
Chris Mason9bcaaea2017-05-04 16:08:08 -0700251 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Mel Gormand0164ad2015-11-06 16:28:21 -0800252 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300253
254 return dev;
255}
256
David Sterba35c70102017-06-15 19:51:51 +0200257/*
258 * Find a device specified by @devid or @uuid in the list of @fs_devices, or
259 * return NULL.
260 *
261 * If devid and uuid are both specified, the match must be exact, otherwise
262 * only devid is used.
263 */
264static struct btrfs_device *find_device(struct btrfs_fs_devices *fs_devices,
265 u64 devid, const u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400266{
David Sterba35c70102017-06-15 19:51:51 +0200267 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400268 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400269
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500270 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400271 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400272 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400273 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400274 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400275 }
276 return NULL;
277}
278
Chris Masona1b32a52008-09-05 16:09:51 -0400279static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400280{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400281 struct btrfs_fs_devices *fs_devices;
282
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500283 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400284 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
285 return fs_devices;
286 }
287 return NULL;
288}
289
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100290static int
291btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
292 int flush, struct block_device **bdev,
293 struct buffer_head **bh)
294{
295 int ret;
296
297 *bdev = blkdev_get_by_path(device_path, flags, holder);
298
299 if (IS_ERR(*bdev)) {
300 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100301 goto error;
302 }
303
304 if (flush)
305 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
David Sterba9f6d2512017-06-16 01:48:05 +0200306 ret = set_blocksize(*bdev, BTRFS_BDEV_BLOCKSIZE);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100307 if (ret) {
308 blkdev_put(*bdev, flags);
309 goto error;
310 }
311 invalidate_bdev(*bdev);
312 *bh = btrfs_read_dev_super(*bdev);
Anand Jain92fc03f2015-08-14 18:32:51 +0800313 if (IS_ERR(*bh)) {
314 ret = PTR_ERR(*bh);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100315 blkdev_put(*bdev, flags);
316 goto error;
317 }
318
319 return 0;
320
321error:
322 *bdev = NULL;
323 *bh = NULL;
324 return ret;
325}
326
Chris Masonffbd5172009-04-20 15:50:09 -0400327static void requeue_list(struct btrfs_pending_bios *pending_bios,
328 struct bio *head, struct bio *tail)
329{
330
331 struct bio *old_head;
332
333 old_head = pending_bios->head;
334 pending_bios->head = head;
335 if (pending_bios->tail)
336 tail->bi_next = old_head;
337 else
338 pending_bios->tail = tail;
339}
340
Chris Mason8b712842008-06-11 16:50:36 -0400341/*
342 * we try to collect pending bios for a device so we don't get a large
343 * number of procs sending bios down to the same device. This greatly
344 * improves the schedulers ability to collect and merge the bios.
345 *
346 * But, it also turns into a long list of bios to process and that is sure
347 * to eventually make the worker thread block. The solution here is to
348 * make some progress and then put this work struct back at the end of
349 * the list if the block device is congested. This way, multiple devices
350 * can make progress from a single worker thread.
351 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100352static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400353{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400354 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -0400355 struct bio *pending;
356 struct backing_dev_info *bdi;
Chris Masonffbd5172009-04-20 15:50:09 -0400357 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400358 struct bio *tail;
359 struct bio *cur;
360 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400361 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400362 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400363 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400364 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400365 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000366 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400367 struct blk_plug plug;
368
369 /*
370 * this function runs all the bios we've collected for
371 * a particular device. We don't want to wander off to
372 * another device without first sending all of these down.
373 * So, setup a plug here and finish it off before we return
374 */
375 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400376
Jan Karaefa7c9f2017-02-02 15:56:53 +0100377 bdi = device->bdev->bd_bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400378 limit = btrfs_async_submit_limit(fs_info);
379 limit = limit * 2 / 3;
380
Chris Mason8b712842008-06-11 16:50:36 -0400381loop:
382 spin_lock(&device->io_lock);
383
Chris Masona6837052009-02-04 09:19:41 -0500384loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400385 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400386
Chris Mason8b712842008-06-11 16:50:36 -0400387 /* take all the bios off the list at once and process them
388 * later on (without the lock held). But, remember the
389 * tail and other pointers so the bios can be properly reinserted
390 * into the list if we hit congestion
391 */
Chris Masond84275c2009-06-09 15:39:08 -0400392 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400393 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400394 force_reg = 1;
395 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400396 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400397 force_reg = 0;
398 }
Chris Masonffbd5172009-04-20 15:50:09 -0400399
400 pending = pending_bios->head;
401 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400402 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400403
404 /*
405 * if pending was null this time around, no bios need processing
406 * at all and we can stop. Otherwise it'll loop back up again
407 * and do an additional check so no bios are missed.
408 *
409 * device->running_pending is used to synchronize with the
410 * schedule_bio code.
411 */
Chris Masonffbd5172009-04-20 15:50:09 -0400412 if (device->pending_sync_bios.head == NULL &&
413 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400414 again = 0;
415 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400416 } else {
417 again = 1;
418 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400419 }
Chris Masonffbd5172009-04-20 15:50:09 -0400420
421 pending_bios->head = NULL;
422 pending_bios->tail = NULL;
423
Chris Mason8b712842008-06-11 16:50:36 -0400424 spin_unlock(&device->io_lock);
425
Chris Masond3977122009-01-05 21:25:51 -0500426 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400427
428 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400429 /* we want to work on both lists, but do more bios on the
430 * sync list than the regular list
431 */
432 if ((num_run > 32 &&
433 pending_bios != &device->pending_sync_bios &&
434 device->pending_sync_bios.head) ||
435 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
436 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400437 spin_lock(&device->io_lock);
438 requeue_list(pending_bios, pending, tail);
439 goto loop_lock;
440 }
441
Chris Mason8b712842008-06-11 16:50:36 -0400442 cur = pending;
443 pending = pending->bi_next;
444 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400445
David Sterbaee863952015-02-16 19:41:40 +0100446 /*
447 * atomic_dec_return implies a barrier for waitqueue_active
448 */
Josef Bacik66657b32012-08-01 15:36:24 -0400449 if (atomic_dec_return(&fs_info->nr_async_bios) < limit &&
Chris Masonb64a2852008-08-20 13:39:41 -0400450 waitqueue_active(&fs_info->async_submit_wait))
451 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400452
Jens Axboedac56212015-04-17 16:23:59 -0600453 BUG_ON(atomic_read(&cur->__bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400454
Chris Mason2ab1ba62011-08-04 14:28:36 -0400455 /*
456 * if we're doing the sync list, record that our
457 * plug has some sync requests on it
458 *
459 * If we're doing the regular list and there are
460 * sync requests sitting around, unplug before
461 * we add more
462 */
463 if (pending_bios == &device->pending_sync_bios) {
464 sync_pending = 1;
465 } else if (sync_pending) {
466 blk_finish_plug(&plug);
467 blk_start_plug(&plug);
468 sync_pending = 0;
469 }
470
Mike Christie4e49ea42016-06-05 14:31:41 -0500471 btrfsic_submit_bio(cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400472 num_run++;
473 batch_run++;
David Sterba853d8ec2015-01-08 15:15:19 +0100474
475 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400476
477 /*
478 * we made progress, there is more work to do and the bdi
479 * is now congested. Back off and let other work structs
480 * run instead
481 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400482 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500483 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400484 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400485
Chris Masonb765ead2009-04-03 10:27:10 -0400486 ioc = current->io_context;
487
488 /*
489 * the main goal here is that we don't want to
490 * block if we're going to be able to submit
491 * more requests without blocking.
492 *
493 * This code does two great things, it pokes into
494 * the elevator code from a filesystem _and_
495 * it makes assumptions about how batching works.
496 */
497 if (ioc && ioc->nr_batch_requests > 0 &&
498 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
499 (last_waited == 0 ||
500 ioc->last_waited == last_waited)) {
501 /*
502 * we want to go through our batch of
503 * requests and stop. So, we copy out
504 * the ioc->last_waited time and test
505 * against it before looping
506 */
507 last_waited = ioc->last_waited;
David Sterba853d8ec2015-01-08 15:15:19 +0100508 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400509 continue;
510 }
Chris Mason8b712842008-06-11 16:50:36 -0400511 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400512 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500513 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400514
515 spin_unlock(&device->io_lock);
Qu Wenruoa8c93d4e2014-02-28 10:46:08 +0800516 btrfs_queue_work(fs_info->submit_workers,
517 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -0400518 goto done;
519 }
520 }
Chris Masonffbd5172009-04-20 15:50:09 -0400521
Chris Mason51684082010-03-10 15:33:32 -0500522 cond_resched();
523 if (again)
524 goto loop;
525
526 spin_lock(&device->io_lock);
527 if (device->pending_bios.head || device->pending_sync_bios.head)
528 goto loop_lock;
529 spin_unlock(&device->io_lock);
530
Chris Mason8b712842008-06-11 16:50:36 -0400531done:
Chris Mason211588a2011-04-19 20:12:40 -0400532 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400533}
534
Christoph Hellwigb2950862008-12-02 09:54:17 -0500535static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400536{
537 struct btrfs_device *device;
538
539 device = container_of(work, struct btrfs_device, work);
540 run_scheduled_bios(device);
541}
542
Anand Jain4fde46f2015-06-17 21:10:48 +0800543
Omar Sandovalc9162bd2017-08-22 23:46:04 -0700544static void btrfs_free_stale_device(struct btrfs_device *cur_dev)
Anand Jain4fde46f2015-06-17 21:10:48 +0800545{
546 struct btrfs_fs_devices *fs_devs;
547 struct btrfs_device *dev;
548
549 if (!cur_dev->name)
550 return;
551
552 list_for_each_entry(fs_devs, &fs_uuids, list) {
553 int del = 1;
554
555 if (fs_devs->opened)
556 continue;
557 if (fs_devs->seeding)
558 continue;
559
560 list_for_each_entry(dev, &fs_devs->devices, dev_list) {
561
562 if (dev == cur_dev)
563 continue;
564 if (!dev->name)
565 continue;
566
567 /*
568 * Todo: This won't be enough. What if the same device
569 * comes back (with new uuid and) with its mapper path?
570 * But for now, this does help as mostly an admin will
571 * either use mapper or non mapper path throughout.
572 */
573 rcu_read_lock();
574 del = strcmp(rcu_str_deref(dev->name),
575 rcu_str_deref(cur_dev->name));
576 rcu_read_unlock();
577 if (!del)
578 break;
579 }
580
581 if (!del) {
582 /* delete the stale device */
583 if (fs_devs->num_devices == 1) {
584 btrfs_sysfs_remove_fsid(fs_devs);
585 list_del(&fs_devs->list);
586 free_fs_devices(fs_devs);
587 } else {
588 fs_devs->num_devices--;
589 list_del(&dev->dev_list);
590 rcu_string_free(dev->name);
591 kfree(dev);
592 }
593 break;
594 }
595 }
596}
597
David Sterba60999ca2014-03-26 18:26:36 +0100598/*
599 * Add new device to list of registered devices
600 *
601 * Returns:
602 * 1 - first time device is seen
603 * 0 - device already known
604 * < 0 - error
605 */
Chris Masona1b32a52008-09-05 16:09:51 -0400606static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400607 struct btrfs_super_block *disk_super,
608 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
609{
610 struct btrfs_device *device;
611 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400612 struct rcu_string *name;
David Sterba60999ca2014-03-26 18:26:36 +0100613 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400614 u64 found_transid = btrfs_super_generation(disk_super);
615
616 fs_devices = find_fsid(disk_super->fsid);
617 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300618 fs_devices = alloc_fs_devices(disk_super->fsid);
619 if (IS_ERR(fs_devices))
620 return PTR_ERR(fs_devices);
621
Chris Mason8a4b83c2008-03-24 15:02:07 -0400622 list_add(&fs_devices->list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300623
Chris Mason8a4b83c2008-03-24 15:02:07 -0400624 device = NULL;
625 } else {
David Sterba35c70102017-06-15 19:51:51 +0200626 device = find_device(fs_devices, devid,
627 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400628 }
Miao Xie443f24f2014-07-24 11:37:15 +0800629
Chris Mason8a4b83c2008-03-24 15:02:07 -0400630 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500631 if (fs_devices->opened)
632 return -EBUSY;
633
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300634 device = btrfs_alloc_device(NULL, &devid,
635 disk_super->dev_item.uuid);
636 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400637 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300638 return PTR_ERR(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400639 }
Josef Bacik606686e2012-06-04 14:03:51 -0400640
641 name = rcu_string_strdup(path, GFP_NOFS);
642 if (!name) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400643 kfree(device);
644 return -ENOMEM;
645 }
Josef Bacik606686e2012-06-04 14:03:51 -0400646 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200647
Chris Masone5e9a522009-06-10 15:17:02 -0400648 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000649 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100650 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400651 mutex_unlock(&fs_devices->device_list_mutex);
652
David Sterba60999ca2014-03-26 18:26:36 +0100653 ret = 1;
Yan Zheng2b820322008-11-17 21:11:30 -0500654 device->fs_devices = fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400655 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800656 /*
657 * When FS is already mounted.
658 * 1. If you are here and if the device->name is NULL that
659 * means this device was missing at time of FS mount.
660 * 2. If you are here and if the device->name is different
661 * from 'path' that means either
662 * a. The same device disappeared and reappeared with
663 * different name. or
664 * b. The missing-disk-which-was-replaced, has
665 * reappeared now.
666 *
667 * We must allow 1 and 2a above. But 2b would be a spurious
668 * and unintentional.
669 *
670 * Further in case of 1 and 2a above, the disk at 'path'
671 * would have missed some transaction when it was away and
672 * in case of 2a the stale bdev has to be updated as well.
673 * 2b must not be allowed at all time.
674 */
675
676 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700677 * For now, we do allow update to btrfs_fs_device through the
678 * btrfs dev scan cli after FS has been mounted. We're still
679 * tracking a problem where systems fail mount by subvolume id
680 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800681 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700682 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800683 /*
684 * That is if the FS is _not_ mounted and if you
685 * are here, that means there is more than one
686 * disk with same uuid and devid.We keep the one
687 * with larger generation number or the last-in if
688 * generation are equal.
689 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700690 return -EEXIST;
Anand Jain77bdae42014-07-03 18:22:06 +0800691 }
Anand Jainb96de002014-07-03 18:22:05 +0800692
Josef Bacik606686e2012-06-04 14:03:51 -0400693 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000694 if (!name)
695 return -ENOMEM;
Josef Bacik606686e2012-06-04 14:03:51 -0400696 rcu_string_free(device->name);
697 rcu_assign_pointer(device->name, name);
Chris Masoncd02dca2010-12-13 14:56:23 -0500698 if (device->missing) {
699 fs_devices->missing_devices--;
700 device->missing = 0;
701 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400702 }
703
Anand Jain77bdae42014-07-03 18:22:06 +0800704 /*
705 * Unmount does not free the btrfs_device struct but would zero
706 * generation along with most of the other members. So just update
707 * it back. We need it to pick the disk with largest generation
708 * (as above).
709 */
710 if (!fs_devices->opened)
711 device->generation = found_transid;
712
Anand Jain4fde46f2015-06-17 21:10:48 +0800713 /*
714 * if there is new btrfs on an already registered device,
715 * then remove the stale device entry.
716 */
Anand Jain02feae32016-02-13 10:01:40 +0800717 if (ret > 0)
718 btrfs_free_stale_device(device);
Anand Jain4fde46f2015-06-17 21:10:48 +0800719
Chris Mason8a4b83c2008-03-24 15:02:07 -0400720 *fs_devices_ret = fs_devices;
David Sterba60999ca2014-03-26 18:26:36 +0100721
722 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400723}
724
Yan Zhenge4404d62008-12-12 10:03:26 -0500725static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
726{
727 struct btrfs_fs_devices *fs_devices;
728 struct btrfs_device *device;
729 struct btrfs_device *orig_dev;
730
Ilya Dryomov2208a372013-08-12 14:33:03 +0300731 fs_devices = alloc_fs_devices(orig->fsid);
732 if (IS_ERR(fs_devices))
733 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500734
Miao Xieadbbb862014-09-03 21:35:42 +0800735 mutex_lock(&orig->device_list_mutex);
Josef Bacik02db0842012-06-21 16:03:58 -0400736 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500737
Xiao Guangrong46224702011-04-20 10:08:47 +0000738 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500739 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400740 struct rcu_string *name;
741
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300742 device = btrfs_alloc_device(NULL, &orig_dev->devid,
743 orig_dev->uuid);
744 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500745 goto error;
746
Josef Bacik606686e2012-06-04 14:03:51 -0400747 /*
748 * This is ok to do without rcu read locked because we hold the
749 * uuid mutex so nothing we touch in here is going to disappear.
750 */
Anand Jaine755f782014-06-30 17:12:47 +0800751 if (orig_dev->name) {
David Sterba78f2c9e2016-02-11 14:25:38 +0100752 name = rcu_string_strdup(orig_dev->name->str,
753 GFP_KERNEL);
Anand Jaine755f782014-06-30 17:12:47 +0800754 if (!name) {
755 kfree(device);
756 goto error;
757 }
758 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400759 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500760
Yan Zhenge4404d62008-12-12 10:03:26 -0500761 list_add(&device->dev_list, &fs_devices->devices);
762 device->fs_devices = fs_devices;
763 fs_devices->num_devices++;
764 }
Miao Xieadbbb862014-09-03 21:35:42 +0800765 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500766 return fs_devices;
767error:
Miao Xieadbbb862014-09-03 21:35:42 +0800768 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500769 free_fs_devices(fs_devices);
770 return ERR_PTR(-ENOMEM);
771}
772
Eric Sandeen9eaed212014-08-01 18:12:35 -0500773void btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400774{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500775 struct btrfs_device *device, *next;
Miao Xie443f24f2014-07-24 11:37:15 +0800776 struct btrfs_device *latest_dev = NULL;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500777
Chris Masondfe25022008-05-13 13:46:40 -0400778 mutex_lock(&uuid_mutex);
779again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000780 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500781 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500782 if (device->in_fs_metadata) {
Stefan Behrens63a212a2012-11-05 18:29:28 +0100783 if (!device->is_tgtdev_for_dev_replace &&
Miao Xie443f24f2014-07-24 11:37:15 +0800784 (!latest_dev ||
785 device->generation > latest_dev->generation)) {
786 latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500787 }
Yan Zheng2b820322008-11-17 21:11:30 -0500788 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500789 }
Yan Zheng2b820322008-11-17 21:11:30 -0500790
Stefan Behrens8dabb742012-11-06 13:15:27 +0100791 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
792 /*
793 * In the first step, keep the device which has
794 * the correct fsid and the devid that is used
795 * for the dev_replace procedure.
796 * In the second step, the dev_replace state is
797 * read from the device tree and it is known
798 * whether the procedure is really active or
799 * not, which means whether this device is
800 * used or whether it should be removed.
801 */
802 if (step == 0 || device->is_tgtdev_for_dev_replace) {
803 continue;
804 }
805 }
Yan Zheng2b820322008-11-17 21:11:30 -0500806 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100807 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500808 device->bdev = NULL;
809 fs_devices->open_devices--;
810 }
811 if (device->writeable) {
812 list_del_init(&device->dev_alloc_list);
813 device->writeable = 0;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100814 if (!device->is_tgtdev_for_dev_replace)
815 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500816 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500817 list_del_init(&device->dev_list);
818 fs_devices->num_devices--;
Josef Bacik606686e2012-06-04 14:03:51 -0400819 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500820 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400821 }
Yan Zheng2b820322008-11-17 21:11:30 -0500822
823 if (fs_devices->seed) {
824 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500825 goto again;
826 }
827
Miao Xie443f24f2014-07-24 11:37:15 +0800828 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500829
Chris Masondfe25022008-05-13 13:46:40 -0400830 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400831}
Chris Masona0af4692008-05-13 16:03:06 -0400832
Xiao Guangrong1f781602011-04-20 10:09:16 +0000833static void __free_device(struct work_struct *work)
834{
835 struct btrfs_device *device;
836
837 device = container_of(work, struct btrfs_device, rcu_work);
Josef Bacik606686e2012-06-04 14:03:51 -0400838 rcu_string_free(device->name);
David Sterbae0ae9992017-06-06 17:06:06 +0200839 bio_put(device->flush_bio);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000840 kfree(device);
841}
842
843static void free_device(struct rcu_head *head)
844{
845 struct btrfs_device *device;
846
847 device = container_of(head, struct btrfs_device, rcu);
848
849 INIT_WORK(&device->rcu_work, __free_device);
850 schedule_work(&device->rcu_work);
851}
852
Anand Jain14238812016-07-22 06:04:53 +0800853static void btrfs_close_bdev(struct btrfs_device *device)
854{
855 if (device->bdev && device->writeable) {
856 sync_blockdev(device->bdev);
857 invalidate_bdev(device->bdev);
858 }
859
860 if (device->bdev)
861 blkdev_put(device->bdev, device->mode);
862}
863
Anand Jain0ccd0522016-09-22 12:56:13 +0800864static void btrfs_prepare_close_one_device(struct btrfs_device *device)
Anand Jainf448341a2016-06-14 18:55:25 +0800865{
866 struct btrfs_fs_devices *fs_devices = device->fs_devices;
867 struct btrfs_device *new_device;
868 struct rcu_string *name;
869
870 if (device->bdev)
871 fs_devices->open_devices--;
872
873 if (device->writeable &&
874 device->devid != BTRFS_DEV_REPLACE_DEVID) {
875 list_del_init(&device->dev_alloc_list);
876 fs_devices->rw_devices--;
877 }
878
879 if (device->missing)
880 fs_devices->missing_devices--;
881
882 new_device = btrfs_alloc_device(NULL, &device->devid,
883 device->uuid);
884 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
885
886 /* Safe because we are under uuid_mutex */
887 if (device->name) {
888 name = rcu_string_strdup(device->name->str, GFP_NOFS);
889 BUG_ON(!name); /* -ENOMEM */
890 rcu_assign_pointer(new_device->name, name);
891 }
892
893 list_replace_rcu(&device->dev_list, &new_device->dev_list);
894 new_device->fs_devices = device->fs_devices;
Anand Jainf448341a2016-06-14 18:55:25 +0800895}
896
Yan Zheng2b820322008-11-17 21:11:30 -0500897static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400898{
Sasha Levin2037a092015-05-12 19:31:37 -0400899 struct btrfs_device *device, *tmp;
Anand Jain0ccd0522016-09-22 12:56:13 +0800900 struct list_head pending_put;
901
902 INIT_LIST_HEAD(&pending_put);
Yan Zhenge4404d62008-12-12 10:03:26 -0500903
Yan Zheng2b820322008-11-17 21:11:30 -0500904 if (--fs_devices->opened > 0)
905 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400906
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000907 mutex_lock(&fs_devices->device_list_mutex);
Sasha Levin2037a092015-05-12 19:31:37 -0400908 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
Anand Jain0ccd0522016-09-22 12:56:13 +0800909 btrfs_prepare_close_one_device(device);
910 list_add(&device->dev_list, &pending_put);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400911 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000912 mutex_unlock(&fs_devices->device_list_mutex);
913
Anand Jain0ccd0522016-09-22 12:56:13 +0800914 /*
915 * btrfs_show_devname() is using the device_list_mutex,
916 * sometimes call to blkdev_put() leads vfs calling
917 * into this func. So do put outside of device_list_mutex,
918 * as of now.
919 */
920 while (!list_empty(&pending_put)) {
921 device = list_first_entry(&pending_put,
922 struct btrfs_device, dev_list);
923 list_del(&device->dev_list);
924 btrfs_close_bdev(device);
925 call_rcu(&device->rcu, free_device);
926 }
927
Yan Zhenge4404d62008-12-12 10:03:26 -0500928 WARN_ON(fs_devices->open_devices);
929 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500930 fs_devices->opened = 0;
931 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500932
Chris Mason8a4b83c2008-03-24 15:02:07 -0400933 return 0;
934}
935
Yan Zheng2b820322008-11-17 21:11:30 -0500936int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
937{
Yan Zhenge4404d62008-12-12 10:03:26 -0500938 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500939 int ret;
940
941 mutex_lock(&uuid_mutex);
942 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500943 if (!fs_devices->opened) {
944 seed_devices = fs_devices->seed;
945 fs_devices->seed = NULL;
946 }
Yan Zheng2b820322008-11-17 21:11:30 -0500947 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500948
949 while (seed_devices) {
950 fs_devices = seed_devices;
951 seed_devices = fs_devices->seed;
952 __btrfs_close_devices(fs_devices);
953 free_fs_devices(fs_devices);
954 }
Eric Sandeenbc178622013-03-09 15:18:39 +0000955 /*
956 * Wait for rcu kworkers under __btrfs_close_devices
957 * to finish all blkdev_puts so device is really
958 * free when umount is done.
959 */
960 rcu_barrier();
Yan Zheng2b820322008-11-17 21:11:30 -0500961 return ret;
962}
963
Yan Zhenge4404d62008-12-12 10:03:26 -0500964static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
965 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400966{
Josef Bacikd5e20032011-08-04 14:52:27 +0000967 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400968 struct block_device *bdev;
969 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400970 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +0800971 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -0400972 struct buffer_head *bh;
973 struct btrfs_super_block *disk_super;
Chris Masona0af4692008-05-13 16:03:06 -0400974 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500975 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400976 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400977
Tejun Heod4d77622010-11-13 11:55:18 +0100978 flags |= FMODE_EXCL;
979
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500980 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400981 if (device->bdev)
982 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400983 if (!device->name)
984 continue;
985
Eric Sandeenf63e0cc2013-04-04 20:45:08 +0000986 /* Just open everything we can; ignore failures here */
987 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
988 &bdev, &bh))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100989 continue;
Chris Masona0af4692008-05-13 16:03:06 -0400990
991 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000992 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400993 if (devid != device->devid)
994 goto error_brelse;
995
Yan Zheng2b820322008-11-17 21:11:30 -0500996 if (memcmp(device->uuid, disk_super->dev_item.uuid,
997 BTRFS_UUID_SIZE))
998 goto error_brelse;
999
1000 device->generation = btrfs_super_generation(disk_super);
Miao Xie443f24f2014-07-24 11:37:15 +08001001 if (!latest_dev ||
1002 device->generation > latest_dev->generation)
1003 latest_dev = device;
Chris Masona0af4692008-05-13 16:03:06 -04001004
Yan Zheng2b820322008-11-17 21:11:30 -05001005 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
1006 device->writeable = 0;
1007 } else {
1008 device->writeable = !bdev_read_only(bdev);
1009 seeding = 0;
1010 }
1011
Josef Bacikd5e20032011-08-04 14:52:27 +00001012 q = bdev_get_queue(bdev);
Miao Xie90180da2014-09-03 21:35:30 +08001013 if (blk_queue_discard(q))
Josef Bacikd5e20032011-08-04 14:52:27 +00001014 device->can_discard = 1;
Anand Jaine884f4f2017-04-04 18:40:19 +08001015 if (!blk_queue_nonrot(q))
1016 fs_devices->rotating = 1;
Josef Bacikd5e20032011-08-04 14:52:27 +00001017
Chris Mason8a4b83c2008-03-24 15:02:07 -04001018 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001019 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -05001020 device->mode = flags;
1021
Chris Masona0af4692008-05-13 16:03:06 -04001022 fs_devices->open_devices++;
Ilya Dryomov55e50e42013-09-01 18:56:44 +03001023 if (device->writeable &&
1024 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Yan Zheng2b820322008-11-17 21:11:30 -05001025 fs_devices->rw_devices++;
1026 list_add(&device->dev_alloc_list,
1027 &fs_devices->alloc_list);
1028 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +00001029 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -04001030 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001031
Chris Masona0af4692008-05-13 16:03:06 -04001032error_brelse:
1033 brelse(bh);
Tejun Heod4d77622010-11-13 11:55:18 +01001034 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -04001035 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001036 }
Chris Masona0af4692008-05-13 16:03:06 -04001037 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +03001038 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -04001039 goto out;
1040 }
Yan Zheng2b820322008-11-17 21:11:30 -05001041 fs_devices->seeding = seeding;
1042 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +08001043 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -05001044 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -04001045out:
Yan Zheng2b820322008-11-17 21:11:30 -05001046 return ret;
1047}
1048
1049int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -05001050 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -05001051{
1052 int ret;
1053
1054 mutex_lock(&uuid_mutex);
1055 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001056 fs_devices->opened++;
1057 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001058 } else {
Chris Mason15916de2008-11-19 21:17:22 -05001059 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -05001060 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001061 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001062 return ret;
1063}
1064
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001065static void btrfs_release_disk_super(struct page *page)
Anand Jain6cf86a002016-02-13 10:01:29 +08001066{
1067 kunmap(page);
1068 put_page(page);
1069}
1070
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001071static int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr,
1072 struct page **page,
1073 struct btrfs_super_block **disk_super)
Anand Jain6cf86a002016-02-13 10:01:29 +08001074{
1075 void *p;
1076 pgoff_t index;
1077
1078 /* make sure our super fits in the device */
1079 if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode))
1080 return 1;
1081
1082 /* make sure our super fits in the page */
1083 if (sizeof(**disk_super) > PAGE_SIZE)
1084 return 1;
1085
1086 /* make sure our super doesn't straddle pages on disk */
1087 index = bytenr >> PAGE_SHIFT;
1088 if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index)
1089 return 1;
1090
1091 /* pull in the page with our super */
1092 *page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1093 index, GFP_KERNEL);
1094
1095 if (IS_ERR_OR_NULL(*page))
1096 return 1;
1097
1098 p = kmap(*page);
1099
1100 /* align our pointer to the offset of the super block */
1101 *disk_super = p + (bytenr & ~PAGE_MASK);
1102
1103 if (btrfs_super_bytenr(*disk_super) != bytenr ||
1104 btrfs_super_magic(*disk_super) != BTRFS_MAGIC) {
1105 btrfs_release_disk_super(*page);
1106 return 1;
1107 }
1108
1109 if ((*disk_super)->label[0] &&
1110 (*disk_super)->label[BTRFS_LABEL_SIZE - 1])
1111 (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0';
1112
1113 return 0;
1114}
1115
David Sterba6f60cbd2013-02-15 11:31:02 -07001116/*
1117 * Look for a btrfs signature on a device. This may be called out of the mount path
1118 * and we are not allowed to call set_blocksize during the scan. The superblock
1119 * is read via pagecache
1120 */
Christoph Hellwig97288f22008-12-02 06:36:09 -05001121int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001122 struct btrfs_fs_devices **fs_devices_ret)
1123{
1124 struct btrfs_super_block *disk_super;
1125 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -07001126 struct page *page;
David Sterba6f60cbd2013-02-15 11:31:02 -07001127 int ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001128 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -04001129 u64 transid;
Josef Bacik02db0842012-06-21 16:03:58 -04001130 u64 total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001131 u64 bytenr;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001132
David Sterba6f60cbd2013-02-15 11:31:02 -07001133 /*
1134 * we would like to check all the supers, but that would make
1135 * a btrfs mount succeed after a mkfs from a different FS.
1136 * So, we need to add a special mount option to scan for
1137 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1138 */
1139 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +01001140 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -05001141 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -07001142
1143 bdev = blkdev_get_by_path(path, flags, holder);
David Sterba6f60cbd2013-02-15 11:31:02 -07001144 if (IS_ERR(bdev)) {
1145 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001146 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -07001147 }
1148
Anand Jain6cf86a002016-02-13 10:01:29 +08001149 if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super))
David Sterba6f60cbd2013-02-15 11:31:02 -07001150 goto error_bdev_put;
1151
Xiao Guangronga3438322010-01-06 11:48:18 +00001152 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -04001153 transid = btrfs_super_generation(disk_super);
Josef Bacik02db0842012-06-21 16:03:58 -04001154 total_devices = btrfs_super_num_devices(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001155
Chris Mason8a4b83c2008-03-24 15:02:07 -04001156 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
David Sterba60999ca2014-03-26 18:26:36 +01001157 if (ret > 0) {
1158 if (disk_super->label[0]) {
Jeff Mahoney62e85572016-09-20 10:05:01 -04001159 pr_info("BTRFS: device label %s ", disk_super->label);
David Sterba60999ca2014-03-26 18:26:36 +01001160 } else {
Jeff Mahoney62e85572016-09-20 10:05:01 -04001161 pr_info("BTRFS: device fsid %pU ", disk_super->fsid);
David Sterba60999ca2014-03-26 18:26:36 +01001162 }
1163
Jeff Mahoney62e85572016-09-20 10:05:01 -04001164 pr_cont("devid %llu transid %llu %s\n", devid, transid, path);
David Sterba60999ca2014-03-26 18:26:36 +01001165 ret = 0;
1166 }
Josef Bacik02db0842012-06-21 16:03:58 -04001167 if (!ret && fs_devices_ret)
1168 (*fs_devices_ret)->total_devices = total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001169
Anand Jain6cf86a002016-02-13 10:01:29 +08001170 btrfs_release_disk_super(page);
David Sterba6f60cbd2013-02-15 11:31:02 -07001171
1172error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001173 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001174error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001175 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001176 return ret;
1177}
Chris Mason0b86a832008-03-24 15:01:56 -04001178
Miao Xie6d07bce2011-01-05 10:07:31 +00001179/* helper to account the used device space in the range */
1180int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
1181 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -04001182{
1183 struct btrfs_key key;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001184 struct btrfs_root *root = device->fs_info->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +00001185 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001186 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +00001187 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001188 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +00001189 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001190 struct extent_buffer *l;
1191
Miao Xie6d07bce2011-01-05 10:07:31 +00001192 *length = 0;
1193
Stefan Behrens63a212a2012-11-05 18:29:28 +01001194 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
Miao Xie6d07bce2011-01-05 10:07:31 +00001195 return 0;
1196
Yan Zheng2b820322008-11-17 21:11:30 -05001197 path = btrfs_alloc_path();
1198 if (!path)
1199 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01001200 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04001201
Chris Mason0b86a832008-03-24 15:01:56 -04001202 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001203 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001204 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +00001205
1206 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001207 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001208 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001209 if (ret > 0) {
1210 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1211 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001212 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001213 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001214
Chris Mason0b86a832008-03-24 15:01:56 -04001215 while (1) {
1216 l = path->nodes[0];
1217 slot = path->slots[0];
1218 if (slot >= btrfs_header_nritems(l)) {
1219 ret = btrfs_next_leaf(root, path);
1220 if (ret == 0)
1221 continue;
1222 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001223 goto out;
1224
1225 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001226 }
1227 btrfs_item_key_to_cpu(l, &key, slot);
1228
1229 if (key.objectid < device->devid)
1230 goto next;
1231
1232 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +00001233 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001234
David Sterba962a2982014-06-04 18:41:45 +02001235 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001236 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001237
Chris Mason0b86a832008-03-24 15:01:56 -04001238 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +00001239 extent_end = key.offset + btrfs_dev_extent_length(l,
1240 dev_extent);
1241 if (key.offset <= start && extent_end > end) {
1242 *length = end - start + 1;
1243 break;
1244 } else if (key.offset <= start && extent_end > start)
1245 *length += extent_end - start;
1246 else if (key.offset > start && extent_end <= end)
1247 *length += extent_end - key.offset;
1248 else if (key.offset > start && key.offset <= end) {
1249 *length += end - key.offset + 1;
1250 break;
1251 } else if (key.offset > end)
1252 break;
1253
1254next:
1255 path->slots[0]++;
1256 }
1257 ret = 0;
1258out:
1259 btrfs_free_path(path);
1260 return ret;
1261}
1262
Jeff Mahoney499f3772015-06-15 09:41:17 -04001263static int contains_pending_extent(struct btrfs_transaction *transaction,
Josef Bacik6df9a952013-06-27 13:22:46 -04001264 struct btrfs_device *device,
1265 u64 *start, u64 len)
1266{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001267 struct btrfs_fs_info *fs_info = device->fs_info;
Josef Bacik6df9a952013-06-27 13:22:46 -04001268 struct extent_map *em;
Jeff Mahoney499f3772015-06-15 09:41:17 -04001269 struct list_head *search_list = &fs_info->pinned_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001270 int ret = 0;
Forrest Liu1b984502015-02-09 17:30:47 +08001271 u64 physical_start = *start;
Josef Bacik6df9a952013-06-27 13:22:46 -04001272
Jeff Mahoney499f3772015-06-15 09:41:17 -04001273 if (transaction)
1274 search_list = &transaction->pending_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001275again:
1276 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001277 struct map_lookup *map;
1278 int i;
1279
Jeff Mahoney95617d62015-06-03 10:55:48 -04001280 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04001281 for (i = 0; i < map->num_stripes; i++) {
Filipe Mananac152b632015-05-14 10:46:03 +01001282 u64 end;
1283
Josef Bacik6df9a952013-06-27 13:22:46 -04001284 if (map->stripes[i].dev != device)
1285 continue;
Forrest Liu1b984502015-02-09 17:30:47 +08001286 if (map->stripes[i].physical >= physical_start + len ||
Josef Bacik6df9a952013-06-27 13:22:46 -04001287 map->stripes[i].physical + em->orig_block_len <=
Forrest Liu1b984502015-02-09 17:30:47 +08001288 physical_start)
Josef Bacik6df9a952013-06-27 13:22:46 -04001289 continue;
Filipe Mananac152b632015-05-14 10:46:03 +01001290 /*
1291 * Make sure that while processing the pinned list we do
1292 * not override our *start with a lower value, because
1293 * we can have pinned chunks that fall within this
1294 * device hole and that have lower physical addresses
1295 * than the pending chunks we processed before. If we
1296 * do not take this special care we can end up getting
1297 * 2 pending chunks that start at the same physical
1298 * device offsets because the end offset of a pinned
1299 * chunk can be equal to the start offset of some
1300 * pending chunk.
1301 */
1302 end = map->stripes[i].physical + em->orig_block_len;
1303 if (end > *start) {
1304 *start = end;
1305 ret = 1;
1306 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001307 }
1308 }
Jeff Mahoney499f3772015-06-15 09:41:17 -04001309 if (search_list != &fs_info->pinned_chunks) {
1310 search_list = &fs_info->pinned_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001311 goto again;
1312 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001313
1314 return ret;
1315}
1316
1317
Chris Mason0b86a832008-03-24 15:01:56 -04001318/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001319 * find_free_dev_extent_start - find free space in the specified device
1320 * @device: the device which we search the free space in
1321 * @num_bytes: the size of the free space that we need
1322 * @search_start: the position from which to begin the search
1323 * @start: store the start of the free space.
1324 * @len: the size of the free space. that we find, or the size
1325 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001326 *
Chris Mason0b86a832008-03-24 15:01:56 -04001327 * this uses a pretty simple search, the expectation is that it is
1328 * called very infrequently and that a given device has a small number
1329 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001330 *
1331 * @start is used to store the start of the free space if we find. But if we
1332 * don't find suitable free space, it will be used to store the start position
1333 * of the max free space.
1334 *
1335 * @len is used to store the size of the free space that we find.
1336 * But if we don't find suitable free space, it is used to store the size of
1337 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001338 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001339int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1340 struct btrfs_device *device, u64 num_bytes,
1341 u64 search_start, u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001342{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001343 struct btrfs_fs_info *fs_info = device->fs_info;
1344 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001345 struct btrfs_key key;
Miao Xie7bfc8372011-01-05 10:07:26 +00001346 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001347 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001348 u64 hole_size;
1349 u64 max_hole_start;
1350 u64 max_hole_size;
1351 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001352 u64 search_end = device->total_bytes;
1353 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001354 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001355 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001356
1357 /*
1358 * We don't want to overwrite the superblock on the drive nor any area
1359 * used by the boot loader (grub for example), so we make sure to start
1360 * at an offset of at least 1MB.
1361 */
David Sterba0d0c71b2017-06-15 01:30:06 +02001362 search_start = max_t(u64, search_start, SZ_1M);
Chris Mason0b86a832008-03-24 15:01:56 -04001363
Josef Bacik6df9a952013-06-27 13:22:46 -04001364 path = btrfs_alloc_path();
1365 if (!path)
1366 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001367
Miao Xie7bfc8372011-01-05 10:07:26 +00001368 max_hole_start = search_start;
1369 max_hole_size = 0;
1370
Zhao Leif2ab7612015-02-16 18:52:17 +08001371again:
Stefan Behrens63a212a2012-11-05 18:29:28 +01001372 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001373 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001374 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001375 }
1376
David Sterbae4058b52015-11-27 16:31:35 +01001377 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001378 path->search_commit_root = 1;
1379 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001380
Chris Mason0b86a832008-03-24 15:01:56 -04001381 key.objectid = device->devid;
1382 key.offset = search_start;
1383 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001384
Li Zefan125ccb02011-12-08 15:07:24 +08001385 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001386 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001387 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001388 if (ret > 0) {
1389 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1390 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001391 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001392 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001393
Chris Mason0b86a832008-03-24 15:01:56 -04001394 while (1) {
1395 l = path->nodes[0];
1396 slot = path->slots[0];
1397 if (slot >= btrfs_header_nritems(l)) {
1398 ret = btrfs_next_leaf(root, path);
1399 if (ret == 0)
1400 continue;
1401 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001402 goto out;
1403
1404 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001405 }
1406 btrfs_item_key_to_cpu(l, &key, slot);
1407
1408 if (key.objectid < device->devid)
1409 goto next;
1410
1411 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001412 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001413
David Sterba962a2982014-06-04 18:41:45 +02001414 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001415 goto next;
1416
Miao Xie7bfc8372011-01-05 10:07:26 +00001417 if (key.offset > search_start) {
1418 hole_size = key.offset - search_start;
1419
Josef Bacik6df9a952013-06-27 13:22:46 -04001420 /*
1421 * Have to check before we set max_hole_start, otherwise
1422 * we could end up sending back this offset anyway.
1423 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001424 if (contains_pending_extent(transaction, device,
Josef Bacik6df9a952013-06-27 13:22:46 -04001425 &search_start,
Forrest Liu1b984502015-02-09 17:30:47 +08001426 hole_size)) {
1427 if (key.offset >= search_start) {
1428 hole_size = key.offset - search_start;
1429 } else {
1430 WARN_ON_ONCE(1);
1431 hole_size = 0;
1432 }
1433 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001434
Miao Xie7bfc8372011-01-05 10:07:26 +00001435 if (hole_size > max_hole_size) {
1436 max_hole_start = search_start;
1437 max_hole_size = hole_size;
1438 }
1439
1440 /*
1441 * If this free space is greater than which we need,
1442 * it must be the max free space that we have found
1443 * until now, so max_hole_start must point to the start
1444 * of this free space and the length of this free space
1445 * is stored in max_hole_size. Thus, we return
1446 * max_hole_start and max_hole_size and go back to the
1447 * caller.
1448 */
1449 if (hole_size >= num_bytes) {
1450 ret = 0;
1451 goto out;
1452 }
1453 }
1454
Chris Mason0b86a832008-03-24 15:01:56 -04001455 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001456 extent_end = key.offset + btrfs_dev_extent_length(l,
1457 dev_extent);
1458 if (extent_end > search_start)
1459 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001460next:
1461 path->slots[0]++;
1462 cond_resched();
1463 }
Chris Mason0b86a832008-03-24 15:01:56 -04001464
liubo38c01b92011-08-02 02:39:03 +00001465 /*
1466 * At this point, search_start should be the end of
1467 * allocated dev extents, and when shrinking the device,
1468 * search_end may be smaller than search_start.
1469 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001470 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001471 hole_size = search_end - search_start;
1472
Jeff Mahoney499f3772015-06-15 09:41:17 -04001473 if (contains_pending_extent(transaction, device, &search_start,
Zhao Leif2ab7612015-02-16 18:52:17 +08001474 hole_size)) {
1475 btrfs_release_path(path);
1476 goto again;
1477 }
Chris Mason0b86a832008-03-24 15:01:56 -04001478
Zhao Leif2ab7612015-02-16 18:52:17 +08001479 if (hole_size > max_hole_size) {
1480 max_hole_start = search_start;
1481 max_hole_size = hole_size;
1482 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001483 }
1484
Miao Xie7bfc8372011-01-05 10:07:26 +00001485 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001486 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001487 ret = -ENOSPC;
1488 else
1489 ret = 0;
1490
1491out:
Yan Zheng2b820322008-11-17 21:11:30 -05001492 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001493 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001494 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001495 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001496 return ret;
1497}
1498
Jeff Mahoney499f3772015-06-15 09:41:17 -04001499int find_free_dev_extent(struct btrfs_trans_handle *trans,
1500 struct btrfs_device *device, u64 num_bytes,
1501 u64 *start, u64 *len)
1502{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001503 /* FIXME use last free of some kind */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001504 return find_free_dev_extent_start(trans->transaction, device,
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001505 num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001506}
1507
Christoph Hellwigb2950862008-12-02 09:54:17 -05001508static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001509 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001510 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001511{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001512 struct btrfs_fs_info *fs_info = device->fs_info;
1513 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001514 int ret;
1515 struct btrfs_path *path;
Chris Mason8f18cf12008-04-25 16:53:30 -04001516 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001517 struct btrfs_key found_key;
1518 struct extent_buffer *leaf = NULL;
1519 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001520
1521 path = btrfs_alloc_path();
1522 if (!path)
1523 return -ENOMEM;
1524
1525 key.objectid = device->devid;
1526 key.offset = start;
1527 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001528again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001529 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001530 if (ret > 0) {
1531 ret = btrfs_previous_item(root, path, key.objectid,
1532 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001533 if (ret)
1534 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001535 leaf = path->nodes[0];
1536 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1537 extent = btrfs_item_ptr(leaf, path->slots[0],
1538 struct btrfs_dev_extent);
1539 BUG_ON(found_key.offset > start || found_key.offset +
1540 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001541 key = found_key;
1542 btrfs_release_path(path);
1543 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001544 } else if (ret == 0) {
1545 leaf = path->nodes[0];
1546 extent = btrfs_item_ptr(leaf, path->slots[0],
1547 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001548 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001549 btrfs_handle_fs_error(fs_info, ret, "Slot search failed");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001550 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001551 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001552
Miao Xie2196d6e2014-09-03 21:35:41 +08001553 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1554
Chris Mason8f18cf12008-04-25 16:53:30 -04001555 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001556 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001557 btrfs_handle_fs_error(fs_info, ret,
1558 "Failed to remove dev extent item");
Zhao Lei13212b52015-02-12 14:18:17 +08001559 } else {
Josef Bacik3204d332015-09-24 10:46:10 -04001560 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001561 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001562out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001563 btrfs_free_path(path);
1564 return ret;
1565}
1566
Eric Sandeen48a3b632013-04-25 20:41:01 +00001567static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1568 struct btrfs_device *device,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001569 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001570{
1571 int ret;
1572 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001573 struct btrfs_fs_info *fs_info = device->fs_info;
1574 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001575 struct btrfs_dev_extent *extent;
1576 struct extent_buffer *leaf;
1577 struct btrfs_key key;
1578
Chris Masondfe25022008-05-13 13:46:40 -04001579 WARN_ON(!device->in_fs_metadata);
Stefan Behrens63a212a2012-11-05 18:29:28 +01001580 WARN_ON(device->is_tgtdev_for_dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04001581 path = btrfs_alloc_path();
1582 if (!path)
1583 return -ENOMEM;
1584
Chris Mason0b86a832008-03-24 15:01:56 -04001585 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001586 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001587 key.type = BTRFS_DEV_EXTENT_KEY;
1588 ret = btrfs_insert_empty_item(trans, root, path, &key,
1589 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001590 if (ret)
1591 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001592
1593 leaf = path->nodes[0];
1594 extent = btrfs_item_ptr(leaf, path->slots[0],
1595 struct btrfs_dev_extent);
Nikolay Borisovb5d90712017-08-18 17:58:23 +03001596 btrfs_set_dev_extent_chunk_tree(leaf, extent,
1597 BTRFS_CHUNK_TREE_OBJECTID);
Nikolay Borisov0ca00af2017-08-18 17:58:22 +03001598 btrfs_set_dev_extent_chunk_objectid(leaf, extent,
1599 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Masone17cade2008-04-15 15:41:47 -04001600 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1601
Chris Mason0b86a832008-03-24 15:01:56 -04001602 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1603 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001604out:
Chris Mason0b86a832008-03-24 15:01:56 -04001605 btrfs_free_path(path);
1606 return ret;
1607}
1608
Josef Bacik6df9a952013-06-27 13:22:46 -04001609static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001610{
Josef Bacik6df9a952013-06-27 13:22:46 -04001611 struct extent_map_tree *em_tree;
1612 struct extent_map *em;
1613 struct rb_node *n;
1614 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001615
Josef Bacik6df9a952013-06-27 13:22:46 -04001616 em_tree = &fs_info->mapping_tree.map_tree;
1617 read_lock(&em_tree->lock);
1618 n = rb_last(&em_tree->map);
1619 if (n) {
1620 em = rb_entry(n, struct extent_map, rb_node);
1621 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001622 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001623 read_unlock(&em_tree->lock);
1624
Chris Mason0b86a832008-03-24 15:01:56 -04001625 return ret;
1626}
1627
Ilya Dryomov53f10652013-08-12 14:33:01 +03001628static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1629 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001630{
1631 int ret;
1632 struct btrfs_key key;
1633 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001634 struct btrfs_path *path;
1635
Yan Zheng2b820322008-11-17 21:11:30 -05001636 path = btrfs_alloc_path();
1637 if (!path)
1638 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001639
1640 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1641 key.type = BTRFS_DEV_ITEM_KEY;
1642 key.offset = (u64)-1;
1643
Ilya Dryomov53f10652013-08-12 14:33:01 +03001644 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001645 if (ret < 0)
1646 goto error;
1647
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001648 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001649
Ilya Dryomov53f10652013-08-12 14:33:01 +03001650 ret = btrfs_previous_item(fs_info->chunk_root, path,
1651 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001652 BTRFS_DEV_ITEM_KEY);
1653 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001654 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001655 } else {
1656 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1657 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001658 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001659 }
1660 ret = 0;
1661error:
Yan Zheng2b820322008-11-17 21:11:30 -05001662 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001663 return ret;
1664}
1665
1666/*
1667 * the device information is stored in the chunk root
1668 * the btrfs_device struct should be fully filled in
1669 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001670static int btrfs_add_device(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001671 struct btrfs_fs_info *fs_info,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001672 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001673{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001674 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001675 int ret;
1676 struct btrfs_path *path;
1677 struct btrfs_dev_item *dev_item;
1678 struct extent_buffer *leaf;
1679 struct btrfs_key key;
1680 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001681
Chris Mason0b86a832008-03-24 15:01:56 -04001682 path = btrfs_alloc_path();
1683 if (!path)
1684 return -ENOMEM;
1685
Chris Mason0b86a832008-03-24 15:01:56 -04001686 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1687 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001688 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001689
1690 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001691 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001692 if (ret)
1693 goto out;
1694
1695 leaf = path->nodes[0];
1696 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1697
1698 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001699 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001700 btrfs_set_device_type(leaf, dev_item, device->type);
1701 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1702 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1703 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001704 btrfs_set_device_total_bytes(leaf, dev_item,
1705 btrfs_device_get_disk_total_bytes(device));
1706 btrfs_set_device_bytes_used(leaf, dev_item,
1707 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001708 btrfs_set_device_group(leaf, dev_item, 0);
1709 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1710 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001711 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001712
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001713 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001714 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001715 ptr = btrfs_device_fsid(dev_item);
Anand Jain44880fd2017-07-29 17:50:09 +08001716 write_extent_buffer(leaf, fs_info->fsid, ptr, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001717 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001718
Yan Zheng2b820322008-11-17 21:11:30 -05001719 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001720out:
1721 btrfs_free_path(path);
1722 return ret;
1723}
Chris Mason8f18cf12008-04-25 16:53:30 -04001724
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001725/*
1726 * Function to update ctime/mtime for a given device path.
1727 * Mainly used for ctime/mtime based probe like libblkid.
1728 */
David Sterbada353f62017-02-14 17:55:53 +01001729static void update_dev_time(const char *path_name)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001730{
1731 struct file *filp;
1732
1733 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001734 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001735 return;
1736 file_update_time(filp);
1737 filp_close(filp, NULL);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001738}
1739
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001740static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info,
Chris Masona061fc82008-05-07 11:43:44 -04001741 struct btrfs_device *device)
1742{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001743 struct btrfs_root *root = fs_info->chunk_root;
Chris Masona061fc82008-05-07 11:43:44 -04001744 int ret;
1745 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001746 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001747 struct btrfs_trans_handle *trans;
1748
Chris Masona061fc82008-05-07 11:43:44 -04001749 path = btrfs_alloc_path();
1750 if (!path)
1751 return -ENOMEM;
1752
Yan, Zhenga22285a2010-05-16 10:48:46 -04001753 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001754 if (IS_ERR(trans)) {
1755 btrfs_free_path(path);
1756 return PTR_ERR(trans);
1757 }
Chris Masona061fc82008-05-07 11:43:44 -04001758 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1759 key.type = BTRFS_DEV_ITEM_KEY;
1760 key.offset = device->devid;
1761
1762 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1763 if (ret < 0)
1764 goto out;
1765
1766 if (ret > 0) {
1767 ret = -ENOENT;
1768 goto out;
1769 }
1770
1771 ret = btrfs_del_item(trans, root, path);
1772 if (ret)
1773 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001774out:
1775 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001776 btrfs_commit_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001777 return ret;
1778}
1779
David Sterba3cc31a02016-02-15 16:00:26 +01001780/*
1781 * Verify that @num_devices satisfies the RAID profile constraints in the whole
1782 * filesystem. It's up to the caller to adjust that number regarding eg. device
1783 * replace.
1784 */
1785static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info,
1786 u64 num_devices)
Chris Masona061fc82008-05-07 11:43:44 -04001787{
Chris Masona061fc82008-05-07 11:43:44 -04001788 u64 all_avail;
Miao Xiede98ced2013-01-29 10:13:12 +00001789 unsigned seq;
David Sterba418775a2016-02-15 16:28:14 +01001790 int i;
Chris Masona061fc82008-05-07 11:43:44 -04001791
Miao Xiede98ced2013-01-29 10:13:12 +00001792 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001793 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00001794
Anand Jainbd45ffb2016-02-13 10:01:34 +08001795 all_avail = fs_info->avail_data_alloc_bits |
1796 fs_info->avail_system_alloc_bits |
1797 fs_info->avail_metadata_alloc_bits;
1798 } while (read_seqretry(&fs_info->profiles_lock, seq));
Anand Jainf1fa7f22016-02-13 10:01:33 +08001799
David Sterba418775a2016-02-15 16:28:14 +01001800 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
1801 if (!(all_avail & btrfs_raid_group[i]))
1802 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001803
David Sterba418775a2016-02-15 16:28:14 +01001804 if (num_devices < btrfs_raid_array[i].devs_min) {
1805 int ret = btrfs_raid_mindev_error[i];
Chris Masona061fc82008-05-07 11:43:44 -04001806
David Sterba418775a2016-02-15 16:28:14 +01001807 if (ret)
1808 return ret;
1809 }
Anand Jainbd45ffb2016-02-13 10:01:34 +08001810 }
1811
1812 return 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001813}
1814
Omar Sandovalc9162bd2017-08-22 23:46:04 -07001815static struct btrfs_device * btrfs_find_next_active_device(
1816 struct btrfs_fs_devices *fs_devs, struct btrfs_device *device)
Anand Jain88acff62016-05-03 17:44:43 +08001817{
1818 struct btrfs_device *next_device;
1819
1820 list_for_each_entry(next_device, &fs_devs->devices, dev_list) {
1821 if (next_device != device &&
1822 !next_device->missing && next_device->bdev)
1823 return next_device;
1824 }
1825
1826 return NULL;
1827}
1828
1829/*
1830 * Helper function to check if the given device is part of s_bdev / latest_bdev
1831 * and replace it with the provided or the next active device, in the context
1832 * where this function called, there should be always be another device (or
1833 * this_dev) which is active.
1834 */
1835void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info,
1836 struct btrfs_device *device, struct btrfs_device *this_dev)
1837{
1838 struct btrfs_device *next_device;
1839
1840 if (this_dev)
1841 next_device = this_dev;
1842 else
1843 next_device = btrfs_find_next_active_device(fs_info->fs_devices,
1844 device);
1845 ASSERT(next_device);
1846
1847 if (fs_info->sb->s_bdev &&
1848 (fs_info->sb->s_bdev == device->bdev))
1849 fs_info->sb->s_bdev = next_device->bdev;
1850
1851 if (fs_info->fs_devices->latest_bdev == device->bdev)
1852 fs_info->fs_devices->latest_bdev = next_device->bdev;
1853}
1854
David Sterbada353f62017-02-14 17:55:53 +01001855int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path,
1856 u64 devid)
Anand Jainf1fa7f22016-02-13 10:01:33 +08001857{
1858 struct btrfs_device *device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001859 struct btrfs_fs_devices *cur_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001860 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001861 int ret = 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001862
1863 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001864
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001865 num_devices = fs_info->fs_devices->num_devices;
1866 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
1867 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
Chris Masona061fc82008-05-07 11:43:44 -04001868 WARN_ON(num_devices < 1);
1869 num_devices--;
1870 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001871 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Chris Masona061fc82008-05-07 11:43:44 -04001872
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001873 ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001874 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001875 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001876
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001877 ret = btrfs_find_device_by_devspec(fs_info, devid, device_path,
1878 &device);
Anand Jain24fc5722016-02-13 10:01:36 +08001879 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001880 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001881
Stefan Behrens63a212a2012-11-05 18:29:28 +01001882 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001883 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08001884 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001885 }
1886
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001887 if (device->writeable && fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001888 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08001889 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001890 }
1891
1892 if (device->writeable) {
David Sterba34441362016-10-04 19:34:27 +02001893 mutex_lock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001894 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001895 device->fs_devices->rw_devices--;
David Sterba34441362016-10-04 19:34:27 +02001896 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001897 }
Chris Masona061fc82008-05-07 11:43:44 -04001898
Carey Underwoodd7901552013-03-04 16:37:06 -06001899 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001900 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001901 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001902 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001903 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001904
Stefan Behrens63a212a2012-11-05 18:29:28 +01001905 /*
1906 * TODO: the superblock still includes this device in its num_devices
1907 * counter although write_all_supers() is not locked out. This
1908 * could give a filesystem state which requires a degraded mount.
1909 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001910 ret = btrfs_rm_dev_item(fs_info, device);
Chris Masona061fc82008-05-07 11:43:44 -04001911 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001912 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001913
Yan Zheng2b820322008-11-17 21:11:30 -05001914 device->in_fs_metadata = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001915 btrfs_scrub_cancel_dev(fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001916
1917 /*
1918 * the device list mutex makes sure that we don't change
1919 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001920 * the device supers. Whoever is writing all supers, should
1921 * lock the device list mutex before getting the number of
1922 * devices in the super block (super_copy). Conversely,
1923 * whoever updates the number of devices in the super block
1924 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001925 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001926
1927 cur_devices = device->fs_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001928 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001929 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001930
Yan Zhenge4404d62008-12-12 10:03:26 -05001931 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001932 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001933
Chris Masoncd02dca2010-12-13 14:56:23 -05001934 if (device->missing)
Miao Xie3a7d55c2014-07-16 18:38:01 +08001935 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001936
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001937 btrfs_assign_next_active_device(fs_info, device, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05001938
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001939 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001940 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001941 /* remove sysfs entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001942 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001943 }
Anand Jain99994cd2014-06-03 11:36:00 +08001944
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001945 num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1;
1946 btrfs_set_super_num_devices(fs_info->super_copy, num_devices);
1947 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001948
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04001949 /*
1950 * at this point, the device is zero sized and detached from
1951 * the devices list. All that's left is to zero out the old
1952 * supers and free the device.
1953 */
1954 if (device->writeable)
1955 btrfs_scratch_superblocks(device->bdev, device->name->str);
1956
1957 btrfs_close_bdev(device);
1958 call_rcu(&device->rcu, free_device);
1959
Xiao Guangrong1f781602011-04-20 10:09:16 +00001960 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001961 struct btrfs_fs_devices *fs_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001962 fs_devices = fs_info->fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001963 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001964 if (fs_devices->seed == cur_devices) {
1965 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05001966 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001967 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001968 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001969 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001970 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001971 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001972 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001973 }
1974
Chris Masona061fc82008-05-07 11:43:44 -04001975out:
1976 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001977 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08001978
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001979error_undo:
1980 if (device->writeable) {
David Sterba34441362016-10-04 19:34:27 +02001981 mutex_lock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001982 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001983 &fs_info->fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001984 device->fs_devices->rw_devices++;
David Sterba34441362016-10-04 19:34:27 +02001985 mutex_unlock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001986 }
Anand Jain24fc5722016-02-13 10:01:36 +08001987 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001988}
1989
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001990void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
1991 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01001992{
Anand Jaind51908c2014-08-13 14:24:19 +08001993 struct btrfs_fs_devices *fs_devices;
1994
Stefan Behrense93c89c2012-11-05 17:33:06 +01001995 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03001996
Anand Jain25e8e912014-08-20 10:56:56 +08001997 /*
1998 * in case of fs with no seed, srcdev->fs_devices will point
1999 * to fs_devices of fs_info. However when the dev being replaced is
2000 * a seed dev it will point to the seed's local fs_devices. In short
2001 * srcdev will have its correct fs_devices in both the cases.
2002 */
2003 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08002004
Stefan Behrense93c89c2012-11-05 17:33:06 +01002005 list_del_rcu(&srcdev->dev_list);
2006 list_del_rcu(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08002007 fs_devices->num_devices--;
Miao Xie82372bc2014-09-03 21:35:44 +08002008 if (srcdev->missing)
Anand Jaind51908c2014-08-13 14:24:19 +08002009 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002010
Anand Jain48b3b9d2016-04-12 21:36:16 +08002011 if (srcdev->writeable)
Miao Xie82372bc2014-09-03 21:35:44 +08002012 fs_devices->rw_devices--;
Ilya Dryomov13572722013-10-02 20:41:01 +03002013
Miao Xie82372bc2014-09-03 21:35:44 +08002014 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08002015 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002016}
2017
2018void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
2019 struct btrfs_device *srcdev)
2020{
2021 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002022
Anand Jain48b3b9d2016-04-12 21:36:16 +08002023 if (srcdev->writeable) {
2024 /* zero out the old super if it is writable */
2025 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
2026 }
Anand Jain14238812016-07-22 06:04:53 +08002027
2028 btrfs_close_bdev(srcdev);
2029
Stefan Behrense93c89c2012-11-05 17:33:06 +01002030 call_rcu(&srcdev->rcu, free_device);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002031
2032 /*
2033 * unless fs_devices is seed fs, num_devices shouldn't go
2034 * zero
2035 */
2036 BUG_ON(!fs_devices->num_devices && !fs_devices->seeding);
2037
2038 /* if this is no devs we rather delete the fs_devices */
2039 if (!fs_devices->num_devices) {
2040 struct btrfs_fs_devices *tmp_fs_devices;
2041
2042 tmp_fs_devices = fs_info->fs_devices;
2043 while (tmp_fs_devices) {
2044 if (tmp_fs_devices->seed == fs_devices) {
2045 tmp_fs_devices->seed = fs_devices->seed;
2046 break;
2047 }
2048 tmp_fs_devices = tmp_fs_devices->seed;
2049 }
2050 fs_devices->seed = NULL;
Anand Jain8bef8402014-08-13 14:24:23 +08002051 __btrfs_close_devices(fs_devices);
2052 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002053 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002054}
2055
2056void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2057 struct btrfs_device *tgtdev)
2058{
Miao Xie67a2c452014-09-03 21:35:43 +08002059 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002060 WARN_ON(!tgtdev);
2061 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002062
Anand Jain32576042015-08-14 18:32:49 +08002063 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002064
Anand Jain779bf3fe2016-04-18 16:51:23 +08002065 if (tgtdev->bdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002066 fs_info->fs_devices->open_devices--;
Anand Jain779bf3fe2016-04-18 16:51:23 +08002067
Stefan Behrense93c89c2012-11-05 17:33:06 +01002068 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002069
Anand Jain88acff62016-05-03 17:44:43 +08002070 btrfs_assign_next_active_device(fs_info, tgtdev, NULL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002071
Stefan Behrense93c89c2012-11-05 17:33:06 +01002072 list_del_rcu(&tgtdev->dev_list);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002073
2074 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002075 mutex_unlock(&uuid_mutex);
Anand Jain779bf3fe2016-04-18 16:51:23 +08002076
2077 /*
2078 * The update_dev_time() with in btrfs_scratch_superblocks()
2079 * may lead to a call to btrfs_show_devname() which will try
2080 * to hold device_list_mutex. And here this device
2081 * is already out of device list, so we don't have to hold
2082 * the device_list_mutex lock.
2083 */
2084 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Anand Jain14238812016-07-22 06:04:53 +08002085
2086 btrfs_close_bdev(tgtdev);
Anand Jain779bf3fe2016-04-18 16:51:23 +08002087 call_rcu(&tgtdev->rcu, free_device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002088}
2089
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002090static int btrfs_find_device_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002091 const char *device_path,
Eric Sandeen48a3b632013-04-25 20:41:01 +00002092 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002093{
2094 int ret = 0;
2095 struct btrfs_super_block *disk_super;
2096 u64 devid;
2097 u8 *dev_uuid;
2098 struct block_device *bdev;
2099 struct buffer_head *bh;
2100
2101 *device = NULL;
2102 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002103 fs_info->bdev_holder, 0, &bdev, &bh);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002104 if (ret)
2105 return ret;
2106 disk_super = (struct btrfs_super_block *)bh->b_data;
2107 devid = btrfs_stack_device_id(&disk_super->dev_item);
2108 dev_uuid = disk_super->dev_item.uuid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002109 *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002110 brelse(bh);
2111 if (!*device)
2112 ret = -ENOENT;
2113 blkdev_put(bdev, FMODE_READ);
2114 return ret;
2115}
2116
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002117int btrfs_find_device_missing_or_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002118 const char *device_path,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002119 struct btrfs_device **device)
2120{
2121 *device = NULL;
2122 if (strcmp(device_path, "missing") == 0) {
2123 struct list_head *devices;
2124 struct btrfs_device *tmp;
2125
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002126 devices = &fs_info->fs_devices->devices;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002127 /*
2128 * It is safe to read the devices since the volume_mutex
2129 * is held by the caller.
2130 */
2131 list_for_each_entry(tmp, devices, dev_list) {
2132 if (tmp->in_fs_metadata && !tmp->bdev) {
2133 *device = tmp;
2134 break;
2135 }
2136 }
2137
Anand Jaind74a6252015-08-14 18:32:56 +08002138 if (!*device)
2139 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002140
2141 return 0;
2142 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002143 return btrfs_find_device_by_path(fs_info, device_path, device);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002144 }
2145}
2146
Yan Zheng2b820322008-11-17 21:11:30 -05002147/*
David Sterba5c5c0df2016-02-15 16:39:55 +01002148 * Lookup a device given by device id, or the path if the id is 0.
2149 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002150int btrfs_find_device_by_devspec(struct btrfs_fs_info *fs_info, u64 devid,
David Sterbada353f62017-02-14 17:55:53 +01002151 const char *devpath,
2152 struct btrfs_device **device)
Anand Jain24e04742016-02-13 10:01:35 +08002153{
2154 int ret;
2155
David Sterba5c5c0df2016-02-15 16:39:55 +01002156 if (devid) {
Anand Jain24e04742016-02-13 10:01:35 +08002157 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002158 *device = btrfs_find_device(fs_info, devid, NULL, NULL);
Anand Jain24e04742016-02-13 10:01:35 +08002159 if (!*device)
2160 ret = -ENOENT;
2161 } else {
David Sterba5c5c0df2016-02-15 16:39:55 +01002162 if (!devpath || !devpath[0])
Anand Jainb3d1b152016-02-13 10:01:37 +08002163 return -EINVAL;
2164
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002165 ret = btrfs_find_device_missing_or_by_path(fs_info, devpath,
Anand Jain24e04742016-02-13 10:01:35 +08002166 device);
2167 }
2168 return ret;
2169}
2170
Yan Zheng2b820322008-11-17 21:11:30 -05002171/*
2172 * does all the dirty work required for changing file system's UUID.
2173 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002174static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002175{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002176 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002177 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002178 struct btrfs_fs_devices *seed_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002179 struct btrfs_super_block *disk_super = fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002180 struct btrfs_device *device;
2181 u64 super_flags;
2182
2183 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05002184 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002185 return -EINVAL;
2186
David Sterba2dfeca92017-06-14 02:48:07 +02002187 seed_devices = alloc_fs_devices(NULL);
Ilya Dryomov2208a372013-08-12 14:33:03 +03002188 if (IS_ERR(seed_devices))
2189 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002190
Yan Zhenge4404d62008-12-12 10:03:26 -05002191 old_devices = clone_fs_devices(fs_devices);
2192 if (IS_ERR(old_devices)) {
2193 kfree(seed_devices);
2194 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002195 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002196
Yan Zheng2b820322008-11-17 21:11:30 -05002197 list_add(&old_devices->list, &fs_uuids);
2198
Yan Zhenge4404d62008-12-12 10:03:26 -05002199 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2200 seed_devices->opened = 1;
2201 INIT_LIST_HEAD(&seed_devices->devices);
2202 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002203 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002204
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002205 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002206 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2207 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002208 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002209 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002210
David Sterba34441362016-10-04 19:34:27 +02002211 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002212 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
David Sterba34441362016-10-04 19:34:27 +02002213 mutex_unlock(&fs_info->chunk_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002214
Yan Zheng2b820322008-11-17 21:11:30 -05002215 fs_devices->seeding = 0;
2216 fs_devices->num_devices = 0;
2217 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002218 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002219 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002220 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002221
2222 generate_random_uuid(fs_devices->fsid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002223 memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002224 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002225 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002226
Yan Zheng2b820322008-11-17 21:11:30 -05002227 super_flags = btrfs_super_flags(disk_super) &
2228 ~BTRFS_SUPER_FLAG_SEEDING;
2229 btrfs_set_super_flags(disk_super, super_flags);
2230
2231 return 0;
2232}
2233
2234/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002235 * Store the expected generation for seed devices in device items.
Yan Zheng2b820322008-11-17 21:11:30 -05002236 */
2237static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002238 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002239{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002240 struct btrfs_root *root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002241 struct btrfs_path *path;
2242 struct extent_buffer *leaf;
2243 struct btrfs_dev_item *dev_item;
2244 struct btrfs_device *device;
2245 struct btrfs_key key;
Anand Jain44880fd2017-07-29 17:50:09 +08002246 u8 fs_uuid[BTRFS_FSID_SIZE];
Yan Zheng2b820322008-11-17 21:11:30 -05002247 u8 dev_uuid[BTRFS_UUID_SIZE];
2248 u64 devid;
2249 int ret;
2250
2251 path = btrfs_alloc_path();
2252 if (!path)
2253 return -ENOMEM;
2254
Yan Zheng2b820322008-11-17 21:11:30 -05002255 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2256 key.offset = 0;
2257 key.type = BTRFS_DEV_ITEM_KEY;
2258
2259 while (1) {
2260 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2261 if (ret < 0)
2262 goto error;
2263
2264 leaf = path->nodes[0];
2265next_slot:
2266 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2267 ret = btrfs_next_leaf(root, path);
2268 if (ret > 0)
2269 break;
2270 if (ret < 0)
2271 goto error;
2272 leaf = path->nodes[0];
2273 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002274 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002275 continue;
2276 }
2277
2278 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2279 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2280 key.type != BTRFS_DEV_ITEM_KEY)
2281 break;
2282
2283 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2284 struct btrfs_dev_item);
2285 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002286 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002287 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002288 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08002289 BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002290 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002291 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002292
2293 if (device->fs_devices->seeding) {
2294 btrfs_set_device_generation(leaf, dev_item,
2295 device->generation);
2296 btrfs_mark_buffer_dirty(leaf);
2297 }
2298
2299 path->slots[0]++;
2300 goto next_slot;
2301 }
2302 ret = 0;
2303error:
2304 btrfs_free_path(path);
2305 return ret;
2306}
2307
David Sterbada353f62017-02-14 17:55:53 +01002308int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path)
Chris Mason788f20e2008-04-28 15:29:42 -04002309{
Jeff Mahoney5112feb2016-06-21 20:16:08 -04002310 struct btrfs_root *root = fs_info->dev_root;
Josef Bacikd5e20032011-08-04 14:52:27 +00002311 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002312 struct btrfs_trans_handle *trans;
2313 struct btrfs_device *device;
2314 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002315 struct list_head *devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002316 struct super_block *sb = fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002317 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002318 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002319 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002320 int ret = 0;
Anand Jain7132a262017-09-28 14:51:11 +08002321 bool unlocked = false;
Chris Mason788f20e2008-04-28 15:29:42 -04002322
David Howellsbc98a422017-07-17 08:45:34 +01002323 if (sb_rdonly(sb) && !fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002324 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002325
Li Zefana5d163332011-12-07 20:08:40 -05002326 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002327 fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002328 if (IS_ERR(bdev))
2329 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002330
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002331 if (fs_info->fs_devices->seeding) {
Yan Zheng2b820322008-11-17 21:11:30 -05002332 seeding_dev = 1;
2333 down_write(&sb->s_umount);
2334 mutex_lock(&uuid_mutex);
2335 }
2336
Chris Mason8c8bee12008-09-29 11:19:10 -04002337 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002338
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002339 devices = &fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002340
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002341 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002342 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002343 if (device->bdev == bdev) {
2344 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002345 mutex_unlock(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002346 &fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002347 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002348 }
2349 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002350 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002351
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002352 device = btrfs_alloc_device(fs_info, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002353 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002354 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002355 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002356 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002357 }
2358
David Sterba78f2c9e2016-02-11 14:25:38 +01002359 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002360 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002361 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002362 ret = -ENOMEM;
2363 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002364 }
Josef Bacik606686e2012-06-04 14:03:51 -04002365 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002366
Yan, Zhenga22285a2010-05-16 10:48:46 -04002367 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002368 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002369 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002370 kfree(device);
2371 ret = PTR_ERR(trans);
2372 goto error;
2373 }
2374
Josef Bacikd5e20032011-08-04 14:52:27 +00002375 q = bdev_get_queue(bdev);
2376 if (blk_queue_discard(q))
2377 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002378 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002379 device->generation = trans->transid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002380 device->io_width = fs_info->sectorsize;
2381 device->io_align = fs_info->sectorsize;
2382 device->sector_size = fs_info->sectorsize;
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002383 device->total_bytes = round_down(i_size_read(bdev->bd_inode),
2384 fs_info->sectorsize);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002385 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002386 device->commit_total_bytes = device->total_bytes;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002387 device->fs_info = fs_info;
Chris Mason788f20e2008-04-28 15:29:42 -04002388 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002389 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002390 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002391 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002392 device->dev_stats_valid = 1;
David Sterba9f6d2512017-06-16 01:48:05 +02002393 set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE);
Zheng Yan325cd4b2008-09-05 16:43:54 -04002394
Yan Zheng2b820322008-11-17 21:11:30 -05002395 if (seeding_dev) {
2396 sb->s_flags &= ~MS_RDONLY;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002397 ret = btrfs_prepare_sprout(fs_info);
Anand Jaind31c32f2017-09-28 14:51:10 +08002398 if (ret) {
2399 btrfs_abort_transaction(trans, ret);
2400 goto error_trans;
2401 }
Yan Zheng2b820322008-11-17 21:11:30 -05002402 }
2403
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002404 device->fs_devices = fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002405
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002406 mutex_lock(&fs_info->fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02002407 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002408 list_add_rcu(&device->dev_list, &fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002409 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002410 &fs_info->fs_devices->alloc_list);
2411 fs_info->fs_devices->num_devices++;
2412 fs_info->fs_devices->open_devices++;
2413 fs_info->fs_devices->rw_devices++;
2414 fs_info->fs_devices->total_devices++;
2415 fs_info->fs_devices->total_rw_bytes += device->total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05002416
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002417 atomic64_add(device->total_bytes, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04002418
Anand Jaine884f4f2017-04-04 18:40:19 +08002419 if (!blk_queue_nonrot(q))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002420 fs_info->fs_devices->rotating = 1;
Chris Masonc2898112009-06-10 09:51:32 -04002421
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002422 tmp = btrfs_super_total_bytes(fs_info->super_copy);
2423 btrfs_set_super_total_bytes(fs_info->super_copy,
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002424 round_down(tmp + device->total_bytes, fs_info->sectorsize));
Chris Mason788f20e2008-04-28 15:29:42 -04002425
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002426 tmp = btrfs_super_num_devices(fs_info->super_copy);
2427 btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002428
2429 /* add sysfs device entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002430 btrfs_sysfs_add_device_link(fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002431
Miao Xie2196d6e2014-09-03 21:35:41 +08002432 /*
2433 * we've got more storage, clear any full flags on the space
2434 * infos
2435 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002436 btrfs_clear_space_info_full(fs_info);
Miao Xie2196d6e2014-09-03 21:35:41 +08002437
David Sterba34441362016-10-04 19:34:27 +02002438 mutex_unlock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002439 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002440
Yan Zheng2b820322008-11-17 21:11:30 -05002441 if (seeding_dev) {
David Sterba34441362016-10-04 19:34:27 +02002442 mutex_lock(&fs_info->chunk_mutex);
David Sterbae4a4dce2017-02-10 19:49:01 +01002443 ret = init_first_rw_device(trans, fs_info);
David Sterba34441362016-10-04 19:34:27 +02002444 mutex_unlock(&fs_info->chunk_mutex);
David Sterba005d6422012-09-18 07:52:32 -06002445 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002446 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002447 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002448 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002449 }
2450
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002451 ret = btrfs_add_device(trans, fs_info, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002452 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002453 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002454 goto error_sysfs;
Miao Xie2196d6e2014-09-03 21:35:41 +08002455 }
2456
2457 if (seeding_dev) {
2458 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2459
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002460 ret = btrfs_finish_sprout(trans, fs_info);
David Sterba005d6422012-09-18 07:52:32 -06002461 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002462 btrfs_abort_transaction(trans, ret);
Anand Jaind31c32f2017-09-28 14:51:10 +08002463 goto error_sysfs;
David Sterba005d6422012-09-18 07:52:32 -06002464 }
Anand Jainb2373f22014-06-03 11:36:03 +08002465
2466 /* Sprouting would change fsid of the mounted root,
2467 * so rename the fsid on the sysfs
2468 */
2469 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002470 fs_info->fsid);
2471 if (kobject_rename(&fs_info->fs_devices->fsid_kobj, fsid_buf))
2472 btrfs_warn(fs_info,
2473 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002474 }
2475
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002476 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002477
2478 if (seeding_dev) {
2479 mutex_unlock(&uuid_mutex);
2480 up_write(&sb->s_umount);
Anand Jain7132a262017-09-28 14:51:11 +08002481 unlocked = true;
Yan Zheng2b820322008-11-17 21:11:30 -05002482
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002483 if (ret) /* transaction commit */
2484 return ret;
2485
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002486 ret = btrfs_relocate_sys_chunks(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002487 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002488 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002489 "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002490 trans = btrfs_attach_transaction(root);
2491 if (IS_ERR(trans)) {
2492 if (PTR_ERR(trans) == -ENOENT)
2493 return 0;
Anand Jain7132a262017-09-28 14:51:11 +08002494 ret = PTR_ERR(trans);
2495 trans = NULL;
2496 goto error_sysfs;
Miao Xie671415b2012-10-16 11:26:46 +00002497 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002498 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002499 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002500
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002501 /* Update ctime/mtime for libblkid */
2502 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002503 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002504
Anand Jaind31c32f2017-09-28 14:51:10 +08002505error_sysfs:
2506 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002507error_trans:
Anand Jain0af2c4b2017-09-28 14:51:09 +08002508 if (seeding_dev)
2509 sb->s_flags |= MS_RDONLY;
Anand Jain7132a262017-09-28 14:51:11 +08002510 if (trans)
2511 btrfs_end_transaction(trans);
Josef Bacik606686e2012-06-04 14:03:51 -04002512 rcu_string_free(device->name);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002513 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002514error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002515 blkdev_put(bdev, FMODE_EXCL);
Anand Jain7132a262017-09-28 14:51:11 +08002516 if (seeding_dev && !unlocked) {
Yan Zheng2b820322008-11-17 21:11:30 -05002517 mutex_unlock(&uuid_mutex);
2518 up_write(&sb->s_umount);
2519 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002520 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002521}
2522
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002523int btrfs_init_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002524 const char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002525 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002526 struct btrfs_device **device_out)
2527{
2528 struct request_queue *q;
2529 struct btrfs_device *device;
2530 struct block_device *bdev;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002531 struct list_head *devices;
2532 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002533 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002534 int ret = 0;
2535
2536 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002537 if (fs_info->fs_devices->seeding) {
2538 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002539 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002540 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002541
2542 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2543 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002544 if (IS_ERR(bdev)) {
2545 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002546 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002547 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002548
2549 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2550
2551 devices = &fs_info->fs_devices->devices;
2552 list_for_each_entry(device, devices, dev_list) {
2553 if (device->bdev == bdev) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002554 btrfs_err(fs_info,
2555 "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002556 ret = -EEXIST;
2557 goto error;
2558 }
2559 }
2560
Miao Xie1c433662014-09-03 21:35:32 +08002561
Miao Xie7cc8e582014-09-03 21:35:38 +08002562 if (i_size_read(bdev->bd_inode) <
2563 btrfs_device_get_total_bytes(srcdev)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002564 btrfs_err(fs_info,
2565 "target device is smaller than source device!");
Miao Xie1c433662014-09-03 21:35:32 +08002566 ret = -EINVAL;
2567 goto error;
2568 }
2569
2570
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002571 device = btrfs_alloc_device(NULL, &devid, NULL);
2572 if (IS_ERR(device)) {
2573 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002574 goto error;
2575 }
2576
David Sterba61655722017-06-15 17:16:43 +02002577 name = rcu_string_strdup(device_path, GFP_KERNEL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002578 if (!name) {
2579 kfree(device);
2580 ret = -ENOMEM;
2581 goto error;
2582 }
2583 rcu_assign_pointer(device->name, name);
2584
2585 q = bdev_get_queue(bdev);
2586 if (blk_queue_discard(q))
2587 device->can_discard = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002588 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002589 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002590 device->generation = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002591 device->io_width = fs_info->sectorsize;
2592 device->io_align = fs_info->sectorsize;
2593 device->sector_size = fs_info->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002594 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2595 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2596 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002597 ASSERT(list_empty(&srcdev->resized_list));
2598 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002599 device->commit_bytes_used = device->bytes_used;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002600 device->fs_info = fs_info;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002601 device->bdev = bdev;
2602 device->in_fs_metadata = 1;
2603 device->is_tgtdev_for_dev_replace = 1;
2604 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002605 device->dev_stats_valid = 1;
David Sterba9f6d2512017-06-16 01:48:05 +02002606 set_blocksize(device->bdev, BTRFS_BDEV_BLOCKSIZE);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002607 device->fs_devices = fs_info->fs_devices;
2608 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2609 fs_info->fs_devices->num_devices++;
2610 fs_info->fs_devices->open_devices++;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002611 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002612
2613 *device_out = device;
2614 return ret;
2615
2616error:
2617 blkdev_put(bdev, FMODE_EXCL);
2618 return ret;
2619}
2620
2621void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2622 struct btrfs_device *tgtdev)
2623{
Jeff Mahoneyda170662016-06-15 09:22:56 -04002624 u32 sectorsize = fs_info->sectorsize;
2625
Stefan Behrense93c89c2012-11-05 17:33:06 +01002626 WARN_ON(fs_info->fs_devices->rw_devices == 0);
Jeff Mahoneyda170662016-06-15 09:22:56 -04002627 tgtdev->io_width = sectorsize;
2628 tgtdev->io_align = sectorsize;
2629 tgtdev->sector_size = sectorsize;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002630 tgtdev->fs_info = fs_info;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002631 tgtdev->in_fs_metadata = 1;
2632}
2633
Chris Masond3977122009-01-05 21:25:51 -05002634static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2635 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002636{
2637 int ret;
2638 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002639 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002640 struct btrfs_dev_item *dev_item;
2641 struct extent_buffer *leaf;
2642 struct btrfs_key key;
2643
Chris Mason0b86a832008-03-24 15:01:56 -04002644 path = btrfs_alloc_path();
2645 if (!path)
2646 return -ENOMEM;
2647
2648 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2649 key.type = BTRFS_DEV_ITEM_KEY;
2650 key.offset = device->devid;
2651
2652 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2653 if (ret < 0)
2654 goto out;
2655
2656 if (ret > 0) {
2657 ret = -ENOENT;
2658 goto out;
2659 }
2660
2661 leaf = path->nodes[0];
2662 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2663
2664 btrfs_set_device_id(leaf, dev_item, device->devid);
2665 btrfs_set_device_type(leaf, dev_item, device->type);
2666 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2667 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2668 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002669 btrfs_set_device_total_bytes(leaf, dev_item,
2670 btrfs_device_get_disk_total_bytes(device));
2671 btrfs_set_device_bytes_used(leaf, dev_item,
2672 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002673 btrfs_mark_buffer_dirty(leaf);
2674
2675out:
2676 btrfs_free_path(path);
2677 return ret;
2678}
2679
Miao Xie2196d6e2014-09-03 21:35:41 +08002680int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002681 struct btrfs_device *device, u64 new_size)
2682{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002683 struct btrfs_fs_info *fs_info = device->fs_info;
2684 struct btrfs_super_block *super_copy = fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002685 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002686 u64 old_total;
2687 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002688
Yan Zheng2b820322008-11-17 21:11:30 -05002689 if (!device->writeable)
2690 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002691
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002692 new_size = round_down(new_size, fs_info->sectorsize);
2693
David Sterba34441362016-10-04 19:34:27 +02002694 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002695 old_total = btrfs_super_total_bytes(super_copy);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03002696 diff = round_down(new_size - device->total_bytes, fs_info->sectorsize);
Miao Xie2196d6e2014-09-03 21:35:41 +08002697
Stefan Behrens63a212a2012-11-05 18:29:28 +01002698 if (new_size <= device->total_bytes ||
Miao Xie2196d6e2014-09-03 21:35:41 +08002699 device->is_tgtdev_for_dev_replace) {
David Sterba34441362016-10-04 19:34:27 +02002700 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002701 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002702 }
Yan Zheng2b820322008-11-17 21:11:30 -05002703
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002704 fs_devices = fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002705
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03002706 btrfs_set_super_total_bytes(super_copy,
2707 round_down(old_total + diff, fs_info->sectorsize));
Yan Zheng2b820322008-11-17 21:11:30 -05002708 device->fs_devices->total_rw_bytes += diff;
2709
Miao Xie7cc8e582014-09-03 21:35:38 +08002710 btrfs_device_set_total_bytes(device, new_size);
2711 btrfs_device_set_disk_total_bytes(device, new_size);
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002712 btrfs_clear_space_info_full(device->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002713 if (list_empty(&device->resized_list))
2714 list_add_tail(&device->resized_list,
2715 &fs_devices->resized_devices);
David Sterba34441362016-10-04 19:34:27 +02002716 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason4184ea72009-03-10 12:39:20 -04002717
Chris Mason8f18cf12008-04-25 16:53:30 -04002718 return btrfs_update_device(trans, device);
2719}
2720
2721static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002722 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002723{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002724 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002725 int ret;
2726 struct btrfs_path *path;
2727 struct btrfs_key key;
2728
Chris Mason8f18cf12008-04-25 16:53:30 -04002729 path = btrfs_alloc_path();
2730 if (!path)
2731 return -ENOMEM;
2732
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002733 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Chris Mason8f18cf12008-04-25 16:53:30 -04002734 key.offset = chunk_offset;
2735 key.type = BTRFS_CHUNK_ITEM_KEY;
2736
2737 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002738 if (ret < 0)
2739 goto out;
2740 else if (ret > 0) { /* Logic error or corruption */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002741 btrfs_handle_fs_error(fs_info, -ENOENT,
2742 "Failed lookup while freeing chunk.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002743 ret = -ENOENT;
2744 goto out;
2745 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002746
2747 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002748 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002749 btrfs_handle_fs_error(fs_info, ret,
2750 "Failed to delete chunk item.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002751out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002752 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002753 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002754}
2755
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002756static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002757{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002758 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002759 struct btrfs_disk_key *disk_key;
2760 struct btrfs_chunk *chunk;
2761 u8 *ptr;
2762 int ret = 0;
2763 u32 num_stripes;
2764 u32 array_size;
2765 u32 len = 0;
2766 u32 cur;
2767 struct btrfs_key key;
2768
David Sterba34441362016-10-04 19:34:27 +02002769 mutex_lock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002770 array_size = btrfs_super_sys_array_size(super_copy);
2771
2772 ptr = super_copy->sys_chunk_array;
2773 cur = 0;
2774
2775 while (cur < array_size) {
2776 disk_key = (struct btrfs_disk_key *)ptr;
2777 btrfs_disk_key_to_cpu(&key, disk_key);
2778
2779 len = sizeof(*disk_key);
2780
2781 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2782 chunk = (struct btrfs_chunk *)(ptr + len);
2783 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2784 len += btrfs_chunk_item_size(num_stripes);
2785 } else {
2786 ret = -EIO;
2787 break;
2788 }
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002789 if (key.objectid == BTRFS_FIRST_CHUNK_TREE_OBJECTID &&
Chris Mason8f18cf12008-04-25 16:53:30 -04002790 key.offset == chunk_offset) {
2791 memmove(ptr, ptr + len, array_size - (cur + len));
2792 array_size -= len;
2793 btrfs_set_super_sys_array_size(super_copy, array_size);
2794 } else {
2795 ptr += len;
2796 cur += len;
2797 }
2798 }
David Sterba34441362016-10-04 19:34:27 +02002799 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002800 return ret;
2801}
2802
Liu Bo592d92e2017-03-14 13:33:55 -07002803static struct extent_map *get_chunk_map(struct btrfs_fs_info *fs_info,
2804 u64 logical, u64 length)
2805{
2806 struct extent_map_tree *em_tree;
2807 struct extent_map *em;
2808
2809 em_tree = &fs_info->mapping_tree.map_tree;
2810 read_lock(&em_tree->lock);
2811 em = lookup_extent_mapping(em_tree, logical, length);
2812 read_unlock(&em_tree->lock);
2813
2814 if (!em) {
2815 btrfs_crit(fs_info, "unable to find logical %llu length %llu",
2816 logical, length);
2817 return ERR_PTR(-EINVAL);
2818 }
2819
2820 if (em->start > logical || em->start + em->len < logical) {
2821 btrfs_crit(fs_info,
2822 "found a bad mapping, wanted %llu-%llu, found %llu-%llu",
2823 logical, length, em->start, em->start + em->len);
2824 free_extent_map(em);
2825 return ERR_PTR(-EINVAL);
2826 }
2827
2828 /* callers are responsible for dropping em's ref. */
2829 return em;
2830}
2831
Josef Bacik47ab2a62014-09-18 11:20:02 -04002832int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002833 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Josef Bacik47ab2a62014-09-18 11:20:02 -04002834{
Josef Bacik47ab2a62014-09-18 11:20:02 -04002835 struct extent_map *em;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002836 struct map_lookup *map;
2837 u64 dev_extent_len = 0;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002838 int i, ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002839 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002840
Liu Bo592d92e2017-03-14 13:33:55 -07002841 em = get_chunk_map(fs_info, chunk_offset, 1);
2842 if (IS_ERR(em)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -04002843 /*
2844 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002845 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04002846 * do anything we still error out.
2847 */
2848 ASSERT(0);
Liu Bo592d92e2017-03-14 13:33:55 -07002849 return PTR_ERR(em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002850 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002851 map = em->map_lookup;
David Sterba34441362016-10-04 19:34:27 +02002852 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002853 check_system_chunk(trans, fs_info, map->type);
David Sterba34441362016-10-04 19:34:27 +02002854 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002855
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002856 /*
2857 * Take the device list mutex to prevent races with the final phase of
2858 * a device replace operation that replaces the device object associated
2859 * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()).
2860 */
2861 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002862 for (i = 0; i < map->num_stripes; i++) {
2863 struct btrfs_device *device = map->stripes[i].dev;
2864 ret = btrfs_free_dev_extent(trans, device,
2865 map->stripes[i].physical,
2866 &dev_extent_len);
2867 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002868 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002869 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002870 goto out;
2871 }
2872
2873 if (device->bytes_used > 0) {
David Sterba34441362016-10-04 19:34:27 +02002874 mutex_lock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002875 btrfs_device_set_bytes_used(device,
2876 device->bytes_used - dev_extent_len);
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03002877 atomic64_add(dev_extent_len, &fs_info->free_chunk_space);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002878 btrfs_clear_space_info_full(fs_info);
David Sterba34441362016-10-04 19:34:27 +02002879 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002880 }
2881
2882 if (map->stripes[i].dev) {
2883 ret = btrfs_update_device(trans, map->stripes[i].dev);
2884 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002885 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002886 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002887 goto out;
2888 }
2889 }
2890 }
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002891 mutex_unlock(&fs_devices->device_list_mutex);
2892
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002893 ret = btrfs_free_chunk(trans, fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002894 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002895 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002896 goto out;
2897 }
2898
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002899 trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002900
2901 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Nikolay Borisov408fbf12017-07-27 14:37:29 +03002902 ret = btrfs_del_sys_chunk(fs_info, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002903 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002904 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002905 goto out;
2906 }
2907 }
2908
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002909 ret = btrfs_remove_block_group(trans, fs_info, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002910 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002911 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002912 goto out;
2913 }
2914
Josef Bacik47ab2a62014-09-18 11:20:02 -04002915out:
2916 /* once for us */
2917 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002918 return ret;
2919}
2920
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002921static int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002922{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002923 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason19c4d2f2016-10-10 13:43:31 -07002924 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002925 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002926
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002927 /*
2928 * Prevent races with automatic removal of unused block groups.
2929 * After we relocate and before we remove the chunk with offset
2930 * chunk_offset, automatic removal of the block group can kick in,
2931 * resulting in a failure when calling btrfs_remove_chunk() below.
2932 *
2933 * Make sure to acquire this mutex before doing a tree search (dev
2934 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2935 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2936 * we release the path used to search the chunk/dev tree and before
2937 * the current task acquires this mutex and calls us.
2938 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002939 ASSERT(mutex_is_locked(&fs_info->delete_unused_bgs_mutex));
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002940
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002941 ret = btrfs_can_relocate(fs_info, chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002942 if (ret)
2943 return -ENOSPC;
2944
Chris Mason8f18cf12008-04-25 16:53:30 -04002945 /* step one, relocate all the extents inside this chunk */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002946 btrfs_scrub_pause(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002947 ret = btrfs_relocate_block_group(fs_info, chunk_offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002948 btrfs_scrub_continue(fs_info);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002949 if (ret)
2950 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002951
Chris Mason19c4d2f2016-10-10 13:43:31 -07002952 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2953 chunk_offset);
2954 if (IS_ERR(trans)) {
2955 ret = PTR_ERR(trans);
2956 btrfs_handle_fs_error(root->fs_info, ret, NULL);
2957 return ret;
2958 }
Naohiro Aota5d8eb6f2016-09-02 16:46:32 +09002959
Chris Mason19c4d2f2016-10-10 13:43:31 -07002960 /*
2961 * step two, delete the device extents and the
2962 * chunk tree entries
2963 */
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002964 ret = btrfs_remove_chunk(trans, fs_info, chunk_offset);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002965 btrfs_end_transaction(trans);
Chris Mason19c4d2f2016-10-10 13:43:31 -07002966 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002967}
2968
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002969static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002970{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002971 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002972 struct btrfs_path *path;
2973 struct extent_buffer *leaf;
2974 struct btrfs_chunk *chunk;
2975 struct btrfs_key key;
2976 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05002977 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002978 bool retried = false;
2979 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002980 int ret;
2981
2982 path = btrfs_alloc_path();
2983 if (!path)
2984 return -ENOMEM;
2985
Josef Bacikba1bf482009-09-11 16:11:19 -04002986again:
Yan Zheng2b820322008-11-17 21:11:30 -05002987 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2988 key.offset = (u64)-1;
2989 key.type = BTRFS_CHUNK_ITEM_KEY;
2990
2991 while (1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002992 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002993 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002994 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002995 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002996 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002997 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002998 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002999
3000 ret = btrfs_previous_item(chunk_root, path, key.objectid,
3001 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003002 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003003 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003004 if (ret < 0)
3005 goto error;
3006 if (ret > 0)
3007 break;
3008
3009 leaf = path->nodes[0];
3010 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3011
3012 chunk = btrfs_item_ptr(leaf, path->slots[0],
3013 struct btrfs_chunk);
3014 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02003015 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05003016
3017 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003018 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04003019 if (ret == -ENOSPC)
3020 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05303021 else
3022 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05003023 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003024 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003025
3026 if (found_key.offset == 0)
3027 break;
3028 key.offset = found_key.offset - 1;
3029 }
3030 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04003031 if (failed && !retried) {
3032 failed = 0;
3033 retried = true;
3034 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303035 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04003036 ret = -ENOSPC;
3037 }
Yan Zheng2b820322008-11-17 21:11:30 -05003038error:
3039 btrfs_free_path(path);
3040 return ret;
3041}
3042
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003043static int insert_balance_item(struct btrfs_fs_info *fs_info,
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003044 struct btrfs_balance_control *bctl)
3045{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003046 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003047 struct btrfs_trans_handle *trans;
3048 struct btrfs_balance_item *item;
3049 struct btrfs_disk_balance_args disk_bargs;
3050 struct btrfs_path *path;
3051 struct extent_buffer *leaf;
3052 struct btrfs_key key;
3053 int ret, err;
3054
3055 path = btrfs_alloc_path();
3056 if (!path)
3057 return -ENOMEM;
3058
3059 trans = btrfs_start_transaction(root, 0);
3060 if (IS_ERR(trans)) {
3061 btrfs_free_path(path);
3062 return PTR_ERR(trans);
3063 }
3064
3065 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003066 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003067 key.offset = 0;
3068
3069 ret = btrfs_insert_empty_item(trans, root, path, &key,
3070 sizeof(*item));
3071 if (ret)
3072 goto out;
3073
3074 leaf = path->nodes[0];
3075 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3076
David Sterbab159fa22016-11-08 18:09:03 +01003077 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003078
3079 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
3080 btrfs_set_balance_data(leaf, item, &disk_bargs);
3081 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
3082 btrfs_set_balance_meta(leaf, item, &disk_bargs);
3083 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
3084 btrfs_set_balance_sys(leaf, item, &disk_bargs);
3085
3086 btrfs_set_balance_flags(leaf, item, bctl->flags);
3087
3088 btrfs_mark_buffer_dirty(leaf);
3089out:
3090 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003091 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003092 if (err && !ret)
3093 ret = err;
3094 return ret;
3095}
3096
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003097static int del_balance_item(struct btrfs_fs_info *fs_info)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003098{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003099 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003100 struct btrfs_trans_handle *trans;
3101 struct btrfs_path *path;
3102 struct btrfs_key key;
3103 int ret, err;
3104
3105 path = btrfs_alloc_path();
3106 if (!path)
3107 return -ENOMEM;
3108
3109 trans = btrfs_start_transaction(root, 0);
3110 if (IS_ERR(trans)) {
3111 btrfs_free_path(path);
3112 return PTR_ERR(trans);
3113 }
3114
3115 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003116 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003117 key.offset = 0;
3118
3119 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3120 if (ret < 0)
3121 goto out;
3122 if (ret > 0) {
3123 ret = -ENOENT;
3124 goto out;
3125 }
3126
3127 ret = btrfs_del_item(trans, root, path);
3128out:
3129 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003130 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003131 if (err && !ret)
3132 ret = err;
3133 return ret;
3134}
3135
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003136/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003137 * This is a heuristic used to reduce the number of chunks balanced on
3138 * resume after balance was interrupted.
3139 */
3140static void update_balance_args(struct btrfs_balance_control *bctl)
3141{
3142 /*
3143 * Turn on soft mode for chunk types that were being converted.
3144 */
3145 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3146 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3147 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3148 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3149 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3150 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3151
3152 /*
3153 * Turn on usage filter if is not already used. The idea is
3154 * that chunks that we have already balanced should be
3155 * reasonably full. Don't do it for chunks that are being
3156 * converted - that will keep us from relocating unconverted
3157 * (albeit full) chunks.
3158 */
3159 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003160 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003161 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3162 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3163 bctl->data.usage = 90;
3164 }
3165 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003166 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003167 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3168 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3169 bctl->sys.usage = 90;
3170 }
3171 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003172 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003173 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3174 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3175 bctl->meta.usage = 90;
3176 }
3177}
3178
3179/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003180 * Should be called with both balance and volume mutexes held to
3181 * serialize other volume operations (add_dev/rm_dev/resize) with
3182 * restriper. Same goes for unset_balance_control.
3183 */
3184static void set_balance_control(struct btrfs_balance_control *bctl)
3185{
3186 struct btrfs_fs_info *fs_info = bctl->fs_info;
3187
3188 BUG_ON(fs_info->balance_ctl);
3189
3190 spin_lock(&fs_info->balance_lock);
3191 fs_info->balance_ctl = bctl;
3192 spin_unlock(&fs_info->balance_lock);
3193}
3194
3195static void unset_balance_control(struct btrfs_fs_info *fs_info)
3196{
3197 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3198
3199 BUG_ON(!fs_info->balance_ctl);
3200
3201 spin_lock(&fs_info->balance_lock);
3202 fs_info->balance_ctl = NULL;
3203 spin_unlock(&fs_info->balance_lock);
3204
3205 kfree(bctl);
3206}
3207
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003208/*
3209 * Balance filters. Return 1 if chunk should be filtered out
3210 * (should not be balanced).
3211 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003212static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003213 struct btrfs_balance_args *bargs)
3214{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003215 chunk_type = chunk_to_extended(chunk_type) &
3216 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003217
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003218 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003219 return 0;
3220
3221 return 1;
3222}
3223
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003224static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003225 struct btrfs_balance_args *bargs)
3226{
3227 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003228 u64 chunk_used;
3229 u64 user_thresh_min;
3230 u64 user_thresh_max;
3231 int ret = 1;
3232
3233 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3234 chunk_used = btrfs_block_group_used(&cache->item);
3235
3236 if (bargs->usage_min == 0)
3237 user_thresh_min = 0;
3238 else
3239 user_thresh_min = div_factor_fine(cache->key.offset,
3240 bargs->usage_min);
3241
3242 if (bargs->usage_max == 0)
3243 user_thresh_max = 1;
3244 else if (bargs->usage_max > 100)
3245 user_thresh_max = cache->key.offset;
3246 else
3247 user_thresh_max = div_factor_fine(cache->key.offset,
3248 bargs->usage_max);
3249
3250 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3251 ret = 0;
3252
3253 btrfs_put_block_group(cache);
3254 return ret;
3255}
3256
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003257static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003258 u64 chunk_offset, struct btrfs_balance_args *bargs)
3259{
3260 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003261 u64 chunk_used, user_thresh;
3262 int ret = 1;
3263
3264 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3265 chunk_used = btrfs_block_group_used(&cache->item);
3266
David Sterbabc309462015-10-20 18:22:13 +02003267 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003268 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003269 else if (bargs->usage > 100)
3270 user_thresh = cache->key.offset;
3271 else
3272 user_thresh = div_factor_fine(cache->key.offset,
3273 bargs->usage);
3274
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003275 if (chunk_used < user_thresh)
3276 ret = 0;
3277
3278 btrfs_put_block_group(cache);
3279 return ret;
3280}
3281
Ilya Dryomov409d4042012-01-16 22:04:47 +02003282static int chunk_devid_filter(struct extent_buffer *leaf,
3283 struct btrfs_chunk *chunk,
3284 struct btrfs_balance_args *bargs)
3285{
3286 struct btrfs_stripe *stripe;
3287 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3288 int i;
3289
3290 for (i = 0; i < num_stripes; i++) {
3291 stripe = btrfs_stripe_nr(chunk, i);
3292 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3293 return 0;
3294 }
3295
3296 return 1;
3297}
3298
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003299/* [pstart, pend) */
3300static int chunk_drange_filter(struct extent_buffer *leaf,
3301 struct btrfs_chunk *chunk,
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003302 struct btrfs_balance_args *bargs)
3303{
3304 struct btrfs_stripe *stripe;
3305 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3306 u64 stripe_offset;
3307 u64 stripe_length;
3308 int factor;
3309 int i;
3310
3311 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3312 return 0;
3313
3314 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003315 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3316 factor = num_stripes / 2;
3317 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3318 factor = num_stripes - 1;
3319 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3320 factor = num_stripes - 2;
3321 } else {
3322 factor = num_stripes;
3323 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003324
3325 for (i = 0; i < num_stripes; i++) {
3326 stripe = btrfs_stripe_nr(chunk, i);
3327 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3328 continue;
3329
3330 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3331 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003332 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003333
3334 if (stripe_offset < bargs->pend &&
3335 stripe_offset + stripe_length > bargs->pstart)
3336 return 0;
3337 }
3338
3339 return 1;
3340}
3341
Ilya Dryomovea671762012-01-16 22:04:48 +02003342/* [vstart, vend) */
3343static int chunk_vrange_filter(struct extent_buffer *leaf,
3344 struct btrfs_chunk *chunk,
3345 u64 chunk_offset,
3346 struct btrfs_balance_args *bargs)
3347{
3348 if (chunk_offset < bargs->vend &&
3349 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3350 /* at least part of the chunk is inside this vrange */
3351 return 0;
3352
3353 return 1;
3354}
3355
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003356static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3357 struct btrfs_chunk *chunk,
3358 struct btrfs_balance_args *bargs)
3359{
3360 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3361
3362 if (bargs->stripes_min <= num_stripes
3363 && num_stripes <= bargs->stripes_max)
3364 return 0;
3365
3366 return 1;
3367}
3368
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003369static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003370 struct btrfs_balance_args *bargs)
3371{
3372 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3373 return 0;
3374
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003375 chunk_type = chunk_to_extended(chunk_type) &
3376 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003377
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003378 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003379 return 1;
3380
3381 return 0;
3382}
3383
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003384static int should_balance_chunk(struct btrfs_fs_info *fs_info,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003385 struct extent_buffer *leaf,
3386 struct btrfs_chunk *chunk, u64 chunk_offset)
3387{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003388 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003389 struct btrfs_balance_args *bargs = NULL;
3390 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3391
3392 /* type filter */
3393 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3394 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3395 return 0;
3396 }
3397
3398 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3399 bargs = &bctl->data;
3400 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3401 bargs = &bctl->sys;
3402 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3403 bargs = &bctl->meta;
3404
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003405 /* profiles filter */
3406 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3407 chunk_profiles_filter(chunk_type, bargs)) {
3408 return 0;
3409 }
3410
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003411 /* usage filter */
3412 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003413 chunk_usage_filter(fs_info, chunk_offset, bargs)) {
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003414 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003415 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003416 chunk_usage_range_filter(fs_info, chunk_offset, bargs)) {
David Sterbabc309462015-10-20 18:22:13 +02003417 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003418 }
3419
Ilya Dryomov409d4042012-01-16 22:04:47 +02003420 /* devid filter */
3421 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3422 chunk_devid_filter(leaf, chunk, bargs)) {
3423 return 0;
3424 }
3425
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003426 /* drange filter, makes sense only with devid filter */
3427 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03003428 chunk_drange_filter(leaf, chunk, bargs)) {
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003429 return 0;
3430 }
3431
Ilya Dryomovea671762012-01-16 22:04:48 +02003432 /* vrange filter */
3433 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3434 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3435 return 0;
3436 }
3437
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003438 /* stripes filter */
3439 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3440 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3441 return 0;
3442 }
3443
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003444 /* soft profile changing mode */
3445 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3446 chunk_soft_convert_filter(chunk_type, bargs)) {
3447 return 0;
3448 }
3449
David Sterba7d824b62014-05-07 17:37:51 +02003450 /*
3451 * limited by count, must be the last filter
3452 */
3453 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3454 if (bargs->limit == 0)
3455 return 0;
3456 else
3457 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003458 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3459 /*
3460 * Same logic as the 'limit' filter; the minimum cannot be
Nicholas D Steeves01327612016-05-19 21:18:45 -04003461 * determined here because we do not have the global information
David Sterba12907fc2015-10-10 17:16:50 +02003462 * about the count of all chunks that satisfy the filters.
3463 */
3464 if (bargs->limit_max == 0)
3465 return 0;
3466 else
3467 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003468 }
3469
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003470 return 1;
3471}
3472
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003473static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003474{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003475 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003476 struct btrfs_root *chunk_root = fs_info->chunk_root;
3477 struct btrfs_root *dev_root = fs_info->dev_root;
3478 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003479 struct btrfs_device *device;
3480 u64 old_size;
3481 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003482 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003483 struct btrfs_chunk *chunk;
Liu Bo5a488b92016-07-12 11:24:21 -07003484 struct btrfs_path *path = NULL;
Chris Masonec44a352008-04-28 15:29:52 -04003485 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003486 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003487 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003488 struct extent_buffer *leaf;
3489 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003490 int ret;
3491 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003492 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003493 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003494 u64 limit_data = bctl->data.limit;
3495 u64 limit_meta = bctl->meta.limit;
3496 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003497 u32 count_data = 0;
3498 u32 count_meta = 0;
3499 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003500 int chunk_reserved = 0;
Liu Bocf25ce52015-12-14 18:29:32 -08003501 u64 bytes_used = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003502
Chris Masonec44a352008-04-28 15:29:52 -04003503 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003504 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003505 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003506 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003507 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003508 size_to_free = min_t(u64, size_to_free, SZ_1M);
Yan Zheng2b820322008-11-17 21:11:30 -05003509 if (!device->writeable ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003510 btrfs_device_get_total_bytes(device) -
3511 btrfs_device_get_bytes_used(device) > size_to_free ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01003512 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04003513 continue;
3514
3515 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003516 if (ret == -ENOSPC)
3517 break;
Liu Bo5a488b92016-07-12 11:24:21 -07003518 if (ret) {
3519 /* btrfs_shrink_device never returns ret > 0 */
3520 WARN_ON(ret > 0);
3521 goto error;
3522 }
Chris Masonec44a352008-04-28 15:29:52 -04003523
Yan, Zhenga22285a2010-05-16 10:48:46 -04003524 trans = btrfs_start_transaction(dev_root, 0);
Liu Bo5a488b92016-07-12 11:24:21 -07003525 if (IS_ERR(trans)) {
3526 ret = PTR_ERR(trans);
3527 btrfs_info_in_rcu(fs_info,
3528 "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu",
3529 rcu_str_deref(device->name), ret,
3530 old_size, old_size - size_to_free);
3531 goto error;
3532 }
Chris Masonec44a352008-04-28 15:29:52 -04003533
3534 ret = btrfs_grow_device(trans, device, old_size);
Liu Bo5a488b92016-07-12 11:24:21 -07003535 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003536 btrfs_end_transaction(trans);
Liu Bo5a488b92016-07-12 11:24:21 -07003537 /* btrfs_grow_device never returns ret > 0 */
3538 WARN_ON(ret > 0);
3539 btrfs_info_in_rcu(fs_info,
3540 "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu",
3541 rcu_str_deref(device->name), ret,
3542 old_size, old_size - size_to_free);
3543 goto error;
3544 }
Chris Masonec44a352008-04-28 15:29:52 -04003545
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003546 btrfs_end_transaction(trans);
Chris Masonec44a352008-04-28 15:29:52 -04003547 }
3548
3549 /* step two, relocate all the chunks */
3550 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003551 if (!path) {
3552 ret = -ENOMEM;
3553 goto error;
3554 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003555
3556 /* zero out stat counters */
3557 spin_lock(&fs_info->balance_lock);
3558 memset(&bctl->stat, 0, sizeof(bctl->stat));
3559 spin_unlock(&fs_info->balance_lock);
3560again:
David Sterba7d824b62014-05-07 17:37:51 +02003561 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003562 /*
3563 * The single value limit and min/max limits use the same bytes
3564 * in the
3565 */
David Sterba7d824b62014-05-07 17:37:51 +02003566 bctl->data.limit = limit_data;
3567 bctl->meta.limit = limit_meta;
3568 bctl->sys.limit = limit_sys;
3569 }
Chris Masonec44a352008-04-28 15:29:52 -04003570 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3571 key.offset = (u64)-1;
3572 key.type = BTRFS_CHUNK_ITEM_KEY;
3573
Chris Masond3977122009-01-05 21:25:51 -05003574 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003575 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003576 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003577 ret = -ECANCELED;
3578 goto error;
3579 }
3580
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003581 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003582 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003583 if (ret < 0) {
3584 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003585 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003586 }
Chris Masonec44a352008-04-28 15:29:52 -04003587
3588 /*
3589 * this shouldn't happen, it means the last relocate
3590 * failed
3591 */
3592 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003593 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003594
3595 ret = btrfs_previous_item(chunk_root, path, 0,
3596 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003597 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003598 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003599 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003600 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003601 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003602
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003603 leaf = path->nodes[0];
3604 slot = path->slots[0];
3605 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3606
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003607 if (found_key.objectid != key.objectid) {
3608 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003609 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003610 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003611
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003612 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003613 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003614
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003615 if (!counting) {
3616 spin_lock(&fs_info->balance_lock);
3617 bctl->stat.considered++;
3618 spin_unlock(&fs_info->balance_lock);
3619 }
3620
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003621 ret = should_balance_chunk(fs_info, leaf, chunk,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003622 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003623
David Sterbab3b4aa72011-04-21 01:20:15 +02003624 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003625 if (!ret) {
3626 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003627 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003628 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003629
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003630 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003631 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003632 spin_lock(&fs_info->balance_lock);
3633 bctl->stat.expected++;
3634 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003635
3636 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3637 count_data++;
3638 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3639 count_sys++;
3640 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3641 count_meta++;
3642
3643 goto loop;
3644 }
3645
3646 /*
3647 * Apply limit_min filter, no need to check if the LIMITS
3648 * filter is used, limit_min is 0 by default
3649 */
3650 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3651 count_data < bctl->data.limit_min)
3652 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3653 count_meta < bctl->meta.limit_min)
3654 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3655 count_sys < bctl->sys.limit_min)) {
3656 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003657 goto loop;
3658 }
3659
Liu Bocf25ce52015-12-14 18:29:32 -08003660 ASSERT(fs_info->data_sinfo);
3661 spin_lock(&fs_info->data_sinfo->lock);
3662 bytes_used = fs_info->data_sinfo->bytes_used;
3663 spin_unlock(&fs_info->data_sinfo->lock);
3664
3665 if ((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3666 !chunk_reserved && !bytes_used) {
Zhao Lei2c9fe832015-11-09 11:51:32 +08003667 trans = btrfs_start_transaction(chunk_root, 0);
3668 if (IS_ERR(trans)) {
3669 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3670 ret = PTR_ERR(trans);
3671 goto error;
3672 }
3673
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003674 ret = btrfs_force_chunk_alloc(trans, fs_info,
Zhao Lei2c9fe832015-11-09 11:51:32 +08003675 BTRFS_BLOCK_GROUP_DATA);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003676 btrfs_end_transaction(trans);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003677 if (ret < 0) {
3678 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3679 goto error;
3680 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003681 chunk_reserved = 1;
3682 }
3683
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003684 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003685 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003686 if (ret && ret != -ENOSPC)
3687 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003688 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003689 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003690 } else {
3691 spin_lock(&fs_info->balance_lock);
3692 bctl->stat.completed++;
3693 spin_unlock(&fs_info->balance_lock);
3694 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003695loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003696 if (found_key.offset == 0)
3697 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003698 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003699 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003700
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003701 if (counting) {
3702 btrfs_release_path(path);
3703 counting = false;
3704 goto again;
3705 }
Chris Masonec44a352008-04-28 15:29:52 -04003706error:
3707 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003708 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003709 btrfs_info(fs_info, "%d enospc errors during balance",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003710 enospc_errors);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003711 if (!ret)
3712 ret = -ENOSPC;
3713 }
3714
Chris Masonec44a352008-04-28 15:29:52 -04003715 return ret;
3716}
3717
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003718/**
3719 * alloc_profile_is_valid - see if a given profile is valid and reduced
3720 * @flags: profile to validate
3721 * @extended: if true @flags is treated as an extended profile
3722 */
3723static int alloc_profile_is_valid(u64 flags, int extended)
3724{
3725 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3726 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3727
3728 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3729
3730 /* 1) check that all other bits are zeroed */
3731 if (flags & ~mask)
3732 return 0;
3733
3734 /* 2) see if profile is reduced */
3735 if (flags == 0)
3736 return !extended; /* "0" is valid for usual profiles */
3737
3738 /* true if exactly one bit set */
3739 return (flags & (flags - 1)) == 0;
3740}
3741
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003742static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3743{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003744 /* cancel requested || normal exit path */
3745 return atomic_read(&fs_info->balance_cancel_req) ||
3746 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3747 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003748}
3749
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003750static void __cancel_balance(struct btrfs_fs_info *fs_info)
3751{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003752 int ret;
3753
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003754 unset_balance_control(fs_info);
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003755 ret = del_balance_item(fs_info);
Liu Bo0f788c52013-03-04 16:25:40 +00003756 if (ret)
Anand Jain34d97002016-03-16 16:43:06 +08003757 btrfs_handle_fs_error(fs_info, ret, NULL);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003758
David Sterba171938e2017-03-28 14:44:21 +02003759 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003760}
3761
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003762/* Non-zero return value signifies invalidity */
3763static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3764 u64 allowed)
3765{
3766 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3767 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3768 (bctl_arg->target & ~allowed)));
3769}
3770
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003771/*
3772 * Should be called with both balance and volume mutexes held
3773 */
3774int btrfs_balance(struct btrfs_balance_control *bctl,
3775 struct btrfs_ioctl_balance_args *bargs)
3776{
3777 struct btrfs_fs_info *fs_info = bctl->fs_info;
Adam Borowski14506122017-03-07 23:34:44 +01003778 u64 meta_target, data_target;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003779 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003780 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003781 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003782 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003783 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003784
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003785 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003786 atomic_read(&fs_info->balance_pause_req) ||
3787 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003788 ret = -EINVAL;
3789 goto out;
3790 }
3791
Ilya Dryomove4837f82012-03-27 17:09:17 +03003792 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3793 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3794 mixed = 1;
3795
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003796 /*
3797 * In case of mixed groups both data and meta should be picked,
3798 * and identical options should be given for both of them.
3799 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003800 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3801 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003802 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3803 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3804 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003805 btrfs_err(fs_info,
3806 "with mixed groups data and metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003807 ret = -EINVAL;
3808 goto out;
3809 }
3810 }
3811
Stefan Behrens8dabb742012-11-06 13:15:27 +01003812 num_devices = fs_info->fs_devices->num_devices;
Liu Bo73beece2015-07-17 16:49:19 +08003813 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrens8dabb742012-11-06 13:15:27 +01003814 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3815 BUG_ON(num_devices < 1);
3816 num_devices--;
3817 }
Liu Bo73beece2015-07-17 16:49:19 +08003818 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Austin S. Hemmelgarn88be1592016-03-23 14:22:59 -04003819 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP;
3820 if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003821 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003822 if (num_devices > 2)
3823 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3824 if (num_devices > 3)
3825 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3826 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003827 if (validate_convert_profile(&bctl->data, allowed)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003828 btrfs_err(fs_info,
3829 "unable to start balance with target data profile %llu",
3830 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003831 ret = -EINVAL;
3832 goto out;
3833 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003834 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003835 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003836 "unable to start balance with target metadata profile %llu",
3837 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003838 ret = -EINVAL;
3839 goto out;
3840 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003841 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003842 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003843 "unable to start balance with target system profile %llu",
3844 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003845 ret = -EINVAL;
3846 goto out;
3847 }
3848
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003849 /* allow to reduce meta or sys integrity only if force set */
3850 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003851 BTRFS_BLOCK_GROUP_RAID10 |
3852 BTRFS_BLOCK_GROUP_RAID5 |
3853 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003854 do {
3855 seq = read_seqbegin(&fs_info->profiles_lock);
3856
3857 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3858 (fs_info->avail_system_alloc_bits & allowed) &&
3859 !(bctl->sys.target & allowed)) ||
3860 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3861 (fs_info->avail_metadata_alloc_bits & allowed) &&
3862 !(bctl->meta.target & allowed))) {
3863 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003864 btrfs_info(fs_info,
3865 "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003866 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003867 btrfs_err(fs_info,
3868 "balance will reduce metadata integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003869 ret = -EINVAL;
3870 goto out;
3871 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003872 }
Miao Xiede98ced2013-01-29 10:13:12 +00003873 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003874
Adam Borowski14506122017-03-07 23:34:44 +01003875 /* if we're not converting, the target field is uninitialized */
3876 meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3877 bctl->meta.target : fs_info->avail_metadata_alloc_bits;
3878 data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3879 bctl->data.target : fs_info->avail_data_alloc_bits;
3880 if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) <
3881 btrfs_get_num_tolerated_disk_barrier_failures(data_target)) {
Sam Tygieree592d02016-01-06 08:46:12 +00003882 btrfs_warn(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003883 "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
Adam Borowski14506122017-03-07 23:34:44 +01003884 meta_target, data_target);
Sam Tygieree592d02016-01-06 08:46:12 +00003885 }
3886
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003887 ret = insert_balance_item(fs_info, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003888 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003889 goto out;
3890
Ilya Dryomov59641012012-01-16 22:04:48 +02003891 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3892 BUG_ON(ret == -EEXIST);
3893 set_balance_control(bctl);
3894 } else {
3895 BUG_ON(ret != -EEXIST);
3896 spin_lock(&fs_info->balance_lock);
3897 update_balance_args(bctl);
3898 spin_unlock(&fs_info->balance_lock);
3899 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003900
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003901 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003902 mutex_unlock(&fs_info->balance_mutex);
3903
3904 ret = __btrfs_balance(fs_info);
3905
3906 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003907 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003908
3909 if (bargs) {
3910 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003911 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003912 }
3913
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003914 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3915 balance_need_close(fs_info)) {
3916 __cancel_balance(fs_info);
3917 }
3918
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003919 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003920
3921 return ret;
3922out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003923 if (bctl->flags & BTRFS_BALANCE_RESUME)
3924 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003925 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003926 kfree(bctl);
David Sterba171938e2017-03-28 14:44:21 +02003927 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003928 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003929 return ret;
3930}
3931
3932static int balance_kthread(void *data)
3933{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003934 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003935 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003936
3937 mutex_lock(&fs_info->volume_mutex);
3938 mutex_lock(&fs_info->balance_mutex);
3939
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003940 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003941 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003942 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003943 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003944
3945 mutex_unlock(&fs_info->balance_mutex);
3946 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003947
Ilya Dryomov59641012012-01-16 22:04:48 +02003948 return ret;
3949}
3950
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003951int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3952{
3953 struct task_struct *tsk;
3954
3955 spin_lock(&fs_info->balance_lock);
3956 if (!fs_info->balance_ctl) {
3957 spin_unlock(&fs_info->balance_lock);
3958 return 0;
3959 }
3960 spin_unlock(&fs_info->balance_lock);
3961
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003962 if (btrfs_test_opt(fs_info, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003963 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003964 return 0;
3965 }
3966
3967 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303968 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003969}
3970
Ilya Dryomov68310a52012-06-22 12:24:12 -06003971int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003972{
Ilya Dryomov59641012012-01-16 22:04:48 +02003973 struct btrfs_balance_control *bctl;
3974 struct btrfs_balance_item *item;
3975 struct btrfs_disk_balance_args disk_bargs;
3976 struct btrfs_path *path;
3977 struct extent_buffer *leaf;
3978 struct btrfs_key key;
3979 int ret;
3980
3981 path = btrfs_alloc_path();
3982 if (!path)
3983 return -ENOMEM;
3984
Ilya Dryomov68310a52012-06-22 12:24:12 -06003985 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003986 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06003987 key.offset = 0;
3988
3989 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3990 if (ret < 0)
3991 goto out;
3992 if (ret > 0) { /* ret = -ENOENT; */
3993 ret = 0;
3994 goto out;
3995 }
3996
Ilya Dryomov59641012012-01-16 22:04:48 +02003997 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3998 if (!bctl) {
3999 ret = -ENOMEM;
4000 goto out;
4001 }
4002
Ilya Dryomov59641012012-01-16 22:04:48 +02004003 leaf = path->nodes[0];
4004 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
4005
Ilya Dryomov68310a52012-06-22 12:24:12 -06004006 bctl->fs_info = fs_info;
4007 bctl->flags = btrfs_balance_flags(leaf, item);
4008 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02004009
4010 btrfs_balance_data(leaf, item, &disk_bargs);
4011 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
4012 btrfs_balance_meta(leaf, item, &disk_bargs);
4013 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
4014 btrfs_balance_sys(leaf, item, &disk_bargs);
4015 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
4016
David Sterba171938e2017-03-28 14:44:21 +02004017 WARN_ON(test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004018
Ilya Dryomov68310a52012-06-22 12:24:12 -06004019 mutex_lock(&fs_info->volume_mutex);
4020 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004021
Ilya Dryomov68310a52012-06-22 12:24:12 -06004022 set_balance_control(bctl);
4023
4024 mutex_unlock(&fs_info->balance_mutex);
4025 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004026out:
4027 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004028 return ret;
4029}
4030
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004031int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
4032{
4033 int ret = 0;
4034
4035 mutex_lock(&fs_info->balance_mutex);
4036 if (!fs_info->balance_ctl) {
4037 mutex_unlock(&fs_info->balance_mutex);
4038 return -ENOTCONN;
4039 }
4040
4041 if (atomic_read(&fs_info->balance_running)) {
4042 atomic_inc(&fs_info->balance_pause_req);
4043 mutex_unlock(&fs_info->balance_mutex);
4044
4045 wait_event(fs_info->balance_wait_q,
4046 atomic_read(&fs_info->balance_running) == 0);
4047
4048 mutex_lock(&fs_info->balance_mutex);
4049 /* we are good with balance_ctl ripped off from under us */
4050 BUG_ON(atomic_read(&fs_info->balance_running));
4051 atomic_dec(&fs_info->balance_pause_req);
4052 } else {
4053 ret = -ENOTCONN;
4054 }
4055
4056 mutex_unlock(&fs_info->balance_mutex);
4057 return ret;
4058}
4059
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004060int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
4061{
David Howellsbc98a422017-07-17 08:45:34 +01004062 if (sb_rdonly(fs_info->sb))
Ilya Dryomove649e582013-10-10 20:40:21 +03004063 return -EROFS;
4064
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004065 mutex_lock(&fs_info->balance_mutex);
4066 if (!fs_info->balance_ctl) {
4067 mutex_unlock(&fs_info->balance_mutex);
4068 return -ENOTCONN;
4069 }
4070
4071 atomic_inc(&fs_info->balance_cancel_req);
4072 /*
4073 * if we are running just wait and return, balance item is
4074 * deleted in btrfs_balance in this case
4075 */
4076 if (atomic_read(&fs_info->balance_running)) {
4077 mutex_unlock(&fs_info->balance_mutex);
4078 wait_event(fs_info->balance_wait_q,
4079 atomic_read(&fs_info->balance_running) == 0);
4080 mutex_lock(&fs_info->balance_mutex);
4081 } else {
4082 /* __cancel_balance needs volume_mutex */
4083 mutex_unlock(&fs_info->balance_mutex);
4084 mutex_lock(&fs_info->volume_mutex);
4085 mutex_lock(&fs_info->balance_mutex);
4086
4087 if (fs_info->balance_ctl)
4088 __cancel_balance(fs_info);
4089
4090 mutex_unlock(&fs_info->volume_mutex);
4091 }
4092
4093 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
4094 atomic_dec(&fs_info->balance_cancel_req);
4095 mutex_unlock(&fs_info->balance_mutex);
4096 return 0;
4097}
4098
Stefan Behrens803b2f52013-08-15 17:11:21 +02004099static int btrfs_uuid_scan_kthread(void *data)
4100{
4101 struct btrfs_fs_info *fs_info = data;
4102 struct btrfs_root *root = fs_info->tree_root;
4103 struct btrfs_key key;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004104 struct btrfs_path *path = NULL;
4105 int ret = 0;
4106 struct extent_buffer *eb;
4107 int slot;
4108 struct btrfs_root_item root_item;
4109 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004110 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004111
4112 path = btrfs_alloc_path();
4113 if (!path) {
4114 ret = -ENOMEM;
4115 goto out;
4116 }
4117
4118 key.objectid = 0;
4119 key.type = BTRFS_ROOT_ITEM_KEY;
4120 key.offset = 0;
4121
Stefan Behrens803b2f52013-08-15 17:11:21 +02004122 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004123 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004124 if (ret) {
4125 if (ret > 0)
4126 ret = 0;
4127 break;
4128 }
4129
4130 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4131 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4132 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4133 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4134 goto skip;
4135
4136 eb = path->nodes[0];
4137 slot = path->slots[0];
4138 item_size = btrfs_item_size_nr(eb, slot);
4139 if (item_size < sizeof(root_item))
4140 goto skip;
4141
Stefan Behrens803b2f52013-08-15 17:11:21 +02004142 read_extent_buffer(eb, &root_item,
4143 btrfs_item_ptr_offset(eb, slot),
4144 (int)sizeof(root_item));
4145 if (btrfs_root_refs(&root_item) == 0)
4146 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004147
4148 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4149 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4150 if (trans)
4151 goto update_tree;
4152
4153 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004154 /*
4155 * 1 - subvol uuid item
4156 * 1 - received_subvol uuid item
4157 */
4158 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4159 if (IS_ERR(trans)) {
4160 ret = PTR_ERR(trans);
4161 break;
4162 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004163 continue;
4164 } else {
4165 goto skip;
4166 }
4167update_tree:
4168 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004169 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004170 root_item.uuid,
4171 BTRFS_UUID_KEY_SUBVOL,
4172 key.objectid);
4173 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004174 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004175 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004176 break;
4177 }
4178 }
4179
4180 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004181 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004182 root_item.received_uuid,
4183 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4184 key.objectid);
4185 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004186 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004187 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004188 break;
4189 }
4190 }
4191
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004192skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004193 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004194 ret = btrfs_end_transaction(trans);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004195 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004196 if (ret)
4197 break;
4198 }
4199
Stefan Behrens803b2f52013-08-15 17:11:21 +02004200 btrfs_release_path(path);
4201 if (key.offset < (u64)-1) {
4202 key.offset++;
4203 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4204 key.offset = 0;
4205 key.type = BTRFS_ROOT_ITEM_KEY;
4206 } else if (key.objectid < (u64)-1) {
4207 key.offset = 0;
4208 key.type = BTRFS_ROOT_ITEM_KEY;
4209 key.objectid++;
4210 } else {
4211 break;
4212 }
4213 cond_resched();
4214 }
4215
4216out:
4217 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004218 if (trans && !IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004219 btrfs_end_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004220 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004221 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004222 else
Josef Bacikafcdd122016-09-02 15:40:02 -04004223 set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004224 up(&fs_info->uuid_tree_rescan_sem);
4225 return 0;
4226}
4227
Stefan Behrens70f80172013-08-15 17:11:23 +02004228/*
4229 * Callback for btrfs_uuid_tree_iterate().
4230 * returns:
4231 * 0 check succeeded, the entry is not outdated.
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08004232 * < 0 if an error occurred.
Stefan Behrens70f80172013-08-15 17:11:23 +02004233 * > 0 if the check failed, which means the caller shall remove the entry.
4234 */
4235static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4236 u8 *uuid, u8 type, u64 subid)
4237{
4238 struct btrfs_key key;
4239 int ret = 0;
4240 struct btrfs_root *subvol_root;
4241
4242 if (type != BTRFS_UUID_KEY_SUBVOL &&
4243 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4244 goto out;
4245
4246 key.objectid = subid;
4247 key.type = BTRFS_ROOT_ITEM_KEY;
4248 key.offset = (u64)-1;
4249 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4250 if (IS_ERR(subvol_root)) {
4251 ret = PTR_ERR(subvol_root);
4252 if (ret == -ENOENT)
4253 ret = 1;
4254 goto out;
4255 }
4256
4257 switch (type) {
4258 case BTRFS_UUID_KEY_SUBVOL:
4259 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4260 ret = 1;
4261 break;
4262 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4263 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4264 BTRFS_UUID_SIZE))
4265 ret = 1;
4266 break;
4267 }
4268
4269out:
4270 return ret;
4271}
4272
4273static int btrfs_uuid_rescan_kthread(void *data)
4274{
4275 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4276 int ret;
4277
4278 /*
4279 * 1st step is to iterate through the existing UUID tree and
4280 * to delete all entries that contain outdated data.
4281 * 2nd step is to add all missing entries to the UUID tree.
4282 */
4283 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4284 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004285 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004286 up(&fs_info->uuid_tree_rescan_sem);
4287 return ret;
4288 }
4289 return btrfs_uuid_scan_kthread(data);
4290}
4291
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004292int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4293{
4294 struct btrfs_trans_handle *trans;
4295 struct btrfs_root *tree_root = fs_info->tree_root;
4296 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004297 struct task_struct *task;
4298 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004299
4300 /*
4301 * 1 - root node
4302 * 1 - root item
4303 */
4304 trans = btrfs_start_transaction(tree_root, 2);
4305 if (IS_ERR(trans))
4306 return PTR_ERR(trans);
4307
4308 uuid_root = btrfs_create_tree(trans, fs_info,
4309 BTRFS_UUID_TREE_OBJECTID);
4310 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004311 ret = PTR_ERR(uuid_root);
Jeff Mahoney66642832016-06-10 18:19:25 -04004312 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004313 btrfs_end_transaction(trans);
David Sterba6d13f542015-04-24 19:12:01 +02004314 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004315 }
4316
4317 fs_info->uuid_root = uuid_root;
4318
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004319 ret = btrfs_commit_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004320 if (ret)
4321 return ret;
4322
4323 down(&fs_info->uuid_tree_rescan_sem);
4324 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4325 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004326 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004327 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004328 up(&fs_info->uuid_tree_rescan_sem);
4329 return PTR_ERR(task);
4330 }
4331
4332 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004333}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004334
Stefan Behrens70f80172013-08-15 17:11:23 +02004335int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4336{
4337 struct task_struct *task;
4338
4339 down(&fs_info->uuid_tree_rescan_sem);
4340 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4341 if (IS_ERR(task)) {
4342 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004343 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004344 up(&fs_info->uuid_tree_rescan_sem);
4345 return PTR_ERR(task);
4346 }
4347
4348 return 0;
4349}
4350
Chris Mason8f18cf12008-04-25 16:53:30 -04004351/*
4352 * shrinking a device means finding all of the device extents past
4353 * the new size, and then following the back refs to the chunks.
4354 * The chunk relocation code actually frees the device extent
4355 */
4356int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4357{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004358 struct btrfs_fs_info *fs_info = device->fs_info;
4359 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04004360 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04004361 struct btrfs_dev_extent *dev_extent = NULL;
4362 struct btrfs_path *path;
4363 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004364 u64 chunk_offset;
4365 int ret;
4366 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004367 int failed = 0;
4368 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004369 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004370 struct extent_buffer *l;
4371 struct btrfs_key key;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004372 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004373 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004374 u64 old_size = btrfs_device_get_total_bytes(device);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004375 u64 diff;
4376
4377 new_size = round_down(new_size, fs_info->sectorsize);
Nikolay Borisov0e4324a2017-07-21 11:28:24 +03004378 diff = round_down(old_size - new_size, fs_info->sectorsize);
Chris Mason8f18cf12008-04-25 16:53:30 -04004379
Stefan Behrens63a212a2012-11-05 18:29:28 +01004380 if (device->is_tgtdev_for_dev_replace)
4381 return -EINVAL;
4382
Chris Mason8f18cf12008-04-25 16:53:30 -04004383 path = btrfs_alloc_path();
4384 if (!path)
4385 return -ENOMEM;
4386
David Sterbae4058b52015-11-27 16:31:35 +01004387 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04004388
David Sterba34441362016-10-04 19:34:27 +02004389 mutex_lock(&fs_info->chunk_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04004390
Miao Xie7cc8e582014-09-03 21:35:38 +08004391 btrfs_device_set_total_bytes(device, new_size);
Josef Bacik2bf64752011-09-26 17:12:22 -04004392 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05004393 device->fs_devices->total_rw_bytes -= diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004394 atomic64_sub(diff, &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04004395 }
David Sterba34441362016-10-04 19:34:27 +02004396 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004397
Josef Bacikba1bf482009-09-11 16:11:19 -04004398again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004399 key.objectid = device->devid;
4400 key.offset = (u64)-1;
4401 key.type = BTRFS_DEV_EXTENT_KEY;
4402
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004403 do {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004404 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004405 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004406 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004407 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004408 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004409 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004410
4411 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004412 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004413 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004414 if (ret < 0)
4415 goto done;
4416 if (ret) {
4417 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004418 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004419 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004420 }
4421
4422 l = path->nodes[0];
4423 slot = path->slots[0];
4424 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4425
Josef Bacikba1bf482009-09-11 16:11:19 -04004426 if (key.objectid != device->devid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004427 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004428 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004429 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004430 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004431
4432 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4433 length = btrfs_dev_extent_length(l, dev_extent);
4434
Josef Bacikba1bf482009-09-11 16:11:19 -04004435 if (key.offset + length <= new_size) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004436 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004437 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004438 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004439 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004440
Chris Mason8f18cf12008-04-25 16:53:30 -04004441 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004442 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004443
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004444 ret = btrfs_relocate_chunk(fs_info, chunk_offset);
4445 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004446 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004447 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004448 if (ret == -ENOSPC)
4449 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004450 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004451
4452 if (failed && !retried) {
4453 failed = 0;
4454 retried = true;
4455 goto again;
4456 } else if (failed && retried) {
4457 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004458 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004459 }
4460
Chris Balld6397ba2009-04-27 07:29:03 -04004461 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004462 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004463 if (IS_ERR(trans)) {
4464 ret = PTR_ERR(trans);
4465 goto done;
4466 }
4467
David Sterba34441362016-10-04 19:34:27 +02004468 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004469
4470 /*
4471 * We checked in the above loop all device extents that were already in
4472 * the device tree. However before we have updated the device's
4473 * total_bytes to the new size, we might have had chunk allocations that
4474 * have not complete yet (new block groups attached to transaction
4475 * handles), and therefore their device extents were not yet in the
4476 * device tree and we missed them in the loop above. So if we have any
4477 * pending chunk using a device extent that overlaps the device range
4478 * that we can not use anymore, commit the current transaction and
4479 * repeat the search on the device tree - this way we guarantee we will
4480 * not have chunks using device extents that end beyond 'new_size'.
4481 */
4482 if (!checked_pending_chunks) {
4483 u64 start = new_size;
4484 u64 len = old_size - new_size;
4485
Jeff Mahoney499f3772015-06-15 09:41:17 -04004486 if (contains_pending_extent(trans->transaction, device,
4487 &start, len)) {
David Sterba34441362016-10-04 19:34:27 +02004488 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004489 checked_pending_chunks = true;
4490 failed = 0;
4491 retried = false;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004492 ret = btrfs_commit_transaction(trans);
Filipe Manana53e489b2015-06-02 14:43:21 +01004493 if (ret)
4494 goto done;
4495 goto again;
4496 }
4497 }
4498
Miao Xie7cc8e582014-09-03 21:35:38 +08004499 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004500 if (list_empty(&device->resized_list))
4501 list_add_tail(&device->resized_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004502 &fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004503
Chris Balld6397ba2009-04-27 07:29:03 -04004504 WARN_ON(diff > old_total);
Nikolay Borisov7dfb8be2017-06-16 14:39:20 +03004505 btrfs_set_super_total_bytes(super_copy,
4506 round_down(old_total - diff, fs_info->sectorsize));
David Sterba34441362016-10-04 19:34:27 +02004507 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08004508
4509 /* Now btrfs_update_device() will change the on-disk size. */
4510 ret = btrfs_update_device(trans, device);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004511 btrfs_end_transaction(trans);
Chris Mason8f18cf12008-04-25 16:53:30 -04004512done:
4513 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004514 if (ret) {
David Sterba34441362016-10-04 19:34:27 +02004515 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004516 btrfs_device_set_total_bytes(device, old_size);
4517 if (device->writeable)
4518 device->fs_devices->total_rw_bytes += diff;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004519 atomic64_add(diff, &fs_info->free_chunk_space);
David Sterba34441362016-10-04 19:34:27 +02004520 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004521 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004522 return ret;
4523}
4524
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004525static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04004526 struct btrfs_key *key,
4527 struct btrfs_chunk *chunk, int item_size)
4528{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004529 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004530 struct btrfs_disk_key disk_key;
4531 u32 array_size;
4532 u8 *ptr;
4533
David Sterba34441362016-10-04 19:34:27 +02004534 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004535 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004536 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004537 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
David Sterba34441362016-10-04 19:34:27 +02004538 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004539 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004540 }
Chris Mason0b86a832008-03-24 15:01:56 -04004541
4542 ptr = super_copy->sys_chunk_array + array_size;
4543 btrfs_cpu_key_to_disk(&disk_key, key);
4544 memcpy(ptr, &disk_key, sizeof(disk_key));
4545 ptr += sizeof(disk_key);
4546 memcpy(ptr, chunk, item_size);
4547 item_size += sizeof(disk_key);
4548 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
David Sterba34441362016-10-04 19:34:27 +02004549 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004550
Chris Mason0b86a832008-03-24 15:01:56 -04004551 return 0;
4552}
4553
Miao Xieb2117a32011-01-05 10:07:28 +00004554/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004555 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004556 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004557static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004558{
Arne Jansen73c5de02011-04-12 12:07:57 +02004559 const struct btrfs_device_info *di_a = a;
4560 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004561
Arne Jansen73c5de02011-04-12 12:07:57 +02004562 if (di_a->max_avail > di_b->max_avail)
4563 return -1;
4564 if (di_a->max_avail < di_b->max_avail)
4565 return 1;
4566 if (di_a->total_avail > di_b->total_avail)
4567 return -1;
4568 if (di_a->total_avail < di_b->total_avail)
4569 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004570 return 0;
4571}
4572
David Woodhouse53b381b2013-01-29 18:40:14 -05004573static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4574{
Zhao Leiffe2d202015-01-20 15:11:44 +08004575 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004576 return;
4577
Miao Xieceda0862013-04-11 10:30:16 +00004578 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004579}
4580
Jeff Mahoneyda170662016-06-15 09:22:56 -04004581#define BTRFS_MAX_DEVS(r) ((BTRFS_MAX_ITEM_SIZE(r->fs_info) \
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004582 - sizeof(struct btrfs_chunk)) \
4583 / sizeof(struct btrfs_stripe) + 1)
4584
4585#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4586 - 2 * sizeof(struct btrfs_disk_key) \
4587 - 2 * sizeof(struct btrfs_chunk)) \
4588 / sizeof(struct btrfs_stripe) + 1)
4589
Miao Xieb2117a32011-01-05 10:07:28 +00004590static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
David Sterba72b468c2017-02-10 19:46:27 +01004591 u64 start, u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004592{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004593 struct btrfs_fs_info *info = trans->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004594 struct btrfs_fs_devices *fs_devices = info->fs_devices;
Nikolay Borisovebcc9302017-06-27 10:02:24 +03004595 struct btrfs_device *device;
Arne Jansen73c5de02011-04-12 12:07:57 +02004596 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004597 struct extent_map_tree *em_tree;
4598 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004599 struct btrfs_device_info *devices_info = NULL;
4600 u64 total_avail;
4601 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004602 int data_stripes; /* number of stripes that count for
4603 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004604 int sub_stripes; /* sub_stripes info for map */
4605 int dev_stripes; /* stripes per dev */
4606 int devs_max; /* max devs to use */
4607 int devs_min; /* min devs needed */
4608 int devs_increment; /* ndevs has to be a multiple of this */
4609 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004610 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004611 u64 max_stripe_size;
4612 u64 max_chunk_size;
4613 u64 stripe_size;
4614 u64 num_bytes;
4615 int ndevs;
4616 int i;
4617 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004618 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004619
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004620 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004621
Miao Xieb2117a32011-01-05 10:07:28 +00004622 if (list_empty(&fs_devices->alloc_list))
4623 return -ENOSPC;
4624
Liu Bo31e50222012-11-21 14:18:10 +00004625 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004626
Liu Bo31e50222012-11-21 14:18:10 +00004627 sub_stripes = btrfs_raid_array[index].sub_stripes;
4628 dev_stripes = btrfs_raid_array[index].dev_stripes;
4629 devs_max = btrfs_raid_array[index].devs_max;
4630 devs_min = btrfs_raid_array[index].devs_min;
4631 devs_increment = btrfs_raid_array[index].devs_increment;
4632 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004633
4634 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004635 max_stripe_size = SZ_1G;
Arne Jansen73c5de02011-04-12 12:07:57 +02004636 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004637 if (!devs_max)
4638 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004639 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004640 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004641 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4642 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004643 else
Byongho Leeee221842015-12-15 01:42:10 +09004644 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004645 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004646 if (!devs_max)
4647 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004648 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004649 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004650 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004651 if (!devs_max)
4652 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004653 } else {
David Sterba351fd352014-05-15 16:48:20 +02004654 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004655 type);
4656 BUG_ON(1);
4657 }
4658
4659 /* we don't want a chunk larger than 10% of writeable space */
4660 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4661 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004662
David Sterba31e818f2015-02-20 18:00:26 +01004663 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004664 GFP_NOFS);
4665 if (!devices_info)
4666 return -ENOMEM;
4667
Arne Jansen73c5de02011-04-12 12:07:57 +02004668 /*
4669 * in the first pass through the devices list, we gather information
4670 * about the available holes on each device.
4671 */
4672 ndevs = 0;
Nikolay Borisovebcc9302017-06-27 10:02:24 +03004673 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Arne Jansen73c5de02011-04-12 12:07:57 +02004674 u64 max_avail;
4675 u64 dev_offset;
4676
Arne Jansen73c5de02011-04-12 12:07:57 +02004677 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004678 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004679 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004680 continue;
4681 }
4682
Stefan Behrens63a212a2012-11-05 18:29:28 +01004683 if (!device->in_fs_metadata ||
4684 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004685 continue;
4686
4687 if (device->total_bytes > device->bytes_used)
4688 total_avail = device->total_bytes - device->bytes_used;
4689 else
4690 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004691
4692 /* If there is no space on this device, skip it. */
4693 if (total_avail == 0)
4694 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004695
Josef Bacik6df9a952013-06-27 13:22:46 -04004696 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004697 max_stripe_size * dev_stripes,
4698 &dev_offset, &max_avail);
4699 if (ret && ret != -ENOSPC)
4700 goto error;
4701
4702 if (ret == 0)
4703 max_avail = max_stripe_size * dev_stripes;
4704
4705 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4706 continue;
4707
Eric Sandeen063d0062013-01-31 00:55:01 +00004708 if (ndevs == fs_devices->rw_devices) {
4709 WARN(1, "%s: found more than %llu devices\n",
4710 __func__, fs_devices->rw_devices);
4711 break;
4712 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004713 devices_info[ndevs].dev_offset = dev_offset;
4714 devices_info[ndevs].max_avail = max_avail;
4715 devices_info[ndevs].total_avail = total_avail;
4716 devices_info[ndevs].dev = device;
4717 ++ndevs;
4718 }
4719
4720 /*
4721 * now sort the devices by hole size / available space
4722 */
4723 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4724 btrfs_cmp_device_info, NULL);
4725
4726 /* round down to number of usable stripes */
Nikolay Borisove5600fd2017-06-27 10:02:25 +03004727 ndevs = round_down(ndevs, devs_increment);
Arne Jansen73c5de02011-04-12 12:07:57 +02004728
4729 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4730 ret = -ENOSPC;
4731 goto error;
4732 }
4733
Nikolay Borisovf148ef42017-06-27 10:02:26 +03004734 ndevs = min(ndevs, devs_max);
4735
Arne Jansen73c5de02011-04-12 12:07:57 +02004736 /*
4737 * the primary goal is to maximize the number of stripes, so use as many
4738 * devices as possible, even if the stripes are not maximum sized.
4739 */
4740 stripe_size = devices_info[ndevs-1].max_avail;
4741 num_stripes = ndevs * dev_stripes;
4742
David Woodhouse53b381b2013-01-29 18:40:14 -05004743 /*
4744 * this will have to be fixed for RAID1 and RAID10 over
4745 * more drives
4746 */
4747 data_stripes = num_stripes / ncopies;
4748
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004749 if (type & BTRFS_BLOCK_GROUP_RAID5)
David Woodhouse53b381b2013-01-29 18:40:14 -05004750 data_stripes = num_stripes - 1;
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004751
4752 if (type & BTRFS_BLOCK_GROUP_RAID6)
David Woodhouse53b381b2013-01-29 18:40:14 -05004753 data_stripes = num_stripes - 2;
Chris Mason86db2572013-02-20 16:23:40 -05004754
4755 /*
4756 * Use the number of data stripes to figure out how big this chunk
4757 * is really going to be in terms of logical address space,
4758 * and compare that answer with the max chunk size
4759 */
4760 if (stripe_size * data_stripes > max_chunk_size) {
4761 u64 mask = (1ULL << 24) - 1;
David Sterbab8b93ad2015-01-16 17:26:13 +01004762
4763 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004764
4765 /* bump the answer up to a 16MB boundary */
4766 stripe_size = (stripe_size + mask) & ~mask;
4767
4768 /* but don't go higher than the limits we found
4769 * while searching for free extents
4770 */
4771 if (stripe_size > devices_info[ndevs-1].max_avail)
4772 stripe_size = devices_info[ndevs-1].max_avail;
4773 }
4774
David Sterbab8b93ad2015-01-16 17:26:13 +01004775 stripe_size = div_u64(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004776
4777 /* align to BTRFS_STRIPE_LEN */
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004778 stripe_size = round_down(stripe_size, BTRFS_STRIPE_LEN);
Arne Jansen73c5de02011-04-12 12:07:57 +02004779
Miao Xieb2117a32011-01-05 10:07:28 +00004780 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4781 if (!map) {
4782 ret = -ENOMEM;
4783 goto error;
4784 }
4785 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004786
Arne Jansen73c5de02011-04-12 12:07:57 +02004787 for (i = 0; i < ndevs; ++i) {
4788 for (j = 0; j < dev_stripes; ++j) {
4789 int s = i * dev_stripes + j;
4790 map->stripes[s].dev = devices_info[i].dev;
4791 map->stripes[s].physical = devices_info[i].dev_offset +
4792 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004793 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004794 }
Nikolay Borisov500ceed2017-07-14 09:55:41 +03004795 map->stripe_len = BTRFS_STRIPE_LEN;
4796 map->io_align = BTRFS_STRIPE_LEN;
4797 map->io_width = BTRFS_STRIPE_LEN;
Chris Mason593060d2008-03-25 16:50:33 -04004798 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004799 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004800
David Woodhouse53b381b2013-01-29 18:40:14 -05004801 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004802
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004803 trace_btrfs_chunk_alloc(info, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004804
David Sterba172ddd62011-04-21 00:48:27 +02004805 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004806 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004807 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004808 ret = -ENOMEM;
4809 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004810 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004811 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004812 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004813 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004814 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004815 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004816 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004817 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004818
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004819 em_tree = &info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004820 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004821 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004822 if (ret) {
Nikolay Borisov1efb72a2017-08-21 12:43:49 +03004823 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004824 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004825 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004826 }
Yan Zheng2b820322008-11-17 21:11:30 -05004827
Nikolay Borisov1efb72a2017-08-21 12:43:49 +03004828 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4829 refcount_inc(&em->refs);
4830 write_unlock(&em_tree->lock);
4831
Nikolay Borisov01744842017-07-27 14:22:11 +03004832 ret = btrfs_make_block_group(trans, info, 0, type, start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004833 if (ret)
4834 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004835
Miao Xie7cc8e582014-09-03 21:35:38 +08004836 for (i = 0; i < map->num_stripes; i++) {
4837 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4838 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4839 }
Miao Xie43530c42014-09-03 21:35:36 +08004840
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004841 atomic64_sub(stripe_size * map->num_stripes, &info->free_chunk_space);
Miao Xie1c116182014-09-03 21:35:37 +08004842
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004843 free_extent_map(em);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004844 check_raid56_incompat_flag(info, type);
David Woodhouse53b381b2013-01-29 18:40:14 -05004845
Miao Xieb2117a32011-01-05 10:07:28 +00004846 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004847 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004848
Josef Bacik6df9a952013-06-27 13:22:46 -04004849error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004850 write_lock(&em_tree->lock);
4851 remove_extent_mapping(em_tree, em);
4852 write_unlock(&em_tree->lock);
4853
4854 /* One for our allocation */
4855 free_extent_map(em);
4856 /* One for the tree reference */
4857 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004858 /* One for the pending_chunks list reference */
4859 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004860error:
Miao Xieb2117a32011-01-05 10:07:28 +00004861 kfree(devices_info);
4862 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004863}
4864
Josef Bacik6df9a952013-06-27 13:22:46 -04004865int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004866 struct btrfs_fs_info *fs_info,
Josef Bacik6df9a952013-06-27 13:22:46 -04004867 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004868{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004869 struct btrfs_root *extent_root = fs_info->extent_root;
4870 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05004871 struct btrfs_key key;
Yan Zheng2b820322008-11-17 21:11:30 -05004872 struct btrfs_device *device;
4873 struct btrfs_chunk *chunk;
4874 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004875 struct extent_map *em;
4876 struct map_lookup *map;
4877 size_t item_size;
4878 u64 dev_offset;
4879 u64 stripe_size;
4880 int i = 0;
Chris Mason140e6392015-12-23 13:30:51 -08004881 int ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004882
Liu Bo592d92e2017-03-14 13:33:55 -07004883 em = get_chunk_map(fs_info, chunk_offset, chunk_size);
4884 if (IS_ERR(em))
4885 return PTR_ERR(em);
Josef Bacik6df9a952013-06-27 13:22:46 -04004886
Jeff Mahoney95617d62015-06-03 10:55:48 -04004887 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004888 item_size = btrfs_chunk_item_size(map->num_stripes);
4889 stripe_size = em->orig_block_len;
4890
4891 chunk = kzalloc(item_size, GFP_NOFS);
4892 if (!chunk) {
4893 ret = -ENOMEM;
4894 goto out;
4895 }
4896
Filipe Manana50460e32015-11-20 10:42:47 +00004897 /*
4898 * Take the device list mutex to prevent races with the final phase of
4899 * a device replace operation that replaces the device object associated
4900 * with the map's stripes, because the device object's id can change
4901 * at any time during that final phase of the device replace operation
4902 * (dev-replace.c:btrfs_dev_replace_finishing()).
4903 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004904 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04004905 for (i = 0; i < map->num_stripes; i++) {
4906 device = map->stripes[i].dev;
4907 dev_offset = map->stripes[i].physical;
4908
Yan Zheng2b820322008-11-17 21:11:30 -05004909 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004910 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004911 break;
Nikolay Borisovb5d90712017-08-18 17:58:23 +03004912 ret = btrfs_alloc_dev_extent(trans, device, chunk_offset,
4913 dev_offset, stripe_size);
Josef Bacik6df9a952013-06-27 13:22:46 -04004914 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004915 break;
4916 }
4917 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004918 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe Manana50460e32015-11-20 10:42:47 +00004919 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004920 }
4921
Yan Zheng2b820322008-11-17 21:11:30 -05004922 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004923 for (i = 0; i < map->num_stripes; i++) {
4924 device = map->stripes[i].dev;
4925 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004926
4927 btrfs_set_stack_stripe_devid(stripe, device->devid);
4928 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4929 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4930 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004931 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004932 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05004933
4934 btrfs_set_stack_chunk_length(chunk, chunk_size);
4935 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4936 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4937 btrfs_set_stack_chunk_type(chunk, map->type);
4938 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4939 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4940 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004941 btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize);
Yan Zheng2b820322008-11-17 21:11:30 -05004942 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4943
4944 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4945 key.type = BTRFS_CHUNK_ITEM_KEY;
4946 key.offset = chunk_offset;
4947
4948 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004949 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4950 /*
4951 * TODO: Cleanup of inserted chunk root in case of
4952 * failure.
4953 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004954 ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004955 }
liubo1abe9b82011-03-24 11:18:59 +00004956
Josef Bacik6df9a952013-06-27 13:22:46 -04004957out:
Yan Zheng2b820322008-11-17 21:11:30 -05004958 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004959 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004960 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004961}
4962
4963/*
4964 * Chunk allocation falls into two parts. The first part does works
4965 * that make the new allocated chunk useable, but not do any operation
4966 * that modifies the chunk tree. The second part does the works that
4967 * require modifying the chunk tree. This division is important for the
4968 * bootstrap process of adding storage to a seed btrfs.
4969 */
4970int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004971 struct btrfs_fs_info *fs_info, u64 type)
Yan Zheng2b820322008-11-17 21:11:30 -05004972{
4973 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004974
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004975 ASSERT(mutex_is_locked(&fs_info->chunk_mutex));
4976 chunk_offset = find_next_chunk(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01004977 return __btrfs_alloc_chunk(trans, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05004978}
4979
Chris Masond3977122009-01-05 21:25:51 -05004980static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +01004981 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05004982{
4983 u64 chunk_offset;
4984 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004985 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05004986 int ret;
4987
Josef Bacik6df9a952013-06-27 13:22:46 -04004988 chunk_offset = find_next_chunk(fs_info);
Jeff Mahoney1b868262017-05-17 11:38:35 -04004989 alloc_profile = btrfs_metadata_alloc_profile(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01004990 ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004991 if (ret)
4992 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004993
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004994 sys_chunk_offset = find_next_chunk(fs_info);
Jeff Mahoney1b868262017-05-17 11:38:35 -04004995 alloc_profile = btrfs_system_alloc_profile(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01004996 ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004997 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004998}
4999
Miao Xied20983b2014-07-03 18:22:13 +08005000static inline int btrfs_chunk_max_errors(struct map_lookup *map)
5001{
5002 int max_errors;
5003
5004 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5005 BTRFS_BLOCK_GROUP_RAID10 |
5006 BTRFS_BLOCK_GROUP_RAID5 |
5007 BTRFS_BLOCK_GROUP_DUP)) {
5008 max_errors = 1;
5009 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
5010 max_errors = 2;
5011 } else {
5012 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005013 }
5014
Miao Xied20983b2014-07-03 18:22:13 +08005015 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05005016}
5017
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005018int btrfs_chunk_readonly(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Yan Zheng2b820322008-11-17 21:11:30 -05005019{
5020 struct extent_map *em;
5021 struct map_lookup *map;
Yan Zheng2b820322008-11-17 21:11:30 -05005022 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08005023 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005024 int i;
5025
Liu Bo592d92e2017-03-14 13:33:55 -07005026 em = get_chunk_map(fs_info, chunk_offset, 1);
5027 if (IS_ERR(em))
Yan Zheng2b820322008-11-17 21:11:30 -05005028 return 1;
5029
Jeff Mahoney95617d62015-06-03 10:55:48 -04005030 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05005031 for (i = 0; i < map->num_stripes; i++) {
Miao Xied20983b2014-07-03 18:22:13 +08005032 if (map->stripes[i].dev->missing) {
5033 miss_ndevs++;
5034 continue;
5035 }
5036
Yan Zheng2b820322008-11-17 21:11:30 -05005037 if (!map->stripes[i].dev->writeable) {
5038 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08005039 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05005040 }
5041 }
Miao Xied20983b2014-07-03 18:22:13 +08005042
5043 /*
5044 * If the number of missing devices is larger than max errors,
5045 * we can not write the data into that chunk successfully, so
5046 * set it readonly.
5047 */
5048 if (miss_ndevs > btrfs_chunk_max_errors(map))
5049 readonly = 1;
5050end:
Yan Zheng2b820322008-11-17 21:11:30 -05005051 free_extent_map(em);
5052 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04005053}
5054
5055void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
5056{
David Sterbaa8067e02011-04-21 00:34:43 +02005057 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04005058}
5059
5060void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
5061{
5062 struct extent_map *em;
5063
Chris Masond3977122009-01-05 21:25:51 -05005064 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04005065 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005066 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
5067 if (em)
5068 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04005069 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005070 if (!em)
5071 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005072 /* once for us */
5073 free_extent_map(em);
5074 /* once for the tree */
5075 free_extent_map(em);
5076 }
5077}
5078
Stefan Behrens5d964052012-11-05 14:59:07 +01005079int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005080{
5081 struct extent_map *em;
5082 struct map_lookup *map;
Chris Masonf1885912008-04-09 16:28:12 -04005083 int ret;
5084
Liu Bo592d92e2017-03-14 13:33:55 -07005085 em = get_chunk_map(fs_info, logical, len);
5086 if (IS_ERR(em))
5087 /*
5088 * We could return errors for these cases, but that could get
5089 * ugly and we'd probably do the same thing which is just not do
5090 * anything else and exit, so return 1 so the callers don't try
5091 * to use other copies.
5092 */
Josef Bacikfb7669b2013-04-23 10:53:18 -04005093 return 1;
Josef Bacikfb7669b2013-04-23 10:53:18 -04005094
Jeff Mahoney95617d62015-06-03 10:55:48 -04005095 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005096 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5097 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005098 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5099 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005100 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5101 ret = 2;
5102 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5103 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04005104 else
5105 ret = 1;
5106 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005107
Liu Bo73beece2015-07-17 16:49:19 +08005108 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Liu Bo6fad8232017-03-14 13:33:59 -07005109 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace) &&
5110 fs_info->dev_replace.tgtdev)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005111 ret++;
Liu Bo73beece2015-07-17 16:49:19 +08005112 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005113
Chris Masonf1885912008-04-09 16:28:12 -04005114 return ret;
5115}
5116
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005117unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005118 u64 logical)
5119{
5120 struct extent_map *em;
5121 struct map_lookup *map;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005122 unsigned long len = fs_info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05005123
Liu Bo592d92e2017-03-14 13:33:55 -07005124 em = get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005125
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005126 if (!WARN_ON(IS_ERR(em))) {
5127 map = em->map_lookup;
5128 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5129 len = map->stripe_len * nr_data_stripes(map);
5130 free_extent_map(em);
5131 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005132 return len;
5133}
5134
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03005135int btrfs_is_parity_mirror(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
David Woodhouse53b381b2013-01-29 18:40:14 -05005136{
5137 struct extent_map *em;
5138 struct map_lookup *map;
David Woodhouse53b381b2013-01-29 18:40:14 -05005139 int ret = 0;
5140
Liu Bo592d92e2017-03-14 13:33:55 -07005141 em = get_chunk_map(fs_info, logical, len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005142
Nikolay Borisov69f03f12017-07-11 16:55:51 +03005143 if(!WARN_ON(IS_ERR(em))) {
5144 map = em->map_lookup;
5145 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
5146 ret = 1;
5147 free_extent_map(em);
5148 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005149 return ret;
5150}
5151
Stefan Behrens30d98612012-11-06 14:52:18 +01005152static int find_live_mirror(struct btrfs_fs_info *fs_info,
5153 struct map_lookup *map, int first, int num,
5154 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005155{
5156 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01005157 int tolerance;
5158 struct btrfs_device *srcdev;
5159
5160 if (dev_replace_is_ongoing &&
5161 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5162 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5163 srcdev = fs_info->dev_replace.srcdev;
5164 else
5165 srcdev = NULL;
5166
5167 /*
5168 * try to avoid the drive that is the source drive for a
5169 * dev-replace procedure, only choose it if no other non-missing
5170 * mirror is available
5171 */
5172 for (tolerance = 0; tolerance < 2; tolerance++) {
5173 if (map->stripes[optimal].dev->bdev &&
5174 (tolerance || map->stripes[optimal].dev != srcdev))
5175 return optimal;
5176 for (i = first; i < first + num; i++) {
5177 if (map->stripes[i].dev->bdev &&
5178 (tolerance || map->stripes[i].dev != srcdev))
5179 return i;
5180 }
Chris Masondfe25022008-05-13 13:46:40 -04005181 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005182
Chris Masondfe25022008-05-13 13:46:40 -04005183 /* we couldn't find one that doesn't fail. Just return something
5184 * and the io error handling code will clean up eventually
5185 */
5186 return optimal;
5187}
5188
David Woodhouse53b381b2013-01-29 18:40:14 -05005189static inline int parity_smaller(u64 a, u64 b)
5190{
5191 return a > b;
5192}
5193
5194/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005195static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005196{
5197 struct btrfs_bio_stripe s;
5198 int i;
5199 u64 l;
5200 int again = 1;
5201
5202 while (again) {
5203 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005204 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005205 if (parity_smaller(bbio->raid_map[i],
5206 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005207 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005208 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005209 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005210 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005211 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005212 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005213
David Woodhouse53b381b2013-01-29 18:40:14 -05005214 again = 1;
5215 }
5216 }
5217 }
5218}
5219
Zhao Lei6e9606d2015-01-20 15:11:34 +08005220static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5221{
5222 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005223 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005224 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005225 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005226 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005227 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005228 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005229 /*
5230 * plus the raid_map, which includes both the tgt dev
5231 * and the stripes
5232 */
5233 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005234 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005235
5236 atomic_set(&bbio->error, 0);
Elena Reshetova140475a2017-03-03 10:55:10 +02005237 refcount_set(&bbio->refs, 1);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005238
5239 return bbio;
5240}
5241
5242void btrfs_get_bbio(struct btrfs_bio *bbio)
5243{
Elena Reshetova140475a2017-03-03 10:55:10 +02005244 WARN_ON(!refcount_read(&bbio->refs));
5245 refcount_inc(&bbio->refs);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005246}
5247
5248void btrfs_put_bbio(struct btrfs_bio *bbio)
5249{
5250 if (!bbio)
5251 return;
Elena Reshetova140475a2017-03-03 10:55:10 +02005252 if (refcount_dec_and_test(&bbio->refs))
Zhao Lei6e9606d2015-01-20 15:11:34 +08005253 kfree(bbio);
5254}
5255
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005256/* can REQ_OP_DISCARD be sent with other REQ like REQ_OP_WRITE? */
5257/*
5258 * Please note that, discard won't be sent to target device of device
5259 * replace.
5260 */
5261static int __btrfs_map_block_for_discard(struct btrfs_fs_info *fs_info,
5262 u64 logical, u64 length,
5263 struct btrfs_bio **bbio_ret)
5264{
5265 struct extent_map *em;
5266 struct map_lookup *map;
5267 struct btrfs_bio *bbio;
5268 u64 offset;
5269 u64 stripe_nr;
5270 u64 stripe_nr_end;
5271 u64 stripe_end_offset;
5272 u64 stripe_cnt;
5273 u64 stripe_len;
5274 u64 stripe_offset;
5275 u64 num_stripes;
5276 u32 stripe_index;
5277 u32 factor = 0;
5278 u32 sub_stripes = 0;
5279 u64 stripes_per_dev = 0;
5280 u32 remaining_stripes = 0;
5281 u32 last_stripe = 0;
5282 int ret = 0;
5283 int i;
5284
5285 /* discard always return a bbio */
5286 ASSERT(bbio_ret);
5287
5288 em = get_chunk_map(fs_info, logical, length);
5289 if (IS_ERR(em))
5290 return PTR_ERR(em);
5291
5292 map = em->map_lookup;
5293 /* we don't discard raid56 yet */
5294 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
5295 ret = -EOPNOTSUPP;
5296 goto out;
5297 }
5298
5299 offset = logical - em->start;
5300 length = min_t(u64, em->len - offset, length);
5301
5302 stripe_len = map->stripe_len;
5303 /*
5304 * stripe_nr counts the total number of stripes we have to stride
5305 * to get to this block
5306 */
5307 stripe_nr = div64_u64(offset, stripe_len);
5308
5309 /* stripe_offset is the offset of this block in its stripe */
5310 stripe_offset = offset - stripe_nr * stripe_len;
5311
5312 stripe_nr_end = round_up(offset + length, map->stripe_len);
Liu Bo42c61ab2017-04-03 13:45:24 -07005313 stripe_nr_end = div64_u64(stripe_nr_end, map->stripe_len);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005314 stripe_cnt = stripe_nr_end - stripe_nr;
5315 stripe_end_offset = stripe_nr_end * map->stripe_len -
5316 (offset + length);
5317 /*
5318 * after this, stripe_nr is the number of stripes on this
5319 * device we have to walk to find the data, and stripe_index is
5320 * the number of our device in the stripe array
5321 */
5322 num_stripes = 1;
5323 stripe_index = 0;
5324 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5325 BTRFS_BLOCK_GROUP_RAID10)) {
5326 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5327 sub_stripes = 1;
5328 else
5329 sub_stripes = map->sub_stripes;
5330
5331 factor = map->num_stripes / sub_stripes;
5332 num_stripes = min_t(u64, map->num_stripes,
5333 sub_stripes * stripe_cnt);
5334 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
5335 stripe_index *= sub_stripes;
5336 stripes_per_dev = div_u64_rem(stripe_cnt, factor,
5337 &remaining_stripes);
5338 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5339 last_stripe *= sub_stripes;
5340 } else if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5341 BTRFS_BLOCK_GROUP_DUP)) {
5342 num_stripes = map->num_stripes;
5343 } else {
5344 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5345 &stripe_index);
5346 }
5347
5348 bbio = alloc_btrfs_bio(num_stripes, 0);
5349 if (!bbio) {
5350 ret = -ENOMEM;
5351 goto out;
5352 }
5353
5354 for (i = 0; i < num_stripes; i++) {
5355 bbio->stripes[i].physical =
5356 map->stripes[stripe_index].physical +
5357 stripe_offset + stripe_nr * map->stripe_len;
5358 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
5359
5360 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5361 BTRFS_BLOCK_GROUP_RAID10)) {
5362 bbio->stripes[i].length = stripes_per_dev *
5363 map->stripe_len;
5364
5365 if (i / sub_stripes < remaining_stripes)
5366 bbio->stripes[i].length +=
5367 map->stripe_len;
5368
5369 /*
5370 * Special for the first stripe and
5371 * the last stripe:
5372 *
5373 * |-------|...|-------|
5374 * |----------|
5375 * off end_off
5376 */
5377 if (i < sub_stripes)
5378 bbio->stripes[i].length -=
5379 stripe_offset;
5380
5381 if (stripe_index >= last_stripe &&
5382 stripe_index <= (last_stripe +
5383 sub_stripes - 1))
5384 bbio->stripes[i].length -=
5385 stripe_end_offset;
5386
5387 if (i == sub_stripes - 1)
5388 stripe_offset = 0;
5389 } else {
5390 bbio->stripes[i].length = length;
5391 }
5392
5393 stripe_index++;
5394 if (stripe_index == map->num_stripes) {
5395 stripe_index = 0;
5396 stripe_nr++;
5397 }
5398 }
5399
5400 *bbio_ret = bbio;
5401 bbio->map_type = map->type;
5402 bbio->num_stripes = num_stripes;
5403out:
5404 free_extent_map(em);
5405 return ret;
5406}
5407
Liu Bo5ab56092017-03-14 13:33:57 -07005408/*
5409 * In dev-replace case, for repair case (that's the only case where the mirror
5410 * is selected explicitly when calling btrfs_map_block), blocks left of the
5411 * left cursor can also be read from the target drive.
5412 *
5413 * For REQ_GET_READ_MIRRORS, the target drive is added as the last one to the
5414 * array of stripes.
5415 * For READ, it also needs to be supported using the same mirror number.
5416 *
5417 * If the requested block is not left of the left cursor, EIO is returned. This
5418 * can happen because btrfs_num_copies() returns one more in the dev-replace
5419 * case.
5420 */
5421static int get_extra_mirror_from_replace(struct btrfs_fs_info *fs_info,
5422 u64 logical, u64 length,
5423 u64 srcdev_devid, int *mirror_num,
5424 u64 *physical)
5425{
5426 struct btrfs_bio *bbio = NULL;
5427 int num_stripes;
5428 int index_srcdev = 0;
5429 int found = 0;
5430 u64 physical_of_found = 0;
5431 int i;
5432 int ret = 0;
5433
5434 ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
5435 logical, &length, &bbio, 0, 0);
5436 if (ret) {
5437 ASSERT(bbio == NULL);
5438 return ret;
5439 }
5440
5441 num_stripes = bbio->num_stripes;
5442 if (*mirror_num > num_stripes) {
5443 /*
5444 * BTRFS_MAP_GET_READ_MIRRORS does not contain this mirror,
5445 * that means that the requested area is not left of the left
5446 * cursor
5447 */
5448 btrfs_put_bbio(bbio);
5449 return -EIO;
5450 }
5451
5452 /*
5453 * process the rest of the function using the mirror_num of the source
5454 * drive. Therefore look it up first. At the end, patch the device
5455 * pointer to the one of the target drive.
5456 */
5457 for (i = 0; i < num_stripes; i++) {
5458 if (bbio->stripes[i].dev->devid != srcdev_devid)
5459 continue;
5460
5461 /*
5462 * In case of DUP, in order to keep it simple, only add the
5463 * mirror with the lowest physical address
5464 */
5465 if (found &&
5466 physical_of_found <= bbio->stripes[i].physical)
5467 continue;
5468
5469 index_srcdev = i;
5470 found = 1;
5471 physical_of_found = bbio->stripes[i].physical;
5472 }
5473
5474 btrfs_put_bbio(bbio);
5475
5476 ASSERT(found);
5477 if (!found)
5478 return -EIO;
5479
5480 *mirror_num = index_srcdev + 1;
5481 *physical = physical_of_found;
5482 return ret;
5483}
5484
Liu Bo73c0f222017-03-14 13:33:58 -07005485static void handle_ops_on_dev_replace(enum btrfs_map_op op,
5486 struct btrfs_bio **bbio_ret,
5487 struct btrfs_dev_replace *dev_replace,
5488 int *num_stripes_ret, int *max_errors_ret)
5489{
5490 struct btrfs_bio *bbio = *bbio_ret;
5491 u64 srcdev_devid = dev_replace->srcdev->devid;
5492 int tgtdev_indexes = 0;
5493 int num_stripes = *num_stripes_ret;
5494 int max_errors = *max_errors_ret;
5495 int i;
5496
5497 if (op == BTRFS_MAP_WRITE) {
5498 int index_where_to_add;
5499
5500 /*
5501 * duplicate the write operations while the dev replace
5502 * procedure is running. Since the copying of the old disk to
5503 * the new disk takes place at run time while the filesystem is
5504 * mounted writable, the regular write operations to the old
5505 * disk have to be duplicated to go to the new disk as well.
5506 *
5507 * Note that device->missing is handled by the caller, and that
5508 * the write to the old disk is already set up in the stripes
5509 * array.
5510 */
5511 index_where_to_add = num_stripes;
5512 for (i = 0; i < num_stripes; i++) {
5513 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5514 /* write to new disk, too */
5515 struct btrfs_bio_stripe *new =
5516 bbio->stripes + index_where_to_add;
5517 struct btrfs_bio_stripe *old =
5518 bbio->stripes + i;
5519
5520 new->physical = old->physical;
5521 new->length = old->length;
5522 new->dev = dev_replace->tgtdev;
5523 bbio->tgtdev_map[i] = index_where_to_add;
5524 index_where_to_add++;
5525 max_errors++;
5526 tgtdev_indexes++;
5527 }
5528 }
5529 num_stripes = index_where_to_add;
5530 } else if (op == BTRFS_MAP_GET_READ_MIRRORS) {
5531 int index_srcdev = 0;
5532 int found = 0;
5533 u64 physical_of_found = 0;
5534
5535 /*
5536 * During the dev-replace procedure, the target drive can also
5537 * be used to read data in case it is needed to repair a corrupt
5538 * block elsewhere. This is possible if the requested area is
5539 * left of the left cursor. In this area, the target drive is a
5540 * full copy of the source drive.
5541 */
5542 for (i = 0; i < num_stripes; i++) {
5543 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5544 /*
5545 * In case of DUP, in order to keep it simple,
5546 * only add the mirror with the lowest physical
5547 * address
5548 */
5549 if (found &&
5550 physical_of_found <=
5551 bbio->stripes[i].physical)
5552 continue;
5553 index_srcdev = i;
5554 found = 1;
5555 physical_of_found = bbio->stripes[i].physical;
5556 }
5557 }
5558 if (found) {
5559 struct btrfs_bio_stripe *tgtdev_stripe =
5560 bbio->stripes + num_stripes;
5561
5562 tgtdev_stripe->physical = physical_of_found;
5563 tgtdev_stripe->length =
5564 bbio->stripes[index_srcdev].length;
5565 tgtdev_stripe->dev = dev_replace->tgtdev;
5566 bbio->tgtdev_map[index_srcdev] = num_stripes;
5567
5568 tgtdev_indexes++;
5569 num_stripes++;
5570 }
5571 }
5572
5573 *num_stripes_ret = num_stripes;
5574 *max_errors_ret = max_errors;
5575 bbio->num_tgtdevs = tgtdev_indexes;
5576 *bbio_ret = bbio;
5577}
5578
Liu Bo2b19a1f2017-03-14 13:34:00 -07005579static bool need_full_stripe(enum btrfs_map_op op)
5580{
5581 return (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS);
5582}
5583
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005584static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
5585 enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005586 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005587 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005588 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005589{
5590 struct extent_map *em;
5591 struct map_lookup *map;
Chris Mason0b86a832008-03-24 15:01:56 -04005592 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005593 u64 stripe_offset;
5594 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005595 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005596 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005597 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005598 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005599 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005600 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005601 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005602 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005603 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5604 int dev_replace_is_ongoing = 0;
5605 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005606 int patch_the_first_stripe_for_dev_replace = 0;
5607 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005608 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005609
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005610 if (op == BTRFS_MAP_DISCARD)
5611 return __btrfs_map_block_for_discard(fs_info, logical,
5612 *length, bbio_ret);
5613
Liu Bo592d92e2017-03-14 13:33:55 -07005614 em = get_chunk_map(fs_info, logical, *length);
5615 if (IS_ERR(em))
5616 return PTR_ERR(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005617
Jeff Mahoney95617d62015-06-03 10:55:48 -04005618 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005619 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005620
David Woodhouse53b381b2013-01-29 18:40:14 -05005621 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005622 stripe_nr = offset;
5623 /*
5624 * stripe_nr counts the total number of stripes we have to stride
5625 * to get to this block
5626 */
David Sterba47c57132015-02-20 18:43:47 +01005627 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005628
David Woodhouse53b381b2013-01-29 18:40:14 -05005629 stripe_offset = stripe_nr * stripe_len;
Josef Bacike042d1e2016-04-12 12:54:40 -04005630 if (offset < stripe_offset) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005631 btrfs_crit(fs_info,
5632 "stripe math has gone wrong, stripe_offset=%llu, offset=%llu, start=%llu, logical=%llu, stripe_len=%llu",
Josef Bacike042d1e2016-04-12 12:54:40 -04005633 stripe_offset, offset, em->start, logical,
5634 stripe_len);
5635 free_extent_map(em);
5636 return -EINVAL;
5637 }
Chris Mason593060d2008-03-25 16:50:33 -04005638
5639 /* stripe_offset is the offset of this block in its stripe*/
5640 stripe_offset = offset - stripe_offset;
5641
David Woodhouse53b381b2013-01-29 18:40:14 -05005642 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005643 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005644 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5645 raid56_full_stripe_start = offset;
5646
5647 /* allow a write of a full stripe, but make sure we don't
5648 * allow straddling of stripes
5649 */
David Sterba47c57132015-02-20 18:43:47 +01005650 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5651 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005652 raid56_full_stripe_start *= full_stripe_len;
5653 }
5654
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005655 if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005656 u64 max_len;
5657 /* For writes to RAID[56], allow a full stripeset across all disks.
5658 For other RAID types and for RAID[56] reads, just allow a single
5659 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005660 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005661 (op == BTRFS_MAP_WRITE)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005662 max_len = stripe_len * nr_data_stripes(map) -
5663 (offset - raid56_full_stripe_start);
5664 } else {
5665 /* we limit the length of each bio to what fits in a stripe */
5666 max_len = stripe_len - stripe_offset;
5667 }
5668 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005669 } else {
5670 *length = em->len - offset;
5671 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005672
David Woodhouse53b381b2013-01-29 18:40:14 -05005673 /* This is for when we're called from btrfs_merge_bio_hook() and all
5674 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005675 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005676 goto out;
5677
Liu Bo73beece2015-07-17 16:49:19 +08005678 btrfs_dev_replace_lock(dev_replace, 0);
Stefan Behrens472262f2012-11-06 14:43:46 +01005679 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5680 if (!dev_replace_is_ongoing)
Liu Bo73beece2015-07-17 16:49:19 +08005681 btrfs_dev_replace_unlock(dev_replace, 0);
5682 else
5683 btrfs_dev_replace_set_lock_blocking(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005684
Stefan Behrensad6d6202012-11-06 15:06:47 +01005685 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005686 !need_full_stripe(op) && dev_replace->tgtdev != NULL) {
Liu Bo5ab56092017-03-14 13:33:57 -07005687 ret = get_extra_mirror_from_replace(fs_info, logical, *length,
5688 dev_replace->srcdev->devid,
5689 &mirror_num,
5690 &physical_to_patch_in_first_stripe);
5691 if (ret)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005692 goto out;
Liu Bo5ab56092017-03-14 13:33:57 -07005693 else
5694 patch_the_first_stripe_for_dev_replace = 1;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005695 } else if (mirror_num > map->num_stripes) {
5696 mirror_num = 0;
5697 }
5698
Chris Masonf2d8d742008-04-21 10:03:05 -04005699 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005700 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005701 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
David Sterba47c57132015-02-20 18:43:47 +01005702 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5703 &stripe_index);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005704 if (op != BTRFS_MAP_WRITE && op != BTRFS_MAP_GET_READ_MIRRORS)
Miao Xie28e1cc72014-09-12 18:44:02 +08005705 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005706 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005707 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS)
Chris Masonf2d8d742008-04-21 10:03:05 -04005708 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005709 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005710 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005711 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005712 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005713 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005714 current->pid % map->num_stripes,
5715 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005716 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005717 }
Chris Mason2fff7342008-04-29 14:12:09 -04005718
Chris Mason611f0e02008-04-03 16:29:03 -04005719 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005720 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005721 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005722 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005723 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005724 } else {
5725 mirror_num = 1;
5726 }
Chris Mason2fff7342008-04-29 14:12:09 -04005727
Chris Mason321aecc2008-04-16 10:49:51 -04005728 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005729 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005730
David Sterba47c57132015-02-20 18:43:47 +01005731 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005732 stripe_index *= map->sub_stripes;
5733
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005734 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS)
Chris Masonf2d8d742008-04-21 10:03:05 -04005735 num_stripes = map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005736 else if (mirror_num)
5737 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005738 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005739 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005740 stripe_index = find_live_mirror(fs_info, map,
5741 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005742 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005743 current->pid % map->sub_stripes,
5744 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005745 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005746 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005747
Zhao Leiffe2d202015-01-20 15:11:44 +08005748 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005749 if (need_raid_map &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005750 (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS ||
Miao Xieaf8e2d12014-10-23 14:42:50 +08005751 mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005752 /* push stripe_nr back to the start of the full stripe */
Liu Bo42c61ab2017-04-03 13:45:24 -07005753 stripe_nr = div64_u64(raid56_full_stripe_start,
David Sterbab8b93ad2015-01-16 17:26:13 +01005754 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005755
5756 /* RAID[56] write or recovery. Return all stripes */
5757 num_stripes = map->num_stripes;
5758 max_errors = nr_parity_stripes(map);
5759
David Woodhouse53b381b2013-01-29 18:40:14 -05005760 *length = map->stripe_len;
5761 stripe_index = 0;
5762 stripe_offset = 0;
5763 } else {
5764 /*
5765 * Mirror #0 or #1 means the original data block.
5766 * Mirror #2 is RAID5 parity block.
5767 * Mirror #3 is RAID6 Q block.
5768 */
David Sterba47c57132015-02-20 18:43:47 +01005769 stripe_nr = div_u64_rem(stripe_nr,
5770 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005771 if (mirror_num > 1)
5772 stripe_index = nr_data_stripes(map) +
5773 mirror_num - 2;
5774
5775 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005776 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5777 &stripe_index);
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005778 if ((op != BTRFS_MAP_WRITE &&
5779 op != BTRFS_MAP_GET_READ_MIRRORS) &&
5780 mirror_num <= 1)
Miao Xie28e1cc72014-09-12 18:44:02 +08005781 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005782 }
Chris Mason8790d502008-04-03 16:29:03 -04005783 } else {
5784 /*
David Sterba47c57132015-02-20 18:43:47 +01005785 * after this, stripe_nr is the number of stripes on this
5786 * device we have to walk to find the data, and stripe_index is
5787 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005788 */
David Sterba47c57132015-02-20 18:43:47 +01005789 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5790 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005791 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005792 }
Josef Bacike042d1e2016-04-12 12:54:40 -04005793 if (stripe_index >= map->num_stripes) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005794 btrfs_crit(fs_info,
5795 "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u",
Josef Bacike042d1e2016-04-12 12:54:40 -04005796 stripe_index, map->num_stripes);
5797 ret = -EINVAL;
5798 goto out;
5799 }
Chris Mason593060d2008-03-25 16:50:33 -04005800
Stefan Behrens472262f2012-11-06 14:43:46 +01005801 num_alloc_stripes = num_stripes;
Liu Bo6fad8232017-03-14 13:33:59 -07005802 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL) {
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005803 if (op == BTRFS_MAP_WRITE)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005804 num_alloc_stripes <<= 1;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005805 if (op == BTRFS_MAP_GET_READ_MIRRORS)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005806 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005807 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005808 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005809
Zhao Lei6e9606d2015-01-20 15:11:34 +08005810 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005811 if (!bbio) {
5812 ret = -ENOMEM;
5813 goto out;
5814 }
Liu Bo6fad8232017-03-14 13:33:59 -07005815 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL)
Miao Xie2c8cdd62014-11-14 16:06:25 +08005816 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005817
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005818 /* build raid_map */
Liu Bo2b19a1f2017-03-14 13:34:00 -07005819 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK && need_raid_map &&
5820 (need_full_stripe(op) || mirror_num > 1)) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005821 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005822 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005823
5824 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5825 sizeof(struct btrfs_bio_stripe) *
5826 num_alloc_stripes +
5827 sizeof(int) * tgtdev_indexes);
5828
5829 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005830 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005831
5832 /* Fill in the logical address of each stripe */
5833 tmp = stripe_nr * nr_data_stripes(map);
5834 for (i = 0; i < nr_data_stripes(map); i++)
5835 bbio->raid_map[(i+rot) % num_stripes] =
5836 em->start + (tmp + i) * map->stripe_len;
5837
5838 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5839 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5840 bbio->raid_map[(i+rot+1) % num_stripes] =
5841 RAID6_Q_STRIPE;
5842 }
5843
Li Zefanec9ef7a2011-12-01 14:06:42 +08005844
Liu Bo0b3d4cd2017-03-14 13:33:56 -07005845 for (i = 0; i < num_stripes; i++) {
5846 bbio->stripes[i].physical =
5847 map->stripes[stripe_index].physical +
5848 stripe_offset +
5849 stripe_nr * map->stripe_len;
5850 bbio->stripes[i].dev =
5851 map->stripes[stripe_index].dev;
5852 stripe_index++;
Chris Mason593060d2008-03-25 16:50:33 -04005853 }
Li Zefande11cc12011-12-01 12:55:47 +08005854
Liu Bo2b19a1f2017-03-14 13:34:00 -07005855 if (need_full_stripe(op))
Miao Xied20983b2014-07-03 18:22:13 +08005856 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005857
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005858 if (bbio->raid_map)
5859 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005860
Liu Bo73c0f222017-03-14 13:33:58 -07005861 if (dev_replace_is_ongoing && dev_replace->tgtdev != NULL &&
Liu Bo2b19a1f2017-03-14 13:34:00 -07005862 need_full_stripe(op)) {
Liu Bo73c0f222017-03-14 13:33:58 -07005863 handle_ops_on_dev_replace(op, &bbio, dev_replace, &num_stripes,
5864 &max_errors);
Stefan Behrens472262f2012-11-06 14:43:46 +01005865 }
5866
Li Zefande11cc12011-12-01 12:55:47 +08005867 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005868 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005869 bbio->num_stripes = num_stripes;
5870 bbio->max_errors = max_errors;
5871 bbio->mirror_num = mirror_num;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005872
5873 /*
5874 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5875 * mirror_num == num_stripes + 1 && dev_replace target drive is
5876 * available as a mirror
5877 */
5878 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5879 WARN_ON(num_stripes > 1);
5880 bbio->stripes[0].dev = dev_replace->tgtdev;
5881 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5882 bbio->mirror_num = map->num_stripes + 1;
5883 }
Chris Masoncea9e442008-04-09 16:28:12 -04005884out:
Liu Bo73beece2015-07-17 16:49:19 +08005885 if (dev_replace_is_ongoing) {
5886 btrfs_dev_replace_clear_lock_blocking(dev_replace);
5887 btrfs_dev_replace_unlock(dev_replace, 0);
5888 }
Chris Mason0b86a832008-03-24 15:01:56 -04005889 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005890 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005891}
5892
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005893int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005894 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005895 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005896{
Mike Christieb3d3fa52016-06-05 14:31:53 -05005897 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005898 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005899}
5900
Miao Xieaf8e2d12014-10-23 14:42:50 +08005901/* For Scrub/replace */
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005902int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Miao Xieaf8e2d12014-10-23 14:42:50 +08005903 u64 logical, u64 *length,
David Sterba825ad4c2017-03-28 14:45:22 +02005904 struct btrfs_bio **bbio_ret)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005905{
David Sterba825ad4c2017-03-28 14:45:22 +02005906 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret, 0, 1);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005907}
5908
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04005909int btrfs_rmap_block(struct btrfs_fs_info *fs_info,
Yan Zhenga512bbf2008-12-08 16:46:26 -05005910 u64 chunk_start, u64 physical, u64 devid,
5911 u64 **logical, int *naddrs, int *stripe_len)
5912{
Yan Zhenga512bbf2008-12-08 16:46:26 -05005913 struct extent_map *em;
5914 struct map_lookup *map;
5915 u64 *buf;
5916 u64 bytenr;
5917 u64 length;
5918 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005919 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005920 int i, j, nr = 0;
5921
Liu Bo592d92e2017-03-14 13:33:55 -07005922 em = get_chunk_map(fs_info, chunk_start, 1);
5923 if (IS_ERR(em))
Josef Bacik835d9742013-03-19 12:13:25 -04005924 return -EIO;
Josef Bacik835d9742013-03-19 12:13:25 -04005925
Jeff Mahoney95617d62015-06-03 10:55:48 -04005926 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005927 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005928 rmap_len = map->stripe_len;
5929
Yan Zhenga512bbf2008-12-08 16:46:26 -05005930 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01005931 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005932 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01005933 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08005934 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01005935 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005936 rmap_len = map->stripe_len * nr_data_stripes(map);
5937 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005938
David Sterba31e818f2015-02-20 18:00:26 +01005939 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005940 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005941
5942 for (i = 0; i < map->num_stripes; i++) {
5943 if (devid && map->stripes[i].dev->devid != devid)
5944 continue;
5945 if (map->stripes[i].physical > physical ||
5946 map->stripes[i].physical + length <= physical)
5947 continue;
5948
5949 stripe_nr = physical - map->stripes[i].physical;
Liu Bo42c61ab2017-04-03 13:45:24 -07005950 stripe_nr = div64_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005951
5952 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5953 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01005954 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005955 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5956 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005957 } /* else if RAID[56], multiply by nr_data_stripes().
5958 * Alternatively, just use rmap_len below instead of
5959 * map->stripe_len */
5960
5961 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005962 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005963 for (j = 0; j < nr; j++) {
5964 if (buf[j] == bytenr)
5965 break;
5966 }
Chris Mason934d3752008-12-08 16:43:10 -05005967 if (j == nr) {
5968 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005969 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005970 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005971 }
5972
Yan Zhenga512bbf2008-12-08 16:46:26 -05005973 *logical = buf;
5974 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005975 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005976
5977 free_extent_map(em);
5978 return 0;
5979}
5980
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005981static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08005982{
Mike Snitzer326e1db2015-05-22 09:14:03 -04005983 bio->bi_private = bbio->private;
5984 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005985 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04005986
Zhao Lei6e9606d2015-01-20 15:11:34 +08005987 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08005988}
5989
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005990static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04005991{
Chris Mason9be33952013-05-17 18:30:14 -04005992 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005993 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005994
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02005995 if (bio->bi_status) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005996 atomic_inc(&bbio->error);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02005997 if (bio->bi_status == BLK_STS_IOERR ||
5998 bio->bi_status == BLK_STS_TARGET) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02005999 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04006000 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08006001 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02006002
6003 BUG_ON(stripe_index >= bbio->num_stripes);
6004 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02006005 if (dev->bdev) {
Mike Christie37226b22016-06-05 14:31:52 -05006006 if (bio_op(bio) == REQ_OP_WRITE)
Stefan Behrens597a60f2012-06-14 16:42:31 +02006007 btrfs_dev_stat_inc(dev,
6008 BTRFS_DEV_STAT_WRITE_ERRS);
6009 else
6010 btrfs_dev_stat_inc(dev,
6011 BTRFS_DEV_STAT_READ_ERRS);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06006012 if (bio->bi_opf & REQ_PREFLUSH)
Stefan Behrens597a60f2012-06-14 16:42:31 +02006013 btrfs_dev_stat_inc(dev,
6014 BTRFS_DEV_STAT_FLUSH_ERRS);
6015 btrfs_dev_stat_print_on_error(dev);
6016 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02006017 }
6018 }
Chris Mason8790d502008-04-03 16:29:03 -04006019
Jan Schmidta1d3c472011-08-04 17:15:33 +02006020 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04006021 is_orig_bio = 1;
6022
Miao Xiec404e0d2014-01-30 16:46:55 +08006023 btrfs_bio_counter_dec(bbio->fs_info);
6024
Jan Schmidta1d3c472011-08-04 17:15:33 +02006025 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04006026 if (!is_orig_bio) {
6027 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006028 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006029 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07006030
Chris Mason9be33952013-05-17 18:30:14 -04006031 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04006032 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05006033 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04006034 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02006035 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006036 bio->bi_status = BLK_STS_IOERR;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05006037 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04006038 /*
6039 * this bio is actually up to date, we didn't
6040 * go over the max number of errors
6041 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006042 bio->bi_status = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04006043 }
Miao Xiec55f1392014-06-19 10:42:54 +08006044
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006045 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04006046 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04006047 bio_put(bio);
6048 }
Chris Mason8790d502008-04-03 16:29:03 -04006049}
6050
Chris Mason8b712842008-06-11 16:50:36 -04006051/*
6052 * see run_scheduled_bios for a description of why bios are collected for
6053 * async submit.
6054 *
6055 * This will add one bio to the pending list for a device and make sure
6056 * the work struct is scheduled.
6057 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006058static noinline void btrfs_schedule_bio(struct btrfs_device *device,
Mike Christie4e49ea42016-06-05 14:31:41 -05006059 struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04006060{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006061 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -04006062 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04006063 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006064
David Woodhouse53b381b2013-01-29 18:40:14 -05006065 if (device->missing || !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006066 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05006067 return;
6068 }
6069
Chris Mason8b712842008-06-11 16:50:36 -04006070 /* don't bother with additional async steps for reads, right now */
Mike Christie37226b22016-06-05 14:31:52 -05006071 if (bio_op(bio) == REQ_OP_READ) {
Chris Mason492bb6de2008-07-31 16:29:02 -04006072 bio_get(bio);
Mike Christie4e49ea42016-06-05 14:31:41 -05006073 btrfsic_submit_bio(bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04006074 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01006075 return;
Chris Mason8b712842008-06-11 16:50:36 -04006076 }
6077
6078 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04006079 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04006080 * higher layers. Otherwise, the async bio makes it appear we have
6081 * made progress against dirty pages when we've really just put it
6082 * on a queue for later
6083 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006084 atomic_inc(&fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04006085 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04006086 bio->bi_next = NULL;
Chris Mason8b712842008-06-11 16:50:36 -04006087
6088 spin_lock(&device->io_lock);
Christoph Hellwig67f055c2016-11-01 07:40:06 -06006089 if (op_is_sync(bio->bi_opf))
Chris Masonffbd5172009-04-20 15:50:09 -04006090 pending_bios = &device->pending_sync_bios;
6091 else
6092 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006093
Chris Masonffbd5172009-04-20 15:50:09 -04006094 if (pending_bios->tail)
6095 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006096
Chris Masonffbd5172009-04-20 15:50:09 -04006097 pending_bios->tail = bio;
6098 if (!pending_bios->head)
6099 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006100 if (device->running_pending)
6101 should_queue = 0;
6102
6103 spin_unlock(&device->io_lock);
6104
6105 if (should_queue)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006106 btrfs_queue_work(fs_info->submit_workers, &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04006107}
6108
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006109static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio,
6110 u64 physical, int dev_nr, int async)
Josef Bacikde1ee922012-10-19 16:50:56 -04006111{
6112 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006113 struct btrfs_fs_info *fs_info = bbio->fs_info;
Josef Bacikde1ee922012-10-19 16:50:56 -04006114
6115 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04006116 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04006117 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006118 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04006119#ifdef DEBUG
6120 {
6121 struct rcu_string *name;
6122
6123 rcu_read_lock();
6124 name = rcu_dereference(dev->name);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006125 btrfs_debug(fs_info,
6126 "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u",
6127 bio_op(bio), bio->bi_opf,
6128 (u64)bio->bi_iter.bi_sector,
6129 (u_long)dev->bdev->bd_dev, name->str, dev->devid,
6130 bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006131 rcu_read_unlock();
6132 }
6133#endif
Christoph Hellwig74d46992017-08-23 19:10:32 +02006134 bio_set_dev(bio, dev->bdev);
Miao Xiec404e0d2014-01-30 16:46:55 +08006135
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006136 btrfs_bio_counter_inc_noblocked(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006137
Josef Bacikde1ee922012-10-19 16:50:56 -04006138 if (async)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006139 btrfs_schedule_bio(dev, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006140 else
Mike Christie4e49ea42016-06-05 14:31:41 -05006141 btrfsic_submit_bio(bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006142}
6143
Josef Bacikde1ee922012-10-19 16:50:56 -04006144static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6145{
6146 atomic_inc(&bbio->error);
6147 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Nicholas D Steeves01327612016-05-19 21:18:45 -04006148 /* Should be the original bio. */
Miao Xie8408c712014-06-19 10:42:55 +08006149 WARN_ON(bio != bbio->orig_bio);
6150
Chris Mason9be33952013-05-17 18:30:14 -04006151 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006152 bio->bi_iter.bi_sector = logical >> 9;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02006153 bio->bi_status = BLK_STS_IOERR;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006154 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006155 }
6156}
6157
Omar Sandoval58efbc92017-08-22 23:45:59 -07006158blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
6159 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006160{
Chris Mason0b86a832008-03-24 15:01:56 -04006161 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006162 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006163 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006164 u64 length = 0;
6165 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006166 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006167 int dev_nr;
6168 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006169 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006170
Kent Overstreet4f024f32013-10-11 15:44:27 -07006171 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006172 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006173
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006174 btrfs_bio_counter_inc_blocked(fs_info);
Liu Bobd7d63c2017-09-19 17:50:09 -06006175 ret = __btrfs_map_block(fs_info, btrfs_op(bio), logical,
Mike Christie37226b22016-06-05 14:31:52 -05006176 &map_length, &bbio, mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006177 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006178 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006179 return errno_to_blk_status(ret);
Miao Xiec404e0d2014-01-30 16:46:55 +08006180 }
Chris Masoncea9e442008-04-09 16:28:12 -04006181
Jan Schmidta1d3c472011-08-04 17:15:33 +02006182 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006183 bbio->orig_bio = first_bio;
6184 bbio->private = first_bio->bi_private;
6185 bbio->end_io = first_bio->bi_end_io;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006186 bbio->fs_info = fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006187 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6188
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006189 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Mike Christie37226b22016-06-05 14:31:52 -05006190 ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006191 /* In this case, map_length has been set to the length of
6192 a single stripe; not the whole write */
Mike Christie37226b22016-06-05 14:31:52 -05006193 if (bio_op(bio) == REQ_OP_WRITE) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006194 ret = raid56_parity_write(fs_info, bio, bbio,
6195 map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006196 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006197 ret = raid56_parity_recover(fs_info, bio, bbio,
6198 map_length, mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006199 }
Miao Xie42452152014-11-25 16:39:28 +08006200
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006201 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006202 return errno_to_blk_status(ret);
David Woodhouse53b381b2013-01-29 18:40:14 -05006203 }
6204
Chris Masoncea9e442008-04-09 16:28:12 -04006205 if (map_length < length) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006206 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006207 "mapping failed logical %llu bio len %llu len %llu",
6208 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006209 BUG();
6210 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006211
Zhao Lei08da7572015-02-12 15:42:16 +08006212 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006213 dev = bbio->stripes[dev_nr].dev;
Mike Christie37226b22016-06-05 14:31:52 -05006214 if (!dev || !dev->bdev ||
Liu Boa967efb2017-04-10 12:36:26 -07006215 (bio_op(first_bio) == REQ_OP_WRITE && !dev->writeable)) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006216 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006217 continue;
6218 }
6219
David Sterba3aa8e072017-06-02 17:38:30 +02006220 if (dev_nr < total_devs - 1)
David Sterba8b6c1d52017-06-02 17:48:13 +02006221 bio = btrfs_bio_clone(first_bio);
David Sterba3aa8e072017-06-02 17:38:30 +02006222 else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006223 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006224
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006225 submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical,
6226 dev_nr, async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006227 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006228 btrfs_bio_counter_dec(fs_info);
Omar Sandoval58efbc92017-08-22 23:45:59 -07006229 return BLK_STS_OK;
Chris Mason0b86a832008-03-24 15:01:56 -04006230}
6231
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006232struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006233 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006234{
Yan Zheng2b820322008-11-17 21:11:30 -05006235 struct btrfs_device *device;
6236 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006237
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006238 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006239 while (cur_devices) {
6240 if (!fsid ||
Anand Jain44880fd2017-07-29 17:50:09 +08006241 !memcmp(cur_devices->fsid, fsid, BTRFS_FSID_SIZE)) {
David Sterba35c70102017-06-15 19:51:51 +02006242 device = find_device(cur_devices, devid, uuid);
Yan Zheng2b820322008-11-17 21:11:30 -05006243 if (device)
6244 return device;
6245 }
6246 cur_devices = cur_devices->seed;
6247 }
6248 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006249}
6250
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006251static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006252 u64 devid, u8 *dev_uuid)
6253{
6254 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006255
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006256 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6257 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05006258 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006259
6260 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006261 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006262 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006263
6264 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05006265 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006266
Chris Masondfe25022008-05-13 13:46:40 -04006267 return device;
6268}
6269
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006270/**
6271 * btrfs_alloc_device - allocate struct btrfs_device
6272 * @fs_info: used only for generating a new devid, can be NULL if
6273 * devid is provided (i.e. @devid != NULL).
6274 * @devid: a pointer to devid for this device. If NULL a new devid
6275 * is generated.
6276 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6277 * is generated.
6278 *
6279 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
6280 * on error. Returned struct is not linked onto any lists and can be
6281 * destroyed with kfree() right away.
6282 */
6283struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6284 const u64 *devid,
6285 const u8 *uuid)
6286{
6287 struct btrfs_device *dev;
6288 u64 tmp;
6289
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306290 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006291 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006292
6293 dev = __alloc_device();
6294 if (IS_ERR(dev))
6295 return dev;
6296
6297 if (devid)
6298 tmp = *devid;
6299 else {
6300 int ret;
6301
6302 ret = find_next_devid(fs_info, &tmp);
6303 if (ret) {
6304 kfree(dev);
6305 return ERR_PTR(ret);
6306 }
6307 }
6308 dev->devid = tmp;
6309
6310 if (uuid)
6311 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6312 else
6313 generate_random_uuid(dev->uuid);
6314
Liu Bo9e0af232014-08-15 23:36:53 +08006315 btrfs_init_work(&dev->work, btrfs_submit_helper,
6316 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006317
6318 return dev;
6319}
6320
Liu Boe06cd3d2016-06-03 12:05:15 -07006321/* Return -EIO if any error, otherwise return 0. */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006322static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006323 struct extent_buffer *leaf,
6324 struct btrfs_chunk *chunk, u64 logical)
6325{
6326 u64 length;
6327 u64 stripe_len;
6328 u16 num_stripes;
6329 u16 sub_stripes;
6330 u64 type;
6331
6332 length = btrfs_chunk_length(leaf, chunk);
6333 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6334 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6335 sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
6336 type = btrfs_chunk_type(leaf, chunk);
6337
6338 if (!num_stripes) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006339 btrfs_err(fs_info, "invalid chunk num_stripes: %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006340 num_stripes);
6341 return -EIO;
6342 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006343 if (!IS_ALIGNED(logical, fs_info->sectorsize)) {
6344 btrfs_err(fs_info, "invalid chunk logical %llu", logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006345 return -EIO;
6346 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006347 if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) {
6348 btrfs_err(fs_info, "invalid chunk sectorsize %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006349 btrfs_chunk_sector_size(leaf, chunk));
6350 return -EIO;
6351 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006352 if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) {
6353 btrfs_err(fs_info, "invalid chunk length %llu", length);
Liu Boe06cd3d2016-06-03 12:05:15 -07006354 return -EIO;
6355 }
6356 if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006357 btrfs_err(fs_info, "invalid chunk stripe length: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006358 stripe_len);
6359 return -EIO;
6360 }
6361 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6362 type) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006363 btrfs_err(fs_info, "unrecognized chunk type: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006364 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6365 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6366 btrfs_chunk_type(leaf, chunk));
6367 return -EIO;
6368 }
6369 if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) ||
6370 (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) ||
6371 (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) ||
6372 (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) ||
6373 (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) ||
6374 ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 &&
6375 num_stripes != 1)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006376 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006377 "invalid num_stripes:sub_stripes %u:%u for profile %llu",
6378 num_stripes, sub_stripes,
6379 type & BTRFS_BLOCK_GROUP_PROFILE_MASK);
6380 return -EIO;
6381 }
6382
6383 return 0;
6384}
6385
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006386static int read_one_chunk(struct btrfs_fs_info *fs_info, struct btrfs_key *key,
Chris Mason0b86a832008-03-24 15:01:56 -04006387 struct extent_buffer *leaf,
6388 struct btrfs_chunk *chunk)
6389{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006390 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04006391 struct map_lookup *map;
6392 struct extent_map *em;
6393 u64 logical;
6394 u64 length;
6395 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006396 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006397 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006398 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006399 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006400
Chris Masone17cade2008-04-15 15:41:47 -04006401 logical = key->offset;
6402 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006403 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
Liu Boe06cd3d2016-06-03 12:05:15 -07006404
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006405 ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006406 if (ret)
6407 return ret;
Chris Masona061fc82008-05-07 11:43:44 -04006408
Chris Mason890871b2009-09-02 16:24:52 -04006409 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006410 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006411 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006412
6413 /* already mapped? */
6414 if (em && em->start <= logical && em->start + em->len > logical) {
6415 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006416 return 0;
6417 } else if (em) {
6418 free_extent_map(em);
6419 }
Chris Mason0b86a832008-03-24 15:01:56 -04006420
David Sterba172ddd62011-04-21 00:48:27 +02006421 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006422 if (!em)
6423 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006424 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006425 if (!map) {
6426 free_extent_map(em);
6427 return -ENOMEM;
6428 }
6429
Wang Shilong298a8f92014-06-19 10:42:52 +08006430 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006431 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006432 em->start = logical;
6433 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006434 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006435 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006436 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006437
Chris Mason593060d2008-03-25 16:50:33 -04006438 map->num_stripes = num_stripes;
6439 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6440 map->io_align = btrfs_chunk_io_align(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006441 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6442 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006443 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006444 for (i = 0; i < num_stripes; i++) {
6445 map->stripes[i].physical =
6446 btrfs_stripe_offset_nr(leaf, chunk, i);
6447 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006448 read_extent_buffer(leaf, uuid, (unsigned long)
6449 btrfs_stripe_dev_uuid_nr(chunk, i),
6450 BTRFS_UUID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006451 map->stripes[i].dev = btrfs_find_device(fs_info, devid,
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006452 uuid, NULL);
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006453 if (!map->stripes[i].dev &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006454 !btrfs_test_opt(fs_info, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006455 free_extent_map(em);
Qu Wenruoc5502452017-03-09 09:34:42 +08006456 btrfs_report_missing_device(fs_info, devid, uuid);
Chris Mason593060d2008-03-25 16:50:33 -04006457 return -EIO;
6458 }
Chris Masondfe25022008-05-13 13:46:40 -04006459 if (!map->stripes[i].dev) {
6460 map->stripes[i].dev =
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006461 add_missing_dev(fs_info->fs_devices, devid,
6462 uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006463 if (!map->stripes[i].dev) {
Chris Masondfe25022008-05-13 13:46:40 -04006464 free_extent_map(em);
6465 return -EIO;
6466 }
Qu Wenruoc5502452017-03-09 09:34:42 +08006467 btrfs_report_missing_device(fs_info, devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006468 }
6469 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04006470 }
6471
Chris Mason890871b2009-09-02 16:24:52 -04006472 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006473 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006474 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006475 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006476 free_extent_map(em);
6477
6478 return 0;
6479}
6480
Jeff Mahoney143bede2012-03-01 14:56:26 +01006481static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006482 struct btrfs_dev_item *dev_item,
6483 struct btrfs_device *device)
6484{
6485 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006486
6487 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006488 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6489 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006490 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006491 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006492 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006493 device->type = btrfs_device_type(leaf, dev_item);
6494 device->io_align = btrfs_device_io_align(leaf, dev_item);
6495 device->io_width = btrfs_device_io_width(leaf, dev_item);
6496 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006497 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01006498 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006499
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006500 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006501 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006502}
6503
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006504static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info,
Miao Xie5f375832014-09-03 21:35:46 +08006505 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006506{
6507 struct btrfs_fs_devices *fs_devices;
6508 int ret;
6509
Li Zefanb367e472011-12-07 11:38:24 +08006510 BUG_ON(!mutex_is_locked(&uuid_mutex));
David Sterba2dfeca92017-06-14 02:48:07 +02006511 ASSERT(fsid);
Yan Zheng2b820322008-11-17 21:11:30 -05006512
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006513 fs_devices = fs_info->fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05006514 while (fs_devices) {
Anand Jain44880fd2017-07-29 17:50:09 +08006515 if (!memcmp(fs_devices->fsid, fsid, BTRFS_FSID_SIZE))
Miao Xie5f375832014-09-03 21:35:46 +08006516 return fs_devices;
6517
Yan Zheng2b820322008-11-17 21:11:30 -05006518 fs_devices = fs_devices->seed;
6519 }
6520
6521 fs_devices = find_fsid(fsid);
6522 if (!fs_devices) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006523 if (!btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08006524 return ERR_PTR(-ENOENT);
6525
6526 fs_devices = alloc_fs_devices(fsid);
6527 if (IS_ERR(fs_devices))
6528 return fs_devices;
6529
6530 fs_devices->seeding = 1;
6531 fs_devices->opened = 1;
6532 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006533 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006534
6535 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006536 if (IS_ERR(fs_devices))
6537 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006538
Christoph Hellwig97288f22008-12-02 06:36:09 -05006539 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006540 fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006541 if (ret) {
6542 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006543 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006544 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006545 }
Yan Zheng2b820322008-11-17 21:11:30 -05006546
6547 if (!fs_devices->seeding) {
6548 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006549 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006550 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006551 goto out;
6552 }
6553
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006554 fs_devices->seed = fs_info->fs_devices->seed;
6555 fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006556out:
Miao Xie5f375832014-09-03 21:35:46 +08006557 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006558}
6559
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006560static int read_one_dev(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04006561 struct extent_buffer *leaf,
6562 struct btrfs_dev_item *dev_item)
6563{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006564 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006565 struct btrfs_device *device;
6566 u64 devid;
6567 int ret;
Anand Jain44880fd2017-07-29 17:50:09 +08006568 u8 fs_uuid[BTRFS_FSID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006569 u8 dev_uuid[BTRFS_UUID_SIZE];
6570
Chris Mason0b86a832008-03-24 15:01:56 -04006571 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006572 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006573 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006574 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Anand Jain44880fd2017-07-29 17:50:09 +08006575 BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05006576
Anand Jain44880fd2017-07-29 17:50:09 +08006577 if (memcmp(fs_uuid, fs_info->fsid, BTRFS_FSID_SIZE)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006578 fs_devices = open_seed_devices(fs_info, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006579 if (IS_ERR(fs_devices))
6580 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006581 }
6582
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006583 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006584 if (!device) {
Qu Wenruoc5502452017-03-09 09:34:42 +08006585 if (!btrfs_test_opt(fs_info, DEGRADED)) {
6586 btrfs_report_missing_device(fs_info, devid, dev_uuid);
Yan Zheng2b820322008-11-17 21:11:30 -05006587 return -EIO;
Qu Wenruoc5502452017-03-09 09:34:42 +08006588 }
Yan Zheng2b820322008-11-17 21:11:30 -05006589
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006590 device = add_missing_dev(fs_devices, devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006591 if (!device)
6592 return -ENOMEM;
Qu Wenruoc5502452017-03-09 09:34:42 +08006593 btrfs_report_missing_device(fs_info, devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006594 } else {
Qu Wenruoc5502452017-03-09 09:34:42 +08006595 if (!device->bdev) {
6596 btrfs_report_missing_device(fs_info, devid, dev_uuid);
6597 if (!btrfs_test_opt(fs_info, DEGRADED))
6598 return -EIO;
6599 }
Miao Xie5f375832014-09-03 21:35:46 +08006600
6601 if(!device->bdev && !device->missing) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006602 /*
6603 * this happens when a device that was properly setup
6604 * in the device info lists suddenly goes bad.
6605 * device->bdev is NULL, and so we have to set
6606 * device->missing to one here
6607 */
Miao Xie5f375832014-09-03 21:35:46 +08006608 device->fs_devices->missing_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05006609 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05006610 }
Miao Xie5f375832014-09-03 21:35:46 +08006611
6612 /* Move the device to its own fs_devices */
6613 if (device->fs_devices != fs_devices) {
6614 ASSERT(device->missing);
6615
6616 list_move(&device->dev_list, &fs_devices->devices);
6617 device->fs_devices->num_devices--;
6618 fs_devices->num_devices++;
6619
6620 device->fs_devices->missing_devices--;
6621 fs_devices->missing_devices++;
6622
6623 device->fs_devices = fs_devices;
6624 }
Yan Zheng2b820322008-11-17 21:11:30 -05006625 }
6626
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006627 if (device->fs_devices != fs_info->fs_devices) {
Yan Zheng2b820322008-11-17 21:11:30 -05006628 BUG_ON(device->writeable);
6629 if (device->generation !=
6630 btrfs_device_generation(leaf, dev_item))
6631 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006632 }
Chris Mason0b86a832008-03-24 15:01:56 -04006633
6634 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04006635 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01006636 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05006637 device->fs_devices->total_rw_bytes += device->total_bytes;
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03006638 atomic64_add(device->total_bytes - device->bytes_used,
6639 &fs_info->free_chunk_space);
Josef Bacik2bf64752011-09-26 17:12:22 -04006640 }
Chris Mason0b86a832008-03-24 15:01:56 -04006641 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006642 return ret;
6643}
6644
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006645int btrfs_read_sys_array(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006646{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006647 struct btrfs_root *root = fs_info->tree_root;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006648 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006649 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006650 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006651 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006652 u8 *array_ptr;
6653 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006654 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006655 u32 num_stripes;
6656 u32 array_size;
6657 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006658 u32 cur_offset;
Liu Boe06cd3d2016-06-03 12:05:15 -07006659 u64 type;
Chris Mason84eed902008-04-25 09:04:37 -04006660 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006661
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006662 ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize);
David Sterbaa83fffb2014-06-15 02:39:54 +02006663 /*
6664 * This will create extent buffer of nodesize, superblock size is
6665 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6666 * overallocate but we can keep it as-is, only the first page is used.
6667 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006668 sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET);
Liu Boc871b0f2016-06-06 12:01:23 -07006669 if (IS_ERR(sb))
6670 return PTR_ERR(sb);
David Sterba4db8c522015-12-03 13:06:46 +01006671 set_extent_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006672 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006673 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006674 * The sb extent buffer is artificial and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01006675 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02006676 * pages up-to-date when the page is larger: extent does not cover the
6677 * whole page and consequently check_page_uptodate does not find all
6678 * the page's extents up-to-date (the hole beyond sb),
6679 * write_extent_buffer then triggers a WARN_ON.
6680 *
6681 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6682 * but sb spans only this function. Add an explicit SetPageUptodate call
6683 * to silence the warning eg. on PowerPC 64.
6684 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006685 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006686 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006687
Chris Masona061fc82008-05-07 11:43:44 -04006688 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006689 array_size = btrfs_super_sys_array_size(super_copy);
6690
David Sterba1ffb22c2014-10-31 19:02:42 +01006691 array_ptr = super_copy->sys_chunk_array;
6692 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6693 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006694
David Sterba1ffb22c2014-10-31 19:02:42 +01006695 while (cur_offset < array_size) {
6696 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006697 len = sizeof(*disk_key);
6698 if (cur_offset + len > array_size)
6699 goto out_short_read;
6700
Chris Mason0b86a832008-03-24 15:01:56 -04006701 btrfs_disk_key_to_cpu(&key, disk_key);
6702
David Sterba1ffb22c2014-10-31 19:02:42 +01006703 array_ptr += len;
6704 sb_array_offset += len;
6705 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006706
Chris Mason0d81ba52008-03-24 15:02:07 -04006707 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006708 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006709 /*
6710 * At least one btrfs_chunk with one stripe must be
6711 * present, exact stripe count check comes afterwards
6712 */
6713 len = btrfs_chunk_item_size(1);
6714 if (cur_offset + len > array_size)
6715 goto out_short_read;
6716
6717 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006718 if (!num_stripes) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006719 btrfs_err(fs_info,
6720 "invalid number of stripes %u in sys_array at offset %u",
David Sterbaf5cdedd2015-11-30 17:27:06 +01006721 num_stripes, cur_offset);
6722 ret = -EIO;
6723 break;
6724 }
6725
Liu Boe06cd3d2016-06-03 12:05:15 -07006726 type = btrfs_chunk_type(sb, chunk);
6727 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006728 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006729 "invalid chunk type %llu in sys_array at offset %u",
6730 type, cur_offset);
6731 ret = -EIO;
6732 break;
6733 }
6734
David Sterbae3540ea2014-11-05 15:24:51 +01006735 len = btrfs_chunk_item_size(num_stripes);
6736 if (cur_offset + len > array_size)
6737 goto out_short_read;
6738
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006739 ret = read_one_chunk(fs_info, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006740 if (ret)
6741 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006742 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006743 btrfs_err(fs_info,
6744 "unexpected item type %u in sys_array at offset %u",
6745 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006746 ret = -EIO;
6747 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006748 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006749 array_ptr += len;
6750 sb_array_offset += len;
6751 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006752 }
Liu Bod8651772016-06-03 17:41:42 -07006753 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006754 free_extent_buffer_stale(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006755 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006756
6757out_short_read:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006758 btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u",
David Sterbae3540ea2014-11-05 15:24:51 +01006759 len, cur_offset);
Liu Bod8651772016-06-03 17:41:42 -07006760 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006761 free_extent_buffer_stale(sb);
David Sterbae3540ea2014-11-05 15:24:51 +01006762 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006763}
6764
Qu Wenruoc5502452017-03-09 09:34:42 +08006765void btrfs_report_missing_device(struct btrfs_fs_info *fs_info, u64 devid,
6766 u8 *uuid)
6767{
6768 btrfs_warn_rl(fs_info, "devid %llu uuid %pU is missing", devid, uuid);
6769}
6770
Qu Wenruo21634a12017-03-09 09:34:36 +08006771/*
6772 * Check if all chunks in the fs are OK for read-write degraded mount
6773 *
6774 * Return true if all chunks meet the minimal RW mount requirements.
6775 * Return false if any chunk doesn't meet the minimal RW mount requirements.
6776 */
6777bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info)
6778{
6779 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
6780 struct extent_map *em;
6781 u64 next_start = 0;
6782 bool ret = true;
6783
6784 read_lock(&map_tree->map_tree.lock);
6785 em = lookup_extent_mapping(&map_tree->map_tree, 0, (u64)-1);
6786 read_unlock(&map_tree->map_tree.lock);
6787 /* No chunk at all? Return false anyway */
6788 if (!em) {
6789 ret = false;
6790 goto out;
6791 }
6792 while (em) {
6793 struct map_lookup *map;
6794 int missing = 0;
6795 int max_tolerated;
6796 int i;
6797
6798 map = em->map_lookup;
6799 max_tolerated =
6800 btrfs_get_num_tolerated_disk_barrier_failures(
6801 map->type);
6802 for (i = 0; i < map->num_stripes; i++) {
6803 struct btrfs_device *dev = map->stripes[i].dev;
6804
6805 if (!dev || !dev->bdev || dev->missing ||
6806 dev->last_flush_error)
6807 missing++;
6808 }
6809 if (missing > max_tolerated) {
6810 btrfs_warn(fs_info,
6811 "chunk %llu missing %d devices, max tolerance is %d for writeable mount",
6812 em->start, missing, max_tolerated);
6813 free_extent_map(em);
6814 ret = false;
6815 goto out;
6816 }
6817 next_start = extent_map_end(em);
6818 free_extent_map(em);
6819
6820 read_lock(&map_tree->map_tree.lock);
6821 em = lookup_extent_mapping(&map_tree->map_tree, next_start,
6822 (u64)(-1) - next_start);
6823 read_unlock(&map_tree->map_tree.lock);
6824 }
6825out:
6826 return ret;
6827}
6828
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006829int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006830{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006831 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04006832 struct btrfs_path *path;
6833 struct extent_buffer *leaf;
6834 struct btrfs_key key;
6835 struct btrfs_key found_key;
6836 int ret;
6837 int slot;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006838 u64 total_dev = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006839
Chris Mason0b86a832008-03-24 15:01:56 -04006840 path = btrfs_alloc_path();
6841 if (!path)
6842 return -ENOMEM;
6843
Li Zefanb367e472011-12-07 11:38:24 +08006844 mutex_lock(&uuid_mutex);
David Sterba34441362016-10-04 19:34:27 +02006845 mutex_lock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006846
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006847 /*
6848 * Read all device items, and then all the chunk items. All
6849 * device items are found before any chunk item (their object id
6850 * is smaller than the lowest possible object id for a chunk
6851 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006852 */
6853 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6854 key.offset = 0;
6855 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006856 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006857 if (ret < 0)
6858 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006859 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006860 leaf = path->nodes[0];
6861 slot = path->slots[0];
6862 if (slot >= btrfs_header_nritems(leaf)) {
6863 ret = btrfs_next_leaf(root, path);
6864 if (ret == 0)
6865 continue;
6866 if (ret < 0)
6867 goto error;
6868 break;
6869 }
6870 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006871 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6872 struct btrfs_dev_item *dev_item;
6873 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006874 struct btrfs_dev_item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006875 ret = read_one_dev(fs_info, leaf, dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006876 if (ret)
6877 goto error;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006878 total_dev++;
Chris Mason0b86a832008-03-24 15:01:56 -04006879 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6880 struct btrfs_chunk *chunk;
6881 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006882 ret = read_one_chunk(fs_info, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006883 if (ret)
6884 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006885 }
6886 path->slots[0]++;
6887 }
Liu Bo99e3ecf2016-06-03 12:05:14 -07006888
6889 /*
6890 * After loading chunk tree, we've got all device information,
6891 * do another round of validation checks.
6892 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006893 if (total_dev != fs_info->fs_devices->total_devices) {
6894 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07006895 "super_num_devices %llu mismatch with num_devices %llu found here",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006896 btrfs_super_num_devices(fs_info->super_copy),
Liu Bo99e3ecf2016-06-03 12:05:14 -07006897 total_dev);
6898 ret = -EINVAL;
6899 goto error;
6900 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006901 if (btrfs_super_total_bytes(fs_info->super_copy) <
6902 fs_info->fs_devices->total_rw_bytes) {
6903 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07006904 "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006905 btrfs_super_total_bytes(fs_info->super_copy),
6906 fs_info->fs_devices->total_rw_bytes);
Liu Bo99e3ecf2016-06-03 12:05:14 -07006907 ret = -EINVAL;
6908 goto error;
6909 }
Chris Mason0b86a832008-03-24 15:01:56 -04006910 ret = 0;
6911error:
David Sterba34441362016-10-04 19:34:27 +02006912 mutex_unlock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006913 mutex_unlock(&uuid_mutex);
6914
Yan Zheng2b820322008-11-17 21:11:30 -05006915 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006916 return ret;
6917}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006918
Miao Xiecb517ea2013-05-15 07:48:19 +00006919void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6920{
6921 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6922 struct btrfs_device *device;
6923
Liu Bo29cc83f2014-05-11 23:14:59 +08006924 while (fs_devices) {
6925 mutex_lock(&fs_devices->device_list_mutex);
6926 list_for_each_entry(device, &fs_devices->devices, dev_list)
Jeff Mahoneyfb456252016-06-22 18:54:56 -04006927 device->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08006928 mutex_unlock(&fs_devices->device_list_mutex);
6929
6930 fs_devices = fs_devices->seed;
6931 }
Miao Xiecb517ea2013-05-15 07:48:19 +00006932}
6933
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006934static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6935{
6936 int i;
6937
6938 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6939 btrfs_dev_stat_reset(dev, i);
6940}
6941
6942int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6943{
6944 struct btrfs_key key;
6945 struct btrfs_key found_key;
6946 struct btrfs_root *dev_root = fs_info->dev_root;
6947 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6948 struct extent_buffer *eb;
6949 int slot;
6950 int ret = 0;
6951 struct btrfs_device *device;
6952 struct btrfs_path *path = NULL;
6953 int i;
6954
6955 path = btrfs_alloc_path();
6956 if (!path) {
6957 ret = -ENOMEM;
6958 goto out;
6959 }
6960
6961 mutex_lock(&fs_devices->device_list_mutex);
6962 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6963 int item_size;
6964 struct btrfs_dev_stats_item *ptr;
6965
David Sterba242e2952016-01-25 17:51:31 +01006966 key.objectid = BTRFS_DEV_STATS_OBJECTID;
6967 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006968 key.offset = device->devid;
6969 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6970 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006971 __btrfs_reset_dev_stats(device);
6972 device->dev_stats_valid = 1;
6973 btrfs_release_path(path);
6974 continue;
6975 }
6976 slot = path->slots[0];
6977 eb = path->nodes[0];
6978 btrfs_item_key_to_cpu(eb, &found_key, slot);
6979 item_size = btrfs_item_size_nr(eb, slot);
6980
6981 ptr = btrfs_item_ptr(eb, slot,
6982 struct btrfs_dev_stats_item);
6983
6984 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6985 if (item_size >= (1 + i) * sizeof(__le64))
6986 btrfs_dev_stat_set(device, i,
6987 btrfs_dev_stats_value(eb, ptr, i));
6988 else
6989 btrfs_dev_stat_reset(device, i);
6990 }
6991
6992 device->dev_stats_valid = 1;
6993 btrfs_dev_stat_print_on_load(device);
6994 btrfs_release_path(path);
6995 }
6996 mutex_unlock(&fs_devices->device_list_mutex);
6997
6998out:
6999 btrfs_free_path(path);
7000 return ret < 0 ? ret : 0;
7001}
7002
7003static int update_dev_stat_item(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007004 struct btrfs_fs_info *fs_info,
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007005 struct btrfs_device *device)
7006{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007007 struct btrfs_root *dev_root = fs_info->dev_root;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007008 struct btrfs_path *path;
7009 struct btrfs_key key;
7010 struct extent_buffer *eb;
7011 struct btrfs_dev_stats_item *ptr;
7012 int ret;
7013 int i;
7014
David Sterba242e2952016-01-25 17:51:31 +01007015 key.objectid = BTRFS_DEV_STATS_OBJECTID;
7016 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007017 key.offset = device->devid;
7018
7019 path = btrfs_alloc_path();
David Sterbafa252992017-02-15 09:35:01 +01007020 if (!path)
7021 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007022 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
7023 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007024 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007025 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04007026 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007027 goto out;
7028 }
7029
7030 if (ret == 0 &&
7031 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
7032 /* need to delete old one and insert a new one */
7033 ret = btrfs_del_item(trans, dev_root, path);
7034 if (ret != 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007035 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007036 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04007037 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007038 goto out;
7039 }
7040 ret = 1;
7041 }
7042
7043 if (ret == 1) {
7044 /* need to insert a new item */
7045 btrfs_release_path(path);
7046 ret = btrfs_insert_empty_item(trans, dev_root, path,
7047 &key, sizeof(*ptr));
7048 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007049 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007050 "insert dev_stats item for device %s failed %d",
7051 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007052 goto out;
7053 }
7054 }
7055
7056 eb = path->nodes[0];
7057 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
7058 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7059 btrfs_set_dev_stats_value(eb, ptr, i,
7060 btrfs_dev_stat_read(device, i));
7061 btrfs_mark_buffer_dirty(eb);
7062
7063out:
7064 btrfs_free_path(path);
7065 return ret;
7066}
7067
7068/*
7069 * called from commit_transaction. Writes all changed device stats to disk.
7070 */
7071int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
7072 struct btrfs_fs_info *fs_info)
7073{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007074 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7075 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08007076 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007077 int ret = 0;
7078
7079 mutex_lock(&fs_devices->device_list_mutex);
7080 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Miao Xieaddc3fa2014-07-24 11:37:11 +08007081 if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device))
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007082 continue;
7083
Miao Xieaddc3fa2014-07-24 11:37:11 +08007084 stats_cnt = atomic_read(&device->dev_stats_ccnt);
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007085 ret = update_dev_stat_item(trans, fs_info, device);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007086 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08007087 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007088 }
7089 mutex_unlock(&fs_devices->device_list_mutex);
7090
7091 return ret;
7092}
7093
Stefan Behrens442a4f62012-05-25 16:06:08 +02007094void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
7095{
7096 btrfs_dev_stat_inc(dev, index);
7097 btrfs_dev_stat_print_on_error(dev);
7098}
7099
Eric Sandeen48a3b632013-04-25 20:41:01 +00007100static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02007101{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007102 if (!dev->dev_stats_valid)
7103 return;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007104 btrfs_err_rl_in_rcu(dev->fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02007105 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007106 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02007107 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7108 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7109 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05007110 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7111 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02007112}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007113
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007114static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
7115{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06007116 int i;
7117
7118 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7119 if (btrfs_dev_stat_read(dev, i) != 0)
7120 break;
7121 if (i == BTRFS_DEV_STAT_VALUES_MAX)
7122 return; /* all values == 0, suppress message */
7123
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007124 btrfs_info_in_rcu(dev->fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007125 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007126 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007127 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7128 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7129 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
7130 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7131 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
7132}
7133
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007134int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06007135 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007136{
7137 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007138 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007139 int i;
7140
7141 mutex_lock(&fs_devices->device_list_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007142 dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007143 mutex_unlock(&fs_devices->device_list_mutex);
7144
7145 if (!dev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007146 btrfs_warn(fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007147 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007148 } else if (!dev->dev_stats_valid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007149 btrfs_warn(fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007150 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06007151 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007152 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7153 if (stats->nr_items > i)
7154 stats->values[i] =
7155 btrfs_dev_stat_read_and_reset(dev, i);
7156 else
7157 btrfs_dev_stat_reset(dev, i);
7158 }
7159 } else {
7160 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7161 if (stats->nr_items > i)
7162 stats->values[i] = btrfs_dev_stat_read(dev, i);
7163 }
7164 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
7165 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
7166 return 0;
7167}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007168
David Sterbada353f62017-02-14 17:55:53 +01007169void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007170{
7171 struct buffer_head *bh;
7172 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08007173 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007174
Anand Jain12b1c262015-08-14 18:32:59 +08007175 if (!bdev)
7176 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007177
Anand Jain12b1c262015-08-14 18:32:59 +08007178 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
7179 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007180
Anand Jain12b1c262015-08-14 18:32:59 +08007181 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
7182 continue;
7183
7184 disk_super = (struct btrfs_super_block *)bh->b_data;
7185
7186 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
7187 set_buffer_dirty(bh);
7188 sync_dirty_buffer(bh);
7189 brelse(bh);
7190 }
7191
7192 /* Notify udev that device has changed */
7193 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
7194
7195 /* Update ctime/mtime for device path for libblkid */
7196 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007197}
Miao Xie935e5cc2014-09-03 21:35:33 +08007198
7199/*
7200 * Update the size of all devices, which is used for writing out the
7201 * super blocks.
7202 */
7203void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
7204{
7205 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7206 struct btrfs_device *curr, *next;
7207
7208 if (list_empty(&fs_devices->resized_devices))
7209 return;
7210
7211 mutex_lock(&fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02007212 mutex_lock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007213 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
7214 resized_list) {
7215 list_del_init(&curr->resized_list);
7216 curr->commit_total_bytes = curr->disk_total_bytes;
7217 }
David Sterba34441362016-10-04 19:34:27 +02007218 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007219 mutex_unlock(&fs_devices->device_list_mutex);
7220}
Miao Xiece7213c2014-09-03 21:35:34 +08007221
7222/* Must be invoked during the transaction commit */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007223void btrfs_update_commit_device_bytes_used(struct btrfs_fs_info *fs_info,
Miao Xiece7213c2014-09-03 21:35:34 +08007224 struct btrfs_transaction *transaction)
7225{
7226 struct extent_map *em;
7227 struct map_lookup *map;
7228 struct btrfs_device *dev;
7229 int i;
7230
7231 if (list_empty(&transaction->pending_chunks))
7232 return;
7233
7234 /* In order to kick the device replace finish process */
David Sterba34441362016-10-04 19:34:27 +02007235 mutex_lock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007236 list_for_each_entry(em, &transaction->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04007237 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08007238
7239 for (i = 0; i < map->num_stripes; i++) {
7240 dev = map->stripes[i].dev;
7241 dev->commit_bytes_used = dev->bytes_used;
7242 }
7243 }
David Sterba34441362016-10-04 19:34:27 +02007244 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007245}
Anand Jain5a13f432015-03-10 06:38:31 +08007246
7247void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
7248{
7249 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7250 while (fs_devices) {
7251 fs_devices->fs_info = fs_info;
7252 fs_devices = fs_devices->seed;
7253 }
7254}
7255
7256void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
7257{
7258 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7259 while (fs_devices) {
7260 fs_devices->fs_info = NULL;
7261 fs_devices = fs_devices->seed;
7262 }
7263}