blob: bdc62561ede8f534358e649b8b69763ec5f512dc [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,
137 struct btrfs_root *root,
138 struct btrfs_device *device);
139static int btrfs_relocate_sys_chunks(struct btrfs_root *root);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200140static void __btrfs_reset_dev_stats(struct btrfs_device *dev);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000141static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200142static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
David Sterba87ad58c2015-11-27 18:49:39 +0100143static void btrfs_close_one_device(struct btrfs_device *device);
Yan Zheng2b820322008-11-17 21:11:30 -0500144
Miao Xie67a2c452014-09-03 21:35:43 +0800145DEFINE_MUTEX(uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400146static LIST_HEAD(fs_uuids);
Anand Jainc73eccf2015-03-10 06:38:30 +0800147struct list_head *btrfs_get_fs_uuids(void)
148{
149 return &fs_uuids;
150}
Chris Mason8a4b83c2008-03-24 15:02:07 -0400151
Ilya Dryomov2208a372013-08-12 14:33:03 +0300152static struct btrfs_fs_devices *__alloc_fs_devices(void)
153{
154 struct btrfs_fs_devices *fs_devs;
155
David Sterba78f2c9e2016-02-11 14:25:38 +0100156 fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300157 if (!fs_devs)
158 return ERR_PTR(-ENOMEM);
159
160 mutex_init(&fs_devs->device_list_mutex);
161
162 INIT_LIST_HEAD(&fs_devs->devices);
Miao Xie935e5cc2014-09-03 21:35:33 +0800163 INIT_LIST_HEAD(&fs_devs->resized_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300164 INIT_LIST_HEAD(&fs_devs->alloc_list);
165 INIT_LIST_HEAD(&fs_devs->list);
166
167 return fs_devs;
168}
169
170/**
171 * alloc_fs_devices - allocate struct btrfs_fs_devices
172 * @fsid: a pointer to UUID for this FS. If NULL a new UUID is
173 * generated.
174 *
175 * Return: a pointer to a new &struct btrfs_fs_devices on success;
176 * ERR_PTR() on error. Returned struct is not linked onto any lists and
177 * can be destroyed with kfree() right away.
178 */
179static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
180{
181 struct btrfs_fs_devices *fs_devs;
182
183 fs_devs = __alloc_fs_devices();
184 if (IS_ERR(fs_devs))
185 return fs_devs;
186
187 if (fsid)
188 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
189 else
190 generate_random_uuid(fs_devs->fsid);
191
192 return fs_devs;
193}
194
Yan Zhenge4404d62008-12-12 10:03:26 -0500195static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
196{
197 struct btrfs_device *device;
198 WARN_ON(fs_devices->opened);
199 while (!list_empty(&fs_devices->devices)) {
200 device = list_entry(fs_devices->devices.next,
201 struct btrfs_device, dev_list);
202 list_del(&device->dev_list);
Josef Bacik606686e2012-06-04 14:03:51 -0400203 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500204 kfree(device);
205 }
206 kfree(fs_devices);
207}
208
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000209static void btrfs_kobject_uevent(struct block_device *bdev,
210 enum kobject_action action)
211{
212 int ret;
213
214 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
215 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -0500216 pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n",
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000217 action,
218 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
219 &disk_to_dev(bdev->bd_disk)->kobj);
220}
221
Jeff Mahoney143bede2012-03-01 14:56:26 +0100222void btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400223{
224 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400225
Yan Zheng2b820322008-11-17 21:11:30 -0500226 while (!list_empty(&fs_uuids)) {
227 fs_devices = list_entry(fs_uuids.next,
228 struct btrfs_fs_devices, list);
229 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500230 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400231 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400232}
233
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300234static struct btrfs_device *__alloc_device(void)
235{
236 struct btrfs_device *dev;
237
David Sterba78f2c9e2016-02-11 14:25:38 +0100238 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300239 if (!dev)
240 return ERR_PTR(-ENOMEM);
241
242 INIT_LIST_HEAD(&dev->dev_list);
243 INIT_LIST_HEAD(&dev->dev_alloc_list);
Miao Xie935e5cc2014-09-03 21:35:33 +0800244 INIT_LIST_HEAD(&dev->resized_list);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300245
246 spin_lock_init(&dev->io_lock);
247
248 spin_lock_init(&dev->reada_lock);
249 atomic_set(&dev->reada_in_flight, 0);
Miao Xieaddc3fa2014-07-24 11:37:11 +0800250 atomic_set(&dev->dev_stats_ccnt, 0);
Sebastian Andrzej Siewior546bed62016-01-15 14:37:15 +0100251 btrfs_device_data_ordered_init(dev);
Mel Gormand0164ad2015-11-06 16:28:21 -0800252 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
253 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300254
255 return dev;
256}
257
Chris Masona1b32a52008-09-05 16:09:51 -0400258static noinline struct btrfs_device *__find_device(struct list_head *head,
259 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400260{
261 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400262
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500263 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400264 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400265 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400266 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400267 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400268 }
269 return NULL;
270}
271
Chris Masona1b32a52008-09-05 16:09:51 -0400272static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400273{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400274 struct btrfs_fs_devices *fs_devices;
275
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500276 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400277 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
278 return fs_devices;
279 }
280 return NULL;
281}
282
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100283static int
284btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
285 int flush, struct block_device **bdev,
286 struct buffer_head **bh)
287{
288 int ret;
289
290 *bdev = blkdev_get_by_path(device_path, flags, holder);
291
292 if (IS_ERR(*bdev)) {
293 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100294 goto error;
295 }
296
297 if (flush)
298 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
299 ret = set_blocksize(*bdev, 4096);
300 if (ret) {
301 blkdev_put(*bdev, flags);
302 goto error;
303 }
304 invalidate_bdev(*bdev);
305 *bh = btrfs_read_dev_super(*bdev);
Anand Jain92fc03f2015-08-14 18:32:51 +0800306 if (IS_ERR(*bh)) {
307 ret = PTR_ERR(*bh);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100308 blkdev_put(*bdev, flags);
309 goto error;
310 }
311
312 return 0;
313
314error:
315 *bdev = NULL;
316 *bh = NULL;
317 return ret;
318}
319
Chris Masonffbd5172009-04-20 15:50:09 -0400320static void requeue_list(struct btrfs_pending_bios *pending_bios,
321 struct bio *head, struct bio *tail)
322{
323
324 struct bio *old_head;
325
326 old_head = pending_bios->head;
327 pending_bios->head = head;
328 if (pending_bios->tail)
329 tail->bi_next = old_head;
330 else
331 pending_bios->tail = tail;
332}
333
Chris Mason8b712842008-06-11 16:50:36 -0400334/*
335 * we try to collect pending bios for a device so we don't get a large
336 * number of procs sending bios down to the same device. This greatly
337 * improves the schedulers ability to collect and merge the bios.
338 *
339 * But, it also turns into a long list of bios to process and that is sure
340 * to eventually make the worker thread block. The solution here is to
341 * make some progress and then put this work struct back at the end of
342 * the list if the block device is congested. This way, multiple devices
343 * can make progress from a single worker thread.
344 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100345static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400346{
347 struct bio *pending;
348 struct backing_dev_info *bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400349 struct btrfs_fs_info *fs_info;
Chris Masonffbd5172009-04-20 15:50:09 -0400350 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400351 struct bio *tail;
352 struct bio *cur;
353 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400354 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400355 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400356 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400357 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400358 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000359 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400360 struct blk_plug plug;
361
362 /*
363 * this function runs all the bios we've collected for
364 * a particular device. We don't want to wander off to
365 * another device without first sending all of these down.
366 * So, setup a plug here and finish it off before we return
367 */
368 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400369
Chris Masonbedf7622009-04-03 10:32:58 -0400370 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masonb64a2852008-08-20 13:39:41 -0400371 fs_info = device->dev_root->fs_info;
372 limit = btrfs_async_submit_limit(fs_info);
373 limit = limit * 2 / 3;
374
Chris Mason8b712842008-06-11 16:50:36 -0400375loop:
376 spin_lock(&device->io_lock);
377
Chris Masona6837052009-02-04 09:19:41 -0500378loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400379 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400380
Chris Mason8b712842008-06-11 16:50:36 -0400381 /* take all the bios off the list at once and process them
382 * later on (without the lock held). But, remember the
383 * tail and other pointers so the bios can be properly reinserted
384 * into the list if we hit congestion
385 */
Chris Masond84275c2009-06-09 15:39:08 -0400386 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400387 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400388 force_reg = 1;
389 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400390 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400391 force_reg = 0;
392 }
Chris Masonffbd5172009-04-20 15:50:09 -0400393
394 pending = pending_bios->head;
395 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400396 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400397
398 /*
399 * if pending was null this time around, no bios need processing
400 * at all and we can stop. Otherwise it'll loop back up again
401 * and do an additional check so no bios are missed.
402 *
403 * device->running_pending is used to synchronize with the
404 * schedule_bio code.
405 */
Chris Masonffbd5172009-04-20 15:50:09 -0400406 if (device->pending_sync_bios.head == NULL &&
407 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400408 again = 0;
409 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400410 } else {
411 again = 1;
412 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400413 }
Chris Masonffbd5172009-04-20 15:50:09 -0400414
415 pending_bios->head = NULL;
416 pending_bios->tail = NULL;
417
Chris Mason8b712842008-06-11 16:50:36 -0400418 spin_unlock(&device->io_lock);
419
Chris Masond3977122009-01-05 21:25:51 -0500420 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400421
422 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400423 /* we want to work on both lists, but do more bios on the
424 * sync list than the regular list
425 */
426 if ((num_run > 32 &&
427 pending_bios != &device->pending_sync_bios &&
428 device->pending_sync_bios.head) ||
429 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
430 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400431 spin_lock(&device->io_lock);
432 requeue_list(pending_bios, pending, tail);
433 goto loop_lock;
434 }
435
Chris Mason8b712842008-06-11 16:50:36 -0400436 cur = pending;
437 pending = pending->bi_next;
438 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400439
David Sterbaee863952015-02-16 19:41:40 +0100440 /*
441 * atomic_dec_return implies a barrier for waitqueue_active
442 */
Josef Bacik66657b32012-08-01 15:36:24 -0400443 if (atomic_dec_return(&fs_info->nr_async_bios) < limit &&
Chris Masonb64a2852008-08-20 13:39:41 -0400444 waitqueue_active(&fs_info->async_submit_wait))
445 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400446
Jens Axboedac56212015-04-17 16:23:59 -0600447 BUG_ON(atomic_read(&cur->__bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400448
Chris Mason2ab1ba62011-08-04 14:28:36 -0400449 /*
450 * if we're doing the sync list, record that our
451 * plug has some sync requests on it
452 *
453 * If we're doing the regular list and there are
454 * sync requests sitting around, unplug before
455 * we add more
456 */
457 if (pending_bios == &device->pending_sync_bios) {
458 sync_pending = 1;
459 } else if (sync_pending) {
460 blk_finish_plug(&plug);
461 blk_start_plug(&plug);
462 sync_pending = 0;
463 }
464
Stefan Behrens21adbd52011-11-09 13:44:05 +0100465 btrfsic_submit_bio(cur->bi_rw, cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400466 num_run++;
467 batch_run++;
David Sterba853d8ec2015-01-08 15:15:19 +0100468
469 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400470
471 /*
472 * we made progress, there is more work to do and the bdi
473 * is now congested. Back off and let other work structs
474 * run instead
475 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400476 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500477 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400478 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400479
Chris Masonb765ead2009-04-03 10:27:10 -0400480 ioc = current->io_context;
481
482 /*
483 * the main goal here is that we don't want to
484 * block if we're going to be able to submit
485 * more requests without blocking.
486 *
487 * This code does two great things, it pokes into
488 * the elevator code from a filesystem _and_
489 * it makes assumptions about how batching works.
490 */
491 if (ioc && ioc->nr_batch_requests > 0 &&
492 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
493 (last_waited == 0 ||
494 ioc->last_waited == last_waited)) {
495 /*
496 * we want to go through our batch of
497 * requests and stop. So, we copy out
498 * the ioc->last_waited time and test
499 * against it before looping
500 */
501 last_waited = ioc->last_waited;
David Sterba853d8ec2015-01-08 15:15:19 +0100502 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400503 continue;
504 }
Chris Mason8b712842008-06-11 16:50:36 -0400505 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400506 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500507 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400508
509 spin_unlock(&device->io_lock);
Qu Wenruoa8c93d42014-02-28 10:46:08 +0800510 btrfs_queue_work(fs_info->submit_workers,
511 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -0400512 goto done;
513 }
Chris Masond85c8a6f2011-12-15 15:38:41 -0500514 /* unplug every 64 requests just for good measure */
515 if (batch_run % 64 == 0) {
516 blk_finish_plug(&plug);
517 blk_start_plug(&plug);
518 sync_pending = 0;
519 }
Chris Mason8b712842008-06-11 16:50:36 -0400520 }
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
544void btrfs_free_stale_device(struct btrfs_device *cur_dev)
545{
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 {
Chris Masona4437552008-04-18 10:29:38 -0400626 device = __find_device(&fs_devices->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);
838
839 if (device->bdev)
840 blkdev_put(device->bdev, device->mode);
841
Josef Bacik606686e2012-06-04 14:03:51 -0400842 rcu_string_free(device->name);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000843 kfree(device);
844}
845
846static void free_device(struct rcu_head *head)
847{
848 struct btrfs_device *device;
849
850 device = container_of(head, struct btrfs_device, rcu);
851
852 INIT_WORK(&device->rcu_work, __free_device);
853 schedule_work(&device->rcu_work);
854}
855
Yan Zheng2b820322008-11-17 21:11:30 -0500856static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400857{
Sasha Levin2037a092015-05-12 19:31:37 -0400858 struct btrfs_device *device, *tmp;
Yan Zhenge4404d62008-12-12 10:03:26 -0500859
Yan Zheng2b820322008-11-17 21:11:30 -0500860 if (--fs_devices->opened > 0)
861 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400862
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000863 mutex_lock(&fs_devices->device_list_mutex);
Sasha Levin2037a092015-05-12 19:31:37 -0400864 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
Anand Jainf190aa42015-08-14 18:33:05 +0800865 btrfs_close_one_device(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400866 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000867 mutex_unlock(&fs_devices->device_list_mutex);
868
Yan Zhenge4404d62008-12-12 10:03:26 -0500869 WARN_ON(fs_devices->open_devices);
870 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500871 fs_devices->opened = 0;
872 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500873
Chris Mason8a4b83c2008-03-24 15:02:07 -0400874 return 0;
875}
876
Yan Zheng2b820322008-11-17 21:11:30 -0500877int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
878{
Yan Zhenge4404d62008-12-12 10:03:26 -0500879 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500880 int ret;
881
882 mutex_lock(&uuid_mutex);
883 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500884 if (!fs_devices->opened) {
885 seed_devices = fs_devices->seed;
886 fs_devices->seed = NULL;
887 }
Yan Zheng2b820322008-11-17 21:11:30 -0500888 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500889
890 while (seed_devices) {
891 fs_devices = seed_devices;
892 seed_devices = fs_devices->seed;
893 __btrfs_close_devices(fs_devices);
894 free_fs_devices(fs_devices);
895 }
Eric Sandeenbc178622013-03-09 15:18:39 +0000896 /*
897 * Wait for rcu kworkers under __btrfs_close_devices
898 * to finish all blkdev_puts so device is really
899 * free when umount is done.
900 */
901 rcu_barrier();
Yan Zheng2b820322008-11-17 21:11:30 -0500902 return ret;
903}
904
Yan Zhenge4404d62008-12-12 10:03:26 -0500905static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
906 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400907{
Josef Bacikd5e20032011-08-04 14:52:27 +0000908 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400909 struct block_device *bdev;
910 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400911 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +0800912 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -0400913 struct buffer_head *bh;
914 struct btrfs_super_block *disk_super;
Chris Masona0af4692008-05-13 16:03:06 -0400915 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500916 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400917 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400918
Tejun Heod4d77622010-11-13 11:55:18 +0100919 flags |= FMODE_EXCL;
920
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500921 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400922 if (device->bdev)
923 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400924 if (!device->name)
925 continue;
926
Eric Sandeenf63e0cc2013-04-04 20:45:08 +0000927 /* Just open everything we can; ignore failures here */
928 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
929 &bdev, &bh))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100930 continue;
Chris Masona0af4692008-05-13 16:03:06 -0400931
932 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000933 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400934 if (devid != device->devid)
935 goto error_brelse;
936
Yan Zheng2b820322008-11-17 21:11:30 -0500937 if (memcmp(device->uuid, disk_super->dev_item.uuid,
938 BTRFS_UUID_SIZE))
939 goto error_brelse;
940
941 device->generation = btrfs_super_generation(disk_super);
Miao Xie443f24f2014-07-24 11:37:15 +0800942 if (!latest_dev ||
943 device->generation > latest_dev->generation)
944 latest_dev = device;
Chris Masona0af4692008-05-13 16:03:06 -0400945
Yan Zheng2b820322008-11-17 21:11:30 -0500946 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
947 device->writeable = 0;
948 } else {
949 device->writeable = !bdev_read_only(bdev);
950 seeding = 0;
951 }
952
Josef Bacikd5e20032011-08-04 14:52:27 +0000953 q = bdev_get_queue(bdev);
Miao Xie90180da2014-09-03 21:35:30 +0800954 if (blk_queue_discard(q))
Josef Bacikd5e20032011-08-04 14:52:27 +0000955 device->can_discard = 1;
Josef Bacikd5e20032011-08-04 14:52:27 +0000956
Chris Mason8a4b83c2008-03-24 15:02:07 -0400957 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400958 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500959 device->mode = flags;
960
Chris Masonc2898112009-06-10 09:51:32 -0400961 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
962 fs_devices->rotating = 1;
963
Chris Masona0af4692008-05-13 16:03:06 -0400964 fs_devices->open_devices++;
Ilya Dryomov55e50e42013-09-01 18:56:44 +0300965 if (device->writeable &&
966 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Yan Zheng2b820322008-11-17 21:11:30 -0500967 fs_devices->rw_devices++;
968 list_add(&device->dev_alloc_list,
969 &fs_devices->alloc_list);
970 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +0000971 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -0400972 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400973
Chris Masona0af4692008-05-13 16:03:06 -0400974error_brelse:
975 brelse(bh);
Tejun Heod4d77622010-11-13 11:55:18 +0100976 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -0400977 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400978 }
Chris Masona0af4692008-05-13 16:03:06 -0400979 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +0300980 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -0400981 goto out;
982 }
Yan Zheng2b820322008-11-17 21:11:30 -0500983 fs_devices->seeding = seeding;
984 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +0800985 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -0500986 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400987out:
Yan Zheng2b820322008-11-17 21:11:30 -0500988 return ret;
989}
990
991int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500992 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500993{
994 int ret;
995
996 mutex_lock(&uuid_mutex);
997 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500998 fs_devices->opened++;
999 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001000 } else {
Chris Mason15916de2008-11-19 21:17:22 -05001001 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -05001002 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001003 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001004 return ret;
1005}
1006
Anand Jain6cf86a002016-02-13 10:01:29 +08001007void btrfs_release_disk_super(struct page *page)
1008{
1009 kunmap(page);
1010 put_page(page);
1011}
1012
1013int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr,
1014 struct page **page, struct btrfs_super_block **disk_super)
1015{
1016 void *p;
1017 pgoff_t index;
1018
1019 /* make sure our super fits in the device */
1020 if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode))
1021 return 1;
1022
1023 /* make sure our super fits in the page */
1024 if (sizeof(**disk_super) > PAGE_SIZE)
1025 return 1;
1026
1027 /* make sure our super doesn't straddle pages on disk */
1028 index = bytenr >> PAGE_SHIFT;
1029 if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index)
1030 return 1;
1031
1032 /* pull in the page with our super */
1033 *page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1034 index, GFP_KERNEL);
1035
1036 if (IS_ERR_OR_NULL(*page))
1037 return 1;
1038
1039 p = kmap(*page);
1040
1041 /* align our pointer to the offset of the super block */
1042 *disk_super = p + (bytenr & ~PAGE_MASK);
1043
1044 if (btrfs_super_bytenr(*disk_super) != bytenr ||
1045 btrfs_super_magic(*disk_super) != BTRFS_MAGIC) {
1046 btrfs_release_disk_super(*page);
1047 return 1;
1048 }
1049
1050 if ((*disk_super)->label[0] &&
1051 (*disk_super)->label[BTRFS_LABEL_SIZE - 1])
1052 (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0';
1053
1054 return 0;
1055}
1056
David Sterba6f60cbd2013-02-15 11:31:02 -07001057/*
1058 * Look for a btrfs signature on a device. This may be called out of the mount path
1059 * and we are not allowed to call set_blocksize during the scan. The superblock
1060 * is read via pagecache
1061 */
Christoph Hellwig97288f22008-12-02 06:36:09 -05001062int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001063 struct btrfs_fs_devices **fs_devices_ret)
1064{
1065 struct btrfs_super_block *disk_super;
1066 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -07001067 struct page *page;
David Sterba6f60cbd2013-02-15 11:31:02 -07001068 int ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001069 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -04001070 u64 transid;
Josef Bacik02db0842012-06-21 16:03:58 -04001071 u64 total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001072 u64 bytenr;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001073
David Sterba6f60cbd2013-02-15 11:31:02 -07001074 /*
1075 * we would like to check all the supers, but that would make
1076 * a btrfs mount succeed after a mkfs from a different FS.
1077 * So, we need to add a special mount option to scan for
1078 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1079 */
1080 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +01001081 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -05001082 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -07001083
1084 bdev = blkdev_get_by_path(path, flags, holder);
David Sterba6f60cbd2013-02-15 11:31:02 -07001085 if (IS_ERR(bdev)) {
1086 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001087 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -07001088 }
1089
Anand Jain6cf86a002016-02-13 10:01:29 +08001090 if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super))
David Sterba6f60cbd2013-02-15 11:31:02 -07001091 goto error_bdev_put;
1092
Xiao Guangronga3438322010-01-06 11:48:18 +00001093 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -04001094 transid = btrfs_super_generation(disk_super);
Josef Bacik02db0842012-06-21 16:03:58 -04001095 total_devices = btrfs_super_num_devices(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001096
Chris Mason8a4b83c2008-03-24 15:02:07 -04001097 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
David Sterba60999ca2014-03-26 18:26:36 +01001098 if (ret > 0) {
1099 if (disk_super->label[0]) {
David Sterba60999ca2014-03-26 18:26:36 +01001100 printk(KERN_INFO "BTRFS: device label %s ", disk_super->label);
1101 } else {
1102 printk(KERN_INFO "BTRFS: device fsid %pU ", disk_super->fsid);
1103 }
1104
1105 printk(KERN_CONT "devid %llu transid %llu %s\n", devid, transid, path);
1106 ret = 0;
1107 }
Josef Bacik02db0842012-06-21 16:03:58 -04001108 if (!ret && fs_devices_ret)
1109 (*fs_devices_ret)->total_devices = total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001110
Anand Jain6cf86a002016-02-13 10:01:29 +08001111 btrfs_release_disk_super(page);
David Sterba6f60cbd2013-02-15 11:31:02 -07001112
1113error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001114 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001115error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001116 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001117 return ret;
1118}
Chris Mason0b86a832008-03-24 15:01:56 -04001119
Miao Xie6d07bce2011-01-05 10:07:31 +00001120/* helper to account the used device space in the range */
1121int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
1122 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -04001123{
1124 struct btrfs_key key;
1125 struct btrfs_root *root = device->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +00001126 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001127 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +00001128 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001129 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +00001130 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001131 struct extent_buffer *l;
1132
Miao Xie6d07bce2011-01-05 10:07:31 +00001133 *length = 0;
1134
Stefan Behrens63a212a2012-11-05 18:29:28 +01001135 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
Miao Xie6d07bce2011-01-05 10:07:31 +00001136 return 0;
1137
Yan Zheng2b820322008-11-17 21:11:30 -05001138 path = btrfs_alloc_path();
1139 if (!path)
1140 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01001141 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04001142
Chris Mason0b86a832008-03-24 15:01:56 -04001143 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001144 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001145 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +00001146
1147 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001148 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001149 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001150 if (ret > 0) {
1151 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1152 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001153 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001154 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001155
Chris Mason0b86a832008-03-24 15:01:56 -04001156 while (1) {
1157 l = path->nodes[0];
1158 slot = path->slots[0];
1159 if (slot >= btrfs_header_nritems(l)) {
1160 ret = btrfs_next_leaf(root, path);
1161 if (ret == 0)
1162 continue;
1163 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001164 goto out;
1165
1166 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001167 }
1168 btrfs_item_key_to_cpu(l, &key, slot);
1169
1170 if (key.objectid < device->devid)
1171 goto next;
1172
1173 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +00001174 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001175
David Sterba962a2982014-06-04 18:41:45 +02001176 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001177 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001178
Chris Mason0b86a832008-03-24 15:01:56 -04001179 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +00001180 extent_end = key.offset + btrfs_dev_extent_length(l,
1181 dev_extent);
1182 if (key.offset <= start && extent_end > end) {
1183 *length = end - start + 1;
1184 break;
1185 } else if (key.offset <= start && extent_end > start)
1186 *length += extent_end - start;
1187 else if (key.offset > start && extent_end <= end)
1188 *length += extent_end - key.offset;
1189 else if (key.offset > start && key.offset <= end) {
1190 *length += end - key.offset + 1;
1191 break;
1192 } else if (key.offset > end)
1193 break;
1194
1195next:
1196 path->slots[0]++;
1197 }
1198 ret = 0;
1199out:
1200 btrfs_free_path(path);
1201 return ret;
1202}
1203
Jeff Mahoney499f3772015-06-15 09:41:17 -04001204static int contains_pending_extent(struct btrfs_transaction *transaction,
Josef Bacik6df9a952013-06-27 13:22:46 -04001205 struct btrfs_device *device,
1206 u64 *start, u64 len)
1207{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001208 struct btrfs_fs_info *fs_info = device->dev_root->fs_info;
Josef Bacik6df9a952013-06-27 13:22:46 -04001209 struct extent_map *em;
Jeff Mahoney499f3772015-06-15 09:41:17 -04001210 struct list_head *search_list = &fs_info->pinned_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001211 int ret = 0;
Forrest Liu1b984502015-02-09 17:30:47 +08001212 u64 physical_start = *start;
Josef Bacik6df9a952013-06-27 13:22:46 -04001213
Jeff Mahoney499f3772015-06-15 09:41:17 -04001214 if (transaction)
1215 search_list = &transaction->pending_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001216again:
1217 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001218 struct map_lookup *map;
1219 int i;
1220
Jeff Mahoney95617d62015-06-03 10:55:48 -04001221 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04001222 for (i = 0; i < map->num_stripes; i++) {
Filipe Mananac152b632015-05-14 10:46:03 +01001223 u64 end;
1224
Josef Bacik6df9a952013-06-27 13:22:46 -04001225 if (map->stripes[i].dev != device)
1226 continue;
Forrest Liu1b984502015-02-09 17:30:47 +08001227 if (map->stripes[i].physical >= physical_start + len ||
Josef Bacik6df9a952013-06-27 13:22:46 -04001228 map->stripes[i].physical + em->orig_block_len <=
Forrest Liu1b984502015-02-09 17:30:47 +08001229 physical_start)
Josef Bacik6df9a952013-06-27 13:22:46 -04001230 continue;
Filipe Mananac152b632015-05-14 10:46:03 +01001231 /*
1232 * Make sure that while processing the pinned list we do
1233 * not override our *start with a lower value, because
1234 * we can have pinned chunks that fall within this
1235 * device hole and that have lower physical addresses
1236 * than the pending chunks we processed before. If we
1237 * do not take this special care we can end up getting
1238 * 2 pending chunks that start at the same physical
1239 * device offsets because the end offset of a pinned
1240 * chunk can be equal to the start offset of some
1241 * pending chunk.
1242 */
1243 end = map->stripes[i].physical + em->orig_block_len;
1244 if (end > *start) {
1245 *start = end;
1246 ret = 1;
1247 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001248 }
1249 }
Jeff Mahoney499f3772015-06-15 09:41:17 -04001250 if (search_list != &fs_info->pinned_chunks) {
1251 search_list = &fs_info->pinned_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001252 goto again;
1253 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001254
1255 return ret;
1256}
1257
1258
Chris Mason0b86a832008-03-24 15:01:56 -04001259/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001260 * find_free_dev_extent_start - find free space in the specified device
1261 * @device: the device which we search the free space in
1262 * @num_bytes: the size of the free space that we need
1263 * @search_start: the position from which to begin the search
1264 * @start: store the start of the free space.
1265 * @len: the size of the free space. that we find, or the size
1266 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001267 *
Chris Mason0b86a832008-03-24 15:01:56 -04001268 * this uses a pretty simple search, the expectation is that it is
1269 * called very infrequently and that a given device has a small number
1270 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001271 *
1272 * @start is used to store the start of the free space if we find. But if we
1273 * don't find suitable free space, it will be used to store the start position
1274 * of the max free space.
1275 *
1276 * @len is used to store the size of the free space that we find.
1277 * But if we don't find suitable free space, it is used to store the size of
1278 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001279 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001280int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1281 struct btrfs_device *device, u64 num_bytes,
1282 u64 search_start, u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001283{
1284 struct btrfs_key key;
1285 struct btrfs_root *root = device->dev_root;
Miao Xie7bfc8372011-01-05 10:07:26 +00001286 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001287 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001288 u64 hole_size;
1289 u64 max_hole_start;
1290 u64 max_hole_size;
1291 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001292 u64 search_end = device->total_bytes;
1293 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001294 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001295 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001296 u64 min_search_start;
1297
1298 /*
1299 * We don't want to overwrite the superblock on the drive nor any area
1300 * used by the boot loader (grub for example), so we make sure to start
1301 * at an offset of at least 1MB.
1302 */
1303 min_search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
1304 search_start = max(search_start, min_search_start);
Chris Mason0b86a832008-03-24 15:01:56 -04001305
Josef Bacik6df9a952013-06-27 13:22:46 -04001306 path = btrfs_alloc_path();
1307 if (!path)
1308 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001309
Miao Xie7bfc8372011-01-05 10:07:26 +00001310 max_hole_start = search_start;
1311 max_hole_size = 0;
1312
Zhao Leif2ab7612015-02-16 18:52:17 +08001313again:
Stefan Behrens63a212a2012-11-05 18:29:28 +01001314 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001315 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001316 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001317 }
1318
David Sterbae4058b52015-11-27 16:31:35 +01001319 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001320 path->search_commit_root = 1;
1321 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001322
Chris Mason0b86a832008-03-24 15:01:56 -04001323 key.objectid = device->devid;
1324 key.offset = search_start;
1325 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001326
Li Zefan125ccb02011-12-08 15:07:24 +08001327 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001328 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001329 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001330 if (ret > 0) {
1331 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1332 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001333 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001334 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001335
Chris Mason0b86a832008-03-24 15:01:56 -04001336 while (1) {
1337 l = path->nodes[0];
1338 slot = path->slots[0];
1339 if (slot >= btrfs_header_nritems(l)) {
1340 ret = btrfs_next_leaf(root, path);
1341 if (ret == 0)
1342 continue;
1343 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001344 goto out;
1345
1346 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001347 }
1348 btrfs_item_key_to_cpu(l, &key, slot);
1349
1350 if (key.objectid < device->devid)
1351 goto next;
1352
1353 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001354 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001355
David Sterba962a2982014-06-04 18:41:45 +02001356 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001357 goto next;
1358
Miao Xie7bfc8372011-01-05 10:07:26 +00001359 if (key.offset > search_start) {
1360 hole_size = key.offset - search_start;
1361
Josef Bacik6df9a952013-06-27 13:22:46 -04001362 /*
1363 * Have to check before we set max_hole_start, otherwise
1364 * we could end up sending back this offset anyway.
1365 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001366 if (contains_pending_extent(transaction, device,
Josef Bacik6df9a952013-06-27 13:22:46 -04001367 &search_start,
Forrest Liu1b984502015-02-09 17:30:47 +08001368 hole_size)) {
1369 if (key.offset >= search_start) {
1370 hole_size = key.offset - search_start;
1371 } else {
1372 WARN_ON_ONCE(1);
1373 hole_size = 0;
1374 }
1375 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001376
Miao Xie7bfc8372011-01-05 10:07:26 +00001377 if (hole_size > max_hole_size) {
1378 max_hole_start = search_start;
1379 max_hole_size = hole_size;
1380 }
1381
1382 /*
1383 * If this free space is greater than which we need,
1384 * it must be the max free space that we have found
1385 * until now, so max_hole_start must point to the start
1386 * of this free space and the length of this free space
1387 * is stored in max_hole_size. Thus, we return
1388 * max_hole_start and max_hole_size and go back to the
1389 * caller.
1390 */
1391 if (hole_size >= num_bytes) {
1392 ret = 0;
1393 goto out;
1394 }
1395 }
1396
Chris Mason0b86a832008-03-24 15:01:56 -04001397 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001398 extent_end = key.offset + btrfs_dev_extent_length(l,
1399 dev_extent);
1400 if (extent_end > search_start)
1401 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001402next:
1403 path->slots[0]++;
1404 cond_resched();
1405 }
Chris Mason0b86a832008-03-24 15:01:56 -04001406
liubo38c01b92011-08-02 02:39:03 +00001407 /*
1408 * At this point, search_start should be the end of
1409 * allocated dev extents, and when shrinking the device,
1410 * search_end may be smaller than search_start.
1411 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001412 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001413 hole_size = search_end - search_start;
1414
Jeff Mahoney499f3772015-06-15 09:41:17 -04001415 if (contains_pending_extent(transaction, device, &search_start,
Zhao Leif2ab7612015-02-16 18:52:17 +08001416 hole_size)) {
1417 btrfs_release_path(path);
1418 goto again;
1419 }
Chris Mason0b86a832008-03-24 15:01:56 -04001420
Zhao Leif2ab7612015-02-16 18:52:17 +08001421 if (hole_size > max_hole_size) {
1422 max_hole_start = search_start;
1423 max_hole_size = hole_size;
1424 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001425 }
1426
Miao Xie7bfc8372011-01-05 10:07:26 +00001427 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001428 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001429 ret = -ENOSPC;
1430 else
1431 ret = 0;
1432
1433out:
Yan Zheng2b820322008-11-17 21:11:30 -05001434 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001435 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001436 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001437 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001438 return ret;
1439}
1440
Jeff Mahoney499f3772015-06-15 09:41:17 -04001441int find_free_dev_extent(struct btrfs_trans_handle *trans,
1442 struct btrfs_device *device, u64 num_bytes,
1443 u64 *start, u64 *len)
1444{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001445 /* FIXME use last free of some kind */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001446 return find_free_dev_extent_start(trans->transaction, device,
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001447 num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001448}
1449
Christoph Hellwigb2950862008-12-02 09:54:17 -05001450static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001451 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001452 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001453{
1454 int ret;
1455 struct btrfs_path *path;
1456 struct btrfs_root *root = device->dev_root;
1457 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001458 struct btrfs_key found_key;
1459 struct extent_buffer *leaf = NULL;
1460 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001461
1462 path = btrfs_alloc_path();
1463 if (!path)
1464 return -ENOMEM;
1465
1466 key.objectid = device->devid;
1467 key.offset = start;
1468 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001469again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001470 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001471 if (ret > 0) {
1472 ret = btrfs_previous_item(root, path, key.objectid,
1473 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001474 if (ret)
1475 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001476 leaf = path->nodes[0];
1477 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1478 extent = btrfs_item_ptr(leaf, path->slots[0],
1479 struct btrfs_dev_extent);
1480 BUG_ON(found_key.offset > start || found_key.offset +
1481 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001482 key = found_key;
1483 btrfs_release_path(path);
1484 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001485 } else if (ret == 0) {
1486 leaf = path->nodes[0];
1487 extent = btrfs_item_ptr(leaf, path->slots[0],
1488 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001489 } else {
Anand Jain34d97002016-03-16 16:43:06 +08001490 btrfs_handle_fs_error(root->fs_info, ret, "Slot search failed");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001491 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001492 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001493
Miao Xie2196d6e2014-09-03 21:35:41 +08001494 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1495
Chris Mason8f18cf12008-04-25 16:53:30 -04001496 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001497 if (ret) {
Anand Jain34d97002016-03-16 16:43:06 +08001498 btrfs_handle_fs_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001499 "Failed to remove dev extent item");
Zhao Lei13212b52015-02-12 14:18:17 +08001500 } else {
Josef Bacik3204d332015-09-24 10:46:10 -04001501 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001502 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001503out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001504 btrfs_free_path(path);
1505 return ret;
1506}
1507
Eric Sandeen48a3b632013-04-25 20:41:01 +00001508static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1509 struct btrfs_device *device,
1510 u64 chunk_tree, u64 chunk_objectid,
1511 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001512{
1513 int ret;
1514 struct btrfs_path *path;
1515 struct btrfs_root *root = device->dev_root;
1516 struct btrfs_dev_extent *extent;
1517 struct extent_buffer *leaf;
1518 struct btrfs_key key;
1519
Chris Masondfe25022008-05-13 13:46:40 -04001520 WARN_ON(!device->in_fs_metadata);
Stefan Behrens63a212a2012-11-05 18:29:28 +01001521 WARN_ON(device->is_tgtdev_for_dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04001522 path = btrfs_alloc_path();
1523 if (!path)
1524 return -ENOMEM;
1525
Chris Mason0b86a832008-03-24 15:01:56 -04001526 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001527 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001528 key.type = BTRFS_DEV_EXTENT_KEY;
1529 ret = btrfs_insert_empty_item(trans, root, path, &key,
1530 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001531 if (ret)
1532 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001533
1534 leaf = path->nodes[0];
1535 extent = btrfs_item_ptr(leaf, path->slots[0],
1536 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001537 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1538 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1539 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1540
1541 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoeven231e88f2013-08-20 13:20:13 +02001542 btrfs_dev_extent_chunk_tree_uuid(extent), BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04001543
Chris Mason0b86a832008-03-24 15:01:56 -04001544 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1545 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001546out:
Chris Mason0b86a832008-03-24 15:01:56 -04001547 btrfs_free_path(path);
1548 return ret;
1549}
1550
Josef Bacik6df9a952013-06-27 13:22:46 -04001551static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001552{
Josef Bacik6df9a952013-06-27 13:22:46 -04001553 struct extent_map_tree *em_tree;
1554 struct extent_map *em;
1555 struct rb_node *n;
1556 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001557
Josef Bacik6df9a952013-06-27 13:22:46 -04001558 em_tree = &fs_info->mapping_tree.map_tree;
1559 read_lock(&em_tree->lock);
1560 n = rb_last(&em_tree->map);
1561 if (n) {
1562 em = rb_entry(n, struct extent_map, rb_node);
1563 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001564 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001565 read_unlock(&em_tree->lock);
1566
Chris Mason0b86a832008-03-24 15:01:56 -04001567 return ret;
1568}
1569
Ilya Dryomov53f10652013-08-12 14:33:01 +03001570static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1571 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001572{
1573 int ret;
1574 struct btrfs_key key;
1575 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001576 struct btrfs_path *path;
1577
Yan Zheng2b820322008-11-17 21:11:30 -05001578 path = btrfs_alloc_path();
1579 if (!path)
1580 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001581
1582 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1583 key.type = BTRFS_DEV_ITEM_KEY;
1584 key.offset = (u64)-1;
1585
Ilya Dryomov53f10652013-08-12 14:33:01 +03001586 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001587 if (ret < 0)
1588 goto error;
1589
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001590 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001591
Ilya Dryomov53f10652013-08-12 14:33:01 +03001592 ret = btrfs_previous_item(fs_info->chunk_root, path,
1593 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001594 BTRFS_DEV_ITEM_KEY);
1595 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001596 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001597 } else {
1598 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1599 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001600 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001601 }
1602 ret = 0;
1603error:
Yan Zheng2b820322008-11-17 21:11:30 -05001604 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001605 return ret;
1606}
1607
1608/*
1609 * the device information is stored in the chunk root
1610 * the btrfs_device struct should be fully filled in
1611 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001612static int btrfs_add_device(struct btrfs_trans_handle *trans,
1613 struct btrfs_root *root,
1614 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001615{
1616 int ret;
1617 struct btrfs_path *path;
1618 struct btrfs_dev_item *dev_item;
1619 struct extent_buffer *leaf;
1620 struct btrfs_key key;
1621 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001622
1623 root = root->fs_info->chunk_root;
1624
1625 path = btrfs_alloc_path();
1626 if (!path)
1627 return -ENOMEM;
1628
Chris Mason0b86a832008-03-24 15:01:56 -04001629 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1630 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001631 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001632
1633 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001634 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001635 if (ret)
1636 goto out;
1637
1638 leaf = path->nodes[0];
1639 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1640
1641 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001642 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001643 btrfs_set_device_type(leaf, dev_item, device->type);
1644 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1645 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1646 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001647 btrfs_set_device_total_bytes(leaf, dev_item,
1648 btrfs_device_get_disk_total_bytes(device));
1649 btrfs_set_device_bytes_used(leaf, dev_item,
1650 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001651 btrfs_set_device_group(leaf, dev_item, 0);
1652 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1653 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001654 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001655
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001656 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001657 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001658 ptr = btrfs_device_fsid(dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001659 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001660 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001661
Yan Zheng2b820322008-11-17 21:11:30 -05001662 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001663out:
1664 btrfs_free_path(path);
1665 return ret;
1666}
Chris Mason8f18cf12008-04-25 16:53:30 -04001667
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001668/*
1669 * Function to update ctime/mtime for a given device path.
1670 * Mainly used for ctime/mtime based probe like libblkid.
1671 */
1672static void update_dev_time(char *path_name)
1673{
1674 struct file *filp;
1675
1676 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001677 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001678 return;
1679 file_update_time(filp);
1680 filp_close(filp, NULL);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001681}
1682
Chris Masona061fc82008-05-07 11:43:44 -04001683static int btrfs_rm_dev_item(struct btrfs_root *root,
1684 struct btrfs_device *device)
1685{
1686 int ret;
1687 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001688 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001689 struct btrfs_trans_handle *trans;
1690
1691 root = root->fs_info->chunk_root;
1692
1693 path = btrfs_alloc_path();
1694 if (!path)
1695 return -ENOMEM;
1696
Yan, Zhenga22285a2010-05-16 10:48:46 -04001697 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001698 if (IS_ERR(trans)) {
1699 btrfs_free_path(path);
1700 return PTR_ERR(trans);
1701 }
Chris Masona061fc82008-05-07 11:43:44 -04001702 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1703 key.type = BTRFS_DEV_ITEM_KEY;
1704 key.offset = device->devid;
1705
1706 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1707 if (ret < 0)
1708 goto out;
1709
1710 if (ret > 0) {
1711 ret = -ENOENT;
1712 goto out;
1713 }
1714
1715 ret = btrfs_del_item(trans, root, path);
1716 if (ret)
1717 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001718out:
1719 btrfs_free_path(path);
1720 btrfs_commit_transaction(trans, root);
1721 return ret;
1722}
1723
David Sterba3cc31a02016-02-15 16:00:26 +01001724/*
1725 * Verify that @num_devices satisfies the RAID profile constraints in the whole
1726 * filesystem. It's up to the caller to adjust that number regarding eg. device
1727 * replace.
1728 */
1729static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info,
1730 u64 num_devices)
Chris Masona061fc82008-05-07 11:43:44 -04001731{
Chris Masona061fc82008-05-07 11:43:44 -04001732 u64 all_avail;
Miao Xiede98ced2013-01-29 10:13:12 +00001733 unsigned seq;
David Sterba418775a2016-02-15 16:28:14 +01001734 int i;
Chris Masona061fc82008-05-07 11:43:44 -04001735
Miao Xiede98ced2013-01-29 10:13:12 +00001736 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001737 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00001738
Anand Jainbd45ffb2016-02-13 10:01:34 +08001739 all_avail = fs_info->avail_data_alloc_bits |
1740 fs_info->avail_system_alloc_bits |
1741 fs_info->avail_metadata_alloc_bits;
1742 } while (read_seqretry(&fs_info->profiles_lock, seq));
Anand Jainf1fa7f22016-02-13 10:01:33 +08001743
David Sterba418775a2016-02-15 16:28:14 +01001744 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
1745 if (!(all_avail & btrfs_raid_group[i]))
1746 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001747
David Sterba418775a2016-02-15 16:28:14 +01001748 if (num_devices < btrfs_raid_array[i].devs_min) {
1749 int ret = btrfs_raid_mindev_error[i];
Chris Masona061fc82008-05-07 11:43:44 -04001750
David Sterba418775a2016-02-15 16:28:14 +01001751 if (ret)
1752 return ret;
1753 }
Anand Jainbd45ffb2016-02-13 10:01:34 +08001754 }
1755
1756 return 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001757}
1758
Anand Jain88acff62016-05-03 17:44:43 +08001759struct btrfs_device *btrfs_find_next_active_device(struct btrfs_fs_devices *fs_devs,
1760 struct btrfs_device *device)
1761{
1762 struct btrfs_device *next_device;
1763
1764 list_for_each_entry(next_device, &fs_devs->devices, dev_list) {
1765 if (next_device != device &&
1766 !next_device->missing && next_device->bdev)
1767 return next_device;
1768 }
1769
1770 return NULL;
1771}
1772
1773/*
1774 * Helper function to check if the given device is part of s_bdev / latest_bdev
1775 * and replace it with the provided or the next active device, in the context
1776 * where this function called, there should be always be another device (or
1777 * this_dev) which is active.
1778 */
1779void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info,
1780 struct btrfs_device *device, struct btrfs_device *this_dev)
1781{
1782 struct btrfs_device *next_device;
1783
1784 if (this_dev)
1785 next_device = this_dev;
1786 else
1787 next_device = btrfs_find_next_active_device(fs_info->fs_devices,
1788 device);
1789 ASSERT(next_device);
1790
1791 if (fs_info->sb->s_bdev &&
1792 (fs_info->sb->s_bdev == device->bdev))
1793 fs_info->sb->s_bdev = next_device->bdev;
1794
1795 if (fs_info->fs_devices->latest_bdev == device->bdev)
1796 fs_info->fs_devices->latest_bdev = next_device->bdev;
1797}
1798
Anand Jain6b526ed2016-02-13 10:01:39 +08001799int btrfs_rm_device(struct btrfs_root *root, char *device_path, u64 devid)
Anand Jainf1fa7f22016-02-13 10:01:33 +08001800{
1801 struct btrfs_device *device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001802 struct btrfs_fs_devices *cur_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001803 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001804 int ret = 0;
1805 bool clear_super = false;
Anand Jain42b67422016-02-13 10:01:38 +08001806 char *dev_name = NULL;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001807
1808 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001809
1810 num_devices = root->fs_info->fs_devices->num_devices;
1811 btrfs_dev_replace_lock(&root->fs_info->dev_replace, 0);
1812 if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) {
1813 WARN_ON(num_devices < 1);
1814 num_devices--;
1815 }
1816 btrfs_dev_replace_unlock(&root->fs_info->dev_replace, 0);
1817
David Sterba3cc31a02016-02-15 16:00:26 +01001818 ret = btrfs_check_raid_min_devices(root->fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001819 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001820 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001821
David Sterba5c5c0df2016-02-15 16:39:55 +01001822 ret = btrfs_find_device_by_devspec(root, devid, device_path,
Anand Jain24fc5722016-02-13 10:01:36 +08001823 &device);
1824 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001825 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001826
Stefan Behrens63a212a2012-11-05 18:29:28 +01001827 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001828 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08001829 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001830 }
1831
Yan Zheng2b820322008-11-17 21:11:30 -05001832 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001833 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08001834 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001835 }
1836
1837 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001838 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001839 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001840 device->fs_devices->rw_devices--;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001841 unlock_chunks(root);
Anand Jain42b67422016-02-13 10:01:38 +08001842 dev_name = kstrdup(device->name->str, GFP_KERNEL);
1843 if (!dev_name) {
1844 ret = -ENOMEM;
1845 goto error_undo;
1846 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001847 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001848 }
Chris Masona061fc82008-05-07 11:43:44 -04001849
Carey Underwoodd7901552013-03-04 16:37:06 -06001850 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001851 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001852 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001853 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001854 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001855
Stefan Behrens63a212a2012-11-05 18:29:28 +01001856 /*
1857 * TODO: the superblock still includes this device in its num_devices
1858 * counter although write_all_supers() is not locked out. This
1859 * could give a filesystem state which requires a degraded mount.
1860 */
Chris Masona061fc82008-05-07 11:43:44 -04001861 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1862 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001863 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001864
Yan Zheng2b820322008-11-17 21:11:30 -05001865 device->in_fs_metadata = 0;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001866 btrfs_scrub_cancel_dev(root->fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001867
1868 /*
1869 * the device list mutex makes sure that we don't change
1870 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001871 * the device supers. Whoever is writing all supers, should
1872 * lock the device list mutex before getting the number of
1873 * devices in the super block (super_copy). Conversely,
1874 * whoever updates the number of devices in the super block
1875 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001876 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001877
1878 cur_devices = device->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001879 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001880 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001881
Yan Zhenge4404d62008-12-12 10:03:26 -05001882 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001883 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001884
Chris Masoncd02dca2010-12-13 14:56:23 -05001885 if (device->missing)
Miao Xie3a7d55c2014-07-16 18:38:01 +08001886 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001887
Anand Jain88acff62016-05-03 17:44:43 +08001888 btrfs_assign_next_active_device(root->fs_info, device, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05001889
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001890 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001891 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001892 /* remove sysfs entry */
Anand Jain32576042015-08-14 18:32:49 +08001893 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001894 }
Anand Jain99994cd2014-06-03 11:36:00 +08001895
Xiao Guangrong1f781602011-04-20 10:09:16 +00001896 call_rcu(&device->rcu, free_device);
Yan Zhenge4404d62008-12-12 10:03:26 -05001897
David Sterba6c417612011-04-13 15:41:04 +02001898 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1899 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001900 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001901
Xiao Guangrong1f781602011-04-20 10:09:16 +00001902 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001903 struct btrfs_fs_devices *fs_devices;
1904 fs_devices = root->fs_info->fs_devices;
1905 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001906 if (fs_devices->seed == cur_devices) {
1907 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05001908 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001909 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001910 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001911 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001912 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001913 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001914 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001915 }
1916
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001917 root->fs_info->num_tolerated_disk_barrier_failures =
1918 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
1919
Yan Zheng2b820322008-11-17 21:11:30 -05001920 /*
1921 * at this point, the device is zero sized. We want to
1922 * remove it from the devices list and zero out the old super
1923 */
Anand Jain24fc5722016-02-13 10:01:36 +08001924 if (clear_super) {
Anand Jain42b67422016-02-13 10:01:38 +08001925 struct block_device *bdev;
Anand Jain4d90d282014-04-06 12:59:07 +08001926
Anand Jain42b67422016-02-13 10:01:38 +08001927 bdev = blkdev_get_by_path(dev_name, FMODE_READ | FMODE_EXCL,
1928 root->fs_info->bdev_holder);
1929 if (!IS_ERR(bdev)) {
1930 btrfs_scratch_superblocks(bdev, dev_name);
Anand Jain24fc5722016-02-13 10:01:36 +08001931 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
Anand Jain4d90d282014-04-06 12:59:07 +08001932 }
Chris Masondfe25022008-05-13 13:46:40 -04001933 }
Chris Masona061fc82008-05-07 11:43:44 -04001934
Chris Masona061fc82008-05-07 11:43:44 -04001935out:
Anand Jain42b67422016-02-13 10:01:38 +08001936 kfree(dev_name);
1937
Chris Masona061fc82008-05-07 11:43:44 -04001938 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001939 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08001940
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001941error_undo:
1942 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001943 lock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001944 list_add(&device->dev_alloc_list,
1945 &root->fs_info->fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001946 device->fs_devices->rw_devices++;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001947 unlock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001948 }
Anand Jain24fc5722016-02-13 10:01:36 +08001949 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001950}
1951
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001952void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
1953 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01001954{
Anand Jaind51908c2014-08-13 14:24:19 +08001955 struct btrfs_fs_devices *fs_devices;
1956
Stefan Behrense93c89c2012-11-05 17:33:06 +01001957 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03001958
Anand Jain25e8e912014-08-20 10:56:56 +08001959 /*
1960 * in case of fs with no seed, srcdev->fs_devices will point
1961 * to fs_devices of fs_info. However when the dev being replaced is
1962 * a seed dev it will point to the seed's local fs_devices. In short
1963 * srcdev will have its correct fs_devices in both the cases.
1964 */
1965 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08001966
Stefan Behrense93c89c2012-11-05 17:33:06 +01001967 list_del_rcu(&srcdev->dev_list);
1968 list_del_rcu(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08001969 fs_devices->num_devices--;
Miao Xie82372bc2014-09-03 21:35:44 +08001970 if (srcdev->missing)
Anand Jaind51908c2014-08-13 14:24:19 +08001971 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001972
Anand Jain48b3b9d2016-04-12 21:36:16 +08001973 if (srcdev->writeable)
Miao Xie82372bc2014-09-03 21:35:44 +08001974 fs_devices->rw_devices--;
Ilya Dryomov13572722013-10-02 20:41:01 +03001975
Miao Xie82372bc2014-09-03 21:35:44 +08001976 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08001977 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001978}
1979
1980void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
1981 struct btrfs_device *srcdev)
1982{
1983 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001984
Anand Jain48b3b9d2016-04-12 21:36:16 +08001985 if (srcdev->writeable) {
1986 /* zero out the old super if it is writable */
1987 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
1988 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01001989 call_rcu(&srcdev->rcu, free_device);
Anand Jain94d5f0c2014-08-13 14:24:22 +08001990
1991 /*
1992 * unless fs_devices is seed fs, num_devices shouldn't go
1993 * zero
1994 */
1995 BUG_ON(!fs_devices->num_devices && !fs_devices->seeding);
1996
1997 /* if this is no devs we rather delete the fs_devices */
1998 if (!fs_devices->num_devices) {
1999 struct btrfs_fs_devices *tmp_fs_devices;
2000
2001 tmp_fs_devices = fs_info->fs_devices;
2002 while (tmp_fs_devices) {
2003 if (tmp_fs_devices->seed == fs_devices) {
2004 tmp_fs_devices->seed = fs_devices->seed;
2005 break;
2006 }
2007 tmp_fs_devices = tmp_fs_devices->seed;
2008 }
2009 fs_devices->seed = NULL;
Anand Jain8bef8402014-08-13 14:24:23 +08002010 __btrfs_close_devices(fs_devices);
2011 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002012 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002013}
2014
2015void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2016 struct btrfs_device *tgtdev)
2017{
Miao Xie67a2c452014-09-03 21:35:43 +08002018 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002019 WARN_ON(!tgtdev);
2020 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002021
Anand Jain32576042015-08-14 18:32:49 +08002022 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002023
Anand Jain779bf3f2016-04-18 16:51:23 +08002024 if (tgtdev->bdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002025 fs_info->fs_devices->open_devices--;
Anand Jain779bf3f2016-04-18 16:51:23 +08002026
Stefan Behrense93c89c2012-11-05 17:33:06 +01002027 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002028
Anand Jain88acff62016-05-03 17:44:43 +08002029 btrfs_assign_next_active_device(fs_info, tgtdev, NULL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002030
Stefan Behrense93c89c2012-11-05 17:33:06 +01002031 list_del_rcu(&tgtdev->dev_list);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002032
2033 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002034 mutex_unlock(&uuid_mutex);
Anand Jain779bf3f2016-04-18 16:51:23 +08002035
2036 /*
2037 * The update_dev_time() with in btrfs_scratch_superblocks()
2038 * may lead to a call to btrfs_show_devname() which will try
2039 * to hold device_list_mutex. And here this device
2040 * is already out of device list, so we don't have to hold
2041 * the device_list_mutex lock.
2042 */
2043 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
2044 call_rcu(&tgtdev->rcu, free_device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002045}
2046
Eric Sandeen48a3b632013-04-25 20:41:01 +00002047static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path,
2048 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002049{
2050 int ret = 0;
2051 struct btrfs_super_block *disk_super;
2052 u64 devid;
2053 u8 *dev_uuid;
2054 struct block_device *bdev;
2055 struct buffer_head *bh;
2056
2057 *device = NULL;
2058 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
2059 root->fs_info->bdev_holder, 0, &bdev, &bh);
2060 if (ret)
2061 return ret;
2062 disk_super = (struct btrfs_super_block *)bh->b_data;
2063 devid = btrfs_stack_device_id(&disk_super->dev_item);
2064 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002065 *device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002066 disk_super->fsid);
2067 brelse(bh);
2068 if (!*device)
2069 ret = -ENOENT;
2070 blkdev_put(bdev, FMODE_READ);
2071 return ret;
2072}
2073
2074int btrfs_find_device_missing_or_by_path(struct btrfs_root *root,
2075 char *device_path,
2076 struct btrfs_device **device)
2077{
2078 *device = NULL;
2079 if (strcmp(device_path, "missing") == 0) {
2080 struct list_head *devices;
2081 struct btrfs_device *tmp;
2082
2083 devices = &root->fs_info->fs_devices->devices;
2084 /*
2085 * It is safe to read the devices since the volume_mutex
2086 * is held by the caller.
2087 */
2088 list_for_each_entry(tmp, devices, dev_list) {
2089 if (tmp->in_fs_metadata && !tmp->bdev) {
2090 *device = tmp;
2091 break;
2092 }
2093 }
2094
Anand Jaind74a6252015-08-14 18:32:56 +08002095 if (!*device)
2096 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002097
2098 return 0;
2099 } else {
2100 return btrfs_find_device_by_path(root, device_path, device);
2101 }
2102}
2103
Yan Zheng2b820322008-11-17 21:11:30 -05002104/*
David Sterba5c5c0df2016-02-15 16:39:55 +01002105 * Lookup a device given by device id, or the path if the id is 0.
2106 */
2107int btrfs_find_device_by_devspec(struct btrfs_root *root, u64 devid,
2108 char *devpath,
Anand Jain24e04742016-02-13 10:01:35 +08002109 struct btrfs_device **device)
2110{
2111 int ret;
2112
David Sterba5c5c0df2016-02-15 16:39:55 +01002113 if (devid) {
Anand Jain24e04742016-02-13 10:01:35 +08002114 ret = 0;
David Sterba5c5c0df2016-02-15 16:39:55 +01002115 *device = btrfs_find_device(root->fs_info, devid, NULL,
Anand Jain24e04742016-02-13 10:01:35 +08002116 NULL);
2117 if (!*device)
2118 ret = -ENOENT;
2119 } else {
David Sterba5c5c0df2016-02-15 16:39:55 +01002120 if (!devpath || !devpath[0])
Anand Jainb3d1b152016-02-13 10:01:37 +08002121 return -EINVAL;
2122
David Sterba5c5c0df2016-02-15 16:39:55 +01002123 ret = btrfs_find_device_missing_or_by_path(root, devpath,
Anand Jain24e04742016-02-13 10:01:35 +08002124 device);
2125 }
2126 return ret;
2127}
2128
Yan Zheng2b820322008-11-17 21:11:30 -05002129/*
2130 * does all the dirty work required for changing file system's UUID.
2131 */
Li Zefan125ccb02011-12-08 15:07:24 +08002132static int btrfs_prepare_sprout(struct btrfs_root *root)
Yan Zheng2b820322008-11-17 21:11:30 -05002133{
2134 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2135 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002136 struct btrfs_fs_devices *seed_devices;
David Sterba6c417612011-04-13 15:41:04 +02002137 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002138 struct btrfs_device *device;
2139 u64 super_flags;
2140
2141 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05002142 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002143 return -EINVAL;
2144
Ilya Dryomov2208a372013-08-12 14:33:03 +03002145 seed_devices = __alloc_fs_devices();
2146 if (IS_ERR(seed_devices))
2147 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002148
Yan Zhenge4404d62008-12-12 10:03:26 -05002149 old_devices = clone_fs_devices(fs_devices);
2150 if (IS_ERR(old_devices)) {
2151 kfree(seed_devices);
2152 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002153 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002154
Yan Zheng2b820322008-11-17 21:11:30 -05002155 list_add(&old_devices->list, &fs_uuids);
2156
Yan Zhenge4404d62008-12-12 10:03:26 -05002157 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2158 seed_devices->opened = 1;
2159 INIT_LIST_HEAD(&seed_devices->devices);
2160 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002161 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002162
2163 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002164 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2165 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002166 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002167 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002168
2169 lock_chunks(root);
2170 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
2171 unlock_chunks(root);
Yan Zhenge4404d62008-12-12 10:03:26 -05002172
Yan Zheng2b820322008-11-17 21:11:30 -05002173 fs_devices->seeding = 0;
2174 fs_devices->num_devices = 0;
2175 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002176 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002177 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002178 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002179
2180 generate_random_uuid(fs_devices->fsid);
2181 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
2182 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002183 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2184
Yan Zheng2b820322008-11-17 21:11:30 -05002185 super_flags = btrfs_super_flags(disk_super) &
2186 ~BTRFS_SUPER_FLAG_SEEDING;
2187 btrfs_set_super_flags(disk_super, super_flags);
2188
2189 return 0;
2190}
2191
2192/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002193 * Store the expected generation for seed devices in device items.
Yan Zheng2b820322008-11-17 21:11:30 -05002194 */
2195static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
2196 struct btrfs_root *root)
2197{
2198 struct btrfs_path *path;
2199 struct extent_buffer *leaf;
2200 struct btrfs_dev_item *dev_item;
2201 struct btrfs_device *device;
2202 struct btrfs_key key;
2203 u8 fs_uuid[BTRFS_UUID_SIZE];
2204 u8 dev_uuid[BTRFS_UUID_SIZE];
2205 u64 devid;
2206 int ret;
2207
2208 path = btrfs_alloc_path();
2209 if (!path)
2210 return -ENOMEM;
2211
2212 root = root->fs_info->chunk_root;
2213 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2214 key.offset = 0;
2215 key.type = BTRFS_DEV_ITEM_KEY;
2216
2217 while (1) {
2218 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2219 if (ret < 0)
2220 goto error;
2221
2222 leaf = path->nodes[0];
2223next_slot:
2224 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2225 ret = btrfs_next_leaf(root, path);
2226 if (ret > 0)
2227 break;
2228 if (ret < 0)
2229 goto error;
2230 leaf = path->nodes[0];
2231 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002232 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002233 continue;
2234 }
2235
2236 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2237 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2238 key.type != BTRFS_DEV_ITEM_KEY)
2239 break;
2240
2241 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2242 struct btrfs_dev_item);
2243 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002244 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002245 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002246 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002247 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002248 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
2249 fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002250 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002251
2252 if (device->fs_devices->seeding) {
2253 btrfs_set_device_generation(leaf, dev_item,
2254 device->generation);
2255 btrfs_mark_buffer_dirty(leaf);
2256 }
2257
2258 path->slots[0]++;
2259 goto next_slot;
2260 }
2261 ret = 0;
2262error:
2263 btrfs_free_path(path);
2264 return ret;
2265}
2266
Chris Mason788f20e2008-04-28 15:29:42 -04002267int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
2268{
Josef Bacikd5e20032011-08-04 14:52:27 +00002269 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002270 struct btrfs_trans_handle *trans;
2271 struct btrfs_device *device;
2272 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002273 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002274 struct super_block *sb = root->fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002275 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002276 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002277 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002278 int ret = 0;
2279
Yan Zheng2b820322008-11-17 21:11:30 -05002280 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002281 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002282
Li Zefana5d16332011-12-07 20:08:40 -05002283 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Tejun Heod4d77622010-11-13 11:55:18 +01002284 root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002285 if (IS_ERR(bdev))
2286 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002287
Yan Zheng2b820322008-11-17 21:11:30 -05002288 if (root->fs_info->fs_devices->seeding) {
2289 seeding_dev = 1;
2290 down_write(&sb->s_umount);
2291 mutex_lock(&uuid_mutex);
2292 }
2293
Chris Mason8c8bee12008-09-29 11:19:10 -04002294 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002295
Chris Mason788f20e2008-04-28 15:29:42 -04002296 devices = &root->fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002297
2298 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002299 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002300 if (device->bdev == bdev) {
2301 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002302 mutex_unlock(
2303 &root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002304 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002305 }
2306 }
Liu Bod25628b2012-11-14 14:35:30 +00002307 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002308
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002309 device = btrfs_alloc_device(root->fs_info, NULL, NULL);
2310 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002311 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002312 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002313 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002314 }
2315
David Sterba78f2c9e2016-02-11 14:25:38 +01002316 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002317 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002318 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002319 ret = -ENOMEM;
2320 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002321 }
Josef Bacik606686e2012-06-04 14:03:51 -04002322 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002323
Yan, Zhenga22285a2010-05-16 10:48:46 -04002324 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002325 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002326 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002327 kfree(device);
2328 ret = PTR_ERR(trans);
2329 goto error;
2330 }
2331
Josef Bacikd5e20032011-08-04 14:52:27 +00002332 q = bdev_get_queue(bdev);
2333 if (blk_queue_discard(q))
2334 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002335 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002336 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04002337 device->io_width = root->sectorsize;
2338 device->io_align = root->sectorsize;
2339 device->sector_size = root->sectorsize;
2340 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002341 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002342 device->commit_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04002343 device->dev_root = root->fs_info->dev_root;
2344 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002345 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002346 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002347 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002348 device->dev_stats_valid = 1;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002349 set_blocksize(device->bdev, 4096);
2350
Yan Zheng2b820322008-11-17 21:11:30 -05002351 if (seeding_dev) {
2352 sb->s_flags &= ~MS_RDONLY;
Li Zefan125ccb02011-12-08 15:07:24 +08002353 ret = btrfs_prepare_sprout(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002354 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002355 }
2356
2357 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002358
Chris Masone5e9a522009-06-10 15:17:02 -04002359 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002360 lock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002361 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002362 list_add(&device->dev_alloc_list,
2363 &root->fs_info->fs_devices->alloc_list);
2364 root->fs_info->fs_devices->num_devices++;
2365 root->fs_info->fs_devices->open_devices++;
2366 root->fs_info->fs_devices->rw_devices++;
Josef Bacik02db0842012-06-21 16:03:58 -04002367 root->fs_info->fs_devices->total_devices++;
Yan Zheng2b820322008-11-17 21:11:30 -05002368 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
2369
Josef Bacik2bf64752011-09-26 17:12:22 -04002370 spin_lock(&root->fs_info->free_chunk_lock);
2371 root->fs_info->free_chunk_space += device->total_bytes;
2372 spin_unlock(&root->fs_info->free_chunk_lock);
2373
Chris Masonc2898112009-06-10 09:51:32 -04002374 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
2375 root->fs_info->fs_devices->rotating = 1;
2376
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002377 tmp = btrfs_super_total_bytes(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002378 btrfs_set_super_total_bytes(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002379 tmp + device->total_bytes);
Chris Mason788f20e2008-04-28 15:29:42 -04002380
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002381 tmp = btrfs_super_num_devices(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002382 btrfs_set_super_num_devices(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002383 tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002384
2385 /* add sysfs device entry */
Anand Jaine3bd6972015-08-14 18:32:48 +08002386 btrfs_sysfs_add_device_link(root->fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002387
Miao Xie2196d6e2014-09-03 21:35:41 +08002388 /*
2389 * we've got more storage, clear any full flags on the space
2390 * infos
2391 */
2392 btrfs_clear_space_info_full(root->fs_info);
2393
2394 unlock_chunks(root);
Chris Masone5e9a522009-06-10 15:17:02 -04002395 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002396
Yan Zheng2b820322008-11-17 21:11:30 -05002397 if (seeding_dev) {
Miao Xie2196d6e2014-09-03 21:35:41 +08002398 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05002399 ret = init_first_rw_device(trans, root, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002400 unlock_chunks(root);
David Sterba005d6422012-09-18 07:52:32 -06002401 if (ret) {
2402 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002403 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002404 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002405 }
2406
2407 ret = btrfs_add_device(trans, root, device);
2408 if (ret) {
2409 btrfs_abort_transaction(trans, root, ret);
2410 goto error_trans;
2411 }
2412
2413 if (seeding_dev) {
2414 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2415
Yan Zheng2b820322008-11-17 21:11:30 -05002416 ret = btrfs_finish_sprout(trans, root);
David Sterba005d6422012-09-18 07:52:32 -06002417 if (ret) {
2418 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002419 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002420 }
Anand Jainb2373f22014-06-03 11:36:03 +08002421
2422 /* Sprouting would change fsid of the mounted root,
2423 * so rename the fsid on the sysfs
2424 */
2425 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
2426 root->fs_info->fsid);
Anand Jainc1b7e472015-08-14 18:32:50 +08002427 if (kobject_rename(&root->fs_info->fs_devices->fsid_kobj,
Anand Jain2e7910d2015-03-10 06:38:29 +08002428 fsid_buf))
David Sterbaf14d1042015-10-08 11:37:06 +02002429 btrfs_warn(root->fs_info,
2430 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002431 }
2432
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002433 root->fs_info->num_tolerated_disk_barrier_failures =
2434 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002435 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002436
2437 if (seeding_dev) {
2438 mutex_unlock(&uuid_mutex);
2439 up_write(&sb->s_umount);
2440
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002441 if (ret) /* transaction commit */
2442 return ret;
2443
Yan Zheng2b820322008-11-17 21:11:30 -05002444 ret = btrfs_relocate_sys_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002445 if (ret < 0)
Anand Jain34d97002016-03-16 16:43:06 +08002446 btrfs_handle_fs_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002447 "Failed to relocate sys chunks after "
2448 "device initialization. This can be fixed "
2449 "using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002450 trans = btrfs_attach_transaction(root);
2451 if (IS_ERR(trans)) {
2452 if (PTR_ERR(trans) == -ENOENT)
2453 return 0;
2454 return PTR_ERR(trans);
2455 }
2456 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002457 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002458
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002459 /* Update ctime/mtime for libblkid */
2460 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002461 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002462
2463error_trans:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002464 btrfs_end_transaction(trans, root);
Josef Bacik606686e2012-06-04 14:03:51 -04002465 rcu_string_free(device->name);
Anand Jain32576042015-08-14 18:32:49 +08002466 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002467 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002468error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002469 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002470 if (seeding_dev) {
2471 mutex_unlock(&uuid_mutex);
2472 up_write(&sb->s_umount);
2473 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002474 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002475}
2476
Stefan Behrense93c89c2012-11-05 17:33:06 +01002477int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002478 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002479 struct btrfs_device **device_out)
2480{
2481 struct request_queue *q;
2482 struct btrfs_device *device;
2483 struct block_device *bdev;
2484 struct btrfs_fs_info *fs_info = root->fs_info;
2485 struct list_head *devices;
2486 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002487 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002488 int ret = 0;
2489
2490 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002491 if (fs_info->fs_devices->seeding) {
2492 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002493 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002494 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002495
2496 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2497 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002498 if (IS_ERR(bdev)) {
2499 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002500 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002501 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002502
2503 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2504
2505 devices = &fs_info->fs_devices->devices;
2506 list_for_each_entry(device, devices, dev_list) {
2507 if (device->bdev == bdev) {
Miao Xie1c433662014-09-03 21:35:32 +08002508 btrfs_err(fs_info, "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002509 ret = -EEXIST;
2510 goto error;
2511 }
2512 }
2513
Miao Xie1c433662014-09-03 21:35:32 +08002514
Miao Xie7cc8e582014-09-03 21:35:38 +08002515 if (i_size_read(bdev->bd_inode) <
2516 btrfs_device_get_total_bytes(srcdev)) {
Miao Xie1c433662014-09-03 21:35:32 +08002517 btrfs_err(fs_info, "target device is smaller than source device!");
2518 ret = -EINVAL;
2519 goto error;
2520 }
2521
2522
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002523 device = btrfs_alloc_device(NULL, &devid, NULL);
2524 if (IS_ERR(device)) {
2525 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002526 goto error;
2527 }
2528
2529 name = rcu_string_strdup(device_path, GFP_NOFS);
2530 if (!name) {
2531 kfree(device);
2532 ret = -ENOMEM;
2533 goto error;
2534 }
2535 rcu_assign_pointer(device->name, name);
2536
2537 q = bdev_get_queue(bdev);
2538 if (blk_queue_discard(q))
2539 device->can_discard = 1;
2540 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2541 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002542 device->generation = 0;
2543 device->io_width = root->sectorsize;
2544 device->io_align = root->sectorsize;
2545 device->sector_size = root->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002546 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2547 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2548 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002549 ASSERT(list_empty(&srcdev->resized_list));
2550 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002551 device->commit_bytes_used = device->bytes_used;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002552 device->dev_root = fs_info->dev_root;
2553 device->bdev = bdev;
2554 device->in_fs_metadata = 1;
2555 device->is_tgtdev_for_dev_replace = 1;
2556 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002557 device->dev_stats_valid = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002558 set_blocksize(device->bdev, 4096);
2559 device->fs_devices = fs_info->fs_devices;
2560 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2561 fs_info->fs_devices->num_devices++;
2562 fs_info->fs_devices->open_devices++;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002563 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2564
2565 *device_out = device;
2566 return ret;
2567
2568error:
2569 blkdev_put(bdev, FMODE_EXCL);
2570 return ret;
2571}
2572
2573void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2574 struct btrfs_device *tgtdev)
2575{
2576 WARN_ON(fs_info->fs_devices->rw_devices == 0);
2577 tgtdev->io_width = fs_info->dev_root->sectorsize;
2578 tgtdev->io_align = fs_info->dev_root->sectorsize;
2579 tgtdev->sector_size = fs_info->dev_root->sectorsize;
2580 tgtdev->dev_root = fs_info->dev_root;
2581 tgtdev->in_fs_metadata = 1;
2582}
2583
Chris Masond3977122009-01-05 21:25:51 -05002584static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2585 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002586{
2587 int ret;
2588 struct btrfs_path *path;
2589 struct btrfs_root *root;
2590 struct btrfs_dev_item *dev_item;
2591 struct extent_buffer *leaf;
2592 struct btrfs_key key;
2593
2594 root = device->dev_root->fs_info->chunk_root;
2595
2596 path = btrfs_alloc_path();
2597 if (!path)
2598 return -ENOMEM;
2599
2600 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2601 key.type = BTRFS_DEV_ITEM_KEY;
2602 key.offset = device->devid;
2603
2604 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2605 if (ret < 0)
2606 goto out;
2607
2608 if (ret > 0) {
2609 ret = -ENOENT;
2610 goto out;
2611 }
2612
2613 leaf = path->nodes[0];
2614 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2615
2616 btrfs_set_device_id(leaf, dev_item, device->devid);
2617 btrfs_set_device_type(leaf, dev_item, device->type);
2618 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2619 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2620 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002621 btrfs_set_device_total_bytes(leaf, dev_item,
2622 btrfs_device_get_disk_total_bytes(device));
2623 btrfs_set_device_bytes_used(leaf, dev_item,
2624 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002625 btrfs_mark_buffer_dirty(leaf);
2626
2627out:
2628 btrfs_free_path(path);
2629 return ret;
2630}
2631
Miao Xie2196d6e2014-09-03 21:35:41 +08002632int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002633 struct btrfs_device *device, u64 new_size)
2634{
2635 struct btrfs_super_block *super_copy =
David Sterba6c417612011-04-13 15:41:04 +02002636 device->dev_root->fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002637 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002638 u64 old_total;
2639 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002640
Yan Zheng2b820322008-11-17 21:11:30 -05002641 if (!device->writeable)
2642 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002643
2644 lock_chunks(device->dev_root);
2645 old_total = btrfs_super_total_bytes(super_copy);
2646 diff = new_size - device->total_bytes;
2647
Stefan Behrens63a212a2012-11-05 18:29:28 +01002648 if (new_size <= device->total_bytes ||
Miao Xie2196d6e2014-09-03 21:35:41 +08002649 device->is_tgtdev_for_dev_replace) {
2650 unlock_chunks(device->dev_root);
Yan Zheng2b820322008-11-17 21:11:30 -05002651 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002652 }
Yan Zheng2b820322008-11-17 21:11:30 -05002653
Miao Xie935e5cc2014-09-03 21:35:33 +08002654 fs_devices = device->dev_root->fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002655
2656 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002657 device->fs_devices->total_rw_bytes += diff;
2658
Miao Xie7cc8e582014-09-03 21:35:38 +08002659 btrfs_device_set_total_bytes(device, new_size);
2660 btrfs_device_set_disk_total_bytes(device, new_size);
Chris Mason4184ea72009-03-10 12:39:20 -04002661 btrfs_clear_space_info_full(device->dev_root->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002662 if (list_empty(&device->resized_list))
2663 list_add_tail(&device->resized_list,
2664 &fs_devices->resized_devices);
Miao Xie2196d6e2014-09-03 21:35:41 +08002665 unlock_chunks(device->dev_root);
Chris Mason4184ea72009-03-10 12:39:20 -04002666
Chris Mason8f18cf12008-04-25 16:53:30 -04002667 return btrfs_update_device(trans, device);
2668}
2669
2670static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Zhao Leia688a042015-02-09 20:31:44 +08002671 struct btrfs_root *root, u64 chunk_objectid,
Chris Mason8f18cf12008-04-25 16:53:30 -04002672 u64 chunk_offset)
2673{
2674 int ret;
2675 struct btrfs_path *path;
2676 struct btrfs_key key;
2677
2678 root = root->fs_info->chunk_root;
2679 path = btrfs_alloc_path();
2680 if (!path)
2681 return -ENOMEM;
2682
2683 key.objectid = chunk_objectid;
2684 key.offset = chunk_offset;
2685 key.type = BTRFS_CHUNK_ITEM_KEY;
2686
2687 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002688 if (ret < 0)
2689 goto out;
2690 else if (ret > 0) { /* Logic error or corruption */
Anand Jain34d97002016-03-16 16:43:06 +08002691 btrfs_handle_fs_error(root->fs_info, -ENOENT,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002692 "Failed lookup while freeing chunk.");
2693 ret = -ENOENT;
2694 goto out;
2695 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002696
2697 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002698 if (ret < 0)
Anand Jain34d97002016-03-16 16:43:06 +08002699 btrfs_handle_fs_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002700 "Failed to delete chunk item.");
2701out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002702 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002703 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002704}
2705
Christoph Hellwigb2950862008-12-02 09:54:17 -05002706static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04002707 chunk_offset)
2708{
David Sterba6c417612011-04-13 15:41:04 +02002709 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002710 struct btrfs_disk_key *disk_key;
2711 struct btrfs_chunk *chunk;
2712 u8 *ptr;
2713 int ret = 0;
2714 u32 num_stripes;
2715 u32 array_size;
2716 u32 len = 0;
2717 u32 cur;
2718 struct btrfs_key key;
2719
Miao Xie2196d6e2014-09-03 21:35:41 +08002720 lock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002721 array_size = btrfs_super_sys_array_size(super_copy);
2722
2723 ptr = super_copy->sys_chunk_array;
2724 cur = 0;
2725
2726 while (cur < array_size) {
2727 disk_key = (struct btrfs_disk_key *)ptr;
2728 btrfs_disk_key_to_cpu(&key, disk_key);
2729
2730 len = sizeof(*disk_key);
2731
2732 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2733 chunk = (struct btrfs_chunk *)(ptr + len);
2734 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2735 len += btrfs_chunk_item_size(num_stripes);
2736 } else {
2737 ret = -EIO;
2738 break;
2739 }
2740 if (key.objectid == chunk_objectid &&
2741 key.offset == chunk_offset) {
2742 memmove(ptr, ptr + len, array_size - (cur + len));
2743 array_size -= len;
2744 btrfs_set_super_sys_array_size(super_copy, array_size);
2745 } else {
2746 ptr += len;
2747 cur += len;
2748 }
2749 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002750 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002751 return ret;
2752}
2753
Josef Bacik47ab2a62014-09-18 11:20:02 -04002754int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
2755 struct btrfs_root *root, u64 chunk_offset)
2756{
2757 struct extent_map_tree *em_tree;
2758 struct extent_map *em;
2759 struct btrfs_root *extent_root = root->fs_info->extent_root;
2760 struct map_lookup *map;
2761 u64 dev_extent_len = 0;
2762 u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002763 int i, ret = 0;
2764
2765 /* Just in case */
2766 root = root->fs_info->chunk_root;
2767 em_tree = &root->fs_info->mapping_tree.map_tree;
2768
2769 read_lock(&em_tree->lock);
2770 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
2771 read_unlock(&em_tree->lock);
2772
2773 if (!em || em->start > chunk_offset ||
2774 em->start + em->len < chunk_offset) {
2775 /*
2776 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002777 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04002778 * do anything we still error out.
2779 */
2780 ASSERT(0);
2781 if (em)
2782 free_extent_map(em);
2783 return -EINVAL;
2784 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002785 map = em->map_lookup;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01002786 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01002787 check_system_chunk(trans, extent_root, map->type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01002788 unlock_chunks(root->fs_info->chunk_root);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002789
2790 for (i = 0; i < map->num_stripes; i++) {
2791 struct btrfs_device *device = map->stripes[i].dev;
2792 ret = btrfs_free_dev_extent(trans, device,
2793 map->stripes[i].physical,
2794 &dev_extent_len);
2795 if (ret) {
2796 btrfs_abort_transaction(trans, root, ret);
2797 goto out;
2798 }
2799
2800 if (device->bytes_used > 0) {
2801 lock_chunks(root);
2802 btrfs_device_set_bytes_used(device,
2803 device->bytes_used - dev_extent_len);
2804 spin_lock(&root->fs_info->free_chunk_lock);
2805 root->fs_info->free_chunk_space += dev_extent_len;
2806 spin_unlock(&root->fs_info->free_chunk_lock);
2807 btrfs_clear_space_info_full(root->fs_info);
2808 unlock_chunks(root);
2809 }
2810
2811 if (map->stripes[i].dev) {
2812 ret = btrfs_update_device(trans, map->stripes[i].dev);
2813 if (ret) {
2814 btrfs_abort_transaction(trans, root, ret);
2815 goto out;
2816 }
2817 }
2818 }
Zhao Leia688a042015-02-09 20:31:44 +08002819 ret = btrfs_free_chunk(trans, root, chunk_objectid, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002820 if (ret) {
2821 btrfs_abort_transaction(trans, root, ret);
2822 goto out;
2823 }
2824
2825 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
2826
2827 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2828 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
2829 if (ret) {
2830 btrfs_abort_transaction(trans, root, ret);
2831 goto out;
2832 }
2833 }
2834
Filipe Manana04216822014-11-27 21:14:15 +00002835 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002836 if (ret) {
2837 btrfs_abort_transaction(trans, extent_root, ret);
2838 goto out;
2839 }
2840
Josef Bacik47ab2a62014-09-18 11:20:02 -04002841out:
2842 /* once for us */
2843 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002844 return ret;
2845}
2846
Zhaoleidc2ee4e2015-08-05 18:00:04 +08002847static int btrfs_relocate_chunk(struct btrfs_root *root, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002848{
Chris Mason8f18cf12008-04-25 16:53:30 -04002849 struct btrfs_root *extent_root;
2850 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002851 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002852
2853 root = root->fs_info->chunk_root;
2854 extent_root = root->fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002855
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002856 /*
2857 * Prevent races with automatic removal of unused block groups.
2858 * After we relocate and before we remove the chunk with offset
2859 * chunk_offset, automatic removal of the block group can kick in,
2860 * resulting in a failure when calling btrfs_remove_chunk() below.
2861 *
2862 * Make sure to acquire this mutex before doing a tree search (dev
2863 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2864 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2865 * we release the path used to search the chunk/dev tree and before
2866 * the current task acquires this mutex and calls us.
2867 */
2868 ASSERT(mutex_is_locked(&root->fs_info->delete_unused_bgs_mutex));
2869
Josef Bacikba1bf482009-09-11 16:11:19 -04002870 ret = btrfs_can_relocate(extent_root, chunk_offset);
2871 if (ret)
2872 return -ENOSPC;
2873
Chris Mason8f18cf12008-04-25 16:53:30 -04002874 /* step one, relocate all the extents inside this chunk */
Zhaolei55e3a602015-08-05 16:43:30 +08002875 btrfs_scrub_pause(root);
Zheng Yan1a40e232008-09-26 10:09:34 -04002876 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Zhaolei55e3a602015-08-05 16:43:30 +08002877 btrfs_scrub_continue(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002878 if (ret)
2879 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002880
Filipe Manana7fd01182015-11-13 23:57:17 +00002881 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2882 chunk_offset);
Liu Bo0f788c52013-03-04 16:25:40 +00002883 if (IS_ERR(trans)) {
2884 ret = PTR_ERR(trans);
Anand Jain34d97002016-03-16 16:43:06 +08002885 btrfs_handle_fs_error(root->fs_info, ret, NULL);
Liu Bo0f788c52013-03-04 16:25:40 +00002886 return ret;
2887 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002888
2889 /*
2890 * step two, delete the device extents and the
2891 * chunk tree entries
2892 */
Josef Bacik47ab2a62014-09-18 11:20:02 -04002893 ret = btrfs_remove_chunk(trans, root, chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04002894 btrfs_end_transaction(trans, root);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002895 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002896}
2897
Yan Zheng2b820322008-11-17 21:11:30 -05002898static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
2899{
2900 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
2901 struct btrfs_path *path;
2902 struct extent_buffer *leaf;
2903 struct btrfs_chunk *chunk;
2904 struct btrfs_key key;
2905 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05002906 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002907 bool retried = false;
2908 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002909 int ret;
2910
2911 path = btrfs_alloc_path();
2912 if (!path)
2913 return -ENOMEM;
2914
Josef Bacikba1bf482009-09-11 16:11:19 -04002915again:
Yan Zheng2b820322008-11-17 21:11:30 -05002916 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2917 key.offset = (u64)-1;
2918 key.type = BTRFS_CHUNK_ITEM_KEY;
2919
2920 while (1) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002921 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002922 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002923 if (ret < 0) {
2924 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002925 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002926 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002927 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002928
2929 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2930 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002931 if (ret)
2932 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002933 if (ret < 0)
2934 goto error;
2935 if (ret > 0)
2936 break;
2937
2938 leaf = path->nodes[0];
2939 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2940
2941 chunk = btrfs_item_ptr(leaf, path->slots[0],
2942 struct btrfs_chunk);
2943 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002944 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002945
2946 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Zhao Leia688a042015-02-09 20:31:44 +08002947 ret = btrfs_relocate_chunk(chunk_root,
Yan Zheng2b820322008-11-17 21:11:30 -05002948 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002949 if (ret == -ENOSPC)
2950 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05302951 else
2952 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05002953 }
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002954 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002955
2956 if (found_key.offset == 0)
2957 break;
2958 key.offset = found_key.offset - 1;
2959 }
2960 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002961 if (failed && !retried) {
2962 failed = 0;
2963 retried = true;
2964 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302965 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04002966 ret = -ENOSPC;
2967 }
Yan Zheng2b820322008-11-17 21:11:30 -05002968error:
2969 btrfs_free_path(path);
2970 return ret;
2971}
2972
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002973static int insert_balance_item(struct btrfs_root *root,
2974 struct btrfs_balance_control *bctl)
2975{
2976 struct btrfs_trans_handle *trans;
2977 struct btrfs_balance_item *item;
2978 struct btrfs_disk_balance_args disk_bargs;
2979 struct btrfs_path *path;
2980 struct extent_buffer *leaf;
2981 struct btrfs_key key;
2982 int ret, err;
2983
2984 path = btrfs_alloc_path();
2985 if (!path)
2986 return -ENOMEM;
2987
2988 trans = btrfs_start_transaction(root, 0);
2989 if (IS_ERR(trans)) {
2990 btrfs_free_path(path);
2991 return PTR_ERR(trans);
2992 }
2993
2994 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01002995 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002996 key.offset = 0;
2997
2998 ret = btrfs_insert_empty_item(trans, root, path, &key,
2999 sizeof(*item));
3000 if (ret)
3001 goto out;
3002
3003 leaf = path->nodes[0];
3004 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3005
3006 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
3007
3008 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
3009 btrfs_set_balance_data(leaf, item, &disk_bargs);
3010 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
3011 btrfs_set_balance_meta(leaf, item, &disk_bargs);
3012 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
3013 btrfs_set_balance_sys(leaf, item, &disk_bargs);
3014
3015 btrfs_set_balance_flags(leaf, item, bctl->flags);
3016
3017 btrfs_mark_buffer_dirty(leaf);
3018out:
3019 btrfs_free_path(path);
3020 err = btrfs_commit_transaction(trans, root);
3021 if (err && !ret)
3022 ret = err;
3023 return ret;
3024}
3025
3026static int del_balance_item(struct btrfs_root *root)
3027{
3028 struct btrfs_trans_handle *trans;
3029 struct btrfs_path *path;
3030 struct btrfs_key key;
3031 int ret, err;
3032
3033 path = btrfs_alloc_path();
3034 if (!path)
3035 return -ENOMEM;
3036
3037 trans = btrfs_start_transaction(root, 0);
3038 if (IS_ERR(trans)) {
3039 btrfs_free_path(path);
3040 return PTR_ERR(trans);
3041 }
3042
3043 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003044 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003045 key.offset = 0;
3046
3047 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3048 if (ret < 0)
3049 goto out;
3050 if (ret > 0) {
3051 ret = -ENOENT;
3052 goto out;
3053 }
3054
3055 ret = btrfs_del_item(trans, root, path);
3056out:
3057 btrfs_free_path(path);
3058 err = btrfs_commit_transaction(trans, root);
3059 if (err && !ret)
3060 ret = err;
3061 return ret;
3062}
3063
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003064/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003065 * This is a heuristic used to reduce the number of chunks balanced on
3066 * resume after balance was interrupted.
3067 */
3068static void update_balance_args(struct btrfs_balance_control *bctl)
3069{
3070 /*
3071 * Turn on soft mode for chunk types that were being converted.
3072 */
3073 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3074 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3075 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3076 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3077 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3078 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3079
3080 /*
3081 * Turn on usage filter if is not already used. The idea is
3082 * that chunks that we have already balanced should be
3083 * reasonably full. Don't do it for chunks that are being
3084 * converted - that will keep us from relocating unconverted
3085 * (albeit full) chunks.
3086 */
3087 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003088 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003089 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3090 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3091 bctl->data.usage = 90;
3092 }
3093 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003094 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003095 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3096 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3097 bctl->sys.usage = 90;
3098 }
3099 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003100 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003101 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3102 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3103 bctl->meta.usage = 90;
3104 }
3105}
3106
3107/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003108 * Should be called with both balance and volume mutexes held to
3109 * serialize other volume operations (add_dev/rm_dev/resize) with
3110 * restriper. Same goes for unset_balance_control.
3111 */
3112static void set_balance_control(struct btrfs_balance_control *bctl)
3113{
3114 struct btrfs_fs_info *fs_info = bctl->fs_info;
3115
3116 BUG_ON(fs_info->balance_ctl);
3117
3118 spin_lock(&fs_info->balance_lock);
3119 fs_info->balance_ctl = bctl;
3120 spin_unlock(&fs_info->balance_lock);
3121}
3122
3123static void unset_balance_control(struct btrfs_fs_info *fs_info)
3124{
3125 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3126
3127 BUG_ON(!fs_info->balance_ctl);
3128
3129 spin_lock(&fs_info->balance_lock);
3130 fs_info->balance_ctl = NULL;
3131 spin_unlock(&fs_info->balance_lock);
3132
3133 kfree(bctl);
3134}
3135
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003136/*
3137 * Balance filters. Return 1 if chunk should be filtered out
3138 * (should not be balanced).
3139 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003140static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003141 struct btrfs_balance_args *bargs)
3142{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003143 chunk_type = chunk_to_extended(chunk_type) &
3144 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003145
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003146 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003147 return 0;
3148
3149 return 1;
3150}
3151
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003152static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003153 struct btrfs_balance_args *bargs)
3154{
3155 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003156 u64 chunk_used;
3157 u64 user_thresh_min;
3158 u64 user_thresh_max;
3159 int ret = 1;
3160
3161 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3162 chunk_used = btrfs_block_group_used(&cache->item);
3163
3164 if (bargs->usage_min == 0)
3165 user_thresh_min = 0;
3166 else
3167 user_thresh_min = div_factor_fine(cache->key.offset,
3168 bargs->usage_min);
3169
3170 if (bargs->usage_max == 0)
3171 user_thresh_max = 1;
3172 else if (bargs->usage_max > 100)
3173 user_thresh_max = cache->key.offset;
3174 else
3175 user_thresh_max = div_factor_fine(cache->key.offset,
3176 bargs->usage_max);
3177
3178 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3179 ret = 0;
3180
3181 btrfs_put_block_group(cache);
3182 return ret;
3183}
3184
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003185static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003186 u64 chunk_offset, struct btrfs_balance_args *bargs)
3187{
3188 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003189 u64 chunk_used, user_thresh;
3190 int ret = 1;
3191
3192 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3193 chunk_used = btrfs_block_group_used(&cache->item);
3194
David Sterbabc309462015-10-20 18:22:13 +02003195 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003196 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003197 else if (bargs->usage > 100)
3198 user_thresh = cache->key.offset;
3199 else
3200 user_thresh = div_factor_fine(cache->key.offset,
3201 bargs->usage);
3202
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003203 if (chunk_used < user_thresh)
3204 ret = 0;
3205
3206 btrfs_put_block_group(cache);
3207 return ret;
3208}
3209
Ilya Dryomov409d4042012-01-16 22:04:47 +02003210static int chunk_devid_filter(struct extent_buffer *leaf,
3211 struct btrfs_chunk *chunk,
3212 struct btrfs_balance_args *bargs)
3213{
3214 struct btrfs_stripe *stripe;
3215 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3216 int i;
3217
3218 for (i = 0; i < num_stripes; i++) {
3219 stripe = btrfs_stripe_nr(chunk, i);
3220 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3221 return 0;
3222 }
3223
3224 return 1;
3225}
3226
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003227/* [pstart, pend) */
3228static int chunk_drange_filter(struct extent_buffer *leaf,
3229 struct btrfs_chunk *chunk,
3230 u64 chunk_offset,
3231 struct btrfs_balance_args *bargs)
3232{
3233 struct btrfs_stripe *stripe;
3234 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3235 u64 stripe_offset;
3236 u64 stripe_length;
3237 int factor;
3238 int i;
3239
3240 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3241 return 0;
3242
3243 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003244 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3245 factor = num_stripes / 2;
3246 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3247 factor = num_stripes - 1;
3248 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3249 factor = num_stripes - 2;
3250 } else {
3251 factor = num_stripes;
3252 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003253
3254 for (i = 0; i < num_stripes; i++) {
3255 stripe = btrfs_stripe_nr(chunk, i);
3256 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3257 continue;
3258
3259 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3260 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003261 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003262
3263 if (stripe_offset < bargs->pend &&
3264 stripe_offset + stripe_length > bargs->pstart)
3265 return 0;
3266 }
3267
3268 return 1;
3269}
3270
Ilya Dryomovea671762012-01-16 22:04:48 +02003271/* [vstart, vend) */
3272static int chunk_vrange_filter(struct extent_buffer *leaf,
3273 struct btrfs_chunk *chunk,
3274 u64 chunk_offset,
3275 struct btrfs_balance_args *bargs)
3276{
3277 if (chunk_offset < bargs->vend &&
3278 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3279 /* at least part of the chunk is inside this vrange */
3280 return 0;
3281
3282 return 1;
3283}
3284
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003285static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3286 struct btrfs_chunk *chunk,
3287 struct btrfs_balance_args *bargs)
3288{
3289 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3290
3291 if (bargs->stripes_min <= num_stripes
3292 && num_stripes <= bargs->stripes_max)
3293 return 0;
3294
3295 return 1;
3296}
3297
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003298static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003299 struct btrfs_balance_args *bargs)
3300{
3301 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3302 return 0;
3303
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003304 chunk_type = chunk_to_extended(chunk_type) &
3305 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003306
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003307 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003308 return 1;
3309
3310 return 0;
3311}
3312
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003313static int should_balance_chunk(struct btrfs_root *root,
3314 struct extent_buffer *leaf,
3315 struct btrfs_chunk *chunk, u64 chunk_offset)
3316{
3317 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
3318 struct btrfs_balance_args *bargs = NULL;
3319 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3320
3321 /* type filter */
3322 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3323 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3324 return 0;
3325 }
3326
3327 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3328 bargs = &bctl->data;
3329 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3330 bargs = &bctl->sys;
3331 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3332 bargs = &bctl->meta;
3333
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003334 /* profiles filter */
3335 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3336 chunk_profiles_filter(chunk_type, bargs)) {
3337 return 0;
3338 }
3339
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003340 /* usage filter */
3341 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
3342 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
3343 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003344 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
3345 chunk_usage_range_filter(bctl->fs_info, chunk_offset, bargs)) {
3346 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003347 }
3348
Ilya Dryomov409d4042012-01-16 22:04:47 +02003349 /* devid filter */
3350 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3351 chunk_devid_filter(leaf, chunk, bargs)) {
3352 return 0;
3353 }
3354
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003355 /* drange filter, makes sense only with devid filter */
3356 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
3357 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
3358 return 0;
3359 }
3360
Ilya Dryomovea671762012-01-16 22:04:48 +02003361 /* vrange filter */
3362 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3363 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3364 return 0;
3365 }
3366
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003367 /* stripes filter */
3368 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3369 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3370 return 0;
3371 }
3372
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003373 /* soft profile changing mode */
3374 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3375 chunk_soft_convert_filter(chunk_type, bargs)) {
3376 return 0;
3377 }
3378
David Sterba7d824b62014-05-07 17:37:51 +02003379 /*
3380 * limited by count, must be the last filter
3381 */
3382 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3383 if (bargs->limit == 0)
3384 return 0;
3385 else
3386 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003387 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3388 /*
3389 * Same logic as the 'limit' filter; the minimum cannot be
Nicholas D Steeves01327612016-05-19 21:18:45 -04003390 * determined here because we do not have the global information
David Sterba12907fc2015-10-10 17:16:50 +02003391 * about the count of all chunks that satisfy the filters.
3392 */
3393 if (bargs->limit_max == 0)
3394 return 0;
3395 else
3396 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003397 }
3398
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003399 return 1;
3400}
3401
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003402static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003403{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003404 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003405 struct btrfs_root *chunk_root = fs_info->chunk_root;
3406 struct btrfs_root *dev_root = fs_info->dev_root;
3407 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003408 struct btrfs_device *device;
3409 u64 old_size;
3410 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003411 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003412 struct btrfs_chunk *chunk;
Chris Masonec44a352008-04-28 15:29:52 -04003413 struct btrfs_path *path;
3414 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003415 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003416 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003417 struct extent_buffer *leaf;
3418 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003419 int ret;
3420 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003421 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003422 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003423 u64 limit_data = bctl->data.limit;
3424 u64 limit_meta = bctl->meta.limit;
3425 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003426 u32 count_data = 0;
3427 u32 count_meta = 0;
3428 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003429 int chunk_reserved = 0;
Liu Bocf25ce52015-12-14 18:29:32 -08003430 u64 bytes_used = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003431
Chris Masonec44a352008-04-28 15:29:52 -04003432 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003433 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003434 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003435 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003436 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003437 size_to_free = min_t(u64, size_to_free, SZ_1M);
Yan Zheng2b820322008-11-17 21:11:30 -05003438 if (!device->writeable ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003439 btrfs_device_get_total_bytes(device) -
3440 btrfs_device_get_bytes_used(device) > size_to_free ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01003441 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04003442 continue;
3443
3444 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003445 if (ret == -ENOSPC)
3446 break;
Chris Masonec44a352008-04-28 15:29:52 -04003447 BUG_ON(ret);
3448
Yan, Zhenga22285a2010-05-16 10:48:46 -04003449 trans = btrfs_start_transaction(dev_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003450 BUG_ON(IS_ERR(trans));
Chris Masonec44a352008-04-28 15:29:52 -04003451
3452 ret = btrfs_grow_device(trans, device, old_size);
3453 BUG_ON(ret);
3454
3455 btrfs_end_transaction(trans, dev_root);
3456 }
3457
3458 /* step two, relocate all the chunks */
3459 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003460 if (!path) {
3461 ret = -ENOMEM;
3462 goto error;
3463 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003464
3465 /* zero out stat counters */
3466 spin_lock(&fs_info->balance_lock);
3467 memset(&bctl->stat, 0, sizeof(bctl->stat));
3468 spin_unlock(&fs_info->balance_lock);
3469again:
David Sterba7d824b62014-05-07 17:37:51 +02003470 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003471 /*
3472 * The single value limit and min/max limits use the same bytes
3473 * in the
3474 */
David Sterba7d824b62014-05-07 17:37:51 +02003475 bctl->data.limit = limit_data;
3476 bctl->meta.limit = limit_meta;
3477 bctl->sys.limit = limit_sys;
3478 }
Chris Masonec44a352008-04-28 15:29:52 -04003479 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3480 key.offset = (u64)-1;
3481 key.type = BTRFS_CHUNK_ITEM_KEY;
3482
Chris Masond3977122009-01-05 21:25:51 -05003483 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003484 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003485 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003486 ret = -ECANCELED;
3487 goto error;
3488 }
3489
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003490 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003491 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003492 if (ret < 0) {
3493 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003494 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003495 }
Chris Masonec44a352008-04-28 15:29:52 -04003496
3497 /*
3498 * this shouldn't happen, it means the last relocate
3499 * failed
3500 */
3501 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003502 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003503
3504 ret = btrfs_previous_item(chunk_root, path, 0,
3505 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003506 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003507 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003508 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003509 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003510 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003511
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003512 leaf = path->nodes[0];
3513 slot = path->slots[0];
3514 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3515
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003516 if (found_key.objectid != key.objectid) {
3517 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003518 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003519 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003520
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003521 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003522 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003523
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003524 if (!counting) {
3525 spin_lock(&fs_info->balance_lock);
3526 bctl->stat.considered++;
3527 spin_unlock(&fs_info->balance_lock);
3528 }
3529
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003530 ret = should_balance_chunk(chunk_root, leaf, chunk,
3531 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003532
David Sterbab3b4aa72011-04-21 01:20:15 +02003533 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003534 if (!ret) {
3535 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003536 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003537 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003538
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003539 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003540 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003541 spin_lock(&fs_info->balance_lock);
3542 bctl->stat.expected++;
3543 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003544
3545 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3546 count_data++;
3547 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3548 count_sys++;
3549 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3550 count_meta++;
3551
3552 goto loop;
3553 }
3554
3555 /*
3556 * Apply limit_min filter, no need to check if the LIMITS
3557 * filter is used, limit_min is 0 by default
3558 */
3559 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3560 count_data < bctl->data.limit_min)
3561 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3562 count_meta < bctl->meta.limit_min)
3563 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3564 count_sys < bctl->sys.limit_min)) {
3565 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003566 goto loop;
3567 }
3568
Liu Bocf25ce52015-12-14 18:29:32 -08003569 ASSERT(fs_info->data_sinfo);
3570 spin_lock(&fs_info->data_sinfo->lock);
3571 bytes_used = fs_info->data_sinfo->bytes_used;
3572 spin_unlock(&fs_info->data_sinfo->lock);
3573
3574 if ((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3575 !chunk_reserved && !bytes_used) {
Zhao Lei2c9fe832015-11-09 11:51:32 +08003576 trans = btrfs_start_transaction(chunk_root, 0);
3577 if (IS_ERR(trans)) {
3578 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3579 ret = PTR_ERR(trans);
3580 goto error;
3581 }
3582
3583 ret = btrfs_force_chunk_alloc(trans, chunk_root,
3584 BTRFS_BLOCK_GROUP_DATA);
Filipe Manana8a7d6562015-12-10 11:08:59 +00003585 btrfs_end_transaction(trans, chunk_root);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003586 if (ret < 0) {
3587 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3588 goto error;
3589 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003590 chunk_reserved = 1;
3591 }
3592
Chris Masonec44a352008-04-28 15:29:52 -04003593 ret = btrfs_relocate_chunk(chunk_root,
Chris Masonec44a352008-04-28 15:29:52 -04003594 found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003595 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003596 if (ret && ret != -ENOSPC)
3597 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003598 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003599 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003600 } else {
3601 spin_lock(&fs_info->balance_lock);
3602 bctl->stat.completed++;
3603 spin_unlock(&fs_info->balance_lock);
3604 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003605loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003606 if (found_key.offset == 0)
3607 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003608 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003609 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003610
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003611 if (counting) {
3612 btrfs_release_path(path);
3613 counting = false;
3614 goto again;
3615 }
Chris Masonec44a352008-04-28 15:29:52 -04003616error:
3617 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003618 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003619 btrfs_info(fs_info, "%d enospc errors during balance",
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003620 enospc_errors);
3621 if (!ret)
3622 ret = -ENOSPC;
3623 }
3624
Chris Masonec44a352008-04-28 15:29:52 -04003625 return ret;
3626}
3627
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003628/**
3629 * alloc_profile_is_valid - see if a given profile is valid and reduced
3630 * @flags: profile to validate
3631 * @extended: if true @flags is treated as an extended profile
3632 */
3633static int alloc_profile_is_valid(u64 flags, int extended)
3634{
3635 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3636 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3637
3638 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3639
3640 /* 1) check that all other bits are zeroed */
3641 if (flags & ~mask)
3642 return 0;
3643
3644 /* 2) see if profile is reduced */
3645 if (flags == 0)
3646 return !extended; /* "0" is valid for usual profiles */
3647
3648 /* true if exactly one bit set */
3649 return (flags & (flags - 1)) == 0;
3650}
3651
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003652static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3653{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003654 /* cancel requested || normal exit path */
3655 return atomic_read(&fs_info->balance_cancel_req) ||
3656 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3657 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003658}
3659
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003660static void __cancel_balance(struct btrfs_fs_info *fs_info)
3661{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003662 int ret;
3663
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003664 unset_balance_control(fs_info);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003665 ret = del_balance_item(fs_info->tree_root);
Liu Bo0f788c52013-03-04 16:25:40 +00003666 if (ret)
Anand Jain34d97002016-03-16 16:43:06 +08003667 btrfs_handle_fs_error(fs_info, ret, NULL);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003668
3669 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003670}
3671
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003672/* Non-zero return value signifies invalidity */
3673static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3674 u64 allowed)
3675{
3676 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3677 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3678 (bctl_arg->target & ~allowed)));
3679}
3680
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003681/*
3682 * Should be called with both balance and volume mutexes held
3683 */
3684int btrfs_balance(struct btrfs_balance_control *bctl,
3685 struct btrfs_ioctl_balance_args *bargs)
3686{
3687 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003688 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003689 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003690 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003691 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003692 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003693
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003694 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003695 atomic_read(&fs_info->balance_pause_req) ||
3696 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003697 ret = -EINVAL;
3698 goto out;
3699 }
3700
Ilya Dryomove4837f82012-03-27 17:09:17 +03003701 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3702 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3703 mixed = 1;
3704
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003705 /*
3706 * In case of mixed groups both data and meta should be picked,
3707 * and identical options should be given for both of them.
3708 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003709 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3710 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003711 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3712 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3713 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003714 btrfs_err(fs_info, "with mixed groups data and "
3715 "metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003716 ret = -EINVAL;
3717 goto out;
3718 }
3719 }
3720
Stefan Behrens8dabb742012-11-06 13:15:27 +01003721 num_devices = fs_info->fs_devices->num_devices;
Liu Bo73beece2015-07-17 16:49:19 +08003722 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrens8dabb742012-11-06 13:15:27 +01003723 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3724 BUG_ON(num_devices < 1);
3725 num_devices--;
3726 }
Liu Bo73beece2015-07-17 16:49:19 +08003727 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Austin S. Hemmelgarn88be1592016-03-23 14:22:59 -04003728 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP;
3729 if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003730 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003731 if (num_devices > 2)
3732 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3733 if (num_devices > 3)
3734 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3735 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003736 if (validate_convert_profile(&bctl->data, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003737 btrfs_err(fs_info, "unable to start balance with target "
3738 "data profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003739 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003740 ret = -EINVAL;
3741 goto out;
3742 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003743 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003744 btrfs_err(fs_info,
3745 "unable to start balance with target metadata profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003746 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003747 ret = -EINVAL;
3748 goto out;
3749 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003750 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003751 btrfs_err(fs_info,
3752 "unable to start balance with target system profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003753 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003754 ret = -EINVAL;
3755 goto out;
3756 }
3757
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003758 /* allow to reduce meta or sys integrity only if force set */
3759 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003760 BTRFS_BLOCK_GROUP_RAID10 |
3761 BTRFS_BLOCK_GROUP_RAID5 |
3762 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003763 do {
3764 seq = read_seqbegin(&fs_info->profiles_lock);
3765
3766 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3767 (fs_info->avail_system_alloc_bits & allowed) &&
3768 !(bctl->sys.target & allowed)) ||
3769 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3770 (fs_info->avail_metadata_alloc_bits & allowed) &&
3771 !(bctl->meta.target & allowed))) {
3772 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003773 btrfs_info(fs_info, "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003774 } else {
Frank Holtonefe120a2013-12-20 11:37:06 -05003775 btrfs_err(fs_info, "balance will reduce metadata "
3776 "integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003777 ret = -EINVAL;
3778 goto out;
3779 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003780 }
Miao Xiede98ced2013-01-29 10:13:12 +00003781 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003782
Sam Tygieree592d02016-01-06 08:46:12 +00003783 if (btrfs_get_num_tolerated_disk_barrier_failures(bctl->meta.target) <
3784 btrfs_get_num_tolerated_disk_barrier_failures(bctl->data.target)) {
3785 btrfs_warn(fs_info,
Filipe Mananafedc0042016-01-15 10:56:15 +00003786 "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
Sam Tygieree592d02016-01-06 08:46:12 +00003787 bctl->meta.target, bctl->data.target);
3788 }
3789
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003790 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
Zhao Lei943c6e92015-08-19 15:54:15 +08003791 fs_info->num_tolerated_disk_barrier_failures = min(
3792 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info),
3793 btrfs_get_num_tolerated_disk_barrier_failures(
3794 bctl->sys.target));
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003795 }
3796
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003797 ret = insert_balance_item(fs_info->tree_root, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003798 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003799 goto out;
3800
Ilya Dryomov59641012012-01-16 22:04:48 +02003801 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3802 BUG_ON(ret == -EEXIST);
3803 set_balance_control(bctl);
3804 } else {
3805 BUG_ON(ret != -EEXIST);
3806 spin_lock(&fs_info->balance_lock);
3807 update_balance_args(bctl);
3808 spin_unlock(&fs_info->balance_lock);
3809 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003810
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003811 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003812 mutex_unlock(&fs_info->balance_mutex);
3813
3814 ret = __btrfs_balance(fs_info);
3815
3816 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003817 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003818
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003819 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3820 fs_info->num_tolerated_disk_barrier_failures =
3821 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3822 }
3823
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003824 if (bargs) {
3825 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003826 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003827 }
3828
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003829 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3830 balance_need_close(fs_info)) {
3831 __cancel_balance(fs_info);
3832 }
3833
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003834 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003835
3836 return ret;
3837out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003838 if (bctl->flags & BTRFS_BALANCE_RESUME)
3839 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003840 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003841 kfree(bctl);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003842 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3843 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003844 return ret;
3845}
3846
3847static int balance_kthread(void *data)
3848{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003849 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003850 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003851
3852 mutex_lock(&fs_info->volume_mutex);
3853 mutex_lock(&fs_info->balance_mutex);
3854
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003855 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003856 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003857 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003858 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003859
3860 mutex_unlock(&fs_info->balance_mutex);
3861 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003862
Ilya Dryomov59641012012-01-16 22:04:48 +02003863 return ret;
3864}
3865
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003866int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3867{
3868 struct task_struct *tsk;
3869
3870 spin_lock(&fs_info->balance_lock);
3871 if (!fs_info->balance_ctl) {
3872 spin_unlock(&fs_info->balance_lock);
3873 return 0;
3874 }
3875 spin_unlock(&fs_info->balance_lock);
3876
3877 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003878 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003879 return 0;
3880 }
3881
3882 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303883 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003884}
3885
Ilya Dryomov68310a52012-06-22 12:24:12 -06003886int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003887{
Ilya Dryomov59641012012-01-16 22:04:48 +02003888 struct btrfs_balance_control *bctl;
3889 struct btrfs_balance_item *item;
3890 struct btrfs_disk_balance_args disk_bargs;
3891 struct btrfs_path *path;
3892 struct extent_buffer *leaf;
3893 struct btrfs_key key;
3894 int ret;
3895
3896 path = btrfs_alloc_path();
3897 if (!path)
3898 return -ENOMEM;
3899
Ilya Dryomov68310a52012-06-22 12:24:12 -06003900 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003901 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06003902 key.offset = 0;
3903
3904 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3905 if (ret < 0)
3906 goto out;
3907 if (ret > 0) { /* ret = -ENOENT; */
3908 ret = 0;
3909 goto out;
3910 }
3911
Ilya Dryomov59641012012-01-16 22:04:48 +02003912 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3913 if (!bctl) {
3914 ret = -ENOMEM;
3915 goto out;
3916 }
3917
Ilya Dryomov59641012012-01-16 22:04:48 +02003918 leaf = path->nodes[0];
3919 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3920
Ilya Dryomov68310a52012-06-22 12:24:12 -06003921 bctl->fs_info = fs_info;
3922 bctl->flags = btrfs_balance_flags(leaf, item);
3923 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02003924
3925 btrfs_balance_data(leaf, item, &disk_bargs);
3926 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3927 btrfs_balance_meta(leaf, item, &disk_bargs);
3928 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3929 btrfs_balance_sys(leaf, item, &disk_bargs);
3930 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3931
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003932 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
3933
Ilya Dryomov68310a52012-06-22 12:24:12 -06003934 mutex_lock(&fs_info->volume_mutex);
3935 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003936
Ilya Dryomov68310a52012-06-22 12:24:12 -06003937 set_balance_control(bctl);
3938
3939 mutex_unlock(&fs_info->balance_mutex);
3940 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003941out:
3942 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003943 return ret;
3944}
3945
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003946int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3947{
3948 int ret = 0;
3949
3950 mutex_lock(&fs_info->balance_mutex);
3951 if (!fs_info->balance_ctl) {
3952 mutex_unlock(&fs_info->balance_mutex);
3953 return -ENOTCONN;
3954 }
3955
3956 if (atomic_read(&fs_info->balance_running)) {
3957 atomic_inc(&fs_info->balance_pause_req);
3958 mutex_unlock(&fs_info->balance_mutex);
3959
3960 wait_event(fs_info->balance_wait_q,
3961 atomic_read(&fs_info->balance_running) == 0);
3962
3963 mutex_lock(&fs_info->balance_mutex);
3964 /* we are good with balance_ctl ripped off from under us */
3965 BUG_ON(atomic_read(&fs_info->balance_running));
3966 atomic_dec(&fs_info->balance_pause_req);
3967 } else {
3968 ret = -ENOTCONN;
3969 }
3970
3971 mutex_unlock(&fs_info->balance_mutex);
3972 return ret;
3973}
3974
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003975int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
3976{
Ilya Dryomove649e582013-10-10 20:40:21 +03003977 if (fs_info->sb->s_flags & MS_RDONLY)
3978 return -EROFS;
3979
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003980 mutex_lock(&fs_info->balance_mutex);
3981 if (!fs_info->balance_ctl) {
3982 mutex_unlock(&fs_info->balance_mutex);
3983 return -ENOTCONN;
3984 }
3985
3986 atomic_inc(&fs_info->balance_cancel_req);
3987 /*
3988 * if we are running just wait and return, balance item is
3989 * deleted in btrfs_balance in this case
3990 */
3991 if (atomic_read(&fs_info->balance_running)) {
3992 mutex_unlock(&fs_info->balance_mutex);
3993 wait_event(fs_info->balance_wait_q,
3994 atomic_read(&fs_info->balance_running) == 0);
3995 mutex_lock(&fs_info->balance_mutex);
3996 } else {
3997 /* __cancel_balance needs volume_mutex */
3998 mutex_unlock(&fs_info->balance_mutex);
3999 mutex_lock(&fs_info->volume_mutex);
4000 mutex_lock(&fs_info->balance_mutex);
4001
4002 if (fs_info->balance_ctl)
4003 __cancel_balance(fs_info);
4004
4005 mutex_unlock(&fs_info->volume_mutex);
4006 }
4007
4008 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
4009 atomic_dec(&fs_info->balance_cancel_req);
4010 mutex_unlock(&fs_info->balance_mutex);
4011 return 0;
4012}
4013
Stefan Behrens803b2f52013-08-15 17:11:21 +02004014static int btrfs_uuid_scan_kthread(void *data)
4015{
4016 struct btrfs_fs_info *fs_info = data;
4017 struct btrfs_root *root = fs_info->tree_root;
4018 struct btrfs_key key;
4019 struct btrfs_key max_key;
4020 struct btrfs_path *path = NULL;
4021 int ret = 0;
4022 struct extent_buffer *eb;
4023 int slot;
4024 struct btrfs_root_item root_item;
4025 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004026 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004027
4028 path = btrfs_alloc_path();
4029 if (!path) {
4030 ret = -ENOMEM;
4031 goto out;
4032 }
4033
4034 key.objectid = 0;
4035 key.type = BTRFS_ROOT_ITEM_KEY;
4036 key.offset = 0;
4037
4038 max_key.objectid = (u64)-1;
4039 max_key.type = BTRFS_ROOT_ITEM_KEY;
4040 max_key.offset = (u64)-1;
4041
Stefan Behrens803b2f52013-08-15 17:11:21 +02004042 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004043 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004044 if (ret) {
4045 if (ret > 0)
4046 ret = 0;
4047 break;
4048 }
4049
4050 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4051 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4052 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4053 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4054 goto skip;
4055
4056 eb = path->nodes[0];
4057 slot = path->slots[0];
4058 item_size = btrfs_item_size_nr(eb, slot);
4059 if (item_size < sizeof(root_item))
4060 goto skip;
4061
Stefan Behrens803b2f52013-08-15 17:11:21 +02004062 read_extent_buffer(eb, &root_item,
4063 btrfs_item_ptr_offset(eb, slot),
4064 (int)sizeof(root_item));
4065 if (btrfs_root_refs(&root_item) == 0)
4066 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004067
4068 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4069 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4070 if (trans)
4071 goto update_tree;
4072
4073 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004074 /*
4075 * 1 - subvol uuid item
4076 * 1 - received_subvol uuid item
4077 */
4078 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4079 if (IS_ERR(trans)) {
4080 ret = PTR_ERR(trans);
4081 break;
4082 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004083 continue;
4084 } else {
4085 goto skip;
4086 }
4087update_tree:
4088 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02004089 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4090 root_item.uuid,
4091 BTRFS_UUID_KEY_SUBVOL,
4092 key.objectid);
4093 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004094 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004095 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004096 break;
4097 }
4098 }
4099
4100 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02004101 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4102 root_item.received_uuid,
4103 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4104 key.objectid);
4105 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004106 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004107 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004108 break;
4109 }
4110 }
4111
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004112skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004113 if (trans) {
4114 ret = btrfs_end_transaction(trans, fs_info->uuid_root);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004115 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004116 if (ret)
4117 break;
4118 }
4119
Stefan Behrens803b2f52013-08-15 17:11:21 +02004120 btrfs_release_path(path);
4121 if (key.offset < (u64)-1) {
4122 key.offset++;
4123 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4124 key.offset = 0;
4125 key.type = BTRFS_ROOT_ITEM_KEY;
4126 } else if (key.objectid < (u64)-1) {
4127 key.offset = 0;
4128 key.type = BTRFS_ROOT_ITEM_KEY;
4129 key.objectid++;
4130 } else {
4131 break;
4132 }
4133 cond_resched();
4134 }
4135
4136out:
4137 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004138 if (trans && !IS_ERR(trans))
4139 btrfs_end_transaction(trans, fs_info->uuid_root);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004140 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004141 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004142 else
4143 fs_info->update_uuid_tree_gen = 1;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004144 up(&fs_info->uuid_tree_rescan_sem);
4145 return 0;
4146}
4147
Stefan Behrens70f80172013-08-15 17:11:23 +02004148/*
4149 * Callback for btrfs_uuid_tree_iterate().
4150 * returns:
4151 * 0 check succeeded, the entry is not outdated.
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08004152 * < 0 if an error occurred.
Stefan Behrens70f80172013-08-15 17:11:23 +02004153 * > 0 if the check failed, which means the caller shall remove the entry.
4154 */
4155static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4156 u8 *uuid, u8 type, u64 subid)
4157{
4158 struct btrfs_key key;
4159 int ret = 0;
4160 struct btrfs_root *subvol_root;
4161
4162 if (type != BTRFS_UUID_KEY_SUBVOL &&
4163 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4164 goto out;
4165
4166 key.objectid = subid;
4167 key.type = BTRFS_ROOT_ITEM_KEY;
4168 key.offset = (u64)-1;
4169 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4170 if (IS_ERR(subvol_root)) {
4171 ret = PTR_ERR(subvol_root);
4172 if (ret == -ENOENT)
4173 ret = 1;
4174 goto out;
4175 }
4176
4177 switch (type) {
4178 case BTRFS_UUID_KEY_SUBVOL:
4179 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4180 ret = 1;
4181 break;
4182 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4183 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4184 BTRFS_UUID_SIZE))
4185 ret = 1;
4186 break;
4187 }
4188
4189out:
4190 return ret;
4191}
4192
4193static int btrfs_uuid_rescan_kthread(void *data)
4194{
4195 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4196 int ret;
4197
4198 /*
4199 * 1st step is to iterate through the existing UUID tree and
4200 * to delete all entries that contain outdated data.
4201 * 2nd step is to add all missing entries to the UUID tree.
4202 */
4203 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4204 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004205 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004206 up(&fs_info->uuid_tree_rescan_sem);
4207 return ret;
4208 }
4209 return btrfs_uuid_scan_kthread(data);
4210}
4211
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004212int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4213{
4214 struct btrfs_trans_handle *trans;
4215 struct btrfs_root *tree_root = fs_info->tree_root;
4216 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004217 struct task_struct *task;
4218 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004219
4220 /*
4221 * 1 - root node
4222 * 1 - root item
4223 */
4224 trans = btrfs_start_transaction(tree_root, 2);
4225 if (IS_ERR(trans))
4226 return PTR_ERR(trans);
4227
4228 uuid_root = btrfs_create_tree(trans, fs_info,
4229 BTRFS_UUID_TREE_OBJECTID);
4230 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004231 ret = PTR_ERR(uuid_root);
4232 btrfs_abort_transaction(trans, tree_root, ret);
4233 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004234 }
4235
4236 fs_info->uuid_root = uuid_root;
4237
Stefan Behrens803b2f52013-08-15 17:11:21 +02004238 ret = btrfs_commit_transaction(trans, tree_root);
4239 if (ret)
4240 return ret;
4241
4242 down(&fs_info->uuid_tree_rescan_sem);
4243 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4244 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004245 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004246 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004247 up(&fs_info->uuid_tree_rescan_sem);
4248 return PTR_ERR(task);
4249 }
4250
4251 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004252}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004253
Stefan Behrens70f80172013-08-15 17:11:23 +02004254int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4255{
4256 struct task_struct *task;
4257
4258 down(&fs_info->uuid_tree_rescan_sem);
4259 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4260 if (IS_ERR(task)) {
4261 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004262 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004263 up(&fs_info->uuid_tree_rescan_sem);
4264 return PTR_ERR(task);
4265 }
4266
4267 return 0;
4268}
4269
Chris Mason8f18cf12008-04-25 16:53:30 -04004270/*
4271 * shrinking a device means finding all of the device extents past
4272 * the new size, and then following the back refs to the chunks.
4273 * The chunk relocation code actually frees the device extent
4274 */
4275int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4276{
4277 struct btrfs_trans_handle *trans;
4278 struct btrfs_root *root = device->dev_root;
4279 struct btrfs_dev_extent *dev_extent = NULL;
4280 struct btrfs_path *path;
4281 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004282 u64 chunk_offset;
4283 int ret;
4284 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004285 int failed = 0;
4286 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004287 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004288 struct extent_buffer *l;
4289 struct btrfs_key key;
David Sterba6c417612011-04-13 15:41:04 +02004290 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004291 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004292 u64 old_size = btrfs_device_get_total_bytes(device);
4293 u64 diff = old_size - new_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04004294
Stefan Behrens63a212a2012-11-05 18:29:28 +01004295 if (device->is_tgtdev_for_dev_replace)
4296 return -EINVAL;
4297
Chris Mason8f18cf12008-04-25 16:53:30 -04004298 path = btrfs_alloc_path();
4299 if (!path)
4300 return -ENOMEM;
4301
David Sterbae4058b52015-11-27 16:31:35 +01004302 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04004303
Chris Mason7d9eb122008-07-08 14:19:17 -04004304 lock_chunks(root);
4305
Miao Xie7cc8e582014-09-03 21:35:38 +08004306 btrfs_device_set_total_bytes(device, new_size);
Josef Bacik2bf64752011-09-26 17:12:22 -04004307 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05004308 device->fs_devices->total_rw_bytes -= diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04004309 spin_lock(&root->fs_info->free_chunk_lock);
4310 root->fs_info->free_chunk_space -= diff;
4311 spin_unlock(&root->fs_info->free_chunk_lock);
4312 }
Chris Mason7d9eb122008-07-08 14:19:17 -04004313 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004314
Josef Bacikba1bf482009-09-11 16:11:19 -04004315again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004316 key.objectid = device->devid;
4317 key.offset = (u64)-1;
4318 key.type = BTRFS_DEV_EXTENT_KEY;
4319
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004320 do {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004321 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004322 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004323 if (ret < 0) {
4324 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004325 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004326 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004327
4328 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004329 if (ret)
4330 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004331 if (ret < 0)
4332 goto done;
4333 if (ret) {
4334 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004335 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004336 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004337 }
4338
4339 l = path->nodes[0];
4340 slot = path->slots[0];
4341 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4342
Josef Bacikba1bf482009-09-11 16:11:19 -04004343 if (key.objectid != device->devid) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004344 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004345 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004346 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004347 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004348
4349 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4350 length = btrfs_dev_extent_length(l, dev_extent);
4351
Josef Bacikba1bf482009-09-11 16:11:19 -04004352 if (key.offset + length <= new_size) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004353 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004354 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004355 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004356 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004357
Chris Mason8f18cf12008-04-25 16:53:30 -04004358 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004359 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004360
Zhaoleidc2ee4e2015-08-05 18:00:04 +08004361 ret = btrfs_relocate_chunk(root, chunk_offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004362 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004363 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004364 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004365 if (ret == -ENOSPC)
4366 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004367 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004368
4369 if (failed && !retried) {
4370 failed = 0;
4371 retried = true;
4372 goto again;
4373 } else if (failed && retried) {
4374 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004375 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004376 }
4377
Chris Balld6397ba2009-04-27 07:29:03 -04004378 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004379 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004380 if (IS_ERR(trans)) {
4381 ret = PTR_ERR(trans);
4382 goto done;
4383 }
4384
Chris Balld6397ba2009-04-27 07:29:03 -04004385 lock_chunks(root);
Filipe Manana53e489b2015-06-02 14:43:21 +01004386
4387 /*
4388 * We checked in the above loop all device extents that were already in
4389 * the device tree. However before we have updated the device's
4390 * total_bytes to the new size, we might have had chunk allocations that
4391 * have not complete yet (new block groups attached to transaction
4392 * handles), and therefore their device extents were not yet in the
4393 * device tree and we missed them in the loop above. So if we have any
4394 * pending chunk using a device extent that overlaps the device range
4395 * that we can not use anymore, commit the current transaction and
4396 * repeat the search on the device tree - this way we guarantee we will
4397 * not have chunks using device extents that end beyond 'new_size'.
4398 */
4399 if (!checked_pending_chunks) {
4400 u64 start = new_size;
4401 u64 len = old_size - new_size;
4402
Jeff Mahoney499f3772015-06-15 09:41:17 -04004403 if (contains_pending_extent(trans->transaction, device,
4404 &start, len)) {
Filipe Manana53e489b2015-06-02 14:43:21 +01004405 unlock_chunks(root);
4406 checked_pending_chunks = true;
4407 failed = 0;
4408 retried = false;
4409 ret = btrfs_commit_transaction(trans, root);
4410 if (ret)
4411 goto done;
4412 goto again;
4413 }
4414 }
4415
Miao Xie7cc8e582014-09-03 21:35:38 +08004416 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004417 if (list_empty(&device->resized_list))
4418 list_add_tail(&device->resized_list,
4419 &root->fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004420
Chris Balld6397ba2009-04-27 07:29:03 -04004421 WARN_ON(diff > old_total);
4422 btrfs_set_super_total_bytes(super_copy, old_total - diff);
4423 unlock_chunks(root);
Miao Xie2196d6e2014-09-03 21:35:41 +08004424
4425 /* Now btrfs_update_device() will change the on-disk size. */
4426 ret = btrfs_update_device(trans, device);
Chris Balld6397ba2009-04-27 07:29:03 -04004427 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004428done:
4429 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004430 if (ret) {
4431 lock_chunks(root);
4432 btrfs_device_set_total_bytes(device, old_size);
4433 if (device->writeable)
4434 device->fs_devices->total_rw_bytes += diff;
4435 spin_lock(&root->fs_info->free_chunk_lock);
4436 root->fs_info->free_chunk_space += diff;
4437 spin_unlock(&root->fs_info->free_chunk_lock);
4438 unlock_chunks(root);
4439 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004440 return ret;
4441}
4442
Li Zefan125ccb02011-12-08 15:07:24 +08004443static int btrfs_add_system_chunk(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04004444 struct btrfs_key *key,
4445 struct btrfs_chunk *chunk, int item_size)
4446{
David Sterba6c417612011-04-13 15:41:04 +02004447 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004448 struct btrfs_disk_key disk_key;
4449 u32 array_size;
4450 u8 *ptr;
4451
Miao Xiefe48a5c2014-09-03 21:35:39 +08004452 lock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004453 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004454 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004455 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
4456 unlock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004457 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004458 }
Chris Mason0b86a832008-03-24 15:01:56 -04004459
4460 ptr = super_copy->sys_chunk_array + array_size;
4461 btrfs_cpu_key_to_disk(&disk_key, key);
4462 memcpy(ptr, &disk_key, sizeof(disk_key));
4463 ptr += sizeof(disk_key);
4464 memcpy(ptr, chunk, item_size);
4465 item_size += sizeof(disk_key);
4466 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004467 unlock_chunks(root);
4468
Chris Mason0b86a832008-03-24 15:01:56 -04004469 return 0;
4470}
4471
Miao Xieb2117a32011-01-05 10:07:28 +00004472/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004473 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004474 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004475static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004476{
Arne Jansen73c5de02011-04-12 12:07:57 +02004477 const struct btrfs_device_info *di_a = a;
4478 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004479
Arne Jansen73c5de02011-04-12 12:07:57 +02004480 if (di_a->max_avail > di_b->max_avail)
4481 return -1;
4482 if (di_a->max_avail < di_b->max_avail)
4483 return 1;
4484 if (di_a->total_avail > di_b->total_avail)
4485 return -1;
4486 if (di_a->total_avail < di_b->total_avail)
4487 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004488 return 0;
4489}
4490
David Woodhouse53b381b2013-01-29 18:40:14 -05004491static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
4492{
4493 /* TODO allow them to set a preferred stripe size */
Byongho Leeee221842015-12-15 01:42:10 +09004494 return SZ_64K;
David Woodhouse53b381b2013-01-29 18:40:14 -05004495}
4496
4497static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4498{
Zhao Leiffe2d202015-01-20 15:11:44 +08004499 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004500 return;
4501
Miao Xieceda0862013-04-11 10:30:16 +00004502 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004503}
4504
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004505#define BTRFS_MAX_DEVS(r) ((BTRFS_LEAF_DATA_SIZE(r) \
4506 - sizeof(struct btrfs_item) \
4507 - sizeof(struct btrfs_chunk)) \
4508 / sizeof(struct btrfs_stripe) + 1)
4509
4510#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4511 - 2 * sizeof(struct btrfs_disk_key) \
4512 - 2 * sizeof(struct btrfs_chunk)) \
4513 / sizeof(struct btrfs_stripe) + 1)
4514
Miao Xieb2117a32011-01-05 10:07:28 +00004515static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Josef Bacik6df9a952013-06-27 13:22:46 -04004516 struct btrfs_root *extent_root, u64 start,
4517 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004518{
4519 struct btrfs_fs_info *info = extent_root->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004520 struct btrfs_fs_devices *fs_devices = info->fs_devices;
4521 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02004522 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004523 struct extent_map_tree *em_tree;
4524 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004525 struct btrfs_device_info *devices_info = NULL;
4526 u64 total_avail;
4527 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004528 int data_stripes; /* number of stripes that count for
4529 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004530 int sub_stripes; /* sub_stripes info for map */
4531 int dev_stripes; /* stripes per dev */
4532 int devs_max; /* max devs to use */
4533 int devs_min; /* min devs needed */
4534 int devs_increment; /* ndevs has to be a multiple of this */
4535 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004536 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004537 u64 max_stripe_size;
4538 u64 max_chunk_size;
4539 u64 stripe_size;
4540 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004541 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02004542 int ndevs;
4543 int i;
4544 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004545 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004546
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004547 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004548
Miao Xieb2117a32011-01-05 10:07:28 +00004549 if (list_empty(&fs_devices->alloc_list))
4550 return -ENOSPC;
4551
Liu Bo31e50222012-11-21 14:18:10 +00004552 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004553
Liu Bo31e50222012-11-21 14:18:10 +00004554 sub_stripes = btrfs_raid_array[index].sub_stripes;
4555 dev_stripes = btrfs_raid_array[index].dev_stripes;
4556 devs_max = btrfs_raid_array[index].devs_max;
4557 devs_min = btrfs_raid_array[index].devs_min;
4558 devs_increment = btrfs_raid_array[index].devs_increment;
4559 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004560
4561 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004562 max_stripe_size = SZ_1G;
Arne Jansen73c5de02011-04-12 12:07:57 +02004563 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004564 if (!devs_max)
4565 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004566 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004567 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004568 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4569 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004570 else
Byongho Leeee221842015-12-15 01:42:10 +09004571 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004572 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004573 if (!devs_max)
4574 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004575 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004576 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004577 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004578 if (!devs_max)
4579 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004580 } else {
David Sterba351fd352014-05-15 16:48:20 +02004581 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004582 type);
4583 BUG_ON(1);
4584 }
4585
4586 /* we don't want a chunk larger than 10% of writeable space */
4587 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4588 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004589
David Sterba31e818f2015-02-20 18:00:26 +01004590 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004591 GFP_NOFS);
4592 if (!devices_info)
4593 return -ENOMEM;
4594
Arne Jansen73c5de02011-04-12 12:07:57 +02004595 cur = fs_devices->alloc_list.next;
4596
4597 /*
4598 * in the first pass through the devices list, we gather information
4599 * about the available holes on each device.
4600 */
4601 ndevs = 0;
4602 while (cur != &fs_devices->alloc_list) {
4603 struct btrfs_device *device;
4604 u64 max_avail;
4605 u64 dev_offset;
4606
4607 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4608
4609 cur = cur->next;
4610
4611 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004612 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004613 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004614 continue;
4615 }
4616
Stefan Behrens63a212a2012-11-05 18:29:28 +01004617 if (!device->in_fs_metadata ||
4618 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004619 continue;
4620
4621 if (device->total_bytes > device->bytes_used)
4622 total_avail = device->total_bytes - device->bytes_used;
4623 else
4624 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004625
4626 /* If there is no space on this device, skip it. */
4627 if (total_avail == 0)
4628 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004629
Josef Bacik6df9a952013-06-27 13:22:46 -04004630 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004631 max_stripe_size * dev_stripes,
4632 &dev_offset, &max_avail);
4633 if (ret && ret != -ENOSPC)
4634 goto error;
4635
4636 if (ret == 0)
4637 max_avail = max_stripe_size * dev_stripes;
4638
4639 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4640 continue;
4641
Eric Sandeen063d0062013-01-31 00:55:01 +00004642 if (ndevs == fs_devices->rw_devices) {
4643 WARN(1, "%s: found more than %llu devices\n",
4644 __func__, fs_devices->rw_devices);
4645 break;
4646 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004647 devices_info[ndevs].dev_offset = dev_offset;
4648 devices_info[ndevs].max_avail = max_avail;
4649 devices_info[ndevs].total_avail = total_avail;
4650 devices_info[ndevs].dev = device;
4651 ++ndevs;
4652 }
4653
4654 /*
4655 * now sort the devices by hole size / available space
4656 */
4657 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4658 btrfs_cmp_device_info, NULL);
4659
4660 /* round down to number of usable stripes */
4661 ndevs -= ndevs % devs_increment;
4662
4663 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4664 ret = -ENOSPC;
4665 goto error;
4666 }
4667
4668 if (devs_max && ndevs > devs_max)
4669 ndevs = devs_max;
4670 /*
4671 * the primary goal is to maximize the number of stripes, so use as many
4672 * devices as possible, even if the stripes are not maximum sized.
4673 */
4674 stripe_size = devices_info[ndevs-1].max_avail;
4675 num_stripes = ndevs * dev_stripes;
4676
David Woodhouse53b381b2013-01-29 18:40:14 -05004677 /*
4678 * this will have to be fixed for RAID1 and RAID10 over
4679 * more drives
4680 */
4681 data_stripes = num_stripes / ncopies;
4682
David Woodhouse53b381b2013-01-29 18:40:14 -05004683 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4684 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
4685 btrfs_super_stripesize(info->super_copy));
4686 data_stripes = num_stripes - 1;
4687 }
4688 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4689 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
4690 btrfs_super_stripesize(info->super_copy));
4691 data_stripes = num_stripes - 2;
4692 }
Chris Mason86db2572013-02-20 16:23:40 -05004693
4694 /*
4695 * Use the number of data stripes to figure out how big this chunk
4696 * is really going to be in terms of logical address space,
4697 * and compare that answer with the max chunk size
4698 */
4699 if (stripe_size * data_stripes > max_chunk_size) {
4700 u64 mask = (1ULL << 24) - 1;
David Sterbab8b93ad2015-01-16 17:26:13 +01004701
4702 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004703
4704 /* bump the answer up to a 16MB boundary */
4705 stripe_size = (stripe_size + mask) & ~mask;
4706
4707 /* but don't go higher than the limits we found
4708 * while searching for free extents
4709 */
4710 if (stripe_size > devices_info[ndevs-1].max_avail)
4711 stripe_size = devices_info[ndevs-1].max_avail;
4712 }
4713
David Sterbab8b93ad2015-01-16 17:26:13 +01004714 stripe_size = div_u64(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004715
4716 /* align to BTRFS_STRIPE_LEN */
David Sterbab8b93ad2015-01-16 17:26:13 +01004717 stripe_size = div_u64(stripe_size, raid_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05004718 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004719
Miao Xieb2117a32011-01-05 10:07:28 +00004720 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4721 if (!map) {
4722 ret = -ENOMEM;
4723 goto error;
4724 }
4725 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004726
Arne Jansen73c5de02011-04-12 12:07:57 +02004727 for (i = 0; i < ndevs; ++i) {
4728 for (j = 0; j < dev_stripes; ++j) {
4729 int s = i * dev_stripes + j;
4730 map->stripes[s].dev = devices_info[i].dev;
4731 map->stripes[s].physical = devices_info[i].dev_offset +
4732 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004733 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004734 }
Chris Mason593060d2008-03-25 16:50:33 -04004735 map->sector_size = extent_root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004736 map->stripe_len = raid_stripe_len;
4737 map->io_align = raid_stripe_len;
4738 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004739 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004740 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004741
David Woodhouse53b381b2013-01-29 18:40:14 -05004742 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004743
Arne Jansen73c5de02011-04-12 12:07:57 +02004744 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004745
David Sterba172ddd62011-04-21 00:48:27 +02004746 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004747 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004748 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004749 ret = -ENOMEM;
4750 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004751 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004752 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004753 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004754 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004755 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004756 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004757 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004758 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004759
Chris Mason0b86a832008-03-24 15:01:56 -04004760 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004761 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004762 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004763 if (!ret) {
4764 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4765 atomic_inc(&em->refs);
4766 }
Chris Mason890871b2009-09-02 16:24:52 -04004767 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004768 if (ret) {
4769 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004770 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004771 }
Yan Zheng2b820322008-11-17 21:11:30 -05004772
Josef Bacik04487482013-01-29 15:03:37 -05004773 ret = btrfs_make_block_group(trans, extent_root, 0, type,
4774 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4775 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004776 if (ret)
4777 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004778
Miao Xie7cc8e582014-09-03 21:35:38 +08004779 for (i = 0; i < map->num_stripes; i++) {
4780 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4781 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4782 }
Miao Xie43530c42014-09-03 21:35:36 +08004783
Miao Xie1c116182014-09-03 21:35:37 +08004784 spin_lock(&extent_root->fs_info->free_chunk_lock);
4785 extent_root->fs_info->free_chunk_space -= (stripe_size *
4786 map->num_stripes);
4787 spin_unlock(&extent_root->fs_info->free_chunk_lock);
4788
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004789 free_extent_map(em);
David Woodhouse53b381b2013-01-29 18:40:14 -05004790 check_raid56_incompat_flag(extent_root->fs_info, type);
4791
Miao Xieb2117a32011-01-05 10:07:28 +00004792 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004793 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004794
Josef Bacik6df9a952013-06-27 13:22:46 -04004795error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004796 write_lock(&em_tree->lock);
4797 remove_extent_mapping(em_tree, em);
4798 write_unlock(&em_tree->lock);
4799
4800 /* One for our allocation */
4801 free_extent_map(em);
4802 /* One for the tree reference */
4803 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004804 /* One for the pending_chunks list reference */
4805 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004806error:
Miao Xieb2117a32011-01-05 10:07:28 +00004807 kfree(devices_info);
4808 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004809}
4810
Josef Bacik6df9a952013-06-27 13:22:46 -04004811int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004812 struct btrfs_root *extent_root,
Josef Bacik6df9a952013-06-27 13:22:46 -04004813 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004814{
Yan Zheng2b820322008-11-17 21:11:30 -05004815 struct btrfs_key key;
4816 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
4817 struct btrfs_device *device;
4818 struct btrfs_chunk *chunk;
4819 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004820 struct extent_map_tree *em_tree;
4821 struct extent_map *em;
4822 struct map_lookup *map;
4823 size_t item_size;
4824 u64 dev_offset;
4825 u64 stripe_size;
4826 int i = 0;
Chris Mason140e6392015-12-23 13:30:51 -08004827 int ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004828
Josef Bacik6df9a952013-06-27 13:22:46 -04004829 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
4830 read_lock(&em_tree->lock);
4831 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4832 read_unlock(&em_tree->lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004833
Josef Bacik6df9a952013-06-27 13:22:46 -04004834 if (!em) {
4835 btrfs_crit(extent_root->fs_info, "unable to find logical "
4836 "%Lu len %Lu", chunk_offset, chunk_size);
4837 return -EINVAL;
4838 }
4839
4840 if (em->start != chunk_offset || em->len != chunk_size) {
4841 btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted"
David Sterba351fd352014-05-15 16:48:20 +02004842 " %Lu-%Lu, found %Lu-%Lu", chunk_offset,
Josef Bacik6df9a952013-06-27 13:22:46 -04004843 chunk_size, em->start, em->len);
4844 free_extent_map(em);
4845 return -EINVAL;
4846 }
4847
Jeff Mahoney95617d62015-06-03 10:55:48 -04004848 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004849 item_size = btrfs_chunk_item_size(map->num_stripes);
4850 stripe_size = em->orig_block_len;
4851
4852 chunk = kzalloc(item_size, GFP_NOFS);
4853 if (!chunk) {
4854 ret = -ENOMEM;
4855 goto out;
4856 }
4857
Filipe Manana50460e32015-11-20 10:42:47 +00004858 /*
4859 * Take the device list mutex to prevent races with the final phase of
4860 * a device replace operation that replaces the device object associated
4861 * with the map's stripes, because the device object's id can change
4862 * at any time during that final phase of the device replace operation
4863 * (dev-replace.c:btrfs_dev_replace_finishing()).
4864 */
4865 mutex_lock(&chunk_root->fs_info->fs_devices->device_list_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04004866 for (i = 0; i < map->num_stripes; i++) {
4867 device = map->stripes[i].dev;
4868 dev_offset = map->stripes[i].physical;
4869
Yan Zheng2b820322008-11-17 21:11:30 -05004870 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004871 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004872 break;
Josef Bacik6df9a952013-06-27 13:22:46 -04004873 ret = btrfs_alloc_dev_extent(trans, device,
4874 chunk_root->root_key.objectid,
4875 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4876 chunk_offset, dev_offset,
4877 stripe_size);
4878 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004879 break;
4880 }
4881 if (ret) {
4882 mutex_unlock(&chunk_root->fs_info->fs_devices->device_list_mutex);
4883 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004884 }
4885
Yan Zheng2b820322008-11-17 21:11:30 -05004886 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004887 for (i = 0; i < map->num_stripes; i++) {
4888 device = map->stripes[i].dev;
4889 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004890
4891 btrfs_set_stack_stripe_devid(stripe, device->devid);
4892 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4893 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4894 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004895 }
Filipe Manana50460e32015-11-20 10:42:47 +00004896 mutex_unlock(&chunk_root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05004897
4898 btrfs_set_stack_chunk_length(chunk, chunk_size);
4899 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4900 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4901 btrfs_set_stack_chunk_type(chunk, map->type);
4902 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4903 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4904 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
4905 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
4906 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4907
4908 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4909 key.type = BTRFS_CHUNK_ITEM_KEY;
4910 key.offset = chunk_offset;
4911
4912 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004913 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4914 /*
4915 * TODO: Cleanup of inserted chunk root in case of
4916 * failure.
4917 */
Li Zefan125ccb02011-12-08 15:07:24 +08004918 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
Yan Zheng2b820322008-11-17 21:11:30 -05004919 item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004920 }
liubo1abe9b82011-03-24 11:18:59 +00004921
Josef Bacik6df9a952013-06-27 13:22:46 -04004922out:
Yan Zheng2b820322008-11-17 21:11:30 -05004923 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004924 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004925 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004926}
4927
4928/*
4929 * Chunk allocation falls into two parts. The first part does works
4930 * that make the new allocated chunk useable, but not do any operation
4931 * that modifies the chunk tree. The second part does the works that
4932 * require modifying the chunk tree. This division is important for the
4933 * bootstrap process of adding storage to a seed btrfs.
4934 */
4935int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
4936 struct btrfs_root *extent_root, u64 type)
4937{
4938 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004939
Filipe Mananaa9629592015-05-18 19:11:40 +01004940 ASSERT(mutex_is_locked(&extent_root->fs_info->chunk_mutex));
Josef Bacik6df9a952013-06-27 13:22:46 -04004941 chunk_offset = find_next_chunk(extent_root->fs_info);
4942 return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05004943}
4944
Chris Masond3977122009-01-05 21:25:51 -05004945static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004946 struct btrfs_root *root,
4947 struct btrfs_device *device)
4948{
4949 u64 chunk_offset;
4950 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004951 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05004952 struct btrfs_fs_info *fs_info = root->fs_info;
4953 struct btrfs_root *extent_root = fs_info->extent_root;
4954 int ret;
4955
Josef Bacik6df9a952013-06-27 13:22:46 -04004956 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004957 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004958 ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset,
4959 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004960 if (ret)
4961 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004962
Josef Bacik6df9a952013-06-27 13:22:46 -04004963 sys_chunk_offset = find_next_chunk(root->fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004964 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004965 ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset,
4966 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004967 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004968}
4969
Miao Xied20983b2014-07-03 18:22:13 +08004970static inline int btrfs_chunk_max_errors(struct map_lookup *map)
4971{
4972 int max_errors;
4973
4974 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
4975 BTRFS_BLOCK_GROUP_RAID10 |
4976 BTRFS_BLOCK_GROUP_RAID5 |
4977 BTRFS_BLOCK_GROUP_DUP)) {
4978 max_errors = 1;
4979 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
4980 max_errors = 2;
4981 } else {
4982 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004983 }
4984
Miao Xied20983b2014-07-03 18:22:13 +08004985 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05004986}
4987
4988int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
4989{
4990 struct extent_map *em;
4991 struct map_lookup *map;
4992 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4993 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08004994 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004995 int i;
4996
Chris Mason890871b2009-09-02 16:24:52 -04004997 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004998 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04004999 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05005000 if (!em)
5001 return 1;
5002
Jeff Mahoney95617d62015-06-03 10:55:48 -04005003 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05005004 for (i = 0; i < map->num_stripes; i++) {
Miao Xied20983b2014-07-03 18:22:13 +08005005 if (map->stripes[i].dev->missing) {
5006 miss_ndevs++;
5007 continue;
5008 }
5009
Yan Zheng2b820322008-11-17 21:11:30 -05005010 if (!map->stripes[i].dev->writeable) {
5011 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08005012 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05005013 }
5014 }
Miao Xied20983b2014-07-03 18:22:13 +08005015
5016 /*
5017 * If the number of missing devices is larger than max errors,
5018 * we can not write the data into that chunk successfully, so
5019 * set it readonly.
5020 */
5021 if (miss_ndevs > btrfs_chunk_max_errors(map))
5022 readonly = 1;
5023end:
Yan Zheng2b820322008-11-17 21:11:30 -05005024 free_extent_map(em);
5025 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04005026}
5027
5028void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
5029{
David Sterbaa8067e02011-04-21 00:34:43 +02005030 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04005031}
5032
5033void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
5034{
5035 struct extent_map *em;
5036
Chris Masond3977122009-01-05 21:25:51 -05005037 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04005038 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005039 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
5040 if (em)
5041 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04005042 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005043 if (!em)
5044 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005045 /* once for us */
5046 free_extent_map(em);
5047 /* once for the tree */
5048 free_extent_map(em);
5049 }
5050}
5051
Stefan Behrens5d964052012-11-05 14:59:07 +01005052int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005053{
Stefan Behrens5d964052012-11-05 14:59:07 +01005054 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Masonf1885912008-04-09 16:28:12 -04005055 struct extent_map *em;
5056 struct map_lookup *map;
5057 struct extent_map_tree *em_tree = &map_tree->map_tree;
5058 int ret;
5059
Chris Mason890871b2009-09-02 16:24:52 -04005060 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005061 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04005062 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005063
Josef Bacikfb7669b2013-04-23 10:53:18 -04005064 /*
5065 * We could return errors for these cases, but that could get ugly and
5066 * we'd probably do the same thing which is just not do anything else
5067 * and exit, so return 1 so the callers don't try to use other copies.
5068 */
5069 if (!em) {
David Sterba351fd352014-05-15 16:48:20 +02005070 btrfs_crit(fs_info, "No mapping for %Lu-%Lu", logical,
Josef Bacikfb7669b2013-04-23 10:53:18 -04005071 logical+len);
5072 return 1;
5073 }
5074
5075 if (em->start > logical || em->start + em->len < logical) {
David Sterbaccf39f92013-07-11 15:41:11 +02005076 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got "
David Sterba351fd352014-05-15 16:48:20 +02005077 "%Lu-%Lu", logical, logical+len, em->start,
Josef Bacikfb7669b2013-04-23 10:53:18 -04005078 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005079 free_extent_map(em);
Josef Bacikfb7669b2013-04-23 10:53:18 -04005080 return 1;
5081 }
5082
Jeff Mahoney95617d62015-06-03 10:55:48 -04005083 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005084 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5085 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005086 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5087 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005088 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5089 ret = 2;
5090 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5091 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04005092 else
5093 ret = 1;
5094 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005095
Liu Bo73beece2015-07-17 16:49:19 +08005096 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005097 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
5098 ret++;
Liu Bo73beece2015-07-17 16:49:19 +08005099 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005100
Chris Masonf1885912008-04-09 16:28:12 -04005101 return ret;
5102}
5103
David Woodhouse53b381b2013-01-29 18:40:14 -05005104unsigned long btrfs_full_stripe_len(struct btrfs_root *root,
5105 struct btrfs_mapping_tree *map_tree,
5106 u64 logical)
5107{
5108 struct extent_map *em;
5109 struct map_lookup *map;
5110 struct extent_map_tree *em_tree = &map_tree->map_tree;
5111 unsigned long len = root->sectorsize;
5112
5113 read_lock(&em_tree->lock);
5114 em = lookup_extent_mapping(em_tree, logical, len);
5115 read_unlock(&em_tree->lock);
5116 BUG_ON(!em);
5117
5118 BUG_ON(em->start > logical || em->start + em->len < logical);
Jeff Mahoney95617d62015-06-03 10:55:48 -04005119 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005120 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005121 len = map->stripe_len * nr_data_stripes(map);
David Woodhouse53b381b2013-01-29 18:40:14 -05005122 free_extent_map(em);
5123 return len;
5124}
5125
5126int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
5127 u64 logical, u64 len, int mirror_num)
5128{
5129 struct extent_map *em;
5130 struct map_lookup *map;
5131 struct extent_map_tree *em_tree = &map_tree->map_tree;
5132 int ret = 0;
5133
5134 read_lock(&em_tree->lock);
5135 em = lookup_extent_mapping(em_tree, logical, len);
5136 read_unlock(&em_tree->lock);
5137 BUG_ON(!em);
5138
5139 BUG_ON(em->start > logical || em->start + em->len < logical);
Jeff Mahoney95617d62015-06-03 10:55:48 -04005140 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005141 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005142 ret = 1;
5143 free_extent_map(em);
5144 return ret;
5145}
5146
Stefan Behrens30d98612012-11-06 14:52:18 +01005147static int find_live_mirror(struct btrfs_fs_info *fs_info,
5148 struct map_lookup *map, int first, int num,
5149 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005150{
5151 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01005152 int tolerance;
5153 struct btrfs_device *srcdev;
5154
5155 if (dev_replace_is_ongoing &&
5156 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5157 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5158 srcdev = fs_info->dev_replace.srcdev;
5159 else
5160 srcdev = NULL;
5161
5162 /*
5163 * try to avoid the drive that is the source drive for a
5164 * dev-replace procedure, only choose it if no other non-missing
5165 * mirror is available
5166 */
5167 for (tolerance = 0; tolerance < 2; tolerance++) {
5168 if (map->stripes[optimal].dev->bdev &&
5169 (tolerance || map->stripes[optimal].dev != srcdev))
5170 return optimal;
5171 for (i = first; i < first + num; i++) {
5172 if (map->stripes[i].dev->bdev &&
5173 (tolerance || map->stripes[i].dev != srcdev))
5174 return i;
5175 }
Chris Masondfe25022008-05-13 13:46:40 -04005176 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005177
Chris Masondfe25022008-05-13 13:46:40 -04005178 /* we couldn't find one that doesn't fail. Just return something
5179 * and the io error handling code will clean up eventually
5180 */
5181 return optimal;
5182}
5183
David Woodhouse53b381b2013-01-29 18:40:14 -05005184static inline int parity_smaller(u64 a, u64 b)
5185{
5186 return a > b;
5187}
5188
5189/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005190static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005191{
5192 struct btrfs_bio_stripe s;
5193 int i;
5194 u64 l;
5195 int again = 1;
5196
5197 while (again) {
5198 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005199 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005200 if (parity_smaller(bbio->raid_map[i],
5201 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005202 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005203 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005204 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005205 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005206 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005207 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005208
David Woodhouse53b381b2013-01-29 18:40:14 -05005209 again = 1;
5210 }
5211 }
5212 }
5213}
5214
Zhao Lei6e9606d2015-01-20 15:11:34 +08005215static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5216{
5217 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005218 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005219 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005220 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005221 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005222 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005223 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005224 /*
5225 * plus the raid_map, which includes both the tgt dev
5226 * and the stripes
5227 */
5228 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005229 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005230
5231 atomic_set(&bbio->error, 0);
5232 atomic_set(&bbio->refs, 1);
5233
5234 return bbio;
5235}
5236
5237void btrfs_get_bbio(struct btrfs_bio *bbio)
5238{
5239 WARN_ON(!atomic_read(&bbio->refs));
5240 atomic_inc(&bbio->refs);
5241}
5242
5243void btrfs_put_bbio(struct btrfs_bio *bbio)
5244{
5245 if (!bbio)
5246 return;
5247 if (atomic_dec_and_test(&bbio->refs))
5248 kfree(bbio);
5249}
5250
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005251static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005252 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005253 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005254 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005255{
5256 struct extent_map *em;
5257 struct map_lookup *map;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005258 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04005259 struct extent_map_tree *em_tree = &map_tree->map_tree;
5260 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005261 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005262 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04005263 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005264 u64 stripe_nr_orig;
5265 u64 stripe_nr_end;
David Woodhouse53b381b2013-01-29 18:40:14 -05005266 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005267 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005268 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005269 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005270 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005271 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005272 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005273 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005274 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5275 int dev_replace_is_ongoing = 0;
5276 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005277 int patch_the_first_stripe_for_dev_replace = 0;
5278 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005279 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005280
Chris Mason890871b2009-09-02 16:24:52 -04005281 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005282 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04005283 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04005284
Chris Mason3b951512008-04-17 11:29:12 -04005285 if (!em) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005286 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005287 logical, *length);
Josef Bacik9bb91872013-04-19 23:45:33 -04005288 return -EINVAL;
Chris Mason3b951512008-04-17 11:29:12 -04005289 }
Chris Mason0b86a832008-03-24 15:01:56 -04005290
Josef Bacik9bb91872013-04-19 23:45:33 -04005291 if (em->start > logical || em->start + em->len < logical) {
5292 btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, "
David Sterba351fd352014-05-15 16:48:20 +02005293 "found %Lu-%Lu", logical, em->start,
Josef Bacik9bb91872013-04-19 23:45:33 -04005294 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005295 free_extent_map(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005296 return -EINVAL;
5297 }
5298
Jeff Mahoney95617d62015-06-03 10:55:48 -04005299 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005300 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005301
David Woodhouse53b381b2013-01-29 18:40:14 -05005302 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005303 stripe_nr = offset;
5304 /*
5305 * stripe_nr counts the total number of stripes we have to stride
5306 * to get to this block
5307 */
David Sterba47c57132015-02-20 18:43:47 +01005308 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005309
David Woodhouse53b381b2013-01-29 18:40:14 -05005310 stripe_offset = stripe_nr * stripe_len;
Josef Bacike042d1e2016-04-12 12:54:40 -04005311 if (offset < stripe_offset) {
5312 btrfs_crit(fs_info, "stripe math has gone wrong, "
5313 "stripe_offset=%llu, offset=%llu, start=%llu, "
5314 "logical=%llu, stripe_len=%llu",
5315 stripe_offset, offset, em->start, logical,
5316 stripe_len);
5317 free_extent_map(em);
5318 return -EINVAL;
5319 }
Chris Mason593060d2008-03-25 16:50:33 -04005320
5321 /* stripe_offset is the offset of this block in its stripe*/
5322 stripe_offset = offset - stripe_offset;
5323
David Woodhouse53b381b2013-01-29 18:40:14 -05005324 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005325 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005326 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5327 raid56_full_stripe_start = offset;
5328
5329 /* allow a write of a full stripe, but make sure we don't
5330 * allow straddling of stripes
5331 */
David Sterba47c57132015-02-20 18:43:47 +01005332 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5333 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005334 raid56_full_stripe_start *= full_stripe_len;
5335 }
5336
5337 if (rw & REQ_DISCARD) {
5338 /* we don't discard raid56 yet */
Zhao Leiffe2d202015-01-20 15:11:44 +08005339 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005340 ret = -EOPNOTSUPP;
5341 goto out;
5342 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005343 *length = min_t(u64, em->len - offset, *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005344 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
5345 u64 max_len;
5346 /* For writes to RAID[56], allow a full stripeset across all disks.
5347 For other RAID types and for RAID[56] reads, just allow a single
5348 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005349 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
David Woodhouse53b381b2013-01-29 18:40:14 -05005350 (rw & REQ_WRITE)) {
5351 max_len = stripe_len * nr_data_stripes(map) -
5352 (offset - raid56_full_stripe_start);
5353 } else {
5354 /* we limit the length of each bio to what fits in a stripe */
5355 max_len = stripe_len - stripe_offset;
5356 }
5357 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005358 } else {
5359 *length = em->len - offset;
5360 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005361
David Woodhouse53b381b2013-01-29 18:40:14 -05005362 /* This is for when we're called from btrfs_merge_bio_hook() and all
5363 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005364 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005365 goto out;
5366
Liu Bo73beece2015-07-17 16:49:19 +08005367 btrfs_dev_replace_lock(dev_replace, 0);
Stefan Behrens472262f2012-11-06 14:43:46 +01005368 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5369 if (!dev_replace_is_ongoing)
Liu Bo73beece2015-07-17 16:49:19 +08005370 btrfs_dev_replace_unlock(dev_replace, 0);
5371 else
5372 btrfs_dev_replace_set_lock_blocking(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005373
Stefan Behrensad6d6202012-11-06 15:06:47 +01005374 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
5375 !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) &&
5376 dev_replace->tgtdev != NULL) {
5377 /*
5378 * in dev-replace case, for repair case (that's the only
5379 * case where the mirror is selected explicitly when
5380 * calling btrfs_map_block), blocks left of the left cursor
5381 * can also be read from the target drive.
5382 * For REQ_GET_READ_MIRRORS, the target drive is added as
5383 * the last one to the array of stripes. For READ, it also
5384 * needs to be supported using the same mirror number.
5385 * If the requested block is not left of the left cursor,
5386 * EIO is returned. This can happen because btrfs_num_copies()
5387 * returns one more in the dev-replace case.
5388 */
5389 u64 tmp_length = *length;
5390 struct btrfs_bio *tmp_bbio = NULL;
5391 int tmp_num_stripes;
5392 u64 srcdev_devid = dev_replace->srcdev->devid;
5393 int index_srcdev = 0;
5394 int found = 0;
5395 u64 physical_of_found = 0;
5396
5397 ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005398 logical, &tmp_length, &tmp_bbio, 0, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005399 if (ret) {
5400 WARN_ON(tmp_bbio != NULL);
5401 goto out;
5402 }
5403
5404 tmp_num_stripes = tmp_bbio->num_stripes;
5405 if (mirror_num > tmp_num_stripes) {
5406 /*
5407 * REQ_GET_READ_MIRRORS does not contain this
5408 * mirror, that means that the requested area
5409 * is not left of the left cursor
5410 */
5411 ret = -EIO;
Zhao Lei6e9606d2015-01-20 15:11:34 +08005412 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005413 goto out;
5414 }
5415
5416 /*
5417 * process the rest of the function using the mirror_num
5418 * of the source drive. Therefore look it up first.
5419 * At the end, patch the device pointer to the one of the
5420 * target drive.
5421 */
5422 for (i = 0; i < tmp_num_stripes; i++) {
Zhao Lei94a97df2015-12-09 21:03:49 +08005423 if (tmp_bbio->stripes[i].dev->devid != srcdev_devid)
5424 continue;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005425
Zhao Lei94a97df2015-12-09 21:03:49 +08005426 /*
5427 * In case of DUP, in order to keep it simple, only add
5428 * the mirror with the lowest physical address
5429 */
5430 if (found &&
5431 physical_of_found <= tmp_bbio->stripes[i].physical)
5432 continue;
5433
5434 index_srcdev = i;
5435 found = 1;
5436 physical_of_found = tmp_bbio->stripes[i].physical;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005437 }
5438
Zhao Lei6e9606d2015-01-20 15:11:34 +08005439 btrfs_put_bbio(tmp_bbio);
Zhao Lei94a97df2015-12-09 21:03:49 +08005440
5441 if (!found) {
5442 WARN_ON(1);
5443 ret = -EIO;
5444 goto out;
5445 }
5446
5447 mirror_num = index_srcdev + 1;
5448 patch_the_first_stripe_for_dev_replace = 1;
5449 physical_to_patch_in_first_stripe = physical_of_found;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005450 } else if (mirror_num > map->num_stripes) {
5451 mirror_num = 0;
5452 }
5453
Chris Masonf2d8d742008-04-21 10:03:05 -04005454 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005455 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005456 stripe_nr_orig = stripe_nr;
Qu Wenruofda28322013-02-26 08:10:22 +00005457 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
David Sterbab8b93ad2015-01-16 17:26:13 +01005458 stripe_nr_end = div_u64(stripe_nr_end, map->stripe_len);
Li Dongyangfce3bb92011-03-24 10:24:26 +00005459 stripe_end_offset = stripe_nr_end * map->stripe_len -
5460 (offset + *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005461
Li Dongyangfce3bb92011-03-24 10:24:26 +00005462 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5463 if (rw & REQ_DISCARD)
5464 num_stripes = min_t(u64, map->num_stripes,
5465 stripe_nr_end - stripe_nr_orig);
David Sterba47c57132015-02-20 18:43:47 +01005466 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5467 &stripe_index);
Miao Xie28e1cc72014-09-12 18:44:02 +08005468 if (!(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)))
5469 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005470 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005471 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005472 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005473 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005474 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005475 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005476 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005477 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005478 current->pid % map->num_stripes,
5479 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005480 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005481 }
Chris Mason2fff7342008-04-29 14:12:09 -04005482
Chris Mason611f0e02008-04-03 16:29:03 -04005483 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005484 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005485 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005486 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005487 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005488 } else {
5489 mirror_num = 1;
5490 }
Chris Mason2fff7342008-04-29 14:12:09 -04005491
Chris Mason321aecc2008-04-16 10:49:51 -04005492 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005493 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005494
David Sterba47c57132015-02-20 18:43:47 +01005495 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005496 stripe_index *= map->sub_stripes;
5497
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005498 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005499 num_stripes = map->sub_stripes;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005500 else if (rw & REQ_DISCARD)
5501 num_stripes = min_t(u64, map->sub_stripes *
5502 (stripe_nr_end - stripe_nr_orig),
5503 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04005504 else if (mirror_num)
5505 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005506 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005507 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005508 stripe_index = find_live_mirror(fs_info, map,
5509 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005510 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005511 current->pid % map->sub_stripes,
5512 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005513 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005514 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005515
Zhao Leiffe2d202015-01-20 15:11:44 +08005516 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005517 if (need_raid_map &&
Miao Xieaf8e2d12014-10-23 14:42:50 +08005518 ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5519 mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005520 /* push stripe_nr back to the start of the full stripe */
David Sterbab8b93ad2015-01-16 17:26:13 +01005521 stripe_nr = div_u64(raid56_full_stripe_start,
5522 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005523
5524 /* RAID[56] write or recovery. Return all stripes */
5525 num_stripes = map->num_stripes;
5526 max_errors = nr_parity_stripes(map);
5527
David Woodhouse53b381b2013-01-29 18:40:14 -05005528 *length = map->stripe_len;
5529 stripe_index = 0;
5530 stripe_offset = 0;
5531 } else {
5532 /*
5533 * Mirror #0 or #1 means the original data block.
5534 * Mirror #2 is RAID5 parity block.
5535 * Mirror #3 is RAID6 Q block.
5536 */
David Sterba47c57132015-02-20 18:43:47 +01005537 stripe_nr = div_u64_rem(stripe_nr,
5538 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005539 if (mirror_num > 1)
5540 stripe_index = nr_data_stripes(map) +
5541 mirror_num - 2;
5542
5543 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005544 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5545 &stripe_index);
Miao Xie28e1cc72014-09-12 18:44:02 +08005546 if (!(rw & (REQ_WRITE | REQ_DISCARD |
5547 REQ_GET_READ_MIRRORS)) && mirror_num <= 1)
5548 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005549 }
Chris Mason8790d502008-04-03 16:29:03 -04005550 } else {
5551 /*
David Sterba47c57132015-02-20 18:43:47 +01005552 * after this, stripe_nr is the number of stripes on this
5553 * device we have to walk to find the data, and stripe_index is
5554 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005555 */
David Sterba47c57132015-02-20 18:43:47 +01005556 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5557 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005558 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005559 }
Josef Bacike042d1e2016-04-12 12:54:40 -04005560 if (stripe_index >= map->num_stripes) {
5561 btrfs_crit(fs_info, "stripe index math went horribly wrong, "
5562 "got stripe_index=%u, num_stripes=%u",
5563 stripe_index, map->num_stripes);
5564 ret = -EINVAL;
5565 goto out;
5566 }
Chris Mason593060d2008-03-25 16:50:33 -04005567
Stefan Behrens472262f2012-11-06 14:43:46 +01005568 num_alloc_stripes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005569 if (dev_replace_is_ongoing) {
5570 if (rw & (REQ_WRITE | REQ_DISCARD))
5571 num_alloc_stripes <<= 1;
5572 if (rw & REQ_GET_READ_MIRRORS)
5573 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005574 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005575 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005576
Zhao Lei6e9606d2015-01-20 15:11:34 +08005577 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005578 if (!bbio) {
5579 ret = -ENOMEM;
5580 goto out;
5581 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005582 if (dev_replace_is_ongoing)
5583 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005584
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005585 /* build raid_map */
Zhao Leiffe2d202015-01-20 15:11:44 +08005586 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK &&
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005587 need_raid_map && ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5588 mirror_num > 1)) {
5589 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005590 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005591
5592 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5593 sizeof(struct btrfs_bio_stripe) *
5594 num_alloc_stripes +
5595 sizeof(int) * tgtdev_indexes);
5596
5597 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005598 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005599
5600 /* Fill in the logical address of each stripe */
5601 tmp = stripe_nr * nr_data_stripes(map);
5602 for (i = 0; i < nr_data_stripes(map); i++)
5603 bbio->raid_map[(i+rot) % num_stripes] =
5604 em->start + (tmp + i) * map->stripe_len;
5605
5606 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5607 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5608 bbio->raid_map[(i+rot+1) % num_stripes] =
5609 RAID6_Q_STRIPE;
5610 }
5611
Li Dongyangfce3bb92011-03-24 10:24:26 +00005612 if (rw & REQ_DISCARD) {
David Sterba9d644a62015-02-20 18:42:11 +01005613 u32 factor = 0;
5614 u32 sub_stripes = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005615 u64 stripes_per_dev = 0;
5616 u32 remaining_stripes = 0;
Liu Bob89203f2012-04-12 16:03:56 -04005617 u32 last_stripe = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005618
5619 if (map->type &
5620 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
5621 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5622 sub_stripes = 1;
5623 else
5624 sub_stripes = map->sub_stripes;
5625
5626 factor = map->num_stripes / sub_stripes;
5627 stripes_per_dev = div_u64_rem(stripe_nr_end -
5628 stripe_nr_orig,
5629 factor,
5630 &remaining_stripes);
Liu Bob89203f2012-04-12 16:03:56 -04005631 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5632 last_stripe *= sub_stripes;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005633 }
5634
Li Dongyangfce3bb92011-03-24 10:24:26 +00005635 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005636 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04005637 map->stripes[stripe_index].physical +
5638 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005639 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005640
Li Zefanec9ef7a2011-12-01 14:06:42 +08005641 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5642 BTRFS_BLOCK_GROUP_RAID10)) {
5643 bbio->stripes[i].length = stripes_per_dev *
5644 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005645
Li Zefanec9ef7a2011-12-01 14:06:42 +08005646 if (i / sub_stripes < remaining_stripes)
5647 bbio->stripes[i].length +=
5648 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005649
5650 /*
5651 * Special for the first stripe and
5652 * the last stripe:
5653 *
5654 * |-------|...|-------|
5655 * |----------|
5656 * off end_off
5657 */
Li Zefanec9ef7a2011-12-01 14:06:42 +08005658 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02005659 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00005660 stripe_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005661
5662 if (stripe_index >= last_stripe &&
5663 stripe_index <= (last_stripe +
5664 sub_stripes - 1))
Li Zefanec9ef7a2011-12-01 14:06:42 +08005665 bbio->stripes[i].length -=
5666 stripe_end_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005667
Li Zefanec9ef7a2011-12-01 14:06:42 +08005668 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005669 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005670 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02005671 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005672
5673 stripe_index++;
5674 if (stripe_index == map->num_stripes) {
5675 /* This could only happen for RAID0/10 */
5676 stripe_index = 0;
5677 stripe_nr++;
5678 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005679 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005680 } else {
5681 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005682 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005683 map->stripes[stripe_index].physical +
5684 stripe_offset +
5685 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005686 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005687 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005688 stripe_index++;
5689 }
Chris Mason593060d2008-03-25 16:50:33 -04005690 }
Li Zefande11cc12011-12-01 12:55:47 +08005691
Miao Xied20983b2014-07-03 18:22:13 +08005692 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
5693 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005694
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005695 if (bbio->raid_map)
5696 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005697
Miao Xie2c8cdd62014-11-14 16:06:25 +08005698 tgtdev_indexes = 0;
Stefan Behrens472262f2012-11-06 14:43:46 +01005699 if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) &&
5700 dev_replace->tgtdev != NULL) {
5701 int index_where_to_add;
5702 u64 srcdev_devid = dev_replace->srcdev->devid;
5703
5704 /*
5705 * duplicate the write operations while the dev replace
5706 * procedure is running. Since the copying of the old disk
5707 * to the new disk takes place at run time while the
5708 * filesystem is mounted writable, the regular write
5709 * operations to the old disk have to be duplicated to go
5710 * to the new disk as well.
5711 * Note that device->missing is handled by the caller, and
5712 * that the write to the old disk is already set up in the
5713 * stripes array.
5714 */
5715 index_where_to_add = num_stripes;
5716 for (i = 0; i < num_stripes; i++) {
5717 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5718 /* write to new disk, too */
5719 struct btrfs_bio_stripe *new =
5720 bbio->stripes + index_where_to_add;
5721 struct btrfs_bio_stripe *old =
5722 bbio->stripes + i;
5723
5724 new->physical = old->physical;
5725 new->length = old->length;
5726 new->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005727 bbio->tgtdev_map[i] = index_where_to_add;
Stefan Behrens472262f2012-11-06 14:43:46 +01005728 index_where_to_add++;
5729 max_errors++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005730 tgtdev_indexes++;
Stefan Behrens472262f2012-11-06 14:43:46 +01005731 }
5732 }
5733 num_stripes = index_where_to_add;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005734 } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) &&
5735 dev_replace->tgtdev != NULL) {
5736 u64 srcdev_devid = dev_replace->srcdev->devid;
5737 int index_srcdev = 0;
5738 int found = 0;
5739 u64 physical_of_found = 0;
5740
5741 /*
5742 * During the dev-replace procedure, the target drive can
5743 * also be used to read data in case it is needed to repair
5744 * a corrupt block elsewhere. This is possible if the
5745 * requested area is left of the left cursor. In this area,
5746 * the target drive is a full copy of the source drive.
5747 */
5748 for (i = 0; i < num_stripes; i++) {
5749 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5750 /*
5751 * In case of DUP, in order to keep it
5752 * simple, only add the mirror with the
5753 * lowest physical address
5754 */
5755 if (found &&
5756 physical_of_found <=
5757 bbio->stripes[i].physical)
5758 continue;
5759 index_srcdev = i;
5760 found = 1;
5761 physical_of_found = bbio->stripes[i].physical;
5762 }
5763 }
5764 if (found) {
David Sterba258ece02015-02-24 19:45:15 +01005765 if (physical_of_found + map->stripe_len <=
Stefan Behrensad6d6202012-11-06 15:06:47 +01005766 dev_replace->cursor_left) {
5767 struct btrfs_bio_stripe *tgtdev_stripe =
5768 bbio->stripes + num_stripes;
5769
5770 tgtdev_stripe->physical = physical_of_found;
5771 tgtdev_stripe->length =
5772 bbio->stripes[index_srcdev].length;
5773 tgtdev_stripe->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005774 bbio->tgtdev_map[index_srcdev] = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005775
Miao Xie2c8cdd62014-11-14 16:06:25 +08005776 tgtdev_indexes++;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005777 num_stripes++;
5778 }
5779 }
Stefan Behrens472262f2012-11-06 14:43:46 +01005780 }
5781
Li Zefande11cc12011-12-01 12:55:47 +08005782 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005783 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005784 bbio->num_stripes = num_stripes;
5785 bbio->max_errors = max_errors;
5786 bbio->mirror_num = mirror_num;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005787 bbio->num_tgtdevs = tgtdev_indexes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005788
5789 /*
5790 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5791 * mirror_num == num_stripes + 1 && dev_replace target drive is
5792 * available as a mirror
5793 */
5794 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5795 WARN_ON(num_stripes > 1);
5796 bbio->stripes[0].dev = dev_replace->tgtdev;
5797 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5798 bbio->mirror_num = map->num_stripes + 1;
5799 }
Chris Masoncea9e442008-04-09 16:28:12 -04005800out:
Liu Bo73beece2015-07-17 16:49:19 +08005801 if (dev_replace_is_ongoing) {
5802 btrfs_dev_replace_clear_lock_blocking(dev_replace);
5803 btrfs_dev_replace_unlock(dev_replace, 0);
5804 }
Chris Mason0b86a832008-03-24 15:01:56 -04005805 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005806 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005807}
5808
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005809int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005810 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005811 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005812{
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005813 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005814 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005815}
5816
Miao Xieaf8e2d12014-10-23 14:42:50 +08005817/* For Scrub/replace */
5818int btrfs_map_sblock(struct btrfs_fs_info *fs_info, int rw,
5819 u64 logical, u64 *length,
5820 struct btrfs_bio **bbio_ret, int mirror_num,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005821 int need_raid_map)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005822{
5823 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005824 mirror_num, need_raid_map);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005825}
5826
Yan Zhenga512bbf2008-12-08 16:46:26 -05005827int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
5828 u64 chunk_start, u64 physical, u64 devid,
5829 u64 **logical, int *naddrs, int *stripe_len)
5830{
5831 struct extent_map_tree *em_tree = &map_tree->map_tree;
5832 struct extent_map *em;
5833 struct map_lookup *map;
5834 u64 *buf;
5835 u64 bytenr;
5836 u64 length;
5837 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005838 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005839 int i, j, nr = 0;
5840
Chris Mason890871b2009-09-02 16:24:52 -04005841 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005842 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005843 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005844
Josef Bacik835d9742013-03-19 12:13:25 -04005845 if (!em) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005846 printk(KERN_ERR "BTRFS: couldn't find em for chunk %Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005847 chunk_start);
5848 return -EIO;
5849 }
5850
5851 if (em->start != chunk_start) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005852 printk(KERN_ERR "BTRFS: bad chunk start, em=%Lu, wanted=%Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005853 em->start, chunk_start);
5854 free_extent_map(em);
5855 return -EIO;
5856 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04005857 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005858
5859 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005860 rmap_len = map->stripe_len;
5861
Yan Zhenga512bbf2008-12-08 16:46:26 -05005862 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01005863 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005864 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01005865 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08005866 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01005867 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005868 rmap_len = map->stripe_len * nr_data_stripes(map);
5869 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005870
David Sterba31e818f2015-02-20 18:00:26 +01005871 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005872 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005873
5874 for (i = 0; i < map->num_stripes; i++) {
5875 if (devid && map->stripes[i].dev->devid != devid)
5876 continue;
5877 if (map->stripes[i].physical > physical ||
5878 map->stripes[i].physical + length <= physical)
5879 continue;
5880
5881 stripe_nr = physical - map->stripes[i].physical;
David Sterbab8b93ad2015-01-16 17:26:13 +01005882 stripe_nr = div_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005883
5884 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5885 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01005886 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005887 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5888 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005889 } /* else if RAID[56], multiply by nr_data_stripes().
5890 * Alternatively, just use rmap_len below instead of
5891 * map->stripe_len */
5892
5893 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005894 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005895 for (j = 0; j < nr; j++) {
5896 if (buf[j] == bytenr)
5897 break;
5898 }
Chris Mason934d3752008-12-08 16:43:10 -05005899 if (j == nr) {
5900 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005901 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005902 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005903 }
5904
Yan Zhenga512bbf2008-12-08 16:46:26 -05005905 *logical = buf;
5906 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005907 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005908
5909 free_extent_map(em);
5910 return 0;
5911}
5912
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005913static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08005914{
Mike Snitzer326e1db2015-05-22 09:14:03 -04005915 bio->bi_private = bbio->private;
5916 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005917 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04005918
Zhao Lei6e9606d2015-01-20 15:11:34 +08005919 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08005920}
5921
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005922static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04005923{
Chris Mason9be33952013-05-17 18:30:14 -04005924 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005925 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005926
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005927 if (bio->bi_error) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005928 atomic_inc(&bbio->error);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005929 if (bio->bi_error == -EIO || bio->bi_error == -EREMOTEIO) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02005930 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04005931 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08005932 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02005933
5934 BUG_ON(stripe_index >= bbio->num_stripes);
5935 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02005936 if (dev->bdev) {
5937 if (bio->bi_rw & WRITE)
5938 btrfs_dev_stat_inc(dev,
5939 BTRFS_DEV_STAT_WRITE_ERRS);
5940 else
5941 btrfs_dev_stat_inc(dev,
5942 BTRFS_DEV_STAT_READ_ERRS);
5943 if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH)
5944 btrfs_dev_stat_inc(dev,
5945 BTRFS_DEV_STAT_FLUSH_ERRS);
5946 btrfs_dev_stat_print_on_error(dev);
5947 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02005948 }
5949 }
Chris Mason8790d502008-04-03 16:29:03 -04005950
Jan Schmidta1d3c472011-08-04 17:15:33 +02005951 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04005952 is_orig_bio = 1;
5953
Miao Xiec404e0d2014-01-30 16:46:55 +08005954 btrfs_bio_counter_dec(bbio->fs_info);
5955
Jan Schmidta1d3c472011-08-04 17:15:33 +02005956 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04005957 if (!is_orig_bio) {
5958 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005959 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005960 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07005961
Chris Mason9be33952013-05-17 18:30:14 -04005962 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04005963 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05005964 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04005965 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005966 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005967 bio->bi_error = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05005968 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04005969 /*
5970 * this bio is actually up to date, we didn't
5971 * go over the max number of errors
5972 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005973 bio->bi_error = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04005974 }
Miao Xiec55f1392014-06-19 10:42:54 +08005975
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005976 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04005977 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04005978 bio_put(bio);
5979 }
Chris Mason8790d502008-04-03 16:29:03 -04005980}
5981
Chris Mason8b712842008-06-11 16:50:36 -04005982/*
5983 * see run_scheduled_bios for a description of why bios are collected for
5984 * async submit.
5985 *
5986 * This will add one bio to the pending list for a device and make sure
5987 * the work struct is scheduled.
5988 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005989static noinline void btrfs_schedule_bio(struct btrfs_root *root,
5990 struct btrfs_device *device,
5991 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04005992{
5993 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04005994 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005995
David Woodhouse53b381b2013-01-29 18:40:14 -05005996 if (device->missing || !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005997 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05005998 return;
5999 }
6000
Chris Mason8b712842008-06-11 16:50:36 -04006001 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006002 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04006003 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01006004 btrfsic_submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04006005 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01006006 return;
Chris Mason8b712842008-06-11 16:50:36 -04006007 }
6008
6009 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04006010 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04006011 * higher layers. Otherwise, the async bio makes it appear we have
6012 * made progress against dirty pages when we've really just put it
6013 * on a queue for later
6014 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04006015 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04006016 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04006017 bio->bi_next = NULL;
6018 bio->bi_rw |= rw;
6019
6020 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006021 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04006022 pending_bios = &device->pending_sync_bios;
6023 else
6024 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006025
Chris Masonffbd5172009-04-20 15:50:09 -04006026 if (pending_bios->tail)
6027 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006028
Chris Masonffbd5172009-04-20 15:50:09 -04006029 pending_bios->tail = bio;
6030 if (!pending_bios->head)
6031 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006032 if (device->running_pending)
6033 should_queue = 0;
6034
6035 spin_unlock(&device->io_lock);
6036
6037 if (should_queue)
Qu Wenruoa8c93d42014-02-28 10:46:08 +08006038 btrfs_queue_work(root->fs_info->submit_workers,
6039 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04006040}
6041
Josef Bacikde1ee922012-10-19 16:50:56 -04006042static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
6043 struct bio *bio, u64 physical, int dev_nr,
6044 int rw, int async)
6045{
6046 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
6047
6048 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04006049 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04006050 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006051 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04006052#ifdef DEBUG
6053 {
6054 struct rcu_string *name;
6055
6056 rcu_read_lock();
6057 name = rcu_dereference(dev->name);
Masanari Iidad1423242012-10-31 15:16:32 +00006058 pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu "
Josef Bacikde1ee922012-10-19 16:50:56 -04006059 "(%s id %llu), size=%u\n", rw,
Fabian Frederick1b6e4462014-09-24 20:23:05 +02006060 (u64)bio->bi_iter.bi_sector, (u_long)dev->bdev->bd_dev,
6061 name->str, dev->devid, bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006062 rcu_read_unlock();
6063 }
6064#endif
6065 bio->bi_bdev = dev->bdev;
Miao Xiec404e0d2014-01-30 16:46:55 +08006066
6067 btrfs_bio_counter_inc_noblocked(root->fs_info);
6068
Josef Bacikde1ee922012-10-19 16:50:56 -04006069 if (async)
David Woodhouse53b381b2013-01-29 18:40:14 -05006070 btrfs_schedule_bio(root, dev, rw, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006071 else
6072 btrfsic_submit_bio(rw, bio);
6073}
6074
Josef Bacikde1ee922012-10-19 16:50:56 -04006075static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6076{
6077 atomic_inc(&bbio->error);
6078 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Nicholas D Steeves01327612016-05-19 21:18:45 -04006079 /* Should be the original bio. */
Miao Xie8408c712014-06-19 10:42:55 +08006080 WARN_ON(bio != bbio->orig_bio);
6081
Chris Mason9be33952013-05-17 18:30:14 -04006082 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006083 bio->bi_iter.bi_sector = logical >> 9;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006084 bio->bi_error = -EIO;
6085 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006086 }
6087}
6088
Chris Masonf1885912008-04-09 16:28:12 -04006089int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04006090 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006091{
Chris Mason0b86a832008-03-24 15:01:56 -04006092 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006093 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006094 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006095 u64 length = 0;
6096 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006097 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006098 int dev_nr;
6099 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006100 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006101
Kent Overstreet4f024f32013-10-11 15:44:27 -07006102 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006103 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006104
Miao Xiec404e0d2014-01-30 16:46:55 +08006105 btrfs_bio_counter_inc_blocked(root->fs_info);
David Woodhouse53b381b2013-01-29 18:40:14 -05006106 ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006107 mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006108 if (ret) {
6109 btrfs_bio_counter_dec(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006110 return ret;
Miao Xiec404e0d2014-01-30 16:46:55 +08006111 }
Chris Masoncea9e442008-04-09 16:28:12 -04006112
Jan Schmidta1d3c472011-08-04 17:15:33 +02006113 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006114 bbio->orig_bio = first_bio;
6115 bbio->private = first_bio->bi_private;
6116 bbio->end_io = first_bio->bi_end_io;
Miao Xiec404e0d2014-01-30 16:46:55 +08006117 bbio->fs_info = root->fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006118 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6119
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006120 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
6121 ((rw & WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006122 /* In this case, map_length has been set to the length of
6123 a single stripe; not the whole write */
6124 if (rw & WRITE) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006125 ret = raid56_parity_write(root, bio, bbio, map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006126 } else {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006127 ret = raid56_parity_recover(root, bio, bbio, map_length,
Miao Xie42452152014-11-25 16:39:28 +08006128 mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006129 }
Miao Xie42452152014-11-25 16:39:28 +08006130
Miao Xiec404e0d2014-01-30 16:46:55 +08006131 btrfs_bio_counter_dec(root->fs_info);
6132 return ret;
David Woodhouse53b381b2013-01-29 18:40:14 -05006133 }
6134
Chris Masoncea9e442008-04-09 16:28:12 -04006135 if (map_length < length) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006136 btrfs_crit(root->fs_info, "mapping failed logical %llu bio len %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006137 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006138 BUG();
6139 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006140
Zhao Lei08da7572015-02-12 15:42:16 +08006141 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006142 dev = bbio->stripes[dev_nr].dev;
6143 if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) {
6144 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006145 continue;
6146 }
6147
Jan Schmidta1d3c472011-08-04 17:15:33 +02006148 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04006149 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006150 BUG_ON(!bio); /* -ENOMEM */
Mike Snitzer326e1db2015-05-22 09:14:03 -04006151 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006152 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006153
Josef Bacikde1ee922012-10-19 16:50:56 -04006154 submit_stripe_bio(root, bbio, bio,
6155 bbio->stripes[dev_nr].physical, dev_nr, rw,
6156 async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006157 }
Miao Xiec404e0d2014-01-30 16:46:55 +08006158 btrfs_bio_counter_dec(root->fs_info);
Chris Mason0b86a832008-03-24 15:01:56 -04006159 return 0;
6160}
6161
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006162struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006163 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006164{
Yan Zheng2b820322008-11-17 21:11:30 -05006165 struct btrfs_device *device;
6166 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006167
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006168 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006169 while (cur_devices) {
6170 if (!fsid ||
6171 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
6172 device = __find_device(&cur_devices->devices,
6173 devid, uuid);
6174 if (device)
6175 return device;
6176 }
6177 cur_devices = cur_devices->seed;
6178 }
6179 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006180}
6181
Chris Masondfe25022008-05-13 13:46:40 -04006182static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
Miao Xie5f375832014-09-03 21:35:46 +08006183 struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006184 u64 devid, u8 *dev_uuid)
6185{
6186 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006187
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006188 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6189 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05006190 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006191
6192 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006193 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006194 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006195
6196 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05006197 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006198
Chris Masondfe25022008-05-13 13:46:40 -04006199 return device;
6200}
6201
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006202/**
6203 * btrfs_alloc_device - allocate struct btrfs_device
6204 * @fs_info: used only for generating a new devid, can be NULL if
6205 * devid is provided (i.e. @devid != NULL).
6206 * @devid: a pointer to devid for this device. If NULL a new devid
6207 * is generated.
6208 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6209 * is generated.
6210 *
6211 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
6212 * on error. Returned struct is not linked onto any lists and can be
6213 * destroyed with kfree() right away.
6214 */
6215struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6216 const u64 *devid,
6217 const u8 *uuid)
6218{
6219 struct btrfs_device *dev;
6220 u64 tmp;
6221
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306222 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006223 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006224
6225 dev = __alloc_device();
6226 if (IS_ERR(dev))
6227 return dev;
6228
6229 if (devid)
6230 tmp = *devid;
6231 else {
6232 int ret;
6233
6234 ret = find_next_devid(fs_info, &tmp);
6235 if (ret) {
6236 kfree(dev);
6237 return ERR_PTR(ret);
6238 }
6239 }
6240 dev->devid = tmp;
6241
6242 if (uuid)
6243 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6244 else
6245 generate_random_uuid(dev->uuid);
6246
Liu Bo9e0af232014-08-15 23:36:53 +08006247 btrfs_init_work(&dev->work, btrfs_submit_helper,
6248 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006249
6250 return dev;
6251}
6252
Chris Mason0b86a832008-03-24 15:01:56 -04006253static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
6254 struct extent_buffer *leaf,
6255 struct btrfs_chunk *chunk)
6256{
6257 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6258 struct map_lookup *map;
6259 struct extent_map *em;
6260 u64 logical;
6261 u64 length;
Qu Wenruof04b7722015-12-15 09:14:37 +08006262 u64 stripe_len;
Chris Mason0b86a832008-03-24 15:01:56 -04006263 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006264 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006265 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006266 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006267 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006268
Chris Masone17cade2008-04-15 15:41:47 -04006269 logical = key->offset;
6270 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006271 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6272 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6273 /* Validation check */
6274 if (!num_stripes) {
6275 btrfs_err(root->fs_info, "invalid chunk num_stripes: %u",
6276 num_stripes);
6277 return -EIO;
6278 }
6279 if (!IS_ALIGNED(logical, root->sectorsize)) {
6280 btrfs_err(root->fs_info,
6281 "invalid chunk logical %llu", logical);
6282 return -EIO;
6283 }
6284 if (!length || !IS_ALIGNED(length, root->sectorsize)) {
6285 btrfs_err(root->fs_info,
6286 "invalid chunk length %llu", length);
6287 return -EIO;
6288 }
Liu Bo3d8da672016-04-26 17:53:31 -07006289 if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) {
Qu Wenruof04b7722015-12-15 09:14:37 +08006290 btrfs_err(root->fs_info, "invalid chunk stripe length: %llu",
6291 stripe_len);
6292 return -EIO;
6293 }
6294 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6295 btrfs_chunk_type(leaf, chunk)) {
6296 btrfs_err(root->fs_info, "unrecognized chunk type: %llu",
6297 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6298 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6299 btrfs_chunk_type(leaf, chunk));
6300 return -EIO;
6301 }
Chris Masona061fc82008-05-07 11:43:44 -04006302
Chris Mason890871b2009-09-02 16:24:52 -04006303 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006304 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006305 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006306
6307 /* already mapped? */
6308 if (em && em->start <= logical && em->start + em->len > logical) {
6309 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006310 return 0;
6311 } else if (em) {
6312 free_extent_map(em);
6313 }
Chris Mason0b86a832008-03-24 15:01:56 -04006314
David Sterba172ddd62011-04-21 00:48:27 +02006315 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006316 if (!em)
6317 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006318 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006319 if (!map) {
6320 free_extent_map(em);
6321 return -ENOMEM;
6322 }
6323
Wang Shilong298a8f92014-06-19 10:42:52 +08006324 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006325 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006326 em->start = logical;
6327 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006328 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006329 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006330 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006331
Chris Mason593060d2008-03-25 16:50:33 -04006332 map->num_stripes = num_stripes;
6333 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6334 map->io_align = btrfs_chunk_io_align(leaf, chunk);
6335 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
6336 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6337 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006338 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006339 for (i = 0; i < num_stripes; i++) {
6340 map->stripes[i].physical =
6341 btrfs_stripe_offset_nr(leaf, chunk, i);
6342 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006343 read_extent_buffer(leaf, uuid, (unsigned long)
6344 btrfs_stripe_dev_uuid_nr(chunk, i),
6345 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006346 map->stripes[i].dev = btrfs_find_device(root->fs_info, devid,
6347 uuid, NULL);
Chris Masondfe25022008-05-13 13:46:40 -04006348 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006349 free_extent_map(em);
6350 return -EIO;
6351 }
Chris Masondfe25022008-05-13 13:46:40 -04006352 if (!map->stripes[i].dev) {
6353 map->stripes[i].dev =
Miao Xie5f375832014-09-03 21:35:46 +08006354 add_missing_dev(root, root->fs_info->fs_devices,
6355 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006356 if (!map->stripes[i].dev) {
Chris Masondfe25022008-05-13 13:46:40 -04006357 free_extent_map(em);
6358 return -EIO;
6359 }
Anand Jain816fceb2015-04-27 12:46:18 +08006360 btrfs_warn(root->fs_info, "devid %llu uuid %pU is missing",
6361 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006362 }
6363 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04006364 }
6365
Chris Mason890871b2009-09-02 16:24:52 -04006366 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006367 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006368 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006369 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006370 free_extent_map(em);
6371
6372 return 0;
6373}
6374
Jeff Mahoney143bede2012-03-01 14:56:26 +01006375static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006376 struct btrfs_dev_item *dev_item,
6377 struct btrfs_device *device)
6378{
6379 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006380
6381 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006382 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6383 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006384 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006385 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006386 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006387 device->type = btrfs_device_type(leaf, dev_item);
6388 device->io_align = btrfs_device_io_align(leaf, dev_item);
6389 device->io_width = btrfs_device_io_width(leaf, dev_item);
6390 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006391 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01006392 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006393
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006394 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006395 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006396}
6397
Miao Xie5f375832014-09-03 21:35:46 +08006398static struct btrfs_fs_devices *open_seed_devices(struct btrfs_root *root,
6399 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006400{
6401 struct btrfs_fs_devices *fs_devices;
6402 int ret;
6403
Li Zefanb367e472011-12-07 11:38:24 +08006404 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05006405
6406 fs_devices = root->fs_info->fs_devices->seed;
6407 while (fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006408 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE))
6409 return fs_devices;
6410
Yan Zheng2b820322008-11-17 21:11:30 -05006411 fs_devices = fs_devices->seed;
6412 }
6413
6414 fs_devices = find_fsid(fsid);
6415 if (!fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006416 if (!btrfs_test_opt(root, DEGRADED))
6417 return ERR_PTR(-ENOENT);
6418
6419 fs_devices = alloc_fs_devices(fsid);
6420 if (IS_ERR(fs_devices))
6421 return fs_devices;
6422
6423 fs_devices->seeding = 1;
6424 fs_devices->opened = 1;
6425 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006426 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006427
6428 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006429 if (IS_ERR(fs_devices))
6430 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006431
Christoph Hellwig97288f22008-12-02 06:36:09 -05006432 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05006433 root->fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006434 if (ret) {
6435 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006436 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006437 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006438 }
Yan Zheng2b820322008-11-17 21:11:30 -05006439
6440 if (!fs_devices->seeding) {
6441 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006442 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006443 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006444 goto out;
6445 }
6446
6447 fs_devices->seed = root->fs_info->fs_devices->seed;
6448 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006449out:
Miao Xie5f375832014-09-03 21:35:46 +08006450 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006451}
6452
Chris Mason0d81ba52008-03-24 15:02:07 -04006453static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04006454 struct extent_buffer *leaf,
6455 struct btrfs_dev_item *dev_item)
6456{
Miao Xie5f375832014-09-03 21:35:46 +08006457 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006458 struct btrfs_device *device;
6459 u64 devid;
6460 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05006461 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006462 u8 dev_uuid[BTRFS_UUID_SIZE];
6463
Chris Mason0b86a832008-03-24 15:01:56 -04006464 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006465 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006466 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006467 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05006468 BTRFS_UUID_SIZE);
6469
6470 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
Miao Xie5f375832014-09-03 21:35:46 +08006471 fs_devices = open_seed_devices(root, fs_uuid);
6472 if (IS_ERR(fs_devices))
6473 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006474 }
6475
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006476 device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006477 if (!device) {
Yan Zhenge4404d62008-12-12 10:03:26 -05006478 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05006479 return -EIO;
6480
Miao Xie5f375832014-09-03 21:35:46 +08006481 device = add_missing_dev(root, fs_devices, devid, dev_uuid);
6482 if (!device)
6483 return -ENOMEM;
Anand Jain33b97e42015-05-08 04:34:35 +08006484 btrfs_warn(root->fs_info, "devid %llu uuid %pU missing",
6485 devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006486 } else {
6487 if (!device->bdev && !btrfs_test_opt(root, DEGRADED))
6488 return -EIO;
6489
6490 if(!device->bdev && !device->missing) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006491 /*
6492 * this happens when a device that was properly setup
6493 * in the device info lists suddenly goes bad.
6494 * device->bdev is NULL, and so we have to set
6495 * device->missing to one here
6496 */
Miao Xie5f375832014-09-03 21:35:46 +08006497 device->fs_devices->missing_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05006498 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05006499 }
Miao Xie5f375832014-09-03 21:35:46 +08006500
6501 /* Move the device to its own fs_devices */
6502 if (device->fs_devices != fs_devices) {
6503 ASSERT(device->missing);
6504
6505 list_move(&device->dev_list, &fs_devices->devices);
6506 device->fs_devices->num_devices--;
6507 fs_devices->num_devices++;
6508
6509 device->fs_devices->missing_devices--;
6510 fs_devices->missing_devices++;
6511
6512 device->fs_devices = fs_devices;
6513 }
Yan Zheng2b820322008-11-17 21:11:30 -05006514 }
6515
6516 if (device->fs_devices != root->fs_info->fs_devices) {
6517 BUG_ON(device->writeable);
6518 if (device->generation !=
6519 btrfs_device_generation(leaf, dev_item))
6520 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006521 }
Chris Mason0b86a832008-03-24 15:01:56 -04006522
6523 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04006524 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01006525 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05006526 device->fs_devices->total_rw_bytes += device->total_bytes;
Josef Bacik2bf64752011-09-26 17:12:22 -04006527 spin_lock(&root->fs_info->free_chunk_lock);
6528 root->fs_info->free_chunk_space += device->total_bytes -
6529 device->bytes_used;
6530 spin_unlock(&root->fs_info->free_chunk_lock);
6531 }
Chris Mason0b86a832008-03-24 15:01:56 -04006532 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006533 return ret;
6534}
6535
Yan Zhenge4404d62008-12-12 10:03:26 -05006536int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04006537{
David Sterba6c417612011-04-13 15:41:04 +02006538 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006539 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006540 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006541 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006542 u8 *array_ptr;
6543 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006544 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006545 u32 num_stripes;
6546 u32 array_size;
6547 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006548 u32 cur_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006549 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006550
David Sterbaa83fffb2014-06-15 02:39:54 +02006551 ASSERT(BTRFS_SUPER_INFO_SIZE <= root->nodesize);
6552 /*
6553 * This will create extent buffer of nodesize, superblock size is
6554 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6555 * overallocate but we can keep it as-is, only the first page is used.
6556 */
6557 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET);
Chris Masona061fc82008-05-07 11:43:44 -04006558 if (!sb)
6559 return -ENOMEM;
David Sterba4db8c522015-12-03 13:06:46 +01006560 set_extent_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006561 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006562 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006563 * The sb extent buffer is artificial and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01006564 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02006565 * pages up-to-date when the page is larger: extent does not cover the
6566 * whole page and consequently check_page_uptodate does not find all
6567 * the page's extents up-to-date (the hole beyond sb),
6568 * write_extent_buffer then triggers a WARN_ON.
6569 *
6570 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6571 * but sb spans only this function. Add an explicit SetPageUptodate call
6572 * to silence the warning eg. on PowerPC 64.
6573 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006574 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006575 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006576
Chris Masona061fc82008-05-07 11:43:44 -04006577 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006578 array_size = btrfs_super_sys_array_size(super_copy);
6579
David Sterba1ffb22c2014-10-31 19:02:42 +01006580 array_ptr = super_copy->sys_chunk_array;
6581 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6582 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006583
David Sterba1ffb22c2014-10-31 19:02:42 +01006584 while (cur_offset < array_size) {
6585 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006586 len = sizeof(*disk_key);
6587 if (cur_offset + len > array_size)
6588 goto out_short_read;
6589
Chris Mason0b86a832008-03-24 15:01:56 -04006590 btrfs_disk_key_to_cpu(&key, disk_key);
6591
David Sterba1ffb22c2014-10-31 19:02:42 +01006592 array_ptr += len;
6593 sb_array_offset += len;
6594 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006595
Chris Mason0d81ba52008-03-24 15:02:07 -04006596 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006597 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006598 /*
6599 * At least one btrfs_chunk with one stripe must be
6600 * present, exact stripe count check comes afterwards
6601 */
6602 len = btrfs_chunk_item_size(1);
6603 if (cur_offset + len > array_size)
6604 goto out_short_read;
6605
6606 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006607 if (!num_stripes) {
6608 printk(KERN_ERR
6609 "BTRFS: invalid number of stripes %u in sys_array at offset %u\n",
6610 num_stripes, cur_offset);
6611 ret = -EIO;
6612 break;
6613 }
6614
David Sterbae3540ea2014-11-05 15:24:51 +01006615 len = btrfs_chunk_item_size(num_stripes);
6616 if (cur_offset + len > array_size)
6617 goto out_short_read;
6618
Chris Mason0d81ba52008-03-24 15:02:07 -04006619 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006620 if (ret)
6621 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006622 } else {
David Sterba93a3d462015-11-30 17:27:09 +01006623 printk(KERN_ERR
6624 "BTRFS: unexpected item type %u in sys_array at offset %u\n",
6625 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006626 ret = -EIO;
6627 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006628 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006629 array_ptr += len;
6630 sb_array_offset += len;
6631 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006632 }
Liu Bo1c8b5b62016-05-13 17:06:59 -07006633 free_extent_buffer_stale(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006634 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006635
6636out_short_read:
6637 printk(KERN_ERR "BTRFS: sys_array too short to read %u bytes at offset %u\n",
6638 len, cur_offset);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006639 free_extent_buffer_stale(sb);
David Sterbae3540ea2014-11-05 15:24:51 +01006640 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006641}
6642
6643int btrfs_read_chunk_tree(struct btrfs_root *root)
6644{
6645 struct btrfs_path *path;
6646 struct extent_buffer *leaf;
6647 struct btrfs_key key;
6648 struct btrfs_key found_key;
6649 int ret;
6650 int slot;
6651
6652 root = root->fs_info->chunk_root;
6653
6654 path = btrfs_alloc_path();
6655 if (!path)
6656 return -ENOMEM;
6657
Li Zefanb367e472011-12-07 11:38:24 +08006658 mutex_lock(&uuid_mutex);
6659 lock_chunks(root);
6660
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006661 /*
6662 * Read all device items, and then all the chunk items. All
6663 * device items are found before any chunk item (their object id
6664 * is smaller than the lowest possible object id for a chunk
6665 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006666 */
6667 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6668 key.offset = 0;
6669 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006670 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006671 if (ret < 0)
6672 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006673 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006674 leaf = path->nodes[0];
6675 slot = path->slots[0];
6676 if (slot >= btrfs_header_nritems(leaf)) {
6677 ret = btrfs_next_leaf(root, path);
6678 if (ret == 0)
6679 continue;
6680 if (ret < 0)
6681 goto error;
6682 break;
6683 }
6684 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006685 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6686 struct btrfs_dev_item *dev_item;
6687 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006688 struct btrfs_dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006689 ret = read_one_dev(root, leaf, dev_item);
6690 if (ret)
6691 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006692 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6693 struct btrfs_chunk *chunk;
6694 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
6695 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006696 if (ret)
6697 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006698 }
6699 path->slots[0]++;
6700 }
Chris Mason0b86a832008-03-24 15:01:56 -04006701 ret = 0;
6702error:
Li Zefanb367e472011-12-07 11:38:24 +08006703 unlock_chunks(root);
6704 mutex_unlock(&uuid_mutex);
6705
Yan Zheng2b820322008-11-17 21:11:30 -05006706 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006707 return ret;
6708}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006709
Miao Xiecb517ea2013-05-15 07:48:19 +00006710void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6711{
6712 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6713 struct btrfs_device *device;
6714
Liu Bo29cc83f2014-05-11 23:14:59 +08006715 while (fs_devices) {
6716 mutex_lock(&fs_devices->device_list_mutex);
6717 list_for_each_entry(device, &fs_devices->devices, dev_list)
6718 device->dev_root = fs_info->dev_root;
6719 mutex_unlock(&fs_devices->device_list_mutex);
6720
6721 fs_devices = fs_devices->seed;
6722 }
Miao Xiecb517ea2013-05-15 07:48:19 +00006723}
6724
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006725static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6726{
6727 int i;
6728
6729 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6730 btrfs_dev_stat_reset(dev, i);
6731}
6732
6733int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6734{
6735 struct btrfs_key key;
6736 struct btrfs_key found_key;
6737 struct btrfs_root *dev_root = fs_info->dev_root;
6738 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6739 struct extent_buffer *eb;
6740 int slot;
6741 int ret = 0;
6742 struct btrfs_device *device;
6743 struct btrfs_path *path = NULL;
6744 int i;
6745
6746 path = btrfs_alloc_path();
6747 if (!path) {
6748 ret = -ENOMEM;
6749 goto out;
6750 }
6751
6752 mutex_lock(&fs_devices->device_list_mutex);
6753 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6754 int item_size;
6755 struct btrfs_dev_stats_item *ptr;
6756
David Sterba242e2952016-01-25 17:51:31 +01006757 key.objectid = BTRFS_DEV_STATS_OBJECTID;
6758 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006759 key.offset = device->devid;
6760 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6761 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006762 __btrfs_reset_dev_stats(device);
6763 device->dev_stats_valid = 1;
6764 btrfs_release_path(path);
6765 continue;
6766 }
6767 slot = path->slots[0];
6768 eb = path->nodes[0];
6769 btrfs_item_key_to_cpu(eb, &found_key, slot);
6770 item_size = btrfs_item_size_nr(eb, slot);
6771
6772 ptr = btrfs_item_ptr(eb, slot,
6773 struct btrfs_dev_stats_item);
6774
6775 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6776 if (item_size >= (1 + i) * sizeof(__le64))
6777 btrfs_dev_stat_set(device, i,
6778 btrfs_dev_stats_value(eb, ptr, i));
6779 else
6780 btrfs_dev_stat_reset(device, i);
6781 }
6782
6783 device->dev_stats_valid = 1;
6784 btrfs_dev_stat_print_on_load(device);
6785 btrfs_release_path(path);
6786 }
6787 mutex_unlock(&fs_devices->device_list_mutex);
6788
6789out:
6790 btrfs_free_path(path);
6791 return ret < 0 ? ret : 0;
6792}
6793
6794static int update_dev_stat_item(struct btrfs_trans_handle *trans,
6795 struct btrfs_root *dev_root,
6796 struct btrfs_device *device)
6797{
6798 struct btrfs_path *path;
6799 struct btrfs_key key;
6800 struct extent_buffer *eb;
6801 struct btrfs_dev_stats_item *ptr;
6802 int ret;
6803 int i;
6804
David Sterba242e2952016-01-25 17:51:31 +01006805 key.objectid = BTRFS_DEV_STATS_OBJECTID;
6806 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006807 key.offset = device->devid;
6808
6809 path = btrfs_alloc_path();
6810 BUG_ON(!path);
6811 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6812 if (ret < 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006813 btrfs_warn_in_rcu(dev_root->fs_info,
6814 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04006815 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006816 goto out;
6817 }
6818
6819 if (ret == 0 &&
6820 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6821 /* need to delete old one and insert a new one */
6822 ret = btrfs_del_item(trans, dev_root, path);
6823 if (ret != 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006824 btrfs_warn_in_rcu(dev_root->fs_info,
6825 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04006826 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006827 goto out;
6828 }
6829 ret = 1;
6830 }
6831
6832 if (ret == 1) {
6833 /* need to insert a new item */
6834 btrfs_release_path(path);
6835 ret = btrfs_insert_empty_item(trans, dev_root, path,
6836 &key, sizeof(*ptr));
6837 if (ret < 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006838 btrfs_warn_in_rcu(dev_root->fs_info,
6839 "insert dev_stats item for device %s failed %d",
6840 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006841 goto out;
6842 }
6843 }
6844
6845 eb = path->nodes[0];
6846 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
6847 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6848 btrfs_set_dev_stats_value(eb, ptr, i,
6849 btrfs_dev_stat_read(device, i));
6850 btrfs_mark_buffer_dirty(eb);
6851
6852out:
6853 btrfs_free_path(path);
6854 return ret;
6855}
6856
6857/*
6858 * called from commit_transaction. Writes all changed device stats to disk.
6859 */
6860int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
6861 struct btrfs_fs_info *fs_info)
6862{
6863 struct btrfs_root *dev_root = fs_info->dev_root;
6864 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6865 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08006866 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006867 int ret = 0;
6868
6869 mutex_lock(&fs_devices->device_list_mutex);
6870 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Miao Xieaddc3fa2014-07-24 11:37:11 +08006871 if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device))
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006872 continue;
6873
Miao Xieaddc3fa2014-07-24 11:37:11 +08006874 stats_cnt = atomic_read(&device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006875 ret = update_dev_stat_item(trans, dev_root, device);
6876 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08006877 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006878 }
6879 mutex_unlock(&fs_devices->device_list_mutex);
6880
6881 return ret;
6882}
6883
Stefan Behrens442a4f62012-05-25 16:06:08 +02006884void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
6885{
6886 btrfs_dev_stat_inc(dev, index);
6887 btrfs_dev_stat_print_on_error(dev);
6888}
6889
Eric Sandeen48a3b632013-04-25 20:41:01 +00006890static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02006891{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006892 if (!dev->dev_stats_valid)
6893 return;
David Sterbab14af3b2015-10-08 10:43:10 +02006894 btrfs_err_rl_in_rcu(dev->dev_root->fs_info,
6895 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04006896 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02006897 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6898 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6899 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05006900 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6901 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02006902}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006903
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006904static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
6905{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06006906 int i;
6907
6908 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6909 if (btrfs_dev_stat_read(dev, i) != 0)
6910 break;
6911 if (i == BTRFS_DEV_STAT_VALUES_MAX)
6912 return; /* all values == 0, suppress message */
6913
David Sterbaecaeb142015-10-08 09:01:03 +02006914 btrfs_info_in_rcu(dev->dev_root->fs_info,
6915 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04006916 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006917 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6918 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6919 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6920 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6921 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
6922}
6923
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006924int btrfs_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06006925 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006926{
6927 struct btrfs_device *dev;
6928 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6929 int i;
6930
6931 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006932 dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006933 mutex_unlock(&fs_devices->device_list_mutex);
6934
6935 if (!dev) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006936 btrfs_warn(root->fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006937 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006938 } else if (!dev->dev_stats_valid) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006939 btrfs_warn(root->fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006940 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06006941 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006942 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6943 if (stats->nr_items > i)
6944 stats->values[i] =
6945 btrfs_dev_stat_read_and_reset(dev, i);
6946 else
6947 btrfs_dev_stat_reset(dev, i);
6948 }
6949 } else {
6950 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6951 if (stats->nr_items > i)
6952 stats->values[i] = btrfs_dev_stat_read(dev, i);
6953 }
6954 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
6955 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
6956 return 0;
6957}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006958
Anand Jain12b1c262015-08-14 18:32:59 +08006959void btrfs_scratch_superblocks(struct block_device *bdev, char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006960{
6961 struct buffer_head *bh;
6962 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08006963 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006964
Anand Jain12b1c262015-08-14 18:32:59 +08006965 if (!bdev)
6966 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006967
Anand Jain12b1c262015-08-14 18:32:59 +08006968 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
6969 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006970
Anand Jain12b1c262015-08-14 18:32:59 +08006971 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
6972 continue;
6973
6974 disk_super = (struct btrfs_super_block *)bh->b_data;
6975
6976 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
6977 set_buffer_dirty(bh);
6978 sync_dirty_buffer(bh);
6979 brelse(bh);
6980 }
6981
6982 /* Notify udev that device has changed */
6983 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
6984
6985 /* Update ctime/mtime for device path for libblkid */
6986 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006987}
Miao Xie935e5cc2014-09-03 21:35:33 +08006988
6989/*
6990 * Update the size of all devices, which is used for writing out the
6991 * super blocks.
6992 */
6993void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
6994{
6995 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6996 struct btrfs_device *curr, *next;
6997
6998 if (list_empty(&fs_devices->resized_devices))
6999 return;
7000
7001 mutex_lock(&fs_devices->device_list_mutex);
7002 lock_chunks(fs_info->dev_root);
7003 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
7004 resized_list) {
7005 list_del_init(&curr->resized_list);
7006 curr->commit_total_bytes = curr->disk_total_bytes;
7007 }
7008 unlock_chunks(fs_info->dev_root);
7009 mutex_unlock(&fs_devices->device_list_mutex);
7010}
Miao Xiece7213c2014-09-03 21:35:34 +08007011
7012/* Must be invoked during the transaction commit */
7013void btrfs_update_commit_device_bytes_used(struct btrfs_root *root,
7014 struct btrfs_transaction *transaction)
7015{
7016 struct extent_map *em;
7017 struct map_lookup *map;
7018 struct btrfs_device *dev;
7019 int i;
7020
7021 if (list_empty(&transaction->pending_chunks))
7022 return;
7023
7024 /* In order to kick the device replace finish process */
7025 lock_chunks(root);
7026 list_for_each_entry(em, &transaction->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04007027 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08007028
7029 for (i = 0; i < map->num_stripes; i++) {
7030 dev = map->stripes[i].dev;
7031 dev->commit_bytes_used = dev->bytes_used;
7032 }
7033 }
7034 unlock_chunks(root);
7035}
Anand Jain5a13f432015-03-10 06:38:31 +08007036
7037void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
7038{
7039 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7040 while (fs_devices) {
7041 fs_devices->fs_info = fs_info;
7042 fs_devices = fs_devices->seed;
7043 }
7044}
7045
7046void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
7047{
7048 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7049 while (fs_devices) {
7050 fs_devices->fs_info = NULL;
7051 fs_devices = fs_devices->seed;
7052 }
7053}
Anand Jainf190aa42015-08-14 18:33:05 +08007054
David Sterba87ad58c2015-11-27 18:49:39 +01007055static void btrfs_close_one_device(struct btrfs_device *device)
Anand Jainf190aa42015-08-14 18:33:05 +08007056{
7057 struct btrfs_fs_devices *fs_devices = device->fs_devices;
7058 struct btrfs_device *new_device;
7059 struct rcu_string *name;
7060
7061 if (device->bdev)
7062 fs_devices->open_devices--;
7063
7064 if (device->writeable &&
7065 device->devid != BTRFS_DEV_REPLACE_DEVID) {
7066 list_del_init(&device->dev_alloc_list);
7067 fs_devices->rw_devices--;
7068 }
7069
7070 if (device->missing)
7071 fs_devices->missing_devices--;
7072
7073 new_device = btrfs_alloc_device(NULL, &device->devid,
7074 device->uuid);
7075 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
7076
7077 /* Safe because we are under uuid_mutex */
7078 if (device->name) {
7079 name = rcu_string_strdup(device->name->str, GFP_NOFS);
7080 BUG_ON(!name); /* -ENOMEM */
7081 rcu_assign_pointer(new_device->name, name);
7082 }
7083
7084 list_replace_rcu(&device->dev_list, &new_device->dev_list);
7085 new_device->fs_devices = device->fs_devices;
7086
7087 call_rcu(&device->rcu, free_device);
7088}